#main-div {
    padding: 0;
    min-height: 100vh;
}

.max-width-1900 {
    max-width: 1900px;
    margin: 0 auto !important;
}
.max-width-2400 {
    max-width: 2400px;
    margin: 0 auto !important;
}

.modal-medium{
    max-width: 1180px;
    margin: 0 auto !important;
}

.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;
}

.flex-row-centered {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.margin-10 {
    margin: 10px !important;
}

.come-in {
    transform: translateY(200px);
    opacity: 0;
    animation: come-in 0.9s ease forwards;
    -webkit-animation: come-in 0.9s ease forwards;

}
.opaco{
    opacity: 0;
}

/*Estilo general del input */
input[type="number"] {
    -moz-appearance: textfield;/ Firefox /
}

/*/ Estilo para WebKit (Safari y Chrome) /*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*/ Estilo para Firefox /*/
input[type="number"] {
    -moz-appearance: textfield;
}

/*/ Estilo para Edge *!*/
input[type="number"] {
    -ms-text-overflow: ellipsis;
}

.panelResponsiveCentrado {
    max-width: 1800px;
    margin: 0 auto;
}
.elemento-centrado{
    margin: 0 auto !important;
}

.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%;
}

#countdown>form>div:nth-of-type(2) {
    text-align: right;
}

#countdown>form>div:nth-of-type(2)>p {
    padding-right: 10px;
}

#countdown>form>div:nth-of-type(4) {
    text-align: left;
}

#countdown>form>div:nth-of-type(4)>p {
    padding-left: 10px;
}

@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%;
        z-index: 1;
    }
}

@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;
}

@media (min-width: 992px) {
    .modal-xl {
        width: 900px;
    }
}

@media (min-width: 1300px) {
    .modal-xl {
        width: 1200px;
    }
}

@media (min-width: 1900px) {
    .modal-xl {
        width: 1600px;
    }
}

.btn-listado-externo {
    padding: 3px 5px 2px !important;
    margin-left: 5px;

}

.btn-listado-externo span {
    display: none;
}

.btn-listado-externo:hover span {
    display: inline-block;
    margin-left: 1em;
}

.modal-header-en-linea.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-color);
    color: white;
}

.modal-header-en-linea.modal-header:before,
.modal-header-en-linea.modal-header:after {
    content: none;
}