/* Pri Color: B61231    182, 18, 49    #999999 - #1d1121   49, 9, 43*/

html {
    background: #fff;
    font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
    height: 100%;
    text-size-adjust: none;
}

body {
    box-sizing: border-box;
    height: 100%;
    padding: 0;
    /* Don't overlap the notch on iphones etc */
    padding-top: env(safe-area-inset-top,0);
    margin: 0;
}

html, body {
    /* Legacy Android / Safari fallback */
    -webkit-overflow-scrolling: auto; /* iOS bounce control */
    overflow: hidden; /* Prevent scroll "momentum" that triggers pull-to-refresh */

    /* Modern browsers */
    overscroll-behavior: none;
    -ms-scroll-chaining: none; /* Legacy Microsoft (just in case) */
    -ms-overflow-style: none;  /* Legacy IE/Edge - usually desktop only */

    /*touch-action: none; !* Block gestures, including scrolling. The app is pretty well "fullscreen" by itself. *!*/
    touch-action: pan-y; /* Block gestures, except vertical scroll, there should be no need for x scrolling. */
}

.lang-es { display: none; }
.lang-fr { display: none; }

body.user-lang-es .lang-en {
    display: none;
}

body.user-lang-es .lang-es {
    display: unset;
}

body.user-lang-fr .lang-en {
    display: none;
}

body.user-lang-fr .lang-fr {
    display: unset;
}

p {
    font-size: 14px;
    line-height: 20px;
    color: #444;
}

label {
    margin-bottom: 5px;
}

.description {
    color: #444;
    font-size: 14px;
    font-weight: bold;
    margin: 15px 0px;
}

::-webkit-input-placeholder {
    color: #696969;
    font-size: 14px;
    font-weight: 500;
}

:-moz-placeholder { /* Firefox 18- */
    color: #696969;
    font-size: 14px;
    font-weight: 500;

}

::-moz-placeholder {  /* Firefox 19+ */
    color: #696969;
    font-size: 14px;
    font-weight: 500;

}

.dark:-ms-input-placeholder {
    color: #666;

}

.dark::-webkit-input-placeholder {
    color: #666;

}

.dark:-moz-placeholder { /* Firefox 18- */
    color: #666;

}

.dark::-moz-placeholder {  /* Firefox 19+ */
    color: #666;

}

.dark:-ms-input-placeholder {
    color: #666;

}

a.button {
    display: block;
}

button {
    display: inline-block;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0;
}

/* For screen reader visible text */
.sr-only {
    display: inline-block;
    white-space: nowrap;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
}

.nosel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.preserve-whitespace{
    white-space: pre;
}

.center {
    text-align: center;
}

.camel {
    text-transform: none !important;
}

.sub-text {
    margin-top: 0 !important;
}
.with-sub-text {
    margin-bottom: 0 !important;
}

.v-centered-wrapper {
    display: table;
    height: 100%;
    width: 100%;
    overflow: scroll;
  }
  
  .v-centered {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
  }

/*************************************************

    Notifications

**************************************************/

/*    Notice
------------------------------------------------*/
#notice {
    display: none;
    position: absolute;
    z-index: 5000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(20,5,17,0.6);
}

#notice .content {
    position: absolute;
    top: 90px;
    right: 30px;
    left: 30px;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px;
    background: #fff;
    border-radius: 2px;
}

#notice .title {
    margin-top: 10px;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

#notice .message {
    margin-top: 20px;
    font-size: 12px;
    line-height: 16px;
}

#notice .button {
    display: block;
    width: 100%;
    margin-top: 30px;
}



/*    Error
------------------------------------------------*/
#error-notice,
#efnol-success-notice,
#efnol-error-notice
{
    display: none;
    position: absolute;
    z-index: 5000;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(20,5,17,0.6);
}

#error-notice .content,
#efnol-success-notice .content,
#efnol-error-notice .content
{
    position: absolute;
    box-sizing: border-box;
    top: 20px;
    right: 20px;
    height: calc(100% - 40px);
    left: 20px;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px;
    overflow: scroll;
    background: #fff;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

#error-notice .title,
#efnol-success-notice .title,
#efnol-error-notice .title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 200;
    text-align: center;
}

#error-notice .message {
    flex-grow: 1;
}

#error-notice .button {
    width: 100%;
}

#efnol-success-notice .content,
#efnol-error-notice .content {
    bottom: initial;
}

#efnol-success-notice .button,
#efnol-error-notice .button {
    margin: 10px;
}

#efnol-success-notice .normal,
#efnol-error-notice .normal {
    text-align: center;
}

#efnol-success-notice .agent-phone-number-link,
#efnol-error-notice .agent-phone-number-link {
    display: block;
}

#efnol-success-notice .call-agent-inline,
#efnol-error-notice .call-agent-inline {
    text-align: center;
    margin: 10px;
}

#efnol-success-notice .agent-phone-number-button a,
#efnol-error-notice .agent-phone-number-button a {
    color: white;
    text-decoration: none;
}

.message > p {
    margin: 0 0 1rem 0;
}

/*************************************************

    General UI pieces

**************************************************/


#dbug-open {
    position: absolute;
    z-index: 2000;
    left: 8px;
    bottom: 8px;
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    background: rgba(49, 9, 43, 0.85);
    border-radius: 40px;

}


/*    Dividing line to distinguish this or that
------------------------------------------------*/
.line-or {
    margin: 10px 20px;
    font-size: 11px;
    line-height: 20px;
    color: #777;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 10px 0 0 #fff inset, 0 11px 0 0 #ccc inset;
}

.line-or-title {
    padding: 0 10px;
    background: #fff;

}


/*    Center on Me  (geolocation of device)
------------------------------------------------*/

#center-on-me {
    position: absolute;
    z-index: 20;
    right: 5px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, .5);
    border-radius: 40px;
}
.ask-location #center-on-me {
    display: none;
}

.center-on-me {
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 26px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}



/*    Credit Cards
------------------------------------------------*/
.cc-icon {
    width: 32px;
    height: 21px;
    background-repeat: no-repeat;
    background-image: url(../img/sprite.png);  /* 376x186 */
    background-position: -111px 0;
    -ms-background-size: 188px 93px;
    -moz-background-size: 188px 93px;
    -webkit-background-size: 188px 93px;
    background-size: 188px 93px;
}
.cc-icon.type-visa {
    background-position: 0 0;
}
.cc-icon.type-master {
    background-position: -73px 0;
}
.cc-icon.type-amex {
    background-position: -37px 0;
}


/*    Service Icons
------------------------------------------------*/
.tow-quote-icon {
    width: 20px;
    height: 14px;
    background-repeat: no-repeat;
    background-image: url(../img/sprite.png);  /* 376x186 */
    background-position: 0 -79px;
    -ms-background-size: 188px 93px;
    -moz-background-size: 188px 93px;
    -webkit-background-size: 188px 93px;
    background-size: 188px 93px;
}

.vin-number-container {
    padding-bottom: 15px;
    display: none;
}

.roadside-quote-icon {
    width: 15px;
    height: 14px;
    background-repeat: no-repeat;
    background-image: url(../img/sprite.png);  /* 376x186 */
    background-position: -22px -79px;
    -ms-background-size: 188px 93px;
    -moz-background-size: 188px 93px;
    -webkit-background-size: 188px 93px;
    background-size: 188px 93px;
}



/*    Service Summary
------------------------------------------------*/

.service-summary {
    position: relative;
    background: #fff;
    box-shadow: 0 1px 0 0 #ddd;
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 8px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-image: url(../img/icons/service-icon-dark.png);
    -ms-background-size: 30px 30px;
    -moz-background-size: 30px 30px;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;

}

.service-summary .service-st-loc {
    height: 40px;
    padding-left: 30px;
    margin: 0 0 0 21px;
    line-height: 40px;
    box-shadow: 3px 0 0 0 #0c1 inset;
    cursor: pointer;
    cursor: hand;
}

.benefit-list {
    font-weight: 200;
    font-size: 1em;
}

.service-summary .dropoff-st-loc {
    display: none;
    height: 40px;
    padding-left: 30px;
    margin: 0 0 0 21px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #444;
    line-height: 40px;
    box-shadow: 3px 0 0 0 #b61231 inset;
    border-top: solid 1px #e3e3e3;
    cursor: pointer;
    cursor: hand;
}

.limit-reason-container {
    display: none;
    font-size: 0.8rem;
    color: #999;
}

/*    Quick Form
------------------------------------------------*/
.form-outline {
    position: relative;
    border: solid 1px #ccc;
    border-radius: 3px;
}

