#boton_enviar_img {
    background-color: transparent;
    background-image: url('assets/images/enviar.png');
    background-size: cover;
  }
.inline{
    width: 100%;
    display: flex;
}
.columna1{
    margin: 5px;
    width: 95%;
}
.columna2 {
    margin: 10px;
    width: 5%;
}
.columna3 {
    margin: 20px 5px 5px;
    width: 5%;
}
#mensaje-emergente {
    /* Posicionaremos el mensaje en el centro de la ventana */
    position: absolute;
    top: 80%; left: 75%;
    /* Configuramos ancho y alto deseado */
    width: 22em; height: 100px;
    /* Ahora debemos desplazar la mitad del ancho y alto */
    margin-left: -75px; margin-top: -50px;
    /* Inicialmente debe estar oculto */
    visibility: hidden;
    opacity: 0;
    /* Animamos la salida de la invisibilidad y opacidad */
    transition: visibility 0s, opacity 0.5s linear;
    /* Configuramos el aspecto del mensaje */
    border-radius: 8px;
    border: 4px solid var(--bordermain);
    background-color: var(--bg);
    color: var(--main);
    padding: 5px 10px;
    /* Centramos el texto del contenido */
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 980px) {
    #mensaje-emergente {
        /* Posicionaremos el mensaje en el centro de la ventana */
        top: 90%; left: 35%;
    }
}
.imgcategoria{
    width: 8em; 
    height: 8em; 
    object-fit: 
    contain;object-position: 
    center center; padding:.5em;
    overflow: hidden;
}
.scroll::-webkit-scrollbar {
    display: none;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
    max-width: 99.9%;
    max-height: 25em;
    position: relative;
    margin: auto;
}
@media screen and (max-width: 1680px) {
    .slideshow-container {
        margin-top:-2em;
    }
}
@media screen and (max-width: 980px) {
    .slideshow-container {
        margin-top:-1.3em;
    }
}
/* Hide the images by default */
.mySlides {
    display: none;
}
.mySlides img{
    height: 25em;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@media screen and (max-width:900px){
    .mySlides img{
        height: 8em;
    }
    #circulos{
        display: none;
    }
}

#menuinicio {
    background: #ffffff;
    color: #FFF;
    height: 2em;
    width: 100%;
    padding-left: 18px;
    border-radius: 0px;
    justify-content: center;
    align-items: center;
    display: flex;
}
#menuinicio ul, #menuinicio li {
    margin: -1px auto;
    padding: 0;
    list-style: none
}
#menuinicio ul {
    width: 100%;
}
#menuinicio li {
    float: left;
    display: inline;
    position: relative;
}
#menuinicio a {
    display: block;
    line-height: 5em;
    padding: 0 14px;
    text-decoration: none;
    font-weight: bold;
    color: #FF7803;
    font-size: 16px;
    
}
#menuinicio a.dropdown-arrow:after {
    content: "\25BE";
    margin-left: 5px;
}
#menuinicio input {
    display: none;
    margin: 0;
    padding: 0;
    height: 35px;
    width: 100%;
    opacity: 0;
    cursor: pointer
}
#menuinicio label {
    display: none;
    line-height: 35px;
    text-align: center;
    position: absolute;
    left: 35px
}
#menuinicio label:before {
    font-size: 1.6em;
    content: "\2261"; 
    margin-left: 20px;
}
#menuinicio ul.sub-menuinicios{
    height: auto;
    overflow: hidden;
    width: 170px;
    background: #C94300;
    position: absolute;
    z-index: 99;
    display: none;
}
#menuinicio ul.sub-menuinicios li {
    display: block;
    width: 100%;
}
#menuinicio ul.sub-menuinicios a {
    color: #FFFFFF;
    font-size: 16px;
}
#menuinicio li:hover ul.sub-menuinicios {
    display: block
}
#menuinicio ul.sub-menuinicios a:hover{
    background: #F2F2F2;
    color: #444444;
}
@media screen and (max-width: 800px){
    #menuinicio {position:relative}
    #menuinicio ul {background:#111;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none}
    #menuinicio ul.sub-menuinicios {width:100%;position:static;}
    #menuinicio ul.sub-menuinicios a {padding-left:30px;}
    #menuinicio li {display:block;float:none;width:auto;}
    #menuinicio input, #menuinicio label {position:absolute;top:0;left:0;display:block}
    #menuinicio input {z-index:4}
    #menuinicio input:checked + label {color:white}
    #menuinicio input:checked + label:before {content:"\00d7"}
    #menuinicio input:checked ~ ul {display:block}
}