.brnd-age_verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brnd-primary-blue-opa50);
  z-index: 9998;
  display: none;
}

.brnd-age_verification {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 200px;
  transform: translate(-50%, -50%);
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.brnd-age_verification-content {
  text-align: center;
}

.brnd-age_verification-btn {
  margin: 8px;
}

.brnd-age_verification h2 {
  font-size: 24px;
}

.brnd-age_verification p {
  font-size: 16px;
}

.brnd-age_verification img {
  display: none; /* Hide the image element */
}

.brnd-age_verification {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 320px;  Set the desired height for the background image */
}

.brnd-age_verification .brnd-age_verification-close {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 36px;
  cursor: pointer;
  transition: transform .3s ease;
}

.brnd-age_verification .brnd-age_verification-close:hover{
  transform: rotate(90deg);
}