.cc-icon {
    position: absolute;
    top: 10px;
    left: 10px;
}

.quick-form .qf-horizontal {
    white-space: nowrap;
    overflow: hidden;
    margin-left: 45px;
}

.qf-combined {
    position: absolute;
}
.qf-combined-placeholder,
.qf-combined {
    width: 100%;
    padding: 8px 8px;
    margin: 0;
    box-sizing: border-box;
    background: transparent;
    font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    border: none;
}

.qf-combined-placeholder {
    color: #ddd;
}

.qf-start {
    box-sizing: border-box;
    width: 100%;
}

.qf-resize,
.qf-reg {
    display: -moz-inline-stack;
    display: inline-block;
    height: 40px;
    padding: 0 18px;
    border: solid 1px #00f;
    margin: 0;
    box-sizing: border-box;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    border: none;
    border-radius: 0;
}

.qf-reg {
    border-left: solid 1px #ccc;
}

.qf-remaining {
    display: -moz-inline-stack;
    display: inline-block;
}

.qf-hidefirst {
    display: none;
}

.qf-field {
    display: -moz-inline-stack;
    display: inline-block;
    height: 40px;
    padding: 0 15px;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    border-radius: 0;
    width: 100%;
}

textarea.qf-field {
    height: 100px;
    padding: 15px;
}

.qf-field-block,
.qf-field-block input,
.qf-field-block textarea {
    width: 100%;
}

.qf-field-cc {
    width: 100%;
}

.qf-field-exp {
    width: 150px;
}

.qf-field-cvv {
    width: 150px;
}

.qf-field-number {
    width: 100%;
}

.qf-container {
    margin: -20px auto 5px;
    width: 300px;
}
.qf-field-set {
    box-shadow: 1px 1px 0 0 #ddd;
    width: 300px;
    margin: 10px auto 60px;
}

.qf-field-set-small-bottom-margin {
    margin-bottom: 10px;
}

.qf-field-box {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    /*display: *inline;*/
    box-shadow: 1px 1px 0 0 #ddd inset;

}

.cc-exp-month, .cc-exp-year {
    width: 70px;
    padding: 0 20px;

}

.cc-cvv {
    width: 160px;
    padding: 0 22px;
}

.cc-number {
    width: 250px;
    margin-left: 50px;
}


.phone-number {
    padding: 0 10px;
    width: 100%;
}



/*    Buttons
------------------------------------------------*/
.cancel {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    font-size: 11px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
}

.button {
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
    line-height: 18px;
    background: rgba(250,245,250, 0.2);
    box-shadow: 0 -3px 0 0 rgba(0, 0, 0, 0.2) inset;
    border-radius: 3px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    font-weight: 200;
    letter-spacing: 2px;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */ 
}
.button.invert-color {
    background: #fff;
    color: rgba(250,245,250, 0.2);
}
.button:hover {
    box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.1) inset;
}

.button.disabled {
    background-color: #c8c8c8 !important;
    box-shadow: none;
    cursor: default;
}


.button-holder {
    padding: 5px 0;
}

.button.button-half {
    display: inline-block;
    width: 48%;
}

.button.button-half:last-child{
    float: right;
}

.service-st-loc {
    padding-top: 0;
    font-size: 14px;
    line-height: 18px;
    color: #444;
}

.order-is-complete .main-copy {
  padding-top: 30px;
  padding-bottom: 30px;
}

.order-is-complete .button {
  margin-top: 10px
}

#disabled-with-phone-number .main-copy {
    margin: 30px 0 30px;
}

#disabled-with-phone-number .button a {
    color: white;
    text-decoration: none;
}

/*    Thinking
------------------------------------------------*/
#thinking, .loading-tow-destination-recommendations {
    display: none;
    position: absolute;
    z-index: 5001;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

#thinking-light {
    display: none;
    position: absolute;
    z-index: 5001;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-left: -20px;
    margin-top: -20px;
    background: rgba(29, 17, 33, 0.3);
    text-align: center;
    border-radius: 50px;
}

.think-img {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-image: url(../img/icons/app-working-dark.gif);
    -ms-background-size: 24px 24px;
    -moz-background-size: 24px 24px;
    -webkit-background-size: 24px 24px;
    background-size: 24px 24px;

}


#thinking-light .think-img {
    display: inline-block;
    margin-top: 8px;
}

#thinking .think-img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
}

.loading-tow-destination-recommendations .think-img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
}



/*************************************************

    Main Elements

**************************************************/




#app-frame {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 100%;
    overflow: scroll;
}

#geo-notice-arrow {
    display: none;
    position: absolute;
    z-index: 5003;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.look-up {
    display: none;
    position: absolute;
    background: rgba(255,255,255,0.08);
}

.look-up-head {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 140px;
}

.intro-language-toggle {
    z-index: 9999 !important;
    top: 20px;
    position: absolute;
    right: 2%;
    top: 4px;
    width: fit-content;
    padding: 0;
    background-color: #8021b3;
}

.intro-language-toggle .language-selector  {
    color: #fff;
}

.intro-language-toggle .language-selector option {
    background-color: #8021b3;
}

.look-up-hl {
    display: none;
    position: absolute;
}

.look-up-head-hl {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px;
}

.look-up-text {
    position: absolute;
    right: 10px;
    left: 10px;
    color: #fff;

}

.look-up-text-sub {
    position: absolute;
    right: 10px;
    left: 10px;
    color: #90497a;
}


/*    Safari    */
.browse-safari .look-up {
    top: 75px;
    left: 50%;
    width: 250px;
    height: 180px;
    margin-left: 350px;
    transform:rotate(5deg);
    -ms-transform:rotate(5deg);
    -moz-transform:rotate(5deg);
    -webkit-transform:rotate(5deg);
}
.browse-safari .look-up-head {
    top: -50px;
    left: -280px;
    border-color: transparent rgba(255,255,255,0.08) transparent transparent;
}
.browse-safari .look-up-hl {
    top: 76px;
    left: 50%;
    width: 250px;
    height: 180px;
    margin-left: 350px;
    transform:rotate(5deg);
    -ms-transform:rotate(5deg);
    -moz-transform:rotate(5deg);
    -webkit-transform:rotate(5deg);
}
.browse-safari .look-up-head-hl {
    top: 50px;
    left: -100px;
    border-color: transparent rgba(255,255,255,0.1) transparent transparent;
}
.browse-safari .look-up-text {
    bottom: 80px;
    right: 40px
}

/*    Firefox    */
.browse-ff .look-up {
    left: 155px;
    top: 280px;
    width: 180px;
    height: 150px;
    transform:rotate(8deg);
    -ms-transform:rotate(8deg);
    -moz-transform:rotate(8deg);
    -webkit-transform:rotate(8deg);
}
.browse-ff .look-up-head {
    top: -280px;
    right: -50px;
    border-color: transparent transparent rgba(255,255,255,0.08) transparent;
}
.browse-ff .look-up-hl {
    left: 155px;
    top: 280px;
    width: 180px;
    height: 150px;
    transform:rotate(8deg);
    -ms-transform:rotate(8deg);
    -moz-transform:rotate(8deg);
    -webkit-transform:rotate(8deg);
}
.browse-ff .look-up-head-hl {
    top: -100px;
    left: 50px;
    border-color: transparent transparent rgba(255,255,255,0.1) transparent;
}
.browse-ff .look-up-text {
    top: 10px;
}

/*    Chrome    */
.browse-chrome .look-up {
    right: 10px;
    top: 150px;
    height: 150px;
    width: 180px;
    transform:rotate(8deg);
    -ms-transform:rotate(8deg);
    -moz-transform:rotate(8deg);
    -webkit-transform:rotate(8deg);
}
.browse-chrome .look-up-head {
    top: -280px;
    right: -50px;
    border-color: transparent transparent rgba(255,255,255,0.08) transparent;
}
.browse-chrome .look-up-hl {
    right: 10px;
    top: 150px;
    width: 180px;
    height: 150px;
    transform:rotate(8deg);
    -ms-transform:rotate(8deg);
    -moz-transform:rotate(8deg);
    -webkit-transform:rotate(8deg);
}
.browse-chrome .look-up-head-hl {
    top: -100px;
    left: 50px;
    border-color: transparent transparent rgba(255,255,255,0.1) transparent;
}
.browse-chrome .look-up-text {
    top: 20px;
}

