@font-face {
  font-family: Copperplate;
  src: url(../font/Copperplate.otf) format("opentype");
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #FFE7C5;
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-image: url(../img/bg.webp);
  background-size: 500px auto;
}
@media (min-width: 768px) {
  body {
    background-size: 1200px auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  border-bottom: 1px solid #FFE7C5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  z-index: 999;
  background-image: url(../img/bg.webp);
  background-size: 500px auto;
}
@media (min-width: 768px) {
  #header {
    height: 80px;
    padding-bottom: 8px;
    border: none;
    justify-content: center;
    align-items: flex-end;
    background-size: 1200px auto;
  }
}
#header .logo {
  height: 9px;
  width: auto;
  display: block;
}
@media (min-width: 768px) {
  #header .logo {
    height: 22px;
  }
}
#header .mob-toggle {
  display: flex;
  cursor: pointer;
}
@media (min-width: 768px) {
  #header .mob-toggle {
    display: none;
  }
}
#header .mob-toggle span {
  color: #CCC38D;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-family: "Montserrat", sans-serif;
  margin-right: 8px;
}
#header .mob-toggle .lines {
  position: relative;
  width: 13px;
}
#header .mob-toggle .lines div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #CCC38D;
  transition: all 0.2s;
}
#header .mob-toggle .lines div:nth-child(1) {
  transform: translate(-50%, calc(-50% - 3px));
}
#header .mob-toggle .lines div:nth-child(2) {
  transform: translate(-50%, calc(-50% + 3px));
}
#header .mob-toggle.active .lines div:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#header .mob-toggle.active .lines div:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#go-booking-btn {
  position: fixed;
  bottom: 60px;
  right: 0;
  width: 60px;
  height: 42px;
  background-image: url(../img/go-booking-btn-m.png?250509);
  background-position: 0 0;
  background-size: 200% 100%;
  cursor: pointer;
}
@media (min-width: 992px) {
  #go-booking-btn {
    width: 120px;
    height: 84px;
    background-image: url(../img/go-booking-btn.png?250509);
  }
}
#go-booking-btn:hover {
  background-position: 100% 0;
}

#go-qa-btn {
  position: fixed;
  bottom: 60px;
  left: 20px;
  width: 33px;
  height: 43.5px;
  background-image: url(../img/go-qa-btn.png?250509);
  background-position: 0 0;
  background-size: 200% 100%;
  cursor: pointer;
}
@media (min-width: 992px) {
  #go-qa-btn {
    width: 66px;
    height: 87px;
  }
}
#go-qa-btn:hover {
  background-position: 100% 0;
}

.sec-title {
  font-family: "Noto Serif TC", serif;
  color: #CCC38D;
  font-size: 20px;
  text-align: center;
  font-weight: 900;
  text-indent: 0.3em;
  letter-spacing: 0.3em;
  margin: 0 0 12px 0;
}
@media (min-width: 768px) {
  .sec-title {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 30px 0;
  }
}

.en-title {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 300px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin: 0 auto 20px auto;
}
@media (min-width: 768px) {
  .en-title {
    max-width: 570px;
    font-size: 15px;
    margin: 0 auto 45px auto;
  }
}
.en-title .line {
  flex: 1;
  position: relative;
}
.en-title .line:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  width: 5px;
  height: 5px;
  border: 1px solid #FFE7C5;
  transform: translate(0, -50%) rotate(45deg);
}
@media (min-width: 768px) {
  .en-title .line:before {
    right: 15px;
  }
}
.en-title .line:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: calc(100% - 11px - 7px);
  height: 1px;
  background: #FFE7C5;
  transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .en-title .line:after {
    right: 22px;
    width: calc(100% - 15px - 7px);
  }
}
.en-title .line:last-child:before {
  right: auto;
  left: 11px;
}
@media (min-width: 768px) {
  .en-title .line:last-child:before {
    left: 15px;
  }
}
.en-title .line:last-child:after {
  right: auto;
  left: 18px;
}
@media (min-width: 768px) {
  .en-title .line:last-child:after {
    left: 22px;
  }
}

