@import url('https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lumanosimo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

/* Fade In Animation */
@keyframes age_fadeIn {
  from {
    opacity: 0;
  }

  to {
    /* opacity: 1; */
  }
}

#age_fade_in {
  animation: age_fadeIn 1s ease-in-out;
}

/* Slide In Up Animation */
@keyframes age_slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    /* opacity: 1; */
  }
}

#age_slide_in_up {
  animation: age_slideInUp 1s ease-in-out;
}

/* Slide In Down Animation */
@keyframes age_slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    /* opacity: 1; */
  }
}

#age_slide_in_down {
  animation: age_slideInDown 1s ease-in-out;
}

/* Slide In Left Animation */
@keyframes age_slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /* opacity: 1; */
  }
}

#age_slide_in_left {
  animation: age_slideInLeft 1s ease-in-out;
}

/* Slide In Right Animation */
@keyframes age_slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /* opacity: 1; */
  }
}

#age_slide_in_right {
  animation: age_slideInRight 1s ease-in-out;
}

/* Zoom In Animation */
@keyframes age_zoomIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    /* opacity: 1; */
  }
}

#age_zoom_in {
  animation: age_zoomIn 1s ease-in-out;
}

/* Fade In Top Left Animation */
@keyframes age_fadeInTopLeft {
  from {
    transform: translate(-100%, -100%);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    /* opacity: 1; */
  }
}

#age_fade_in_top_left {
  animation: age_fadeInTopLeft 1s ease-in-out;
}

/* Fade In Bottom Left Animation */
@keyframes age_fadeInBottomLeft {
  from {
    transform: translate(-100%, 100%);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    /* opacity: 1; */
  }
}

#age_fade_in_bottom_left {
  animation: age_fadeInBottomLeft 1s ease-in-out;
}


/* Fade In Top Right Animation */
@keyframes age_fadeInTopRight {
  from {
    transform: translate(100%, -100%);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    /* opacity: 1; */
  }
}

#age_fade_in_top_right {
  animation: age_fadeInTopRight 1s ease-in-out;
}

/* Fade In Bottom Right Animation */
@keyframes age_fadeInBottomRight {
  from {
    transform: translate(100%, 100%);
    opacity: 0;
  }

  to {
    transform: translate(0, 0);
    /* opacity: 1; */
  }
}

#age_fade_in_bottom_right {
  animation: age_fadeInBottomRight 1s ease-in-out;
}

/* Pulse Animation */
@keyframes age_Pulse {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
  }
}

#age_pulse {
  animation: age_Pulse 0.9s ease-in-out forwards;
}

/* Sivae Biji Flip Animation */
@keyframes age_Flip {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  50% {
    transform: perspective(400px) rotateY(-10deg);
    opacity: 0.8;
  }

  100% {
    transform: perspective(400px) rotateY(0deg);
  }
}

#age_flip {
  animation: age_Flip 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#age_pulse,
#age_flip {
  opacity: 0;
  will-change: transform, opacity, filter;
}

/* Bounce */
@keyframes age_bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

#age_bounce {
  animation: age_bounce 1.5s ease;
}

/* Swing */
@keyframes age_swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

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

#age_swing {
  transform-origin: top center;
  animation: age_swing 1s ease-in-out;
}

/* Tada */
@keyframes age_tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

#age_tada {
  animation: age_tada 1s;
}

/* Shake */
@keyframes age_shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}

#age_shake {
  animation: age_shake 1s;
}

/* Rubber Band */
@keyframes age_rubberBand {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

#age_rubber_band {
  animation: age_rubberBand 1s;
}

/* Wobble */
@keyframes age_wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}

#age_wobble {
  animation: age_wobble 1s;
}

/* Jello */
@keyframes age_jello {

  0%,
  11.1%,
  100% {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

#age_jello {
  animation: age_jello 1s;
  transform-origin: center;
}

/* Wave */
@keyframes age_wave {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

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

#age_wave {
  animation: age_wave 1.5s ease;
  transform-origin: bottom center;
}

/* Spin In */
@keyframes age_spinIn {
  from {
    transform: rotate(-360deg) scale(0);
    opacity: 0;
  }

  to {
    transform: rotate(0deg) scale(1);
  }
}

#age_spin_in {
  animation: age_spinIn 1s ease-out;
}

/* Bounce In Left */
@keyframes age_bounceInLeft {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }

  60% {
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

#age_bounce_in_left {
  animation: age_bounceInLeft 1s ease-out;
}

/* Bounce In Right */
@keyframes age_bounceInRight {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }

  /* start offscreen right */
  60% {
    transform: translateX(-30px);
  }

  /* small bounce past final position */
  80% {
    transform: translateX(10px);
  }

  /* bounce back */
  100% {
    transform: translateX(0);
  }

  /* final position */
}

#age_bounce_in_right {
  animation: age_bounceInRight 1s ease-out;
}

/* Jack In The Box */
@keyframes age_jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

#age_jack_in_the_box {
  animation: age_jackInTheBox 1.5s ease-out;
}

