body {
    color: #000;
    font: 400 10px/1.2 Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

.nowrap {
    white-space: nowrap;
}

img {
    display: block;
    max-width: 100%;
}

@media (max-width: 979px) and (min-width: 768px) {
    body {
        -webkit-text-size-adjust: none;
    }
}

@media (max-width: 767px) {
    body {
        -webkit-text-size-adjust: none;
    }
}

/* btn */
.btn {
    display: block;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-family: "museo-sans-n9", "museo-sans", Helvetica, Arial, "Nimbus Sans L", sans-serif;
    -webkit-transition: all .2s ease;
       -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
         -o-transition: all .2s ease;
            transition: all .2s ease;
}

    .btn:hover {
        -webkit-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, .3);
           -moz-box-shadow: inset 1px 1px 4px rgba(0, 0, 0, .3);
                box-shadow: inset 1px 1px 4px rgba(0, 0, 0, .3);
    }

.btn--checkout {
    padding: 24px 0;
    font-size: 25px;
}

    .btn--checkout.continue-payment-btn {
        font-size: 22px;
    }

.btn--add-more {
    font-size: 17px;
    padding: 6px 0;
}

.spinner-for-order-btn {
    font: italic 700 12px/75px Arial, "Nimbus Sans L", Helvetica, sans-serif;
    text-align: center;
    display: none;
}

    .spinner-for-order-btn img {
        display: inline;
        max-height: 38px;
        vertical-align: middle;
        margin: 0 10px 0 0;
    }

@media (max-width: 979px) and (min-width: 768px) {
    .btn--checkout {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .btn--checkout {
        padding: 15px;
        font-size: 16px;
    }
}

/* Checkout page Wrapper */
.ch-page-wr {
    margin: 40px auto 0;
    max-width: 1018px;
    background: #fff;
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, .28);
       -moz-box-shadow: 0 0 16px 0 rgba(0, 0, 0, .28);
            box-shadow: 0 0 16px 0 rgba(0, 0, 0, .28);
}

@media (max-width: 979px) and (min-width: 768px) {
    .ch-page-wr {
        max-width: 750px;
    }
}

@media (max-width: 767px) {
    .ch-page-wr {
        margin: 0;
        -webkit-box-shadow: none;
           -moz-box-shadow: none;
                box-shadow: none;
    }
}

/* Checkout header */
.ch-logo {
    display: block;
    margin: 15px auto;
    width: 80%; /* 176px from 220px */
}

@media (max-width: 767px) {
    .ch-logo {
        max-width: 150px;
        width: auto;
    }
}

