@import 'binding-style.css';
/* Example if exists, otherwise import custom here */
@import 'default-style.css';
@import 'dashboard-style.css';
@import 'css/minicart-custom.css';
@import 'css/mega-menu.css';
@import 'css/mobile-nav.css';





/* ---------------- */






@font-face {
    font-family: 'Material Icons Round';
    font-style: normal;
    font-weight: 400;
    src: url(https://chunkart.ir/wp-content/themes/MyTheme/fonts/maticons.woff2) format('woff2');
}

.material-icons-round {
    font-family: 'Material Icons Round';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}





@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(https://chunkart.ir/wp-content/themes/MyTheme/fonts/matsymbols.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}













.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark .glass-effect {
    background: rgba(18, 20, 19, 0.7);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.feature-list {
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out;
    opacity: 0;
    margin-bottom: 0;
}

.product-card:hover .feature-list {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-bottom: 0.75rem;
}

.feature-list>div {
    overflow: hidden;
}







.btn-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: unset !important;
}

.btn-hover * {
    transition: all 0.4s ease;
}

.btn-hover:hover * {
    color: white;
    stroke: white;
}


.btn-hover:hover {
    border: unset;
    outline: unset;
}

.btn-hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #98C2A9 !important;
    z-index: -1;
    top: 0;
    right: -100%;
    transition: all 0.4s ease;
    border-radius: 1.5rem;
}

.btn-hover:hover::before {
    right: 0;
}


li.course span {
    color: #E2A79A !important;
}


.search-input:focus {
    outline: 1px solid #98C2A9 !important;
}

.product-info span.woocommerce-Price-amount>bdi {
    display: flex;
    justify-content: start;
}

#prdct-card-price .woocommerce-Price-amount>bdi {
    display: flex;
    align-items: center;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-result-count {
    margin: 0 !important;
}





ul.woocommerce-mini-cart {
    max-height: 80%;
    overflow-y: auto;
    padding-bottom: 80px !important;
}

div.widget_shopping_cart_content {
    height: 100%;
}

div.dig_wc_countrycodecontainer>input {
    height: 100%;
}

div.dig_wc_countrycodecontainer {
    height: 100%;
}

.woocommerce-error::before {
    content: "";
    color: #b81c23;
}

/* Add to Cart Loading State */
button.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

button.loading::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hide Quantity Spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

@media (max-width:767px) {
    .woocommerce-variation-add-to-cart {
        width: 100%;
    }

    .quantity-div {
        width: 30% !important;
    }

}