/* Roll In Top */
@keyframes age_rollInTop {
  0% {
    transform: translateY(-100%) rotate(-120deg);
    opacity: 0;
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

#age_roll_in_top {
  animation: age_rollInTop 0.8s ease-out;
}

/* Roll In Bottom */
@keyframes age_rollInBottom {
  0% {
    transform: translateY(100%) rotate(120deg);
    opacity: 0;
  }

  /* start below */
  100% {
    transform: translateY(0) rotate(0deg);
  }

  /* final position */
}

#age_roll_in_bottom {
  animation: age_rollInBottom 0.8s ease-out;
}

/* Perspective Pop */
@keyframes age_perspectivePop {
  0% {
    transform: perspective(600px) scale(0.5) rotateY(90deg);
    opacity: 0;
  }

  100% {
    transform: perspective(600px) scale(1) rotateY(0deg);
  }
}

#age_perspective_pop {
  animation: age_perspectivePop 0.8s ease-out;
}

/* Skew Pop */
@keyframes age_skewPop {
  0% {
    transform: skew(-30deg, -10deg) scale(0);
    opacity: 0;
  }

  50% {
    transform: skew(10deg, 5deg) scale(1.2);
  }

  100% {
    transform: skew(0deg, 0deg) scale(1);
  }
}

#age_skew_pop {
  animation: age_skewPop 0.8s ease-out;
}

/* Light Speed In Left */
@keyframes age_lightSpeedInLeft {
  from {
    transform: translateX(-100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: translateX(20%) skewX(20deg);
  }

  80% {
    transform: translateX(-5%) skewX(-5deg);
  }

  100% {
    transform: translateX(0%) skewX(0deg);
  }
}

#age_light_speed_in_left {
  animation: age_lightSpeedInLeft 1s ease-out;
}

/* Light Speed In Right */
@keyframes age_lightSpeedInRight {
  from {
    transform: translateX(100%) skewX(30deg);
    opacity: 0;
  }

  /* start offscreen right */
  60% {
    transform: translateX(-20%) skewX(-20deg);
  }

  /* overshoot left */
  80% {
    transform: translateX(5%) skewX(5deg);
  }

  /* bounce back */
  100% {
    transform: translateX(0%) skewX(0deg);
  }

  /* final position */
}

#age_light_speed_in_right {
  animation: age_lightSpeedInRight 1s ease-out;
}

/* @font-face {
    font-family: 'Tahoma';
    src: url('../font/tahoma.ttf') format('truetype');
} */

.gminfotech_scroll {
  overflow: hidden;
}

#gm_age_preview_img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
}

.gm_age_preview_btn {
  justify-content: center;
  gap: 10px;
}

.gm_age_overlay {
  position: fixed;
  background-position: center !important;
}

.gm_age_disagree_btn,
.gm_age_agree_btn {
  padding: 15px;
  cursor: pointer;
  max-width: 137px !important;
  width: 100% !important;
  word-wrap: break-word;
  height: 100%;
}


#gm_age_agree_btn,
#gm_age_disagree_btn {
  width: 100%;
  padding: 0;
}

.gm_age_template-1 .gm_age_agree_btn,
.gm_age_first_template .gm_age_agree_btn,
.gm_age_third_template .gm_age_agree_btn,
.gm_age_template-1 .gm_age_disagree_btn,
.gm_age_first_template.gm_age_disagree_btn,
.gm_age_third_template .gm_age_disagree_btn {
  margin-bottom: 0 !important;
}

.gm_age_preview_box {
  margin: auto;
  position: relative;
  z-index: 9999999;
}

h2#gm_age_preview_header_text {
  margin: 0px 0px;
  line-height: normal;
  word-break: break-word;
}

p#gm_age_preview_sub_header_text {
  margin: 10px 0px;
  line-height: 30px;
}

img#gm_age_logo_img {
  width: 100px;
}

.gm_age_main-box-bg {
  display: none;
}

.gm_age_template-1 .gm_age_preview_box_wrap,
.gm_age_first_template .gm_age_preview_box_wrap,
.gm_age_third_template .gm_age_preview_box_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gm_age_popup_logo {
  margin-bottom: 10px;
  width: fit-content;

}

.gm_age_third_template .gm_age_popup_logo {
  margin-right: 16px;
}

/* .gm_age_month_date {
  visibility: hidden;
} */

:root {
  --age_select_icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='black' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat 95% 50%;
}

.gm_age_myselect {
  position: relative;
  display: inline-block;
  background: var(--age_select_icon);
  background-size: 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

select#gm_age_birthdate,
select#gm_age_birthmonth,
select#gm_age_birthyear {
  background-color: white;
  height: 36px;
  font: inherit;
  text-align: start;
}


.gm_age_myselect select {
  height: 30px;
  border-color: red;
  padding-right: 10px;
  outline: none;
}

.gm_age_myselect::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 11px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(255, 0, 0, 1);
  pointer-events: none;
}

.gm_age_logo-text {
  display: flex;
  justify-content: center;
}

.gm_age_popuptext {
  width: 77%;
}

#gm_age_error_age {
  margin-top: 0px !important;
  margin-bottom: 10px !important;
  text-align: center;
}

