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;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

md-progress-circular{
    position: absolute;
}

.weather-body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.weather-body-hospital{
    width: 98%;
    height: 97%;
}

.weather-current {
    background: white;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 60%;
}

.weather-current-left{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 100%;
    flex-direction: column;
    padding-left: 8%;
}

.weather-current-left div{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
}

.weather-current-left div h1{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #38393f;
    text-transform: uppercase;
    font-size: 4vw;
    font-family: 'DINDPro-Light';
    font-weight: normal;
}

.weather-current-left div span{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #9a97a0;
    text-transform: uppercase;
    font-size: 3vw;
    font-family: 'DINDPro-Light';
    font-weight: normal;
}

.weather-current-right{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    height: 100%;
    flex-direction: row;
}

.weather-current-right figure{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    height: 50%;
}

.weather-current-right figure img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 80%;
    object-fit: cover;
}

.weather-current-right p{
    margin: 0;
    width: 1%;
    height: 35%;
    border-left: 4px solid #ffce00; 
}

.weather-current-right span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    color: #9db5d1;
    font-size: 10vw;
    font-family: 'DINDPro-Light';
}

.weather h2 {
    color: white;
    font-size: 3em;
    margin-bottom: 1em;
    padding: 1.2em;
    padding-bottom: 0;
    text-shadow: 1px 2px 3px rgba(0,0,0,1);
}

.weather img {
    height: 8em;
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20%;
    color: white;
    font-size: 1.5em;
    background: #9db5d1;
    text-transform: uppercase;
}

.low {
    color: #808080 !important;
    font-size: 1.7vw;
    font-family: var(--font2);
    font-weight: normal;
}

.lowHighSeparator{
    margin-left: 5%;
    margin-right: 5%;
    color: #808080;
}

.high {
    color: black !important;
    font-size: 1.7vw;
    font-family: var(--font2);
    font-weight: normal;
}

.forecast {
    background: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40%;
    flex-direction: row;
}

.forecast div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14.285%;
    height: 100%;
    flex-direction: column;
    text-align: center;
}

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

.pantallaCarga{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
}

.pantallaCarga h2 {
    margin-bottom: 2em;
}/* NUEVO LOADING */

#loading-anim {
    display: flex;
    justify-content: center;
    align-items:center;
    width: 170px;
    height: 170px;
    background: url("../images/loading_anim.png") left center;
    -webkit-animation: play_loading 3s steps(8) infinite;
    -moz-animation: play_loading 3s steps(8) infinite;
    -o-animation: play_loading 3s steps(8) infinite;
    animation: play_loading 3s steps(8) infinite;
    z-index: 5001;
    margin-left: -30px;
    margin-top: -30px;
}

@-webkit-keyframes play_loading {
    from { background-position:    0px; }
    to { background-position: -1360px; }
}

@-moz-keyframes play_loading {
    from { background-position:    0px; }
    to { background-position: -1360px; }
}

@-ms-keyframes play_loading {
    from { background-position:    0px; }
    to { background-position: -1360px; }
}

@-o-keyframes play_loading {
    from { background-position:    0px; }
    to { background-position: -1360px; }
}

@keyframes play_loading {
    from { background-position:    0px; }
    to { background-position: -1360px; }
}

/* FIN NUEVO LOADING */
