/* Styles from mya.css */

/******* CSS Buttons *******/
a.buttonLink {
  background-color: #48d597;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#48d597), to(#48d597));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #48d597, #48d597);
  background-image: -moz-linear-gradient(top, #48d597, #48d597);
  background-image: -ms-linear-gradient(top, #48d597, #48d597);
  background-image: -o-linear-gradient(top, #48d597, #48d597);
  background-image: linear-gradient(top, #48d597, #48d597);
  border: 1px solid #48d597;
  -moz-border-radius: 6px;
  border-radius: 6px;
  color: #fff;
  font: bold 14px MaisonNeue-Medium, serif;
  padding: 4px 15px;
  text-align: center;
  text-transform: uppercase;
  height: 22px;
  text-decoration: none;
}

a.buttonLink:hover {
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, white, white);
  background-image: -moz-linear-gradient(top, white, white);
  background-image: -ms-linear-gradient(top, white, white);
  background-image: -o-linear-gradient(top, white, white);
  background-image: linear-gradient(top, white, white);
  text-decoration: none;
  border-color: #48d597;
}

a.buttonLink:active {
  border: 1px solid #546685;
  -webkit-box-shadow: inset 0 0 8px 2px #7e8da6, 0 1px 0 0 #eeeeee;
  -moz-box-shadow: inset 0 0 8px 2px #7e8da6, 0 1px 0 0 #eeeeee;
  -ms-box-shadow: inset 0 0 8px 2px #7e8da6, 0 1px 0 0 #eeeeee;
  -o-box-shadow: inset 0 0 8px 2px #7e8da6, 0 1px 0 0 #eeeeee;
  box-shadow: inset 0 0 8px 2px #7e8da6, 0 1px 0 0 #eeeeee;
  text-decoration: none;
}

a.disabledButtonLink, input.disabledButtonLink:hover, input.disabledButtonLink:active {
  background-color: #ddd;
  border: 1px solid black;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font: bold 14px MaisonNeue-Medium, serif;
  line-height: 1;
  color: #777;
  cursor: pointer;
  padding: 4px 15px;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  width: 100px;
  text-decoration: none;

}

a::-moz-focus-inner {
  border: 0;
}

a.textBtn {
  display: inline-block;
  vertical-align: top;
  margin: auto 15px;
  padding: 5px;
}


/* Styles from ctlButtons.css */

.notification-prefs .ctlButton,
.notification-prefs .ctlButton,
.notification-prefs .ctlButton {
  behavior: url(/static/js/PIE.htc);
  background-color: #48d597;
  border: 0;
  box-sizing: border-box;
  color: #fff;
  display: inline;
  font-family: MaisonNeue-Medium, serif;
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  line-height: 30px;
  margin: 20px auto 0;
  padding: 6px 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 1;
  zoom: 1;
}

.ctlButton,
a.ctlButton,
input.ctlButton {
  behavior: url(/static/js/PIE.htc);
  background-color: #48d597;
  border: 0;
  box-sizing: border-box;
  color: black;
  display: block;
  font-family: MaisonNeue-Bold, serif;
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  line-height: 30px;
  margin: 20px auto 0;
  padding: 6px 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 1;
  zoom: 1;
  border: 1px solid #48d597;
  text-indent: 0;
}

.login-btn {
  margin-top: 10px;
  margin-bottom: 20px;
}

.login-btn .ctlButton {
  background: #48d597;
  color: #000;
  padding: 8px 30px;
  border: 1px solid #48d597;
  box-shadow: none;
  border-radius: 0;
}

.login-btn .ctlButton:hover, .login-btn .ctlButton:focus {
  background: #fff;
  color: #000;
  padding: 8px 30px;
}

@media (max-width: 768px) {
  input.ctlButton-submit,
  input.ctlButton-download {
    width: 200px;
    margin: 10px auto 10px;
  }

  .login-btn .ctlButton {
    width: 200px;
    margin: initial;
    margin-top: 20px;
    padding: 4px 40px;
  }
}

.ctlButton,
a.ctlButton,
input.ctlButton {
  display: inline-block;
  padding: 8px 30px;
  width: 200px;
  margin: 10px auto 0;
}

@media (min-width: 992px) {
  .ctlButton,
  a.ctlButton,
  input.ctlButton {
    font-size: 16px;
    line-height: normal;
    margin: auto;
    padding: 8px 0px;
  }

  input.ctlButton-submit {
    margin: auto 15px;
  }
}

a.ctlButton:hover,
input.ctlButton:hover,
a.ctlButton:focus,
input.ctlButton:focus {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, white), color-stop(1, white)); /* Chrome 1-9 and Safari 4-5 */
  /* @alternate */
  background: -moz-linear-gradient(center top, white 5%, white 100%); /* Mozilla 16 and lower */
  /* @alternate */
  background: -ms-linear-gradient(top, white, white); /* IE9+ */
  /* @alternate */
  background: white; /* Chrome 10+ and Safari 5.1 */
  /* @alternate */
  background: -o-linear-gradient(top, white, white); /* Opera 11 and lower */
  -pie-background: linear-gradient(white, white); /* IE 9 */
  background-color: white;
  color: black;
  border: 1px solid #48d597;
}

a.ctlButton:active,
input.ctlButton:active {
  position: static;
  top: 1px;
}

a.ctlButtonBack,
input.ctlButtonBack {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #DEDDDD), color-stop(1, #9C9C9C)); /* Chrome 1-9 and Safari 4-5 */
  /* @alternate */
  background: -moz-linear-gradient(center top, #DEDDDD 5%, #9C9C9C 100%); /* Mozilla 16 and lower */
  /* @alternate */
  background: -ms-linear-gradient(top, #DEDDDD, #9C9C9C); /*IE9+ */
  /* @alternate */
  background: -webkit-linear-gradient(top, #DEDDDD, #9C9C9C); /* Chrome 10+ and Safari 5.1 */
  /* @alternate */
  background: -o-linear-gradient(top, #DEDDDD, #9C9C9C); /* Opera 11 and lower */
  background-color: #C0BFBF;
}

a.ctlButtonBack:hover,
input.ctlButtonBack:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #C0BFBF), color-stop(1, #6D6C6C)); /* Chrome 1-9 and Safari 4-5 */
  /* @alternate */
  background: -moz-linear-gradient(center top, #C0BFBF 5%, #6D6C6C 100%); /* Mozilla 16 and lower */
  /* @alternate */
  background: -ms-linear-gradient(top, #C0BFBF, #6D6C6C); /*IE9+ */
  /* @alternate */
  background: -webkit-linear-gradient(top, #C0BFBF, #6D6C6C); /* Chrome 10+ and Safari 5.1 */
  /* @alternate */
  background: -o-linear-gradient(top, #C0BFBF, #6D6C6C); /* Opera 11 and lower */
  background-color: #6D6C6C;
}

/* class="ctlButton ctlButtonPromo" */
.ctlButton.disabled,
.ctlButton.disabled:hover {
  background-color: white;
  color: #CCCCCC;
  border: 1px solid #CCCCCC;
  cursor: default;
}

.ctlButtonBack.disabled,
.ctlButtonBack.disabled:hover {
  background-color: white;
  color: #CCCCCC;
  border: 1px solid #CCCCCC;
  cursor: default;
}

a.ctlButton:hover,
input.ctlButton:hover,
a.ctlButton:focus,
input.ctlButton:focus {
  text-decoration: none;
  cursor: pointer;
}

a.ctlButton:focus,
input.ctlButton:focus {
  outline: thin dotted black;
}

.font20 {
  font-size: 20px;
}

.ui-widget-content a.ctlButton {
  color: #fff;
}


/* CSS3 Buttons for Self Service */
/*
.button{
	color:#fff !important;
    font-size:inherit;
	font-weight:bold !important;
	font-family:Arial, Helvetica, sans-serif !important;
	height: 25px !important;
	vertical-align:middle !important;
	text-align:center !important;
	padding:0.3em 2em !important;
	margin:0em .6em 1em 0em !important;
	-webkit-border-radius: .4em; -moz-border-radius: .4em; -ms-border-radius: .4em; -o-border-radius: .4em;
	border-radius: .4em !important;
    behavior:url(/static/js/PIE.htc);
    display:inline-block;
}

input.button{height:40px;}
a.button{
    margin:0em .3em 1em 0em !important; 
    text-decoration:none !important;
}
*/
/*
.green{	
	font-size:1.1em !important;
	border: .1em solid #077b22 !important;
	background-color: #24981e;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#8cc63f), to(#077b22)) !important;*/
/* Saf4+, Chrome */
/*background-image: -webkit-linear-gradient(top, #8cc63f, #077b22 !important);
background-image: -moz-linear-gradient(top, #8cc63f, #077b22) !important;
background-image: -ms-linear-gradient(top, #8cc63f, #077b22) !important;
background-image: -o-linear-gradient(top, #8cc63f, #077b22) !important;
background-image: linear-gradient(top, #8cc63f, #077b22) !important;
-webkit-box-shadow: inset 0 .1em 0 0 #aeeb5e;
-moz-box-shadow: inset 0 .1em 0 0 #aeeb5e;
-ms-box-shadow: inset 0 .1em 0 0 #aeeb5e;
-o-box-shadow: inset 0 .1em 0 0 #aeeb5e;
box-shadow: inset 0 .1em 0 0 #aeeb5e;
}*/
/*
.green:hover{
	border: .1em solid #08661c !important;
	background-color: #1d7d19 !important;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#6ab337), to(#08661c)) !important;*/
/* Saf4+, Chrome */
/*background-image: -webkit-linear-gradient(top, #6ab337, #08661c) !important;
background-image: -moz-linear-gradient(top, #6ab337, #08661c) !important;
background-image: -ms-linear-gradient(top, #6ab337, #08661c) !important;
background-image: -o-linear-gradient(top, #6ab337, #08661c) !important;
background-image: linear-gradient(top, #6ab337, #08661c) !important;
-webkit-box-shadow: inset 0 .1em 0 0 #aeeb5e;
-moz-box-shadow: inset 0 .1em 0 0 #aeeb5e;
-ms-box-shadow: inset 0 .1em 0 0 #aeeb5e;
-o-box-shadow: inset 0 .1em 0 0 #aeeb5e;
box-shadow: inset 0 .1em 0 0 #aeeb5e;
}*/
/*

.green a{
	color:#fff !important;
	font-weight:bold !important;
	font-family:Arial, Helvetica, sans-serif !important;
	text-decoration:none !important;
	cursor:pointer !important;
	text-align:center;
	vertical-align:middle !important;
	display:block !important; 
}
*/
/*
.gray{
	font-size:1.1em;
	border: 1px solid #696969 !important;
	background-color: #959595;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(#ff6c00));*/
/* Saf4+, Chrome */
/*background-image: -webkit-linear-gradient(top, #bbbbbb, #696969);
background-image: -moz-linear-gradient(top, #bbbbbb, #696969);
background-image: -ms-linear-gradient(top, #bbbbbb, #696969);
background-image: -o-linear-gradient(top, #bbbbbb, #696969);
background-image: linear-gradient(top, #bbbbbb, #696969);
-webkit-box-shadow: inset 0 1px 0 0 #cecece;
-moz-box-shadow: inset 0 1px 0 0 #cecece;
-ms-box-shadow: inset 0 1px 0 0 #cecece;
-o-box-shadow: inset 0 1px 0 0 #cecece;
box-shadow: inset 0 1px 0 0 #cecece;
cursor:pointer;
margin-right:.8em;
}*/

.gray:hover {
  border: 1px solid #545353;
  background-color: #959595;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#adadad), to(#545353));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #adadad, #545353);
  background-image: -moz-linear-gradient(top, #adadad, #545353);
  background-image: -ms-linear-gradient(top, #adadad, #545353);
  background-image: -o-linear-gradient(top, #adadad, #545353);
  background-image: linear-gradient(top, #adadad, #545353);
}

.gray a {
  color: #fff;
  font-weight: bold;
  font-family: MaisonNeue-Medium, serif;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  display: block;
  /*padding:1em 2.5em;*/
}

.gray a:hover {
  text-decoration: none;
}

/* used to make buttons look disabled */
.disabled {
  border: 1px solid #CCCCCC;
  background-color: white;
  color: #CCCCCC;
  box-shadow: none;
  margin-right: 8px;
}

.disabled a {
  text-decoration: none;
}

a.buttonLink {
  background-color: #48d597;
  background-image: -moz-linear-gradient(center top, #48d597, #48d597);
  border: 1px solid #48d597;
  border-radius: 6px;
  color: black;
  font: bold 14px MaisonNeue-Medium, serif;
  height: 22px;
  padding: 4px 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

/** carryover from mobile.css **/
input.cssButton {
  background-color: #48d597;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#48d597), to(#48d597));

  background-image: -webkit-linear-gradient(top, #48d597, #48d597);
  background-image: -moz-linear-gradient(top, #48d597, #48d597);
  background-image: -ms-linear-gradient(top, #48d597, #48d597);
  background-image: -o-linear-gradient(top, #48d597, #48d597);
  background-image: linear-gradient(top, #48d597, #48d597);
  border: 1px solid #48d597;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  color: black;
  font: bold 14px MaisonNeue-Medium, serif;
  line-height: 1;
  padding: 2px 10px 4px 10px;
  margin: 8px 0px;
  text-align: center;
  text-transform: uppercase;
  height: 26px;
  cursor: pointer;
}

a.cancelBtn,
input.cancelBtn {
  padding: 6px 15px;
  background-color: black;
  color: #ffffff;
  font-family: MaisonNeue-Medium, serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#666));
  background-image: -webkit-linear-gradient(top, #ccc, #666);
  background-image: -moz-linear-gradient(top, #ccc, #666);
  background-image: -ms-linear-gradient(top, #ccc, #666);
  background-image: -o-linear-gradient(top, #ccc, #666);
  background-image: linear-gradient(top, #ccc, #666);
  border: 0px solid black;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #eee;
  -moz-box-shadow: inset 0 1px 0 0 #eee;
  -ms-box-shadow: inset 0 1px 0 0 #eee;
  -o-box-shadow: inset 0 1px 0 0 #eee;
  box-shadow: inset 0 1px 0 0 #eee;
  cursor: pointer;
  line-height: 30px;

}

.cancelBtn a:hover {
  text-decoration: none;
}

/** end carryover from mobile.css **/


/* ----------------------- */
/*    Responsive styles    */
/* ----------------------- */

/* Pre-auth */

.ctlButton + .ctlButton {
  display: inline-block;
  margin-left: 2px;
}

#enrollButton {
  display: inline-block;
}


/* Pre-auth: Button pairs */

.buttons-wrapper {
  display: block;
  font-size: 0;
  margin: 20px auto 0;
  width: 282px;
}

.buttons-wrapper .ctlButton {
  display: inline-block;
  font-size: 16px;
  margin-top: 0;
  width: 200px;
  color: #000;
  background: #48d597;
  border: 1px solid #48d597;
}

.buttons-wrapper a.ctlButton {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}

input#submitButton.ctlButton.disabled {
  background-color: #fff;
  border: 1px solid #ccc;
}

.buttons-wrapper .ctlButton:focus {
  background: none;
  background-color: #fff;
  color: #000;
}

.buttons-wrapper .ctlButton + .ctlButton {
  margin-left: 2%;
}

.buttons-wrapper #cancelRegistration {
  display: inline-block;
  line-height: 42px;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .buttons-wrapper {
    width: 100%;
    margin: 20px 0 0;
  }

  .buttons-wrapper .ctlButton {
    font-size: 16px;
  }

  .buttons-wrapper #cancelRegistration {
    line-height: 28px;
    width: auto;
  }
}

@media (min-width: 992px) {
  .buttons-wrapper {
    margin: 20px 0 0;
    width: auto;
  }

  .buttons-wrapper .ctlButton {
    width: 200px;
    background-color: #48d597;
    background: #48d597;
    color: #000;
    padding: 8px 30px;
    border: 1px solid #48d597;
    box-shadow: none;
  }

  .buttons-wrapper .ctlButton:hover, .buttons-wrapper .ctlButton:focus {
    background: none;
    background-color: #fff;
    color: #000;
  }

  .buttons-wrapper .ctlButton + .ctlButton {
    margin-left: 5px;
  }
}

#login.forgot-username-confirm .buttons-wrapper {
  margin: 20px 0;
  float: left;
  width: 100%;
}

#login .buttons-wrapper .ctlButton#forgot-user-reset-password-button,
#login .buttons-wrapper .ctlButton#forgot-user-sign-in-button {
  width: auto;
}


/* Payment History */

#payment-history .ctlButton {
  margin: 10px auto 20px;
}

@media (min-width: 768px) {
  #payment-history .ctlButton {
    margin: 10px auto 20px;
  }

  #payment-history #payment-history-make-payment-button {
    margin-bottom: 4px;
    vertical-align: bottom;
    position: absolute;
    top: 0;
    right: 0;
  }
}


/* Billing */

#view-pay-bills #payNowButtonMobile {
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  #view-pay-bills #payNowButton {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

#view-pay-bills #viewBillButton {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  #view-pay-bills #viewBillButton {
    margin-bottom: 0;
    margin-left: 5px;
  }
}

#view-pay-bills #btnDownload {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  #view-pay-bills #btnDownload {
    margin: 0;
  }
}

#view-current-statement-button, #view-current-statement-button-mobile {
  width: 90%;
}

@media (min-width: 768px) {
  #view-current-statement-button,
  #view-current-statement-button-ens {
    display: block;
    margin: 15px auto;
  }
}

#ViewPayBills {
  display: block;
  margin: 15px auto;
}

@media (min-width: 992px) {
  #bill_container #ViewPayBills,
  #view-current-statement-button,
  #view-current-statement-button-ens {
    display: inline-block;
    margin: 0 15px 0 0;
    width: auto;
  }
}

#account-address-edit .ctlButton {
  height: 50px;
  width: 200px;
}

@media (min-width: 768px) {
  #account-address-edit .ctlButton {
    margin: 0 15px 0 0;
    width: 200px;
  }
}

@media (max-width: 767px) {
  .buttons-wrapper {
    text-align: center;
    display: flex;
    /* flex-direction: column; */
    width: inherit !important;
    align-items: center;
    
    flex-wrap: wrap;
  }

  .buttons-wrapper input {
    margin: 5px auto !important;
  }

  .buttons-wrapper a.ctlButton:nth-of-type(1) {
    margin: 10px 5px 10px 0!important;
  }

  .buttons-wrapper .ctlButton {
    margin: 0 !important;
  }

  a#forgot-user-sign-in-button, .a#forgot-user-reset-password-button {
    /* margin: 0 0 !important; */
  }
}

.billingAddressSubmit {
  padding: 15px 0 0;
}
