/* #region STYLES */
/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    background-color: #ffffff;
}

body.modal-open {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

/* Layout principal */
.contenedor-principal {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
}

.formulario {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 5px;
}

/* Título y subtítulo */
.form-titulo {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 32px;
    margin: 0 0 4px 0;
}

.form-subtitulo {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin: 0 0 25px 0;
}

/* CONTENEDOR DE COLUMNAS */
.form-columns {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.form-column {
    width: 100%;
    max-width: 370px;
}

.form-column+.form-column {
    margin-top: 8px;
}

/* Campos genéricos */
.campo {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
}

/* Soy... solo select */
.campo-perfil-select {
    display: flex;
    margin-bottom: 0;
}

.campo-perfil-select.tiene-valor select {
    font-weight: 700;
}

/* Campos flotantes texto */
.campo.flotante .campo-control {
    position: relative;
    height: 48px;
    min-height: 48px;
}

.campo.flotante input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 48px;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    background-color: #ffffff;
    padding: 18px 40px 8px 12px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #000000;
    outline: none;
}

.campo.flotante input::placeholder {
    color: transparent;
}

.campo.flotante label {
    position: absolute;
    left: 12px;
    right: 40px;
    /* evita solapar el icono de validación */
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #000000;
    pointer-events: none;
    transition: all 0.18s ease;
    white-space: normal;
    /* permite multilínea */
    line-height: 1.2;
}

.campo.flotante input:focus+label,
.campo.flotante input:not(:placeholder-shown)+label {
    top: 4px;
    transform: translateY(0);
    font-size: 13px;
    color: #737373;
}

.campo.flotante:focus-within input {
    border-color: #787878;
    border-width: 2px;
}

.campo.flotante input:not(:placeholder-shown) {
    font-weight: 700;
}

/* Icono validación texto */
.icono-validacion {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.campo.flotante.valid input {
    border-color: #40c85d;
    border-width: 2px;
}

/* check verde */
.campo.flotante.valid .icono-validacion {
    background-image: url('https://unpkg.com/lucide-static@0.575.0/icons/check.svg');
    filter: invert(62%) sepia(60%) saturate(500%) hue-rotate(90deg) brightness(90%);
}

.campo.flotante.invalid input {
    border-color: #ff0000;
    border-width: 2px;
    color: #ff0000;
}

/* X rojo: plus rotado 45deg */
.campo.flotante.invalid .icono-validacion {
    background-image: url('https://unpkg.com/lucide-static@0.575.0/icons/plus.svg');
    transform: translateY(-50%) rotate(45deg);
    filter: invert(18%) sepia(99%) saturate(7481%) hue-rotate(1deg) brightness(105%);
}

/* Mensajes de error */
.mensaje-error {
    display: block;
    min-height: 16px;
    margin-top: 1px;
    font-size: 13px;
    color: #ff0000;
    visibility: hidden;
}

.campo.invalid .mensaje-error {
    visibility: visible;
}

/* Selects flotantes */
.campo-select {
    display: flex;
    flex-direction: column;
}

.campo-control-select {
    position: relative;
    height: 48px;
    min-height: 48px;
    overflow: visible;
    /* dropdown must escape the container */
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    background-color: #ffffff;
    cursor: pointer;
}

/* Active/focus state on wrapper */
.campo-select:focus-within .campo-control-select {
    border-color: #787878;
    border-width: 2px;
}

.campo-select.valid .campo-control-select {
    border-color: #40c85d;
    border-width: 2px;
}

.campo-select.invalid .campo-control-select {
    border-color: #ff0000;
    border-width: 2px;
}

.campo-select select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 48px;
    border-radius: 4px;
    border: none;
    padding: 18px 40px 8px 12px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    background-color: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 2;
    /* above the wrapper background, below pseudo-trigger */
    display: flex;
    align-items: center;
}

/* Override global select/input width rules inside the form */
.formulario .campo-control-select select,
.formulario .pseudo-native-search {
    width: 100% !important;
}

/* select usado con pseudo-trigger:
   Visualmente invisible — el borde lo pone el campo-control-select wrapper.
   JS puede seguir leyendo/escribiendo su value. */
.native-select-hidden {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none !important;
    background: transparent !important;
}

/* Span que muestra el valor seleccionado visible al usuario (punto 1) */
.pseudo-select-value-text {
    position: absolute;
    left: 14px;
    right: 36px;
    top: 18px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #000000;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
    display: none;
    /* hidden until tiene-valor */
}

.campo-select.tiene-valor .pseudo-select-value-text {
    display: block;
}

/* limitar visualmente área a 7 opciones */
.select-scroll-7 {
    max-height: calc(7 * 2.4em);
    overflow-y: auto;
}

/* Label flotante select */
.campo-select label {
    position: absolute;
    left: 12px;
    right: 32px;
    /* evita solapar el chevron */
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #000000;
    pointer-events: none;
    transition: all 0.18s ease;
    white-space: normal;
    line-height: 1.2;
}

/* Chevron */
.campo-select .campo-control-select::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('https://unpkg.com/lucide-static@0.575.0/icons/chevron-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.campo-select:focus-within label {
    top: 4px;
    transform: translateY(0);
    font-size: 13px;
    color: #737373;
}

.campo-select.tiene-valor label {
    top: 4px;
    transform: translateY(0);
    font-size: 13px;
    color: #737373;
}

/* Select válido / inválido — borders on wrapper, chevron color */
.campo-select.valid .campo-control-select::after {
    background-image: url('https://unpkg.com/lucide-static@0.575.0/icons/chevron-down.svg');
    filter: invert(62%) sepia(60%) saturate(500%) hue-rotate(90deg) brightness(90%);
}

.campo-select.abierto .campo-control-select::after,
.campo-select.pseudo-open .campo-control-select::after {
    background-image: url('https://unpkg.com/lucide-static@0.575.0/icons/chevron-up.svg') !important;
    filter: none !important;
}

.campo-select.invalid .campo-control-select::after {
    filter: invert(18%) sepia(99%) saturate(7481%) hue-rotate(1deg) brightness(105%);
}

/* ===== Pseudo-select nativo ===== */
/* El trigger cubre TODO el campo-control-select para que el click
   funcione en cualquier punto del contenedor */
.pseudo-native-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 3;
}

