@import url('https://fonts.googleapis.com/css2?family=Lato&family=Oswald&family=Open Sans&display=swap');

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Oswald", sans-serif;
}

body {
    font-family: lato, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 100vw;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
}

#checkout-app {
    width: 100vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;

    margin: 0 auto;
    padding: 0;
}


.item-line-price {
    white-space: nowrap;
    text-align: right;
}

#checkout-app header {
    background: url(https://d12hfwo7xdmxn8.cloudfront.net/order-forms/02/img/header-bg.jpg) no-repeat center center / cover;
    padding: 25px 0;
    width: 100vw;
    min-height: 100px;
}

#checkout-app .cart {
    align-self: center;
    padding: 1rem;
    border: 2px solid #419bf9;
    border-radius: 5px;
    margin: 1.5rem;
}

#checkout-app .cart .cart-header {
    font-family: 'Oswald', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    width: 28rem;
    margin: -3.25rem auto 0 auto;
    padding: 0 0.25rem;
    background: #FFF;
    color: rgb(51, 51, 51);
}

#checkout-app .cart .item-price {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
}

#checkout-app .cart .item-price-lines {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.3rem;
}

#checkout-app .cart ul {
    padding-left: 1rem;
    list-style: none;
    margin-bottom: 0;
}

#checkout-app .cart ul i {
    color: #419bf9;
    margin-right: 0.5rem;
}


.item-price-lines strong {
    font-size: 1rem;
}

.item-price h4 {
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    font-size: 2rem;
    color: rgb(51, 51, 51);
}

.item-line-title {
    flex: 1 0 auto;
    max-width: 70%;
}

.item-line-title {
    flex: 0 0 auto;
    font-size: 1.3rem;
}

#checkout-app .contact {
    font-family: 'Oswald', sans-serif;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
}

#checkout-app .step-header {
    font-family: 'Oswald', sans-serif;
    color: white;
    background: #10253a;
    padding: 0.75rem;
}

#checkout-app .step-header h4 {
    font-weight: 600;
    margin: 0;
    font-size: 1.4rem;
}

#checkout-app .contact .fields {
    width: 100%;
    padding: 0 1.5rem;

    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

#checkout-app .contact .input-with-icon {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    border-radius: 5px;
    border: 2px solid #ddd;
    width: 100%;
}

#checkout-app .contact .input-with-icon:before {
    content: "";
    font-family: "FontAwesome";
    position: relative;
    color: #10253a;
    font-size: 2rem;
    padding: 0 0.75rem;
    background: #eee;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#checkout-app .contact .input-with-icon input {
    padding: 1rem;
    border: none;
    height: 1.5rem;
    width: calc(100% - 2rem);
    outline: none;
    font-family: Nunito, sans-serif;
}

#checkout-app .contact .input-with-icon select {
    border: none;
    height: 2rem;
    width: calc(100% - 2rem);
    outline: none;
    font-family: Nunito, sans-serif;
}

#checkout-app .contact .input-with-icon .input-state,
#checkout-app .contact .input-with-icon .input-country,
#checkout-app .contact .input-with-icon .input-state select,
#checkout-app .contact .input-with-icon .input-country select,
#checkout-app .contact .input-with-icon .input-state option,
#checkout-app .contact .input-with-icon .input-country option {
    background-color: #fff;
}



#checkout-app .contact .input-with-icon.input-name:before {
    content: "\f007";
}

#checkout-app .contact .input-with-icon.input-email:before {
    content: "\f003";
}

#checkout-app .contact .input-with-icon.input-phone:before {
    content: "\f095";
}

#checkout-app .contact .input-with-icon.input-address:before {
    content: "\f124";
}

#checkout-app .contact .input-with-icon.input-city:before,
#checkout-app .contact .input-with-icon.input-state:before,
#checkout-app .contact .input-with-icon.input-country:before {
    content: "\f0ac";
}

#checkout-app .contact .input-with-icon.input-zip:before {
    content: "\f003";
}


#checkout-app .error {
    font-family: Nunito, sans-serif;
    align-self: flex-start;
    background: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    width: 100%;
    padding: 0.125rem 0.5rem;

    display: flex;
    flex-flow: row wrap;
}

#checkout-app .billing.submit-errors .error {
    justify-content: space-around;
}

