html{ background-color: #F3F5F7; height:100dvh; margin: 0;}
body {
    max-width: 440px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    color:#FFF;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;

    background: url(img/bg.jpg) no-repeat center center;
    background-position: center;
    background-size: cover;
}
.logo{max-height: 75px;}
@media (max-width:600px){
    /*html{  height:93dvh;}
    body{  min-height: 93dvh;}*/
    html{  height:100dvh;}
    body{  min-height: 100dvh;}
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{color:#FFF;}
.header {
    padding: 10px;
    color: #009ade;
    text-align: center;
}

.footer {
    flex-shrink: 0;

    width:100%;
    max-width: 680px;
    text-align: center;
    background-color:rgba(22,71,100,0.8);
    
    padding-bottom: env(safe-area-inset-bottom, 10px);

}
.footer img{width:100%;}

.content {
    padding: 20px 10px 0px;
    flex: 1 0 auto;
}

.buttons .col-4 {
    padding-bottom: 20px;
}

.buttons .btn_text {
    text-align: center;
    padding-top: 5px;
    font-weight: 500;
    font-size:14px;
}

.btn1 {
    color: #ec5078;
}

.btn2 {
    color: #0182c3;
}

.btn3 {
    color: #70c0fb;
}

.btn4 {
    color: #8cc5e3;
}

.btn5 {
    color: #f2ab7f;
}

.btn6 {
    color: #9cccb4;
}

.back {
    line-height: 55px;
}

.news .item {
    border-radius: 25px;
    background-color: rgba(255,255,255,0.95);
    display: flex;
    padding:10px;
    margin-bottom:5px;
    align-items: center;
    font-size:12px;
    color: #3686b7;
}
.news .item .datehour{
    flex-basis: 80px;
    border-right: solid 2px #3686b7;
    margin-right:10px;
    min-width:80px;
}
.news .item .date {
    color: #3686b7;
    font-size: 20px;
    font-weight: bold;
    text-align: center;

}
.news .item .hour {
    color: #3686b7;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.btn_link{cursor:pointer;}
.btn_link img{cursor:pointer; width: 100px;}
.btn_link.disabled{cursor:default;}
.newlink{cursor:pointer;}
.newlink.disabled{cursor:default;}
.btn_link.disabled img{filter: grayscale(100%);opacity: 0.5;}
.pwa-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 16px 20px;
    z-index: 9999;
    max-width: 320px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: sans-serif;
}

.pwa-toast-content {
    display: flex;
    align-items: top;
    gap: 12px;
}

.pwa-toast img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.pwa-toast button {
    margin-left: auto;
    background: #007bff;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.pwa-toast button:hover {
    background: #0056b3;
}

#closePwaToast {
    margin-left: 8px;
    font-size: 18px;
    cursor: pointer;
    color: #999;
}

.hidden {
    display: none;
}
.pwa-toast-content p{margin-bottom:5px; color:#333;}

.btn-primary{background-color: #009ADE;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 0px;
    word-spacing: 0em;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: none;
    border-radius: 100px 100px 100px 100px;
    padding: 11px 30px 11px 30px;
    background-image: linear-gradient(125deg, #ECF9FF 0%, #009ADE 54%);}
#msg_error{margin-top:20px;}
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}
.spinner.hidden{display:none;}
.info{margin-top:5px;}
.info img{width: 100%}
.news-icon{width: 100%; max-width: 200px; padding-bottom: 10px;}
@keyframes spin {
    to { transform: rotate(360deg); }
}