#banner {
    background-image: url(../img/fondobanner.jpg);
    /*background-position: center center;
    background-repeat: no-repeat;
    color: white;*/
    background-position: center center;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: white;
}

#banneritems {
    width: 100%;
    text-align: center;
    /*background: rgba(255, 255, 255, 0.1);*/
}

.fondotransp {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}
  
@keyframes fade {
    from {opacity: 0; transform: translateX(1%);}
    to {opacity: 1; transform: translateX(0%);}
}

.centraritem {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.banneritem {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    animation-name: fade;
    animation-duration: 1s;
    height: 350px;
    /*background: rgba(255,255,255,0.1);*/
    border-radius: 10px;
    padding: 15px;
    overflow: hidden;
}

#dots {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}

#dots button {
    width: 50px;
    height: 40px;
    margin: 0px 5px;
    box-shadow: 2px 2px 10px;
    border-radius: 5px;
    padding: 0;
    border: 0;
}

#dots button:hover {
    background: rgb(255, 255, 255);
}

.si {
    background: rgb(59, 228, 228);
    border: 1px solid black;
}

.no {
    background: gray;
    border: 1px solid black;
}

@media(min-width:1024px) {
    #dots button {
        width: 70px;
        height: 13px;
    }
}

/*@media(min-width:1920px){
    #banner {
        background-size: 100%;
    }
}*/