/*
	Theme Name: GOAT
	Theme URI: https://goat-theme.com
	Author: Younes MISSIRIA (@missiria)
	Description: GOAT THEME
	Version: 1.0
	License: The MIT License (MIT)
	License URI: http://www.gnu.org/licenses/mit-2.0.html
	Text Domain: GOAT-THEME.COM
*/

/* Tailwind */
@import url("dist/style.min.css");

/* Movie Carousel */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Accordion */
.accordion-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.accordion-content.open {
  max-height: 500px;
  /* adjust for longest FAQ */
  opacity: 1;
}

.readmore-content {
  max-height: 160px;
  /* collapsed height */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.readmore-content.expanded {
  overflow: visible;
}

/* WP Core styles */
/* .admin-bar {padding-top: 30px;} */
.gruppo-regular {
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.product-title {
  font-size: 28px;
  line-height: 28px;
  font-family: "Open Sans", sans-serif;
}

.product-price {
  font-size: 48px;
  line-height: 32px;
}

.loader {
  border: 2px solid #f3f3f3;
  /* Light grey */
  border-top: 2px solid #2563eb;
  /* Blue */
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}