/* Checkout divider */
.ch-divider-wr {
    background: #fefefe;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #eae9e4));
    background:    -moz-linear-gradient(top, #fefefe 0%, #eae9e4 100%);
    background: -webkit-linear-gradient(top, #fefefe 0%, #eae9e4 100%);
    background:      -o-linear-gradient(top, #fefefe 0%, #eae9e4 100%);
    background:     -ms-linear-gradient(top, #fefefe 0%,#eae9e4 100%);
    background:         linear-gradient(to bottom, #fefefe 0%,#eae9e4 100%);
    border: 1px solid #F7F5F0;
    color: #6F6D6B;
}

.ch-divider {
    padding: 10px 0;
    text-transform: uppercase;
    font: 900 18px "museo-sans-n9", "museo-sans", Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

@media (max-width: 767px) {
    .ch-divider {
        padding: 10px 15px;
    }
}

/* Checkout form part */
.ch-form-part {
    padding-top: 30px;
}

.ch-form-part-title {
    margin-bottom: 25px;
    text-transform: uppercase;
    font: 900 18px "museo-sans-n9", "museo-sans", Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

.title-for-details {
    margin-bottom: 0;
}

.ch-form-part-line {
}

    .ch-form-part-line + .ch-form-part-line {
        margin-top: 20px;
    }

.ch-form-part-name {
    padding-top: 11px;
    text-align: right;
    font: 700 15px "museo-sans-n7", "museo-sans", Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

/* IE7 */
.lt-ie8 .ch-form-part-name {
    padding: 0;
    line-height: 21px;
}

.ch-form-part-value {
}

    .ch-form-part-value select,
    .ch-form-part-value input[type="text"],
    .ch-form-part-value input[type="email"],
    .ch-form-part-value input[type="tel"],
    .hosted-fields {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
        width: 100%;
        height: 40px;
        border: 1px solid #cacaca;
        -webkit-border-radius: 2px;
           -moz-border-radius: 2px;
                border-radius: 2px;
        -webkit-box-shadow: none;
           -moz-box-shadow: none;
            -ms-box-shadow: none;
                box-shadow: none;
        font: 400 12px/1.2 Arial, "Nimbus Sans L", Helvetica, sans-serif;
        -webkit-transition: all .2s ease;
           -moz-transition: all .2s ease;
            -ms-transition: all .2s ease;
             -o-transition: all .2s ease;
                transition: all .2s ease;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
    }

    .ch-form-part-value select {
        padding: 10px 4px 10px 10px;
        background: #f2f2f2 url(../i/ch-select.png) no-repeat 100% 50%;
        font-weight: 700;
    }

/* IE7 */
.lt-ie8 .ch-form-part-value select {
    height: 21px;
}

.ch-form-part-value input[type="text"],
.ch-form-part-value input[type="email"],
.ch-form-part-value input[type="tel"],
.hosted-fields {
    padding: 10px 13px;
    background: #fff;
}

/* IE7 */
.lt-ie8 .ch-form-part-value input[type="text"],
.lt-ie8 .ch-form-part-value input[type="email"],
.lt-ie8 .ch-form-part-value input[type="tel"] {
    padding: 2px 13px;
    width: 590px;
    height: 14px;
}

.ch-form-part-value select:focus,
.ch-form-part-value input[type="text"]:focus,
.ch-form-part-value input[type="email"]:focus,
.ch-form-part-value input[type="tel"]:focus {
    border-color: #5A5A5A;
}

.ch-form-part-value-card {
    margin-top: 5px;
    color: #706f6f;
    font-style: italic;
    font-size: 11px;
}

.ch-form-part-value-icon {
    margin-left: 10px;
    vertical-align: -6px;
}

    .ch-form-part-value-icon img {
        display: inline;
    }

.ch-form-part-value-date {
}

    .ch-form-part-value-date select {
        width: 44%;
    }

    .ch-form-part-value-date span {
        padding: 0 2px;
        vertical-align: -5px;
        font-size: 20px;
    }

.ch-form-part-value-code {
}

    .ch-form-part-value-code input[type="text"],
    .ch-form-part-value-code input[type="email"],
    .ch-form-part-value-code input[type="tel"] {
        width: 55%;
    }

/* IE7 */
.lt-ie8 .ch-form-part-value-code input[type="text"],
.lt-ie8 .ch-form-part-value-code input[type="email"],
.lt-ie8 .ch-form-part-value-code input[type="tel"] {
    width: 49px;
}

.ch-form-part-value-zip {
}

/* IE7 */
.lt-ie8 .ch-form-part-value-zip input[type="text"],
.lt-ie8 .ch-form-part-value-zip input[type="email"],
.lt-ie8 .ch-form-part-value-zip input[type="tel"] {
    width: 112px;
}

.ch-form-part-value-phone {
    display: flex;
    align-items: center;
}

    .ch-form-part-value-phone select {
        width: 70px;
        flex-shrink: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        margin-right: -1px;
    }

        .ch-form-part-value-phone select:focus {
            position: relative;
        }

    .ch-form-part-value-phone,
    .ch-form-part-value-phone input[type="tel"] {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.ch-form-part-order {
    padding-bottom: 65px;
}

.ch-form-part-payment {
}

    .ch-form-part-payment .ch-form-part-name {
        padding: 0 0 4px;
        text-align: left;
    }

@media (max-width: 767px) {
    .ch-form-part {
        margin-right: 15px;
        margin-left: 15px;
    }

    .ch-form-part-title {
        margin-bottom: 0;
    }

    .ch-form-part-title--billing {
        margin-bottom: 11px;
    }

    .ch-form-part .row-fluid [class*="span"] {
        min-height: 1px;
    }

    .ch-form-part-line + .ch-form-part-line {
        margin-top: 0;
    }

    .ch-form-part-name {
        padding: 11px 0 4px;
        text-align: left;
    }

    .ch-form-part-value-date {
    }

        .ch-form-part-value-date select {
            width: 47%;
        }

    .ch-form-part-value-code {
    }

        .ch-form-part-value-code input[type="text"],
        .ch-form-part-value-code input[type="email"],
        .ch-form-part-value-code input[type="tel"] {
            width: 80%;
        }

    .ch-form-part-order {
        margin-top: 15px;
        margin-right: 15px;
        margin-left: 15px;
        padding-bottom: 30px;
    }

    .ch-form-part-payment {
    }

        .ch-form-part-payment .ch-form-part-name {
            padding: 11px 0 4px;
        }
}

@media
    only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (   -moz-min-device-pixel-ratio: 2),
    only screen and (     -o-min-device-pixel-ratio: 2/1),
    only screen and (        min-device-pixel-ratio: 2),
    only screen and (min-resolution: 192dpi),
    only screen and (min-resolution: 2dppx) {
    .ch-form-part-value select {
        background-image: url(../i/select-1-x2.png);
        -webkit-background-size: auto 13px;
                background-size: auto 13px;
    }
}

/* Checkout form Checkbox */
.ch-form-part-checkbox {
    display: block;
    float: left;
    margin: 1px 0 0 0;
    padding: 0;
}

.ch-form-part-checkbox-dscr {
    position: relative;
    margin-left: 20px;
    font-size: 14px;
}

/* Checkout form Line */
.ch-form-line {
    margin-bottom: 15px;
    width: 61.29032258064516%; /* 380px from 620px */
    height: 1px;
    background: #EBEBEB;
}

@media (max-width: 767px) {
    .ch-form-line {
        margin-bottom: 20px;
    }
}

/* Checkout form Offer */
.ch-form-part-offer {
    margin-bottom: 15px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .ch-form-part-offer {
        margin-top: 5px;
    }
}

/* Checkout form Guarantee */
.ch-form-part-guarantee {
    margin-bottom: 25px;
    font-weight: 700;
    font-style: italic;
    font-size: 14px;
}

/* Checkout form Guarantee badge*/
.checkout-form-guarantee-badge {
    margin-top: -8px;
    max-width: 83px;
}

@media (max-width: 767px) {
    .checkout-form-guarantee-badge {
        margin: 15px auto 0;
    }
}

/* Checkout form Verified */
.checkout-form-verified {
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .checkout-form-verified {
        margin: 15px auto 0;
        max-width: 200px;
    }
}

/* Checkout footer */
.ch-footer {
    padding-bottom: 50px;
    text-align: center;
}

    .ch-footer a {
        color: #000;
    }

        .ch-footer a:hover {
            text-decoration: underline;
        }

.ch-footer-nav {
}

    .ch-footer-nav span {
        margin-left: 13px;
        padding-left: 17px;
        border-left: 1px solid #000;
    }

        .ch-footer-nav span:first-child {
            margin-left: 0;
            padding-left: 0;
            border-left: 0;
        }

    .ch-footer-nav a {
        vertical-align: -2px;
        font-size: 14px;
    }

.ch-footer-powered-wr {
    margin-top: 15px;
}

.ch-footer-powered {
    font-size: 10px;
}

    .ch-footer-powered a {
        font-weight: 700;
    }

@media (max-width: 767px) {
    .ch-footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .ch-footer-nav span {
        display: block;
        margin-top: 5px;
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

        .ch-footer-nav span:first-child {
            margin-top: 0;
        }
}

.field-validation-error {
    color: red;
    font-size: 14px;
}

.field-validation-valid {
    display: none;
}

/* Price Calculation */
.checkout-form-total-in {
}

.chekout-table-total {
    width: 100%;
    font-size: 12px;
    line-height: 1.52;
}

    .chekout-table-total tr td {
        text-align: right;
        border: 1px solid #D3D3D3;
        padding: 5px;
        font-size: 14px;
    }

        .chekout-table-total tr td span {
            float: right;
        }

            .chekout-table-total tr td span:first-child {
                float: left;
            }

    .chekout-table-total tr.tax td span:first-child {
        padding-top: 12px;
    }

    .chekout-table-total tr td input {
        width: 70px;
    }

    .chekout-table-total .input-label {
        font-size: 10px;
        font-style: italic;
        float: left;
        width: 80px;
        margin-right: 10px;
    }

    .chekout-table-total .zip-input {
        padding: 7px 0;
    }

    .chekout-table-total tr td input {
        float: right;
        min-height: 23px;
    }

    .chekout-table-total tr td:first-child {
        text-align: right;
        padding-right: 25px;
    }

    .chekout-table-total tr td:last-child {
        min-width: 100px;
        vertical-align: middle;
    }

    .chekout-table-total .subtotal {
    }

    .chekout-table-total .tax td {
    }

    .chekout-table-total .total {
        font-weight: 700;
    }

    .chekout-table-total .firstPayment {
        font-weight: 700;
    }

    .chekout-table-total .promo {
        color: #3bc307;
    }

@media (max-width: 475px) {
    .chekout-table-total tr td span {
        width: 100%;
    }

    .chekout-table-total tr.tax td span:first-child {
        float: right;
    }

    .chekout-table-total .input-label {
        font-size: 10px;
        font-style: italic;
        float: none;
        width: auto;
        margin-right: 0;
        text-align: center;
    }

    .chekout-table-total tr td input {
        float: none;
        width: 100%;
        margin-top: 5px;
    }
}

/* SELECT CANDLE AND QUANTITY */
.checkout-form-section h3 {
    padding: 5px 8px;
    background: #ce3e93;
    color: #fff;
    text-transform: uppercase;
    font: 700 14px "museo-sans-n7", "museo-sans", Arial, "Nimbus Sans L", Helvetica, sans-serif;
}

    .checkout-form-section h3 span {
        text-transform: uppercase;
        font-size: 22px;
    }

    .checkout-form-section h3 i {
        font-weight: 100;
        font-family: "museo-sans-n1", "museo-sans", Arial, "Nimbus Sans L", Helvetica, sans-serif;
        font-style: normal;
    }

.choice-prod {
    float: left;
    margin: 10px 0 10px 0;
    width: 97px;
}

    .choice-prod .checkout-form-field {
        margin: 0 10px;
    }

    .choice-prod:first-child {
        margin-left: 0;
    }

    .choice-prod p {
        text-align: center;
        text-transform: uppercase;
        font: 700 15px Helvetica, Arial, "Nimbus Sans L", Helvetica, sans-serif;
    }

        .choice-prod p span {
            display: block;
            padding-bottom: 5px;
            color: #ce3e93;
            text-transform: none;
        }

@media (max-width: 979px) and (min-width: 768px) {
    .choice-prod {
        width: 119px;
    }

        .choice-prod p {
            font-size: 14px;
        }
}

@media (max-width: 767px) {
    .choice-prod {
        clear: both;
        margin-left: 0;
        width: 100%;
    }
}

.ch-form-coupon {
    font-style: italic;
    font-size: 12px;
    line-height: 1.5;
}

.ch-form-coupon-name {
    margin-bottom: 1%; /* 3px from 300px */
    text-transform: uppercase;
}

.ch-form-coupon-text {
    margin-top: 5%; /* 15px from 300px */
}

.ch-form-coupon-yes,
.ch-form-giftcard-yes {
    color: #51A74D;
}

.ch-form-coupon-no,
.ch-form-giftcard-no {
    color: #BB0030;
}

.btn-apply {
    float: right;
    font-size: 14px;
    padding: 1px 0;
    text-align: center;
    text-transform: uppercase;
    width: 30%;
    background: linear-gradient(to bottom, rgba(244, 152, 43, 1) 0%, rgba(255, 135, 0, 1) 50%, rgba(244, 152, 43, 1) 50%, rgba(255, 135, 0, 1) 100%);
    color: #FFFFFF;
    display: inline;
}

.checkout-form-field-qty-name {
    font-size: 1.5em;
}

.checkout-form-field {
}

.ch-section-form input[type="text"],
.ch-section-form input[type="email"],
.ch-section-form input[type="tel"],
.ch-section-form select {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 36px;
    border: 1px solid #d3d3d3;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: none;
        -ms-box-shadow: none;
            box-shadow: none;
    background-color: #fff;
    color: #000;
    font: 400 14px/18px Arial, "Nimbus Sans L", Helvetica, sans-serif;
    -webkit-transition: all .2s ease;
       -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
         -o-transition: all .2s ease;
            transition: all .2s ease;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.ch-section-form input[type="text"],
.ch-section-form input[type="email"],
.ch-section-form input[type="tel"] {
    padding: 8px 18px;
}

/* IE7 */
.lt-ie8 .ch-section-form input[type="text"],
.lt-ie8 .ch-section-form input[type="email"],
.lt-ie8 .ch-section-form input[type="tel"] {
    padding: 1px 2px;
    width: 294px;
    height: 17px;
    line-height: 17px;
}

.checkout-form-field--coupon {
    float: left;
    width: 45%; /* 135px from 300px */
}

/* IE7 */
.lt-ie8 .checkout-form-field--coupon input[type="text"],
.lt-ie8 .checkout-form-field--coupon input[type="email"],
.lt-ie8 .checkout-form-field--coupon input[type="tel"] {
    width: 117px;
}

.checkout-form-field--qty {
    width: 50%; /* 110px from 220px; */
}

.ch-form-part-title {
    color: black !important;
}


@media (max-width: 979px) and (min-width: 768px) {
    .payment-method img {
        float: none;
    }

    .payment-method .payment-method-link {
        display: block;
        margin-top: 10px;
        margin-left: 20%;
    }
}

.additional-checkbox-wr {
    margin-bottom: 20px;
}

.ch-verified {
}

@media (max-width: 767px) {
    .ch-verified {
        margin-top: 10px;
    }
}

/*-------------------------checkout disabled page (based on Wayne)-----------------------------*/

.checkout-disabled-logo a {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

    .checkout-disabled-logo a img {
        margin: 0 auto;
    }

.checkout-disabled-message {
    margin: 20px auto;
}

    .checkout-disabled-message p {
        width: 100%;
        text-align: center;
        font-size: 2em;
        font-family: "museo-sans-n7", "museo-sans", Helvetica, Arial, "Nimbus Sans L", sans-serif;
    }

.checkout-disabled-link {
    margin: 20px auto;
    text-align: center;
}

    .checkout-disabled-link a {
        color: #222;
        font-size: 1.5em;
        font-family: "museo-sans-n7", "museo-sans", Helvetica, Arial, "Nimbus Sans L", sans-serif;
    }

        .checkout-disabled-link a:hover {
            text-decoration: underline;
        }

/*InsureShip checkbox*/

.checkout-insureship {
    margin: 15px auto 20px;
}

.insureship-logo-wr img {
    max-width: 50%;
    display: inline;
}

.insureship-description {
    font-size: 12px;
    margin-top: 10px;
}

.insureship-cbx-wr {
    margin-top: 10px;
}

.checkout-insureship input[type=checkbox] {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

    .checkout-insureship input[type=checkbox] + label.insureship-label {
        padding-left: 22px;
        height: 20px;
        display: inline-block;
        line-height: 20px;
        background-repeat: no-repeat;
        background-position: 0 0;
        font-size: 15px;
        vertical-align: middle;
        cursor: pointer;
    }

.insureship-checkbox-sprite {
    background-image: url(../i/insureship-checkbox-sprite.png);
}

.checkout-insureship input[type=checkbox]:checked + label.insureship-label {
    background-position: 0 -20px;
}

.checkout-insureship label.insureship-label {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.checkout-insureship label {
    position: relative;
    margin-left: 10px;
    color: #000;
}

#billingBlockWrapper[hidden] + .ch-form-part-order {
    margin-top: 10px;
}

.ch-divider h1 {
    font-weight: unset;
}

.hosted-field-label {
    padding: 11px 0 4px 0;
    font: 700 15px "museo-sans-n7", "museo-sans", Helvetica, Arial, "Nimbus Sans L", sans-serif;
}

.gift-card {
    display: flex;
}
.gift-card-field {
    width: 80%;
}
.gift-card-btn {
    cursor: pointer;
    padding: 10px 0;
    margin-left: 20px;
}
.gift-card-section .ch-form-part-name {
    text-align: left;
    margin-bottom: 10px;
}
@media(max-width: 767px) {
    .gift-card-section .ch-form-part-line {
        margin-top: 20px;
    }
}

.gift-card-section {
    margin-bottom: 30px;
}

    .gift-card-section + .ch-form-part.ch-cc-form-part {
        padding-top: 0;
    }

.easyPostOption {
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}
    .easyPostOption input {
        margin-top: -3px;
    }

.easy-post-message {
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.easy-post-loader {
    width: 25px;
    margin-right: 5px;
}

.delivery {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    align-items: stretch;
}

@media all and (min-width: 768px) {
    .delivery.m-active {
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

@media all and (min-width: 768px) {
    .delivery {
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.delivery-manual {
    margin-top: 20px;
}

.delivery-type {
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
    padding: 15px 10px;
    border-radius: 4px;
    border: 1px solid #959595;
    box-sizing: border-box;
}

    .delivery-type:after,
    .delivery-type:before {
        content: '';
        display: table;
    }

    .delivery-type:after {
        clear: both;
    }

    .delivery-type:hover {
        border-color: #81b141;
    }

@media all and (min-width: 768px) {
    .delivery-type {
        width: 50%;
        margin-left: 10px;
        margin-right: 10px;
    }
}

.delivery-type:first-child {
    margin-top: 0;
    margin-left: 0;
}

.delivery-type:last-child {
    margin-right: 0;
}

.delivery-type.is-choosen {
    background: #f0fae2;
    border-color: #81b141;
}

    .delivery-type.is-choosen .delivery-type__btn {
        background-image: url(./i/check.png);
    }

.delivery-type.is-ready {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.delivery-type.not-choosen {
    height: auto;
}

    .delivery-type.not-choosen .delivery-type__name {
        color: #ddd;
    }

    .delivery-type.not-choosen .delivery-type__link,
    .delivery-type.not-choosen .delivery-type__text {
        display: none;
    }

    .delivery-type.not-choosen .delivery-type__btn {
        top: 10px;
        font-size: 0;
    }

    .delivery-type.not-choosen .delivery-type__info {
        min-height: auto;
    }

@media (min-width: 768px) {
    .delivery-type.not-choosen .delivery-type__info {
        max-width: 220px;
    }
}

.delivery-type.not-choosen .delivery-type__name {
    font-size: 15px;
}

@media all and (min-width: 768px) {
    .delivery-type {
        margin-top: 0;
    }
}

.delivery-type__img {
    float: left;
    width: 41px;
    height: 41px;
    margin-right: 12px;
}

    .delivery-type__img img {
        width: 100%;
    }

.delivery-type__info {
    float: left;
    width: calc(100% - 50px);
    max-width: 220px;
    min-height: 45px;
}

@media all and (min-width: 768px) {
    .delivery-type__info {
        max-width: 200px;
    }
}

.delivery-type__name {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #555;
}

.delivery-type__text {
    margin-top: 15px;
    font-size: 16px;
}

.delivery-type__btn {
    float: right;
    width: 50px;
    padding: 40px 0 0 0;
    border: 0;
    outline: 0;
    background: url('../i/plus-circle.png') center top 0 no-repeat;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #555;
}

    .delivery-type__btn span {
        display: inline-block;
        padding-top: 10px;
    }

        .delivery-type__btn span:first-child {
            padding-top: 0;
        }

.delivery-type__link {
    display: inline-block;
    margin-top: 17px;
    font-size: 15px;
    font-weight: bold;
}

.delivery-type__date {
    padding: 15px 7px !important;
    border-radius: 10px;
    background: #d8d8d8;
    text-transform: none;
}

.not-choosen .delivery-type__date {
    padding: 0 !important;
}

.delivery-postcode {
    border-top: 1px solid #959595;
}

    .delivery-postcode.m-home {
        border-top-width: 1px;
        margin-top: 15px;
    }

@media all and (min-width: 768px) {
    .delivery-postcode.m-home {
        margin-top: 0px;
        border-top-width: 0;
    }
}

.delivery-postcode.m-home .delivery-block__title {
    font-size: 18px;
}

.delivery-postcode.m-home .check-field label {
    margin-bottom: 0;
}

.delivery-postcode__error {
    font-size: 16px;
    color: #e10000;
    text-align: justify;
}

.delivery-postcode__btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: auto;
}

@media all and (min-width: 768px) {
    .delivery-postcode__btn {
        margin: 0;
    }
}

.delivery-postcode .delivery-block__title {
    font-size: 18px;
}

.delivery-block {
    margin-top: 15px;
    padding-top: 20px;
    margin-bottom: 10px;
}

    .delivery-block.m-large-title .delivery-block__title {
        font-size: 18px;
    }

    .delivery-block.m-without-border {
        margin-top: 0;
    }

    .delivery-block.m-border {
        border-top: 1px solid #959595;
    }

    .delivery-block.m-mobile-border {
        border-top: 1px solid #959595;
    }

@media all and (min-width: 768px) {
    .delivery-block.m-mobile-border {
        border-top: 0;
    }
}

.delivery-block__info {
    padding-bottom: 10px;
}

.delivery-block__title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.delivery-block__text {
    font-size: 14px;
    text-align: justify;
}

.delivery-block label {
    font-size: 14px;
}

.delivery-box__text {
    text-align: justify;
}

.delivery-location {
    position: relative;
    margin-top: 20px;
    padding: 15px 12px 10px;
    border-radius: 4px;
    border: 1px solid #8a8a8a;
}

    .delivery-location:first-child {
        margin-top: 0;
    }

    .delivery-location.is-choosen .delivery-location__btn {
        background: #81b141;
    }

.delivery-location__img {
    float: left;
    width: 41px;
    height: 41px;
    margin-right: 12px;
}

    .delivery-location__img img {
        width: 100%;
    }

.delivery-location__type {
    position: absolute;
    top: 15px;
    right: 12px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}

.delivery-location__title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.delivery-location__text {
    margin-top: 10px;
    font-size: 14px;
}

.delivery-location__info {
    float: left;
    width: calc(100% - 55px);
    padding-right: 50px;
}

@media all and (min-width: 768px) {
    .delivery-location__info {
        width: calc(100% - 165px);
    }
}

.delivery-location__btn {
    position: static;
    width: 100%;
    text-transform: none;
    margin-top: 15px;
}

@media all and (min-width: 768px) {
    .delivery-location__btn {
        position: absolute;
        right: 12px;
        bottom: 10px;
        width: 155px;
    }
}

.delivery-location__links {
    margin-top: 20px;
    margin-right: -50px;
}

.delivery-location__link {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
    color: #20b8f1;
    font-size: 16px;
    text-decoration: underline #d6eefc;
}

    .delivery-location__link:first-child {
        margin-left: 0;
    }

        .delivery-location__link:first-child::before {
            content: none;
        }

    .delivery-location__link::before {
        display: inline-block;
        content: '';
        height: 15px;
        border-left: 1px solid #959595;
        border-right: 1px solid #cecece;
        margin-right: 10px;
    }

.delivery-location__more {
    margin-top: 18px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
}

.delivery-post .nav.nav-tabs {
    margin-bottom: 14px;
    border-bottom-color: #959595;
}

    .delivery-post .nav.nav-tabs li a {
        width: 104px;
        padding: 12px 15px 10px 47px;
        background-color: #ebebeb;
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        text-decoration: none;
        box-sizing: border-box;
        border-color: #959595;
        color: #555;
    }

    .delivery-post .nav.nav-tabs li.active a {
        background: #fff;
    }

    .delivery-post .nav.nav-tabs li.mod-list a {
        background-image: url('./i/delivery-location.png');
        background-position: left 12px center;
        background-repeat: no-repeat;
        background-size: 25px 16px;
    }

    .delivery-post .nav.nav-tabs li.mod-map a {
        padding-left: 44px;
        background-image: url('./i/delivery-map.png');
        background-position: left 12px center;
        background-repeat: no-repeat;
        background-size: 22px 18px;
    }

.delivery-connect {
    border-top: 1px solid #959595;
}

.delivery-connect__btn {
    margin-top: 30px;
    text-decoration: underline;
    -webkit-text-decoration-color: #ddd;
    text-decoration-color: #ddd;
    font-size: 14px;
    text-transform: none;
    color: #555;
    font-weight: normal;
}

@media all and (min-width: 768px) {
    .delivery-connect__btn {
        font-size: 16px;
    }
}

.delivery-connect__btn:hover,
.delivery-connect__btn:focus {
    color: #555;
    text-decoration: underline;
    -webkit-text-decoration-color: #ddd;
    text-decoration-color: #ddd;
}

.delivery-sms {
    border-top: 1px solid #959595;
}

    .delivery-sms .check-field {
        margin-bottom: 0;
    }

        .delivery-sms .check-field span {
            font-weight: bold;
            font-size: 16px;
        }

    .delivery-sms .delivery-block__text {
        margin-top: 0;
    }

.delivery-picking {
    border-top: 1px solid #959595;
}

    .delivery-picking .delivery-block__title {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .delivery-picking .form-group {
        margin-bottom: 15px;
    }

    .delivery-picking .check-field {
        padding-top: 20px;
        border-top: 2px solid #959595;
    }

@media all and (min-width: 768px) {
    .delivery-picking .check-field {
        padding-top: 15px;
        border-top: 0;
    }
}

.delivery-validate .success-msg {
    margin-bottom: 18px;
}

.delivery-shipping__info {
    max-width: 250px;
}

    .delivery-shipping__info + .delivery-shipping__info {
        margin-top: 30px;
    }

.delivery-shipping__text.m-contact {
    margin-top: 20px;
}

.delivery-shipping__link {
    display: inline-block;
    margin-top: 5px;
    font-weight: bold;
    font-size: 15px;
}

.delivery-shipping__title {
    margin-bottom: 5px;
    font-weight: bold;
}

.delivery-date-wr .delivery-type__text {
    margin-top: 15px;
    font-size: 14px;
}

.delivery-date-wr .next-day-only .delivery-type__text {
    margin-top: 21px;
    font-size: 16px;
}

.next-day-only .delivery-type__text ul {
    margin: 5px 0 0 10px;
    font-size: 13px;
}

    .next-day-only .delivery-type__text ul li:before {
        content: "\2714\0020";
    }

.datepicker-days {
    margin-bottom: 5px;
    padding: 0 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.delivery-date {
    clear: both;
    margin-top: 20px;
    padding-top: 15px;
}

.not-choosen .delivery-date {
    display: none;
}

.delivery-date__result {
    text-align: center;
    font-size: 18px;
    color: #81b141;
}

.delivery-date .datepicker {
    position: relative;
}

    .delivery-date .datepicker table {
        position: relative;
        width: 100%;
        background: linear-gradient(to bottom, transparent, transparent 10px, #fff 10px, #fff 65px, transparent 0);
        border-spacing: 2px 5px;
        border-collapse: separate;
    }

    .delivery-date .datepicker thead tr:nth-child(2) {
        border-bottom: 1px solid #ddd;
    }

        .delivery-date .datepicker thead tr:nth-child(2) th {
            height: 55px;
        }

            .delivery-date .datepicker thead tr:nth-child(2) th.prev,
            .delivery-date .datepicker thead tr:nth-child(2) th.next {
                font-size: 0;
            }

                .delivery-date .datepicker thead tr:nth-child(2) th.prev:before,
                .delivery-date .datepicker thead tr:nth-child(2) th.next:before {
                    cursor: pointer;
                    position: absolute;
                    top: 44px;
                    font-size: 14px;
                }

                .delivery-date .datepicker thead tr:nth-child(2) th.prev:before {
                    content: '< Prev dates';
                    left: 12px;
                }

                .delivery-date .datepicker thead tr:nth-child(2) th.next:before {
                    content: 'Next dates >';
                    right: 12px;
                }

            .delivery-date .datepicker thead tr:nth-child(2) th.datepicker-switch {
                padding-top: 8px;
                vertical-align: top;
                text-align: center;
                font-size: 18px;
                font-weight: bold;
            }

    .delivery-date .datepicker thead tr:nth-child(3) th {
        padding: 2px 5px;
        background: #555555;
        border: 1px solid #ddd;
        color: #fff;
        text-align: center;
    }

    .delivery-date .datepicker tbody td {
        cursor: pointer;
        position: relative;
        z-index: 9;
        overflow: hidden;
        border: 1px solid #ddd;
        color: #c0c0c0;
        text-align: center;
        background: #fff;
    }

        .delivery-date .datepicker tbody td.disabled {
            background: #e1e1e1;
        }

        .delivery-date .datepicker tbody td.today {
            background: #fff799;
        }

        .delivery-date .datepicker tbody td.active {
            font-weight: bold;
            background: #81b141;
            color: #fff;
        }

.datapicker-legend__item {
    display: inline-block;
    margin-bottom: 15px;
    margin-left: 5px;
    font-size: 12px;
}

    .datapicker-legend__item:first-child {
        margin-left: 3px;
    }

    .datapicker-legend__item .legend {
        display: inline-block;
        width: 8px;
        height: 8px;
        border: 1px solid #555;
    }

        .datapicker-legend__item .legend.current {
            background: #fff799;
        }

        .datapicker-legend__item .legend.unvailable {
            background: #e1e1e1;
        }

        .datapicker-legend__item .legend.available {
            background: #ffffff;
        }

        .datapicker-legend__item .legend.selected {
            background: #81b141;
        }

.delivery-time {
    margin-top: 18px;
}

.delivery-time__text {
    text-align: center;
}

.delivery-time__clock {
    display: inline-block;
    margin-right: 7px;
    vertical-align: middle;
}

.delivery-time__periods {
    margin-top: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.delivery-stack {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 5%;
}

@media all and (min-width: 768px) {
    .delivery-stack {
        width: 47.5%;
    }

        .delivery-stack:nth-child(odd) {
            margin-right: 5%;
        }

        .delivery-stack:nth-last-child(-n+2) {
            margin-bottom: 0;
        }
}

.delivery-stack > .delivery-type {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

    .delivery-stack > .delivery-type + .delivery-type {
        margin-top: 10px;
    }

.location-hours {
    padding-right: 150px;
}

.location-hours__title {
    font-size: 18px;
    font-weight: bold;
}

.location-hours__list {
    margin-top: 10px;
    list-style: none;
}

.location-hours__img {
    position: absolute;
    top: calc(50% - 5px);
    right: 36px;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 108px;
    height: 108px;
    border-radius: 6px;
}
.delivery-type-discount {
    color: red;
}

#amazonAddressSection + #easyPostWrapper,
#signUpBlock + #easyPostWrapper {
    margin-top: 20px;
}

#signUpBlock .ch-form-part-line {
    margin-top: 20px;
}
#signUpBlock {
    margin-bottom: 30px;
}

#signUpBlock + .ch-form-part {
    padding-top: 0;
}
