/*
Theme Name: Fulcom
Theme URI: https://fulcom.com
Author: Fulcom Dev
Author URI: https://fulcom.com
Description: Tema para Entrena tu Mente. Domina el Juego. Basado en diseño React con Tailwind CDN.
Version: 1.0.0
Text Domain: fulcom
*/

:root {
    --primary-color: #ffffff;
    --accent-shadow: rgba(0, 0, 0, 0.6);
    --bg-white-tutor: #1e293b;

    --primary-green: #00E599;
    /* El verde neón de tu home */
    --primary-gradient: linear-gradient(90deg, #00E599 0%, #00c282 100%);
    --bg-dark: #0f172a;
    /* Fondo oscuro base */
    --bg-card: #1e293b;
    /* Fondo de las tarjetas */
    --bg-input: #0f172a;
    /* Fondo de inputs */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --danger: #ef4444;
    --radius: 12px;
}



/* * NOTA: Este tema usa Tailwind CSS vía CDN inyectado en functions.php.
 * No agregar reglas CSS aquí a menos que sean estrictamente necesarias
 * y no puedan resolverse con utilidades.
 */

/* Ajuste para admin bar de WP en móvil */
body.admin-bar .fixed.top-0 {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .fixed.top-0 {
        top: 46px;
    }
}

/* ==========================================================================
   COMPATIBILIDAD WOOCOMMERCE & TUTOR LMS - PALETA DARK/EMERALD (RGBA)
   ========================================================================== */

/* 1. FONDOS GENERALES (Slate 900)
   Aplicado a: Contenedores principales, tarjetas de producto, carrito, checkout 
*/
.woocommerce-wrapper,
.woocommerce div.product,
.woocommerce-cart-form,
.woocommerce-checkout,
.tutor-dashboard-content,
.tutor-wrap,
.tutor-course-details-page {
    background-color: #020617 !important;
    color: var(--text-main);
    /*color: rgba(203, 213, 225, 1) !important;*/
    /* Slate 300 - Texto General */
}

/* 2. TEXTOS Y TÍTULOS */
.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce h4,
.tutor-wrap h1,
.tutor-wrap h2,
.tutor-wrap h3,
.woocommerce-loop-product__title,
.tutor-course-title h2 {
    color: rgba(255, 255, 255, 1) !important;
    /* Blanco Puro */
}

.woocommerce-product-details__short-description,
.woocommerce p {
    color: rgba(148, 163, 184, 1) !important;
    /* Slate 400 - Texto descriptivo */
}

.price,
.amount {
    color: rgba(52, 211, 153, 1) !important;
    /* Emerald 400 - Precios */
    font-weight: 700 !important;
}

/* 3. BOTONES DE ACCIÓN (Emerald 500) */
/*
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce a.button,
.woocommerce a.button.alt,
.tutor-btn,
.tutor-btn-primary,
.single_add_to_cart_button {
    background-color: rgba(16, 185, 129, 1) !important;
    color: rgba(2, 6, 23, 1) !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: none !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    font-size: 0.775rem !important;
    letter-spacing: 0.05em;
}

.woocommerce button.button:hover,
.tutor-btn:hover,
.tutor-btn-primary:hover {
    background-color: rgba(52, 211, 153, 1) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    color: rgba(2, 6, 23, 1) !important;
}*/

/* Botones Secundarios (Transparentes con borde) */
.tutor-btn-outline-primary,
.woocommerce a.button.ghost {
    background-color: transparent !important;
    border: 1px solid rgba(16, 185, 129, 1) !important;
    color: rgba(16, 185, 129, 1) !important;
}

/* 4. INPUTS Y FORMULARIOS (Slate 800) */
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.tutor-form-control,
.select2-container--default .select2-selection--single {
    background-color: rgba(30, 41, 59, 1) !important;
    /* Slate 800 */
    border: 1px solid rgba(51, 65, 85, 1) !important;
    /* Slate 700 */
    color: rgba(241, 245, 249, 1) !important;
    /* Slate 100 */
    border-radius: 8px !important;
    padding: 12px !important;
}

.woocommerce input.input-text:focus,
.tutor-form-control:focus {
    border-color: rgba(16, 185, 129, 1) !important;
    /* Borde Emerald al escribir */
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
}

/* Corrección de Select2 (dropdowns de WooCommerce) */
.select2-dropdown {
    background-color: rgba(30, 41, 59, 1) !important;
    border-color: rgba(51, 65, 85, 1) !important;
    color: rgba(241, 245, 249, 1) !important;
}

/* 5. TABLAS Y BORDES (Pedidos, Carrito) */
.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
    background-color: transparent !important;
    border-color: rgba(30, 41, 59, 1) !important;
    /* Bordes Slate 800 */
}

