:root{
    --iconSize-:27px;
}
body,html{
    margin: 0;
    /*font-family: 'Segoe UI';*/
    background-color: #E9E9E9;
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #141731;
    align-items:center;
    overflow-y:overlay;
}
.MenuList{
    z-index: 20;
}
.btn {
    width: 120px;
    height: 40px;
    border: none;
   
    border-radius: 8px;
    background-color: #141731;
    color: white;
    margin: 10px;
}
.btnCancelar {
    width: 120px;
    height: 40px;
    border: 1px solid #141731;
    
    border-radius: 8px;
    background-color: white;
    color: #141731;
    margin: 10px;
}
header{
    z-index: 5;
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 50px 50px;
    background-color: #fff;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.144);
    color: black;
}
.homeIcon{
    background-image: url('/Logos/Logo Vertical.png');
    background-repeat: no-repeat;
    background-size: 90px;
    height: 70px;
    background-position: center 50%;
    
    padding-left: 110px;
    width: 80px;
    cursor: pointer;
}
#vermenu{
    opacity: 0;
    height: 60px;
    width: 60px;
}
.formBtns{
    display: flex;
    justify-content: center;
}
.navContainer{
    
    display: flex;
    align-items: center;
}
hr{
    margin-bottom: 5px;
    margin-top: 5px;
}
.modal{
    background-color: rgba(128, 128, 128, 0.39);
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: collapse;
    transition: .2s all;
}
.modalErrors{
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.248);
    padding: 15px;
    text-align: center;
}
.closeModalBtn{
    display: flex;
    justify-content: end;
}
.closeModalBtn>button{
    background-color: white;
    background-image: url(/Assets/MdiWindowClose.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    border: 0;
}
.closeModalBtn>button:hover{
    cursor: pointer;
}
.errorList{
    color: red;
    list-style: none;

    text-align: left;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}
main{
    background-color: #fff;
    height: calc(100% - 90px);
    border-radius: 50px 50px 0 0;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.144);
    overflow-y:overlay;
}
.backgroundimage{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-image: url(/Assets/iconogas.png);
    background-position: center top;
    background-repeat: repeat;
    background-size: 15%;
    filter: blur(0px) saturate(.8) opacity(.05);
}
main{
    z-index: 10;
}
.MenuList{
    font-size: 15px;
}
.formResume{
    position: sticky;
    bottom: 0;
    background-color: white;
    text-align: end;
}
@media only screen and (min-width:860px){
    .checkDiv{
        height: 70px;
        display: flex;
        align-items: center;
    }
    nav{
        display: flex;
        align-items: center;
    }
    nav>a{
        margin: 5px;
        height: 40px;
        padding-right: 10px;
        display: flex;
        align-items: center;
        background-repeat: no-repeat;
        background-size: var(--iconSize-);
        background-position: 10px 50%;
        padding-left: 45px;
        text-decoration: none;
        color: black;
        transition: .3s all;
        border-radius: 20px;
    }
    .MenuList{
        padding-right: 30px;
    }
    nav>a:hover{
        box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.144);
    }
    #vermenu{
        visibility: collapse;
        display: none;
    }
    button:hover{
        cursor: pointer;
    }
    input[type="submit"]{
        cursor: pointer;
    }

}
@media only screen and (max-width:860px){
    .checkDiv{
        display: flex;
        align-items: center;
        padding: 5px;
        width: 50px;
        height: 60px;
        margin-right: 30px;
        background-position: 50% 50%;
        background-image: url(/Assets/IcRoundMenu.svg);
        background-size: 50px;
        background-repeat: no-repeat;
    }
    .checkDiv{
        visibility: visible;
    }
    nav{
        position: absolute;
        top: 70px;
        right: 48px;
        display: flex;
        align-items: center;
        flex-direction: column;
        visibility: visible;
        background-color: #ffffff;
        border-radius: 0 0 10px 10px;
    }
    .MenuList{
        visibility: collapse;
        box-shadow: 0px 2.5px 2px 1px rgba(0, 0, 0, 0.144);
    }
    nav>a{
        margin: 5px;
        height: 40px;
        width:80px;
        padding-right: 10px;
        display: flex;
        align-items: center;
        background-repeat: no-repeat;
        background-size: var(--iconSize-);
        background-position: 10px 50%;
        padding-left: 45px;
        text-decoration: none;
        color: black;
        border-radius: 20px;
    }
    nav>a:hover{
        box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.144);
    }
    main{
        background-color: #fff;
        height: calc(100% - 90px);
    }
}
@media only screen and (max-width:420px){
    main{
        height: calc(100% - 80px);
    }
    main{
        margin-top: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
#vermenu:checked + .MenuList{
    visibility: visible;
}

::-webkit-scrollbar {
    width: 4px; /* Customize this value */
}

/* Track/bar color and handle style */
::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px; /* Rounded corners for the handle */
    position: absolute;
}
.HeaderDelMain {
    padding: 5px;
    margin-left: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .HeaderDelMain h1 {
        margin-left: 40px;
    }
.informacionLink{
    background-image: url(/Assets/IcRoundPropane.svg);   
}
.publicidadLink{
    background-image: url(/Assets/IcRoundNewspaper.svg);   
}
.encuestasLink{
    background-image: url(/Assets/IcRoundPoll.svg);    
}
.resultadosLink{
    background-image: url(/Assets/IcRoundOutbox.svg);   
}
.historialLink{
    background-image: url(/Assets/IcBaselineWorkHistory.svg);   
}
.logoutLink{
    background-image: url(/Assets/MdiLogout.svg);
    background-position: center;
}
input[type="checkbox"] {
    margin-right:auto;
}
.inputStyleHistorial {
    border: 1.5px #141731 solid;
    padding: 5px;
    color: black;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    width:200px;
    text-indent: 1%;
}
.inputStyle {
    border: 1.5px #141731 solid;
    padding: 5px;
    color: black;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    text-indent: 1%;
}
.inputStyleInfo {
    border: 1.5px #141731 solid;
    padding: 5px;
    color: black;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    text-indent: 1%;
    margin-left:5px;
}
.labelEstado {
    margin-left: 40px; 
}
form {
    display: grid;
    justify-content: left;
    align-items: center;
    row-gap: 5px;
    margin: 30px;
}
.NoSubscriptionDiv1 {
    position: relative;
}
.NoSubscriptionDiv {
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
    height: 100vh;
}
.NoSubscriptionDiv a {
    align-content:center;
    align-items :center;
}
.NotBody {
    font-family: Arial, sans-serif;
    display: flex;
    
    justify-content: center;
    align-items: center;
    height: 70vh;
    margin: 0;
    
}

.subscription-container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.description {
    color: #666;
    margin-top: 10px;
}

.cost {
    font-size: 1.5em;
    margin: 20px 0;
}

.pay-button {
    padding: 10px 20px;
    font-size: 1.1em;
    color: #fff;
    background-color: #141731;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .pay-button:hover {
        background-color: #45a049;
    }
.navFiltros {
    display: inline-flex;
    flex-wrap: wrap; /* Permite que los elementos se ajusten a la línea */
    gap: 20px; /* Espacio entre los elementos */
    align-items: end; /* Alinea verticalmente */
    justify-content: space-between; /* Distribución uniforme horizontalmente */
    padding: 20px; /* Espaciado interno */
    border: 1px solid #ccc; /* Bordes opcionales */
    border-radius: 8px; /* Bordes redondeados */
    background-color: #f9f9f9; /* Fondo claro */
}

    .navFiltros label {
        flex: 1 1 50px; /* Ocupa espacio proporcional con un ancho mínimo */
        text-align: right; /* Alinea el texto del label a la derecha */
        margin-right: 10px; /* Espaciado a la derecha del label */
    }

    .navFiltros select {
        flex: 3 1 ; /* Más espacio relativo para los select */
        padding: 5px; /* Espaciado interno */
        font-size: 14px; /* Tamaño de fuente */
        border: 1px solid #ccc; /* Bordes */
        border-radius: 4px; /* Bordes redondeados */
    }

@media (max-width: 600px) {
    .navFiltros {
        flex-direction: column; /* Cambia a formato de columna en pantallas pequeñas */
    }

        .navFiltros label {
            text-align: left; /* Ajusta la alineación */
            margin-right: 0; /* Elimina el espaciado extra */
        }

        .navFiltros select {
            width: 100%; /* Abarca todo el ancho disponible */
        }
}
.back-button {
    /*background: #f0f0f0 ;*/
    border: none;
    /*border-radius: 50%;*/
    width: 40px;
    height: 40px;   
    font-weight:bolder;
    font-size: 40px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration:none;
}

    .back-button:hover {
        background: #ddd;
    }