/* START LOADER CSS */
.fullpage-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #141516;
    z-index: 9999;
    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.fullpage-loader .fullpage-loader__logo {
    position: relative;
}

.fullpage-loader .fullpage-loader__logo:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=1);
    /* IE6-9 */
}

.fullpage-loader--invisible {
    opacity: 0;
}

@media (min-width: 320px) and (max-width: 920px) {

    .fullpage-loader .fullpage-loader__logo {
        top: -50px;
    }

}

/* LANDSCAPE CSS */
#landscape {
    display: none;
    z-index: -100;
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
}

@media(max-width: 920px) and (orientation: landscape) {
    #landscape {
        display: flex;
        position: fixed;
        top: 0;
        bottom: 0px;
        right: 0px;
        left: 0px;
        background: #f2f2f2;
        z-index: 990000;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
        overflow: hidden;
    }

    #landscape img {
        width: 150px;
        height: auto;
    }

    .phone_image {
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
    }

    .landscape_text {
        font-size: 120%;
        margin-top: 15px;
        text-align: center;
        transition: .3s ease-in-out;
        -webkit-transition: .3s ease-in-out;
    }
}


/* NON STANDAR FIREFOX CSS */
/* Estilos para el campo de cantidad */
.product-container-info .variable-form input.qty {
    -moz-appearance: textfield; /* Oculta las flechas en Firefox */
}