/*    IE    */
.browse-ie .look-up {
    left: 50%;
    bottom: 200px;
    margin-left: 150px;
    width: 180px;
    height: 150px;
    transform:rotate(10deg);
    -ms-transform:rotate(10deg); /* IE 9 */
    -moz-transform:rotate(10deg); /* IE 9 */
    -webkit-transform:rotate(10deg); /* Opera, Chrome, and Safari */
}
.browse-ie .look-up-head {
    bottom: -280px;
    right: -50px;
    border-color: rgba(255,255,255,0.08) transparent transparent transparent;
}
.browse-ie .look-up-hl {
    left: 50%;
    bottom: 200px;
    margin-left: 150px;
    width: 180px;
    height: 150px;
    transform:rotate(10deg);
    -ms-transform:rotate(10deg); /* IE 9 */
    -moz-transform:rotate(10deg); /* IE 9 */
    -webkit-transform:rotate(10deg); /* Opera, Chrome, and Safari */
}
.browse-ie .look-up-head-hl {
    bottom: -100px;
    right: 50px;
    border-color: rgba(255,255,255,0.1) transparent transparent transparent;
}
.browse-ie .look-up-text {
    bottom: 60px;
}

.browse-opera .look-up {
    display: none;
}
.browse-opera .look-up-hl {
    display: none;
}


/*    Intro
------------------------------------------------*/


/*    APP Header
------------------------------------------------*/
.app-header {
    position: relative;
    height: 57px;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
    background: #fff;
    border-bottom: solid 1px #eee;
}

.app-header .logo {
    position: absolute;
    left: 0;
    right: 0;
    top: 7px;
    width: fit-content;
    margin: auto;
    padding: 8px;
}

.app-header .logo img {
    width: 100px;
    height: 24px;
    object-fit: contain;
}

.app-header .space-reserve {
    min-width: 4rem;
}

.app-header .go-back,
.app-header .get-help,
.simple-go-back {
    box-sizing: border-box;
    height: 100%;
    padding: 0 10px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: center;
    cursor: pointer;
}

.app-header .go-back,
.app-header .simple-go-back {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.app-header .get-help { 
  padding: 0 0 3px 0;
}

.app-header .language-toggle {
    display: flex;
    align-items: center;
    padding: 0 15px 5px 10px;
    min-width: 61px;
}

.app-header .language-selector {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MDAiIGhlaWdodD0iODAwIiBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTEyLjcwNyAxNC43MDdhMSAxIDAgMCAxLTEuNDE0IDBsLTUtNWExIDEgMCAwIDEgMS40MTQtMS40MTRMMTIgMTIuNTg2bDQuMjkzLTQuMjkzYTEgMSAwIDEgMSAxLjQxNCAxLjQxNGwtNSA1WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: right 4px center;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
    box-sizing: border-box;
    min-height: 35px;
    min-width: 60px;
    font-size: 12px;
    padding: 10px 8px;
}

.app-header .language-selector:hover {
    border-color: #F01067;
    background-color: #444;
}

.app-header .language-selector:focus {
    border-color: #F01067;
    background-color: #444;
    box-shadow: 0 0 0 2px rgba(240, 16, 103, 0.2);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .app-header {
        flex-wrap: wrap;
        padding: 5px 0;
    }
    
    .app-header .get-help,
    .app-header .go-back {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .services-list {
        gap: 12px;
        padding: 15px;
    }
    
    .service-holder {
        min-height: 90px;
        padding: 8px;
        width: 80px;
        flex: 0 0 80px;
    }
    
    .service {
        width: 45px;
        height: 45px;
    }
}

/*    Location and service type
------------------------------------------------*/
#location-and-service-type .app-header {
    box-shadow: 0 5px 0 0 rgba(0,0,0,0.3);
}

#location-and-service-type .middle-section {
    position: relative;
    flex-grow: 1;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#location-and-service-type .middle-section .action-mini {
    background: #000;
}

#location-and-service-type .middle-section .am-body {
    position: relative;
}

.show-for-ask-location {
    display: none;
}

.ask-location .show-for-ask-location {
    display: block;
}

#location-and-service-type .am-body {
}

#vehicle-location-map-container {
    position: relative;
    flex-grow: 1;
    flex-shrink: 0;
    min-height: 15rem;
}

.ask-location #vehicle-location-map-container{
    display: none;
}

.show-help #location-and-service-type {
    display: none;
}

/*   Sub Header
------------------------------------------------*/
#sub-header {
    padding: 0 8px 8px;
    background: #ffffff;
    border-bottom: solid 1px #cccccc;
}

.ask-location #sub-header {
    display: none;
}

.street-label {
    padding-top: 5px;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

#sub-header .service-st-loc {
    text-align: center;
    margin: 0 8px;
    cursor: text;
}

.text-green {
    color: #00AD7C;
}

.text-red {
    color: red;
}

.bold {
    font-weight: bold;
}

#map-canvas-tow-destination {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    min-height: 400px;
    left: 0;
}

#tow-destination-shop-info  .ap-content {
    position: relative;
}

.tow-destination-recommendations .tow-destination-result:after {
    content: "\f105";
    text-align: right;
    float: right;
    position: relative;
    top: -65px;
    color: #aaa;
    font-weight: bold;
    font-family: FontAwesome;
    font-size: 30px;
}

.tow-destination-recommendations .tow-destination-result:hover {
    opacity: .9;
    cursor: pointer;
}

.tow-destination-result {
    display: block;
    text-decoration: none;
    margin: 10px 0px;
    padding: 10px 0px;
    color: #222;
    border-bottom: 1px solid #aaa;
}
.tow-destination-title {
    font-weight: bold;
    font-size: 16px;
}

.tow-destination-hours,  
.tow-destination-address, 
.tow-destination-phone, 
.tow-destination-distance {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 2px;
}

#tow-destination-confirmation-submit {
    margin-top: 10px;
}

.tow-destination-shop {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 400px;
}

.tow-destination-shop .tow-destination-title {
    margin-left: 5px;
    line-height: 24px;
    margin-bottom: 10px;
}

.tow-destination-shop .tow-destination-result {
    position: absolute;
    bottom: 30px;
    margin: auto;
    left: 10px;
    right: 10px;
    padding: 10px;
    background: white;
    border-radius: 5px;
}

.tow-destination-closed {
    text-align: center;
    color: #bdbd14;
    font-size: 4em;
}

.tow-destination-title .rating {
    font-weight: normal;
    margin-left: 10px;
}

.tow-destination-distance {
    padding-left: 20px;
}

.tow-destination-hours:before {
    content: "\f017";
    font-family: 'FontAwesome';
    display: inline-block;
    width: 20px;
}

.tow-destination-phone:before {
    content: "\f095";
    font-family: 'FontAwesome';
    display: inline-block;
    width: 20px;
}

.tow-destination-address:before {
    content: "\f041";
    font-family: 'FontAwesome';
    display: inline-block;
    width: 20px;
}

.tow-destination-row {
    margin: 5px 0px;
}

#sub-header .list-locations {
}

.service-loc-faux-input {
    box-sizing: border-box;
    padding: 5px;
    margin: 5px 0 0;
    background: #eee;
    border-radius: 3px;
    cursor: text;
}


/*************************************************

    Action Mini - Little action modal

**************************************************/
/*   General
------------------------------------------------*/
.action-mini {
    display: none;
    position: relative;
}

.action-mini.open {
    display: block;
}

.am-body {
    color: #fff;
}

.am-body .g-container {
    max-width: 300px;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0,0.8);
}

.overlay-message{
    position: absolute;
    top: 45%;
    left: 50%;
    margin-top: -30px;
    margin-left: -130px;
    min-height: 60px;
    width: 260px;
    text-align: center;
    background: rgba(0, 0, 0,0.4);
    color: white;
    font-size: 15px;
    font-weight: 100;
    line-height: 60px;
    border-radius: 10px;

}

.am-title {
    font-size: 16px;
    line-height: 40px;
    font-weight: 200;
    text-transform: uppercase;
    text-align: center;
}

.am-content {
    padding: 5px 0;
    margin: 0 5px;
    overflow: auto;
}

.am-intro-text {
    margin: 15px 0;
    padding: 0;

}

.am-call-out {
    margin-top: 15px;
    font-size: 80px !important;
    color: #fff;
  	-webkit-animation: slow-bounce-wpause 3500ms infinite;
  	-moz-animation: slow-bounce-wpause 3500ms infinite;
  	-o-animation: slow-bounce-wpause 3500ms infinite;
  	animation: slow-bounce-wpause 3500ms infinite;    
}


