div.account.wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 72px;
}

div.account.body {
 margin-left:20px;
}

div.account.wrapper > div.img, div.account.wrapper > div.img >img {
  width:38px;
  height:38px;
}

div.account.wrapper > div.img {
  width:38px;
  height:38px;
}

p.account-name  {
  color:#333333;
}

span.account.number {
  margin-top:2px;
  color: #666666;
}

/* buttons */
.event-apply-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 100%;
  background-color: none;
  padding: 0 20px;

  position:absolute;
  box-sizing: border-box;
}


.event-apply-wrap.normal {
  position: initial;
  background: #78E9F7;}

.event-apply-wrap.small {
  padding: 0;
  bottom: 0;
  z-index: 1;
}

.event-apply-wrap-content {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 25px;
}

button.event-button {
  width: 100%;
  height: 56px;
  background-color: #002047;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: white;
 box-sizing: border-box;
}

button.event-button.small {
  max-width: 74%;
  height: 56px;

}


button.disabled {
  background-color: #f0f2f4 !important;
  color: #cccccc !important;
  cursor: not-allowed !important;
}

.notification-wrap {
  display: flex;
  justify-content: center;
  background-color: #f6f6f6;
  padding: 0 20px;
}
div.benefit.checkbox.wrapper {
  margin-top: 36px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
}

img.checkbox {
  width: 26px;
  height: 26px;
  margin-right: 14px;
  margin-bottom: 2px;
}
a.arrow.link {
  margin-left: auto;
  margin-right: 0px;
}
img.right.arrow {
  width: 26px;
  height: 26px;
  margin-left: auto;
  margin-bottom: 2px;
}
img.hidden {
  display: none;
}


@keyframes slding-coupon01 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.1% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slding-coupon01-1 {
  /* 클론용 */
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(0);
  }
  50.1% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slding-coupon02 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  50.1% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slding-coupon02-1 {
  /* 클론용 */
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  50.1% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
img.coupon01.clone {
  width: 250%;
  top: 35%;
  animation: slding-coupon01-1 26s linear infinite;
}
img.coupon01 {
  width: 250%;
  top: 35%;
  animation: slding-coupon01 26s linear infinite;
}

img.coupon02 {
  width: 250%;
  top: 60%;
  animation: slding-coupon02 26s linear infinite;
}

img.coupon02.clone {
  width: 250%;
  top: 60%;
  animation: slding-coupon02-1 26s linear infinite;
}


.absolute {
  position: absolute;
 background: none;
}
div.toast-container {
  display: flex;
  justify-content: center;
  z-index:999;
  animation: fadeout 3s ease-in-out;
  opacity: 0;
  position: relative;
}

div.toast {
  position: fixed;
  bottom: calc(constant(safe-area-inset-bottom) + 24px);
  bottom: calc(env(safe-area-inset-bottom) + 24px);
  max-width: 328px;
  margin: 0 20px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #333333;
  z-index:999;

  display: flex;
  gap: 16px;
  align-items: center;
}

div.toast > span {
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  vertical-align: middle;
}

@keyframes fadeout {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

div.modal-window {
  justify-content: start;
  align-items: flex-start;
}
p.modal-contents {
  margin: 0;
  align-items: flex-start;
  align-content: start;
  text-align: start;
  justify-content: start;
  display: inline-block;
  min-height: 0px;

  font-size:14px;
  color: #333333;
  font-weight: 400px;
}
div.modal-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}
button.modal-button {
  padding: 8px 12px;
  border: none;
  width: fit-content;
  height: 38px;
  color: #007899;
  border-radius: 8px;
  background-color: #fff;
}
button.modal-button.primary {
  background-color: #e6f9fd;
}

button.modal-button.primary {
  background-color: #e6f9fd;
}
b {
  display: initial;
}
.modal-wrapper-ev {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.show-modal{
  z-index:999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);

}
