/** Common */
.cursor-default {
  cursor: default;
}

/** Modal Button */
.modal button {
  margin: 0;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  padding: 0px 6px;
  height: 13px;
  width: 13px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13'%3E%3Cpath fill='%23272727' fill-rule='evenodd' d='M11.314 0l.707.707L6.717 6.01l5.304 5.304-.707.707L6.01 6.717.707 12.021 0 11.314 5.303 6.01 0 .707.707 0 6.01 5.303 11.314 0z'/%3E%3C/svg%3E") no-repeat 50%/cover;
}

.modal .btn {
  font-size: 14px;
  line-height: 1.4;
  padding: 13px 20px;
  border-radius: 4px;
  transition: box-shadow 0.1s, top 0.1s;
  box-shadow: 0 3px 0 rgba(0,0,0,0.3);
  top: 0;
  background: #fff;
}
.modal .btn:hover {
  box-shadow: 0 3px 0 transparent;
  top: 3px;
}
.modal .btn:active {
  background: #f2f2f2;
}

/** Modal */
.modal {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  max-width: 500px;
  padding: 50px 30px 30px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  height: auto;
  min-height:20%;

}
.modal .modal-close-btn {
  position: absolute;
  right: 20px;
  top: 25px;
  font-size: 20px;
}

/** Overlay */
.overlay {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/** JS */
.is-visible{
  opacity: 1;
  pointer-events: auto;
  display:block;
}








* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: #555;
  font-size: 18px;
  font-family: Whitney, Arial,sans-serif;
  font-weight: 400;
  line-height: 1.415;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-shadow: rgba(0,0,0,.01) 0 0 1px;
  overflow-x: hidden;
}
.show-msg{
  display:block !important;  
}
.invalid-feedback {
 margin-bottom: 30px;
}
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.col-12 {
  position: relative;
  width: 100%;
}
.col-6 {
  padding-left: 15px;
  padding-right: 15px;
}
.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  width: 100%;
}
.text-right {
  text-align: right;
}
.text-white, a.text-white {
  color: #fff !important;
}
a.text-white:hover {
  color: #fff !important;
}
.justify-content-end {
  justify-content: flex-end;
}
.navigation-inner {
  background: #3c3c3c;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.logo-home img {
  width: 152px;
  height: 40px;
}
.brand {
  height: 70px;
  display: flex;
  align-items: center;
}
.header-cust-number {
  align-items: center;
  display: flex;
}
.header-cust-number a {
  cursor: default;
  font-size: 19px;
  font-weight: 500;
  text-decoration: none;
}
@media (min-width:768px) {
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
}
@media (min-width: 1025px) {
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (min-width:1025px) {
  .navigation-inner {
    padding: 0 40px;
  }
}
/*** content styles ***/
table {
  font-size: 18px;
}
.main .columns > table {
  padding: 0 35px;
}
p {
  line-height: 1.415;
  margin: 0 0 1.5em;
}
p a {
  font-weight: 700;
}
/*** forms ***/
fieldset {
  border: 1px solid #dfe3e6;
  padding: 30px;
}
legend {
  padding: 0 20px;
  margin-left: -20px;
  width: auto;
}
.custom-select:focus {
  border-color: #006c9c;
  outline: none;
}
label, .label {
  font-size: 16px;
  font-weight: 500;
  color: #272727;
  cursor: pointer;
  margin-right: 0;
  line-height: 1rem;
}
label.form-text.small {
  margin-bottom: 1rem;
}
.custom-checkbox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  margin-right: 30px;
}

.custom-checkbox input:checked ~ label:before {
  border-color: #006c9c;
  background-color: transparent;
}

.custom-checkbox input:checked ~ label:after {
  background: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18'><g fill='none' fill-rule='evenodd'><path stroke='%23888' d='M.5.5h17v17H.5z'/><path fill='%23006C9C' d='M4.091 4.091h9.818v9.818H4.091z'/></g></svg>") no-repeat 50%/cover;
}
input[type="submit"].cancel {
  color: #555;
  border: none;
}
input[type="submit"].cancel:hover,
input[type="submit"].cancel:focus {
  color: #555;
  background: #fff;
  outline: none;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0,108,156,.25);
  box-shadow: 0 0 0 0.2rem rgba(0,108,156,.25);
}
#ridingstyles {
  display: none;
}
#ridingstyles.show {
  display: block;
}
.btn-link.text-danger:hover {
 color:#9b0a17 !important;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1025px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
  }
}