.gm_age_second_template #gm_age_error_age {
  margin-top: 10px !important;
  margin-bottom: 0px !important;
}

.gm_age_privacy_policy_text p {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px 0px 0px 0px;
  color: #787878;
  font-size: 14px;
  flex-direction: column;
}


/* 1.css */
.gm_age_second_template .gm_age_preview_box {
  justify-content: flex-start !important;
}

.gm_age_second_template .gm_age_pre_title {
  width: 70%;
  margin: 10px 0px;
}

.gm_age_second_template .gm_age_pre_contain {
  width: 80%;
}

.gm_age_second_template .gm_age_preview_box_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* end 1.css */

@media (max-width: 790px) {
  .gm_age_logo-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gm_age_popuptext,
  .gm_age_pre_title,
  .gm_age_pre_contain {
    width: 100%;
  }

  .gm_age_third_template .gm_age_popup_logo {
    margin-right: 0px !important;
  }

}

/* 1.css */
@media (max-width: 625px) {
  .gm_age_preview_box_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .gm_age_preview_box_section {
    flex-direction: column;
  }

  .gm_age_pre_title,
  .gm_age_privacy_policy_text,
  div#gm_age_error_age,
  .gm_age_pre_contain {
    width: 100% !important;
    text-align: center !important;
  }

  .gm_age_second_template .gm_age_preview_btn {
    display: flex !important;
    margin-top: 10px;
  }

  .gm_age_agree_btn,
  .gm_age_disagree_btn {
    height: 100%;
    margin-bottom: 0 !important;
    max-width: 112px !important;
  }
}

/* end 1.css */


@media (max-width: 450px) {

  select#gm_age_birthdate,
  select#gm_age_birthmonth {
    width: 50px !important;
  }

  #gm_age_preview_img {
    padding: 10px;
  }
}

@media (max-width: 350px) {
  .gm_age_preview_box {
    padding: 20px !important;
  }

  .gm_age_template2__preview_box {
    padding: 20px !important;
    width: fit-content;
  }

  select#gm_age_birthyear {
    width: 75px !important;
  }

  #gm_age_verify_box {
    flex-direction: row;
    text-align: center;
  }

  #gm_age_verify_box div {
    display: block !important;
  }
}

.age_checkout_main_div {
  container-type: inline-size;
}

@container (max-width: 260px) {

  .age_checkout_main_div [id$="_birthmonth"],
  .age_checkout_main_div [id$="_birthdate"] {
    width: 50px !important;
  }

  .age_checkout_main_div [id$="_birthyear"] {
    width: 75px !important;
  }
}

@container (max-width: 185px) {

  .age_checkout_main_div [id$="_birthmonth"],
  .age_checkout_main_div [id$="_birthdate"] {
    width: 45px !important;
  }

  .age_checkout_main_div [id$="_birthyear"] {
    width: 70px !important;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .gm_age_myselect {
      position: relative;
      display: inline-block;
      -webkit-appearance: none;
    }
  }
}


.gm_age__buttonGroup {
  width: 100% !important;
  max-width: 100% !important;
  flex: auto !important;
  max-height: unset !important
}


.gm_age__disabledCheckoutButton>* {
  opacity: .75;
  pointer-events: none;
  position: relative
}

.gm_age__disabledCheckoutButton>:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.gm_age__disabledCheckoutButton .gm_age__root,
.gm_age__disabledCheckoutButton .gm_ageonsent__root {
  opacity: 1;
  pointer-events: auto
}

.gm_age__disabledCheckoutButton .gm_age__root:after,
.gm_age__disabledCheckoutButton .gm_ageonsent__root:after {
  display: none
}

#gminfoTechcheckoutmodal {
  display: none;
}

#cart_checkout_button_html div{
  line-height: normal;
}

#cart_checkout_button_html label,
#dynamic_checkout_button_html div {
  line-height: 30px;
}

#cart_checkout_button_html select {
  position: relative !important;
  display: inline-block !important;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' fill='none' stroke='black' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat 99% 50% !important;
  background-size: 16px !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-color: white !important;
}

#gm_age_birthdate,
#gm_age_birthmonth,
#gm_age_checkout_birthmonth,
#gm_age_checkout_birthdate {
  width: 75px !important;
}

#gm_age_birthyear,
#gm_age_checkout_birthyear {
  width: 100px !important;
}

#cart_checkout_button_html .age_select_main_div {
  flex-wrap: wrap;
  justify-content: center;
}

.gm_age_template-1 div#gm_age_month_box,
.gm_age_first_template div#gm_age_month_box,
.gm_age_third_template div#gm_age_month_box {
  justify-content: center;
  margin-bottom: 10px;
}

.gm_age_tnc_main,
.gm_age_tnc_input_div {
  display: flex;
  align-items: center;
  gap: 5px;
}

#gm_age_tnc_input {
  width: 15px;
  height: 15px;
  margin: 0px;
  padding: 0px;
}

.gm_age_tnc_text p {
  margin: 0px;
  text-align: left;
}

label.age_checkout_checkbox_text {
  text-align: left;
}

.gm_age_privacy_policy_text,
label.gm_age_tnc_text {
  line-height: 30px;
}