#main-div{
    padding: 0;
    min-height: 100vh;
}
.flex-row-nowrap{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.flex-row-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.flex-column{
    display: flex;
    flex-direction: column;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.come-in {
    transform: translateY(200px);
    opacity: 0;
    animation: come-in 0.9s ease forwards;
    -webkit-animation: come-in 0.9s ease forwards;

}

.fadeInRightText {
    opacity: 0;
    animation: fadeInRightText 1s 1 forwards;
    -webkit-animation: fadeInRightText 1s 1 forwards ;
}
/*Animacion productos aparecen desde el centro*/
.zoom-in {
    opacity: 0;
    animation: zoom-in 1s 1 forwards;
    -webkit-animation: zoom-in 1s 1 forwards;
}
/*Animacion titulo desde la derecha*/
.appear-right {
    opacity: 0;
    animation: appear-right 1s 1 forwards;
}
/*Animacion titulo desde la izquierda*/
.appear-left {
    opacity: 0;
    animation: appear-left 1s 1 forwards;
}

/*Animacion titulo desde arriba*/
.appear-top {
    opacity: 0;
    animation: appear-top 1s 1 forwards;
}

/*Animacion titulo desde abajo*/
.appear-bottom {
    opacity: 0;
    animation: appear-bottom 1s 1 forwards;
}


.animacion-widget {
    opacity: 0;
    transition: opacity 750ms ease-in;
}

.animacion-widget.visible {
    opacity: 1;
}

.visibleEdicion {
    opacity: 1;
}

.estatica{
    opacity:1;
    animation:none;
}


/*.come-in:nth-child(odd) {*/
/*    animation-duration: 0.6s;*/
/*}*/

.already-visible {
    opacity: 1;
    left: 0;
    animation: none;
}

.already-invisible{
    opacity: 0;
}

.item-sombreado{
    box-shadow: 0px 7px 29px 0px #777777;
}

.lang-responsive:hover{
    animation: zoom-hover 0.2s 1 forwards;

}

.astext {
    text-transform: uppercase;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    white-space: nowrap;
}
.white-transparent-backround{
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
}
.astext::before {
    text-transform: uppercase;
    content: attr(value);
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    color: var(--main-color);
    overflow: hidden;
    transition: all 0.3s linear;
    white-space: nowrap;
}

.astext:hover::before{
    width: 100%;
}

.icon-enlace:hover{
    animation: zoom-hover 0.2s 1 forwards;
}

.lMsinSombreado{
    opacity: 0.6;
}

@keyframes come-in {
    to {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoom-in {
    from{
        transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }
    to{
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@keyframes appear-right {
    from{
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        opacity: 0;
    }
    to{
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes appear-left {
    from{
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        opacity: 0;
    }
    to{
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes appear-top {
    from{
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        opacity: 0;
    }
    to{
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes appear-bottom {
    from{
        transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        opacity: 0;
    }
    to{
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes apareceDcha {
    from {
        right: -100px;
        opacity: 0;
    }
    to{
        right: 0;
        opacity: 60%;
    }
}
@keyframes apareceIzda {
    from {
        left: -100px;
        opacity: 0;
    }
    to{
        left: 0;
        opacity: 60%;
    }
}

@keyframes zoom-hover {
    from {
        transform: scale(1);
        -ms-transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        border-color: var(--main-color);
    }
    to {
        transform: scale(1.1);
        -ms-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        border-color: var(--main-color);
    }

}

@-webkit-keyframes fadeInRightText {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

#countdown{
    position: fixed;
    display: flex;
    text-align: center;
    background-color: rgba( 55,	99,	202,0.8);
    left: 0;
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    flex-direction: column;
    animation: apareceIzda;
    animation-duration: 2s;

}

#countdown>form{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#countdown input{
   background-color: transparent;
    border-radius: 3px;
    border: none;
    max-width: 50%;
    text-align: center;
    font-size: large;
}
#countdown>form>div{
    max-width: 30%;
}

@media (min-width: 901px) {
    #countdown{
        height: inherit;
        width: 16.66666667%;
        right: 0;
        top: 25%;
        left: inherit;
        bottom: inherit;
        font-size: larger;
        animation-name: apareceDcha;
        flex-direction: column;
        opacity: 60%;
    }
}

@media (max-width: 767px){
    .navbar-nav .open .dropdown-menu{
        float: right !important;
    }
}

 .modal:before{
     height: 20%;
 }


 .mostrarContrasenya{
     border: none;
     background: none;
     position: absolute;
     right: 0; top: 50%;
     translate: -15px -50%;
     cursor: pointer;
     opacity: 0.5;
     z-index: 99;
 }


 ._view-watermark {
     position: absolute;
     display: inline-block;
     border: 1px solid lightgrey;
     right: 10px;
     padding: 0.1em;
     background: white;
     color: #0b011d;
     opacity: 0.5;
     font-size: 10px;
     font-family: sans-sarif;
}

 .cabeceraTabla{
     font-weight: bolder;
 }
 .filaTabla:nth-of-type(even){
     background-color: #eaf4f8;
 }


 /* PAGINADOR functions.js */
.contenedor-paginador{
    text-align: center;
}
.contenedor-paginador a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    min-width: 40px;
}
.item-paginador-oculto{
    display: none;
}