#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(111, 0, 0);
    background: rgba(111, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 99999;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(111, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

/* **********WHATSAPP********** */
.float-button {
    text-decoration: none;
    position: fixed;
    padding: 10px;
    padding-right: 15px;
    bottom: 30px;
    right: 6%;
    color: #fff;
    background-color:#25D366;
    border-radius: 25px 30px 5px 25px;
    z-index: 100;
    font-family: Arial;
    font-size: 17px;
    animation: whatsapp-animation 0.5s ease-in-out;
    box-shadow: 1px 2px 5px 2px rgba(30,30,30,0.3);
    transition:all 0.3s ease-out;
}

.float-button:hover {
     background-color: #128C7E;
      color: #fff;
}

.fa-whatsapp {
    font-size: 20px !important;
    padding-right: 5px;
    padding-left: 5px;
}

@keyframes whatsapp-animation {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%
    }
}

@media screen and (max-width: 545px) {
    span {
        display: none;
    }

    .float-button {
        bottom: 15px;
        /* right: 15px; */
        left: 50%;       /* Posiciona el botón en el medio de la pantalla */  
        transform: translateX(-50%);
        width: 54px;
        border-radius: 20px 20px 5px 20px;
    }

    .fa-whatsapp {
        font-size: 1.7em !important;
        padding: 4px;
    }
}

/******* LOADER  **********/
.preloaderBg {
    position: fixed;
  z-index: 99999999999; 
  top: 0;
    background: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader {
  margin: auto;
    background: url(../images/logo-club.png) no-repeat center;
  background-size: 150px;
  width: 300px;
  height: 300px;
  top:100px;
  position:relative;
}


.preloader2 {
border: 5px solid #f3f3f3;
border-top: 5px solid #f00;
border-radius: 50%;
width: 250px;
height: 250px;
animation: spin 1s ease-in-out infinite ;
position: relative;
margin: auto;
/* top: -280px; */
top: -170px;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}



/* @media only screen and (max-width:800px )
{
    .preloader2 {
        top: -10%;
    }
} */