#checkout-app .error::before {
    font-family: "FontAwesome";
    content: "\f06a";
    margin-right: 0.5rem;
}

#checkout-app button.next {
    font-family: 'Oswald', sans-serif;
    align-self: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.5rem 3rem;

    background: linear-gradient(to bottom, rgba(64, 180, 230, 1) 0%, rgba(6, 98, 186, 1) 100%);
    color: #fff;

    border-radius: 5px;
    border: none;

    transition: width 0.25s;
}

#checkout-app .payment {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 1.5rem;
}

#checkout-app .payment .fields {
    display: flex;
    flex-flow: column nowrap;
    align-items: stretch;

    padding: 1rem 1.5rem;

}

#checkout-app .payment .field-row {
    display: flex;
    flex-flow: row nowrap;
    justify-content: stretch;
    gap: 1rem;

    margin-bottom: 1rem;
}

#checkout-app .payment .field-row .field-column {
    flex: 1 0 50%;
    align-self: center;

    display: flex;
    flex-flow: column nowrap;

}

#checkout-app .payment label {
    font-weight: bold;
}

#checkout-app .privacy-policy {
    display: none;
}

#checkout-app .bumper {
    width: 100%;
    line-height: 1.4;
}

#checkout-app .bumper .bumper-content {
    padding: 1.5rem;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;

}

#checkout-app .bumper .bumper-checkbox-area {
    background: #f4d66a;
    padding: 1rem;
    margin-bottom: 1.5rem;

    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

#checkout-app .bumper .bumper-checkbox-area label {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

#checkout-app .bumper .bumper-checkbox-area img {
    margin-top: 0.25rem;
}


#checkout-app .bumper .bumper-checkbox-area input {
    margin: 0 0.25rem;
    zoom: 200%;
}

#checkout-app .bumper .red-title,
#checkout-app .bumper .bumper-red-title {
    color: #ee1b0b;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: underline;
    text-align: center;
}

#checkout-app .order-summary {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;

    border: 1px solid rgb(204, 204, 204);
    border-radius: 5px;

    padding: 1rem;
}

#checkout-app .order-summary h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;

    border-bottom: 1px solid rgb(204, 204, 204);

    margin-bottom: 1.5rem;
}

#checkout-app .order-summary .cart-grid {
    display: grid;
    grid-template-columns: 2.25fr 1.125fr 1fr;
    grid-column-gap: 0px;
    margin-bottom: 1rem;
}

#checkout-app .order-summary .cart-grid *:nth-child(2),
#checkout-app .order-summary .cart-grid *:nth-child(3) {
    text-align: right;
}


.underline {
    padding-bottom: 0.125rem;
    border-bottom: 1px solid rgb(204, 204, 204);
}


