/*
* TODAS LAS REGLAS ORDENADAS ALFABETICAMENTE
* 1º Reglas con '@'
* 2º Reglas de elemento
* 3º Reglas de clase
* 4º Reglas de id
*/

.webcentral{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}

.home-base{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90%;
    flex-direction: column;
}

.header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10%;
    flex-direction: row;
}

.header-title{
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

/* FUENTES */

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

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

/* FUENTE GLOBER */

@font-face {
    font-family: 'GloberRegular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/GloberRegular.otf') format('truetype');
}

@font-face {
    font-family: 'GloberSemiBold';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/GloberSemiBold.otf') format('truetype');
}

@font-face {
    font-family: 'GloberBold';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/GloberBold.otf') format('truetype');
}

a {
    text-decoration: none !important;
}

article {
    display: block;
}

aside {
    display: none;
}

body {
    background: white;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    overflow: hidden;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

/*SURVIVOR*/

.survivorAlert {
    text-align: center;
}

.survivorAlert-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.survivorAlert-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10%;
    width: 100%;
    background: #3b98e0;
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.survivorAlert-title h2 {
    font-size: 3em;
    margin: 0;
    margin-left: .5em;
}

.survivorAlert img {
    width: 35vw;
}

.survivorAlert figure {
    display: inline-block;
    margin: 2em 1em;
    outline: 0;
}

.survivorAlert figcaption {
    font-size: 4em;
}

.survivorAlert-user{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    width: 37.5%;
    height: 100%;
}

.survivorAlert-user span{
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 95%;
    color: #46546a !important;
    font-size: 2vw;
    text-transform: uppercase;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    -webkit-box-pack: center;
    font-weight: normal !important;
    padding-left: 5%;
    padding-right: 5%;
    font-family: 'GloberRegular';
}

.survivorAlert-time{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    width: 37.5%;
    height: 100%;
}

.survivorAlert-time .pacienteCambiado{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: darkred;
    border: 3px solid darkred;
    border-radius: .3em;
    width: 80%;
    height: 70%;
    font-size: 1.5vw;
    padding: .3em;
    color: white;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    -webkit-box-pack: center;
}

.survivorAlert-time .pacienteVerificado{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: green;
    border: 3px solid darkgreen;
    border-radius: .3em;
    width: 80%;
    height: 70%;
    font-size: 1.7vw;
    padding: .3em;
    color: white;
    text-transform: uppercase;
}

.survivorAlert-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2vw;
    width: 25%;
    height: 100%;
}

.survivorAlert-icon span{
    color: #3a546b !important;
    font-weight: normal !important;
}

.survivorAlert-icon figure{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.survivorAlert-icon figure img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 80%;
    object-fit: scale-down;
}

.survivorAlert-btn:focus{
    border: 10px solid #88c6f9;
    animation: blinkImg .5s step-end infinite alternate;
}

.survivorAlert-btn:focus figcaption{
    background: #2f5c82;
    color: white;
}

.survivorAlert-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 39%;
    height: 65%;
    flex-direction: column;
    border: 10px solid white;
    border-radius: .5em;
    box-shadow: 2px 2px 12px 1px #80929b;
    background: white;
}

.survivorAlert-btn img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80%;
    border-radius: .5em;
}

.survivorAlert-btn figcaption {
    padding-top: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20%;
    background: white;
    text-transform: uppercase;
    font-size: 3vw;
    outline: 0;
    font-family: 'GloberBold';
}

.survivorAlert-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    background: #e7e7e7;
}

.survivorAlert-content-subtitle{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 15%;
    background: #e7e7e7;
}

.survivorAlert-content-body{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 85%;
}

.survivorAlert-content-body form{
    position: absolute;
    opacity: 0;
}

#survivorAlert-contador {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2vw;
    color: rgb(57, 83, 105) !important;
    font-weight: normal;
    font-family: 'GloberSemiBold';
}

.survivorAlert-actions {
    display: flex;
    justify-content: space-around;
}

.survivorAlert-actions img {
    border: 5px solid black;
    border-radius: 21px;
    box-shadow: 5px 3px 20px 5px;
}

/*SEGUNDA VISTA*/

.survivorCadena-supervivencia {
    height: 97%;
    width: 99%;
    display: inline-flex;
    flex-wrap: wrap;
    overflow: auto;
    justify-content: center;
    align-items: center;
    background: #e7e7e7;
}

.survivorCadena-supervivencia .survivorCadena-up {
    margin: 0;
    display: flex;
    padding: 0;
    font-size: 2vw;
    justify-content: center;
    text-transform: uppercase;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 70%;
    color: black !important;
    background: white;
    border-radius: .3em;
    flex-direction: row;
    box-shadow: none;
}

.survivorCadena-supervivencia .survivorCadena-up figure{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
}

.survivorCadena-supervivencia .survivorCadena-up figure img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 70%;
    object-fit: scale-down;
}

.survivorCadena-supervivencia .survivorCadena-up span{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 70%;
    font-size: 1.8vw;
    padding-right: 10%;
    text-align: left;
    height: 100%;
    color: #46546a !important;
    font-family: 'GloberBold';
}

.survivorCadena-supervivencia li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
    height: 33%;
    outline: 0;
}

.survivorCadena-supervivencia li div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: 90%;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    position: relative;
    outline: 0;
    border-radius: .5em;
    flex-direction: column;
    box-shadow: 2px 2px 12px 1px #80929b;
}

.survivorCadena-supervivencia p{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30%;
    font-size: 2vw;
    color: white;
    padding-top: 1%;
    margin: 0 !important;
    font-family: 'GloberBold';
}

.survivorCadena-supervivencia .survivorCadena-retry{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30%;
    font-size: 2vw;
    color: white;
    padding-top: 1%;
    margin: 0 !important;
    text-transform: uppercase;
}

.survivorCadena-off div{
    border: 5px solid #706f6f;
    background: #706f6f;
}

.survivorCadena-phone-rojo div{
    border: 5px solid #a23737;
    background: #a23737;
}

.survivorCadena-phone-verde div{
    border: 5px solid #5e9137;
    background: #5e9137;
}

.survivorCadena-phone-amarillo div{
    background: #e8bb00;
    border: 5px solid #e8bb00;
}

.survivor-active div{
    border: 5px solid #5e9137;
    background: #5e9137;
}

/* FIN SURVIVOR */