/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ============= Common Styles ============= */
::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
}
body {
    -ms-overflow-style: none;
}

.terms__content ul {
    list-style-type: '- ';
    margin: 0 0 0 18px;
    padding: 0;
}
.hero-mask-bg::before {
    mask: radial-gradient(57% 57%, #000 0%, #0000 88.0367%);
}
.offer-block {
    display: inline-block;
    background-color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    margin-right: 5px;
}

#custom-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    backdrop-filter: blur(20px);
}
/* ============= Page Loader ============= */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #ffffff4d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#page-loader.hideLoader {
    display: none;
}
.loader-spinner-3576 {
    width: 36px;
    height: 36px;
    border: 4px solid #3b5beb;
    border-top-color: #ffffff4d;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: spinAnimation 1s linear infinite;
}

@keyframes spinAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Checkout Loader */
.checkout.woocommerce-checkout.processing .blockUI.blockOverlay {
    position: fixed !important;
    background-color: #ffffff4d !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    opacity: 1 !important;

    z-index: 99999999;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkout.woocommerce-checkout.processing .blockUI.blockOverlay::before {
    content: '';
    height: 30px;
    width: 30px;

    border: 3px solid #3b5beb;
    border-top-color: white;
    border-radius: 50%;
    display: inline-block;

    animation: spinAnimation 1s linear infinite;
}

/* ============= Footer Style ============= */
.footer-payment img {
    background-color: #ffffff;
    border: 1px solid #e5eaf0;
    padding: 5px;
}
/* ============= Star Rating ============= */
.e-rating .e-rating-wrapper svg {
    max-width: 18px !important;
    max-height: 18px !important;
}
/* ============= Thank You Page ============= */
#thank-you__order-review .woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
#thank-you__order-review .woocommerce-order-overview li {
    background-color: #1d357514;
    border: 1px solid #e5eaf0;
}
#thank-you__order-review .woocommerce-order-overview li.email {
    display: none;
}
/* ============= Checkout Page ============= */
#back-to-service .elementor-button-content-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
#back-to-service .elementor-button-icon {
    width: 27px;
    height: 27px;
    background: #3b5beb;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    fill: #fff;
}

/* ============= Media Query ============= */
@media only screen and (min-width: 1025px) {
    #checkout-content {
        background-image: linear-gradient(90deg, #fff 50%, #f5f5f5 50%);
    }
}
@media only screen and (max-width: 1025px) {
    #thank-you__order-review .woocommerce-order-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 550px) {
    #thank-you__order-review .woocommerce-order-overview {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}
