/*
 Theme Name:   AMALI Wellness & SPA
 Theme URI:    https://generatepress.com
 Description:  AMALI Wellness & SPA's GeneratePress Child
 Author:       Ballaraw Hub
 Author URI:   https://ballarawhub.it
 Template:     generatepress
 Version:      0.1
*/

/* For browsers that support clamp  */
@supports (font-size: clamp(1rem, 1vi, 1rem)) {
  :root {
  		--font-size-base: clamp(1.2rem,1.7vw,1.5rem);
  		--font-size-xxx-small: 58%;
  		--font-size-xx-small: 65%;
  		--font-size-x-small: 70%;
  		--font-size-small: 80%;
  		--font-size-medium: 90%;
  		--font-size-large: 120%;
  		--font-size-x-large: 160%;
  		--font-size-xx-large: 220%;
  		--font-size-xxx-large: 300%;
  		--font-size-xxxx-large: 320%;
  		--gp-slideout-width: 50vw;

  }
}

/*Language in menus*/

li.lang-item a {
  font-size: var(--font-size-small);
}

/* Scroll Icon Animation */

.scrolldown-icon {
  position: absolute;
  top: calc(100vh - 110px);
  left: calc(50% - 14px);
  width: 0;
  height: 40px;
  border: 1px solid var(--base-2);
  border-radius: 1px;
  animation: jumpInfinite 1.5s infinite;
}

.scrolldown-icon:after {
  content: " ";
  position: absolute;
  top: 20px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--base-2);
  border-right: 2px solid var(--base-2);
  border-radius: 2px;
  transform: rotateZ(45deg);
}

@keyframes jumpInfinite {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}