.woocommerce table.shop_table th {
    color: rgba(255, 255, 255, 1) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    background-color: rgba(30, 41, 59, 0.5) !important;
    /* Fondo sutil cabecera */
}

/* 6. MENSAJES DE ALERTA */
.woocommerce-message,
.woocommerce-info {
    background-color: rgba(15, 23, 42, 1) !important;
    /* Slate 900 */
    color: rgba(203, 213, 225, 1) !important;
    border-top: 3px solid rgba(16, 185, 129, 1) !important;
    /* Línea superior Emerald */
}

.woocommerce-error {
    background-color: rgba(15, 23, 42, 1) !important;
    border-top: 3px solid rgba(239, 68, 68, 1) !important;
    /* Rojo Error */
    color: rgba(252, 165, 165, 1) !important;
}

/* 7. WIDGETS DE BARRA LATERAL (Tienda) */
.widget_price_filter .price_slider_amount .button {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
}

.widget_product_categories li a {
    color: rgba(148, 163, 184, 1) !important;
}

.widget_product_categories li a:hover {
    color: rgba(16, 185, 129, 1) !important;
}


.tutor-course-topic-title {
    color: rgba(241, 245, 249, 1) !important;
}



/* Tutor LMS Specific Adjustments */
.tutor-cart-empty-state p {
    color: white !important;
    font-weight: 700;
}

.entry-content .tutor-cart-page {
    padding: 0.8rem 0 !important;
}

.tutor-container .tutor-cart-empty-state {
    max-width: 990px !important;
}

.tutor-wrap.tutor-wrap-parent,
.tutor-wrap.tutor-page-wrap {
    padding-top: 1.5rem;
}

.tutor-wrap.tutor-page-wrap {
    background-color: rgb(2 6 23 / var(--tw-bg-opacity, 1)) !important;
}

.tutor-login-wrap,
#tutor-registration-wrap {
    max-width: 630px;

}

.tutor-form-check label {
    color: #94a3b8 !important;
    /* slate-400 */
}

.tutor-quiz-wrapper .tutor-color-black {
    color: #1e293b !important;
    /* slate-100 */
}

.tutor-color-black {
    color: #F1F5F9 !important;
}

.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-menu-item-icon {
    color: rgb(148 163 184 / var(--tw-text-opacity, 1));
    /* slate-400 */
}

.tutor-dashboard-menu-item.active a {
    background-color: #10b981 !important;
    font-weight: 700 !important;
}

.tutor-card {
    background-color: #1e293b;
    /* slate-800 */

}

.tutor-card .tutor-round-box {
    color: #ffffff;
    background-color: #0f172a;
    /* slate-900 */
}

.tutor-card .tutor-color-secondary {
    color: #52b788 !important;
    /* emerald-400 */
}

.tutor-card .woocommerce-Price-amount.amount {
    color: rgb(203, 213, 225) !important;
    /* emerald-400 */
}

.tutor-dashboard .tutor-dashboard-left-menu .tutor-dashboard-permalinks li a:hover {
    background-color: rgba(var(--tutor-color-primary-rgb), .5) !important;
}

.tutor-table tr th {
    color: #94a3b8 !important;
    /* slate-400 */
    background: #1e293b;
    /* slate-800 */
}

.tutor-table tr td {
    color: #ffffff;
    background-color: #0f172a;
}


.tutor-table tr td>a:not(.tutor-btn):not(.tutor-iconic-btn):not(.quiz-manual-review-action),
.tutor-table tr td .tutor-table-link {
    color: #ffffff;
}

.tutor-segment-title {
    color: #ffffff;
}