.tk-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
  background: #FFE7C5;
  border: 1px solid #FFE7C5;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-align: center;
  padding: 14px 22px;
  border-radius: 40px;
  transition: all 0.2s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tk-btn {
    font-size: 18px;
    padding: 16px 45px;
  }
}
.tk-btn:hover {
  background: #dbc6a9;
}
.tk-btn:focus {
  outline: none;
}
.tk-btn:disabled:hover, .tk-btn.disabled:hover {
  background: #FFE7C5;
  color: #000;
}
.tk-btn:disabled, .tk-btn.disabled {
  cursor: no-drop;
  opacity: 0.6;
}
.tk-btn.tk-btn-empty {
  background: rgba(255, 231, 197, 0);
  color: #FFE7C5;
}
.tk-btn.tk-btn-empty:hover {
  background: rgb(255, 231, 197);
  color: #000;
}
.tk-btn.tk-btn-empty:disabled:hover, .tk-btn.tk-btn-empty.disabled:hover {
  background: none;
  color: #FFE7C5;
}

#mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 36px;
  background-color: #000;
  background-image: url(../img/bg.webp);
  background-size: 500px auto;
  z-index: 998;
}
@media (min-width: 768px) {
  #mob-menu {
    background-size: 1200px auto;
  }
}
#mob-menu .inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mob-menu a {
  display: block;
  text-align: center;
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 900;
  margin-top: 25px;
  position: relative;
  color: #CCC38D;
}
#mob-menu a.active, #mob-menu a:hover {
  color: #FFE7C5;
  text-decoration: none;
}
#mob-menu a.active:before, #mob-menu a.active:after, #mob-menu a:hover:before, #mob-menu a:hover:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  background-size: 18px;
  background-repeat: no-repeat;
}
#mob-menu a.active:before, #mob-menu a:hover:before {
  left: -30px;
  transform: translate(-100%, -50%);
  background-image: url('data:image/svg+xml,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.25 14.9502L1.25 1.0498L13.959 8L1.25 14.9502Z" stroke="%23FFE7C5"/></svg>');
  background-position: right center;
}
#mob-menu a.active:after, #mob-menu a:hover:after {
  right: -30px;
  transform: translate(100%, -50%);
  background-image: url('data:image/svg+xml,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.75 1.0498L13.75 14.9502L1.04102 8L13.75 1.0498Z" stroke="%23FFE7C5"/></svg>');
  background-position: left center;
}
#mob-menu a:first-child {
  color: #DB4271;
  margin-top: 0;
}
#mob-menu a:first-child.active, #mob-menu a:first-child:hover {
  color: #DB4271;
}