/*************************************************

    Action Pane

**************************************************/
/*   General
------------------------------------------------*/
.main-pane {
    display: none;
    flex-direction: column;
    height: 100%;
}
.main-pane.open {
    display: flex;
}

.action-pane {
    display: none;
    position: absolute;
    top: 0;
    z-index: 600;
    min-height: 100%;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    overflow: scroll;
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

body.show-powered-by .action-pane {
    padding-bottom: 20px;
}

.action-pane.open {
    display: flex;
    flex-direction: column;
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);    
}

.action-pane p.permission-copy {
    text-align: left;
    font-size: 13px;
    line-height: 25px;
    padding-left: 10px;
}

.action-pane a#permission-not-now {
    padding-left: 38%;
    margin-top: 10px;
}
d
.action-pane p {
    text-align: left;
}

.action-pane .extra-text{
    display: none;
    margin: 10px 0;
}

.action-pane .extra-text strong {
    display: block;
}

.action-pane h1, .action-pane h2, .action-pane h3 {
    font-weight: 300;
    text-transform: uppercase;
}

.action-pane h1 {
    font-size: 22px;
    padding-bottom: 8px;
}

.action-pane h2 {
    font-size: 18px;
    padding-bottom: 6px;
}

.action-pane h3 {
    font-size: 16px;
    padding-bottom: 4px;
}

.close-pane {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 28px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    cursor: hand;
    font-weight: 900;
}

#disconnect-details-saved .close-pane {
    top: 50px;
    z-index: 99;
}

#disconnect-details-saved .a-phone-link {
    padding-top: 24px;
}

.g-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    padding: 0 10px;
    margin: 0 auto;
}

.g-container > .floating-label-container {
    margin-top: 20px;
}

.g-container > .vin-number-container  {
    margin-top: -17px;
}

.ap-title {
    padding: .75rem 2rem .4rem;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 200;
    color: #222;
    background: #fff;
    text-transform: uppercase;
    text-align: center;
}

.ap-content {
    flex-grow: 1;
}

.ap-intro-text {
    padding-top: 10px;
    font-weight: 200;
    font-size: 1em;
}

#service-loc-search .ap-intro-text {
    overflow: hidden;
}

.ap-desc {
    margin: 45px 0;
    color: #222;
    font-weight: 400;
}

.ap-desc h1 {
    font-weight: 600;
    font-size: 15px;
}

.ap-content.actions-bottom {
    display: flex;
}

.ap-content.actions-bottom > .g-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.ap-content.actions-bottom .button-space {
    flex-grow: 1;
}

.ap-content .g-container .button {
    width: 100%;
}

/*   Autocomplete
------------------------------------------------*/

.auto-address {
    display: block;
    box-sizing: border-box;
    padding: 15px 19px;
    width: 100%;
    margin: 20px 0;
    font-size: 12px;
    line-height: 20px;
    border: none;
    background: #eee;
    border-radius: 3px;
}

.loc-divider {
    border-top: solid 2px #999;
}

.auto-complete {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ac-row {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.2rem;
    border-bottom: solid 1px #eee;
    color: #444;
    cursor: pointer;
    text-decoration: none;
}

.ac-row:hover {
    opacity: 0.9;
}

/*   Service Quote
------------------------------------------------*/
#service-quote-pane {
    background: #f3f3f3;
}

#service-quote-pane .new-destination {
    position: absolute;
    right: 25px;
    bottom: 90px;
    left: 25px;
}

#service-quote-pane .order-truck {
    position: absolute;
    right: 25px;
    bottom: 30px;
    left: 25px;
}

.quote-type {
    margin: 20px 25px 0;
    font-size: 11px;
    line-height: 20px;
    color: #777;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 9px 0 0 #f3f3f3 inset, 0 10px 0 0 #ccc inset;
}

.quote-type-title {
    padding: 0 10px;
    background: #f3f3f3;

}

.quote-amount {
    margin-top: 20px;
    text-align: center;
    font-size: 90px;
    line-height: 90px;
    font-weight: 100;
    color: #444;
}

.quote-desc {
    font-size: 12px;
    line-height: 18px;
    color: #777;
    margin: 30px 0 0;
}


@media (max-height: 490px) {

    .quote-type {
        margin: 10px 25px 0;
    }
    .quote-amount {
        margin-top: 0;
        font-size: 50px;
        line-height: 50px;
    }

    .quote-desc {
        margin: 5px auto 0;
    }

    #service-quote-pane .new-destination {
        bottom: 65px;
    }

    #service-quote-pane .order-truck {
        bottom: 10px;
    }
}

/*   Payment
------------------------------------------------*/
#service-payment {

}

#service-payment .ap-content {
    padding: 25px 10px;
}

.payment-card {

}

.payment-hidefirst {
    display: none;
    margin-top: 20px;
}
.payment-hidefirst.remain-visible {
    display: block;
}

.payment-hidefirst .field-container {
    border: solid 1px #ccc;
    border-radius: 3px;
}

.payment-hidefirst input {
    width: 100%;
    padding: 8px 8px;
    margin: 0;
    box-sizing: border-box;
    background: transparent;
    font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    position: relative;
    border: none;
}


.payment-hidefirst .button {
    margin-top: 20px;
}


#payment-paypal {

}

.payment-type {
    margin: 20px 0;
    font-size: 11px;
    line-height: 20px;
    color: #777;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 9px 0 0 #fff inset, 0 10px 0 0 #ccc inset;
}

.payment-type-title {
    padding: 0 10px;
    background: #fff;

}


.paypal-button {

}

#service-payment .ap-content {
    padding-top: 15px;
}

.payment-header {
    padding: 0px 0px 10px 0px;
    font-size: 11px;
    color: #222;
    text-align: center;
}

.payment-footnote {
    position: absolute;
    bottom: 25px;
    right: 25px;
    left: 25px;
    font-size: 11px;
    color: #999;
    text-align: center;
}


/*   Marker Actions
------------------------------------------------*/
#marker-actions {
    position: absolute;
    z-index: 402;
    top: 50%;
    left: 50%;
    width: 210px;
    max-width: 100%;
    margin: -76px 0 0 0;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 5px 1px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    opacity: 0.93;
    font-size: 12px;
    font-weight: 600;
    line-height: 40px;
    background: #999999;
    border-radius: 5px;
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.ask-location #marker-actions {
    display: none;
}

#marker-actions .line {
    position: absolute;
    width: 2px;
    height: 36px;
    top: 40px;
    left: 50%;
    margin-left: -1px;
    border-radius: 5px;
    background-color: inherit;
}

#marker-actions .circle {
    position: absolute;
    width: 8px;
    height: 6px;
    border-radius: 8px/6px;
    top: 74px;
    left: 50%;
    margin-left: -4px;
    background: inherit;
}

#marker-actions .arrow {
    position: absolute;
    top: auto;
    bottom: -20px;
    left: 50%;
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px;
    border-color: #999999 transparent transparent transparent;
}

#marker-actions .confirm-location {
    position: absolute;
    left: 40px;
    height: 40px;
    padding: 0 10px;
    text-align: left;
    text-transform: uppercase;
    border-right: solid 1px rgba(255,255,255,0.15);
}

#marker-actions .change-location {
    position: absolute;
    right: 0;
    height: 40px;
    padding: 0 15px;
    text-align: right;
    text-transform: uppercase;
}

#marker-actions .set-location {
    display: none;
    width: 100%;
    margin-left: 20px;
    padding: 5px 5px 8px;
    text-transform: uppercase;
    text-align: center;
    margin-left: 0;
    font-size: 15px;
    font-weight: 200;
    line-height: 15px;
}

.set-location .fa-chevron-circle-right {
    margin-left: 0px;
    font-size: 22px;
    position: relative;
    top: 2px;
    left: 4px;
}

.service-eta {
    display: none;
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
}

.eta-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-image: url(../img/icons/eta.gif);
    -ms-background-size: 24px 24px;
    -webkit-background-size: 24px 24px;
    -moz-background-size: 24px 24px;
    background-size: 24px 24px;
    opacity: 0.6;
}

.eta-number {
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    opacity: 0.84;
    font-weight: 700;
    text-align: center;
}

.eta-increment {
    position: absolute;
    font-family: arial;
    left: 11px;
    bottom: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.7;
}

#marker-actions .set-location {
    display: block;
}

#marker-actions .confirm-location,
#marker-actions .change-location {
    display: none;
}


/*   Service Confirmation Elements
------------------------------------------------*/
#service-confirmation {
    display: none;
    position: absolute;
    z-index: 501;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(240, 240, 240, 0.7);
}

