/* modules/custom/age_gate/css/age-gate.css */

.age-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 10000000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate-modal[hidden] {
  display: none;
}

.age-gate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(7.5px);
}

.age-gate-content {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  background: #000;
  text-align: center;
  color: white;
  gap: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.age-gate-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.age-gate-btn--confirm {
  display: flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #E6457A;
  border-radius: 0;
  &:focus,&:focus-visible{
    outline: 0;
  }
}

.age-gate-btn--deny {

  display: flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: white;
  border: 1px solid #FFF;
  border-radius: 0;
  &:focus,&:focus-visible{
    outline: 0;
  }
}


.age-gate-main-text{
  color: #FFF;
  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px; /* 241.667% */
  @media screen and (min-width: 992px){
    font-size: 16px;
  }

}

.age-gate-info-text{
  color: #FFF;
  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