.mb-0 {
  margin-bottom: 0;
}
.mb-3 {
  margin-bottom: 22.5px;
}
.ml-2, .mx-2 {
  margin-left: 15px!important;
}
.mr-2, .mx-2 {
  margin-right: 15px!important;
}
.tet-dark {
  color: #272727;
}
.text-center {
  text-align: center;
}
.d-inline-block {
  display: inline-block!important;
}
.align-middle {
  vertical-align: middle!important;
}
.border-top {
  border-top: 1px solid #dfe3e6;
}
a {
  color: #006c9c;
  text-decoration: none;
}
a:hover {
  color: #004766 !important;
}
.col-12 {
  width: 100%;
}
.footer-bottom .container .row {
  padding: 30px 0;
}
.footer-social-icon {
  width: 20px;
  height: 20px;
  line-height: 1;
  fill: #006c9c;
}
.footer-social-icon:hover {
  fill: #004766;
}
@media (min-width: 768px) {
  .footer-bottom .container .row {
    padding: 22.5px 0;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
}/*** sticky footer ***/
html, body {
  height: 100%;
}
.layout-canvas-a {
  height: 100%;
}
.sticky-footer-push {
  min-height: 100%;
}
.sticky-footer-push-inner {
  padding-bottom: 85px;
}
.sticky-footer {
  height: 85px;
  margin-top: -85px;
}

@media (max-width:389px) {
  .preferences .form-footer .btn {
    width: 100% !important;
  }
}
@media (min-width:390px) {
  .d-xs-flex {
    display: flex;
  }
  .d-xs-inline {
    display: inline !important;
  }
}
p.xsmall {
  font-size: 12px;
}
@media (min-width:768px) {
  p.xsmall {
    font-size: 16px;
  }
}

.preferences .custom-control-label {
  color: #272727;
  font-weight: 500;
}
.preferences .custom-checkbox {
  display: block;
  margin-right: 0;
}
.preferences {
  position: relative;
}
.preferences .form-footer {
  position: sticky;
  bottom: -1px;
  left: 0;
  width: calc(100% + 30px);
  background : #ffffff;
  z-index: 1;
  border-top: none;
}
.preferences .form-footer[stuck] {
  border-top: 2px solid #006c9c;
}
.preferences input[type="phone"] {
  max-width: 320px;
}

.preferences .custom-checkbox .custom-control-label:after,
.preferences .custom-checkbox .custom-control-input:checked ~ .custom-control-label:after,
.custom-radio .custom-control-input:checked~.custom-control-label:after {
  height: 24px;
  width: 24px;
}
.preferences .custom-control-label:before {
  height: 24px;
  width: 24px;
  top: 20px;
  right: 20px;
  left: auto;
}
.preferences .custom-radio .custom-control-label::after {
  height: 24px;
  width: 24px;
}
.preferences .custom-control-label:after {
  top: 20px;
  right: 20px;
  left: auto;
}
.preferences .custom-control-label {
  position: static;
}
.preferences .custom-checkbox {
  padding-left: 20px;
}
.preferences .custom-control-label {
  font-size: 18px;
}
.preferences .label {
  font-size: 18px;
  line-height: 1.5625rem;
}
@media (min-width:1025px) {
  .preferences .custom-control-label:before,
  .preferences .custom-control-label:after {
    right: 30px;
  }
}

.py-20 {
  padding-top: 19px !important;
  padding-bottom: 19px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pr-150 {
  padding-right: 60px !important;
}
@media (min-width:1025px) {
  .pr-150 {
    padding-right: 150px !important;
  }
}
.typeface-7 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

/** Account nav **/
.profile .navigation li {
    padding: 1rem;
    background-color: #f8f8f8;
    border-bottom: 1px solid #dfe3e6;
    list-style-type: none;
}
.profile .navigation li.active {
    background-color: #fff;
}
.profile .navigation li a {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3125rem;
    color: #272727;
    color: #555;
}
.profile .navigation li.active a {
    color: #006c9c;
}
.profile .navigation li.no-border {
    border-bottom: none;
}
.profile .navigation {
    padding-right: 2.5rem;
}
.profile .account-nav {
    margin-bottom: 1.875rem;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #555;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0;
    -webkit-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .175);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .175);
    margin-top: 0;
    width: 100%;
}
.dropdown.show .dropdown-menu {
    display: block;
}
.dropdown.show .btn {
  color: #ffffff !important;
}
@media (min-width:1025px) {
.account-nav.sticky {
  position: sticky;
  top: 0;
}
.preferences {
  padding-bottom:500px;
}
}
input[type="radio"][disabled]~.custom-control-label:after,
input[type="radio"][disabled]:checked~.custom-control-label:after{
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
input[type="checkbox"][disabled]~.custom-control-label:after,
input[type="checkbox"][disabled]:checked~.custom-control-label:after{
  background: #f1f1f1;
  border: 1px solid #ccc;
}

textarea:focus,
textarea:focus-visible {
    border: 1px solid #006c9c;
    outline: none;
}

input#correct-information~textarea {
 display: none;
}
input#correct-information:checked~textarea {
 display: block;
}
.back-link {
  font-weight: bold;
  font-size: 16px;
  margin-top: 12px;
}

