body {
    margin: 0;
    padding: 0;
    /*background: #EBEBEB;*/
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

a {
    text-decoration: none;
    display: inline-block;
}

.left-section {
    width: 20%;
    float: left;
    position: fixed;
}

.right-section {
    width: 100%;
    float: right;
}

.right-section {
    position: relative;
}

.full-width {
    width: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    visibility: visible;
    background: rgba(128, 128, 128, 0.34);
    height: 100%;
    width: 100%;
    z-index: 10;
    display: none;
}

.container {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0px;
    top: 20vh;
    width: 399px;
    height: 520px;
    opacity: 1;
    background: #fff;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1), 0 20px 30px 1px rgba(0, 0, 0, 0.15), 0 40px 40px 1px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-transition: all 0.2s 0.25s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
    transition: all 0.2s 0.25s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
    -webkit-transition: all .5s, max-width .5s cubic-bezier(0.4, 0, 0.2, 1) 0s, height .5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all .5s, max-width .5s cubic-bezier(0.4, 0, 0.2, 1) 0s, height .5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    border-radius: 4px;
}

.container .container__card.white-bg,
.container.expand .container__card {
    background: #fff;
}

.container .container__card,
.container .content {
    background: #F4F5F9;
}

.form-error {
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1), 0 4px 6px 1px rgba(0, 0, 0, 0.04) !important;
    width: 100%;
    text-align: center;
    padding: 15px 0px;
    z-index: 100;
    background: #fff;
    font-size: 12px;
    color: #787882;
    line-height: 16px;
    display: none;
    opacity: 0;
}

.fa-exclamation-triangle {
    color: #F04444;
    vertical-align: baseline;
}

