﻿/* ------- */
/* GENERAL */
/* --------*/

.cart .product-picture.error img {
    border: 2px solid #ee2e56;
}


/* ------- */
/* PRODUCTS */
/* --------*/
.html-product-details-page .product-details-page .overview .add-to-cart {
    margin: 0 0 10px 0px;
}

.html-product-details-page .product-details-page .overview .product-name {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.html-product-details-page .product-details-page .overview .remarks {
    margin: 0 0 40px 0px;
}

    .html-product-details-page .product-details-page .overview .remarks ul {
        /*max-width: 310px;*/
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
        color: #5e5e5e;
        padding-left: 10px;
    }

        /*.html-product-details-page .product-details-page .overview .remarks ul .remark-title {
            padding-top: 20px;
            text-align: left;
        }

            .html-product-details-page .product-details-page .overview .remarks ul .remark-title img {
                width: 20px;
                margin-right: 5px;
            }

            .html-product-details-page .product-details-page .overview .remarks ul .remark-title span {
                font-size: 14px;
                font-weight: 700;
                position: relative;
                top: -4px;
            }*/

        .html-product-details-page .product-details-page .overview .remarks ul .remark-info {
            padding-top: 5px;
            padding-left: 30px;
            text-align: left;
        }

            .html-product-details-page .product-details-page .overview .remarks ul .remark-info i {
                padding-right: 3px;
                color: #DC9300;
            }

/*.html-product-details-page .product-details-page .overview .remarks ul .remark-info img {
                width: 20px;
                margin-right: 5px;
            }*/


/* ------------------- */
/* SHOPPING CART       */
/* ------------------- */
.html-shopping-cart-page .no-close .ui-dialog-titlebar-close {
    display: none;
}

.html-shopping-cart-page .ui-dialog {
    padding: 30px 20px !important;
}

.ui-dialog .ui-dialog-content {
    font-size: 14px;
    padding: 0px 0px 0px 0px;
}

.ui-dialog .ui-dialog-buttonset .ui-button {
    background-color: #d39c00;
    padding: 10px 10px 10px 10px;
    margin: 10px 10px 0px 10px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

    .ui-dialog .ui-dialog-buttonset .ui-button:hover {
        background-color: #dda403;
    }

.html-shopping-cart-page .min-amount-warning {
    font-size: 15px;
    font-weight: 600;
    color: #d9264c;
}


/* ------------------- */
/* MULTI PAGE CHECKOUT */
/* ------------------- */
/* CUSTOM RADIO BUTTON */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_checkbox */
/* Customize the radio button label (the container) */
.page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container {
    display: inline-block;
    position: relative;
    padding-right: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.page.checkout-page.payment-method-page .section.payment-method .method-list li .payment-method-aditional-info{
    font-size: 11px;
    color: #5e5e5e;
}

/* Hide the browser's default radio button */
.page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

    /* Create a custom radio button */
    .page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 17px;
        width: 17px;
        background-color: #ddd;
        border-radius: 50%;
    }

        /* Style the indicator (dot/circle) */
        .page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container .checkmark:after {
            top: 4px;
            left: 4px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #f9f9f9;
        }

        /* Create the indicator (the dot/circle - hidden when not checked) */
        .page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            display: block;
            outline: 2Px solid #ddd; /* #D39C00 */
            outline-offset: 7px;
        }

    /* On mouse-over, add a grey background color */
    .page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container:hover input ~ .checkmark {
        background-color: #ccc;
    }

        .page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container:hover input ~ .checkmark:after {
            display: block;
            outline: 2Px solid #bbbbbb; /* #D39C00 */
            outline-offset: 7px;
        }

    /* When the radio button is checked, add a gold background */
    .page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container input:checked ~ .checkmark {
        background-color: #D39C00;
    }

        /* Show the indicator (dot/circle) when checked and add blue outline */
        .page.checkout-page.payment-method-page .section.payment-method .method-list li .radio-button-container input:checked ~ .checkmark:after {
            display: block;
            outline: 2Px solid #2989d8; /* #D39C00 */
            outline-offset: 7px;
        }

.page.checkout-page.payment-method-page .section.payment-method .method-list li .method-name .payment-details {
    /*display: inline-block;*/
    /* margin: 0 5px; */
    /* vertical-align: middle; */
    vertical-align: top;
    margin: 15px 5px 0;
}

    .page.checkout-page.payment-method-page .section.payment-method .method-list li .method-name .payment-details label {
        font-weight: bold;
        font-size: 15px;
    }

        .page.checkout-page.payment-method-page .section.payment-method .method-list li .method-name .payment-details label.payment-description {
            display: block;
            font-weight: normal;
            text-transform: unset;
            margin: 15px 0px 5px 0px;
        }

    .page.checkout-page.payment-method-page .section.payment-method .method-list li .method-name .payment-details img {
        margin-top: 15px;
        max-width: 300px;
    }
/* END CUSTOM RADIO BUTTON */


/* ----------------- */
/* ONE PAGE CHECKOUT */
/* ----------------- */

/* BILLING ADDRESS */
.opc .section.select-billing-address label {
    font-weight: bold;
}

.opc .section.select-billing-address .address-select .option-last {
    color: #2989d8;
    font-weight: bolder;
}

.opc .checkout-page .section.ship-to-same-address {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

/* SHIPPING ADDRESS */
.opc .section.select-shipping-address label {
    font-weight: bold;
}

.opc .section.select-shipping-address .address-select .option-last {
    color: #2989d8;
    font-weight: bolder;
}


/* PAYMENT METHOD */
.opc #opc-payment_method #checkout-payment-method-load {
    margin-bottom: 20px;
}

/* CUSTOM CHECKBOX */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_checkbox */

.page.checkout-page.opc-order-progress .page-body.checkout-data .opc .section.order-summary {
    margin: 40px 0 60px 0;
}

.page.checkout-page.opc-order-progress .opc .buttons {
    /*padding: 25px 0 15px 0;*/
}

.page.checkout-page.opc-order-progress .opc .section > label {
    font-size: 14px;
}

.page.checkout-page.opc-order-progress .opc .select-wrap select {
    font-size: 13px;
}

.page.checkout-page.opc-order-progress .opc .select-wrap .select-box {
    font-size: 14px;
}

.page.checkout-page.opc-order-progress .opc .buttons .invoice-label {
    margin-right: 3px;
    font-size: 14px;
}

    .page.checkout-page.opc-order-progress .opc .buttons .invoice-label.pointer {
        cursor: pointer;
        font-weight: bolder;
    }

    .page.checkout-page.opc-order-progress .opc .buttons .invoice-label.strong {
        font-weight: bolder;
    }

.page.checkout-page.opc-order-progress .opc .buttons .invoice-icon {
    position: relative;
    top: 1px;
}

    .page.checkout-page.opc-order-progress .opc .buttons .invoice-icon.pointer {
        cursor: pointer;
    }

    .page.checkout-page.opc-order-progress .opc .buttons .invoice-icon.plus {
        color: #2989D8;
    }

    .page.checkout-page.opc-order-progress .opc .buttons .invoice-icon.minus {
        /*color: #EE2E56;*/
        color: #2989D8;
    }

.opc .section.ship-to-same-address label,
.opc .section.pickup-in-store label {
    display: unset;
}

.opc .section.ship-to-same-address .checkbox-button-container,
.opc .section.pickup-in-store .checkbox-button-container,
.opc .enter-address .checkbox-button-container {
    display: inline-block;
    position: relative;
    /* padding-left: 35px; */
    /* margin-bottom: 12px; */
    margin-right: 5px;
    top: 7px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .opc .section.ship-to-same-address .checkbox-button-container input,
    .opc .section.pickup-in-store .checkbox-button-container input,
    .opc .enter-address .checkbox-button-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.opc .enter-address .checkbox-label {
    position: relative;
    display: unset;
    left: 5px;
    bottom: 9px;
}

.opc .enter-address .inputs input:disabled {
    background-color: #eee;
    color: #ccc;
}


/* Create a custom checkbox */
.opc .section.ship-to-same-address .checkmark,
.opc .section.pickup-in-store .checkmark,
.opc .enter-address .checkmark {
    display: block;
    position: relative;
    /* top: 0; */
    /* left: 0; */
    height: 21px;
    width: 21px;
    background-color: #ddd;
    border: 2px solid #bbb;
    cursor: pointer;
}

/* On mouse-over, add a grey background color */
.opc .section.ship-to-same-address .checkbox-button-container:hover input ~ .checkmark,
.opc .section.pickup-in-store .checkbox-button-container:hover input ~ .checkmark,
.opc .enter-address .checkbox-button-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.opc .section.ship-to-same-address .checkbox-button-container input:checked ~ .checkmark,
.opc .section.pickup-in-store .checkbox-button-container input:checked ~ .checkmark,
.opc .enter-address .checkbox-button-container input:checked ~ .checkmark {
    background-color: #2989d8;
    border: 0px solid #bbb;
}

/* Create the checkmark/indicator (hidden when not checked) */
.opc .section.ship-to-same-address .checkmark:after,
.opc .section.pickup-in-store .checkmark:after,
.opc .enter-address .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.opc .section.ship-to-same-address .checkbox-button-container input:checked ~ .checkmark:after,
.opc .section.pickup-in-store .checkbox-button-container input:checked ~ .checkmark:after,
.opc .enter-address .checkbox-button-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.opc .section.ship-to-same-address .checkbox-button-container .checkmark:after,
.opc .section.pickup-in-store .checkbox-button-container .checkmark:after,
.opc .enter-address .checkbox-button-container .checkmark:after {
    left: 7px;
    top: 1px;
    width: 7px;
    height: 14px;
    border: solid #f9f9f9;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*.page.checkout-page.opc-order-progress .opc .pickup-in-store .checkbox-button-container::after {
    position: absolute;
    padding-left: 8px;
    margin-top: 1px;
    color: #555;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f54b";
    font-size: 1.25em;
}*/
/* END CUSOM CHECKBOX */


/* CUSTOM RADIO BUTTON */
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_checkbox */

/* Customize the radio button label (the container) */
.opc .section.payment-method .method-list li .radio-button-container {
    display: inline-block;
    position: relative;
    padding-right: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .opc .section.payment-method .method-list li .radio-button-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Create a custom radio button */
    .opc .section.payment-method .method-list li .radio-button-container .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 17px;
        width: 17px;
        background-color: #ddd;
        border-radius: 50%;
    }

        /* Style the indicator (dot/circle) */
        .opc .section.payment-method .method-list li .radio-button-container .checkmark:after {
            top: 4px;
            left: 4px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #f9f9f9;
        }

        /* Create the indicator (the dot/circle - hidden when not checked) */
        .opc .section.payment-method .method-list li .radio-button-container .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            display: block;
            outline: 2Px solid #ddd; /* #D39C00 */
            outline-offset: 7px;
        }

    /* On mouse-over, add a grey background color */
    .opc .section.payment-method .method-list li .radio-button-container:hover input ~ .checkmark {
        background-color: #ccc;
    }

        .opc .section.payment-method .method-list li .radio-button-container:hover input ~ .checkmark:after {
            display: block;
            outline: 2Px solid #bbbbbb; /* #D39C00 */
            outline-offset: 7px;
        }

    /* When the radio button is checked, add a gold background */
    .opc .section.payment-method .method-list li .radio-button-container input:checked ~ .checkmark {
        background-color: #D39C00;
    }

        /* Show the indicator (dot/circle) when checked and add blue outline */
        .opc .section.payment-method .method-list li .radio-button-container input:checked ~ .checkmark:after {
            display: block;
            outline: 2Px solid #2989d8; /* #D39C00 */
            outline-offset: 7px;
        }
/* END CUSTOM RADIO BUTTON */

/* ORDER PROGRESS */
.page.checkout-page.opc-order-progress .opc .step-title.cart-step span.icon {
    background-position: center -8px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.cart-step span.icon {
    background-position: center -368px;
}


.page.checkout-page.opc-order-progress .opc .step-title.address-step span.icon {
    background-position: center -67px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.address-step span.icon {
    background-position: center -427px;
}


.page.checkout-page.opc-order-progress .opc .step-title.shipping-step span.icon {
    background-position: center -127px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.shipping-step span.icon {
    background-position: center -487px;
}


.page.checkout-page.opc-order-progress .opc .step-title.pickup-step span.icon {
    background-position: center -728px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.pickup-step span.icon {
    background-position: center -791px;
}


.page.checkout-page.opc-order-progress .opc .step-title.shipping-method-step span.icon {
    background-position: center -850px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.shipping-method-step span.icon {
    background-position: center -907px;
}


.page.checkout-page.opc-order-progress .opc .step-title.payment-step span.icon {
    background-position: center -187px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.payment-step span.icon {
    background-position: center -547px;
}


.page.checkout-page.opc-order-progress .opc .step-title.confirm-step span.icon {
    background-position: center -247px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.confirm-step span.icon {
    background-position: center -608px;
}


.page.checkout-page.opc-order-progress .opc .step-title.complete-step span.icon {
    background-position: center -306px;
}

.page.checkout-page.opc-order-progress .opc .allow .step-title.complete-step span.icon {
    background-position: center -667px;
}


.page.checkout-page.opc-order-progress .opc .allow .step-title span.icon {
    border-color: transparent;
}

.air-theme .page.checkout-page.opc-order-progress .opc .allow .step-title span.icon {
    background-color: #d39c00;
}

.page.checkout-page.opc-order-progress {
    text-align: left;
}

    .page.checkout-page.opc-order-progress .opc {
        width: 94%;
        margin: 30px auto 30px;
    }

        .page.checkout-page.opc-order-progress .opc > li {
            padding: 15px 20px 11px 20px;
        }

        .page.checkout-page.opc-order-progress .opc .button-back {
            /*background-color: transparent;*/
            background-color: #eee;
            color: #d39c00;
            text-align: center;
            text-transform: uppercase;
            min-width: 125px;
            height: 55px;
            margin-right: 10px;
            margin-bottom: 20px;
            padding: 0 20px;
            transition: opacity 0.2s ease;
            opacity: 1;
        }

            .page.checkout-page.opc-order-progress .opc .button-back:hover {
                opacity: 0.5;
            }

        .page.checkout-page.opc-order-progress .opc .button-1 {
            min-width: 125px;
        }

        .page.checkout-page.opc-order-progress .opc .step-title span.icon {
            display: inline-block;
            width: 45px;
            height: 45px;
            border: 2px solid #eee;
            border-radius: 50%;
            background-color: #fff;
            background-image: url(/Themes/Element/Content/img/order-progress-sprite-big.png);
            background-repeat: no-repeat;
            background-position: center 0;
            background-size: 60px;
            margin-right: 15px;
        }

        .page.checkout-page.opc-order-progress .opc .step-title .title {
            font-size: 15px;
            position: relative;
            top: -19px;
        }

        /*.html-checkout-page.html-shipping-address-page .air-theme.variant-1*/
        .page.checkout-page.opc-order-progress .opc .pickup-in-store .selector::after {
            position: absolute;
            padding-left: 8px;
            margin-top: 1px;
            color: #555;
            font-weight: 900;
            font-family: "Font Awesome 5 Free";
            content: "\f54b";
            font-size: 1.25em;
        }

        .page.checkout-page.opc-order-progress .opc .single-pickup-point.name {
            font-weight: bolder;
        }

    /* END ORDER PROGRESS */

    /* METHOD LIST */
    .opc .section.ship-to-same-address i {
        /*position: absolute;*/
        padding-left: 5px;
        margin-top: 3px;
        color: #555;
        font-weight: 900;
        /*font-family: "Font Awesome 5 Free";
    content: "\f54b";*/
        font-size: 1.25em;
    }

.opc .section.payment-method .method-list li {
    padding: 30px 0 30px 0;
}

.opc .section.pickup-in-store i.left {
    position: relative;
    top: 3px;
    margin-right: 5px;
    color: #555;
    font-weight: 900;
    font-size: 1.25em;
}

.opc .section.pickup-in-store i.right {
    /*position: absolute;*/
    padding-left: 5px;
    margin-top: 3px;
    color: #555;
    font-weight: 900;
    /*font-family: "Font Awesome 5 Free";
    content: "\f54b";*/
    font-size: 1.25em;
}

.page.checkout-page.opc-order-progress .opc .section.pickup-in-store > label {
    font-weight: 900;
    font-size: 16px;
}

.opc .section.payment-method .method-list li .method-name .payment-logo {
    display: block;
}

    .opc .section.payment-method .method-list li .method-name .payment-logo label {
        margin: 0 0 0 0px;
    }

    .opc .section.payment-method .method-list li .method-name .payment-logo img {
        max-width: 100px;
    }

.opc .section.payment-method .method-list li .method-name .payment-details {
    /*display: inline-block;*/
    /* margin: 0 5px; */
    /* vertical-align: middle; */
    vertical-align: top;
    margin: 15px 5px 0;
}

    .opc .section.payment-method .method-list li .method-name .payment-details label {
        font-weight: bold;
        font-size: 15px;
    }

        .opc .section.payment-method .method-list li .method-name .payment-details label.payment-description {
            display: block;
            font-weight: normal;
            text-transform: unset;
            margin: 15px 0px 5px 0px;
        }

    .opc .section.payment-method .method-list li .method-name .payment-details img {
        margin-top: 15px;
        max-width: 300px;
    }
/* END METHOD LIST */
