/* 
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
*/

:root {
    --color-primary: #53389e;
    --color-secondary: #7f56d9;
    --color-white: #ffffff;
    --color-black: #181d27;
    --color-black-light: #414651;

    --color-border: #d5d7da;
    --color-bg-primary: #f5f5f5;

    --border-dashed: 1px dashed #d5d7da;
    --border-solid: 1px solid #d5d7da;

    --border-solid-primary: 1px solid #53389e;

    --border-radius-sm: 9px;
    --border-radius-lg: 12px;

    --button-height: 55px;
    --button-icon-size: 35px;

    --input-field-height: 45px;
    --input-field-padding: 10px 12px;

    --shadow-light-sm:
        rgba(0, 0, 0, 0.11) 0.0602187px 0.602187px 0.605191px -1.25px,
        rgba(0, 0, 0, 0.1) 0.228853px 2.28853px 2.29995px -2.5px,
        rgba(0, 0, 0, 0.04) 1px 10px 10.0499px -3.75px;
}

/* Default Style Fixed */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-block-end: 0;
    margin-block-start: 0;
    outline: none;
}

html,
body {
    overflow-x: hidden;
}
input,
select,
textarea {
    outline: none;
    cursor: pointer;
}
div,
button,
a {
    outline: none;
}

/* SEO Metadata Content */
.seo__metadata {
    display: none;
    opacity: 0;
}

/* Shadow */
.shadow__sm {
    box-shadow: var(--shadow-light-sm);
}

/* Text Selection Style */
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}
::-moz-selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Reusable Styles */
#banner-background {
    background-color: transparent;
    background-image:
        linear-gradient(rgba(212, 212, 212, 0.23) 2px, transparent 2px),
        linear-gradient(90deg, rgba(212, 212, 212, 0.23) 2px, transparent 2px),
        linear-gradient(rgba(212, 212, 212, 0.23) 1px, transparent 1px),
        linear-gradient(
            90deg,
            rgba(212, 212, 212, 0.23) 1px,
            rgba(0, 0, 0, 0) 1px
        );
    background-position:
        -2px -2px,
        -2px -2px,
        -1px -1px,
        -1px -1px;
    background-size:
        40px 40px,
        40px 40px,
        8px 8px,
        8px 8px;
    border-radius: 0px;
}

/* Default Button Style */
#button-primary {
    box-shadow: var(--shadow-light-sm);
}
#button-primary .elementor-button-content-wrapper {
    height: var(--button-height);
    display: flex;
    align-items: center;
    justify-content: center;
}
#button-primary .elementor-button-icon {
    background-color: var(--color-white);
    height: var(--button-icon-size);
    width: var(--button-icon-size);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#button-primary .elementor-button-icon svg {
    fill: var(--color-secondary);
    font-size: 16px;
}

#button-secondary {
    height: var(--button-height);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light-sm);
}

/* Banner Notice */
#banner_notice {
    max-width: fit-content;
}
#banner_notice .banner-notice__icon-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: fit-content;
    flex-wrap: nowrap;
}

.available-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.available-status::before {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    animation: 1s infinite blinkAnimation;
    background-color: var(--color-secondary);
}

@keyframes blinkAnimation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ================================================================================================= */
/* Scroll bar */
/* ================================================================================================= */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f9f5ff;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: var(--e-global-color-secondary);
    border-radius: 0px;
    border: 2px solid #f9f5ff;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--e-global-color-secondary);
}

/* ================================================================================================= */
/* Badge */
/* ================================================================================================= */
.text__highlight {
    color: var(--color-secondary);
}

.footer__badge {
    border: 1px solid #ffffff4d;
    background-color: #ffffff1a;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;
}

/* ================================================================================================= */
/* Animation */
/* ================================================================================================= */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(255, 255, 255, 0.8);
    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 var(--color-secondary);
    border-top-color: var(--color-white);
    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);
    }
}

/* ================================================================================================= */
/* Header Navigation */
/* ================================================================================================= */
#custom-header {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
}
#custom-header.hidden {
    transform: translateY(-100%);
}

#custom-header.scrolled {
    background-color: var(--color-white);
    box-shadow: 0 8px 30px #0000001f;
}
#custom-header.mobile-nav__bg {
    background-color: var(--color-white);
    box-shadow: none;
}

#elementor-template__selector {
    position: fixed;
    width: 100%;
    z-index: 98;
    left: 0;
    right: 0;
    top: 0;
    overflow-y: hidden;
    transition: all 0.3s;
    opacity: 0;
    height: 0;

    overflow: hidden;
    transform: translateY(-100px);
    scrollbar-width: none;
}
#elementor-template__selector.open {
    transform: translateY(0);
    opacity: 1;
    height: 100%;
    overflow-y: scroll;
}