.next .loading {
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

header .header-content {
    width: 540px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    position: relative;
}

header .header-arrow {
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
}

header img.logo {
    height: 22px;
    z-index: 100;
    position: relative;
}

header .header-content h1 {
    font-size: 36px;
    margin: 0;
    line-height: 1.1;
    background: rgb(0 0 0/1%);
    position: relative;
}

header .header-content h1 span {
    display: block;
    color: #419bf9;
    font-weight: 400;
    font-size: 26px;
}

.checkout-container {
    width: 812px;
    max-width: 100vw;
    margin: 90px auto;
    box-shadow: 0 19px 32px 8px rgba(0, 0, 0, .1);
    padding-top: 45px;
    padding-bottom: 45px;
    border-radius: 10px;
    background-color: #FFF;
}

.bottom-content-text {
    padding: 35px;
    font-size: 18px;
    line-height: 1.4;
}

.logos-area {
    background: #eee;
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

h1 {
    font-size: 70px;
    margin: 0;
    line-height: 1;
}

h2 {
    font-size: 50px;
    margin: 0;
    line-height: 1;
}

p {
    margin: 1em 0;
}

header {
    background: url(https://d12hfwo7xdmxn8.cloudfront.net/order-forms/02/img/header-bg.jpg) no-repeat center center / cover;
    padding: 25px 0;
}

.header-content {
    width: 540px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    position: relative;
}

.header-arrow {
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
}

.logo img {
    height: 22px;
}

.header-content h1 {
    font-size: 36px;
    margin: 0;
    line-height: 1.1;
    background: rgb(0 0 0/1%);
    position: relative;
}

.header-content h1 span {
    display: block;
    color: #419bf9;
    font-weight: 400;
    font-size: 26px;
}

.checkout-product-details {
    width: 812px;
    margin: 90px auto;
    box-shadow: 0 19px 32px 8px rgba(0, 0, 0, .1);
    padding-top: 45px;
    padding-bottom: 45px;
    border-radius: 10px;
}

.product-details-content {
    padding: 25px;
    border: 2px solid #419bf9;
    margin: 25px;
    margin-top: -23px;
    border-radius: 10px;
}

.checkout-product-details .text-center h2 {
    background: transparent;
    display: inline-block;
    padding: 0 10px;
}

.product-details-image {
    display: block;
    margin: 20px auto 0;
    max-width: 65%;
}

.product-details-title {
    font-size: 36px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #ddd;
    margin-bottom: 15px;
}

.product-details-text {
    display: flex;
    justify-content: space-between;
}

.product-details-text p {
    font-size: 27px;
    line-height: 1.2;
}

.product-details-text>p {
    font-weight: 700;
    text-align: right;
}

.product-details-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 25px;
    margin-top: 25px;
}

.product-details-text .fa {
    color: #419bf9;
    margin-right: 7px;
}

.expand-area-title {
    background: #10253a;
    color: #fff;
    padding: 15px 15px;
    margin-bottom: 25px;
}

.expand-area-title h4 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
}

.expand-inputs {
    padding: 0 25px 25px;
}

.next-step {
    background: #4199f4;
    border: none;
    color: #fff;
    font-size: 26px;
    font-family: 'Oswald', sans-serif;
    padding: 10px 45px;
    transition: all .3s;
    background: rgb(64, 180, 230);
    background: -moz-linear-gradient(top, rgba(64, 180, 230, 1) 0%, rgba(6, 98, 186, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(64, 180, 230, 1) 0%, rgba(6, 98, 186, 1) 100%);
    background: linear-gradient(to bottom, rgba(64, 180, 230, 1) 0%, rgba(6, 98, 186, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#40b4e6', endColorstr='#0662ba', GradientType=0);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-block;
}

.next-step:hover {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2);
}

.expand-area-4 .expand-inputs {
    text-align: center;
    border: 2px dashed #aaa;
    margin: 25px;
    padding-top: 25px;
}

.checkbox-area {
    font-size: 30px;
    background: #f4d66a;
    padding: 25px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
}

.checkbox-area label {
    line-height: 1.2;
    padding-left: 70px;
    position: relative;
}

.checkbox-area input[type="checkbox"] {
    display: none;
}

.checkbox-area input[type="checkbox"]+label::before {
    content: "";
    font-family: "FontAwesome";
    height: 35px;
    width: 35px;
    border: 2px solid #212121;
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 0;
    background: #fff;
    text-align: center;
    line-height: 35px;
    font-size: 26px;
}

.checkbox-area input[type="checkbox"]:checked+label::before {
    content: "\f00c";
}

.checkbox-area img {
    width: 50px;
    margin-top: 4px;
}

input:focus,
select:focus,
a:focus {
    outline: none;
}

select:focus {
    border-left: 1px solid #10253a;
}

.red-title {
    color: #ee1b0b;
    font-size: 24px;
    font-weight: 600;
    text-decoration: underline;
    text-align: center;
    line-height: 1.4;
    margin: 25px;
}

.expand-area-2 .single-input-field::before {
    content: none !important;
}

.expand-area-2 input {
    padding-left: 10px !important;
}

.expand-area-2 select {
    padding-left: 10px !important;
}

.expand-area-3 h1 {
    margin-top: 30px;
}

.expand-area-3 h3 {
    margin: 0;
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.expand-area-4 .expand-inputs {
    border: 2px solid #ddd;
    margin: 25px;
    padding-top: 15px;
    border-radius: 10px;
}

.blocked-text {
    width: fit-content;
    padding: 15px;
    border-radius: 15px;
    background: #DB1920;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: left;
}

@media only screen and (max-width: 767px) {
    .blocked-text {
        margin-left: 25px;
        margin-right: 25px;
    }

    .blocked-text .only--desktop {
        display: none;
    }
}

.checkout-confirmation {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.checkout-confirmation li {
    font-size: 28px;
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.green {
    color: #1fc546;
}

.checkout-confirmation li:last-child {
    /*border-top: 2px solid #ddd;*/
    padding-top: 15px;
    margin-top: 10px;
    border-bottom: 0;
}

.bottom-content {
    text-align: center;
    padding-bottom: 30px;
}

.bottom-content-img-holder {
    height: 100px;
    margin-bottom: 20px;
}

.bottom-content-img-holder img {
    max-height: 100px;
}

.bottom-content h2 {
    margin-bottom: 30px;
}

.expand-area-4 .next-step {
    font-size: 34px;
    font-weight: 600;
    margin-top: 25px;
    width: 300px;
    padding: 8px 10px;
    margin: auto;
    margin-top: 25px;
    display: block;
    background: rgb(31, 197, 70);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(31, 197, 70, 1) 0%, rgba(32, 126, 76, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(31, 197, 70, 1) 0%, rgba(32, 126, 76, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(31, 197, 70, 1) 0%, rgba(32, 126, 76, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1fc546', endColorstr='#207e4c', GradientType=0);
    /* IE6-9 */
}

.bottom-content-text {
    padding: 35px;
    font-size: 18px;
    line-height: 1.4;
}

.logos-area {
    background: #eee;
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.checkout-prices {
    font-weight: 600;
}

.product-details-width {
    max-width: 425px;
}

.product-price {
    white-space: nowrap
}

.product-price .OTP {
    font-size: 0.55em;
    max-width: 90px;
    white-space: wrap
}

.single-input-field {
    position: relative;
}

.single-input-field::before {
    content: "";
    font-family: "FontAwesome";
    position: absolute;
    top: 2px;
    left: 2px;
    color: #10253a;
    font-size: 26px;
    background: #eee;
    height: 46px;
    width: 50px;
    text-align: center;
    line-height: 50px;
}

.single-input-field.input-for-name::before {
    content: "\f007";
}

.single-input-field.input-for-email::before {
    content: "\f003";
}

.single-input-field.input-for-card::before {
    content: "\f09d";
}

.single-input-field.input-for-cvv::before {
    content: "\f023";
}

.single-input-field.input-for-3-card::before {
    content: "\f09d";
}

.single-input-field.input-for-month::before {
    content: "\f073";
}

.single-input-field.input-for-year::before {
    content: "\f073";
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding-left: 15px;
    outline: none;
    z-index: 1;
    padding-right: 0;
    cursor: pointer;
    background: #fff;
}

.single-input-field.input-for-shipping_name::before,
.single-input-field.input-for-shipping_street1::before,
.single-input-field.input-for-shipping_street2::before,
.single-input-field.input-for-shipping_city::before,
.single-input-field.input-for-shipping_state::before,
.single-input-field.input-for-shipping_postal_code::before,
.single-input-field.input-for-shipping_country::before {
    content: "\f015";
}

.single-input-field.input-for-shipping_phone::before {
    content: "\f095";
}

.input-for-3-card {
    border-radius: 5px;
    height: 50px;
    padding: 0 15px;
    padding-left: 20px;
    background: #eee;
    position: relative;
    line-height: 50px;
}

.input-for-3-card p {
    margin: 0;
}

.input-for-3-card::after {
    content: "";
    height: 0;
    width: 0;
    border-right: 12px solid #eee;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
}

.ifTaken .checkout-prices {
    text-align: right;
    flex: 0 0 28%;
}

.section-footer {
    margin-top: 3rem;
}

#isSubscribed {
    margin: 0 .25rem;
    zoom: 200%;
}

#subscriber-area {
    display: flex;
    background: none;
    justify-content: flex-start;
    padding: 0px;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

#subscriber-area label {
    margin-bottom: 0;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    font-family: Nunito, sans-serif;
    font-size: 14px;
}

#subscriber-area label::before{
    position: absolute;
    top: 7px;
    left: 2px;
    color: #10253a;
    font-size: 26px;
    background: #eee;
    height: 46px;
    width: 50px;
    text-align: center;
    line-height: 50px;
}

#subscriber-area label p {
    margin: 0px;
}

#subscriber-area a {
    color: blue;
    text-decoration: underline;
}


@media only screen and (max-width: 900px) {
    .checkout-product-details {
        width: 735px;
    }

    .checkout-container {
        margin: 0;
    }
}

/* All Mobile Sizes (devices and browser) 360*640 */
@media only screen and (max-width: 767px) {
    .product-price .OTP {
        font-size: 0.9em;
    }

    header {
        padding: 20px 0;
    }

    .header-content {
        max-width: 300px;
    }

    .header-content h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .header-content h1 span {
        display: block;
        font-size: 18px;
    }

    .logo img {
        height: 20px;
    }

    .header-arrow {
        position: absolute;
        left: -8px;
        top: 13px;
        height: 62px;
    }

    .checkout-product-details {
        width: 100%;
        margin: 0;
    }

    body {
        font-size: 16px;
        line-height: 1.4;
    }

    h2 {
        font-size: 28px;
    }

    .product-details-content {
        padding: 15px;
        margin: 25px 15px;
        margin-top: -23px;
        border-radius: 5px;
    }

    .product-details-title {
        font-size: 20px;
        margin-top: 20px;
    }

    .product-details-text p {
        font-size: 16px;
    }

    .expand-area-title h4 {
        font-size: 22px;
    }

    .next-step {
        font-size: 22px;
    }

    .expand-area-4 .expand-inputs {
        margin: 15px;
        padding-top: 25px;
        padding: 15px;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .checkbox-area {
        font-size: 18px;
        padding: 15px;
    }

    .checkbox-area img {
        width: 30px;
    }

    .checkbox-area input[type="checkbox"]+label::before {
        height: 28px;
        width: 28px;
        line-height: 28px;
        font-size: 20px;
        left: 7px;
    }

    .checkbox-area label {
        padding-left: 40px;
    }

    .red-title {
        font-size: 18px;
        margin: 15px 0;
    }

    h1 {
        font-size: 42px;
    }

    .expand-area-3 h3 {
        margin: 0;
        font-size: 25px;
        margin-bottom: 30px;
    }

    .checkout-confirmation li {
        font-size: 18px;
    }

    .expand-area-4 .expand-inputs {
        padding: 15px 15px 25px;
        margin: 15px 15px 25px;
    }

    .expand-area-4 .next-step {
        font-size: 30px;
    }

    .logos-area {
        padding: 25px 15px;
        margin-bottom: 40px;
        margin-top: 60px;
        border-radius: 0;
    }

    .logos-area img {
        height: 80px;
    }

    .bottom-content-text {
        padding: 20px 15px;
        font-size: 16px;
    }

    .bottom-content-img-holder img {
        max-height: 80px;
    }

    .bottom-content-img-holder {
        height: 80px;
        margin-bottom: 0;
    }

    .next-step {
        font-size: 22px;
        width: 200px;
        display: block;
        margin: 0 auto;
    }


    .container {
        padding: 0;
    }

    .container .row {
        /* padding: 0 15px; */
        width: 100%;
        margin: 0;
    }

    .product-details-text ul {
        margin-left: 0;
    }

    .single-input-fild::before {
        font-size: 24px;
    }

    .input-for-3-card {
        min-height: 50px;
        line-height: 1.4;
        margin-bottom: 25px;
        padding: 10px 15px;
    }

    .input-for-3-card::after {
        border-right: 12px solid transparent;
        border-top: none;
        border-bottom: 12px solid #eee;
        top: -10px;
        left: 15px;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        border-left: 12px solid transparent;
    }

    .ifTaken .checkout-prices {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
        flex: 0 0 42%;
    }

    .checkout-confirmation li:last-child {
        padding-top: 5px;
    }

    #checkout-app .cart .cart-header {
        font-size: 2rem;
        width: 18rem;
    }

    .item-price h4 {
        font-size: 1.5rem;
        margin: 1rem 0 0.5rem 0;
    }

    .item-line-title {
        font-size: 1.1rem;
    }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) 320*480  */
@media only screen and (max-width: 359px) {
    .next-step.button-one {
        max-width: 100%;
    }
}

.order-summary-header .divider {
    width: 100%;
    height: 2px;
    background-color: #ddd;
    margin-bottom: 25px;
}

.order-summary-header .total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 28px;
}

.order-summary-header span.checkout-prices {
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .order-summary-header .divider {
        margin-bottom: 15px;
    }

    .order-summary-header .total {
        font-size: 18px;
    }
}
