body {
    background-color: var(--color-primary);
}

.main-header {
    @media(min-width:768px) {
        position: relative;
        background-color: var(--color-primary);
        border-bottom: 1px dashed #fcfcfc;
    }
}

.page-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    //background-color: var(--color-primary);
}

.page-content {
    //color: #fff;
    max-width: 900px;
    margin: 0 auto;

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: var(--color-primary);
        font-family: 'inknut-antiqua', sans-serif;
        font-weight: 400;
        color: #fff;
    }

    p {
        font-size: 16px;
        margin-bottom: 8px;
        color: #fff;
    }
}

.booking-wrapper {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.iti__flag {
    background-image: url('/assets/image/flags.webp');
}

.booking-field {
    margin-bottom: 30px;

    label {
        display: block;
        color: #fff;
        font-size: 14px;
    }

    input {
        width: 100%;
        height: 40px;
        outline: 0;
        border: 1px solid #fcfcfc;
        background: transparent;
        padding: 0 10px;
        color: #fff;

        &[readonly="readonly"] {
            background-color: rgba(255, 255, 255, 0.1);
            opacity: 0.8;
            cursor: not-allowed;
        }
    }

    textarea {
        width: 100%;
        height: 80px;
        outline: 0;
        border: 1px solid #fcfcfc;
        background: transparent;
        padding: 10px;
        color: #fff;
    }

    .iti__selected-country-primary {
        display: none;
    }

    .iti__tel-input {
        padding-left: 10px !important;
    }

    .iti--allow-dropdown {
        width: 100%;
    }

    .iti--inline-dropdown {
        width: 100%;
    }

    .iti__dropdown-content {
        width: 100%;
    }

    select {
        width: 100%;
        height: 40px;
        outline: 0;
        border: 1px solid #fcfcfc;
        background: transparent;
        padding: 0 10px;
        color: #fff;

        option {
            color: #000;
        }
    }
}

.booking-success {
    padding: 0 20px;
}

.bk-success__line {
    display: flex;
    padding: 5px 0;

    .bk-success__title {
        flex: 0 0 150px;
        -ms-flex: 0 0 150px;
        max-width: 150px;
        color: #fff;
        font-weight: 600;
    }

    .bk-success__value {
        flex: 0 0 calc(100% - 150px);
        max-width: calc(100% - 150px);
        padding-left: 10px;
        color: #fff;
    }
}

.ui-widget-header {
    .ui-icon {
        background-image: url('/assets/image/chevron.png');
        background-position: center;

        &.ui-icon-circle-triangle-w {
            transform: rotate(180deg);
        }
    }

}



.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.icon-field {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
    color: #fff;
    font-size: 16px;
}

.btn-booking {
    border: 1px solid #fcfcfc;
    color: #fff;

    &:hover {
        background-color: #fff;
        color: var(--color-primary);
    }
}

.order-desc {
    margin-bottom: 30px;
    ;

    p {
        color: #fff;
    }
}

.listmenu-site-nav {
    @media (max-width: 991px) {
        padding: 0;
        margin-bottom: 30px;
    }
}

.orders-cate {
    position: sticky;
    top: 75px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    transition: all 400ms ease;
    background: #fff;
    border: 1px solid #fcfcfc;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    overflow: hidden;

    &.orders-fixed {
        position: fixed;
        top: 68px;
    }

    @media (max-width: 991px) {
        width: 100%;
        margin: 0;
        left: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid #ddd;
        overflow-x: auto;
        z-index: 8;
        padding: 0;
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        transition: all 400ms ease;
        border-radius: 0;
        -webkit-border-radius: 0;
    }

    ul {
        margin-bottom: 0;
        max-height: 500px;
        overflow: hidden;
        overflow-y: auto;
        height: 100%;

        @media (max-width: 991px) {
            white-space: nowrap;
            margin: 0;
            transition: all 0.3s ease;
            transform: translateX(0);
            overflow-x: auto;
        }

        &::-webkit-scrollbar-track {
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            background-color: #F5F5F5;
        }

        &::-webkit-scrollbar {
            width: 5px;
            height: 5px;
        }

        &::-webkit-scrollbar-thumb {
            border-radius: 10px;
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
            background-color: #555;
        }

        li {
            border-bottom: 1px dotted #ccc;
            background-color: transparent;

            &.active {
                a {
                    color: #fff;
                    background-color: var(--color-primary);
                }

            }

            a {
                display: block;
                padding: 15px 20px;
                line-height: 1.2;
                color: #333333;
                font-weight: 600;
                text-transform: uppercase;

                @media (max-width: 991px) {
                    font-size: 14px;
                    padding: 10px 10px;
                }
            }

            @media (max-width: 991px) {
                display: inline-block;
                margin: 0;
                padding: 0;
                border: none;

            }
        }
    }
}

.orders-product {
    .orders-block {
        background: #fff;
        border: 1px solid #fcfcfc;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        overflow: hidden;
        margin-bottom: 40px;
        background-color: #fff;
    }

    .orders-block__title {
        position: relative;
        text-align: center;
        padding: 15px 15px;
        border-bottom: 1px solid #ccc;

        h3 {
            position: relative;
            color: var(--color-primary);
            font-weight: 600;
            font-size: 22px;
            margin-bottom: 0;
            font-family: 'avenir', sans-serif;
        }
    }

    .orders-block__list {
        padding: 0;
    }

    .order-item {
        padding: 20px;
        border-bottom: 1px dotted #ccc;
        cursor: pointer;
    }

    .order-item--inner {
        display: flex;
        display: -moz-flex;
        display: -o-flex;
        display: -webkit-flex;

        .order-image {
            width: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .order-info {
            width: calc(100% - 0px);
            padding-left: 20px;

            h3 {
                font-size: 15px;
                line-height: 1.5;
                margin: 0 0 5px 0;
            }

            .odi-price {
                margin: 0;
            }

            .odi-desc {
                font-size: 13px;
                margin: 0 0 8px;
            }

            .btn-odiqty {
                background: var(--color-primary);
                border: 1px solid var(--color-primary);
                border-radius: 10px;
                -webkit-border-radius: 10px;
                overflow: hidden;
                width: 30px;
                height: 30px;
                border-radius: 50%;

                svg {
                    height: 28px;
                    width: 13px;
                    stroke: #fff;
                    fill: #fff;
                }
            }
        }
    }
}

.modal-main {

    .modal-content {
        border-radius: 0;
        background: var(--color-primary);
    }

    .modal-header {
        border: 0;

        h5 {
            display: block;
            width: 100%;
            text-align: center;
            text-transform: uppercase;
            font-size: 20px;
            margin: 0;
            color: rgb(245, 166, 141);
            font-weight: 600;
        }

        .close {
            position: absolute;
            top: 14px;
            right: 15px;
            text-shadow: none;
            color: #fff;
            opacity: 1;
        }
    }
}

.addproduct__wrapper {
    .product-title {
        display: flex;
        align-items: center;

        img {
            width: 100px;
            display: none;
        }

        .info {
            flex: 0 0 calc(100% - 0px);
            padding-left: 15px;

            h4 {
                font-size: 20px;
                font-weight: 600;
                color: #fff;
                margin-bottom: 0;
            }

            p {
                font-size: 14px;
                color: #fff;
            }
        }
    }

    .product-note {
        margin-top: 20px;

        input {
            width: 100%;
            height: 40px;
            line-height: initial;
            padding: 5px 10px;
            outline: 0;
            ;
        }
    }

    .product-actions {
        margin-top: 40px;
    }

    .select-quantity {
        .box_qty {
            display: -moz-flex;
            display: -webkit-flex;
            display: -o-flex;
            display: flex;
        }

        .qty-btn {
            background: transparent;
            border: 1px solid;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            outline: none;
            box-shadow: none;
            color: #fff;

            svg {
                fill: currentColor;
            }
        }

        .quantity-selector {
            background-color: transparent;
            border: 0;
            width: 40px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            padding: 5px;
            color: #fff;
        }
    }

    .btn-cart-product {
        display: block;
        width: 100%;
        margin-top: 20px;
        border: 1px solid red;
        background: red;
    }
}

.cart-empty {
    padding: 80px 0;
    text-align: center;

    p {
        font-size: 20px;
    }

    a {
        color: #fff;
        font-size: 14px;
        text-decoration: underline;

        &:hover {
            color: rgba(255, 246, 235, 0.6);
        }
    }
}

.cart-row {
    .cart-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    @media (max-width:767px) {
        flex-direction: column-reverse;
        flex-wrap: initial;

        .cart-right {
            margin-bottom: 20px;
        }
    }
}

.btn-main.btn-checkout {
    background-color: #fff;
    color: var(--color-primary)
}

.method-shipping {
    margin-bottom: 30px;

    h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .shipping-methods {
        display: flex;
        justify-content: center;
        max-width: 350px;
        width: 100%;
        margin: 0 auto;

        .shipping-method {
            flex: 0 0 50%;
            max-width: 50%;
            text-align: center;

            height: 40px;
            line-height: 40px;
            position: relative;
            cursor: pointer;

            input {
                position: absolute;
                opacity: 0;
                visibility: hidden;

                &:checked+label {
                    border-color: rgb(245, 166, 141);
                    color: #fff;
                }
            }

            label {
                display: block;
                width: 100%;
                margin: 0;
                font-size: 14px;
                border: 1px solid #fff;
                color: #fff;
                text-align: center;
                cursor: pointer;
            }
        }
    }
}

.shipping-note {
    margin-top: 10px;
    color: rgb(245, 166, 141);
}

.cart-items {
    padding-right: 10px;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;

    &::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        background-color: #F5F5F5;
    }

    &::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    &::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
        background-color: #555;
    }
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 10px;

    &:not(:last-child) {
        border-bottom: 1px dashed #ccc;
    }

    .item-image {
        flex: 0 0 100px;
        max-width: 100px;
        display: none;
    }

    .item-info {
        flex: 0 0 calc(100% - 0px);
        max-width: calc(100% - 0px);
        padding-left: 15px;
        position: relative;

        .remove-item {
            position: absolute;
            color: #fff;
            right: 0;
            top: 0;
            font-size: 16px;
            ;
        }

        h4 {
            font-size: 14px;
            margin-bottom: 8px;
            padding-right: 22px;
        }

        .price {
            color: #fff;
            font-size: 12px;
        }

        .item-price {
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cart-quantity {
            display: flex;
            align-items: center;

            .btn {
                background: transparent;
                border: 1px solid;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                outline: none;
                box-shadow: none;
                color: #fff;
            }

            input {
                background-color: transparent;
                border: 0;
                width: 50px;
                height: 36px;
                line-height: 36px;
                text-align: center;
                padding: 5px;
                color: #fff;
            }
        }

        .sub-price {
            color: #fff;
            font-weight: 600;
        }

        .item-note {
            margin-top: 10px;
            font-size: 14px;
            color: #fff;

            p {
                margin: 0;
            }
        }
    }
}

.cart-total {
    .line-sum {
        margin-bottom: 4px;
    }

    padding-top: 15px;
    border-top: 1px solid #fcfcfc;

    .title-col {
        font-size: 16px;
        color: #fff;
        font-weight: 600;
    }

    span {
        color: #fff;
    }

    .total-price {

        font-size: 20px;
    }
}

.swal2-popup {
    .swal2-icon {
        margin-top: 15px;
    }

    .swal2-title {
        display: block;
        font-size: 18px;
        color: #000;
        font-weight: 400;
    }

    .swal2-confirm {
        background-color: var(--color-primary);
        color: #fff;
        border: 1px solid var(--color-primary);
        font-weight: 600;
        font-size: 16px;
    }
}