:root {
    --negro: #000;
    --blanco: #fff;

    --gris-100: #F4F4F4;
    --gris-200: #EFEFEF;
    --gris-300: #ECECEC;
    --gris-400: #C2C2C2;
    --gris-600: #707070;
    --gris-700: #787878;

    --rojo-300: #E53308;
    --rojo-500: #F42C13;

    --verde-300: #008A45;
    --verde-400: #009454;
    --verde-500: #007A4D;
}

@font-face {
    font-family: 'NovaBold';
    src: url('/fonts/proximanova-bold.otf?version=1') format('opentype');
}

@font-face {
    font-family: 'NovaMedium';
    src: url('/fonts/proxima-nova-400.woff2?version=1') format('woff2');
}

@font-face {
    font-family: 'NovaLight';
    src: url('/fonts/proxima-nova-300.woff2?version=1') format('woff2');
}

.nova-bold {
    font-family: NovaBold;
}

.nova-light {
    font-family: NovaLight
}

.nova-medium {
    font-family: NovaMedium
}

html, body {
    font-family: NovaLight, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: unset;
    text-decoration: none;
    padding: 0;
    user-select: none !important;
    -webkit-user-select: none !important;
}

a:hover{
    color: unset;
}

p {
    margin: 0;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

h1, h2, h3, h4, h5 {
    margin: 0;
}

input {
    outline: none;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
}


p {
    margin: 0;
}

.place-content-center {
    justify-content:center;
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.pointer {
    cursor: pointer;
}

.icono {
    background-repeat: no-repeat;
    background-size: contain;
}

.fondo-gris {
    background-color: var(--negro);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    animation: mostrar-80 0.35s forwards;
}

#components-reconnect-modal {
    display: none !important;
}

#components-reconnect-modal h5 {
    visibility: hidden;
    position: relative;
}

#components-reconnect-modal h5::before {
    display: block;
    visibility: visible;
    text-align: center;
}

#components-reconnect-modal button {
    display: block;
    position: relative;
    width: 115px;
    visibility: hidden;
}

#components-reconnect-modal button::before {
    content: "Reintentar";
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0;
    height: 32px;
    width: 100px;
    border: 1px solid var(--verde-300);
    border-radius: 4px;
    box-shadow: none;
    transition: border-radius .3s;
    color:var(--verde-300);
}

@media (max-width: 992px) {
    #components-reconnect-modal h5::before {
        content: "Sin acceso a internet.\A Por favor, verifica tu conexion";
        max-width: 260px;
        margin: 32px auto -12px;
        white-space: pre;
       
    }
}

@media (min-width: 992px) {
    #components-reconnect-modal h5::before {
        content: "Sin acceso a internet. Por favor, verifica tu conexion";
        margin-bottom: -16px;
    }
}