/* Toggle */
#elementor-nav__selector .toggle__bar {
    position: relative;
    display: block;
}
#elementor-nav__selector .toggle__bar,
#elementor-nav__selector .toggle__bar::before,
#elementor-nav__selector .toggle__bar::after {
    width: 18px;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 0;
}
#elementor-nav__selector .toggle__bar::before,
#elementor-nav__selector .toggle__bar::after {
    content: '';
    position: absolute;
    left: 0;
}
#elementor-nav__selector .toggle__bar::before {
    top: -4px;
    background-color: var(--color-secondary);
}
#elementor-nav__selector .toggle__bar::after {
    top: 4px;
    background-color: var(--color-secondary);
}

#elementor-nav__selector.open .toggle__bar {
    background-color: transparent;
}

#elementor-nav__selector.open .toggle__bar::before {
    transform: rotate(45deg) translate(3px, 3px);
}
#elementor-nav__selector.open .toggle__bar::after {
    transform: rotate(-45deg) translate(3px, -3px);
}
.mobile-nav-widget {
    line-height: 0em;
}
button#elementor-nav__selector {
    background-color: transparent;
    padding: 0;
    height: 35px;
    width: 35px;
    border: 1px solid var(--e-global-color-c26ee16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#elementor-nav__selector.open {
    background-color: #f9f5ff;
}

/* Mobile Navigation */
.mobile-navigation__nav .jet-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Dropdown */
.jet-nav__sub {
    box-shadow: var(--shadow-light-sm);
}

/* ================================================================================================= */
/* Footer Style */
/* ================================================================================================= */
.footer-nav__link .jet-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__payment img {
    height: 34px;
    width: auto;
    background-color: #ffffff1a;
    border: 1px solid #ffffff4d;
    border-radius: 5px;
    padding: 4px;
}

/* ================================================================================================= */
/* Websites List */
/* ================================================================================================= */
.domain__card img.flag {
    width: 21px;
    margin-bottom: -4px;
}

#site-loader__button {
    cursor: pointer;
}
#site-loader__button .elementor-button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#site-loader__button .loader__spinner {
    height: 16px;
    width: 16px;
    border: 2px solid var(--color-bg-primary);
    border-top-color: var(--color-secondary);
    animation: spinAnimation 0.6s linear infinite;
    border-radius: 50%;

    display: none;
}

/* ================================================================================================= */
/* FAQs */
/* ================================================================================================= */
#faqs__ID span.e-closed,
#faqs__ID span.e-opened {
    height: 20px;
    width: 20px;
    border: 2px solid #a4a7ae;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/* ================================================================================================= */
/* Terms Page */
/* ================================================================================================= */
.term__content strong {
    font-weight: 600;
}

.term__content ul {
    list-style-type: '- ';
    margin: 0 0 0 12px;
    padding: 0;
}
.term__content p {
    margin-bottom: 10px;
}
.term__content ul p {
    margin-bottom: 4px;
}

/* ================================================================================================= */
/* Media Query */
/* ================================================================================================= */

/* Min Tablet Landscape */
@media only screen and (min-width: 1024px) {
    .checkout-form__wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
    }
}

/* Tablet Landscape */
@media only screen and (max-width: 1024px) {
    #order_review_heading {
        margin-top: 48px;
    }
    #checkout-content.checkout-background {
        background-image: none;
    }
    #payment-page {
        height: 100%;
        background-image: none;
    }
    #thank-you__order-review .woocommerce-order-overview {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Potrait */
/* @media only screen and (max-width: 834px) {} */
/* @media only screen and (min-width: 881px) {
    
} */

/* Mobile Landscape */
@media only screen and (min-width: 768px) {
    #checkout-content .wc_payment_methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .search-popup__result-item .arrow-icon {
        display: block;
    }
}
@media only screen and (max-width: 768px) {
    .cart-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    .search-popup__area {
        width: calc(100% - 40px);
    }
    .search-popup__result-item .product-wrap {
        gap: 10px;
    }
    .search-popup__result-item a {
        grid-template-columns: 1fr;
    }
    .search-popup__result-item .arrow-icon {
        display: none;
    }
    #sp-faq__accordion .sp-faq__content {
        font-size: 15px;
    }

    .sp-faq__toogle-icon::before {
        height: 9px;
        width: 9px;
    }
}

/* Mobile Potrait */
@media only screen and (max-width: 480px) {
    .search-popup__result-item h5 {
        font-size: 14px;
    }

    button#elementor-nav__selector {
        height: 32px;
        width: 32px;
    }
    #checkout-content .cart-item__meta img {
        width: 60px;
    }
    #checkout-content .cart-item__meta {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    #cart-table--ID .shop_table tr {
        grid-template-columns: 60px 1fr 60px 30px !important;
    }

    .footer__payment img {
        height: auto;
        width: 100%;
    }
    #thank-you__order-review .woocommerce-order-overview {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
