/* Open Sans EB Garamond */
@font-face {
  font-family: "Hanken-Regular";
  src: local(""),
    url("/extras/HankenGrotesk-VariableFont_wght.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  color: #4f4f4f;
}

@font-face {
  font-family: "Hanken-Medium";
  src: local(""),
    url("/extras/HankenGrotesk-VariableFont_wght.ttf") format("ttf");
  font-weight: medium;
  font-style: normal;
}

@font-face {
  font-family: "Hanken-Bold";
  src: local(""),
    url("/extras/HankenGrotesk-VariableFont_wght.ttf") format("ttf");
  font-weight: bold;
  font-style: normal;
}

.ggskin {
  font-family: Hanken-Regular, Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: normal;
}

/* Example CSS */
.my-button {
  background-color: rgb(191, 19, 207);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 1s;
}

.my-button:hover {
  background-color: #eee;
}

.menu-item {
  color: white !important;
  background-color: #dddddd;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

.menu-item:hover {
  background-color: #ffffff;
}

.menu-item:hover div {
  color: #000000 !important;
}

.cloner-animate {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.cloner-animate.show {
  opacity: 1;
}

.cloner-animate > div {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.close-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  /* No animation here */
}

.close-button::before {
  content: "×";
  color: rgb(49, 49, 49);
  font-size: 30px;
  font-weight: lighter;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover animation ONLY on the × symbol */
.close-button:hover::before {
  transform: translate(-50%, -50%) scale(1.3);
  color: #008ab4;
}

.svg-icon-disclaimer:hover {
  filter: brightness(1.3);
  transform: scale(1.1);
  color: #008ab4;
  transition: all 0.3s ease;
}
