@layer base {
    :root {
       --c-50: 239, 246, 255;
        --c-100: 219, 234, 254;
        --c-200: 191, 219, 254;
        --c-300: 147, 197, 253;
        --c-400: 96, 165, 250;
        --c-500: 59, 130, 246;
        --c-600: 37, 99, 235;
        --c-700: 29, 78, 216;
        --c-800: 30, 64, 175;
        --c-900: 30, 58, 138;
        --c-950: 23, 37, 84;
        --blue-50: 239, 246, 255;
        --blue-100: 219, 234, 254;
        --blue-200: 191, 219, 254;
        --blue-300: 147, 197, 253;
        --blue-400: 96, 165, 250;
        --blue-500: 59, 130, 246;
        --blue-600: 37, 99, 235;
        --blue-700: 29, 78, 216;
        --blue-800: 30, 64, 175;
        --blue-900: 30, 58, 138;
        --blue-950: 23, 37, 84;
    }

    *,
    *:after,
    *:before {
        position: relative;
    }

    *:focus {
        outline: none !important;
    }

    html {
        @apply font-sans;
        font-size: 12px;
    }

    @screen lg {
        html {
            font-size: 14px;
        }
    }

    @screen xl {
        html {
            font-size: 19px;
        }
    }
}
.navigation-main {
    border-color:transparent !important; /* Darker color */
    background-image:linear-gradient(to right,var(--tw-gradient-stops)) !important;
    --tw-gradient-from: #990212 var(--tw-gradient-from-position) !important;
    --tw-gradient-to: #81182B var(--tw-gradient-to-position) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.button {
    background-color: #990212;
    background-image: linear-gradient(to bottom, #990212, #81182B);
    color: rgba(255, 255, 255, 0.9);
    height:3rem;
    text-transform: capitalize;

}

.button:disabled {
    opacity: .5;
    cursor: not-allowed
}

.button:not(:disabled):hover,.button:not(:disabled):focus,.fi-btn-color-danger:not(:disabled):hover,.fi-btn-color-danger:not(:disabled):focus,.button.dropdown-trigger-open {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
    border-top-color: #0000001a;
    border-left-color: #0000001a;
    border-right-color: #ffffff4d;
    border-bottom-color: #ffffff4d;
    background-position: 0 0
}

.button:not(:disabled):focus {
    --tw-border-opacity: 1;
    border-color: #990212
}

.button:not(:disabled):active {
    --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
    --tw-translate-y: 1px;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-top-color: #0000001a;
    border-left-color: #0000001a;
    border-right-color: #ffffff4d;
    border-bottom-color: #ffffff4d
}

.link {
    --tw-text-opacity: 1 !important;
    color: #000000 !important;
    text-decoration-line: underline;
    text-underline-offset: 2px;
    text-underline-position: under;
    text-decoration-color: #C7C7C8;
}

.loading-container {
    display: contents;
    justify-content: center;
    align-items: center;
    height: 5vh;
}

.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #c30b1e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.tabs {
    overflow-x: auto !important;
}
/* Hide the default radio button */
/* Create a custom radio button */

.template-radio[type="radio"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    color: #666;
    font-size: 14px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.template-radio[type="radio"] {
    content: "";
    position: relative;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background-color: #f1f1f1;
}

/* Style the indicator (dot/circle) when radio is checked */
.template-radio[type="radio"]:checked {
    background-color: #b23131;
}

.template-text{
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.template-radio .image-popup {
    visibility: hidden;
    width: 600px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position:static; /* Keep as absolute */
    z-index: 1000; /* Increase as needed to ensure popup is on top */
    opacity: 0;
    transition: opacity 0.3s;
    /* Remove top and left properties */
    /* Remove transform property */
}

.template-radio:hover .image-popup {
    visibility: visible;
    opacity: 1;
}

.choices .choices__inner {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    border-radius: 50px !important;
}