/*
Theme Name: Aloha
Version: 1.0
Description: Tema hijo
Author: DestacaImagen
Author URI: https://www.destacaimagen.com
Template: Divi
*/
 
/*----------------- Empieza a tu código CSS personalizado aquí -------------------------------*/

#preloader{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100000;
}

#status{
    width: 100px;
    height:100px;
    position: absolute;
    left: 50%;
    animation: preloader 2s infinite;

    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url(https://www.alohahomestaging.es/wp-content/uploads/2021/01/logo-web.svg);
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center;
    margin: -50px 0 0 -50px;
}

@keyframes preloader{
  0%{
    transform: translateY(60px);
  }
  100%{
    transform: translateY(0);
  }
}

#leer-mas-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 75vw;
  z-index: 100;
  background-color: white;
  border-right: solid 1px #c1c1c1;
  -webkit-box-shadow: 10px -10px 10px 0 rgb(1 1 1 / 20%);
  box-shadow: 10px -10px 10px 0 rgb(1 1 1 / 20%);
  transform: translateX(-110%);
  transition: all 0.8s ease-in-out;
  font-size: 16px;
  overflow-y: auto;
}

#leer-mas-section.open {
  transform: none;
}

.leer-mas-content {
  display: none !important;
}

#leer-mas-cerrar {
  position: absolute;
  right: -70px;
  top: 50%;
  transform: rotate(-90deg);
  letter-spacing: 10px;
  width: 180px;
  text-align: center;
}

#leer-mas-section .et_pb_column.et_pb_column_empty {
  display: block;
}

#leer-mas-section .et_pb_button {
  display: block !important;
}

@media(max-width: 980px) {
  #leer-mas-section .et_pb_row{
    padding-top: 160px !important;
    padding-left: 0 !important;
  }
}