.tutor-course-title,
.tutor-course-lessons.tutor-zoom-meeting-session,
.tutor-accordion-item-header.is-active,
.tutor-accordion-item,
.tutor-course-content-list-item,
.tutor-card-body,
.tutor-course-details-instructors {
    /* background: none !important;
    background-color: none !important; 
    background-color: rgba(30, 41, 59, 0.5) !important;*/
    color: var(--primary-green) !important;
}

.tutor-form-select-dropdown {
    background-color: rgba(15 23 42 / var(--tw-bg-opacity, 1))
}

.tutor-form-select-option.is-active {
    background-color: rgba(16 185 129 / var(--tw-bg-opacity, 1)) !important;
}

.tutor-categories-background-fulcom {
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    margin-right: 10px;
    font-size: 0.75rem;
}

.tutor-nav {
    background-color: #1e293b !important;
    color: white;
}

.tutor-nav-link.is-active {
    font-weight: 700;
    color: #10b981 !important;
}

.tutor-nav-link {
    color: white !important;
}

.tutor-toggle-more-collapsed:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #0b0f19) !important;
}

/* Ajuste del botón para que resalte más */
.tutor-toggle-more-btn {
    margin-top: 10px !important;
}



/* --- CONTENEDOR PRINCIPAL Y TÍTULO --- */
.tutor-course-content-title {
    color: #ffffff !important;
    text-transform: none;
    letter-spacing: -0.5px;
}

/* --- ESTILO DEL ACORDEÓN (EL TEMA) --- */
.tutor-accordion-item {
    background: var(--bg-card) !important;
    /* Fondo oscuro de la tarjeta */
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 15px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}


/* Encabezado del Tema (Bienvenida) */
.tutor-accordion-item-header {
    background-color: var(--bg-card) !important;
    width: 100%;

    font-size: 1.1rem !important;
    font-weight: 600 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main) !important;


    border: none;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 16px 20px !important;
    cursor: pointer;
    transition: background-color 0.2s;
}

.tutor-accordion-item-header:hover {
    background-color: #1e273c;
}

.tutor-course-topic-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.tutor-course-topic-summary {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    background: var(--bg-dark) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
}




/* Icono de flecha de TutorLMS */
.tutor-accordion-item-header:after {
    color: #2ecc71 !important;
}

/* --- LISTA DE LECCIONES --- */
.tutor-course-content-list {
    /* Fondo más profundo para las lecciones */
    padding: 0 !important;
    margin: 0 !important;
}

