/* Gotham Fonts */
@font-face {
    font-family: 'Gotham';
    src: url('./font/Gotham-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./font/Gotham-Bold.otf') format('opentype');
    font-weight: bold;
    /* 700 */
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./font/Gotham-Book.otf') format('opentype'),
        url('./font/Gotham-Book.ttf') format('truetype');
    font-weight: normal;
    /* 400 */
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./font/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./font/Gotham-XLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./font/GothamMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* General styles */
body,
button,
li,
label,
input,
legend,
textarea,
h5,
span,
.remitente,
.remitenteName,
p,
.asunto,
.documento-titulo {
    font-family: 'Gotham' !important;
}

body,
textarea,
.remitenteName,
.asunto {
    font-weight: normal !important;
    /* 400 */
}

button,
label,
.documento-titulo,
.asunto {
    font-weight: 500 !important;
}

li,
input,
legend {
    font-weight: 300 !important;
}

h5,
.remitente,
p {
    font-weight: bold !important;
    /* 700 */
}

/* Specific styles */
.asunto {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ccc;
}

/* Custom checkbox styles */
.custom-checkbox {
    display: none;
}

.custom-checkboxFilter {
    display: none;
}

.custom-checkbox+label {
    position: relative;
    padding-left: 10%;
    cursor: pointer;
}

.custom-checkboxFilter+label {
    position: relative;
    padding-left: 25%;
    cursor: pointer;
}

.custom-checkboxFilter+label:before {
    content: "";
    position: absolute;
    left: 5%;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: background-color 0.2s;
}

.custom-checkbox+label:before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: background-color 0.2s;
}

/*
.custom-checkboxFilter:checked+label:before {
    background: #134273 !important;
    border-color: #134273 !important;
}
*/
.custom-checkboxFilter:checked+label {
    background: #c1eec2 !important;
}

.custom-checkboxFilter:checked+.labelForm:before {
    background: #59be5b !important;
    border-color: #7dd27e !important;
}

.labelForm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.5rem;
}

/* List item */
li {
    list-style: none !important;
}

/* Height class */
.b {
    min-height: 70vh;
    height: auto;
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: #e9e9e9;
}

.bloquear-contenido {
    pointer-events: none;
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
}