@import "slick.css";
@import "swiper.min.css";
@import "icofont.css";
@import "animate.css";
@import "magnific-popup.css";

/* PRELOADER WAVE STYLE */
#preloader-wrapper {
    background: linear-gradient(to left, #dfd417 0%, #292829 100%);
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader-wave-effect {
    height: 50px;
    left: 50%;
    margin: 0 -25px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
}

.preloader-wave-effect::before,
.preloader-wave-effect::after {
    animation: 1.6s linear 0s normal none infinite running preloader-wave;
    background: #fff none repeat scroll 0 0;
    border-radius: 100%;
    content: "";
    height: 50px;
    position: absolute;
    width: 50px;
}

.preloader-wave-effect::after {
    animation-delay: -0.8s;
}

@keyframes preloader-wave {
    0% {
        opacity: 1;
        transform: scale(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1, 1);
    }
}


.ph_overlay{
    display: none; 
    background:#000;
    position:fixed;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    z-index:10;
    cursor:pointer;
    /*Trasperenza cross browser*/
    opacity: .85; filter: alpha(opacity=85);
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
}

/* bg alert box */
.alert_box{
    display: none;
    
    position: fixed;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    margin-top: -150px;
    margin-left: -150px;
    padding: 40px;
    z-index: 11;
    background-image: url('../img/bg/bg_alert_box.png');
    background-size: cover;
}

.alert_box .alert_box_header{
    position: relative;
    display: block;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    background-color: #f3e942;
    font-weight: bold;
}
.alert_box .alert_box_body{
    margin-top: 20px;
    padding: 0 10px;
    font-size: 12px;
}

.alert_box .alert_box_btn button{
    display: inline-block;
    padding: 5px;
    width: 100px;
    background-color: #f2e842;
    outline: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-left: -50px;
    color: #272d3a ;

    -webkit-transition: all 0.7s; /* Safari */
    transition: all 0.7s;
}

.alert_box .alert_box_btn button:hover{
    background-color: #272d3a;
    color: #f2e842;
}
/* bg alert box ! */


/* ###########################
            tablet
#############################*/
@media only screen and (min-width: 768px){
    .alert_box{
        width: 480px;
        height: 480px;
        margin-top: -240px;
        margin-left: -240px;
    }

    .alert_box .alert_box_body{
        margin-top: 100px;
        padding: 0 20px;
        font-size: 18px;
    }
}
    
/* ###########################
            laptop
############################# */
@media only screen and (min-width: 1024px)  {

}

/* ###########################
            desktop
#############################*/
@media only screen and (min-width: 1224px)  {
    
}

/* ###########################
            large
#############################*/
@media only screen and (min-width: 1680px)  {

}