.tutor-course-content-list-item {
    background-color: transparent !important;
    padding: 15px 25px !important;
    border-bottom: 1px solid var(--border-color) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.tutor-course-content-list-item:hover {
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
    /* Efecto de desplazamiento */
}

/* .tutor-course-content-list-item:hover .tutor-course-content-list-item-icon {
    border-left-color: #00d084 !important;
} */

/* Título de la lección (Enlace) */
.tutor-course-content-list-item-title a {
    color: #c9d1d9 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    transition: color 0.2s ease;
}

.tutor-course-content-list-item:hover .tutor-course-content-list-item-title a {
    color: #ffffff !important;
}

/* --- ICONOS (DOCUMENTO Y CANDADO) --- */


/* Icono de la derecha (candado) */
.tutor-icon-lock-line {
    color: #8b949e !important;
    /* Gris para indicar que está cerrado */
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem !important;
}

/* Ajuste de flexbox para que no se amontonen los elementos */
.tutor-course-content-list-item .tutor-d-flex {
    align-items: center !important;
}

.tutor-accordion-item-body {
    background-color: var(--bg-dark) !important;
}

.tutor-course-content-list-item-icon {
    color: rgba(var(--tutor-body-color-rgb), .3) !important;
    font-size: 18px !important;
    transition: all .3s ease-in !important;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    /* Bordes redondeados modernos como en tu imagen */
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 7;
    /* height: 500px; */
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradado para dar profundidad y legibilidad al texto */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.4s ease, visibility 0.4s;
    color: white;
    z-index: 2;
}

.overlay-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Botón Play Minimalista */
.play-btn-central {
    background: white;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0 auto;
}

.play-btn-central svg {
    width: 35px;
    color: #111;
    margin-left: 5px;
    /* Ajuste visual para centrar el triángulo */
}

.play-btn-central:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Clase para ocultar el overlay cuando el video corre */
.video-container.playing .video-overlay {
    opacity: 0;
    visibility: hidden;
}



/* Reemplazo de tutorLMS */
.tutor-bg-white {
    background-color: var(--bg-white-tutor) !important;
}

.tutor-color-secondary {
    color: var(--text-muted) !important;
}

.tutor-color-muted {
    color: var(--text-muted) !important;
}

.tutor-qna-single-question:not([data-context=backend-dashboard-qna-single]) .tutor-qna-left .tutor-qna-text {
    color: var(--text-muted) !important;
    background: var(--bg-card) !important;
}

.tutor-qna-single-question:not([data-context=backend-dashboard-qna-single]) .tutor-qna-right .tutor-qna-text {
    color: var(--text-main) !important;
    background: var(--bg-card) !important;
}

.tutor-qa-reply .tutor-d-flex.tutor-align-center.tutor-mt-12 {
    background-color: transparent !important;
}

.tutor-qna-single-question .tutor-qa-reply {
    background-color: transparent !important;
}

.tutor-accordion-item-body-content {
    padding: 0;
    border-top: 1px solid var(--border-color);
}

.tutor-card-body {
    background-color: var(--bg-card) !important;
}

.tutor-tab {
    margin-bottom: 2rem;
}

.tutor-course-single-sidebar-wrapper {
    background-color: var(--bg-dark) !important;
}

.tutor-course-single-sidebar-title {
    padding: 16px 20px;
    background-color: var(--bg-card) !important;
    border-bottom: 1px solid var(--border-color);
}

.tutor-course-single-sidebar-title span.tutor-color-secondary {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header {
    background-color: var(--bg-dark) !important;
}

.tutor-course-topic-item {
    display: flex;
    align-items: flex-start;
    gap: 12px !important;
    padding: 14px 20px !important;
    cursor: pointer;
    border-left: 3px solid transparent !important;
    border-bottom: 1px solid rgba(42, 52, 71, 0.5) !important;
    transition: all 0.1s ease !important;
    background-color: transparent !important;
}

.tutor-course-topic-item:hover {
    background-color: var(--bg-card) !important;
}

.tutor-course-topic-item.is-active {
    background-color: rgba(0, 208, 132, 0.05) !important;
    border-left-color: #00d084 !important;
}

.tutor-course-topic-item:not(.is-active):hover {
    color: var(--text-main) !important;
}

.tutor-course-topic-item a {
    background-color: transparent !important;
    padding: 0 !important;
}

.tutor-course-topic-item-title {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    color: #d1d5db !important;
    font-weight: 400 !important;
    margin-left: 6px;
}

.tutor-course-topic-item.is-active .tutor-course-topic-item-title {
    font-weight: 500 !important;
    color: var(--primary-green) !important;
}

.tutor-course-topic-item.is-active .tutor-course-topic-item-title:hover {
    color: var(--text-main) !important;
}


@media (min-width: 576px) {

    .tutor-container-sm,
    .tutor-container {
        max-width: 36rem;
        padding: 0 !important;
    }

    .max-w-7xl {
        max-width: 36rem;
    }
}

@media (min-width: 768px) {

    .tutor-container-md,
    .tutor-container-sm,
    .tutor-container {
        max-width: 48rem;
        padding: 0 !important;
    }

    .max-w-7xl {
        max-width: 48rem;
    }
}

@media (min-width: 992px) {

    .tutor-container-lg,
    .tutor-container-md,
    .tutor-container-sm,
    .tutor-container {
        max-width: 64rem;
        padding: 0 !important;
    }

    .max-w-7xl {
        max-width: 64rem;
    }
}

@media (min-width: 1400px) {

    .tutor-container-xxl,
    .tutor-container-xl,
    .tutor-container-lg,
    .tutor-container-md,
    .tutor-container-sm,
    .tutor-container {
        max-width: 80rem;
        padding: 0 !important;
    }

    .max-w-7xl {
        max-width: 80rem;
    }

}

.tutor-meta a {
    color: #000 !important;
    font-weight: 500;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

.wc-block-components-title.wc-block-components-checkout-step__title {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--text-main) !important;
}

.wc-block-components-checkout-step__heading {
    padding-bottom: 1rem !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email],
.wc-block-components-form .wc-block-components-text-input input[type=number],
.wc-block-components-form .wc-block-components-text-input input[type=password],
.wc-block-components-form .wc-block-components-text-input input[type=tel],
.wc-block-components-form .wc-block-components-text-input input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=url],
.wc-block-components-text-input input[type=email],
.wc-block-components-text-input input[type=number],
.wc-block-components-text-input input[type=password],
.wc-block-components-text-input input[type=tel],
.wc-block-components-text-input input[type=text],
.wc-block-components-text-input input[type=url] {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: white;
    font-size: 0.8rem;
}

.wc-block-components-form .wc-block-components-text-input input[type=email]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=number]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=password]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=tel]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=text]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=url]:focus,
.wc-block-components-text-input input[type=email]:focus,
.wc-block-components-text-input input[type=number]:focus,
.wc-block-components-text-input input[type=password]:focus,
.wc-block-components-text-input input[type=tel]:focus,
.wc-block-components-text-input input[type=text]:focus,
.wc-block-components-text-input input[type=url]:focus {
    background-color: var(--bg-input);
    color: white;
    font-size: 0.8rem;
}

