/*
 Theme Name: Valary Web Theme
 Theme URI: 
 Description: Child theme for Divi
 Author: Valary Web
 Author URI: 
 Template: Divi
 Version: 4.19.4
*/

/* Add custom CSS below */

/* Elemento 1A */
#btn-volver-arriba {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 10px;
    font-size: clamp(1.13rem, 0.31vw + 1.06rem, 1.44rem);
    width: 2.1em;
    height: 2.1em;
    background-color: hsla(34, 6%, 24%, 0.42);
    color: hsla(46, 100%, 97%, 0.85);
    cursor: pointer;
    outline: none;
    border: 2px solid #333;
    border-radius: 50%;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: background-color, color;
    z-index: 1000;
  }
  #btn-volver-arriba:hover,
  #btn-volver-arriba:focus {
    background-color: hsla(34, 6%, 24%, 0.78);
    color: hsl(46, 100%, 97%);
    box-shadow: 0 10px 15px #162c4e4a;
    bottom: 17px;
  }
  
  .Entradabtn {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: Entradabtn;
  }
  @keyframes Entradabtn {
    0% {
      transform: scale(1, 1) translateY(100px);
    }
    10% {
      transform: scale(1.1, 0.9) translateY(-30px);
    }
    30% {
      transform: scale(0.9, 1.1) translateY(-20px);
    }
    50% {
      transform: scale(1, 1) translateY(-30px);
    }
    100% {
      transform: scale(1, 1) translateY(0);
    }
  }
  .Salidabtn {
    animation-duration: 0.25s;
    animation-fill-mode: both;
    animation-name: Salidabtn;
  }
  @keyframes Salidabtn {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
  }
  /* FIN Elemento 1A */

/* Add custom functions in functions.php */