.conf-title {
    position: relative;
    height: 40px;
    background: #eee;
    font-size: 16px;
    line-height: 40px;
    font-weight: 200;
    color: #222;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 -1px 0 0 #ddd inset;
}

.service-location {
    position: relative;
    min-height: 40px;
    background: #fff;
}

.street-location {

}

.options {
    position: absolute;
    right: 20px;
    bottom: 120px;
    left: 20px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #ddd;
}

#opt-payment {
    height: 50px;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -1px 0 0 #ddd inset;
    background: #fff;
    cursor: pointer;
    cursor: hand;
}

#opt-payment .cc-icon {
    position: absolute;
    top: 15px;
    left: 12px;
}

.payment-title {
    padding-left: 55px;
    padding-top: 8px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    color: #222;
}

.payment-note {
    line-height: 10px;
    font-size: 10px;
    color: #777;
    padding-left: 55px;
    margin-top: -4px;
}

.opt-title {
    margin-top: 7px;
    text-align: center;
    text-transform: uppercase;
    color: #444;
    letter-spacing: 1px;
    font-size: 10px;
}

#opt-service-type {
    float: left;
    width: 50%;
    box-sizing: border-box;
    height: 50px;
    padding-top: 7px;
    border-radius: 0 0 0 4px;
    background: #fff;
    cursor: pointer;
    cursor: hand;
}

#opt-service-type .opt-head-title {
    height: 12px;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 12px;
    color: #000;
    font-weight: 700;
    text-align: center;
}


#opt-tow-quote {
    display: none;
    float: left;
    width: 50%;
    box-sizing: border-box;
    height: 50px;
    padding-top: 8px;
    border-radius: 0 0 4px 0;
    box-shadow: 1px 0 0 0 #ddd inset;
    background: #fff;
    cursor: pointer;
    cursor: hand;
}

.type-tow #opt-tow-quote {
    display: block;
}

#opt-tow-quote .tow-quote-icon {
    margin: 0 auto;
}

#opt-roadside-quote {
    display: none;
    float: left;
    width: 50%;
    box-sizing: border-box;
    height: 50px;
    padding-top: 8px;
    border-radius: 0 0 4px 0;
    box-shadow: 1px 0 0 0 #ddd inset;
    background: #fff;
    cursor: pointer;
    cursor: hand;
}

.type-roadside #opt-roadside-quote {
    display: block;
}

#opt-roadside-quote .roadside-quote-icon {
    margin:  0 auto;
}

.confirm-eta {
    position: absolute;
    right: 0;
    bottom: 85px;
    left: 0;
    text-align: center;
    color: #666;
    text-shadow: 0 1px 0 #f6f6f6;
    font-size: 12px;
    text-transform: uppercase;
}

#service-confirmation .order-truck {
    position: absolute;
    right: 20px;
    bottom: 30px;
    left: 20px;
}

/*   Service Details
------------------------------------------------*/

#service-details .ap-content {
    padding: 0 15px;
}

#service-details p {
}

#service-details .button {
    margin-top: 10px;
}



/*   Order Success
------------------------------------------------*/

#order-success .ap-content {
    padding: 0 15px;
}

/*************************************************

    Expanding content on option click

**************************************************/
.expand-on-option {
    height: 0;
    overflow: hidden;
}
.expand-on-option .expand-on-option-content {
    -o-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.expand-on-option.show {
    height: 100%;
}

.expand-on-option.show .expand-on-option-content {
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

/*************************************************

    Are you safe

**************************************************/
#customer-safe-location {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow: scroll;
    background: #fff;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

#customer-safe-location .v-centered {
    padding: 30px 0;
}

#customer-safe-location .logo {
    width: 90%;
    max-width: 360px;
    margin: 30px auto 0;
    text-align: center;
}

#customer-safe-location img {
    width: 100%;
    max-width: 150px;
}

#customer-safe-location .is-customer-safe {
    position: relative;
    max-width: 38rem;
    margin: 0 auto;
    padding-bottom: 40px;
}

#customer-safe-location .instructions {
    margin: 0;
    overflow: hidden;
}

#customer-safe-location .service-request-text.has-help-script {
    margin-right: 0;
}

#customer-safe-location h2 {
    font-size: 1.4rem;
    padding: 0 1rem;
}

#customer-safe-location h4 {
    text-align: center;
    font-size: 1.2rem;
}

#customer-safe-location .safe-yes-no {
    display: inline-block;
    width: 60px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    margin: 10px 10px 0;
    text-align: center;
    color: white;
    border-radius: 60px;
    box-shadow: none;
}
#customer-safe-location #safe-location-yes {
    background: transparent;
    border: solid 2px #00AD7C;
    color: #00AD7C;
}
#customer-safe-location #safe-location-yes:hover { opacity: .9; }
#customer-safe-location #safe-location-yes:active { opacity: .9; }
#customer-safe-location #safe-location-yes.selected {
    background: #00AD7C;
    color: #fff;
}

#customer-safe-location #safe-location-no-notice {
    background: transparent;
    border: solid 2px #F01067;
    color: #F01067;
}
#customer-safe-location #safe-location-no-notice:hover { opacity: .9;}
#customer-safe-location #safe-location-no-notice:active { opacity: .9;}
#customer-safe-location #safe-location-no-notice.selected {
    background: #F01067;
    color: #fff;
}

#customer-safe-location .expand-on-option-content {
    padding: 1rem 1.5rem 0;
    text-align: left;
}
#customer-safe-location .expand-on-option-content .button {
    display: block;
    margin: 1rem 0 0;
    background: #F01067;
}

#customer-safe-location .verbal-quote {
    font-style: italic;
    color: #F01067;
}


/*************************************************

    Map

**************************************************/
#map-canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/*************************************************

    Help Box

**************************************************/
#help-page {
    display: none;
    position: absolute;
    z-index: 4000;
    top: 0;
    right: -400px;
    bottom: 0;
    overflow:auto;
    background: #39373c;
    width: 100%;
}

#help-page .close {
    position: absolute;
    top: 14px;
    right: 15px;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    cursor: hand;
}

#help-page h1 {
    color: #b9b7bc;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
}

#help-page h2 {
    padding: 10px;
    color: #b9b7bc;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 18px;
    background: #49474c;

}

#help-page h3 {
    color: #b9b7bc;
    padding: 15px 15px 0 15px;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 16px;
}


#help-page p, #help-page li {
    color: #a9a7ac;
    padding: 0 15px 15px;
    font-size: 14px;
    line-height: 18px;
}

#help-page a {
    color: #f9a7fc;
}

#help-page input {
    width: 240px;
    padding: 10px 10px;
    margin: -10px auto 10px;
    box-sizing: border-box;
    background: rgba(0,0,0, 0.2);
    font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    position: relative;
    border: none;
}

#help-page .button {
    width: 240px;
    max-width: 100%;
    margin: 10px auto;
    color: #fff;
}

.generic-help{
    padding-top: 2rem;
    background: white;
}

.generic-help .logo {
    height: 50px;
}

.generic-help .logo img {
    width: auto;
    height: 100%;
}

#help-page .generic-help h3 {
    color: #111;
    font-size: 150%;
    font-weight: bold;
}

#help-page .generic-help h4 {
    padding: 0 15px 15px;
}

#help-page .generic-help p, #help-page .generic-help li {
    color: #111;
    padding: 0 15px 15px;
    font-size: 14px;
    line-height: 18px;
}

#help-page .generic-help .close {
    color: #111;
}

#help-page .dynamic-call-support .button {
    display: block;
    width: 240px;
    margin: 10px auto;
}

#help-page .dynamic-call-support .button a,
#help-page .button a {
    color: white;
    text-decoration: none;
}

#help-page .dynamic-call-support .normal a{
    color: blue;
}

#help-call-support {
    display: none;
}

#help-call-support .dynamic-call-support .normal a {
    color: #f9a7fc;
}

/*************************************************

    Width confinement

**************************************************/
.button,
.options,
#cc-form {
}

/*************************************************

    Select Items

**************************************************/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    cursor: pointer;
    position: relative;
    display: block;
    padding: 10px 15px;
    background: #f1f1f1;
    border-radius: 1px;
    font-size: 14px;
}
select::-ms-expand {
    display: none;
}
.list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

/*************************************************

    Vehicle Information Page

**************************************************/

#save-vehicle-information {
    margin-top: -38px;
}
.tow-message {
    margin-top: 40px;
}