fieldset {
  padding: 83px 0 162px 0;
  margin: 0;
  border: none;
}
@media (min-width: 768px) {
  fieldset {
    padding: 200px 20px;
  }
}
fieldset .step-bar {
  width: auto;
  height: 29px;
  margin: 30px auto 45px auto;
  z-index: 1;
}
@media (min-width: 768px) {
  fieldset .step-bar {
    width: 49px;
    height: auto;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 58px;
    transform: translate(0, -50%);
  }
}
fieldset .step-bar.pc {
  display: none;
}
@media (min-width: 768px) {
  fieldset .step-bar.pc {
    display: block;
  }
}
fieldset .step-bar.mob {
  display: block;
}
@media (min-width: 768px) {
  fieldset .step-bar.mob {
    display: none;
  }
}
fieldset .input-fields {
  max-width: 550px;
  margin: 0 auto;
  padding: 0 20px;
}
fieldset .input-fields .input-group {
  margin-bottom: 24px;
}
fieldset .input-fields .input-group:last-child {
  margin-bottom: 0;
}
fieldset .input-fields .input-group label {
  display: block;
  color: #CCC38D;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  fieldset .input-fields .input-group label {
    font-size: 15px;
    letter-spacing: 0.13em;
  }
}
fieldset .input-fields .input-group .input-fields-notice {
  font-size: 12px;
  margin-top: 7px;
}
fieldset .input-fields .input-group .selection-parent {
  position: relative;
}
fieldset .input-fields .input-group .selection-parent .select2-dropdown {
  background: #171717;
  border-color: #FFE7C5;
}
fieldset .input-fields .input-group .selection-parent .select2-container {
  top: 0 !important;
}
fieldset .input-fields .input-group .selection-parent .select2-container--open .select2-dropdown--above {
  border-radius: 0 0 4px 4px;
  border-top: none;
  border-bottom: 1px solid #FFE7C5;
}
fieldset .input-fields .input-group .select2-container--default .select2-selection--single {
  background: none;
  border-color: #FFE7C5;
  border-width: 2px;
  height: 48px;
}
fieldset .input-fields .input-group .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #FFE7C5 transparent transparent transparent;
}
fieldset .input-fields .input-group .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #FFE7C5;
  line-height: 43px;
  font-size: 14px;
}
fieldset .input-fields .input-group .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #FFE7C5 transparent;
}
fieldset .input-fields .input-group .select2-container--default .select2-results__option {
  font-size: 14px;
  padding: 11px 16px;
}
fieldset .input-fields .input-group .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
fieldset .input-fields .input-group .select2-container--default .select2-results__option--selected {
  background: #FFE7C5;
  color: #000;
}
fieldset .input-fields .input-group .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, fieldset .input-fields .input-group .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid #FFE7C5;
}
fieldset .input-fields .input-group .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  right: 6px;
}
fieldset .input-fields input[type=text] {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #FFE7C5;
  background: none;
  border-radius: 4px;
  display: block;
  font-size: 16px;
  height: 48px;
  padding: 12px 16px;
  color: #FFE7C5;
}
fieldset .input-fields input[type=text]:focus {
  outline: none;
}
fieldset .input-fields input[type=text]::-moz-placeholder {
  font-size: 11.5px;
  transform: translateY(-1px);
}
fieldset .input-fields input[type=text]::placeholder {
  font-size: 11.5px;
  transform: translateY(-1px);
}
fieldset .tk-btn {
  font-size: 13px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  fieldset .tk-btn {
    font-size: 15px;
  }
}
fieldset.step1 .input-group {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  fieldset.step1 .input-group {
    margin-bottom: 35px;
  }
}
fieldset.step1 .input-group label {
  margin: 0 30px 0 0;
}
fieldset.step1 .action {
  margin-top: 90px;
  display: flex;
  justify-content: center;
}
fieldset.step2 .notice {
  max-width: 330px;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 2px solid #FFE7C5;
  background: #FFE7C5;
  color: #000;
  border-radius: 10px;
  margin: 0 auto 50px auto;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
@media (min-width: 768px) {
  fieldset.step2 .notice {
    max-width: 660px;
    padding: 40px 30px;
    margin: 0 auto 45px auto;
    font-size: 16px;
    line-height: 33px;
    letter-spacing: 0.13em;
  }
}
@media (min-width: 768px) {
  fieldset.step2 .notice br.m {
    display: none;
  }
}
fieldset.step2 .notice svg {
  width: 73px;
  display: block;
  margin-right: 13px;
}
@media (min-width: 768px) {
  fieldset.step2 .notice svg {
    width: 84px;
    margin-right: 26px;
  }
}
fieldset.step2 .notice .small {
  font-size: 10px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  fieldset.step2 .notice .small {
    font-size: 13px;
  }
}
fieldset.step2 .code-wrapper {
  width: 83px;
  margin-right: 10px;
}
fieldset.step2 .invoice .label-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  fieldset.step2 .invoice .label-flex {
    margin-bottom: 11px;
  }
}
fieldset.step2 .invoice .label-flex > label {
  margin-right: 12px;
}
fieldset.step2 .invoice .label-flex .checkboxes {
  flex: 1;
  display: flex;
}
@media (min-width: 768px) {
  fieldset.step2 .invoice .label-flex .checkboxes {
    padding-left: 23px;
  }
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty {
  display: block;
  margin-right: 8px;
}
@media (min-width: 768px) {
  fieldset.step2 .invoice .label-flex .checkboxes .pretty {
    margin-right: 18px;
  }
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty:nth-child(1) {
  margin-right: 15px;
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty .state label {
  position: relative;
  font-size: 12px;
  padding-top: 0;
  margin-right: 0;
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty .state label:after, fieldset.step2 .invoice .label-flex .checkboxes .pretty .state label:before {
  width: 8px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  border-color: #FFE7C5;
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty input:checked ~ .state label:after {
  background: #FFE7C5 !important;
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty input[disabled] {
  cursor: default;
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty input[disabled] ~ * {
  opacity: 1;
}
fieldset.step2 .invoice .label-flex .checkboxes .pretty:last-child {
  margin: 0;
}
fieldset.step2 .invoice .input input::-moz-placeholder {
  font-size: 15px;
}
fieldset.step2 .invoice .input input::placeholder {
  font-size: 15px;
}
@media (min-width: 768px) {
  fieldset.step2 .invoice .input input::-moz-placeholder {
    transform: translateY(-3px);
  }
  fieldset.step2 .invoice .input input::placeholder {
    transform: translateY(-3px);
  }
}
fieldset.step2 .invoice .input .input-company {
  display: flex;
  justify-content: space-between;
}
fieldset.step2 .invoice .input .input-company > div {
  width: calc(50% - 7px);
}
fieldset.step2 .invoice .input .input-company > div input {
  width: 100%;
}
fieldset.step2 .invoice.invoice-person, fieldset.step2 .invoice.invoice-company {
  padding-left: 20px;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) {
  fieldset.step2 .invoice.invoice-person, fieldset.step2 .invoice.invoice-company {
    padding-left: 40px;
  }
}
fieldset.step2 .invoice.invoice-person label, fieldset.step2 .invoice.invoice-company label {
  white-space: nowrap;
  margin: 15px 6px 0 0;
  font-size: 12px;
  font-weight: 400;
}
fieldset.step2 .error {
  color: red;
  font-size: 10px;
  margin-top: 3px;
}
fieldset.step2 .agree {
  margin-top: 40px;
}
fieldset.step2 .agree .pretty {
  white-space: normal;
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.18em;
}
fieldset.step2 .agree .pretty input {
  top: 6px;
  width: 11px;
  height: 11px;
}
fieldset.step2 .agree .pretty input:checked ~ .state label:after {
  background: #FFE7C5 !important;
}
fieldset.step2 .agree .pretty .state label {
  position: relative;
  padding-left: 28px;
  text-indent: 0;
  font-weight: 400;
  margin: 0;
  padding-top: 0;
}
fieldset.step2 .agree .pretty .state label:before, fieldset.step2 .agree .pretty .state label:after {
  top: 5px;
  width: 13x;
  height: 13x;
  border-radius: 3px;
}
fieldset.step2 .agree .pretty .state label:before {
  border-color: #FFE7C5;
}
fieldset.step2 .agree .pretty .state label span {
  color: #FFE7C5;
}
fieldset.step2 .agree .pretty .state label a {
  color: #FFE7C5;
  text-decoration: underline;
}
fieldset.step2 .agree .pretty .state label a:hover {
  text-decoration: none;
}
fieldset.step2 .action {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 660px;
  margin: 50px auto 0 auto;
}
fieldset.step2 .action span {
  display: none;
}
@media (min-width: 768px) {
  fieldset.step2 .action span {
    display: inline;
  }
}
fieldset.step3 .ticket {
  max-width: 330px;
  margin: 0 auto 50px auto;
  border: 2px solid #FFE7C5;
  background: #FFE7C5;
  border-radius: 10px;
  text-align: center;
  color: #000;
  font-size: 12px;
  line-height: 20px;
}
@media (min-width: 768px) {
  fieldset.step3 .ticket {
    max-width: 656px;
    font-size: 15px;
    line-height: 26px;
  }
}
fieldset.step3 .ticket .title {
  padding: 17px 5px;
  border-bottom: 2px solid #000;
}
fieldset.step3 .ticket .body {
  padding: 12px 5px;
}
@media (min-width: 768px) {
  fieldset.step3 .ticket .body {
    padding: 19px 5px;
  }
}
fieldset.step3 .input-fields {
  max-width: 330px;
}
fieldset.step3 .input-fields .input-group {
  display: flex;
}
fieldset.step3 .input-fields .input-group.invoice {
  padding-left: 18px;
}
fieldset.step3 .input-fields .input-group.invoice label {
  font-size: 12px;
  font-weight: 400;
}
fieldset.step3 .input-fields .input-group label {
  margin: 0 20px 0 0;
  white-space: nowrap;
}
fieldset.step3 .action {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 660px;
  margin: 50px auto 0 auto;
}
fieldset.step3 .action span {
  display: none;
}
@media (min-width: 768px) {
  fieldset.step3 .action span {
    display: inline;
  }
}

#ticket-types {
  padding: 0 40px 60px 40px;
}
@media (min-width: 992px) {
  #ticket-types {
    padding: 0 40px 60px 40px;
  }
}
#ticket-types .notice {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  #ticket-types .notice {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  #ticket-types .notice {
    margin-bottom: 40px;
  }
}
#ticket-types .notice span {
  letter-spacing: 0.04em;
}
#ticket-types .items-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  #ticket-types .items {
    width: 886px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  #ticket-types .items {
    width: 1020px;
  }
}
@media (min-width: 1300px) {
  #ticket-types .items {
    width: 1120px;
  }
}
#ticket-types .items .item {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  #ticket-types .items .item {
    margin-bottom: 0;
  }
}
#ticket-types .items .item:last-child {
  margin-bottom: 0;
}
#ticket-types .items .item .img {
  max-width: 259px;
  margin: 0 auto 22px auto;
  position: relative;
}
@media (min-width: 1200px) {
  #ticket-types .items .item .img {
    max-width: 315px;
    margin: 0 auto 45px auto;
  }
}
#ticket-types .items .item .img img {
  display: block;
  width: 100%;
}
#ticket-types .items .item .img .sale {
  position: absolute;
  top: -12px;
  left: -17px;
  width: 44px;
}
@media (min-width: 1200px) {
  #ticket-types .items .item .img .sale {
    top: -17px;
    left: -20px;
    width: 59px;
  }
}
#ticket-types .items .item .discount {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #CCC38D;
  margin-bottom: 10px;
}
#ticket-types .items .item .discount .label {
  font-size: 9px;
  line-height: 1;
  text-align: center;
  padding: 10px;
  border: 1px solid;
  border-radius: 50%;
  margin-right: 4px;
  transform: translateY(-5px);
}
@media (min-width: 1200px) {
  #ticket-types .items .item .discount .label {
    font-size: 10px;
  }
}
#ticket-types .items .item .discount .num {
  font-family: "Pinyon Script", cursive;
  font-size: 44px;
  line-height: 1;
}
#ticket-types .items .item .discount .num span {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  margin-left: 10px;
}
#ticket-types .items .item .price {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (min-width: 1200px) {
  #ticket-types .items .item .price {
    font-size: 15px;
  }
}

#privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
#privacy-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#privacy-modal .modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 35px);
  max-height: calc(100% - 130px);
  background: #FFE7C5;
  color: #171717;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.08em;
  overflow-y: auto;
  padding: 44px 20px 56px 20px;
  text-align: justify;
}
@media screen and (min-width: 992px) {
  #privacy-modal .modal-body {
    max-width: 500px;
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 0.15em;
    padding: 33px 26px 56px 26px;
  }
}
#privacy-modal .modal-body .modal-title {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: #5379D2;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  margin-bottom: 17px;
}
@media screen and (min-width: 992px) {
  #privacy-modal .modal-body .modal-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.25em;
    margin-bottom: 50px;
  }
}
#privacy-modal .modal-body .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
#privacy-modal .modal-body .modal-close:before, #privacy-modal .modal-body .modal-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #CCC38D;
  transform: translate(-50%, -50%) rotate(45deg);
}
#privacy-modal .modal-body .modal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#privacy-modal .line {
  width: calc(100% - 40px);
  height: 1px;
  background: #CCC38D;
  max-width: 810px;
  position: relative;
  margin: 0 auto 20px auto;
}
#privacy-modal .line:last-child {
  top: auto;
  bottom: 0;
}
#privacy-modal .line:before, #privacy-modal .line:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: #CCC38D;
  border: 1px solid #CCC38D;
  transform: translate(0, -50%) rotate(45deg);
}
#privacy-modal .line:after {
  left: auto;
  right: 0;
}/*# sourceMappingURL=pre.css.map */