/* Dropdown custom */
.pseudo-native-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 20;
    flex-direction: column;
    overflow: hidden;
}

.pseudo-native-dropdown.select-scroll-7 {
    max-height: none;
    overflow: visible;
}

.pseudo-native-options {
    max-height: calc(7 * 2.4em);
    overflow-y: auto;
    flex: 1 1 auto;
}

.pseudo-native-search {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 4px 4px 0 0;
    padding: 8px 10px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    box-sizing: border-box;
    background-color: #ffffff;
    -webkit-appearance: none;
    appearance: none;
}

.pseudo-native-search:focus {
    border-bottom-color: #787878;
    background-color: #ffffff;
}

.pseudo-native-search:valid {
    background-color: #ffffff;
}

.pseudo-native-search:-webkit-autofill,
.pseudo-native-search:-webkit-autofill:hover,
.pseudo-native-search:-webkit-autofill:focus {
    -webkit-text-fill-color: #000000;
    box-shadow: 0 0 0 1000px #ffffff inset;
    transition: background-color 9999s ease-in-out 0s;
}

.campo-select.pseudo-open .pseudo-native-dropdown {
    display: flex;
}

.campo-select.open-up .pseudo-native-dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 4px;
    flex-direction: column-reverse;
}

.campo-select.open-up .pseudo-native-search {
    border-bottom: none;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 4px 4px;
}

