html{
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

.breadcrumbs{
    display: flex;
    flex-flow: row wrap;
    list-style: none;
}

.breadcrumbs li{
    margin: 0 .2rem;
    color: #999898;
}
.breadcrumbs li a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    color: #22356C;
}

/* Not Found page style */

.not-found{
    position: relative;
    height: 100vh;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url('https://rdvial.gob.do/wp-content/uploads/2023/10/slide3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

}
.not-found > .img-container > img{
    max-width: 50%;
}

.not-found > .not-found-title{
    position: absolute;
    top: 0;
    width: 100%;
    bottom: 0;
    background: rgba(0,0,0,.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.not-found > .not-found-title > h3{
    color: #fff;
    font-size: 2rem;
    margin-bottom: .5rem;
}
.not-found > .not-found-title > button{
    width: 150px;
    padding: 1rem;
    border-style: none;
    border-radius: 0.2rem;
    margin: 0 1rem;
    background-color: #002952;
    transition: background-color .3s linear;
}
.not-found > .not-found-title > button > a{
    text-decoration: none;
    font-size: 1.5rem;
    color: #fff;
    transition: color .2s linear;
}

.not-found > .not-found-title > button:hover{
     background-color: #fff;
}
.not-found > .not-found-title > button:hover > a{
        color: #002952;
}

@media  screen and (min-width: 100px) and (max-width: 768px){
    .capa{
        display: none !important;
    }
    /* ===================================================================== */
    /* ===== Seleccionar elementos por página, estilos versión móvil ======= */
    /* ===================================================================== */
    .seleccion-elementos{
        background-color: #fff;
    }
    
    .seleccion-elementos > form{
        display: flex;
        flex-direction: column;
    }
    .seleccion-elementos > form > span{
        width: 100%;
    }
    .seleccion-elementos > form > select{
        width: 100% !important;
        padding: 0.5rem;
        border-radius: 0.2rem;
        margin-top: 0.5rem;
    }
}