.wc-blocks-components-select .wc-blocks-components-select__select {
    border: 1px solid var(--border-color);
    color: white;
    font-size: 0.8rem;
    background-color: var(--bg-input);
}

.wc-blocks-components-select .wc-blocks-components-select__container {
    background-color: var(--bg-input);
}

.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-text-input label {
    font-size: 0.8rem !important;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
    border-right: 1px solid var(--border-color);
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata,
.wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
    font-size: 0.6rem !important;
}

.wc-block-components-totals-wrapper {
    border-top: 1px solid var(--border-color);
}

/* .wc-block-components-radio-control-accordion-content {
    color: white !important;
} */

.wc-block-checkout__order-notes.wp-block-woocommerce-checkout-order-note-block.wc-block-components-checkout-step {
    display: none;
}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    padding-top: 0.5rem !important;
}

.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #020420;
}

.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained::before {
    content: "";
    width: 18px;
    height: 18px;
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 10.5V6a3.75 3.75 0 10-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 01-1.12-1.243l1.264-12A1.125 1.125 0 015.513 7.5h12.974c.576 0 1.059.435 1.119 1.007zM8.625 10.5a.375.375 0 11-.75 0 .375.375 0 01.75 0zm7.5 0a.375.375 0 11-.75 0 .375.375 0 01.75 0z' /%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 10.5V6a3.75 3.75 0 10-7.5 0v4.5m11.356-1.993l1.263 12c.07.665-.45 1.243-1.119 1.243H4.25a1.125 1.125 0 01-1.12-1.243l1.264-12A1.125 1.125 0 015.513 7.5h12.974c.576 0 1.059.435 1.119 1.007zM8.625 10.5a.375.375 0 11-.75 0 .375.375 0 01.75 0zm7.5 0a.375.375 0 11-.75 0 .375.375 0 01.75 0z' /%3E%3C/svg%3E") no-repeat center / contain;
}

.wc-block-checkout__actions {
    margin-top: 4rem !important;
    margin-bottom: 2rem !important;
}

.wc-block-components-country-input {
    margin-top: 12px !important;
}

.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-textarea:after {

    border-color: #1e293b !important;
    background-color: #1e293b !important;
}

.tutor-course-spotlight-wrapper .tutor-conversation .tutor-comment-textarea:before,
.tutor-course-spotlight-wrapper .tutor-conversation .tutor-actual-comment:before {
    background-color: #1e293b !important;
}

.tutor-card .tutor-color-black {
    color: #fff !important;
}

.tutor-table tr td .tutor-color-black {
    color: #fff !important;
}

.tutor-course-single-content-wrapper #tutor-single-entry-content .tutor-course-topic-single-header .tutor-iconic-btn:has(span.tutor-icon-times) {
    background-color: #941c1c !important;
}

.tutor-zoom-lesson-countdown.tutor-lesson-duration {
    font-size: 0.8rem;
}

.tutor-form-group input[type=text] {
    color: #000 !important;
}

.wc-block-components-address-card address .wc-block-components-address-card__address-section--secondary {
    color: #ffffffb3 !important;
}

.tutor-offcanvas .tutor-offcanvas-main {
    background-color: #161f2c !important;
}