.alert-danger a {
  font-weight: bold;
  color: #631017;
}
.btn-primary:hover,
.btn-outline-primary:hover {
  color: #ffffff !important;
}

.form-control:disabled, .form-control:disabled::placeholder, .form-control[readonly] {
  color: #444;
  background: #f1f1f1;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label.disabled:before {
  background: #f1f1f1;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label.disabled:after {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath stroke='%23888' d='M.5.5h17v17H.5z'/%3E%3Cpath fill='%23999999' d='M4.091 4.091h9.818v9.818H4.091z'/%3E%3C/g%3E%3C/svg%3E") no-repeat 50%/cover;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label.disabled {
  cursor: default;
}

/* sf form styles */
.form-help-text {
    font-size: 14.4px;
    color: #555;
}
.sf-form label:not(.required):after {
    content: "(optional)";
    color: #555555;
    font-weight: 400;
    font-size: 14.4px;
    margin-left: 7px;
}
.sf-form label.hide-optional:after {
    content: none;
}
.sf-form label.required:before {
    content: "*";
    color: #bf1e2d;
    margin-right: 4px;
}
.sf-form .checkbox-inline .checkbox-inline-flex {
  display: flex;
}
.sf-form .checkbox-inline input[type="checkbox"] {
  flex: 0 0 auto;
  margin-right: 7px;
  position: relative;
  top: 2px;
}
.sf-form .checkbox-inline label {
  line-height: 1.25;
}
.sf-form .checkbox-inline.required .checkbox-inline-flex:before {
  content: '*';
    color: #bf1e2d;
    margin-right: 4px;
    position: relative;
    top: -2px;
}
.sf-form .checkbox-inline.required label:before {
  content: none;
}
.sf-form .checkbox-inline.required:has(.is-invalid) .invalid-feedback {
  display: block !important;
  margin-top: 0;
}
.sf-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 1px solid #888888;
}
.sf-form .checkbox-group-required.is-invalid input[type="checkbox"],
.sf-form input[type="checkbox"].is-invalid {
  border-color: red;
  padding: 0;
}
.sf-form input[type="checkbox"]:checked {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath stroke='%23888' d='M.5.5h17v17H.5z'/%3E%3Cpath fill='%23006C9C' d='M4.091 4.091h9.818v9.818H4.091z'/%3E%3C/g%3E%3C/svg%3E") no-repeat 50%/cover;
}
.sf-form .checkbox-group-required.is-invalid .invalid-feedback {
  display: block !important;
}
.sf-form small.form-text {
  font-size: 80%;
}

/** alerts **/
.alert-success p,
.alert--success h1,
.alert-success h2,
.alert-success h3 {
 color: #034c25;
}

.reflink {
  border: 1px dashed #034c25;
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  width: 100%;
  margin-right: 10px;
  font-size: 90%;
  word-wrap: break-word;
}
.reflinkbox {
 display: flex;
}
.share {
  display: flex;
  gap: 15px;
}
.share a {
  font-size: 90%;
  display: flex;
  align-items: center;
}
.share a img {
  width: 30px;
  margin-right: 5px;
}
@media (max-width: 575px) {
 .reflinkbox {
  flex-direction: column;
 }
  .reflink {
   margin-bottom: 6px;
  }
}
@media (max-width: 400px) {
  .share {
   flex-direction: column;
  }
}
.faq-list {
  width: 100%;
}
.faq-list .faq-item {
  padding: 15px;
}
.faq-list .faq-item .faq-answer {
  padding-left: 18px;
}
.faq-list .faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-list .faq-item .faq-question {
  margin-bottom: 10px;
}
.invalid-feedback a {
  color: #bf1e2d;
  text-decoration: underline;
}
form.refer-a-friend .invalid-feedback {
 margin-bottom: 0;
}
.reflink .code {
  font-weight: bold;
}
.reflink.muted {
 background: rgba(255,255,255,0.6);
}
.shared-by {
  font-size: 80%;
}
.shared-by .code {
  font-weight: 500;
}