.translate-error {
    /*animation-name: translateErrorFromTop;*/
    display: block;
    opacity: 1;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    position: fixed;
    width: 920px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

@-webkit-keyframes translateErrorFromTop {
    0% {
        -webkit-transform: translate(0, -100px);
        transform: translate(0, -100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0, 0px);
        transform: translate(0, 0px);
        opacity: 1;
        visibility: visible;
    }
}

@keyframes translateErrorFromTop {
    0% {
        -webkit-transform: translate(0, -100px);
        transform: translate(0, -100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(0, 0px);
        transform: translate(0, 0px);
        opacity: 1;
        visibility: visible;
    }
}

.theme-background {
    background-color: #0071FF;
}

.theme-color {
    color: #0071FF;
}

.container.unauthenticated,
.container.expand-items,
.container.resize {
    -webkit-transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.15s, min-height 0.3s ease 0.25s;
    transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.3s ease 0.15s, min-height 0.3s ease 0.25s;
}

.container.unauthenticated,
.container.resize {
    height: 560px;
    top: 15vh;
}

.container.expand-items {
    height: 586px;
    top: 10vh;
}

.container.expand,
.reverse-animation.expand {
    width: 920px;
    height: 100%;
    margin-bottom: 30px;
    top: 20vh;
    -webkit-transition: all 0.7s, max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0s, height 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all 0.7s, max-width 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0s, height 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.container.expand {
    overflow: inherit;
}

.reverse-animation.expand,
.thank-you-animation.expand {
    overflow: hidden;
}

.container__card {
    width: 399px;
    height: 100%;
    padding: 30px 40px 30px 30px;
    box-sizing: border-box;
    position: relative;
    font-weight: 300;
    font-size: 12px;
    line-height: 21px;
    color: #787882;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(0, 0.71, 1, 1);
    transition-timing-function: cubic-bezier(0, 0.71, 1, 1);
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1), 0 20px 30px 1px rgba(0, 0, 0, 0.15), 0 40px 40px 1px rgba(0, 0, 0, 0.15);
}

.order-card {
    width: 100%;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.modal-container {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: red;
    box-sizing: border-box;
    z-index: 2147483647;
    background: rgba(255, 255, 255, 0.9);
    bottom: 0;
    right: 0;
    opacity: 0;
}

.modal-wrapper {
    height: 300px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 40px;
    box-sizing: border-box;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}


/*
.thank-you-animation .order-card {
    width: 100% !important;
}*/


/*.thank-you-animation .brand-logo {
    text-align: center;
}*/

.order-card .title {
    margin-top: 0;
}

.order-card .brand-logo {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.brand-logo img,
.thank-you img {
    max-width: 52px;
    min-height: 52px;
}

.brand-logo img {
    padding-left: 10px;
}

.expand .container__card {
    box-shadow: none;
    width: 359px;
    padding: 30px 0;
}

.expand .container__card .wrapper-position {
    padding: 0 40px 0 30px;
    box-sizing: border-box;
    -webkit-transition: all 1s ease-in;
    transition: all 1s ease-in;
    height: 70vh;
}

.expand.min-content .container__card .wrapper-position {
    height: 50vh;
}

.expand.min-content .secured-content {
    visibility: hidden;
}

.expand.min-content .secured-content.show {
    visibility: visible;
}

.translateCard .container__card .wrapper-position {
    -webkit-transition: all 0s ease-in;
    transition: all 0s ease-in;
    position: relative;
    top: 30px;
}

.expand .container__card .wrapper-position.card-position {
    height: 90vh;
}

.order-card .thank-you {
    padding: 0 50px;
}

.thank-you {
    padding: 135px 100px;
    text-align: center;
    box-sizing: border-box;
    -webkit-transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.2s ease 0.15s, min-height 0.2s ease 0.25s;
    transition: all 0.2s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, height 0.2s ease 0.15s, min-height 0.2s ease 0.25s;
    width: 100%;
}

.thank-you-content {
    -webkit-animation-name: thankYouContentAppear;
    animation-name: thankYouContentAppear;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes thankYouContentAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes thankYouContentAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.expand .thank-you {
    width: 100%;
}

.thank-you p {
    font-size: 17px;
    color: #0071FF;
    letter-spacing: -0.31px;
    font-weight: 600;
    margin-bottom: 25px;
}

.thank-you button,
.white-background {
    background: #FFFFFF;
    border: 1px solid rgba(128, 128, 138, 0.44);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    letter-spacing: 0;
    font-weight: bold;
    width: 112px;
    height: 46px;
    opacity: 0.6;
    font-size: 13px;
    color: #212128;
    letter-spacing: -0.21px;
}

.expand .container__card,
.reverse-animation .container__card {
    float: right;
    -webkit-transition: all .7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all .7s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-content {
    height: 0;
    opacity: 0;
    -webkit-transition: all 0.2s 0.45s, height 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, min-height 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.25s opacity 0s;
    transition: all 0.2s 0.45s, height 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.25s, max-width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, width 0.1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, min-height 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.25s opacity 0s;
    -webkit-transform-origin: center;
    transform-origin: center;
    box-sizing: border-box;
    padding: 30px;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
}

.visible {
    z-index: 3;
    opacity: 1;
    visibility: visible;
}

.container__card .body-content {
    max-height: 235px;
    margin-bottom: 20px;
}

.body-content.multiple-line-items {
    /*overflow: hidden;*/
}

.expand .container__card .body-content {
    margin-bottom: 0;
}

.expand-items .body-content {
    overflow-y: scroll;
    width: 108%;
}

.container__card .body-content span:last-child {
    float: right;
}

.container__card .title {
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.31px;
}

.expand .container__card .title {
    display: none;
}

.left-padding {
    padding-left: 10px;
}

.hidden {
    display: none;
}

.new-user-dicount-section input[type=text]::-webkit-input-placeholder {
    opacity: 0.4;
}

.returning-user-link {
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    font-size: 12px;
    color: #80808A;
    letter-spacing: -0.21px
}

.payment-method span.active {
    position: relative;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid !important;
    border-radius: 2px 0 0 2px;
    color: #37373D;
}

.payment-method.theme-border span.active {
    color: #0071FF;
}

button {
    cursor: pointer;
    border: none;
    color: #fff;
    font-size: 17px;
    outline: none;
    height: 56px;
    font-weight: 600;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    width: 100%;
    position: relative;
}

button span {
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    -webkit-transform: scale(1);
    transform: scale(1);
    display: inline-block;
}

button:hover span {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.close-button {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 9px;
    padding: 5px 7px;
    background: #333;
    color: rgba(255, 255, 255, 0.66);
    cursor: pointer;
    border-radius: 2px;
    display: none;
}

.expand .close-button {
    display: block;
}

button.loader {
    background-image: url(https://d2jxbtsa1l6d79.cloudfront.net/static/app-static-assets/cdn-app-6.1.0_v4/images/button/cn-spinner-white.svg);
    background-repeat: no-repeat;
    color: transparent;
    background-size: 30px;
    background-position: center;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        -webkit-transform: scale(.5, .5);
        transform: scale(.5, .5);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        -webkit-transform: scale(.5, .5);
        transform: scale(.5, .5);
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

button:active::after {
    -webkit-animation: ripple 0.2s ease-out;
    animation: ripple 0.2s ease-out;
}

.expand .container__card button.continue {
    display: none;
}

.content {
    width: 561px;
    height: auto;
    /*overflow: auto;*/
    /*overflow: hidden;*/
    font-size: 14px;
    box-sizing: border-box;
    visibility: hidden;
}

.expand .content {
    visibility: visible;
}

button.disabled {
    opacity: 0.3;
    background-color: #8F939A;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none;
}

.container__card,
.content {
    float: left;
}

.container__card {
    min-height: 520px;
}

.expand .container__card {
    min-height: 0px;
}

.expand .position {
    position: fixed;
    top: 55px;
    width: 100%;
    overflow-y: scroll;
    bottom: 30px;
}

.card-position {
    position: fixed;
    top: 30px;
    box-sizing: border-box;
}

.expand .order-card .brand-logo,
.thank-you-animation .order-card .brand-logo,
.expand .order-card .body-content {
    -webkit-animation-name: pushContentLeft;
    animation-name: pushContentLeft;
}


/*@keyframes pushContentLeft {
    0% {
        transform: translateX(-15%);
    }
    100% {
        transform: translateX(0);
    }
}
*/

.content-wrapper {
    width: 561px;
    box-sizing: border-box;
    padding: 40px 115px;
    position: relative;
    border-right: 1px solid #eee;
    /*min-height: 550px;*/
}

.min-content .content-wrapper {
    border-right: none;
}

.min-content .container__card {
    border-left: 1px solid #eee;
}

.expand .content-wrapper > div,
.expand .order-card .brand-logo,
.expand .order-card .body-content,
.expand .quantity,
.translate-logo,
.thank-you-animation .order-card .brand-logo,
{
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.wrapper-position {
    max-width: 360px;
    margin: 0 auto;
}

.content-wrapper > .account-section,
.content-wrapper > .payment-section,
.content-wrapper > .billing-section,
.content-wrapper > .billing-shipping-section,
.content-wrapper > .footer-section,
.content-wrapper .shipping-section {
    opacity: 0;
}

.expand .content-wrapper > .account-section,
.expand .content-wrapper > .payment-section,
.expand .content-wrapper > .billing-section,
.expand .content-wrapper > .billing-shipping-section,
.expand .content-wrapper > .footer-section,
.expand .content-wrapper .shipping-section {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: appearContent;
    animation-name: appearContent;
    margin-top: 20px;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
}

.expand .content-wrapper .appearHeightAnimation .shipping-section {
    /*animation-name: appearContentFromTop;*/
    opacity: 0;
}

.expand .content-wrapper .disappearHeightAnimation .shipping-section {
    -webkit-animation-name: disAppearContentToTop;
    animation-name: disAppearContentToTop;
    opacity: 1;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    /*height: 0;*/
}

.expand .content-wrapper .billing-section,
.expand .content-wrapper .billing-shipping-section {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.expand .content-wrapper .payment-section,
.expand .content-wrapper .footer-section {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.expand .order-card .brand-logo {
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
}

.expand .order-card .body-content {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.expand .checkout-item-list,
.expand .coupon,
.expand .copyright,
.expand .total-footer,
.expand .different-shipping,
.new-user-dicount-section {
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: fadeContentIn;
    animation-name: fadeContentIn;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    opacity: 0;
}

.new-user-dicount-section {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.expand .different-shipping {
    margin-bottom: 0;
    margin-top: 5px;
}

.expand .quantity,
.reverse-animation .checkout-item-list,
.reverse-animation .coupon,
.reverse-animation .copyright,
.reverse-animation .total-footer,
.reverse-animation .different-shipping,
.thank-you-animation .order-card-wrapper,
.thank-you-animation .brand-logo .title,
.order-leave-active .order-card-wrapper,
.order-leave-active .brand-logo .title {
    -webkit-animation-name: fadeContentOut;
    animation-name: fadeContentOut;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.thank-you-animation .order-card.translateCard {
    top: 30px;
    text-align: center;
    -webkit-transform: translate(0, 20%);
    transform: translate(0, 20%);
    width: 100%;
}

.thank-you-animation .wrapper-position {
    max-width: none;
}

.reverse-animation .content-wrapper > .account-section,
.reverse-animation .content-wrapper > .payment-section,
.reverse-animation .content-wrapper > .billing-section,
.reverse-animation .content-wrapper > .billing-shipping-section,
.reverse-animation .content-wrapper > .footer-section {
    -webkit-animation-name: fadeContentOut;
    animation-name: fadeContentOut;
    -webkit-animation-duration: 1s;
    animation-duration: .5s;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    /*opacity: 0;*/
}

@-webkit-keyframes appearContent {
    0% {
        opacity: 0;
        /*-webkit-transform: translateY(10%);*/
        /*transform: translateY(10%);*/
        visibility: hidden;
    }
    100% {
        opacity: 1;
        /*-webkit-transform: translateY(0);*/
        /*transform: translateY(0);*/
        visibility: visible;
    }
}

@keyframes appearContent {
    0% {
        opacity: 0;
        /*-webkit-transform: translateY(10%);*/
        /*transform: translateY(10%);*/
        visibility: hidden;
    }
    100% {
        opacity: 1;
        /*-webkit-transform: translateY(0);*/
        /*transform: translateY(0);*/
        visibility: visible;
    }
}

@-webkit-keyframes appearContentFromTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        visibility: hidden;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes appearContentFromTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        visibility: hidden;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
    }
}

@-webkit-keyframes disAppearContentToTop {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
        /*height: auto;*/
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        visibility: hidden;
        /*height: 0;*/
    }
}

@keyframes disAppearContentToTop {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        visibility: visible;
        /*height: auto;*/
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        visibility: hidden;
        /*height: 0;*/
    }
}


/*@-webkit-keyframes disappearContent {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }
}

@keyframes disappearContent {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
    }
}*/

.thank-you-animation .order-card .translate-logo {
    -webkit-animation-name: translateLogo;
    animation-name: translateLogo;
}

@-webkit-keyframes translateLogo {
    100% {
        -webkit-transform: translate(30%, 20vh);
        transform: translate(30%, 20vh);
    }
}

@keyframes translateLogo {
    100% {
        -webkit-transform: translate(30%, 20vh);
        transform: translate(30%, 20vh);
    }
}

@-webkit-keyframes fadeContentIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeContentIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeContentOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeContentOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.container__card .sub-heading,
.content .sub-heading {
    margin: 10px 0 10px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding-top: 10px;
    position: relative;
    box-sizing: border-box;
}

.container__card .multiple-line-items .sub-heading,
.content .sub-heading {
    margin: 5px 0;
}

.content .sub-heading {
    margin: 5px 0px 10px;
}

.content .sub-heading {
    font-weight: 600;
}

.container__card .sub-heading.items {
    padding-left: 13px;
}

.container__card .sub-heading.items .shipping-text {
    margin-top: 0;
}

.expand .container__card .sub-heading.items .shipping-text {
    font-size: 12px;
    /*font-weight: 600;*/
    margin-top: 4px;
}

.container__card .sub-heading:first-child .remove-item {
    display: none;
}

.container__card .sub-heading .text-large,
.content .sub-heading .text-large {
    font-weight: 600;
    font-size: 14px;
    color: #37373D;
    line-height: 17px;
}

.sub-heading.total p {
    font-size: 12px;
    line-height: 18px;
    color: #787882;
    font-weight: 300;
    margin: 0;
}

.total {
    position: absolute;
    bottom: 0px;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
}

.dim {
    margin-top: 5px;
}

.tax > .dim {
    opacity: 0;
    height: 0;
}

.container__card .body-content span.single-item-tax {
    font-size: 12px;
    color: #80808A;
    letter-spacing: -0.21px;
    font-weight: normal;
    float: none;
    vertical-align: top;
}

.expand .tax > .dim {
    height: auto;
    display: none;
}

.expand .tax > .dim.show-content {
    display: block;
}

.expand .container__card .sub-heading .text-large {
    margin-top: 0;
}

.expand .total {
    position: relative;
    width: 100%;
    color: #37373D;
    margin-right: 0;
    padding-left: 13px;
    box-sizing: border-box;
    margin-top: 10px;
}

.expand .total .total-footer {
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.expand .total .dim {
    margin-left: auto;
}

.expand .total .dim p {
    margin: 0;
}

.expand .total-footer p {
    padding-top: 10px;
    font-size: 12px;
    color: #80808A;
    letter-spacing: -0.21px;
    display: inline-block;
}

.custom-fields div.border-bottom:not(:last-child) {
    /*border-bottom: 1px solid #B4B4BE;*/
}

.expand .total-footer .total-bill {
    font-family: Helvetica;
    font-size: 16px;
    color: #37373D;
    letter-spacing: 0;
    font-weight: 600;
    text-align: right;
    float: right;
    visibility: hidden;
}

.expand .total-footer .total-bill.border-top {
    /*border-top: 1px solid #D8D8D8;*/
    visibility: visible;
}

.total .total-text {
    float: right;
    font-family: Helvetica;
    font-size: 14px;
    opacity: 1;
    font-weight: normal;
}

.expand .remove-item,
.expand .load-more-items,
.expand .quantity+label,
.expand .multiple-line-items .sub-heading .right {
    display: none;
}

.expand .container__card .body-content {
    min-height: 0;
}

.total-footer p {
    margin: 0;
}

.total-bill {
    margin: 0;
    opacity: 0;
    text-align: right;
    font-family: Helvetica;
    font-size: 18px;
    color: #37373D;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 22px;
}

.description {
    font-size: 12px;
    color: #787882;
    letter-spacing: 0;
    line-height: 16px;
    margin-top: 4px;
    max-width: 277px;
}

.expand-items .sub-heading {
    width: 95%;
}

.multiple-line-items .sub-heading .left,
.items.checkout-item-list .left {
    width: 100%;
}

.multiple-line-items .sub-heading .right {
    position: absolute;
    right: 50px;
    width: auto;
    top: 8px;
    border: 1px solid rgba(128, 128, 138, 0.44);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.10);
    border-radius: 2px;
}

.multiple-line-items .sub-heading .right .relative {
    float: left;
}

.multiple-line-items .sub-heading:before,
.checkout-item-list:before {
    content: "\f111";
    position: absolute;
    left: 0px;
    top: 17px;
    width: 5px;
    height: 8px;
    background-repeat: no-repeat;
    font: normal normal normal 6px/1 FontAwesome;
    vertical-align: middle;
}

.expand .multiple-line-items .sub-heading:before,
.expand .checkout-item-list:before {
    /*top: 19px;*/
    display: none;
}

.hide-before-content:before {
    content: "";
}

.hide-before-content .clearfix {
    display: none;
}

.checkout-item-list:before {
    top: 5px;
}

.multiple-line-items .sub-heading:first-child .right .quantity {
    border: none;
}

.multiple-line-items .sub-heading .right .quantity {
    /*CHANGES*/
    /*width: 45px;*/
    /*width: auto;*/
    height: 25px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    /*border-right: 1px solid #C8C8CC;*/
    vertical-align: middle;
    line-height: 26px;
}

input::-webkit-calendar-picker-indicator {
    display: block;
    background: none;
    opacity: 1;
}

.container__card .sub-heading .text-large.amount {
    font-size: 24px;
    margin: 1px 0 4px 0;
    line-height: 28px;
}

.multiple-line-items .package-name {
    width: 50%;
}

.optios-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 61px;
    position: fixed;
    text-align: left;
    font-size: 12px;
    color: #93939E;
    background: #FFFFFF;
    border: 1px solid rgba(128, 128, 138, 0.44);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    box-sizing: border-box;
    border-top: none;
    overflow: visible;
    cursor: pointer;
    display: none;
    z-index: 10;
    outline: none;
    margin-top: 1px;
}

.optios-dropdown li {
    padding-left: 5px;
}

.optios-dropdown li:hover {
    background-color: lightgray;
    color: #fff;
}

.multiple-line-items .optios-dropdown {
    width: 63px;
    border-radius: 0;
    margin-left: -1px;
    margin-top: 1px;
}


/*.multiple-line-items .sub-heading .text-large {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}*/

.multiple-line-items .sub-heading .text-large,
.checkout-item-list .text-large {
    font-size: 14px;
    color: #37373D;
    letter-spacing: -0.21px;
    font-weight: normal;
}

.small-text {
    font-size: 12px !important;
}

.checkout-item-list {
    position: relative;
    padding-left: 13px;
}

.checkout-item-list .shipping-text {
    margin-bottom: 20px;
}

.multiple-line-items .sub-heading .text-large.amount,
.checkout-item-list .text-large.amount {
    float: right;
    font-family: Helvetica;
    font-size: 14px;
    line-height: 17px;
}

.multiple-line-items .description {
    opacity: 0;
    margin-bottom: 0;
    height: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    overflow: hidden;
}

.load-more-items {
    padding: 5px;
    margin-bottom: 10px;
    background: #eee;
    text-align: center;
    opacity: 0;
    margin-bottom: 10px;
    background: #E9E9EC;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.18);
    border-radius: 2px;
    font-size: 14px;
    letter-spacing: -0.21px;
    margin-left: 10px;
    cursor: pointer;
}

.user-email {
    display: none;
}

.review {
    padding: 0;
    z-index: 2;
}

.clickable-content {
    cursor: pointer;
}

ul.user-info-content,
.user-info {
    list-style: none;
    padding-left: 0;
    color: #37373D;
    font-weight: normal;
    padding: 20px 40px;
}

.user-info {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    font-size: 14px;
}

.user-info-content {
    font-size: 13px;
}

.review .total {
    left: 0;
    right: 0;
    margin: 0 auto;
}

ul.user-info-content li {
    border-bottom: 1px solid rgba(167, 167, 170, 0.3);
    padding: 10px 15px;
    line-height: 20px;
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.20);
    border-radius: 2px 2px 0 0;
    /*margin-bottom: 1px;*/
}

ul.user-info-content li:last-child {
    border-bottom: none;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation-timing-function: cubic-bezier(0, 0.71, 1, 1);
    animation-timing-function: cubic-bezier(0, 0.71, 1, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

ul.user-info-content li p,
.user-info p {
    margin: 0;
    font-weight: normal;
}

.show-discount,
.hide-discount {
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.show-discount {
    z-index: 1;
    -webkit-animation-name: fadeContentIn;
    animation-name: fadeContentIn;
}

.hide-discount {
    -webkit-animation-name: fadeContentOut;
    animation-name: fadeContentOut;
}

.apply-discount-text {
    margin-bottom: 30px;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 40px;
    border: none;
    outline: none;
    color: #0071FF;
}

.dim .left {
    font-size: 12px;
    line-height: 21px;
    color: #80808A;
}

.after-discount.dim .left {
    opacity: 1;
}

.after-discount.dim .left .dim {
    opacity: 0.4;
}

.after-discount .shipping-text {
    margin-left: 5px;
    cursor: pointer;
}

.user-info-footer {
    margin-top: 10px;
}

.user-info-footer p {
    padding-top: 5px;
}

.user-info-footer .right {
    font-weight: 600;
    border-top: 1px solid #ddd;
}

.user-info p.title {
    margin: 10px 0 20px;
}

ul.user-info-content li p.title {
    font-size: 13px;
    font-weight: 600;
}

.user-info .left {
    width: 60%;
}

ul.user-info-content li .left.section-label {
    opacity: 0.9;
    font-size: 14px;
    letter-spacing: -0.21px;
    width: 30%;
}

ul.user-info-content li .left.section-content {
    width: 65%;
}

.user-info .right {
    width: 35%;
    text-align: right;
}

ul.user-info-content li .right {
    width: 5%;
    font-size: 16px;
    text-align: right;
}

.show-content {
    -webkit-animation-name: showContent;
    animation-name: showContent;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.returning-user-tax .show-content {
    display: inline-block;
}

@-webkit-keyframes showContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes showContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.relative {
    position: relative;
    text-align: right;
}

.quantity {
    width: 61px;
    height: 34px;
    font-size: 12px;
    color: #93939E;
    background: #FFFFFF;
    border: 1px solid rgba(128, 128, 138, 0.44);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    -webkit-appearance: none;
    padding-left: 5px;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    display: none;
    text-align: left;
    line-height: 32px;
}

.quantity:focus {
    border: 1px solid #1E8CE6 !important;
}

.multiple-line-items .quantity:focus {
    outline: 1px solid #1E8CE6 !important;
    outline-offset: 0px;
    border: none !important;
}


/*.quantity + label:before {
        content: "Qty";
    position: absolute;
    z-index: 10;
    top: 6px;
    right: 35px;
    color: #787882;
}*/

.multiple-line-items .quantity + label:before {
    top: 8px;
    right: 6px;
}

.multiple-line-items .quantity + label:after {
    top: 13px;
    right: 6px;
}

.payment-method {
    font-size: 14px;
    line-height: 17px;
    color: #37373D;
    margin-bottom: 30px;
}

.returning-user .payment-method {
    margin-top: 10px;
}

.add-payment-method span {
    padding: 11px 0;
    box-sizing: border-box;
    cursor: pointer;
    float: left;
    text-align: center;
    background-color: #FFFFFF;
    border-right: 1px solid #f4f5f9;
    color: #8F939A;
    font-size: 13px;
    letter-spacing: -0.21px;
}
.add-payment-method span:last-child{
    border-right: none;
}
.payment-method span label {
    color: #8F939A;
}

.payment-method span.active label {
    color: #37373D;
}

.payment-method span input[type=radio] {
    display: none;
}

.payment-method span:not(:first-child) {
    border-left: none;
}

.payment-method.four span:not(:first-child) {
    border-left: 1px solid #B4B4BE;
    border-top: none;
}

.payment-method.two span {
    width: 50%;
}

.payment-method.two span:nth-child(3),
.payment-method.two span:nth-child(4) {
    display: none;
}

.payment-method.three span {
    width: 33%;
}

.payment-method.three span:nth-child(4) {
    display: none;
}

.payment-method.four span {
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.payment-method.four span input[type=radio] {
    display: inline-block;
    margin-right: 10px;
}

.payment-method.four span label {
    width: 100%;
    display: inline-block;
    cursor: pointer;
}

.payment-method img,.payment-method i {
    vertical-align: middle;
    margin-right: 5px;
}

.custom-fields div,
.payment-method-content .card > div,
.payment-method-content .address > div {
    box-sizing: border-box;
    min-height: 66px;
    position: relative;
}

.custom-fields > div,
.payment-method-content .card > div,
.address > div {
    /*border: 1px solid rgba(190, 190, 204, 1);*/
    margin-bottom: 1px;
    background: #fff;
    opacity: 0.9;
}

.address.show-content > div {
    opacity: 0.9;
}

.custom-fields .double-address-fields,
.address.show-content .double-address-fields,
.payment-method-content .card .double-address-fields,
.custom-fields .borderless {
    opacity: 1;
}

.payment-method-content .card > div {
    overflow: visible;
    box-sizing: content-box !important;
}

.custom-fields .address,
.payment-section .address {
    visibility: hidden;
    border: none;
    background: #F4F5F9;
}


/*CHANGES*/

.custom-fields .help-text,
.payment-section .help-text {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    opacity: 0.5;
    background: #8F939A;
    position: absolute;
    right: 10px;
    bottom: 20px;
    padding: 2px;
    z-index: 10;
    cursor: pointer;
}

.custom-fields .active-opacity,
.payment-section .active-opacity {
    opacity: 1;
}

.custom-fields .help-text img {
    margin: 2px auto;
}

.payment-method-content .card > div:first-child,
.custom-fields > div:first-child {
    border-radius: 2px 2px 0 0;
}

.top-left-radius {
    border-radius: 2px 0 0 0;
}

.top-right-radius {
    border-radius: 0 2px 0 0;
}

.bottom-left-radius {
    border-radius: 0 0 0 2px;
}

.bottom-right-radius {
    border-radius: 0 0 2px 0;
}

.custom-fields > div:last-child,
.payment-method-content .card > div:last-child {
    border-radius: 0 0 2px 2px;
}

.custom-fields div:not(:last-child) {
    /*border-bottom: none;*/
}

.custom-fields div * {
    display: block;
}

.custom-fields div datalist {
    display: none;
}

.custom-fields div.error,
.payment-section div.error {
    /*border: 1px solid #F04444 !important;*/
}

.custom-fields div.focus-input,
.payment-section div.focus-input {
    background: #FFFFFF;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    transform: perspective(500px) translateZ(10px);
    transform-style: preserve-3d;
    z-index: 10;
    opacity: 1;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-fields .double-address-fields div.focus-input,
.payment-section .double-address-fields div.focus-input {
    transform: perspective(500px) translateZ(20px);
}

.custom-fields input,
.payment-method-content input,
.custom-fields select,
.payment-method-content select,
.unauthenticated-user-email {
    width: 100%;
    height: 52px;
    color: #37373D;
    position: relative;
    background: none;
}

.gift-section {
    padding: 20px 0;
    font-size: 14px;
    color: #37373D;
    letter-spacing: -0.3px;
}

.gift-section input[type="checkbox"] {
    background: #FFFFFF;
    border: 1px solid #B4B4BE;
    border-radius: 2px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 21px;
    width: 21px;
    vertical-align: middle;
}

.note {
    display: block;
    background: #FFFFFF;
    border: 1px solid #B4B4BE;
    border-radius: 2px;
    height: 70px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    outline: none;
    font-size: 16px;
    padding: 12px;
}

.note-label {
    font-size: 11px;
    color: #80808A;
    padding: 10px 0;
    display: inline-block;
}

.unauthenticated-user-email {
    padding-left: 12px;
    font-size: 14px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid rgba(0, 113, 255, 0.6);
    box-shadow: inset 1px 1px 3px 0 rgba(0, 0, 0, 0.29);
    border-radius: 2px;
    letter-spacing: -0.3px;
    color: #AFB2B7;
}

.total .new-user-dicount-section button {
    max-width: 80px;
    height: 36px;
    margin-top: 0;
    font-size: 12px;
}

.total .new-user-dicount-section button.loader {
    background-size: 20px;
}

.container__card .new-user-dicount-section input {
    height: 36px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid rgba(0, 113, 255, 0.6);
    font-size: 16px;
    color: #A6A6A9;
    line-height: 21px;
    font-weight: 300;
    padding-left: 5px;
    border-radius: 2px;
    width: 68%;
}

.custom-fields input,
.custom-fields select,
.payment-method-content input,
.payment-method-content select {
    border: none;
    outline: none;
    font-size: 16px;
    z-index: 2;
    margin-top: 10px;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
    display: inline-block;
}

.custom-fields div .field-title,
.field-title {
    position: absolute;
    top: 22px;
    -webkit-transition: top 0.3s ease, font-size 0.3s ease;
    transition: top 0.3s ease, font-size 0.3s ease;
    z-index: 1;
    font-size: 14px;
    line-height: 18px;
    color: #AFB2B7;
    font-weight: 300;
    left: 12px;
    letter-spacing: 0.25px;
}

.custom-fields div .field-title.on,
.field-title.on {
    top: 7px;
    font-size: 11px;
    line-height: 15px;
    color: #80808A;
}

.shipping-text {
    cursor: pointer;
    font-size: 12px;
    line-height: 21px;
    color: #007FE1;
    margin-top: 7px;
    font-weight: 300;
}

.cancel-text {
    padding: 10px;
    width: 50%;
}

.remove-item {
    cursor: pointer;
    font-size: 16px;
    color: #93939E;
    padding: 0 5px;
    height: 25px;
    vertical-align: middle;
    display: none;
}

.remove-item:before {
    font: normal normal normal 16px/1 FontAwesome;
    content: "\f014";
    vertical-align: middle;
}

.other-details-section .quantity {
    width: 100%;
    border: none;
    font-size: 13px;
    margin-left: -5px;
    height: 40px;
}

.align-right {
    font-size: 12px;
    text-align: right;
    line-height: 15px;
    color: #8F939A;
}

.coupon {
    color: #007FE1;
    line-height: 21px;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 10px;
    display: none;
}

.change-order {
    display: none;
}

.expand .coupon {
    display: block;
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 15px;
    text-align: center;
}

.mobile-view-box.remove-link {
    display: none;
}

.expand .coupon .shipping-text {
    margin-top: 0;
}

.expand .coupon.hidden-div {
    display: none;
}

.total button {
    margin-top: 10px;
}

.payment-method-content {
    opacity: 0;
    margin-bottom: 15px;
    min-height: 140px;
}

.opacity {
    -webkit-animation-name: appearChoreography;
    animation-name: appearChoreography;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes appearChoreography {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes appearChoreography {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.payment-method-content .expiry-section div {
    position: relative;
}

.payment-method-content .card > div:not(:last-child),
.payment-method-content .address > div:not(:last-child) {
    border-bottom: none;
}

.payment-method-content .card .borderless {
    border: none;
}

.payment-method-content .card .no-border,
.payment-method-content .card .no-border .address > div:first-child {
    border-top: none;
}

.payment-method-content .left,
.payment-method-content .right,
.double-address-fields .left,
.double-address-fields .right {
    width: 50%;
    float: left;
    box-sizing: border-box;
    /*CHANGES*/
    overflow: initial;
}

.double-address-fields .left,
.double-address-fields .right {
    border-left: 1px solid #F4F5F9;
    /*border-bottom: none;*/
    opacity: 0.9;
}

.double-address-fields.bottom-border .left,
.double-address-fields.bottom-border .right {
    /*border-bottom: 1px solid rgba(190, 190, 204, 1);*/
}


/*.apply-discount {
    position: absolute;
    height: 100%;
    width: 399px;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    opacity: 0;
    z-index: -1;
}
*/

.modal-footer {
    text-align: center;
}

.modal-footer button {
    margin-top: 0;
}

.apply-discount .cancel-modal {
    text-align: center;
    font-size: 14px;
    letter-spacing: -0.21px;
    margin-top: 15px;
}

.custom-fields .double-address-fields,
.payment-method-content .card .double-address-fields {
    /*border: none;*/
}

.double-address-fields.clearfix {
    overflow: visible;
    z-index: 1;
}

.payment-method-content .expiry-section .right,
.double-address-fields .right {
    /*border-left: none;*/
}

.paypal {
    text-align: center;
    font-size: 12px;
    color: #8F939A;
    letter-spacing: -0.21px;
}

.paypal button {
    background: #194293;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
    border-radius: 2px;
    width: 80%;
}

.left {
    float: left;
}

.right {
    float: right;
}

.container__card .left {
    width: 70%;
}

.container__card .left p {
    margin: 0;
}

.container__card .right {
    width: 30%;
}

.card-icons {
    right: 12px;
    top: 25px;
    font-size: 20px;
    line-height: 20px;
    color: #AFB2B7;
    letter-spacing: -0.66px;
    position: absolute;
    margin-top: -6px;
}

.card-icons.identified i {
    -webkit-transition: all 0.2s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: all 0.2s, width 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s, height 0.2s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    opacity: 0;
    display: none;
}

.card-icons.identified i.active {
    opacity: 1;
    display: block;
}

.hide {
    display: none;
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hidden-div {
    display: none;
}

.copyright {
    display: none;
}

.expand .copyright {
    display: block;
    /*position: fixed;*/
    bottom: 10px;
    cursor: pointer;
    max-width: 150px;
    margin: 0 auto;
    text-align: left;
    margin-top: 25px;
    position: relative;
}
.expand .copyright img{
    float: left;
    padding-right: 10px;
}
.expand .copyright-text{
    font-size: 10px;
    color: #787878;
    line-height: 0.5;
}
.secured-content,
.custom-fields .help-text-content,
.payment-section .help-text-content,
.sub-heading.items .help-text-content {
    position: absolute;
    border-radius: 2px;
    font-size: 11px;
    color: #787882;
    letter-spacing: 0;
    line-height: 14px;
    box-sizing: border-box;
    -webkit-filter: drop-shadow(rgba(0, 0, 0, 0.12) 0 2px 9px);
    filter: drop-shadow(rgba(0, 0, 0, 0.12) 0 2px 9px);
    opacity: 0;
}

.payment-section .help-text-content {
    position: absolute !important;
}

.secured-content {
    bottom: 45px;
    width: 257px;
    background: #FFFFFF;
    color: #787882;
    left: 50%;
    padding: 0px 22px 10px;
    transform: translateX(-50%);
    visibility: hidden;
}
.secured-content.show{
    visibility: visible;
}
.secured-content:after,
.custom-fields .help-text-content:after,
.payment-section .help-text-content:after {
    content: " ";
    position: absolute;
    top: 100%;
    width: 0;
    height: 0;
    border-top: 8px solid #fff;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.secured-content:after {
    left: 50%;
    transform: translateX(-50%);
}


/*CHANGES*/

.expand .custom-fields .help-text-content,
.expand .payment-section .help-text-content,
.sub-heading.items .help-text-content {
    border: none;
    background: #83838B;
    color: #FFFFFF;
    width: auto;
    padding: 5px 10px;
    top: 34%;
    border-radius: 2px;
    z-index: 10;
    min-height: 0;
    visibility: hidden;
    max-width: 210px;
    right: auto;
    left: 99%;
    display: table;
}

.sub-heading.items .help-text-content {
    left: 0;
    top: 100%;
}

.expand .custom-fields .help-text-content:after,
.payment-section .help-text-content:after {
    border-right: 4px solid #83838B;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    right: 100%;
    top: 8px;
}

.sub-heading.items .help-text-content:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 25%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-bottom: 4px solid #83838B;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.secured-content .img-container span {
    width: 32%;
    display: inline-block;
    vertical-align: middle;
}

.terms-of-service,
.copyright {
    font-size: 12px;
    line-height: 15px;
    color: #8F939A;
    font-weight: 300;
    margin-top: 30px;
    text-align: center;
}

.fa.fa-lock {
    color: #FF8E63;
    font-size: 17px;
    margin-right: 5px;
    vertical-align: bottom;
}

.terms-of-service span {
    color: #007FE1;
    cursor: pointer;
}

.clearfix {
    overflow: auto;
    zoom: 1;
}

.hide-section {
    opacity: 0;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    display: none;
}

.complex-form {
    display: none;
}


/* To be removed */

.controls {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px;
    font-size: 13px;
    color: rgba(87, 87, 93, 0.5);
    letter-spacing: -0.46px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    opacity: 0.3;
    cursor: pointer;
}

.controls:hover {
    opacity: 1;
}

.controls > div > div {
    margin-bottom: 10px;
}

.controls > div p {
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: gray;
}

.controls input[type=text] {
    height: 30px;
    width: auto;
    padding-left: 5px;
    font-size: 13px;
}

.controls .color-control input[type=radio],
.controls .user input[type=radio],
.controls .discount input[type=checkbox],
.controls .logo-position input[type=radio] {
    display: none;
}

.controls .color-control label,
.controls .logo-position label {
    display: inline-block;
    height: 21px;
    width: 21px;
    position: relative;
    cursor: pointer;
}

.controls .logo-position label:nth-child(2):before {
    content: "\f036";
    font: normal normal normal 14px/1 FontAwesome;
}

.controls .logo-position label:nth-child(4):before {
    content: "\f037";
    font: normal normal normal 14px/1 FontAwesome;
}

.controls .color-control label:nth-child(2) {
    background-color: #0071FF;
}

.controls .color-control label:nth-child(4) {
    background-color: #A4353D;
}

.controls .color-control label:nth-child(6) {
    background-color: #00AC69;
}

.controls .color-control label:nth-child(8) {
    background-color: #000;
}

.controls .color-control input[type="radio"]:checked+label:before {
    content: "\f00c";
    vertical-align: middle;
    line-height: normal;
    font-family: FontAwesome;
    text-align: center;
    margin-top: -10px;
    position: absolute;
    top: 14px;
    left: 4px;
    color: #fff;
    font-size: 14px;
}

.controls .user input[type="radio"]:checked+label,
.controls .discount input[type="checkbox"]:checked+label {
    color: #0071FF;
}

.controls .user label {
    display: inline-block;
    position: relative;
}

.controls .box {
    background: #D8D8D8;
    height: 18px;
    width: 18px;
    float: right;
    text-align: center;
    color: #A2A2A5;
    font-weight: 600;
    cursor: pointer;
    margin-left: 5px;
}


/* To be removed ends */

.position::-webkit-scrollbar-track,
.position::-webkit-scrollbar,
.position::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-track,
body::-webkit-scrollbar,
body::-webkit-scrollbar-thumb {
    display: none;
}

.multiple-line-items::-webkit-scrollbar-track {
    border-radius: 10px;
}

.multiple-line-items::-webkit-scrollbar {
    width: 3px;
}

.multiple-line-items::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(154, 154, 157, 0.40);
}

.user-info-content .fa-cc-visa {
    margin-right: 7px;
    font-size: 20px;
    color: #6BA2FD;
    letter-spacing: -0.66px;
}

.card-details {
    margin-bottom: 30px;
}

.card-details .fa-cc-visa {
    font-size: 20px;
    color: #6BA2FD;
}

.enhanced-text {
    font-size: 13px;
    color: #37373D;
    letter-spacing: -0.3px;
    line-height: 20px;
    font-weight: 600;
}

.returning-user-payment-update .enhanced-text {
    margin: 0;
}

.payment-history {
    font-size: 14px;
    color: #A6A6A9;
    letter-spacing: -0.3px;
    line-height: 20px;
}

.card-details .left {
    width: 10%;
}

.card-details .right .enhanced-text {
    margin: 0;
}

.card-details .right {
    width: 90%;
}

.sub-text {
    opacity: 0.4;
    font-size: 12px;
    color: #37373D;
    text-align: center;
    margin-top: 0px;
    line-height: 20px;
}

.update-section .sub-text {
    padding-top: 2px;
}

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

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

.update-section {
    margin: 30px 0 0;
}

.change-section {
    position: absolute;
    right: 40px;
}

.fa {
    vertical-align: middle;
}

.z-index {
    -webkit-animation-name: index;
    animation-name: index;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-animation-timing-function: cubic-bezier(0, 0.71, 1, 1);
    animation-timing-function: cubic-bezier(0, 0.71, 1, 1);
}

@-webkit-keyframes index {
    0% {
        z-index: 3;
        opacity: 1;
    }
    50% {
        z-index: 3;
        opacity: 1;
    }
    100% {
        z-index: -1;
        opacity: 0;
    }
}

@keyframes index {
    0% {
        z-index: 3;
        opacity: 1;
    }
    50% {
        z-index: 3;
        opacity: 1;
    }
    100% {
        z-index: -1;
        opacity: 0;
    }
}

.back-button,
.payment-update-back-button {
    font-weight: 600;
    cursor: pointer;
}

.fa-calendar-o,
.fa-pencil {
    font-size: 15px;
    color: #80808A;
    position: absolute;
    right: 11px;
    top: 25px;
    z-index: 5;
    cursor: pointer;
    min-height: 20px;
    width: 20px;
    text-align: right;
    background: #fff;
}

.fa-pencil {
    opacity: 0;
}

.red {
    margin-left: 5px;
    font-size: 13px;
    color: #FF5151;
    letter-spacing: -0.3px;
    line-height: 20px;
}

.returning-user-payment-info .red {
    margin-left: 35px;
}

.expiring-mode {
    background: #0071FF;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10);
    border-radius: 2px;
    width: 112px;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 21px;
    text-align: center;
    vertical-align: middle;
    padding: 5px 0;
}

form label {
    cursor: pointer;
}

.drop-down {
    display: none;
}


/*CHANGES*/

.payment-section div .error-msg,
.custom-fields div .error-msg {
    margin: 0;
    font-size: 11px;
    color: #F14444;
    padding-left: 12px;
    position: absolute;
    bottom: 6px;
}

.quantity + label {
    cursor: pointer;
}

.quantity + label:before,
.quantity + label:after {
    height: 5px;
    width: 7px;
    position: absolute;
    right: 10px;
}

.quantity + label:before,
.quantity + label:after {
    content: " ";
    background: url("../img/Rectangle 3.svg");
    background-repeat: no-repeat;
    top: 12px;
}

.quantity + label:after {
    top: 18px;
    background: url("../img/Rectangle 3 Copy.svg");
}

@media all and (min-width:768px) and (max-width: 1024px) {
    .container {
        max-width: 700px;
    }
    .expand .container__card {
        width: 38.2%;
        padding: 30px 0;
    }
    .expand .container__card .wrapper-position {
        padding: 0 15px;
        box-sizing: border-box;
        max-width: 267px;
    }
    .expand .thank-you {
        width: 100%;
    }
    .expand .content,
    .expand .content-wrapper {
        width: 432px;
    }
    .position.content {
        width: 100%;
    }
    .expand .content-wrapper {
        padding: 30px;
    }
}

#app.min-content,
#app.min-content.expand .container__card,
#app.min-content.expand .container__card .wrapper-position {
    /*top: 60px;*/
    /*bottom: 0;*/
    /*margin: 50px auto;*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#app.min-content .expand.container {
    margin-bottom: 30px;
}

#app.min-content #copyright {
    position: absolute;
    bottom: 10px !important;
}

.show {
    display: block !important;
    height: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}

#mobile-indicator {
    display: none;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    .overlay {
        display: block;
    }
    .container.expand-items {
        top: 0;
        height: 100%;
    }
    .change-order {
        display: block;
    }
    .translate-error {
        width: 100%;
        z-index: 10000;
        padding: 34px 0px;
    }
    .expand .mobile-view-box {
        background: #FFFFFF;
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10);
        border-radius: 2px;
        text-align: center;
        padding: 15px 0px;
        box-sizing: border-box;
        /*width: 39%;*/
        vertical-align: middle;
        /*float: left;*/
        margin-top: 25px;
        margin-bottom: 20px;
        display: block;
        font-size: 14px;
        color: #37373D;
    }
    .expand .expandable-section .shipping-text {
        padding-top: 10px;
        box-sizing: border-box;
    }
    .expand .mobile-view-box .shipping-text,
    .expand .mobile-view-box.remove-link {
        color: #37373D;
    }
    .expand .mobile-view-box.coupon,
    .expand .mobile-view-box.remove-link {
        width: 60%;
        float: right;
    }
    .expand .close-button {
        display: none;
    }
    .container.expand select {
        text-indent: 0px;
        padding-left: 7px;
    }
    .cancel-text {
        font-size: 16px;
    }
    #mobile-indicator {
        display: block;
    }
    .new-user-dicount-section {
        margin-top: 20px !important;
    }
    .discount {
        margin-top: 10px;
        width: 100%;
    }
    .wrapper-position {
        max-width: 100%;
    }
    .left-section {
        display: none;
    }
    .container,
    .container.expand {
        width: 100% !important;
        top: 0;
        margin-bottom: 0;
        -webkit-transition: none;
        transition: none;
        min-height: 100%;
    }
    .container.expand {
        /*padding: 0 20px;*/
        box-sizing: border-box;
    }
    .expand .container__card {
        -webkit-transition: all 0.2s, height 0.2s ease 0.1s;
        transition: all 0.2s, height 0.2s ease 0.1s;
        width: 100%;
        margin: 0px;
        /* margin: 0 14px; */
        height: auto;
        /* float: none; */
        padding: 0;
        position: relative;
        /*top: 0px;*/
        z-index: 100;
        /*right: 0px;*/
        /*left: 0px;*/
        cursor: pointer;
        background: #fff;
    }
    .order-card {
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
        padding: 0;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
    }
    .wrapper-position {
        padding: 30px;
        height: 100%;
        position: relative;
        box-sizing: border-box;
    }
    .total {
        width: 100%;
        padding: 0 30px;
        box-sizing: border-box;
    }
    .expand .container__card {
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 2px 2px;
        position: fixed;
    }
    .container__card .body-content,
    .total,
    .order-card .brand-logo,
    .expand .change-order {
        -webkit-animation-duration: .2s;
        animation-duration: .2s;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-name: fadeContentIn;
        animation-name: fadeContentIn;
        -webkit-animation-delay: 1s;
        animation-delay: .1s;
        opacity: 0;
    }
    .brand-logo img,
    .thank-you img {
        max-width: 42px;
        padding-left: 0;
    }
    .container__card .title {
        font-size: 20px;
        letter-spacing: -0.7px;
    }
    .multiple-line-items .sub-heading .text-large,
    .checkout-item-list .text-large {
        font-size: 14px;
        color: #37373D;
        letter-spacing: -0.34px;
    }
    .expand .container__card .body-content,
    .expand .total,
    .expand .order-card .brand-logo,
    .expand .change-order {
        -webkit-animation-name: fadeContentIn;
        animation-name: fadeContentIn;
    }
    .total {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
    .expand .order-card .brand-logo {
        -webkit-animation-delay: .6s;
        animation-delay: .6s;
        clear: both;
        overflow: auto;
        cursor: pointer;
        padding: 20px;
    }
    .expandable-section {
        padding: 0 20px 20px 20px;
        margin-top: -10px;
    }
    .expand .container__card .title {
        display: block;
    }
    .expand .container__card .wrapper-position-mobile {
        box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 2px 2px;
        height: auto;
        margin: 20px 20px 0px 20px;
        padding: 20px;
    }
    .expand .container__card .wrapper-position-mobile .total-bill {
        position: absolute;
        right: 20px;
        top: 25px;
    }
    .expand .container__card .wrapper-position-mobile .total-bill i {
        margin-top: -2px;
    }
    .expandable-section .text-large.amount {
        text-align: right;
        font-family: Helvetica;
        font-size: 14px;
        opacity: 1;
        font-weight: normal;
        color: #37373D;
    }
    .expand .container__card .wrapper-position-mobile .expandable-section .total-footer {
        padding-top: 10px;
        border-top: 1px solid rgba(216, 216, 216, 0.6);
    }
    .expand .container__card .wrapper-position-mobile .expandable-section .total-bill {
        position: initial;
    }
    .expand .content-wrapper {
        padding: 0 20px 10px 20px;
        padding-top: 0px;
    }
    .expand.order-card-scroll .container__card {
        position: fixed;
    }
    .expand.order-card-scroll .container__card .wrapper-position {
        /*margin: 0px 20px 0px 20px;*/
        /*padding: 10px 10px 5px;*/
    }
    .expand.order-card-scroll .mobile-view-box {
        -webkit-animation-name: mobileScrollAnimate;
        animation-name: mobileScrollAnimate;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }
    @-webkit-keyframes mobileScrollAnimate {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            height: 0;
            padding: 0;
            margin: 0;
        }
    }
    @keyframes mobileScrollAnimate {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            height: 0;
            padding: 0;
            margin: 0;
        }
    }
    .expand .total-footer .total-bill {
        visibility: visible;
    }
    .expand.order-card-scroll .content {
        /*padding:155px 0;*/
        /*margin-top: 106px;*/
    }
    .expand .content,
    .expand .content-wrapper,
    .container__card {
        width: 100%;
        /*height: 100%;*/
    }
    .expand .container__card .wrapper-position,
    .expand.min-content .container__card .wrapper-position,
    .expand .container__card .wrapper-position.card-position {
        height: auto;
        margin: 0 0 0 0;
        box-shadow: none;
        -webkit-transition: all .1s ease-in;
        transition: all .1s ease-in;
    }
    .expand.min-content {
        top: 0px;
    }
    .expand .content {
        visibility: hidden !important;
    }
    .reverse-animation.expand .content {
        visibility: visible !important;
    }
    .reverse-animation .content-wrapper > .account-section,
    .reverse-animation .content-wrapper > .payment-section,
    .reverse-animation .content-wrapper > .billing-section,
    .reverse-animation .content-wrapper > .billing-shipping-section,
    .reverse-animation .content-wrapper > .footer-section {
        animation-delay: 0.4s;
        /*animation-duration: .2s;*/
    }
    .position.content {
        width: 100%;
    }
    .expand .body-content,
    .expand .load-more-items,
    .expand .total .tax,
    .expand .copyright {
        display: none;
        -webkit-transition: top 0.3s ease;
        transition: top 0.3s ease;
    }
    .expand .total-footer,
    .expand .total-footer p {
        margin: 0;
        padding: 0;
        display: block;
    }
    .expand .total-footer p {
        float: left;
        /*padding-left: 45px;*/
    }
    .expand .total {
        width: 100%;
        padding-left: 0px;
        box-sizing: border-box;
        bottom: auto;
        margin-top: -25px;
        /*padding-left: 45px;*/
        padding-right: 0;
    }
    .expand .total .total-footer {
        overflow: auto;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
        border-top: none;
        width: 100%;
    }
    .expand .container__card .wrapper-position-mobile {
        min-height: 80px;
        max-height: 100px;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
        padding: 0;
    }
    .expand .container__card .wrapper-position-mobile.expanded {
        min-height: 150px;
        max-height: 600px;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }
    .expand .container__card .wrapper-position-mobile .title {
        display: inline-block;
        color: rgb(0, 113, 255);
        vertical-align: middle;
        margin: 0;
        font-size: 14px;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .wrapper-position-mobile .fixed-section p {
        margin: 0px;
    }
    .expand .brand-logo img {
        padding-left: 0;
        padding-right: 10px;
        display: inline;
        vertical-align: middle;
        max-width: 32px;
        float: left;
        min-height: 40px;
    }
    .thank-you-animation.expand .brand-logo img {
        float: none;
    }
    .thank-you-animation .order-card.translateCard {
        border: none;
        box-shadow: none;
    }
    .expand .total-footer .right {
        opacity: 1;
    }
    .total-footer .right {
        border-top: none;
        font-size: 23px;
    }
    .expand .drop-down {
        position: absolute;
        width: 100%;
        background: transparent;
        height: 67px;
        top: 0;
        right: 0;
        cursor: pointer;
        display: block;
    }
    button {
        height: 60px;
    }
    .multiple-line-items .sub-heading .right {
        right: 0;
    }
    .multiple-line-items .sub-heading .text-large.amount {
        float: none;
        font-weight: 600;
        font-size: 18px;
        letter-spacing: 0;
    }
    .multiple-line-items .package-name {
        width: 60%;
        font-size: 16px;
        color: #37373D;
        letter-spacing: -0.34px;
    }
    .multiple-line-items .sub-heading .right .quantity,
    .remove-item,
    .quantity {
        height: 46px;
        line-height: 46px;
    }
    .multiple-line-items .sub-heading .right .quantity {
        width: 74px;
        font-size: 14px;
    }
    .remove-item {
        display: inline-block;
        border-left: 1px solid rgba(128, 128, 138, 0.44);
        padding: 0 10px;
    }
    .remove-link {
        display: none;
    }
    .multiple-line-items .quantity + label:after,
    .quantity + label:after {
        top: 24px;
        right: 15px;
    }
    .multiple-line-items .quantity + label:before,
    .quantity + label:before {
        top: 18px;
        right: 15px;
    }
    .expand .order-card .brand-logo.align-center {
        margin-left: 0;
        -webkit-transform: none;
        transform: none;
        text-align: left;
    }
    .expand .card-position,
    .expand .content {
        position: initial;
    }
    .expand .content {
        margin-top: 90px;
    }
    .reverse-animation .content .sub-heading,
    .reverse-animation .billing-shipping-section .showShipping {
        transition: none !important;
    }
    html,
    body {
        /*overflow: scroll !important;*/
        /*overflow-y: scroll;*/
        /*overflow: auto;*/
        /*background: #fff;*/
        /*height: 100%;*/
        /*-webkit-overflow-scrolling: touch;*/
    }
    .left-padding,
    .container__card .sub-heading.items {
        padding-left: 0;
    }
    .container__card .sub-heading.items {
        margin: 10px 0;
    }
    .multiple-line-items .sub-heading:before {
        content: "";
    }
    .load-more-items {
        margin-left: 0;
    }
    .container__card .body-content {
        margin-bottom: 10px;
    }
    .checkout-item-list .text-large.amount,
    .checkout-item-list {
        display: none;
    }
    .checkout-item-list .shipping-text {
        margin: 0;
    }
    .remove-item:before {
        vertical-align: initial;
    }
    .expand .container__card .total-footer .left {
        width: 70%;
    }
    .expand .custom-fields .help-text-content:after,
    .expand .payment-section .help-text-content:after {
        right: 14px;
        top: 100%;
        border-top: 4px solid #83838B;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
    }
    .expand .custom-fields .help-text-content,
    .expand .payment-section .help-text-content {
        right: 0;
        left: auto;
        top: auto;
        bottom: 71%;
    }
    .cancel-text {
        font-size: 16px;
    }
    .container__card {
        height: 100%;
    }
    .animate-card.order-card,
    .animate-card.order-card .wrapper-position {
        background: #f5f5f5;
    }
    .animate-card.order-card {
        -webkit-transition: all 1s;
        transition: all 1s;
    }
    .animate-card.order-card .brand-logo,
    .animate-card.order-card .body-content,
    .animate-card.order-card .total {
        -webkit-animation-name: pushContentTop;
        animation-name: pushContentTop;
        -webkit-animation-delay: .1s;
        /*-webkit-animation-duration: 1s;*/
        -webkit-animation-duration: .25s;
        animation-duration: .25s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        opacity: 1;
    }
    .animate-card.order-card .body-content {
        -webkit-animation-delay: 0.15s;
        animation-delay: 0.15s;
    }
    .animate-card.order-card .total {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }
    .expand .content-wrapper .billing-section,
    .expand .content-wrapper .billing-shipping-section {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
    .expand .content-wrapper .payment-section,
    .expand .content-wrapper .footer-section {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }
    @-webkit-keyframes pushContentTop {
        0% {
            opacity: 1;
            -webkit-transform: translateY(0%);
            transform: translateY(0%);
        }
        100% {
            opacity: 0;
            -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
        }
    }
    @keyframes pushContentTop {
        0% {
            opacity: 1;
            -webkit-transform: translateY(0%);
            transform: translateY(0%);
        }
        100% {
            opacity: 0;
            -webkit-transform: translateY(-25%);
            transform: translateY(-25%);
        }
    }
}

@media screen and (min-width: 320px) and (max-width: 370px) {
    .multiple-line-items .sub-heading .right .quantity,
    .remove-item {
        height: 36px;
        line-height: 36px;
    }
    .multiple-line-items .quantity + label:before {
        top: 14px;
    }
    .multiple-line-items .quantity + label:after {
        top: 20px;
    }
    .container__card .title {
        margin-bottom: 10px;
    }
    .multiple-line-items .sub-heading .text-large.amount {
        font-size: 16px;
    }
    .multiple-line-items .sub-heading .text-large,
    .checkout-item-list .text-large {
        font-size: 13px;
    }
    .total-footer .right {
        font-size: 20px;
    }
    .container__card .sub-heading.items {
        margin: 5px 0;
    }
}


/*CHANGES*/

.payment-section .help-text img {
    margin: 1px auto 2px;
    margin-left: 4px;
}


/*.text-large.package-name {
    letter-spacing: 0.25px;
}

.description {
    letter-spacing: 0.5px;
}*/

.container select {
    text-indent: 4px;
}


/*CHANGES*/

.payment-section .help-text img {
    margin: 1px auto 2px;
    margin-left: 4px;
}

.payment-section .double-address-fields .left,
.double-address-fields .right {
    position: relative;
    min-height: 66px;
}

.container select {
    text-indent: 4px;
}

.total-bill.highlight {
    /*padding-top: 10px;*/
    /*padding-bottom: 10px;*/
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.card_number input {
    /*letter-spacing: 2px;*/
}


/*input {
    -webkit-transform: translate3d(0,0,0);
}*/

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=number]::inner-spin-button,
input[type=number]::outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.custom-fields.full-border-radius > div:first-child {
    border-radius: 2px;
}
