@font-face {
  font-family: "SF Pro Display";
  src: url("./Assets/fonts/SFPRODISPLAYREGULAR.OTF");
}
body {
  font-family: "SF Pro Display";
}

.accordion-content {
  transition:
    max-height 0.5s ease-in-out,
    padding 0.5s ease-in-out;
  overflow: hidden;
}

.accordion-content[style*="max-height: 0px"] {
  padding-top: 0;
  padding-bottom: 0;
}

.accordion-icon {
  transition: transform 0.4s ease;
}

/* ---------------
 */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #53ba83 #0f3313;
}

/* Chrome, Edge, Safari */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #53ba83, #2d8a5c);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #67d595, #53ba83);
}

.custom-scrollbar::-webkit-scrollbar-corner {
  background: transparent;
}
/* --------------------- */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

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