/*            Options
--------------------------------------------------*/
.option-list {
    border: none;
    text-align: left;
    box-sizing: border-box;
    padding: 5px 0 15px;
}

input[type="radio"] {
    opacity: 0;
}    
input[type="radio"] + label {
    position: relative;
    font-weight: 200;
    margin-left: 5px;
    display: inline-block;
    cursor: pointer;
}      
input[type="radio"] + label::before {
    content: '';
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: -24px;
    border-radius: 50%;
    border: 2px solid #000;
    width: 18px;
    height: 18px;
}
      
input[type="radio"] + label::after {
    content: '';
    position: absolute;
    display: inline-block;
    left: -24px;
    top: 0;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}
    
input[type="radio"]:checked + label::after {
    background: #8021b3;
    opacity: .85;
}

input[type="radio"]:checked + label::before {
    border-color: #8021b3;
}
    
input[type="radio"]:focus + label::before {
    box-shadow: 0 0px 8px #8021b3;
}


.option {
    position: relative;
    margin-top: 5px;
    margin-left: 25px;
    min-height: 40px;
    cursor: pointer;
}

.option input[type="radio"] {
    position: absolute;
}

.option .small {
    font-size: .7em;
    display: block;
    position: absolute;
    top: 17px;
}

.option.two-lines {
    height: 80px;
}

.option-mark {
    position: absolute;
    width: 20px;
    height: 20px;
    margin-top: 10px;
    border-radius: 20px;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -kthtml-transition: all 0.15s linear;
    transition: all 0.15s linear;
    border: 2px solid black;
    box-sizing: border-box;
}

.selected .option-mark {
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -kthtml-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.option-label {
    padding-left: 35px;
    color: #222;
    line-height: 40px;
    font-size: 14pt;
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
    font-size: 1em;
    font-weight: 200;
    letter-spacing: 0.05em;

}

.option-checkbox .option-mark {
    border-radius: 4px;
    margin-top: 0;
    cursor: pointer;
}

.option-checkbox .option-label {
    line-height: 14pt;
    font-size: 11pt;
    letter-spacing: 0.03em;
}

.option-checkbox .option-mark .icon {
    color: #fff;
}

.bg-dark .option-mark {
    -webkit-box-shadow: 0 0 0 2px #fff inset;
    -moz-box-shadow: 0 0 0 2px #fff inset;
    box-shadow: 0 0 0 2px #fff inset;
}
.bg-dark .selected .option-mark {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 1) inset, 0 0 0 3px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 1) inset, 0 0 0 3px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 1) inset, 0 0 0 3px rgba(255, 255, 255, 0.5);
}


.bg-dark .option-label {
    color: #eee;
}

/************************************************

    Service Options

*************************************************/
.service-select-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.service-select-list .service-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 300px;
    min-height: auto;
    padding: 12px 20px;
    gap: 15px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    flex: none;
}

.service-select-list .service-holder:hover {
    background: #e8e8e8;
}

.service-select-list .service-description {
    font-size: 1em;
    padding-top: 0;
    min-height: auto;
    white-space: nowrap;
}


.service-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    width: 90px;
    min-height: 100px;
    flex: 0 0 90px;
}

.service {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #444444;
}

.service-holder.selected .service {
    background-color: black;
}

#ask-for-service .service-icon {
    position: relative;
    width: 30px;
    height: 30px;
    margin-top: 0;
    background-image: url(../img/sprite_icons.png);
    background-repeat: no-repeat;
    background-size: 141px 375px;
    margin: 11px auto 0;
    top: 0;
    left: 0;
}

.service-description {
    font-size: .8em;
    text-transform: uppercase;
    color: #26242d;
    min-height: 2.4em;
    line-height: 1.2em;
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: visible;
}

body.es .service-description {
  text-transform: none;
}

body.fr .service-description {
  text-transform: none;
}

#service-opt-tow .service-icon {
    width: 40px;
    background-position: 0 -148px;
}

#service-opt-jump .service-icon {
    background-position: -3px -268px;
}

#service-opt-fuel .service-icon {
    background-position: -3px -240px;
}

#service-opt-tires .service-icon {
    background-position: -3px -180px;
}

#service-opt-lockout .service-icon {
    background-position: -3px -294px;
}

#service-opt-winch .service-icon {
    background-position: -56px -158px;
}

#service-opt-other .service-icon {
    background-image: url(../img/plus_icon_1.png);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: 0px 0px;
}

#service-price-confirm {
    font-weight: 200;
    text-align: center;
    padding-bottom: 10px;
}

#service-price-confirm .am-body{
}

#service-price-confirm .am-title{
    line-height: 1.6em;
    font-weight: 400;
    padding: 20px;
    text-transform: inherit;
}

#service-price-confirm .overlay{
    background: rgba(0, 0, 0,0.95);
}

.am-title strong {
    font-weight: bold;
    text-transform: uppercase;
}
.am-title .price {
    color: rgb(101, 213, 138);
}

.am-title .eta {
    color: #FFCA40;
}

#service-price-confirm .am-content{
    display: none;
    line-height: 1.5em;
}

#service-price-confirm .line-or{
    box-shadow: 0 0px 0 0 #fff inset, 0 10px 0 0 #ccc inset;
    height: 1px;
}

#afs-submit {
    margin: 20px 0 5px;
    display: none;
    width: 100%;
}

.afs-special-text{
    font-weight: bold;
    color: rgb(101, 213, 138);
}

.afs-main-price {
    font-size: 50px;
    line-height: 60px;
}

.afs-estimate strong {
    color: #FFCA40;
}

.afs-winch-sub,
.afs-fuel-sub,
.afs-tow-sub{
    display: none;
    font-weight: 200;
    line-height: 1em;
    font-size: .9em;
}

.afs-winch-sub {
    font-size: .8em;
}

.afs-fuel-sub{
    font-size: .75em;
    font-weight: bold;
}

.afs-winch-disclaimer{
    font-size: .7em;
    font-weight: bold;
}

#ask-winch-question .am-title {
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
}

#ask-winch-question .am-body{
    margin-top: -160px;
}

#ask-winch-question ul {
    padding: 0 0px 0 17px;
    margin: 10px 0;
    font-size: 0.9em;
    line-height: 1.3;
}

#ask-winch-question li {
    margin: 10px 0;
}

.afs-discliamer {
    display: none;
    font-size: .8em;
    margin: 10px;
}

/* VIN Photo Pane */

#vin-photo-input {
    display: none;
}

.camera-button {
    cursor: pointer;
    display: block;
    position: relative;
    width: 12rem;
    height: 12rem;
    margin: 2rem auto;
    background: #8f09f9;
    border-radius: 7rem;
    border: none;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
}

.icon-camera-white {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 5.8rem;
    height: 5.8rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='58' height='43.942' viewBox='0 0 58 43.942'%3E%3Cg transform='translate(-0.5)'%3E%3Crect width='58' height='36' rx='3' transform='translate(0.5 7.942)' fill='%23fff'/%3E%3Cpath d='M11.776,0H24.534c3.794,0,6.87,6.87,6.87,6.87L36.31,23.062a6.87,6.87,0,0,1-6.87,6.87H6.87A6.87,6.87,0,0,1,0,23.062L4.907,6.87S7.982,0,11.776,0Z' transform='translate(11.259 0)' fill='%23fff'/%3E%3Cg transform='translate(13.5 9.942)' fill='%23fff' stroke='%238f28f9' stroke-width='3'%3E%3Cellipse cx='16' cy='15.5' rx='16' ry='15.5' stroke='none'/%3E%3Cellipse cx='16' cy='15.5' rx='14.5' ry='14' fill='none'/%3E%3C/g%3E%3Cellipse cx='2' cy='2.5' rx='2' ry='2.5' transform='translate(45.5 13.942)' fill='%238f09f9'/%3E%3Crect width='6' height='3' rx='1.5' transform='translate(7.5 2.942)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
}

/* Notes Pane */

#notes-text, #custom-tow-reason-text {
    box-sizing: border-box;
    width: 100%;
    min-height: 100px;
    margin: 10px 0;
    padding: 10px;
    display: block;
    border: 1px solid #e7e7e7;
}

.notes-subhead {
    margin: 0 auto;
    line-height: 1.4;
    text-transform: initial;
    font-weight: 200;
    padding: 10px 0;
}

#notes-save{
    display: none;
}

/* Location Details Pane */
.shoulder-details{
    padding-top: 10px;
}

.shoulder-details select{
    width: 100%;
}

.shoulder-details input{
    box-sizing: border-box;
    font-size: 14px;
    margin-bottom: 30px;
    padding: 10px 15px;
    width: 100%;
}