.pseudo-native-option {
    padding: 8px 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.pseudo-native-option:hover,
.pseudo-native-option[aria-selected="true"] {
    background-color: #f5f5f5;
}

.pseudo-option-flag {
    width: 20px;
    height: 14px;
    flex: 0 0 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.pseudo-option-text {
    font-size: 14px;
}

/* ===== Prefijo ===== */
.campo-prefijo {
    width: 160px;
    flex-shrink: 0;
}

/* Dropdown del prefijo más ancho para cubrir la fila completa */
.campo-prefijo .pseudo-native-dropdown {
    width: 370px;
    left: -2px;
    /* Compensar el borde de 2px del contenedor padre */
}

.campo-prefijo select {
    padding-left: 12px;
}

.prefijo-overlay {
    position: absolute;
    left: 12px;
    right: 32px;
    top: 10px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    background-color: transparent;
    visibility: hidden;
    z-index: 1;
}

.campo-prefijo.tiene-valor .prefijo-overlay {
    visibility: visible;
}

.campo-prefijo.tiene-valor select {
    color: transparent;
    text-shadow: none;
}

.prefijo-flag {
    width: 24px;
    height: 16px;
    flex: 0 0 24px;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
}

.prefijo-prefix {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.campo-prefijo.tiene-valor .prefijo-prefix {
    font-weight: 700;
}

.campo-prefijo label {
    z-index: 2;
}

.campo-prefijo.campo-select:focus-within label,
.campo-prefijo.campo-select.tiene-valor label {
    top: 2px;
}

/* Teléfono */
.campo-telefono {
    flex: 1 1 auto;
}

/* Fila prefijo + teléfono */
.fila-prefijo-telefono {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

/* ===== País ===== */
.campo-pais select {
    padding-left: 12px;
}

.pais-overlay {
    position: absolute;
    left: 12px;
    right: 32px;
    top: 10px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    background-color: transparent;
    visibility: hidden;
    z-index: 1;
}

.campo-pais.tiene-valor .pais-overlay {
    visibility: visible;
}

.campo-pais.tiene-valor select {
    color: transparent;
    text-shadow: none;
}

.pais-flag {
    width: 24px;
    height: 16px;
    flex: 0 0 24px;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
}

.pais-text {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.campo-pais.tiene-valor .pais-text {
    font-weight: 700;
}

.campo-pais label {
    z-index: 2;
}

.campo-pais.campo-select:focus-within label,
.campo-pais.campo-select.tiene-valor label {
    top: 2px;
}

/* ==== Negrita en seleccionados ==== */
.campo-calendario.tiene-valor select {
    font-weight: 700;
}

/* Campo Mi titulación de interés */
.campo-titulacion {
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pseudo-select-boton {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 48px;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    background-color: #ffffff;
    padding: 18px 32px 8px 12px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    text-align: left;
    cursor: pointer;
}

.pseudo-select-boton:focus-visible {
    outline: none;
}

.pseudo-select-texto {
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.campo-titulacion .campo-control-select {
    height: auto;
    min-height: 48px;
}

.campo-titulacion .pseudo-select-boton {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 18px 32px 8px 12px;
}

.campo-titulacion.valid .pseudo-select-boton {
    border-color: #40c85d;
    border-width: 2px;
}

.campo-titulacion.invalid .pseudo-select-boton {
    border-color: #ff0000;
    border-width: 2px;
}

.campo-titulacion.tiene-valor .pseudo-select-texto {
    font-weight: 700;
}

/* Toggle aviso legal */
.campo-toggle {
    display: flex;
    margin-bottom: 8px;
}

.toggle-wrapper {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.toggle-input {
    position: absolute;
    opacity: 0;
    width: 40px;
    height: 22px;
    left: 0;
    top: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-right: 10px;
    cursor: pointer;
}

.slider {
    position: absolute;
    inset: 0;
    background-color: #cccccc;
    border-radius: 999px;
    transition: background-color 0.25s;
}

.slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.25s;
}

.toggle-input:checked+.switch .slider {
    background-color: #40c85d;
}

.toggle-input:checked+.switch .slider::before {
    transform: translateX(18px);
}

.texto-aviso {
    font-size: 16px;
}

.texto-aviso a {
    color: #000000;
    text-decoration: underline;
}

/* Modales */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(115, 115, 115, 0.6);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-contenido {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 24px;
    position: relative;
    max-width: 540px;
    width: 100%;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

/* Botones cerrar modal */
.cerrar-modal,
.cerrar-modal-titulacion {
    border: none;
    background-color: transparent;
    cursor: pointer;
    width: 20px;
    height: 20px;
    padding: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 12 12' fill='none'><path d='M11.25 11.25L0.75 0.75M11.25 0.75L0.75 11.25' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
}

/* Cuerpo aviso legal */
.modal-cuerpo {
    font-size: 14px;
    line-height: 1.5;
}

.modal-cuerpo p {
    margin-top: 0;
    margin-bottom: 12px;
}

.modal-cuerpo a {
    color: #000000;
    text-decoration: underline;
}

/* Modal titulaciones */
.modal-titulacion-contenido {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-busqueda {
    margin-bottom: 8px;
}

.buscador-input-wrapper {
    position: relative;
}

.icono-buscar {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('iconos/buscar.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: -9999px;
    overflow: hidden;
}

.buscador-input {
    width: 100%;
    padding: 8px 36px 8px 36px;
    border-radius: 4px;
    border: 1px solid #b3b3b3;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.buscador-clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: none;
    background-color: transparent;
    background-image: url('iconos/cerrar-negro.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    padding: 0;
    display: none;
    text-indent: -9999px;
    overflow: hidden;
}

.modal-lista-titulaciones {
    margin-top: 8px;
    padding-right: 4px;
    overflow-y: auto;
    max-height: 60vh;
}

.area-titulaciones {
    margin-bottom: 16px;
}

.area-titulo {
    font-size: 14px;
    font-weight: 700;
    margin: 12px 0 4px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid #b3b3b3;
}

.item-titulacion {
    width: 100%;
    text-align: left;
    padding: 8px 0;
    border: none;
    background: none;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

.item-titulacion:hover,
.item-titulacion:focus-visible {
    background-color: #f5f5f5;
    outline: none;
}

/* Botón enviar */
.boton-enviar {
    width: 100%;
    max-width: 370px;
    height: 48px;
    background-color: #EDEDED;
    border: 1px solid #000000;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: not-allowed;
    color: #000000;
    margin-top: 0;
}

.boton-enviar:not(.boton-activo):hover {
    cursor: not-allowed;
}

.boton-enviar.boton-activo {
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
}

.boton-enviar.boton-activo:hover,
.boton-enviar.boton-activo:active {
    background-color: #ff0000;
    color: #ffffff;
}

.boton-enviar:disabled {
    background-color: #EDEDED;
    color: #000000;
    cursor: not-allowed;
    pointer-events: auto;
    /* allow cursor to show even when disabled */
}

/* ===== RESPONSIVE / DESKTOP 2 COLUMNAS ===== */
@media (min-width: 768px) {
    .formulario {
        max-width: 768px;
    }

    .form-columns {
        flex-direction: row;
        justify-content: space-between;
        gap: 18px;
    }

    .form-column {
        flex: 0 0 370px;
        max-width: 370px;
    }

    .form-column+.form-column {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .form-column {
        display: contents;
    }
}

/* Responsive mobile */
@media (max-width: 600px) {
    .contenedor-principal {
        padding: 16px 8px;
    }

    .form-titulo {
        font-size: 22px;
        font-weight: 600;
    }

    .form-subtitulo {
        font-size: 14px;
    }

    .fila-prefijo-telefono {
        gap: 16px;
    }

    .campo-prefijo {
        width: 140px;
    }

    .campo-prefijo .pseudo-native-dropdown {
        width: calc(100vw - 26px);
    }
}

/* #region LOADING */
#loadingContainer {
    display: none;
}

span[class^="dot-"] {
    opacity: 0;
}

.dot-one {
    animation: dot-one 2s infinite linear;
}

.dot-two {
    animation: dot-two 2s infinite linear;
}

.dot-three {
    animation: dot-three 2s infinite linear;
}

@keyframes dot-one {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dot-two {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dot-three {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

/* #endregion LOADING */

/* #region NO COURSE MESSAGE */
#messageNoCursoAdmision {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* #region TY PAGE */
.ty-page {
    width: 100%;
    text-align: center;
}

.ty-hero,
.ty-footer {
    display: flex;
    justify-content: center;
}

.ty-hero-image {
    display: block;
    padding: 0px;
    text-align: center;
    height: auto;
    width: 100%;
    border: 0px;
}

.ty-content {
    margin: 28px 20px 18px;
    text-align: center;
}

.ty-title,
.ty-subtitle {
    font-size: 26px;
    color: #ff0000;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.ty-title {
    margin-bottom: 0;
}

.ty-text {
    padding: 0px 6px;
    margin: 0;
    margin-top: 12px;
    font-family: Verdana, Geneva, sans-serif;
}

@media (min-width: 768px) {
    .ty-content {
        margin: 42px 42px 23px;
    }

    .ty-title,
    .ty-subtitle {
        font-size: 44px;
        line-height: 1.15;
    }

    .ty-text {
        padding: 0px 99px;
    }

    .ty-footer-image {
        padding: 0px;
    }
}

.ty-footer-image {
    display: block;
    padding: 0px;
    text-align: center;
    height: auto;
    max-width: 650px;
    width: 100%;
    object-fit: none;
}

.ty-footer {
    margin: 16px;
}

@media (max-width: 600px) {
    .ty-footer-image {
        padding: 0px 8px;
    }
}
/* #endregion TY PAGE */

.no-curso-text {
    text-align: left;
    padding: 0px 99px;
    margin-top: 32px;
}

.no-curso-text span {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 16px;
}

.bottom-image {
    display: block;
    padding: 0px;
    text-align: center;
    height: auto;
    max-width: 650px;
    width: 100%;
    border-top: 47px solid transparent;
    border-right: 0px;
    border-bottom: 0px;
    border-left: 0px;
    object-fit: none;
}

@media screen and (max-width: 768px) {
    .bottom-image {
        border-top: 15px solid transparent;
    }

    .no-curso-text {
        padding: 0px 20px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .bottom-image {
        border-top: 10px solid transparent;
    }

    .no-curso-text {
        padding: 0px 15px;
        margin-top: 15px;
    }

    .no-curso-text h3 {
        font-size: 18px;
    }

    .no-curso-text span {
        font-size: 14px;
    }
}

/* #endregion NO COURSE MESSAGE */

/* Scrollbar styling */
::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(70, 70, 70) auto;
}

/* #endregion STYLES */