﻿/* Variables - Botones */
:root {
    --brand-color-300: #9CA3AF;
    --brand-color-500: #717680;
    --brand-color-600: #181D27;
    --brand-color-900: #030712;
    --gray-color-200: #E9EAEB;
    --gray-color-300: #D5D7DA;
    --gray-color-600: #535862;
    --gray-color-800: #252B37;
    --gray-color-900: #101828;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-SemiBold.ttf') format('ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

a.default-brand-button {
    background-color: var(--brand-color-600);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    a.default-brand-button:hover {
        background-color: var(--brand-color-900);
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    }

a.default-gray-button,
button.default-gray-button {
    background-color: var(--gray-color-900);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    a.default-gray-button:hover,
    button.default-gray-button:hover {
        background-color: var(--gray-color-800);
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    }

a.light-gray-button {
    background-color: var(--gray-color-200);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-color-600);
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.3s ease-in-out;
}

    a.light-gray-button:hover {
        background-color: var(--gray-color-300);
    }
/* End Variables */

/***** Modificaciones de Estilos Radzen *****/

/* Para el icono a la izq en datepicker - separacion */
.datepicker-left-icon input {
    padding-left: 2.5rem !important;
}

/* Colores datepicker*/
.rz-calendar-view td .rz-state-active.rz-state-focused {
    background-color: #030712;
}

/* PlaceHolder */
.rz-placeholder {
    color: var(--brand-color-600) !important;
}

/*Placeholder autocomplete*/
.rz-autocomplete input::placeholder {
    color: var(--brand-color-600) !important;
}
/* End PlaceHolder */

/* Datepicker de Blazor*/
.blazordatepickercss {
    box-sizing: border-box;
    display: inline-block;
    border: var(--rz-input-border);
    border-radius: var(--rz-input-border-radius);
    background-color: var(--rz-input-background-color);
    transition: var(--rz-input-transition);
    overflow: hidden;
    padding-block: var(--rz-input-padding-block);
    padding-inline: var(--rz-input-padding-inline);
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

td.in-range {
    background-color: #E9EAEB !important;
}

td.active {
    background-color: #101828 !important;
}
/* End DatePicker de Blazor */

.rz-dropdown {
    color: var(--brand-color-600);
    font-weight: 500;
}

.rz-dropdown-panel {
    border-radius: 10px;
}

    .rz-dropdown-panel .rz-dropdown-items-wrapper {
        max-height: 300px !important;
        border-radius: 10px;
    }

.rz-dropdown-panel .rz-dropdown-items-wrapper ul.rz-dropdown-items {
    padding: 0;
}

    .rz-dropdown-panel .rz-dropdown-items-wrapper ul.rz-dropdown-items li {
        border-bottom: 1px solid var(--gray-color-300);
        color: var(--brand-color-600);
        font-weight: 500;
    }
/***** End Modificaciones Estilos Radzen *****/
body {
    font-family: 'NombreFuente', sans-serif;
    color: var(--gray-color-900);
}

/* Menu */
.emergency-text-mobile {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.emergency-text-mobile i{
    font-weight: 400;
    font-size: 20px;
}

.dropdown-submenu {
    font-weight: 600;
    color: var(--gray-color-600);
}

.emergency-button-mobile {
    background-color: var(--brand-color-600);
    color: #FFF;
    font-weight: 600;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.account-button-mobile {
    background-color: #FFF;
    color: var(--brand-color-600);
    font-weight: 600;
    border: 1px solid var(--gray-color-300);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.emergency-button-mobile i,
.account-button-mobile i {
    font-weight: 400;
}

/* End Menu*/


/* Buscador */
/* End Buscador*/

#categoriasCarousel::-webkit-scrollbar {
    display: none;
}

#categoriasCarousel {
    scrollbar-width: none;
}