/* Vehicle Information Pane */
.simple-vehicle-details select{
    -webkit-appearance: none;
    border-radius: 1px;
    padding: 5px 2px;
    border: none;
    border-radius: 0px;
    width: 100%;
    text-align: right;
    text-indent: 15%;
    border-bottom: 1px solid #999;
    background: transparent;
    position: relative;
    margin-bottom: 30px;
    direction: rtl;
    font-size: 1em;
    font-weight: 200;
}

.simple-vehicle-details label{
    margin-left: 5%;
    font-weight: 100;
    font-size: 1em;
    position: absolute;
    bottom: 0;
}

.field-select {
    position: relative;
}

.field-select .fa-caret-down{
    position: absolute;
    bottom: 7px;
    right: 5%;
    font-size: 1.2em;
    pointer-events: none;
    color: #999;
}

.vehicle-details{
    position: relative;
    display: none;
}
.vehicle-details.always-show{
  display: block;
}

.dob-label {
    position: absolute;
    bottom: 0;
    font-size: 1em;
    font-weight: 100;
}

.date-of-birth-fields {
    position: relative;
    text-align: right;
    overflow: hidden;
    padding-bottom: 1px;
}

.date-of-birth-fields h3 {
    text-align: left;
    margin-bottom: 0;
}

.dob-field-container {
    box-sizing: border-box;
    text-align: left;
    margin-top: 10px;
}


.dob-field-container select {
    -webkit-appearance: none;
    border-radius: 0px;
    padding: 5px 2px;
    border: none;
    width: 100%;
    text-align: right;
    text-indent: 15%;
    border-bottom: 1px solid #999;
    background: transparent;
    position: relative;
    margin-bottom: 30px;
    direction: rtl;
    font-size: 1em;
    font-weight: 200;
}

.dob-field-container select.chosen {
    text-indent: 0;
}

#policy-number input,
#credit-card input,
#contact-information input,
#contact-information-with-permission input,
#vehicle-other-details input,
#policy-search input{
    margin: 0 0 15px;
    display: block;
    padding: 0 10px;
}

input, select {
    background: transparent;
    border: none;
    border-bottom: solid 1px #aaaaaa;
}

.floating-label-container{
    position: relative;
}

.floating-label-container .error-message.small {
    margin: -10px 0 20px 0;
}

.float-label {
    position: absolute;
    top: 12px;
    left: 11px;
    font-size: .9em;
    color: #696969;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -kthtml-transition: all 0.2s linear;
    transition: all .2s linear;
}

.vehicle-body-type-label {
    color: #111111 !important;
    margin-left: 3% !important;
}

.float-label.active {
    top: -2px;
    left: 0;
    font-size: .7em;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -kthtml-transition: all 0.2s linear;
    transition: all .2s linear;
}

.policy-number-option{
    display: none;
}

div#contact-info-submit {
    margin-top: 20px;
}


.disclaimer-text {
    margin: 15px 0;
}

/* Credit Card */


/*.jp-card-invalid {
    color: red !important;
    opacity: 1 !important;
}

.jp-card-display.jp-card-invalid{
    text-shadow: 0px 0px 2px black;
}*/

.cc-form-card-wrapper {
    height: 160px;
}

.jp-card-container{
    width: 190px;
    top: -15px;

}
.jp-card-container {
    -webkit-transform: scale(0.8125);
    -ms-transform: scale(0.8125);
    transform: scale(0.8125);
}
#cc-info-skip-top{
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
}

#cc-form {
    margin-top: 15px;
}

#credit-card input {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 7px;
}

input#cc-expiry {
    width: 44%;
    margin: 0 0 7px;
    display: inline-block;
}

input#cc-cvc {
    width: 44%;
    display: inline-block;
    margin-left: 10%;
}

#cc-info-submit {
    margin: 20px auto;
}

@media (max-height: 500px) {
    .cc-form-card-wrapper{
        display: none;
    }
}

/*  Summary Pane */

.ss-title {
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    color: black;
}

.ss-title.bottom{
    display: none;
    text-align: left;
    margin: 15px 0;
    text-align: center;
}

.summary {
    margin-top: 10px;
}

.summary .summary-box:first-child > label {
  border-radius: 2px 0 0 0;
}
.summary .summary-box:last-child > label {
  border-radius: 0 0 0 2px;
}

.summary-box{
    position: relative;
    padding: 10px 0;
    width: 100%;
    box-sizing: border-box;
    border-bottom: solid 1px #eee;
}

.summary-box .sb-header label {
    position: relative;
    font-weight: 200;
    font-size: 12px;
    vertical-align: middle;
    color: #444;
    font-weight: 600;
    text-transform: uppercase;
    box-sizing: border-box;
}

.summary-box li label {
    font-weight: 600;
    white-space: pre;
}

.summary-box li span {
    white-space: pre;
}

.summary-box .edit-action {
    cursor: pointer;
    font-size: 12px;
}

#service-summary-insurance-checkout,
#service-summary-cc-checkout {
    margin-top: 30px;
}

.summary-box .sb-header {
    display: flex;
    justify-content: space-between;
}

.summary-box .sb-content{
    position: relative;
    font-size: 13px;
    font-weight: 200;
    padding: 5px 10px;
}

.ss-service-price .total-price,
.ss-service-price .total-price label,
.ss-service-price > span{
    font-weight: bold;
}

#service-summary-submit{
    display: none;
    margin-top: 50px;
}


a#call-911 {
    display: block;
    margin-top: 15px;
    text-decoration: none;
}

.button.emergency {
    border-color: #e42112;
    background-color: #ef473a;
    color: #fff;
    width: 100%;
}

.tow-destination-search-box {
    position: relative;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
    margin: 15px 0;
    height: 15px;
}

.tow-destination-search-box .mag {
    position: absolute;
    color: #C8C8C8;
    top: -3px;
    left: 0;
    font-size: 20px;
}

.tow-destination-search-box .geo {
    position: absolute;
    top: -3px;
    right: 0;
    color: #C8C8C8;
    font-size: 20px;    
}

.tow-destination-search-box .td-input-box {
    border: none;
    margin-left: 25px;
    width: 85%;
    font-size: 13px;
    position: relative;
    display: block;
    top: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#tow-destination .extra-text {
    padding-top: 25px;
    border-top: 1px solid rgba(189, 189, 189, 0.7);
}

#tow-destination .description .error {
    color: black;
    text-align: center;
    padding: 50px;
    border: 1px solid #444;
    margin-top: 10px;
    display: none;
}

#tow-destination .description .error .title {
    font-size: 1.2rem;
}

#tow-destination .description .error .message {
    margin-top: 20px;
    font-weight: 200;
}

.error-message{
    display: none;
    color: #e42112;
    width: 80%;
    margin: 10px auto;
}

.error-message.small{
    font-size: .8em;
    padding: 0 10px;
    margin: 10px 0 0px 0;
}


a.a-phone-link {
    display: block;
    text-decoration: none;
}

div#call-support-button {
    display: block !important;
    position: relative;
    font-weight: bold;
}

.os-cc-fail{
    display: none;
}

#vehicle-not-found {
    z-index: 2000;
}


#vehicle-not-found .am-title {
    font-weight: bold;
    line-height: 1.3;
    padding: 8px 0px;
}

#vehicle-not-found .am-content {
    text-align: center;
    margin: 0 10px 0;
    padding: 15px 0 5px;
    font-size: 14px;
    font-weight: 100;
}

#vnf-submit {
    margin: 30px 0 0;
}

#vehicle-info-not-found,
#existing-job-continue {
    display: block;
    color: #696969;
    text-align: center;
    margin-top: 30px;
    text-decoration: underline;
    cursor: pointer;
}

div#location-prompt {
    padding-bottom: 10px;
}

div#location-prompt .am-title{
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-weight: bold;
}

div#location-prompt .am-content{
    padding: 5px 5px;
    font-size: 17px;
    font-weight: 100;
    text-align: center;
}

#lp-auto {
    margin-top: 10px;
    width: 100%;
}

#lp-manual {
    width: 100%;
}

#location-prompt .line-or {
    position: relative;
    margin: 10px 20px;
    font-size: 11px;
    line-height: 20px;
    color: #ccc;
    text-transform: uppercase;
    text-align: center;
    background: transparent;
    box-shadow: none;
}
#location-prompt .line-or-title {
    background: transparent;
}
#location-prompt .line-or:before {
    content: '\A';
    position: absolute;
    height: 1px;
    background: #ccc;
    top: 9px;
    left: 0;
    right: 50%;
    margin-right: 15px;
}
#location-prompt .line-or:after {
    content: '\A';
    position: absolute;
    height: 1px;
    background: #ccc;
    top: 9px;
    right: 0;
    left: 50%;
    margin-left: 15px;
}




