/* eslint-disable */
.modal {
  display: none;
}
:global(.is-rtl) .modal {
  direction: rtl;
}
.modal.show {
  display: block;
}
.modal .modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 22, 22, 0.9);
}
.modal .modal-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  left: 0;
  z-index: 1000;
  overflow: auto;
  outline: 0;
}
.modal .modal-wrapper .modal-content {
  position: relative;
  border-radius: 8px;
  margin: auto;
}
.modal .modal-wrapper .close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #ffffff;
  cursor: pointer;
}
:global(.is-rtl) .modal .modal-wrapper .close {
  right: auto;
  left: 16px;
}
@media (max-width: 767px) {
  .modal .modal-wrapper .close {
    right: 4px;
    top: 4px;
  }
}
:global(.is-rtl) .modal .modal-wrapper .close {
  right: auto;
  left: 16px;
}
@media (max-width: 767px) {
  :global(.is-rtl) .modal .modal-wrapper .close {
    left: 4px;
  }
}
.modal .modal-wrapper .close::before, .modal .modal-wrapper .close::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  position: absolute;
  left: 11px;
  top: 19px;
  background: #000000;
}
.modal .modal-wrapper .close::before {
  transform: rotate(45deg);
}
.modal .modal-wrapper .close::after {
  transform: rotate(-45deg);
}
.modal .content-fade-enter {
  opacity: 0.3;
  transform: scale(0.1, 0.1);
}
.modal .content-fade-enter-active {
  transform: scale(1, 1);
  opacity: 1;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.modal .content-fade-exit,
.modal .mask-fade-exit {
  opacity: 0.8;
}
.modal .content-fade-exit-active {
  opacity: 0;
  transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.modal .mask-fade-exit-active {
  display: none;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.modal-fade-enter {
  display: none;
}

.modal-fade-enter-active {
  display: block;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.modal-fade-enter-done {
  display: block;
}

.modal-fade-exit {
  display: block;
}

.modal-fade-exit-active {
  display: block;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.modal-fade-exit-done {
  opacity: 0;
}

.success-tip-modal {
  width: auto;
  height: auto;
  background: #fff;
  box-shadow: 2px 4px 20px rgba(34, 90, 89, 0.2);
  border-radius: 8px;
  padding: 32px;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--tux-web-font-body);
}
.success-tip-modal .success-title-modal {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #161823;
}
.success-tip-modal .success-subtitle-modal {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 336px;
  color: rgba(22, 24, 35, 0.75);
}
.success-tip-modal .btn-container-modal {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.success-tip-modal .btn-no-modal {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 71.5px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #161823;
  border: 1px solid rgba(22, 24, 35, 0.12);
  cursor: pointer;
  font-family: var(--tux-web-font-body);
}
.success-tip-modal .btn-yes-modal {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 71.5px;
  border-radius: 4px;
  background-color: #fe2c55;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: var(--tux-web-font-body);
}
.success-tip-modal p {
  margin: 0;
}

.success-tip-submitted {
  width: 460px;
  background: #fff;
  box-shadow: 2px 4px 20px rgba(34, 90, 89, 0.2);
  border-radius: 8px;
  padding: 32px 64px;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--tux-web-font-body);
}
@media (max-width: 767px) {
  .success-tip-submitted {
    width: 280px;
    padding: 24px 0 20px;
    border-radius: 12px;
  }
}
.success-tip-submitted .success-img-submitted {
  display: block;
  margin: auto;
}
.success-tip-submitted .success-tip-title-submitted {
  font-size: 33px;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 16px;
  margin-top: 32px;
  font-family: var(--tux-web-font-body);
}
@media (max-width: 767px) {
  .success-tip-submitted .success-tip-title-submitted {
    margin: 24px 0 12px;
    font-size: 20px;
  }
}
.success-tip-submitted .success-tip-subtitle-submitted {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
  color: var(--UI-Text-2, rgba(0, 0, 0, 0.65));
  font-family: var(--tux-web-font-body);
}
@media (max-width: 767px) {
  .success-tip-submitted .success-tip-subtitle-submitted {
    margin-bottom: 20px;
    font-size: 15px;
  }
}
.success-tip-submitted .success-tip-btn-submitted-container {
  width: 100%;
  padding: 0 20px;
}
.success-tip-submitted .success-tip-btn-submitted {
  width: 100%;
}