#recommended-destination-prompt {
    z-index: 700;
}

#recommended-destination-prompt .am-body{
    top: 30%;
}

#recommended-destination-prompt .am-title{
    font-weight: bold;
    font-size: 1.2rem
}

#recommended-destination-prompt .am-content{
    text-align: center;
    font-weight: 100;
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.5;
}

.nearest-recommeded-destination {
    font-size: .8em;
    font-weight: bold;
    margin: 10px 0 0;
    background: #fff;
    color: #26242d;
}

.nrd-address {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.price-holder ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.price-holder li{
    margin: 0;
    display: block;
    height: 22px;
}

.price-holder span{
    margin: 0;
    display: block;
    margin-left: 70px;
}

.price-holder label {
    float: left;
    margin: 0;
    font-size: 1em;
    display: inline;
}


/************************************************

    Animations

*************************************************/
@-webkit-keyframes slow-bounce {
  0% {
	  -webkit-transform:translateY(0);
  }
  50% {
  	-webkit-transform:translateY(20px);
  }
  100% {
	  -webkit-transform:translateY(0);
  }  
}

@keyframes slow-bounce {
  0% {
	  transform:translateY(0);
  }
  50% {
  	transform:translateY(20px);
  }
  100% {
	  transform:translateY(0);
  }  
}


@-webkit-keyframes slow-bounce-wpause {
  0% {
	  -webkit-transform:translateY(0);
  }
  74% {
  	-webkit-transform:translateY(0);
  }
  82% {
  	-webkit-transform:translateY(20px);
  }
  88% {
  	-webkit-transform:translateY(15px);
  }
  92% {
	  -webkit-transform:translateY(20px);
  }
  100% {
	  -webkit-transform:translateY(0);
  }  
}

@keyframes slow-bounce-wpause {
  0% {
	  transform:translateY(0);
  }
  74% {
  	transform:translateY(0);
  }
  82% {
  	transform:translateY(20px);
  }
  88% {
  	transform:translateY(15px);
  }
  92% {
	  transform:translateY(20px);
  }
  100% {
	  transform:translateY(0);
  }  
}

/** EFNOL **/
.coverage-summary-text {
    text-align: center;
    font-size: 130%;
    text-transform: uppercase;
}

.coverage-warning-text{
    margin: 10px auto;
    text-align: center;
    font-size: 80%;
    color: red;
}

.farmers-efnol-coverage-success, .farmers-efnol-coverage-fail {
    text-align: center;
}

.farmers-efnol-coverage-success i, .farmers-efnol-coverage-fail i {
    font-size: 500%;
    color: #FFCA40;
}

.coverage-warning-long {
    margin: 10px;
}

.efnol-loading, .inline-loading {
    margin: 0 auto;
}

#farmers-efnol-search-submit {
    margin-top: 10px;
}

#ap-date-of-birth {
    font-family: "Helvetica Nue", Helvetica, Arial, sans-serif;
}

#farmers-efnol-search-loading, #farmers-vehicle-search-loading {
    text-align: center;
}

#farmers-efnol-search-loading .thinking-text, #farmers-vehicle-search-loading .thinking-text{
    margin-top: 15px;
}

#parking-direction-selector {
    text-indent: 122px;
}

.title-subtext {
    margin-top: 0;
}



.vehicle-selection-item {
    position: relative;
    display: block;
    text-decoration: none;
    font-weight: 200;
    padding: 1rem 1rem 1rem 3.5rem;
    margin-bottom: .6rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.3rem;
    border-radius: 200px;
    background: #f2f2f2;
}
.vehicle-selection-item:hover {
    background: #f0f0f0;
}

.vehicle-selection-item i.fa-car {
    position: absolute;
    box-sizing: border-box;
    left: .5rem;
    top: 50%;
    margin-top: -1.1rem;
    width: 2.2rem;
    height: 2.2rem;
    text-align: center;
    border: solid 1px #26242d;
    font-size: 1rem;
    line-height: 2.1rem;
    border-radius: 4rem;
}

.vehicle-selection-item i.fa-times-circle {
    position: absolute;
    box-sizing: border-box;
    left: .5rem;
    top: 50%;
    margin-top: -1.1rem;
    width: 2.2rem;
    height: 2.2rem;
    text-align: center;
    border: solid 1px #26242d;
    font-size: 1rem;
    line-height: 2.1rem;
    border-radius: 4rem;
}


.vehicle-selection-item:hover {
    background: #ddd;
}

.vehicle-selection-item:active {
    background: #aaa;
}

.call-agent {
    margin-top: 30px;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.btn-inline {
    display: inline-block;
    padding: 0 30px;
    margin-right: 1.6rem;
}

.call-agent-inline {
    display: inline-block;
}

#vehicle-selector-list {
    padding: .5rem 0 1.5rem;
    margin: 0;
}

#vehicle-selector-list li {
    list-style: none;
}

.vehicle-selector-list-container {
}

#farmers-vehicle-search-loading {
    margin-top: 10px;
}

.no-tow-destination {
    display: none;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 500px;
    background: #fff;
    z-index: 5;
    padding: 30px 20px 30px;
    text-align: center;
    box-shadow: 0 3px 30px 3px rgba(0,0,0,0.15);
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    -webkit-transform: translateX(-50%) translateY(100%);
    -ms-transform: translateX(-50%) translateY(100%);
    -moz-transform: translateX(-50%) translateY(100%);
    -o-transform: translateX(-50%) translateY(100%);
    transform: translateX(-50%) translateY(100%);
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -kthtml-transition: all 200ms linear;
    transition: all 200ms linear;
}

.no-tow-destination.show {
    -webkit-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -moz-transform: translateX(-50%) translateY(0);
    -o-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
    display: block; 
}

.no-tow-destination .close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 20px;
    color: #aaa;
}

.no-tow-destination .button {
    margin: 10px 0;
}

.no-tow-destination .no-tow-destination-text {
    font-weight: 200;
    margin: 0 auto;
    padding: 15px 0;
}

.no-tow-destination i {
    font-size: 60px;
    color: #FFCA40;
}

.agent-phone-number-button a {
    color: white;
    text-decoration: none;
}

.transfer-details {
    text-align: center;
}

#transfer-phone-number {
    margin: 10px;
    font-size: 300%;
}

#transfer-phone-number a {
    color: #111111;
}

#transfer-phone-number .button a {
    color: white;
    text-decoration: none;
}

#transfer-insured-name {
    font-size: 125%;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
}

#powered-by-honk {
    display: none;
    position: absolute;
    bottom: 0;
    color: white;
    background: #aaa;
    text-align: center;
    text-transform: uppercase;
    padding: 3px 0;
    width: 100%;
    font-size: .8em;
    height: 20px;
    box-sizing: border-box;
    z-index: 3999; /* Just under 'help' page */
}

/* MEDIUM DUTY QUESTIONS */
#vehicle-body-type-selector {
    width: 100%;
    margin: 32px 0;
    text-align: right;
    direction: rtl;
    text-indent: 15%;
}

#extra-tow-vehicle-description {
    resize: none;
    margin-bottom: 32px;
}

#destination-loc {
    display: none;
}

/* 767px because bootstrap defines 'xs'(phones) as < 768px */
@media only screen and (max-width: 767px)  {
    .dynamic-call-support .mobile {
        display: block;
    }
    .dynamic-call-support .normal {
        display: none;
    }

    .ap-content > .g-container > h1 {
        margin-top: 0;
    }
}

@media only screen and (min-width: 768px)  {
    .dynamic-call-support .mobile {
        display: none;
    }
    .dynamic-call-support .normal {
        display: block;
    }
}

.ap-intro-text.question-with-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.info-toggle {
    background: none;
    border: none;
    color: #4a90e2;
    cursor: pointer;
    font-size: 20px;
    padding: 0 4px;
    line-height: 1;
}

.info-toggle:focus {
    outline: none;
}

.info-panel {
    background: #f4f7fb;
    border: 1px solid #d6e0ee;
    border-radius: 6px;
    padding: 12px 14px;
    margin: 10px 0 16px;
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
}

.info-panel-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.info-panel-image {
    display: block;
    max-width: 100%;
    margin-top: 10px;
    border-radius: 4px;
}
