/* CSS Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
}

textarea {
  resize: none;
}

input {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
textarea,
select {
  /* Remove First */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

body {
  --colorLinkGreen: #21A256;
  --colorYellow: #FFA827;
  --colorPrimary: #1B4E30;
  --colorGrey: #D9D9D9;
  --colorLine: #DFDFDF;
}

.bb05 {
  border-bottom: 1px solid #E7E7E7;
}

.bt05 {
  border-top: 1px solid #E7E7E7;
}

@media screen and (max-width: 800px) {
  .bb05 {
    border-bottom: 0.5px solid #E7E7E7;
  }

  .bt05 {
    border-top: 0.5px solid #E7E7E7;
  }
}

svg {
  width: 100%;
  height: auto;
  display: block;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flexBox.jc-sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flexBox.al-ct {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.td-loading {
  position: relative;
  cursor: default;
}

.td-loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.65);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.td-loading:after {
  content: "";
  position: absolute;
  z-index: 99999;
  top: calc((100% - 2rem) / 2);
  left: calc((100% - 2rem) / 2);
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
  border: 0.15em solid var(--colorPrimary);
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.btn-loading {
  position: relative;
  cursor: default;
  color: transparent !important;
}

.btn-loading:after {
  content: "";
  position: absolute;
  z-index: 99999;
  top: calc((100% - 16px) / 2);
  left: calc((100% - 16px) / 2);
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.breadcrumb .icn {
  width: 14px;
}

.breadcrumb .breadcrumb-link {
  font-size: 12px;
  line-height: 150%;
  font-family: PlusJaS-Medium;
  display: block;
  text-transform: uppercase;
  color: #666666;
  opacity: 0.6;
}

.breadcrumb .breadcrumb-link.active,
.breadcrumb .breadcrumb-link:hover {
  opacity: 1;
}

.bner-booking-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--colorYellow);
  padding: 67px 62px 50px 44px;
  border-radius: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bner-booking-bottom .bg-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.bner-booking-bottom .bg-vid img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.bner-booking-bottom .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}

.bner-booking-bottom .info-left {
  z-index: 3;
  position: relative;
}

.bner-booking-bottom .booking-btn {
  z-index: 3;
  position: relative;
}

.bner-booking-bottom .logo {
  width: 230px;
  display: block;
}

.bner-booking-bottom .logo svg path {
  fill: #111;
}

.bner-booking-bottom .title {
  font-size: 36px;
  line-height: 140%;
  font-family: PlusJaS-SemiBold;
  margin-bottom: 0;
  color: #111;
}

.bner-booking-bottom .phone {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  display: none;
}

.bner-booking-bottom .phone .txt {
  font-size: 14px;
  line-height: 18px;
  font-family: PlusJaS-SemiBold;
  text-align: center;
  text-transform: uppercase;
  color: #111;
  display: block;
}

.bner-booking-bottom .phone .phone-number {
  font-size: 22px;
  line-height: 28px;
  font-family: TiltWarp-Regular;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #111;
}

.bner-booking-bottom .booking-btn {
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  border: 2px solid #111;
  border-radius: 10px;
  padding: 17px 47px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: PlusJaS-SemiBold;
  color: #111;
}

.bner-booking-bottom .booking-btn:hover {
  background: #111;
  color: #fff;
}

.cart-btn {
  -webkit-transform: translateX(145px);
  transform: translateX(145px);
  background: -webkit-gradient(linear, left top, right top, from(#0F361F), color-stop(70.05%, #205435));
  background: linear-gradient(90deg, #0F361F 0%, #205435 70.05%);
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: #3E6C51;
  border-radius: 10px 0px 0px 10px;
  padding: 10px 17px;
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 9999;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.cart-btn.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.cart-btn:hover {
  border-color: var(--colorYellow);
}

.cart-btn .total-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  font-family: PlusJaS-SemiBold;
  color: #D9D9D9;
}

.cart-btn .total-cart .count {
  color: #66CD90;
  margin-right: 3px;
}

.cart-btn .price-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.cart-btn .icn {
  width: 18px;
  display: block;
}

.cart-btn .numb {
  font-size: 16px;
  line-height: 24px;
  font-family: PlusJaS-SemiBold;
  text-transform: uppercase;
  color: #FFA827;
}

.number-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 3px;
}

.number-order .minus,
.number-order .plus {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.number-order .minus svg,
.number-order .plus svg {
  width: 24px;
}

.number-order input {
  width: 46px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background: none;
  border-left: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
  border-top: 0;
  border-bottom: 0;
  font-size: 14px;
  line-height: 120%;
  font-family: PlusJaS-Medium;
  color: #666666;
}

.join-club {
  -webkit-transition: 0.15s;
  transition: 0.15s;
  border: 2px solid #FFA827;
  border-radius: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  padding: 17px 22px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: PlusJaS-SemiBold;
  color: #FFFFFF;
}

.join-club:hover {
  background: #FFA827;
  color: var(--colorPrimary);
}

.anirotate {
  -webkit-animation: 4s linear infinite rotate-spin;
  animation: 4s linear infinite rotate-spin;
}

@-webkit-keyframes rotate-spin {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  75% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes rotate-spin {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  75% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.anirotate2 {
  -webkit-animation: 4.5s linear infinite rotate-spin2;
  animation: 4.5s linear infinite rotate-spin2;
}

@-webkit-keyframes rotate-spin2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  75% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes rotate-spin2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
  }

  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  75% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}

@keyframes mover {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
}

@-webkit-keyframes mover2 {
  0% {
    -webkit-transform: translateX(-35px);
    transform: translateX(-35px);
  }

  100% {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
}

@keyframes mover2 {
  0% {
    -webkit-transform: translateX(-35px);
    transform: translateX(-35px);
  }

  100% {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
}

.fancybox-fx-slide-in-out.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.fancybox-fx-slide-in-out.fancybox-slide--next {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.fancybox-fx-slide-in-out.fancybox-slide--current {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: scroll;
    margin-bottom: 15px;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb li {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .breadcrumb li:nth-child(1) {
    padding-left: 20px;
  }

  .breadcrumb li:nth-last-child(1) {
    padding-right: 20px;
  }

  .breadcrumb .breadcrumb-link {
    font-size: 10px;
  }

  .cart-btn {
    -webkit-transform: translateX(-190px);
    transform: translateX(-190px);
    background: -webkit-gradient(linear, left top, right top, from(#205435), color-stop(70.05%, #0F361F));
    background: linear-gradient(90deg, #205435 0%, #0F361F 70.05%);
    border: 1.5px solid #3E6C51;
    border-radius: 0px 46px 46px 0px;
    right: auto;
    left: 0;
    padding: 12px 26px 10px 60px;
    top: 76vh;
  }

  .cart-btn .total-cart {
    font-size: 12px;
    line-height: 15px;
    margin: 0;
  }

  .cart-btn .icn {
    position: absolute;
    left: 18px;
    width: 28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cart-btn .numb {
    font-size: 15px;
    line-height: 19px;
  }

  .bner-booking-bottom {
    width: calc(100% - 40px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 22px 24px;
    margin: 0 auto;
  }

  .bner-booking-bottom .logo {
    width: 100%;
    margin-bottom: 65px;
  }

  .bner-booking-bottom .info-left {
    width: 100%;
  }

  .bner-booking-bottom .title {
    width: 226px;
    margin-bottom: 12px;
    font-size: 30px;
    font-family: "PlusJaS-Medium";
    line-height: 120%;
  }

  .bner-booking-bottom .phone {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    margin-bottom: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .bner-booking-bottom .booking-btn {
    padding: 12px 26px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
  }

  .join-club {
    padding: 5px 15px;
    font-size: 14px;
    border: 1px solid #FFA827;
    margin-top: 15px;
  }
}

.searchBtn {
  width: 230px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  background: #0D311C;
  border: 1.5px solid #416952;
  border-radius: 35px;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.searchBtn .input-search {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 13px;
  line-height: 40px;
  /* or 18px */
  font-family: PlusJaS-Medium;
  color: #FFFFFF;
  background: none;
  border: none;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.searchBtn .input-search::-webkit-input-placeholder {
  opacity: 0.5;
}

.searchBtn .input-search::-moz-placeholder {
  opacity: 0.5;
}

.searchBtn .input-search:-ms-input-placeholder {
  opacity: 0.5;
}

.searchBtn .input-search::-ms-input-placeholder {
  opacity: 0.5;
}

.searchBtn .input-search::placeholder {
  opacity: 0.5;
}

.searchBtn .icn {
  cursor: pointer;
  width: 16px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@font-face {
  font-family: PlusJaS-Regular;
  src: url("../fonts/PlusJakartaSans-Regular.ttf");
}

@font-face {
  font-family: PlusJaS-Medium;
  src: url("../fonts/PlusJakartaSans-Medium.ttf");
}

@font-face {
  font-family: PlusJaS-Italic;
  src: url("../fonts/PlusJakartaSans-Italic.ttf");
}

@font-face {
  font-family: PlusJaS-SemiBold;
  src: url("../fonts/PlusJakartaSans-SemiBold.ttf");
}

@font-face {
  font-family: PlusJaS-Bold;
  src: url("../fonts/PlusJakartaSans-Bold.ttf");
}

@font-face {
  font-family: TiltWarp-Regular;
  src: url("../fonts/TiltWarpEdited-Regular.otf");
}

@font-face {
  font-family: TrixiPro-Regular;
  src: url("../fonts/TrixiPro-Regular.ttf");
}

@font-face {
  font-family: Oswald-Stencil;
  src: url("../fonts/Oswald-Stencil.otf");
}

.food-detail__wrapper {
  padding-top: 20px;
  padding-bottom: 80px;
}

.food-detail__flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding-bottom: 30px;
  border-bottom: 0.7px solid #DFDFDF;
}

.food-detail__flexbox .sidebar {
  width: 320px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.food-detail__flexbox .sidebar .bner-cta {
  display: block;
  position: sticky;
  top: 150px;
}

.food-detail__flexbox .sidebar .bner-cta img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.food-detail__content {
  width: 735px;
  max-width: 100%;
}

.food-detail__content .galleryBox {
  margin-bottom: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding-top: 35.66%;
}

.food-detail__content .galleryBox .images-food {
  position: relative;
  display: block;
  cursor: -webkit-grab;
  cursor: grab;
  position: relative;
}

.food-detail__content .galleryBox .images-food:before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  content: "";
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.food-detail__content .galleryBox .images-food:before {
  border-radius: 10px;
}

.food-detail__content .galleryBox .images-food.loading-food:after {
  content: "";
  position: absolute;
  z-index: 99999;
  top: calc((100% - 2rem) / 2);
  left: calc((100% - 2rem) / 2);
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
  border: 0.15em solid var(--colorPrimary);
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.food-detail__content .galleryBox .images-food.loading-food i {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.food-detail__content .galleryBox .images-food i {
  border-radius: 10px;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  width: 100%;
  padding-top: 35.66%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}

.food-detail__content .swiper-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
}

.food-detail__content .paginationBox {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 20px;
  bottom: 11px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 29px;
  z-index: 3;
}

.food-detail__content .paginationBox .icon {
  width: 10px;
  display: block;
  margin-right: 7px;
}

.food-detail__content .paginationBox .swiper-pagination {
  position: relative;
  width: auto;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  line-height: 100%;
  color: #FFFFFF;
  font-family: "PlusJaS-Medium";
}

.food-detail__content .paginationBox .swiper-pagination span {
  width: 8px;
}

.food-detail__content .number-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 3px;
}

.food-detail__content .number-order .minus,
.food-detail__content .number-order .plus {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.food-detail__content .number-order .minus svg,
.food-detail__content .number-order .plus svg {
  width: 24px;
}

.food-detail__content .number-order input {
  width: 46px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background: none;
  border-left: 1px solid #E2E2E2;
  border-right: 1px solid #E2E2E2;
  border-top: 0;
  border-bottom: 0;
  font-size: 14px;
  line-height: 120%;
  font-family: PlusJaS-Medium;
  color: #666666;
}

.food-detail__content .funcsRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.food-detail__content .name {
  font-size: 22px;
  line-height: 130%;
  /* or 25px */
  padding-right: 55px;
  color: #222222;
  font-family: PlusJaS-SemiBold;
}

.food-detail__content .note-food {
  font-size: 16px;
  line-height: 130%;
  font-family: PlusJaS-Medium;
  color: #B5292F;
  margin-top: 7px;
  margin-bottom: 10px;
}

.food-detail__content .priceBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.food-detail__content .priceBox .current-price {
  font-size: 15px;
  line-height: 130%;
  font-family: PlusJaS-SemiBold;
  color: #1B4E30;
}

.food-detail__content .priceBox .original-price {
  font-size: 11px;
  font-family: PlusJaS-Regular;
  text-decoration-line: line-through;
  margin-left: 11px;
  color: #999999;
}

.food-detail__content .content {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 0.7px dashed #DFDFDF;
}

.food-detail__content .sapo {
  position: relative;
  font-size: 16px;
  line-height: 140%;
  font-family: PlusJaS-Regular;
  color: #222222;
}

.food-detail__content .atc-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 123px;
  height: 42px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  border-radius: 34px;
  background: var(--colorPrimary);
}

.food-detail__content .atc-btn .icn {
  width: 22px;
  display: block;
}

.food-detail__content .atc-btn .txt {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 19px;
  font-family: PlusJaS-SemiBold;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .food-detail__wrapper {
    padding-top: 15px;
  }

  .food-detail__flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .food-detail__flexbox .sidebar {
    width: 100%;
    padding: 0 20px;
  }

  .food-detail__content .galleryBox {
    margin: 0;
  }

  .food-detail__content .galleryBox .images-food:before {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .food-detail__content .galleryBox .images-food i {
    border-radius: 0;
  }

  .food-detail__content .swiper-gallery {
    border-radius: 0;
  }

  .food-detail__content .food-info {
    padding: 15px 20px;
  }

  .food-detail__content .funcsRight {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .food-detail__content .flexBox.al-ct {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .food-detail__content .name {
    margin-bottom: 7px;
    font-size: 19px;
    padding: 0;
  }

  .food-detail__content .priceBox {
    margin-bottom: 7px;
  }

  .food-detail__content .content {
    margin-top: 15px;
  }

  .food-detail__content .sapo {
    line-height: 160%;
    margin-top: 15px;
  }

  .food-detail__content .atc-btn {
    width: 106px;
    height: 36px;
  }

  .food-detail__content .atc-btn .txt {
    font-size: 13px;
    line-height: 16px;
  }
}

.list-food-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-food-menu.combo-menu li {
  width: calc((100% - 75px) / 4);
}

.list-food-menu.combo-menu .food-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.list-food-menu.combo-menu .food-menu .thumb {
  width: 100%;
  padding-top: 100%;
  border-radius: 10px 10px 0 0;
}

.list-food-menu.combo-menu .food-menu .thumb:before {
  border-radius: 10px 10px 0 0;
}

.list-food-menu.combo-menu .food-menu .info-box {
  padding: 12px 16px;
  border-radius: 0px 0px 10px 10px;
}

.list-food-menu.combo-menu .food-menu .title-food {
  font-size: 18px;
  font-family: PlusJaS-SemiBold;
}

.list-food-menu.combo-menu .food-menu .funcsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  right: 15px;
}

.list-food-menu li {
  width: calc((100% - 50px) / 3);
}

.list-food-menu .food-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-food-menu .food-menu .thumb {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 125px;
  height: 125px;
  border-radius: 5px 0px 0px 5px;
  overflow: hidden;
  position: relative;
}

.list-food-menu .food-menu .thumb:before {
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100%;
  background: transparent;
  display: block;
  position: absolute;
  top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px 0px 0px 5px;
  left: 0;
  z-index: 2;
  content: "";
}

.list-food-menu .food-menu .thumb img {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-food-menu .food-menu .info-box {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: #FFFFFF;
  border-style: solid;
  border-color: #EFEFEF;
  border-radius: 0px 5px 5px 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: auto;
  padding: 10px 10px 10px 15px;
  border-width: 1px 1px 1px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.list-food-menu .food-menu .title-food {
  white-space: normal;
  font-size: 17px;
  line-height: 120%;
  font-family: PlusJaS-Medium;
  display: block;
  color: #222222;
  margin-bottom: 8px;
}

.list-food-menu .food-menu .title-food:hover {
  color: #555;
}

.list-food-menu .food-menu .price-food {
  font-size: 15px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  color: #1B4E30;
  margin-bottom: auto;
}

.list-food-menu .food-menu .funcsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.list-food-menu .add-to-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 10px;
  gap: 6px;
  border: 1px solid #E2E2E2;
  border-radius: 33px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

.list-food-menu .add-to-card:hover {
  border: 1px solid #FFA827;
  background: #FFA827;
}

.list-food-menu .add-to-card:hover svg path {
  fill: #222;
}

.list-food-menu .add-to-card .icn {
  height: 11px;
  width: 10px;
  display: block;
  position: relative;
}

.list-food-menu .add-to-card.added {
  border: 1px solid #FFA827;
  background: #FFA827;
}

.list-food-menu .add-to-card.added svg path {
  fill: #222;
}

.list-food-menu .add-to-card.added .icn-plus {
  opacity: 0;
  visibility: hidden;
}

.list-food-menu .add-to-card.added .icn-check {
  opacity: 1;
  visibility: visible;
}

.list-food-menu .add-to-card .icn-plus {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  width: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}

.list-food-menu .add-to-card .icn-check {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  width: 100%;
  display: block;
  opacity: 0;
  visibility: hidden;
}

.list-food-menu .add-to-card .txt {
  font-size: 12px;
  line-height: 15px;
  font-family: PlusJaS-SemiBold;
  display: block;
  color: #000000;
}

.list-food-menu .menuList.td-loading {
  min-height: 70vh;
}

@media screen and (max-width: 768px) {
  .list-food-menu {
    padding: 0 20px;
    gap: 15px;
  }

  .list-food-menu.combo-menu {
    padding: 0;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    overflow-x: scroll;
    white-space: nowrap;
    gap: 10px;
  }

  .list-food-menu.combo-menu::-webkit-scrollbar {
    display: none;
  }

  .list-food-menu.combo-menu li {
    width: 220px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .list-food-menu.combo-menu li:nth-child(1) {
    margin-left: 20px;
  }

  .list-food-menu.combo-menu li:nth-last-child(1) {
    margin-right: 20px;
  }

  .list-food-menu.combo-menu .food-menu {
    padding-bottom: 0;
    border: none;
  }

  .list-food-menu.combo-menu .food-menu .info-box {
    background: #fff;
    border-left: 1px solid #EFEFEF;
    border-right: 1px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
    border-radius: 0px 0px 10px 10px;
  }

  .list-food-menu.combo-menu .food-menu .title-food {
    font-size: 16px;
  }

  .list-food-menu li {
    width: 100%;
  }

  .list-food-menu .food-menu {
    padding-bottom: 15px;
    border-bottom: 0.7px solid #DFDFDF;
  }

  .list-food-menu .food-menu .thumb {
    width: 70px;
    height: 70px;
    border-radius: 5px;
  }

  .list-food-menu .food-menu .info-box {
    position: relative;
    padding: 0 75px 0 12px;
    background: none;
    border: none;
  }

  .list-food-menu .food-menu .title-food {
    font-size: 15px;
  }

  .list-food-menu .food-menu .price-food {
    font-size: 13px;
  }

  .list-food-menu .food-menu .funcsBox {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 11px;
  }
}

.PopUp-detail {
  width: 100vw;
}

.PopUp-detail .popup-detailfood-content {
  position: relative;
  padding-bottom: 75px;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.PopUp-detail .popup-detailfood-content .close-popup {
  top: 20px;
  right: 20px;
  position: absolute;
  width: 32px;
  display: block;
  z-index: 2;
}

.PopUp-detail .content-pop {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}

.PopUp-detail .funcsFixed {
  position: fixed;
  z-index: 99;
  bottom: 0;
  -webkit-transition: bottom 0.2s ease;
  transition: bottom 0.2s ease;
  left: 0;
  width: 100%;
  padding: 12px 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background: #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.PopUp-detail .price-total .txt {
  font-size: 10px;
  line-height: 140%;
  font-family: PlusJaS-Regular;
  margin-bottom: 3px;
  color: #666666;
}

.PopUp-detail .price-total .numb {
  font-size: 15px;
  line-height: 130%;
  font-family: PlusJaS-Medium;
  color: #222222;
}

.PopUp-detail .atc-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 123px;
  height: 42px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  border-radius: 34px;
  background: var(--colorPrimary);
}

.PopUp-detail .atc-btn .icn {
  width: 22px;
  display: block;
}

.PopUp-detail .atc-btn .txt {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 19px;
  font-family: PlusJaS-SemiBold;
  color: #FFFFFF;
}

.PopUp-detail .galleryBox {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding-top: 50%;
}

.PopUp-detail .galleryBox .images-food {
  position: relative;
  display: block;
  cursor: -webkit-grab;
  cursor: grab;
  position: relative;
}

.PopUp-detail .galleryBox .images-food:before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  content: "";
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.PopUp-detail .galleryBox .images-food.loading-food:after {
  content: "";
  position: absolute;
  z-index: 99999;
  top: calc((100% - 2rem) / 2);
  left: calc((100% - 2rem) / 2);
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
  border: 0.15em solid var(--colorPrimary);
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.PopUp-detail .galleryBox .images-food.loading-food i {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.PopUp-detail .galleryBox .images-food i {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  width: 100%;
  padding-top: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}

.PopUp-detail .swiper-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.PopUp-detail .paginationBox {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 20px;
  bottom: 11px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 29px;
  z-index: 3;
}

.PopUp-detail .paginationBox .icon {
  width: 10px;
  display: block;
  margin-right: 7px;
}

.PopUp-detail .paginationBox .swiper-pagination {
  position: relative;
  width: auto;
  bottom: auto;
  left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  line-height: 100%;
  color: #FFFFFF;
  font-family: "PlusJaS-Medium";
}

.PopUp-detail .paginationBox .swiper-pagination span {
  width: 8px;
}

.PopUp-detail .food-info {
  padding: 20px;
}

.PopUp-detail .name {
  font-size: 19px;
  line-height: 130%;
  /* or 25px */
  padding-right: 55px;
  color: #222222;
  font-family: PlusJaS-SemiBold;
}

.PopUp-detail .note-food {
  font-size: 16px;
  line-height: 130%;
  font-family: PlusJaS-Medium;
  color: #B5292F;
  margin-top: 7px;
  margin-bottom: 10px;
}

.PopUp-detail .priceBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.PopUp-detail .priceBox .current-price {
  font-size: 15px;
  line-height: 130%;
  font-family: PlusJaS-SemiBold;
  color: #1B4E30;
}

.PopUp-detail .priceBox .original-price {
  font-size: 11px;
  font-family: PlusJaS-Regular;
  text-decoration-line: line-through;
  margin-left: 11px;
  color: #999999;
}

.PopUp-detail .sapo {
  margin-top: 20px;
  padding-top: 15px;
  position: relative;
  font-size: 14px;
  line-height: 140%;
  font-family: PlusJaS-Regular;
  color: #222222;
  border-top: 0.7px dashed #DFDFDF;
}

.popup-active .fancybox-slide--html {
  padding: 0;
}

.popup-active .fancybox-content {
  padding: 0;
  vertical-align: top;
}

.popup-active .fancybox-bg {
  background: rgba(0, 0, 0, 0.7);
}

.popup-active .fancybox-close-small {
  display: none;
}

@media screen and (min-width: 768px) {
  .PopUp-detail {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width: 600px;
  }

  .PopUp-detail .funcsFixed {
    position: absolute;
  }

  .PopUp-detail .popup-detailfood-content {
    max-height: calc(100vh - 60px);
    min-height: unset;
  }

  .PopUp-detail .popup-detailfood-content .content-pop {
    overflow-y: scroll;
    overflow-y: overlay;
    padding-bottom: 0;
  }

  .PopUp-detail .popup-detailfood-content .content-pop::-webkit-scrollbar {
    width: 5px;
    height: 0;
  }

  .PopUp-detail .popup-detailfood-content .content-pop::-webkit-scrollbar-track {
    margin: 345px 0 0;
  }

  .PopUp-detail .popup-detailfood-content .content-pop::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    -webkit-box-shadow: rgba(255, 255, 255, 0.3) 0 0 0 1px;
    box-shadow: rgba(255, 255, 255, 0.3) 0 0 0 1px;
  }

  .PopUp-detail .popup-detailfood-content .content-pop:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.45);
  }

  .PopUp-detail .popup-detailfood-content .content-pop::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.85);
  }

  .popup-active .fancybox-bg {
    background: rgba(0, 0, 0, 0.75);
  }

  .popup-active .fancybox-content {
    vertical-align: middle;
  }
}

.Popup-warning {
  width: 400px;
  margin: 0 auto;
  background: #FFFFFF;
  /* Pop-up Shadow */
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.Popup-warning .warningBox {
  position: relative;
  padding: 38px 40px;
}

.Popup-warning .heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  /* or 27px */
  text-align: center;
  font-family: PlusJaS-SemiBold;
  color: #222222;
  margin-bottom: 30px;
}

.Popup-warning .funcsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.Popup-warning .confirm-btn {
  font-size: 15px;
  line-height: 19px;
  /* identical to box height */
  padding: 12px 22px;
  text-align: center;
  text-transform: uppercase;
  background: #333333;
  border-radius: 40px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: PlusJaS-SemiBold;
}

.Popup-warning .cancel-btn {
  font-size: 15px;
  line-height: 120%;
  font-family: PlusJaS-SemiBold;
  display: block;
  color: #1B4E30;
}

@media screen and (max-width: 780px) {
  .Popup-warning {
    width: calc(100% - 40px);
  }
}

.popup-warning-active.popup-active .Popup-warning {
  vertical-align: middle;
}

.popup-warning-active.popup-active .fancybox-bg {
  background: rgba(0, 0, 0, 0.95);
}

.branch-web {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  margin-top: 30px;
}

.branch-web .branch-left {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 356px;
  background: #FFA827;
  border-radius: 10px 0px 0px 10px;
  padding: 23px 0 23px 32px;
  height: auto;
}

.branch-web .branch-left .count-branch {
  font-size: 54px;
  line-height: 68px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: TiltWarp-Regular;
  color: #222222;
  margin-bottom: 5px;
}

.branch-web .branch-left .des {
  font-size: 14px;
  line-height: 130%;
  font-family: PlusJaS-Medium;
  color: #603A03;
  margin-bottom: 23px;
}

.branch-web .branch-left .list-filter-branch .branch-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid #E79E32;
  opacity: 0.5;
}

.branch-web .branch-left .list-filter-branch .branch-filter:hover,
.branch-web .branch-left .list-filter-branch .branch-filter.active {
  opacity: 1;
}

.branch-web .branch-left .list-filter-branch .name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 20px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  color: #222222;
  display: block;
}

.branch-web .branch-left .list-filter-branch .count {
  font-size: 14px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  color: #222222;
  display: block;
}

.branch-web .content-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-height: 549px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 0 0 0 37px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.branch-web .content-right .content-tab {
  overflow-y: scroll;
  height: 100%;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}

.branch-web .content-right .content-tab.active {
  display: block;
}

.branch-web .content-right .content-tab::-webkit-scrollbar {
  width: 4px;
}

.branch-web .content-right .content-tab::-webkit-scrollbar-track {
  background: none;
}

.branch-web .content-right .content-tab::-webkit-scrollbar-thumb {
  background-color: #CACACA;
}

.branch-web .content-right .near-distant {
  padding-top: 15px;
}

.branch-web .content-right .branch-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.branch-web .content-right .branch-box+.branch-box {
  margin-top: 30px;
}

.branch-web .content-right .label-branch {
  font-size: 18px;
  line-height: 100%;
  font-family: PlusJaS-Bold;
  text-transform: uppercase;
  color: #222222;
}

.branch-web .content-right .branch-info {
  padding-top: 12px;
  padding-bottom: 22px;
  padding-right: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.7px solid #DFDFDF;
  gap: 16px;
}

.branch-web .content-right .branch-info .thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 99px;
  height: 99px;
  overflow: hidden;
  border-radius: 3px;
}

.branch-web .content-right .branch-info .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.branch-web .content-right .branch-info .thumb .status {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  z-index: 2;
  background: linear-gradient(37.14deg, #000000 0%, rgba(0, 0, 0, 0) 61.5%);
  border-radius: 3px;
  padding: 9px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 11px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  color: #FFFFFF;
  gap: 5px;
}

.branch-web .content-right .branch-info .thumb .status.open .dot {
  background: #23C446;
}

.branch-web .content-right .branch-info .thumb .status.closed .dot {
  background: #FF3A3A;
}

.branch-web .content-right .branch-info .thumb .status.full .dot {
  background: #F87C37;
}

.branch-web .content-right .branch-info .thumb .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.branch-web .content-right .branch-info .branch-total {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.branch-web .content-right .branch-info .loca {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 13px;
}

.branch-web .content-right .branch-info .loca .icn {
  width: 20px;
  display: block;
}

.branch-web .content-right .branch-info .loca .txt {
  font-size: 18px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  color: #222222;
  display: block;
}

.branch-web .content-right .branch-info .type-gr {
  padding-left: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  line-height: 150%;
  font-family: PlusJaS-Medium;
  color: #666666;
  margin-bottom: 6px;
}

.branch-web .content-right .branch-info .info-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.branch-web .content-right .branch-info .info-type .icn {
  width: 12px;
  display: block;
}

.branch-web .content-right .branch-info .info-type .txt {
  font-size: 13px;
  display: block;
}

.branch-web .content-right .branch-info .note {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.branch-web .content-right .branch-info .funcsBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
}

.branch-web .content-right .branch-info .funcsBox a {
  background: #F5F5F5;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 40px;
  font-size: 13px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  text-align: center;
  color: #1B4E30;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

.branch-web .content-right .branch-info .funcsBox a.disableOrder {
  opacity: 0.4;
  cursor: default;
  color: #555;
}

.branch-web .content-right .branch-info .funcsBox a.disableOrder:hover {
  color: #1B4E30;
  background: #F5F5F5;
}

.branch-web .content-right .branch-info .funcsBox a:hover {
  background: var(--colorPrimary);
  color: #fff;
}

.branch-mob {
  display: none;
}

@media screen and (max-width: 768px) {
  .branch-web {
    display: none;
  }

  .branch-mob {
    margin-top: 45px;
    display: block;
  }

  .branch-mob .heading {
    background: #FFA827;
    border-radius: 10px 10px 0px 0px;
    font-size: 30px;
    line-height: 38px;
    /* identical to box height */
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #222222;
    padding: 7px 20px 5px;
    font-family: TiltWarp-Regular;
  }

  .branch-mob .near-by {
    padding: 15px 20px 20px;
    background: #F5F5F5;
  }

  .branch-mob .near-by .branch-nbl {
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .branch-mob .head-text {
    font-size: 14px;
    line-height: 100%;
    font-family: PlusJaS-Bold;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #222222;
  }

  .branch-mob .branch-info {
    padding: 15px;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .branch-mob .branch-info .thumb {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 3px;
  }

  .branch-mob .branch-info .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
  }

  .branch-mob .branch-info .thumb .status {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: absolute;
    z-index: 2;
    background: linear-gradient(37.14deg, #000000 0%, rgba(0, 0, 0, 0) 61.5%);
    border-radius: 3px;
    padding: 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 8px;
    line-height: 100%;
    font-family: PlusJaS-SemiBold;
    color: #FFFFFF;
    gap: 5px;
  }

  .branch-mob .branch-info .thumb .status.open .dot {
    background: #23C446;
  }

  .branch-mob .branch-info .thumb .status.closed .dot {
    background: #FF3A3A;
  }

  .branch-mob .branch-info .thumb .status.full .dot {
    background: #F87C37;
  }

  .branch-mob .branch-info .thumb .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
  }

  .branch-mob .branch-info .branch-total {
    width: calc(100% - 80px);
  }

  .branch-mob .branch-info .loca {
    margin-bottom: 10px;
    display: block;
  }

  .branch-mob .branch-info .loca .icn {
    display: none;
  }

  .branch-mob .branch-info .loca .txt {
    font-size: 15px;
    line-height: 100%;
    font-family: PlusJaS-SemiBold;
    color: #222222;
    display: block;
  }

  .branch-mob .branch-info .type-gr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    line-height: 150%;
    font-family: PlusJaS-Medium;
    color: #666666;
    margin-bottom: 10px;
  }

  .branch-mob .branch-info .info-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .branch-mob .branch-info .info-type .icn {
    width: 12px;
    display: block;
  }

  .branch-mob .branch-info .info-type .txt {
    font-size: 11px;
    display: block;
  }

  .branch-mob .branch-info .note {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 150%;
    font-family: PlusJaS-Medium;
  }

  .branch-mob .branch-info .funcsBox {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    width: 100%;
  }

  .branch-mob .branch-info .funcsBox a {
    background: #F5F5F5;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0;
    font-size: 12px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 100%;
    font-family: PlusJaS-SemiBold;
    text-align: center;
    color: #1B4E30;
    -webkit-transition: 0.15s ease;
    transition: 0.15s ease;
  }

  .branch-mob .branch-info .funcsBox a.disableOrder {
    opacity: 0.4;
    cursor: default;
    color: #555;
  }

  .branch-mob .branch-info .funcsBox a.disableOrder:hover {
    color: #1B4E30;
    background: #F5F5F5;
  }

  .branch-mob .branch-info .funcsBox a:hover {
    background: var(--colorPrimary);
    color: var(--colorYellow);
  }

  .branch-mob .branch-toggleBox {
    max-height: 44px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    overflow: hidden;
    border-top: 1px solid #E9E9E9;
  }

  .branch-mob .branch-toggleBox.active {
    max-height: 500px;
  }

  .branch-mob .branch-toggleBox.active .district-toggle .arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .branch-mob .district-toggle {
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0 10px 0 20px;
    background: #FFFFFF;
  }

  .branch-mob .district-toggle .name {
    font-size: 14px;
    line-height: 100%;
    font-family: PlusJaS-Bold;
    display: block;
    text-transform: uppercase;
    color: #222222;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .branch-mob .district-toggle .count {
    width: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 100%;
    font-family: PlusJaS-Medium;
    display: block;
    text-align: right;
    color: #1B4E30;
  }

  .branch-mob .district-toggle .arrow {
    width: 10px;
    display: block;
  }

  .branch-mob .branch-list {
    padding: 15px 0;
    background: #F5F5F5;
  }

  .branch-mob .swiper-container.one-child .swiper-slide {
    width: 100%;
    padding: 0 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .branch-mob .swiper-container.one-child .swiper-slide:nth-child(1) {
    margin-left: 0;
  }

  .branch-mob .swiper-container.one-child .swiper-slide:nth-last-child(1) {
    margin-right: 0;
  }

  .branch-mob .swiper-container .swiper-slide {
    width: 320px;
    margin-left: 10px;
  }

  .branch-mob .swiper-container .swiper-slide:nth-child(1) {
    margin-left: 19px;
  }

  .branch-mob .swiper-container .swiper-slide:nth-last-child(1) {
    margin-right: 19px;
  }
}

.PopUp-menu.fancybox-content {
  background: none;
}

.PopUp-menu .popup-menu-content {
  width: 550px;
  max-width: 100%;
  background: none;
  padding: 50px 0;
}

.PopUp-menu .menu-popup__content {
  background: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
}

.PopUp-menu .menu-popup__footer {
  width: 100%;
}

.PopUp-menu .heading {
  background: #FFA827;
  border-radius: 5px 5px 0px 0px;
  padding: 25px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.PopUp-menu .heading .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.PopUp-menu .heading .text .icn {
  width: 32px;
}

.PopUp-menu .heading .text .txt {
  font-size: 38px;
  line-height: 110%;
  font-family: TiltWarp-Regular;
  letter-spacing: -0.02em;
  color: #222222;
}

.PopUp-menu .heading .save-btn {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #222222;
  padding: 10px 16px;
  gap: 10px;
  margin-right: 21px;
  border-radius: 10px;
}

.PopUp-menu .heading .save-btn .icn {
  width: 16px;
  display: block;
}

.PopUp-menu .heading .save-btn .txt {
  font-size: 14px;
  line-height: 18px;
  font-family: PlusJaS-SemiBold;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #222222;
}

.PopUp-menu .heading .close-popup {
  width: 32px;
  display: block;
  cursor: pointer;
}

.PopUp-menu .total-menu {
  padding: 15px 25px 25px;
  position: relative;
}

.PopUp-menu .price-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.PopUp-menu .price-total .txt {
  font-size: 22px;
  line-height: 110%;
  font-family: PlusJaS-Bold;
  letter-spacing: -0.02em;
  color: #1B4E30;
}

.PopUp-menu .price-total .numb {
  font-size: 18px;
  line-height: 110%;
  /* identical to box height, or 20px */
  font-family: PlusJaS-Bold;
  text-align: right;
  letter-spacing: -0.02em;
  color: #1B4E30;
}

.PopUp-menu .note {
  font-size: 11px;
  line-height: 140%;
  font-family: PlusJaS-Italic;
  color: #666666;
  z-index: 1;
  position: relative;
}

.PopUp-menu .list-food-add {
  margin-bottom: 200px;
}

.PopUp-menu .list-food-add li {
  border-bottom: 0.7px dashed #DFDFDF;
}

.PopUp-menu .food-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.PopUp-menu .info-food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.PopUp-menu .info-food .name {
  font-size: 15px;
  line-height: 120%;
  font-family: PlusJaS-Medium;
  color: #222222;
}

.PopUp-menu .info-food .price-ori {
  font-size: 12px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  color: #999999;
}

.PopUp-menu .quantity {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.PopUp-menu .price-after {
  width: 90px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 100%;
  font-family: PlusJaS-Medium;
  text-align: right;
  color: #1B4E30;
}

.PopUp-menu .remove-food {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 10px;
  display: block;
  margin-left: 10px;
}

.PopUp-menu .right-food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.PopUp-menu .remove-btn {
  top: 65px;
  right: 25px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.PopUp-menu .remove-btn .icn {
  width: 10px;
  display: block;
}

.PopUp-menu .remove-btn .txt {
  font-size: 13px;
  line-height: 16px;
  font-family: PlusJaS-Medium;
  color: #222222;
  display: block;
}

.PopUp-menu .booking-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

.PopUp-menu .line {
  width: calc(100% + 50px);
  margin-left: -25px;
  height: 0.7px;
  background: #EBEBEB;
  display: block;
  margin-top: 15px;
}

.PopUp-menu .bookingPopup {
  background: #FFA827;
  border-radius: 48px;
  padding: 12px 22px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  line-height: 19px;
  /* identical to box height */
  font-family: PlusJaS-SemiBold;
  text-align: center;
  text-transform: uppercase;
  color: #222222;
}

.PopUp-menu .note-call {
  font-size: 18px;
  line-height: 110%;
  text-align: center;
  font-family: PlusJaS-Medium;
  color: #777777;
}

.PopUp-menu .note-call a {
  color: #1B4E30;
  font-family: PlusJaS-Bold;
}

@media screen and (max-width: 768px) {
  .PopUp-menu .popup-menu-content {
    padding: 80px 0 0;
    height: 100vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 100vh;
    overflow: hidden;
  }

  .PopUp-menu .content-pop {
    height: 100%;
  }

  .PopUp-menu .menu-popup__content {
    border-radius: 10px 10px 0px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }

  .PopUp-menu .menu-popup__footer {
    display: none;
  }

  .PopUp-menu .heading {
    border-radius: 10px 10px 0px 0px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 16px 20px;
  }

  .PopUp-menu .heading .text .icn {
    width: 30px;
  }

  .PopUp-menu .heading .text .txt {
    font-size: 26px;
  }

  .PopUp-menu .heading .save-btn {
    padding: 6px 10px;
    gap: 6px;
    border: 1.5px solid #222222;
    border-radius: 5px;
  }

  .PopUp-menu .heading .save-btn .icn {
    width: 14px;
  }

  .PopUp-menu .heading .save-btn .txt {
    font-size: 12px;
    line-height: 15px;
  }

  .PopUp-menu .heading .close-popup {
    width: 26px;
  }

  .PopUp-menu .total-menu {
    padding: 10px 0 80px;
    height: calc(100% - 62px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .PopUp-menu .price-total {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 20px;
  }

  .PopUp-menu .price-total .txt {
    font-size: 18px;
  }

  .PopUp-menu .price-total .numb {
    font-size: 15px;
  }

  .PopUp-menu .note {
    font-size: 10px;
    position: absolute;
    bottom: 41px;
    text-align: center;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    left: 0;
  }

  .PopUp-menu .list-food-add {
    margin-bottom: 30px;
    height: calc(100% - 147px);
    overflow-x: scroll;
    padding: 0 20px;
  }

  .PopUp-menu .food-item {
    padding: 15px 0px 23px;
    position: relative;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .PopUp-menu .info-food {
    gap: 17px;
  }

  .PopUp-menu .info-food .name {
    font-size: 14px;
  }

  .PopUp-menu .info-food .price-ori {
    padding-left: 100px;
  }

  .PopUp-menu .quantity {
    position: absolute;
    bottom: 15px;
    left: 0;
  }

  .PopUp-menu .quantity .number-order .minus,
  .PopUp-menu .quantity .number-order .plus {
    width: 25px;
    height: 25px;
  }

  .PopUp-menu .quantity .number-order .minus svg,
  .PopUp-menu .quantity .number-order .plus svg {
    width: 18px;
  }

  .PopUp-menu .quantity .number-order input {
    width: 36px;
    font-size: 12px;
    line-height: 15px;
  }

  .PopUp-menu .price-after {
    font-size: 12px;
    font-family: "PlusJaS-SemiBold";
  }

  .PopUp-menu .remove-btn {
    position: relative;
    top: auto;
    right: 0;
    left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 20px;
    opacity: 1;
  }

  .PopUp-menu .remove-btn .txt {
    font-size: 14px;
  }

  .PopUp-menu .booking-box {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-top: 1px solid #DFDFDF;
    padding: 15px 15px 0;
  }

  .PopUp-menu .note-call {
    font-size: 16px;
  }
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce),
print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}

@-webkit-keyframes bounce {

  0%,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

@keyframes bounce {

  0%,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shakeX {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes shakeY {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}

.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }

  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}

@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}

@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}

@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}

@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}

.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}

.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.noti-page {
  position: absolute;
  background: #FFA827;
  width: 100%;
  top: -72px;
  left: 0;
  z-index: 9999;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

.noti-page .close-noti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 36px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
}

.noti-page .close-noti svg {
  width: 16px;
}

.noti-page .text-link {
  text-align: center;
  height: 36px;
  font-family: PlusJaS-SemiBold;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  /* identical to box height */
  text-transform: uppercase;
  color: #222222;
}

.noti-page .text-link:hover {
  text-decoration: underline;
}

.td-header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  background: transparent;
}

.td-header.bg-active {
  background-image: url("../../images/header-bg-web.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.td-header.bb {
  border-bottom: 4px solid #FFA827;
}

.td-header .header-content {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 13px 0;
}

.td-header .src-btn {
  display: none;
}

.td-header .td-logo {
  width: 300px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 24px;
}

.td-header .textBox {
  padding-left: 22px;
  position: relative;
  height: 40px;
  width: 160px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.td-header .textBox.active .hl-box {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.td-header .textBox.active .name-page {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.td-header .textBox:before {
  background: #386249;
  height: 40px;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
}

.td-header .textBox .hl-box,
.td-header .textBox .name-page {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 22px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

.td-header .textBox .hl-box {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.td-header .textBox .hl-box .txt {
  font-size: 14px;
  line-height: 18px;
  font-family: PlusJaS-SemiBold;
  text-transform: uppercase;
  display: block;
  color: #FFFFFF;
}

.td-header .textBox .hl-box .numb {
  font-size: 22px;
  line-height: 28px;
  font-family: TiltWarp-Regular;
  text-transform: uppercase;
  display: block;
  color: #FFA827;
}

.td-header .textBox .name-page {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  font-size: 32px;
  line-height: 110%;
  font-family: TiltWarp-Regular;
  letter-spacing: -0.02em;
  display: block;
  color: #FFA827;
}

.td-header .list-content-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.td-header .list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.td-header .link-nav {
  font-size: 15px;
  line-height: 42px;
  /* identical to box height */
  display: block;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: PlusJaS-SemiBold;
}

.td-header .link-nav:hover,
.td-header .link-nav.active {
  color: #FFA827;
}

.td-header .call-btn {
  display: none;
}

.td-header .bookingPopup {
  border: 2px solid #FFA827;
  border-radius: 10px;
  font-size: 15px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  color: #FFFFFF;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: transparent;
  margin-left: 25px;
  padding: 12px 22px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  font-family: PlusJaS-SemiBold;
}

.td-header .bookingPopup:hover {
  background: var(--colorYellow);
  color: var(--colorPrimary);
}

.header-page {
  background-image: linear-gradient(rgba(15, 20, 15, 0.75), rgba(10, 15, 10, 0.85)), url("../../images/dining_space_luxury.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 160px 30px 80px 30px;
}

.header-page .hp-content {
  max-width: 100%;
  width: 1115px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header-page .title-page {
  font-size: 50px;
  line-height: 110%;
  font-family: TiltWarp-Regular;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #FFA827;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.header-page .info-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-page .des {
  width: 595px;
  max-width: 100%;
  font-family: PlusJaS-Medium;
  font-size: 16px;
  line-height: 140%;
  color: #D9D9D9;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .noti-page {
    top: -104px;
  }

  .noti-page .close-noti {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 36px;
    height: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .noti-page .close-noti svg {
    width: 10px;
  }

  .noti-page .text-link {
    font-size: 12px;
    line-height: 150%;
    min-height: 52px;
    padding: 0px 35px;
  }

  .td-header {
    padding: 0 20px;
    position: fixed;
  }

  .td-header.bg-active {
    background-image: url("../../images/header-bg-mob.jpg");
  }

  .td-header.bb {
    border-bottom: 2px solid #FFA827;
  }

  .td-header.expanded .src-btn i:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .td-header.expanded .src-btn i:nth-child(2) {
    width: 0;
  }

  .td-header.expanded .src-btn i:nth-child(3) {
    width: 100%;
    top: 11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .td-header.expanded .list-content-inside {
    top: 60px;
  }

  .td-header .header-content {
    padding: 15px 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .td-header .src-btn {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
  }

  .td-header .src-btn i {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    background: #fff;
    left: 0;
    -webkit-transition: 0.15s ease;
    transition: 0.15s ease;
  }

  .td-header .src-btn i:nth-child(1) {
    top: 4px;
  }

  .td-header .src-btn i:nth-child(2) {
    top: 11px;
  }

  .td-header .src-btn i:nth-child(3) {
    width: 12px;
    top: 18px;
  }

  .td-header .td-logo {
    width: 156px;
    margin-right: auto;
    margin-left: 0;
  }

  .td-header .textBox {
    display: none;
  }

  .td-header .list-content-inside {
    position: fixed;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100vw;
    min-height: calc(100vh - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: calc(-100vh - 60px);
    padding: 30px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--colorPrimary);
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .td-header .list-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .td-header .link-nav {
    font-size: 18px;
  }

  .td-header .call-btn {
    display: block;
    width: 32px;
    margin-left: auto;
  }

  .td-header .bookingPopup {
    font-size: 12px;
    line-height: 15px;
    padding: 6px 10px;
    border: 1px solid #FFA827;
    border-radius: 5px;
    margin-left: 10px;
  }

  .header-page {
    padding: 20px;
  }

  .header-page .hp-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header-page .funcsRight {
    width: 100%;
  }

  .header-page .title-page {
    font-size: 32px;
    margin: 0;
  }

  .header-page .info-page {
    width: 100%;
  }

  .header-page .info-page .join-club {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-page .searchBtn {
    width: 100%;
  }

  .header-page .des {
    display: none;
  }
}

.td-footer {
  background: #0F361F;
  padding: 0 30px;
  position: relative;
  z-index: 11;
}

.td-footer .footer-content {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0;
  gap: 108px;
  position: relative;
}

.td-footer .scrollTop {
  position: absolute;
  top: -24px;
  right: -5px;
  display: block;
  width: 48px;
}

.td-footer .footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 90px;
}

.td-footer .td-logo {
  width: 250px;
  display: block;
  margin-bottom: 20px;
}

.td-footer .bookingPopup {
  margin-left: 53px;
  border: 2px solid #FFA827;
  border-radius: 10px;
  font-size: 15px;
  line-height: 19px;
  display: inline-block;
  text-transform: uppercase;
  color: #FFFFFF;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: transparent;
  padding: 12px 22px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  font-family: PlusJaS-SemiBold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.td-footer .bookingPopup:hover {
  background: var(--colorYellow);
  color: var(--colorPrimary);
}

.td-footer .link-nav {
  font-size: 14px;
  line-height: 220%;
  font-family: PlusJaS-Medium;
  color: #FFFFFF;
}

.td-footer .link-nav:hover {
  color: var(--colorYellow);
}

.td-footer .footer-right {
  padding-top: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.td-footer .infoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}

.td-footer .type {
  font-size: 14px;
  line-height: 150%;
  font-family: PlusJaS-Medium;
  display: block;
  color: #FFFFFF;
}

.td-footer .type-text {
  font-size: 14px;
  line-height: 150%;
  font-family: PlusJaS-Medium;
  display: block;
  color: #FFA827;
}

.td-footer .list-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 13px;
}

.td-footer .social-link {
  display: block;
  width: 32px;
}

.td-footer .social-link.fb {
  background-image: url("../../images/icn-fb.svg");
}

.td-footer .social-link.tiktok {
  background-image: url("../../images/icn-tiktok.svg");
}

.td-footer .social-link.yt {
  background-image: url("../../images/icn-yt.svg");
}

.td-footer .social-link.ig {
  background-image: url("../../images/icn-ig.svg");
}

.td-footer .social-link.twt {
  background-image: url("../../images/icn-yt.svg");
}

.td-footer .social-link .icn {
  display: block;
  width: 32px;
  height: 32px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.td-footer .credit {
  font-size: 14px;
  line-height: 150%;
  font-family: PlusJaS-Medium;
  display: block;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .td-footer {
    padding: 0 20px;
  }

  .td-footer .footer-content {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }

  .td-footer .scrollTop {
    display: none;
  }

  .td-footer .footer-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }

  .td-footer .if-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .td-footer .td-logo {
    width: 180px;
    margin-bottom: 0;
  }

  .td-footer .bookingPopup {
    margin-top: 2px;
    font-size: 12px;
    line-height: 15px;
    margin-left: auto;
    border: 1px solid #FFA827;
    padding: 6px 10px;
    border-radius: 5px;
  }

  .td-footer .list-nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 21px;
    border-bottom: 1px solid #1B4E30;
  }

  .td-footer .footer-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .td-footer .list-social {
    margin-bottom: 25px;
  }

  .td-footer .credit {
    font-size: 12px;
  }
}

.contact-wrapper {
  background: #F8F8F8;
}

.contact-content {
  padding-top: 5px;
  padding-bottom: 5px;
}

.contact-content .cc-wrapper {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  padding: 40px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.contact-content .cc-wrapper .cc-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 48%;
}

.contact-content .cc-wrapper .cc-left .ccl-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-content .cc-wrapper .cc-left .ccl-info .ccli-name {
  font-size: 38px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #1B4E30;
  font-family: "TiltWarp-Regular";
  margin-bottom: 10px;
}

.contact-content .cc-wrapper .cc-left .ccl-info .ccli-slogan {
  font-size: 20px;
  line-height: 100%;
  color: #666666;
  font-family: "PlusJaS-Medium";
  margin-bottom: 20px;
}

.contact-content .cc-wrapper .cc-left .ccl-info .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-content .cc-wrapper .cc-left .ccl-info .list-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-content .cc-wrapper .cc-left .ccl-info .list-item .item .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
  width: 14px;
}

.contact-content .cc-wrapper .cc-left .ccl-info .list-item .item .icn img {
  display: block;
  width: 100%;
}

.contact-content .cc-wrapper .cc-left .ccl-info .list-item .item .txt {
  font-size: 15px;
  line-height: 170%;
  color: #222222;
  font-family: "PlusJaS-Medium";
}

.contact-content .cc-wrapper .cc-left .ccl-social {
  margin-bottom: 30px;
}

.contact-content .cc-wrapper .cc-left .list-social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.contact-content .cc-wrapper .cc-left .social-link {
  display: block;
  width: 32px;
  height: 32px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.contact-content .cc-wrapper .cc-left .social-link.fb {
  background-image: url(../../images/icn-fb-contact.svg);
}

.contact-content .cc-wrapper .cc-left .social-link.tiktok {
  background-image: url(../../images/icn-tiktok-contact.svg);
}

.contact-content .cc-wrapper .cc-left .social-link.yt {
  background-image: url(../../images/icn-yt-contact.svg);
}

.contact-content .cc-wrapper .cc-left .social-link.ig {
  background-image: url(../../images/icn-ig-contact.svg);
}

.contact-content .cc-wrapper .cc-left .social-link.twt {
  background-image: url(../../images/icn-yt-contact.svg);
}

.contact-content .cc-wrapper .cc-right {
  width: 48%;
}

.contact-content .cc-wrapper .cc-right .formInput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 25px;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab {
  margin-bottom: 15px;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab:nth-last-child(1) {
  margin-bottom: 0;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab.wrong .warning {
  display: block;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab.wrong .input-info {
  border: 0.5px solid #FF4A4A;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab.wrong .input-info:hover,
.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab.wrong .input-info:focus {
  border: 0.5px solid #FF4A4A;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px;
  background: #FFFFFF;
  border: 0.5px solid #C7C7C7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  width: 100%;
  outline: none;
  font-family: "PlusJaS-Medium";
  font-size: 14px;
  line-height: 100%;
  border-radius: 5px;
  color: #222222;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info:hover,
.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info:focus {
  border: 0.5px solid #1b4e30;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info::-webkit-input-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info::-moz-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info:-ms-input-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info::-ms-input-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .input-info::placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .warning {
  margin-top: 5px;
  font-family: PlusJaS-Medium;
  color: #ff4a4a;
  font-size: 10px;
  display: none;
  line-height: 120%;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 100%;
  padding: 12px;
  background: #FFFFFF;
  border-radius: 6px;
  height: 70px;
  border: 0.5px solid #C7C7C7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 100%;
  color: #222222;
  outline: 0;
  resize: none;
  font-family: "PlusJaS-Medium";
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment:hover,
.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment:focus {
  border: 0.5px solid #1b4e30;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment::-webkit-input-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment::-moz-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment:-ms-input-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment::-ms-input-placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .custom-input .input-tab .textarea-comment::placeholder {
  opacity: 0.5;
}

.contact-content .cc-wrapper .cc-right .formInput .submit-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.contact-content .cc-wrapper .cc-right .formInput .submit-form .btn-area {
  padding: 11px 22px;
  background: #FFA827;
  border-radius: 48px;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
}

.contact-content .cc-wrapper .contact-success {
  background: #fff;
  padding: 40px 0;
  width: 100%;
}

.contact-content .cc-wrapper .contact-success .icon-scs {
  width: 100px;
  margin: 0 auto 26px;
}

.contact-content .cc-wrapper .contact-success .icon-scs svg {
  width: 100%;
  height: auto;
  display: block;
}

.contact-content .cc-wrapper .contact-success .title {
  font-size: 26px;
  line-height: 130%;
  font-family: PlusJaS-SemiBold;
  display: block;
  text-align: center;
  color: #222;
  margin-bottom: 35px;
}

.contact-content .cc-wrapper .contact-success .funcsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-content .cc-wrapper .contact-success .funcsBox .back-home {
  background: #ffa827;
  border-radius: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 22px;
  gap: 10px;
}

.contact-content .cc-wrapper .contact-success .funcsBox .back-home .icn {
  width: 18px;
  display: block;
}

.contact-content .cc-wrapper .contact-success .funcsBox .back-home .icn svg {
  width: 100%;
  height: auto;
  display: block;
}

.contact-content .cc-wrapper .contact-success .funcsBox .back-home .txt {
  font-size: 15px;
  line-height: 19px;
  font-family: PlusJaS-SemiBold;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #222;
}

.contact-content .ordernowBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #1B4E30;
  border-radius: 10px;
}

.contact-content .ordernowBox .ob-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-content .ordernowBox .ob-left .logo {
  display: block;
  width: 200px;
  margin-bottom: 10px;
}

.contact-content .ordernowBox .ob-left .logo img {
  display: block;
  width: 100%;
}

.contact-content .ordernowBox .ob-left .title {
  font-size: 28px;
  line-height: 140%;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 10px;
}

.contact-content .ordernowBox .ob-left .hotline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-content .ordernowBox .ob-left .hotline .txt {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
  margin-right: 12px;
}

.contact-content .ordernowBox .ob-left .hotline .numb {
  font-size: 22px;
  line-height: 28px;
  font-family: "TiltWarp-Regular";
  text-align: center;
  text-transform: uppercase;
  color: #FFA827;
}

.contact-content .ordernowBox .ob-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-content .ordernowBox .ob-right .btn-ordernow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-content .ordernowBox .ob-right .btn-ordernow:hover a {
  background: #FFA827;
  color: #1B4E30;
}

.contact-content .ordernowBox .ob-right .btn-ordernow a {
  border: 2px solid #FFA827;
  border-radius: 10px;
  padding: 17px 47px;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

@media screen and (max-width: 768px) {
  .contact-content {
    padding-top: 20px;
  }

  .contact-content .cc-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .contact-content .cc-wrapper .cc-left {
    width: 100%;
    margin-bottom: 25px;
  }

  .contact-content .cc-wrapper .cc-left .ccli-name {
    font-size: 30px;
  }

  .contact-content .cc-wrapper .cc-left .ccli-slogan {
    font-size: 16px;
  }

  .contact-content .cc-wrapper .cc-left .ccl-info {
    margin-bottom: 25px;
  }

  .contact-content .cc-wrapper .cc-left .ccl-info .list-item .item .icn {
    width: 10px;
  }

  .contact-content .cc-wrapper .cc-left .ccl-info .list-item .item .txt {
    font-size: 13px;
  }

  .contact-content .cc-wrapper .cc-left .ccl-social {
    margin-bottom: 0;
  }

  .contact-content .cc-wrapper .cc-left .list-social-link {
    gap: 7.5px;
  }

  .contact-content .cc-wrapper .cc-left .social-link {
    width: 24px;
    height: 24px;
  }

  .contact-content .cc-wrapper .cc-right {
    width: 100%;
  }

  .contact-content .cc-wrapper .cc-right .formInput .submit-form {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .contact-content .cc-wrapper .cc-right .formInput .submit-form .btn-area {
    width: 70%;
  }

  .contact-content .cc-wrapper .contact-success .title {
    font-size: 20px;
  }

  .contact-content .ordernowBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 25px;
  }

  .contact-content .ordernowBox .ob-left .title {
    margin-bottom: 60px;
    font-size: 30px;
  }

  .contact-content .ordernowBox .ob-left .hotline {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .contact-content .ordernowBox .ob-left .hotline .txt,
  .contact-content .ordernowBox .ob-left .hotline .numb {
    text-align: start;
  }

  .contact-content .ordernowBox .ob-right .btn-ordernow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .contact-content .ordernowBox .ob-right .btn-ordernow a {
    width: 100%;
    text-align: center;
  }
}

@media screen and (min-width: 800px) and (max-width: 1024px) {
  .contact-content .cc-wrapper {
    margin: 0 20px;
    margin-bottom: 30px;
  }

  .contact-content .ordernowBox {
    margin: 0 20px;
  }
}

.td-menu {
  background: #F8F8F8;
  position: relative;
}

.td-menu-wrapper {
  background: #F8F8F8;
}

.tagBox {
  background: var(--colorYellow);
  position: sticky;
  top: 84px;
  left: 0;
  z-index: 999;
}

.tagBox.tag-branch .swiper-button-next,
.tagBox.tag-branch .swiper-button-prev {
  display: none;
}

.tagBox.tag-branch .swiperBox .swiper-wrapper {
  gap: 20px;
}

.tagBox .swiperBox {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 26px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.tagBox .swiper-slide {
  width: auto;
  height: auto;
}

.tagBox .swiper-slide:nth-last-child(1) {
  margin-right: 40px;
}

.tagBox .swiper-button-next {
  right: 0;
  padding-left: 90px;
  background: -webkit-gradient(linear, right top, left top, color-stop(6.77%, #FFA827), to(rgba(255, 168, 39, 0)));
  background: linear-gradient(270deg, #FFA827 6.77%, rgba(255, 168, 39, 0) 100%);
}

.tagBox .swiper-button-prev {
  left: 0;
  padding-right: 90px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 168, 39, 0)), color-stop(89.06%, #FFA827));
  background: linear-gradient(270deg, rgba(255, 168, 39, 0) 0%, #FFA827 89.06%);
}

.tagBox .swiper-button-next,
.tagBox .swiper-button-prev {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  margin: 0;
  width: 16px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tagBox .swiper-button-next.swiper-button-disabled,
.tagBox .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
  padding: 0;
  background: none;
}

.tagBox .tags-filter {
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  font-family: PlusJaS-SemiBold;
  color: #222222;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.tagBox .tags-filter:before {
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  background: var(--colorPrimary);
}

.tagBox .tags-filter.active:before,
.tagBox .tags-filter:hover:before {
  opacity: 1;
  visibility: visible;
}

.menuBox {
  padding: 40px 0;
}

.menuBox .title-menu {
  font-size: 26px;
  line-height: 110%;
  font-family: PlusJaS-Bold;
  letter-spacing: -0.02em;
  margin-bottom: 27px;
  color: #1B4E30;
}

.menuBox .view-all {
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 17px 44px;
  gap: 10px;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: PlusJaS-SemiBold;
  color: #222222;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 2px solid #FFA827;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .tagBox {
    top: 60px;
  }

  .tagBox .swiperBox {
    padding: 0;
  }

  .tagBox .swiperBox .swiper-wrapper {
    white-space: nowrap;
    gap: 15px;
    overflow-x: scroll;
  }

  .tagBox .swiperBox .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }

  .tagBox .swiper-slide:nth-child(1) {
    margin-left: 20px;
  }

  .tagBox .swiper-slide:nth-last-child(1) {
    margin-right: 20px;
  }

  .tagBox .swiper-button-next,
  .tagBox .swiper-button-prev {
    display: none;
  }

  .tagBox .tags-filter {
    font-size: 12px;
    line-height: 15px;
    height: 36px;
  }

  .menuBox {
    padding: 20px 0;
  }

  .menuBox .title-menu {
    font-size: 22px;
    padding: 0 20px;
    margin-bottom: 15px;
  }

  .menuBox .view-all {
    -webkit-transform: none;
    transform: none;
    margin: 15px auto 20px;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 26px;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% - 40px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.coso-wrapper {
  background: #f8f8f8;
}

.coso-content {
  padding: 40px 0;
}

.coso-content .cc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 45px;
}

.coso-content .cc-wrapper:nth-last-child(1) {
  margin-bottom: 0;
}

.coso-content .cc-wrapper .cc-label {
  font-size: 26px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #999999;
  font-family: "PlusJaS-Bold";
  margin-bottom: 33px;
}

.coso-content .cc-wrapper .ccBox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.coso-content .cc-wrapper .ccBox {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 20px;
  padding: 25px 25px 25px 36px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.coso-content .cc-wrapper .ccBox.status-type-1 .ccb-left .ccbl-status .status-noti .noti-green {
  display: block;
}

.coso-content .cc-wrapper .ccBox.status-type-2 .ccb-left .ccbl-status .status-noti .noti-red {
  display: block;
}

.coso-content .cc-wrapper .ccBox.status-type-3 .ccb-left .ccbl-status .status-noti .noti-orange {
  display: block;
}

.coso-content .cc-wrapper .ccBox.status-type-3 .ccb-left .ccbl-listActionLink .action-link-item.disableOrder .action-link {
  background: #F5F5F5;
  cursor: default;
}

.coso-content .cc-wrapper .ccBox.status-type-3 .ccb-left .ccbl-listActionLink .action-link-item.disableOrder .action-link .icn svg path {
  fill: #CECECE;
}

.coso-content .cc-wrapper .ccBox.status-type-3 .ccb-left .ccbl-listActionLink .action-link-item.disableOrder .action-link .txt {
  color: #CECECE;
}

.coso-content .cc-wrapper .ccBox .ccb-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 60%;
  margin-right: 35px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-tiltle {
  margin-bottom: 15px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-tiltle a {
  font-size: 38px;
  line-height: 110%;
  font-family: "TiltWarp-Regular";
  letter-spacing: -0.02em;
  color: #1B4E30;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-des {
  font-size: 20px;
  line-height: 100%;
  font-family: "PlusJaS-Medium";
  color: #666666;
  margin-bottom: 15px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .status-noti {
  margin-right: 15px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .status-noti .noti-green,
.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .status-noti .noti-red,
.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .status-noti .noti-orange {
  display: none;
  font-size: 11px;
  line-height: 14px;
  font-family: "PlusJaS-Bold";
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 4px 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 25px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .status-noti .noti-green {
  background: #23C346;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .status-noti .noti-red {
  background: #FF3A3A;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .status-noti .noti-orange {
  background: #F87C37;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .time-txt {
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #777777;
  font-family: "PlusJaS-Medium";
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about .aboutCol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 120px;
  border-right: 1px solid #E1E1E1;
  padding-left: 20px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about .aboutCol:first-child {
  padding-left: 0;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about .aboutCol .ac-label {
  font-size: 12px;
  line-height: 15px;
  color: #777777;
  font-family: "PlusJaS-Medium";
  margin-bottom: 2px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about .aboutCol .ac-value {
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: #222222;
  font-family: "PlusJaS-Bold";
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item {
  width: calc(100% - 30px)/3;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 35px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #F5F5F5;
  border-radius: 5px;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link:hover {
  background: #1b4e30;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link:hover .txt {
  color: #fff;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link:hover .icn svg path {
  fill: #fff;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link .txt {
  font-size: 16px;
  line-height: 100%;
  color: #1B4E30;
  font-family: "PlusJaS-SemiBold";
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-phone .phoneNumber {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-phone .phoneNumber .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.coso-content .cc-wrapper .ccBox .ccb-left .ccbl-phone .phoneNumber .txt {
  font-size: 15px;
  line-height: 100%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
}

.coso-content .cc-wrapper .ccBox .ccb-right {
  width: 37%;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery:hover .swiper-button-next,
.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery:hover .swiper-button-prev {
  opacity: 1;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .ccbrg-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .ccbrg-content .ccbr-thumb {
  display: block;
  width: 100%;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .ccbrg-content .ccbr-thumb i {
  display: block;
  position: relative;
  padding-top: 100%;
  width: 100%;
  overflow: hidden;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .ccbrg-content .ccbr-thumb i img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .swiper-button-next,
.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .swiper-button-prev {
  background-image: none;
  width: 42px;
  height: 42px;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
  opacity: 0;
}

.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .swiper-button-next.swiper-button-disabled,
.coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
}

@media screen and (max-width: 768px) {
  .coso-content {
    padding: 20px 0;
  }

  .coso-content .cc-wrapper {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .coso-content .cc-wrapper.multiElm {
    padding: 0;
  }

  .coso-content .cc-wrapper.multiElm .cc-label {
    padding: 0 20px;
  }

  .coso-content .cc-wrapper .ccBox-container.multiBox {
    position: relative;
    overflow: hidden;
  }

  .coso-content .cc-wrapper .ccBox-container.multiBox .ccBox-wrapper {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial;
  }

  .coso-content .cc-wrapper .ccBox-container.multiBox .ccBox {
    width: 89.5% !important;
    margin-bottom: 0;
  }

  .coso-content .cc-wrapper .ccBox-container.multiBox .ccBox:first-child {
    margin-left: 20px;
  }

  .coso-content .cc-wrapper .ccBox-container.multiBox .ccBox:nth-last-child(1) {
    margin-right: 20px;
  }

  .coso-content .cc-wrapper .cc-label {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .coso-content .cc-wrapper .ccBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0;
    margin-bottom: 0;
  }

  .coso-content .cc-wrapper .ccBox .ccb-right {
    width: 100%;
  }

  .coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery:hover .swiper-button-next,
  .coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery:hover .swiper-button-prev {
    display: none;
  }

  .coso-content .cc-wrapper .ccBox .ccb-right .ccbr-gallery .ccbrg-content .ccbr-thumb i {
    padding-top: 35.8%;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left {
    width: 100%;
    margin-right: 0;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-tiltle {
    margin-bottom: 10px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-tiltle a {
    font-size: 23px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-des {
    font-size: 15px;
    line-height: 120%;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-status .time-txt {
    font-size: 12px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about {
    margin-bottom: 20px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about .aboutCol:nth-last-child(1) {
    border-right: 0;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about .aboutCol .ac-label {
    font-size: 10px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-about .aboutCol .ac-value {
    font-size: 12px;
    text-align: start;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item {
    width: 100%;
    margin-bottom: 8px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item:nth-last-child(1) {
    margin-bottom: 0;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link {
    height: 38px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link .icn {
    width: 18px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-listActionLink .action-link-item .action-link .txt {
    font-size: 15px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-phone {
    margin-bottom: 15px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-phone .phoneNumber .icn {
    width: 20px;
    margin-right: 6px;
  }

  .coso-content .cc-wrapper .ccBox .ccb-left .ccbl-phone .phoneNumber .txt {
    font-size: 12px;
  }
}

html {
  scroll-behavior: smooth;
}

.cosoDetail-wrapper {
  background: #F8F8F8;
}

.cosoDetail-content {
  padding: 20px 0;
}

.cosoDetail-content .csdc-wrapper {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 25px;
}

.cosoDetail-content .csdc-wrapper .csdc-header {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 20%;
}

.cosoDetail-content .csdc-wrapper .csdc-header img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.cosoDetail-content .csdc-wrapper .csdc-body {
  padding: 35px 160px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top.status-type-1 .csdcb-status .status-noti .noti-green {
  display: block;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top.status-type-2 .csdcb-status .status-noti .noti-red {
  display: block;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top.status-type-3 .csdcb-status .status-noti .noti-orange {
  display: block;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top.status-type-3 .csdcb-listActionLink .action-link-item.disableOrder .action-link {
  background: #F5F5F5;
  cursor: default;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top.status-type-3 .csdcb-listActionLink .action-link-item.disableOrder .action-link .icn svg path {
  fill: #CECECE;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top.status-type-3 .csdcb-listActionLink .action-link-item.disableOrder .action-link .txt {
  color: #CECECE;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-address {
  font-size: 38px;
  line-height: 110%;
  font-family: "TiltWarp-Regular";
  letter-spacing: -0.02em;
  color: #1B4E30;
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone {
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber .txt {
  font-size: 15px;
  line-height: 100%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-des {
  font-size: 20px;
  line-height: 100%;
  font-family: "PlusJaS-Medium";
  color: #666666;
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .status-noti {
  margin-right: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .status-noti .noti-green,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .status-noti .noti-red,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .status-noti .noti-orange {
  display: none;
  font-size: 11px;
  line-height: 14px;
  font-family: "PlusJaS-Bold";
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 4px 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 25px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .status-noti .noti-green {
  background: #23C346;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .status-noti .noti-red {
  background: #FF3A3A;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .status-noti .noti-orange {
  background: #F87C37;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .time-txt {
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #777777;
  font-family: "PlusJaS-Medium";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about .about-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about .aboutCol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 120px;
  border-right: 1px solid #E1E1E1;
  padding-left: 20px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about .aboutCol:first-child {
  padding-left: 0;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about .aboutCol .ac-label {
  font-size: 12px;
  line-height: 15px;
  color: #777777;
  font-family: "PlusJaS-Medium";
  margin-bottom: 2px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about .aboutCol .ac-value {
  font-size: 15px;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: #222222;
  font-family: "PlusJaS-Bold";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item {
  width: calc((100% - 30px) / 3);
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 35px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #F5F5F5;
  border-radius: 5px;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link:hover {
  background: #1b4e30;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link:hover .txt {
  color: #fff;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link:hover .icn svg path {
  fill: #fff;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link .txt {
  font-size: 16px;
  line-height: 100%;
  color: #1B4E30;
  font-family: "PlusJaS-SemiBold";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber .txt {
  font-size: 15px;
  line-height: 100%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 28px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.half-star .list-star .star-item {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.half-star .list-star .star-item:nth-last-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.full-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.full-star .list-star .star-item:nth-last-child(1) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.four-star.half-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.four-star.half-star .list-star .star-item:nth-last-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.four-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.four-star .list-star .star-item:nth-last-child(1),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.four-star .list-star .star-item:nth-last-child(2) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star.half-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star.half-star .list-star .star-item:nth-last-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star.half-star .list-star .star-item:nth-last-child(2),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star.half-star .list-star .star-item:nth-last-child(3) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star .list-star .star-item:nth-last-child(1),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star .list-star .star-item:nth-last-child(2),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.three-star .list-star .star-item:nth-last-child(3) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star.half-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star.half-star .list-star .star-item:nth-last-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star.half-star .list-star .star-item:nth-last-child(2),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star.half-star .list-star .star-item:nth-last-child(3),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star.half-star .list-star .star-item:nth-last-child(4) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star .list-star .star-item:nth-last-child(1),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star .list-star .star-item:nth-last-child(2),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star .list-star .star-item:nth-last-child(3),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.two-star .list-star .star-item:nth-last-child(4) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star.half-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star.half-star .list-star .star-item:nth-last-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star.half-star .list-star .star-item:nth-last-child(2),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star.half-star .list-star .star-item:nth-last-child(3),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star.half-star .list-star .star-item:nth-last-child(4),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star.half-star .list-star .star-item:nth-last-child(5) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star .list-star .star-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star .list-star .star-item:nth-last-child(1),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star .list-star .star-item:nth-last-child(2),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star .list-star .star-item:nth-last-child(3),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star .list-star .star-item:nth-last-child(4),
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review.one-star .list-star .star-item:nth-last-child(5) {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .list-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .list-star .star-item {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .list-star .star-item:nth-last-child(1) {
  margin-right: 0;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .txt {
  font-size: 15px;
  line-height: 150%;
  color: #444444;
  font-family: "PlusJaS-Medium";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-title {
  font-size: 28px;
  line-height: 130%;
  font-family: "PlusJaS-SemiBold";
  color: #222222;
  margin-bottom: 28px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFFBF4;
  border: 0.5px solid #C7C7C7;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  max-height: 600px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc.active {
  max-height: 47px;
  overflow: hidden;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc.active .toc-header {
  border-bottom: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc.active .toc-header .icn {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc.active .toc-content {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header {
  background: #FFFFFF;
  border-bottom: 0.5px solid #C7C7C7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header .txt {
  font-size: 20px;
  line-height: 130%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header .icn {
  width: 12px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header .icn img {
  display: block;
  width: 100%;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h2 {
  font-size: 15px;
  line-height: 150%;
  font-family: "PlusJaS-SemiBold";
  color: #444444;
  margin-bottom: 6px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h3,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h4,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h5,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h6 {
  padding-left: 20px;
  font-size: 15px;
  line-height: 170%;
  color: #444444;
  font-family: "PlusJaS-Regular";
  margin-bottom: 6px;
  position: relative;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h3::before,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h4::before,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h5::before,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h6::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 6px;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: #000;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom h1 {
  font-size: 24px;
  line-height: 130%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom p {
  font-size: 16px;
  line-height: 170%;
  font-family: "PlusJaS-Regular";
  color: #333333;
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom p a {
  margin-bottom: 0;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom strong {
  font-family: "PlusJaS-SemiBold";
  font-size: 16px;
  line-height: 170%;
  color: #333333;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom i {
  font-size: 16px;
  line-height: 170%;
  color: #333333;
  font-family: "PlusJaS-Italic";
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom a {
  font-size: 16px;
  line-height: 170%;
  margin-bottom: 15px;
  font-family: "PlusJaS-SemiBold";
  color: #21A256;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom h2 {
  font-size: 24px;
  line-height: 130%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom h3 {
  font-size: 20px;
  line-height: 130%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom hr {
  border: 1px solid #DFDFDF;
  margin: 15px 0;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100% !important;
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image a {
  display: block;
  width: 100%;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image figcaption {
  padding: 8px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f1f1f1;
  font-size: 13px;
  line-height: 150%;
  font-family: "PlusJaS-Italic";
  color: #444;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image figcaption span {
  background-color: transparent !important;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug {
  max-width: 100% !important;
  margin: 0;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug iframe {
  width: 100%;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug iframe .card .hdr,
.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug iframe .card .brd {
  display: none;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .content-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 15px;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .content-object a {
  display: block;
  width: 100%;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .content-object a img {
  display: block;
  width: 100%;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .content-object .thumb-txt {
  padding: 8px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #F1F1F1;
  font-size: 13px;
  line-height: 150%;
  font-family: "PlusJaS-Italic";
  color: #444444;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .list-voucher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .list-voucher .txt {
  font-size: 16px;
  line-height: 170%;
  font-family: "PlusJaS-Regular";
  color: #333333;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .list-voucher .txt:nth-last-child(1) {
  margin-bottom: 0;
}

.cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .list-voucher .txt::before {
  position: absolute;
  content: "";
  top: 12px;
  left: 8px;
  width: 3px;
  height: 3px;
  border-radius: 100px;
  background: #000;
}

.cosoDetail-content .ordernowBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #1B4E30;
  border-radius: 10px;
  margin-bottom: 30px;
}

.cosoDetail-content .ordernowBox .ob-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cosoDetail-content .ordernowBox .ob-left .logo {
  display: block;
  width: 200px;
  margin-bottom: 10px;
}

.cosoDetail-content .ordernowBox .ob-left .logo img {
  display: block;
  width: 100%;
}

.cosoDetail-content .ordernowBox .ob-left .title {
  font-size: 28px;
  line-height: 140%;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 10px;
}

.cosoDetail-content .ordernowBox .ob-left .hotline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cosoDetail-content .ordernowBox .ob-left .hotline .txt {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
  margin-right: 12px;
}

.cosoDetail-content .ordernowBox .ob-left .hotline .numb {
  font-size: 22px;
  line-height: 28px;
  font-family: "TiltWarp-Regular";
  text-align: center;
  text-transform: uppercase;
  color: #FFA827;
}

.cosoDetail-content .ordernowBox .ob-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cosoDetail-content .ordernowBox .ob-right .btn-ordernow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cosoDetail-content .ordernowBox .ob-right .btn-ordernow:hover a {
  background: #FFA827;
  color: #1B4E30;
}

.cosoDetail-content .ordernowBox .ob-right .btn-ordernow a {
  border: 2px solid #FFA827;
  border-radius: 10px;
  padding: 17px 47px;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}

@media screen and (max-width: 768px) {
  .cosoDetail-content {
    padding: 10px 0;
  }

  .cosoDetail-content .breadcrumb {
    margin-bottom: 10px;
  }

  .cosoDetail-content .csdc-wrapper {
    border-radius: 0;
    border: 0;
  }

  .cosoDetail-content .csdc-wrapper .csdc-header {
    padding-top: 37.3%;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body {
    padding: 15px 20px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-address {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-des {
    font-size: 15px;
    line-height: 120%;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-status .time-txt {
    font-size: 12px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about {
    margin-bottom: 20px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about .aboutCol .ac-label {
    font-size: 10px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-about .aboutCol .ac-value {
    font-size: 12px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink {
    margin-bottom: 15px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item {
    width: calc((100% - 15px) / 3);
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link {
    height: 33px;
    padding: 10px 0;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link .txt {
    font-size: 13px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-listActionLink .action-link-item .action-link .icn {
    display: none;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review {
    margin-bottom: 15px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .list-star {
    margin-right: 10px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .list-star .star-item {
    width: 14px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .txt {
    font-size: 14px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-title {
    font-size: 21px;
    margin-bottom: 22px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber .icn {
    width: 20px;
    margin-right: 6px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-phone .phoneNumber .txt {
    font-size: 12px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header {
    padding: 8px 15px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header .txt {
    font-size: 16px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content {
    padding: 15px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h1 {
    font-size: 14px;
    line-height: 150%;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h2,
  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h3,
  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h4,
  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h5,
  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h6 {
    font-size: 13px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom h2 {
    font-size: 19px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom p {
    font-size: 15px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom h3 {
    font-size: 17px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image {
    width: calc(100% + 40px) !important;
    margin-left: -20px;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .list-voucher .txt {
    font-size: 15px;
  }

  .cosoDetail-content .ordernowBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 25px;
  }

  .cosoDetail-content .ordernowBox .ob-left .title {
    margin-bottom: 60px;
    font-size: 30px;
  }

  .cosoDetail-content .ordernowBox .ob-left .hotline {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .cosoDetail-content .ordernowBox .ob-left .hotline .txt,
  .cosoDetail-content .ordernowBox .ob-left .hotline .numb {
    text-align: start;
  }

  .cosoDetail-content .ordernowBox .ob-right .btn-ordernow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .cosoDetail-content .ordernowBox .ob-right .btn-ordernow a {
    width: 100%;
    text-align: center;
  }
}

@media screen and (min-width: 800px) and (max-width: 1024px) {
  .cosoDetail-content .ordernowBox {
    margin: 0 20px;
  }
}

.news-wrapper {
  background: #F8F8F8;
}

.news-content {
  padding: 40px 0;
}

.news-content .nc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.news-content .nc-wrapper .hotnews {
  background: #0F361F;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.news-content .nc-wrapper .hotnews .hotnews-thumb {
  width: 66%;
}

.news-content .nc-wrapper .hotnews .hotnews-thumb i {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 49.65%;
}

.news-content .nc-wrapper .hotnews .hotnews-thumb i img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-content .nc-wrapper .hotnews .hotnews-info {
  width: 34%;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.news-content .nc-wrapper .hotnews .hotnews-info h2 {
  margin-bottom: 20px;
}

.news-content .nc-wrapper .hotnews .hotnews-info h2 .info-title {
  font-size: 28px;
  line-height: 140%;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
}

.news-content .nc-wrapper .hotnews .hotnews-info .btn-clickhere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-content .nc-wrapper .hotnews .hotnews-info .btn-clickhere .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}

.news-content .nc-wrapper .hotnews .hotnews-info .btn-clickhere .txt {
  font-size: 13px;
  line-height: 120%;
  color: #FFFFFF;
  font-family: "PlusJaS-SemiBold";
}

.news-content .nc-wrapper .grid-news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: calc((100% - 50px) / 3) 25px calc((100% - 50px) / 3) 25px calc((100% - 50px) / 3);
  grid-template-columns: repeat(3, calc((100% - 50px) / 3));
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  row-gap: 30px;
  margin-bottom: 40px;
}

.news-content .nc-wrapper .grid-news .grid-news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.news-content .nc-wrapper .grid-news .grid-news-item:hover .item-info h3 a {
  color: #666;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-thumb .thumb-link {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 52%;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-thumb .thumb-link img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 12px 25px 25px 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-info .title a {
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 16px;
  line-height: 150%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-info .btn-clickhere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-info .btn-clickhere .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.news-content .nc-wrapper .grid-news .grid-news-item .item-info .btn-clickhere .txt {
  font-size: 13px;
  line-height: 120%;
  color: #222;
  font-family: "PlusJaS-SemiBold";
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.news-content .nc-wrapper .news-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page.active {
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page.active .btnDropdown .icn {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.news-content .nc-wrapper .news-footer .nf-left .select-page.active .droplist-page {
  visibility: visible;
  opacity: 1;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .btnDropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .btnDropdown .txt {
  font-size: 16px;
  line-height: 150%;
  color: #222222;
  font-family: "PlusJaS-Medium";
  margin-right: 13px;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page {
  position: absolute;
  top: calc(100% + 0px);
  left: -1px;
  width: 100%;
  max-height: 200px;
  background: #fff;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #E6E6E6;
  border-radius: 0 0 5px 5px;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page .label {
  font-size: 14px;
  line-height: 119%;
  font-family: "PlusJaS-Medium";
  color: #999;
  padding: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page .droplist-content .list-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page .droplist-content .list-page .page-item .pick-page {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
  display: block;
  font-size: 14px;
  line-height: 100%;
  font-family: "PlusJaS-Medium";
  color: #222;
  padding: 10px;
  text-align: center;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page .droplist-content .list-page .page-item .pick-page:hover {
  background: #f1f1f1;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page::-webkit-scrollbar {
  width: 3px;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page::-webkit-scrollbar-track {
  background-color: transparent;
  outline: none;
}

.news-content .nc-wrapper .news-footer .nf-left .select-page .droplist-page::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}

.news-content .nc-wrapper .news-footer .nf-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-content .nc-wrapper .news-footer .btnPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: #000000;
  opacity: 0.2;
  margin-right: 15px;
  cursor: default;
}

.news-content .nc-wrapper .news-footer .btnPagination.active {
  background: #0F361F;
  opacity: 1;
  cursor: pointer;
}

.news-content .nc-wrapper .news-footer .btnPagination:nth-last-child(1) {
  margin-right: 0;
}

.newsDetail-wrapper {
  background: #FFFFFF;
}

.newsDetail-wrapper .cosoDetail-wrapper {
  background: none;
}

.newsDetail-wrapper .cosoDetail-content {
  padding: 30px 0;
}

.newsDetail-wrapper .cosoDetail-content .breadcrumb {
  margin-bottom: 10px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper {
  border-radius: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 50px;
  overflow: initial;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body {
  padding: 0;
  width: 66%;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review {
  margin-bottom: 20px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-title {
  margin-bottom: 20px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-date {
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #1B4E30;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 20px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-cover {
  width: 100%;
  margin-bottom: 15px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-cover a {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 52%;
  border-radius: 10px;
  overflow: hidden;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-cover a img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-sapo {
  font-size: 15px;
  line-height: 150%;
  color: #444444;
  font-family: "PlusJaS-Italic";
  margin-bottom: 15px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header .icn {
  width: 12px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header .icn img {
  display: block;
  width: 100%;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom {
  margin-bottom: 40px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100% !important;
  margin-bottom: 15px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image a {
  display: block;
  width: 100%;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image a img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image figcaption {
  padding: 8px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f1f1f1;
  font-size: 13px;
  line-height: 150%;
  font-family: "PlusJaS-Italic";
  color: #444;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image figcaption span {
  background-color: transparent !important;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 15px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom ul li {
  font-size: 16px;
  line-height: 170%;
  font-family: "PlusJaS-Regular";
  color: #333;
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom ul li::before {
  position: absolute;
  content: "";
  top: 12px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: #000;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom ul li:nth-last-child(1) {
  margin-bottom: 0;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug {
  max-width: 100% !important;
  margin: 0;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug iframe {
  width: 100%;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug iframe .card .hdr,
.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .media oembed .embedly-card .embedly-card-hug iframe .card .brd {
  display: none;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .questions-label {
  font-size: 24px;
  line-height: 130%;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 15px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item {
  position: relative;
  border-bottom: 1px solid #DFDFDF;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item:nth-last-child(1) {
  border-bottom: 0;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item.action .answers {
  display: block;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item.action .questions .icn {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item .questions {
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item .questions .txt {
  font-size: 16px;
  line-height: 170%;
  color: #333333;
  font-family: "PlusJaS-SemiBold";
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item .answers {
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
  font-size: 15px;
  line-height: 170%;
  color: #333333;
  font-family: "PlusJaS-Regular";
  margin-bottom: 3px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right {
  width: 29%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index: 10;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 25px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .label {
  font-size: 18px;
  line-height: 23px;
  color: #222222;
  font-family: "PlusJaS-SemiBold";
  margin-bottom: 15px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .list-latest-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .list-latest-news .item-content {
  padding: 15px 0;
  border-bottom: 0.7px dashed #DFDFDF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .list-latest-news .item-content .title {
  font-size: 14px;
  line-height: 150%;
  color: #666666;
  font-family: "PlusJaS-Medium";
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .list-latest-news .item-content .title:hover {
  color: #1B4E30;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .list-latest-news .item-content .thumb {
  display: block;
  width: 120px;
  height: 70px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .list-latest-news .item-content .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news .list-latest-news .item-content:first-child {
  border-top: 0.7px dashed #DFDFDF;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .sidebar {
  position: sticky;
  top: 134px;
  left: 0;
  z-index: 10000;
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-bottom: 20px;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .sidebar .bner-cta {
  display: block;
  width: 100%;
}

.newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .sidebar .bner-cta img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.newsDetail-wrapper .news-content .nc-wrapper .label {
  font-size: 26px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #1B4E30;
  font-family: "PlusJaS-Bold";
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .news-content {
    padding: 0;
  }

  .news-content .nc-wrapper .hotnews {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0;
    margin-bottom: 0;
  }

  .news-content .nc-wrapper .hotnews .hotnews-thumb {
    width: 100%;
  }

  .news-content .nc-wrapper .hotnews .hotnews-info {
    width: 100%;
    padding: 15px 20px 25px 20px;
  }

  .news-content .nc-wrapper .hotnews .hotnews-info h2 .info-title {
    font-size: 20px;
  }

  .news-content .nc-wrapper .grid-news {
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-grid-columns: (100%)[1];
    grid-template-columns: repeat(1, 100%);
    margin-bottom: 0;
  }

  .news-content .nc-wrapper .grid-news .grid-news-item .item-info {
    padding: 12px 15px 25px 15px;
  }

  .news-content .nc-wrapper .grid-news .grid-news-item .item-info h3 a {
    white-space: normal;
    font-size: 16px;
  }

  .news-content .nc-wrapper .grid-news .grid-news-item .item-info .btn-clickhere .icn {
    width: 14px;
  }

  .news-content .nc-wrapper .news-footer {
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .news-content .nc-wrapper .news-footer .btnPagination {
    margin-right: 0;
  }

  .news-content .nc-wrapper .news-footer .btnPagination .icn {
    display: block;
    width: 20px;
  }

  .news-content .nc-wrapper .news-footer .nf-left .select-page .btnDropdown .icn {
    display: block;
    width: 12px;
  }

  .newsDetail-wrapper .cosoDetail-content {
    padding: 15px 0;
  }

  .newsDetail-wrapper .cosoDetail-content .breadcrumb {
    margin-bottom: 15px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 35px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .questions-label {
    font-size: 18px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item .questions {
    padding: 15px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item .questions .txt {
    font-size: 14px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-questions .list-questions .questions-item .answers {
    padding: 0 15px 15px 15px;
    font-size: 14px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-title {
    font-size: 21px;
    line-height: 130%;
    margin-bottom: 10px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-date {
    font-size: 12px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-cover {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-cover a {
    border-radius: 0;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review {
    margin-bottom: 15px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .list-star {
    margin-right: 10px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .list-star .star-item {
    width: 14px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-top .csdcb-review .txt {
    font-size: 14px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header {
    padding: 8px 15px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-header .txt {
    font-size: 16px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content {
    padding: 15px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h1 {
    font-size: 14px;
    line-height: 150%;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h2,
  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h3,
  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h4,
  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h5,
  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-toc .toc-content .txt.head_h6 {
    font-size: 13px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom {
    margin-bottom: 0;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom h2 {
    font-size: 19px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom p {
    font-size: 15px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom p a {
    overflow-wrap: break-word;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom h3 {
    font-size: 17px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image {
    width: calc(100% + 40px) !important;
    margin-left: -20px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image img {
    display: block;
    width: 100%;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .image figcaption {
    font-size: 12px;
    padding: 5px 20px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-body .csdcb-bottom .list-voucher .txt {
    font-size: 15px;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .sidebar {
    margin-bottom: 30px;
    position: initial;
  }

  .newsDetail-wrapper .cosoDetail-content .csdc-wrapper .csdc-right .csdcr-latest-news {
    margin-bottom: 0;
  }

  .newsDetail-wrapper .news-content {
    padding: 30px 0;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .label {
    padding-left: 20px;
    font-size: 21px;
    margin-bottom: 20px;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .grid-news {
    padding: 20px 0;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .grid-news-container {
    position: relative;
    overflow: hidden;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .grid-news-container .grid-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    white-space: nowrap;
    overflow-y: scroll;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .grid-news-container .grid-news::-webkit-scrollbar {
    display: none;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .grid-news-container .grid-news .grid-news-item {
    width: 280px;
    height: auto;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .grid-news-container .grid-news .grid-news-item:nth-child(1) {
    margin-left: 20px;
  }

  .newsDetail-wrapper .news-content .nc-wrapper .grid-news-container .grid-news .grid-news-item:nth-last-child(1) {
    margin-right: 20px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1024px) {
  .news-content {
    padding: 40px 20px;
  }
}

.booking-wrapper {
  background-image: url("../../images/bg-pattern.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding-top: 75px;
  padding-bottom: 75px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header-booking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 28px;
}

.header-booking .td-logo {
  width: 230px;
  display: block;
}

.header-booking .hotline-box .txt {
  font-size: 14px;
  line-height: 18px;
  /* identical to box height */
  text-align: right;
  font-family: PlusJaS-SemiBold;
  text-transform: uppercase;
  display: block;
  color: #FFFFFF;
}

.header-booking .hotline-box .phone-to {
  display: block;
}

.header-booking .hotline-box .phone-to .txt {
  font-size: 19px;
  line-height: 24px;
  font-family: TiltWarp-Regular;
  text-align: center;
  text-transform: uppercase;
  display: block;
  color: #FFA827;
}

.header-booking .hotline-box .phone-to .icn {
  display: none;
}

.td-booking__content {
  width: 550px;
  margin: 0 auto;
  max-width: 100%;
}

.booking-success__content {
  background: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
  border-top: 5px solid var(--colorYellow);
  padding: 40px 50px;
}

.booking-success__content .icon-scs {
  width: 100px;
  margin: 0 auto 26px;
}

.booking-success__content .title {
  font-size: 26px;
  line-height: 130%;
  font-family: PlusJaS-SemiBold;
  display: block;
  text-align: center;
  color: #222222;
  margin-bottom: 20px;
}

.booking-success__content .note {
  font-size: 14px;
  line-height: 140%;
  /* or 20px */
  font-family: PlusJaS-Regular;
  text-align: center;
  margin-bottom: 35px;
  color: #666666;
}

.booking-success__content .note span {
  color: #FF3A3A;
  font-family: PlusJaS-SemiBold;
}

.booking-success__content .booking-detail {
  padding: 35px 30px;
  border-top: 0.7px solid #DFDFDF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.booking-success__content .info-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
}

.booking-success__content .type {
  font-size: 14px;
  line-height: 140%;
  /* identical to box height, or 20px */
  width: 86px;
  font-family: PlusJaS-Regular;
  color: #666666;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.booking-success__content .info {
  font-size: 14px;
  line-height: 140%;
  font-family: PlusJaS-Medium;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #222222;
}

.booking-success__content .info span {
  color: #1B4E30;
  font-family: PlusJaS-Bold;
}

.booking-success__content .funcsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.booking-success__content .back-home {
  background: #FFA827;
  border-radius: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 22px;
  gap: 10px;
}

.booking-success__content .back-home .icn {
  width: 18px;
  display: block;
}

.booking-success__content .back-home .txt {
  font-size: 15px;
  line-height: 19px;
  font-family: PlusJaS-SemiBold;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #222222;
}

.booking-success__content .save-btn {
  font-size: 15px;
  line-height: 120%;
  font-family: PlusJaS-SemiBold;
  display: block;
  color: #1B4E30;
}

.booking-detail__content {
  background: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
  border-top: 5px solid var(--colorYellow);
  padding: 40px 50px;
}

.booking-detail .heading {
  font-size: 38px;
  line-height: 110%;
  font-family: TiltWarp-Regular;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  /* Primary Green */
  color: #1B4E30;
}

.booking-detail .form-box {
  margin-bottom: 35px;
}

.booking-detail .label-form {
  position: relative;
  padding-left: 10px;
  font-size: 15px;
  line-height: 120%;
  font-family: PlusJaS-Medium;
  color: #222222;
  margin-bottom: 20px;
}

.booking-detail .label-form:before {
  background: #FFA827;
  height: 13px;
  width: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  content: "";
}

.booking-detail .form-input {
  margin-bottom: 10px;
}

.booking-detail .form-input.wrong .warning {
  display: block;
}

.booking-detail .form-input.wrong .input-booking,
.booking-detail .form-input.wrong .select-booking {
  border: 0.5px solid #FF4A4A;
}

.booking-detail .warning {
  margin-top: 5px;
  font-family: PlusJaS-Medium;
  color: #FF4A4A;
  font-size: 10px;
  display: none;
  line-height: 120%;
}

.booking-detail .input-booking {
  padding: 11px 13px 13px;
  font-size: 14px;
  line-height: 100%;
  font-family: PlusJaS-Medium;
  color: #222222;
  background: #FFFFFF;
  border: 0.5px solid #C7C7C7;
  border-radius: 5px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.booking-detail .input-booking+.input-booking {
  margin-top: 15px;
}

.booking-detail .input-booking:hover,
.booking-detail .input-booking:focus {
  border: 0.5px solid #1B4E30;
}

.booking-detail .input-booking::-webkit-input-placeholder {
  opacity: 0.5;
}

.booking-detail .input-booking::-moz-placeholder {
  opacity: 0.5;
}

.booking-detail .input-booking:-ms-input-placeholder {
  opacity: 0.5;
}

.booking-detail .input-booking::-ms-input-placeholder {
  opacity: 0.5;
}

.booking-detail .input-booking::placeholder {
  opacity: 0.5;
}

.booking-detail .note-book {
  margin-top: 15px;
  background: #FFFBF4;
  border: 0.5px solid #C7C7C7;
  border-radius: 5px;
  padding: 11px 13px 13px;
  font-size: 14px;
  line-height: 125%;
  height: 85px;
  font-family: PlusJaS-Medium;
  color: #222222;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.booking-detail .note-book:hover,
.booking-detail .note-book:focus {
  border: 0.5px solid #1B4E30;
}

.booking-detail .note-book::-webkit-input-placeholder {
  opacity: 0.5;
}

.booking-detail .note-book::-moz-placeholder {
  opacity: 0.5;
}

.booking-detail .note-book:-ms-input-placeholder {
  opacity: 0.5;
}

.booking-detail .note-book::-ms-input-placeholder {
  opacity: 0.5;
}

.booking-detail .note-book::placeholder {
  opacity: 0.5;
}

.booking-detail .select-booking {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #FFFFFF;
  border: 0.5px solid #C7C7C7;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
  width: 100%;
}

.booking-detail .select-booking.select-discount .dropdown-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 13px;
}

.booking-detail .select-booking.select-discount .dropdown-btn .icn-dc {
  width: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
}

.booking-detail .select-booking.select-discount .dropdown-btn .value {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 5px;
  color: var(--colorPrimary);
}

.booking-detail .select-booking.active {
  border-left: 0.5px solid #1B4E30;
  border-right: 0.5px solid #1B4E30;
  border-top: 0.5px solid #1B4E30;
  border-radius: 6px 6px 0 0;
}

.booking-detail .select-booking.active .droplist-ct {
  opacity: 1;
  visibility: visible;
}

.booking-detail .select-booking.active.calendar .icn svg {
  -webkit-transform: none;
  transform: none;
}

.booking-detail .select-booking.active .icn svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.booking-detail .select-booking .dropdown-btn {
  display: block;
  padding: 12px 0;
}

.booking-detail .select-booking .dropdown-btn .value {
  z-index: 2;
  position: relative;
  font-size: 14px;
  line-height: 145%;
  font-family: PlusJaS-Medium;
  color: #222222;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 13px;
  padding-right: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.booking-detail .select-booking .dropdown-btn .icn {
  position: absolute;
  z-index: 1;
  width: 16px;
  display: block;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.booking-detail .select-booking .droplist-ct {
  min-height: 60px;
  max-height: 182px;
  overflow-y: scroll;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  border-radius: 0 0 6px 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  position: absolute;
  top: calc(100% + 1px);
  left: -1px;
  width: calc(100% + 2px);
  background: #fff;
  border-left: 0.5px solid #1B4E30;
  border-right: 0.5px solid #1B4E30;
  border-bottom: 0.5px solid #1B4E30;
}

.booking-detail .select-booking .droplist-ct::-webkit-scrollbar {
  width: 3px;
}

.booking-detail .select-booking .droplist-ct::-webkit-scrollbar-track {
  background-color: transparent;
  outline: none;
}

.booking-detail .select-booking .droplist-ct::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
}

.booking-detail .select-booking .droplist-ct .label-drop {
  padding: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
  line-height: 119%;
  font-family: PlusJaS-Medium;
  color: #999;
}

.booking-detail .select-booking .droplist-ct .slt-btn {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
  display: block;
  font-size: 14px;
  line-height: 145%;
  font-family: PlusJaS-Medium;
  color: #222222;
  padding: 10px;
}

.booking-detail .select-booking .droplist-ct .slt-btn:hover {
  background: #f1f1f1;
}

.booking-detail .select-booking .droplist-ct .slt-btn.disabled {
  opacity: 0.4;
  cursor: default;
}

.booking-detail .select-booking .droplist-ct .slt-btn.disabled:hover {
  background: #fff;
}

.booking-detail .form-flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.booking-detail .form-type {
  width: calc((100% - 40px) / 3);
}

.booking-detail .form-type .number-order {
  width: 100%;
}

.booking-detail .form-type .number-order .minus,
.booking-detail .form-type .number-order .plus {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.booking-detail .form-type .number-order input {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.booking-detail .label {
  font-size: 13px;
  line-height: 100%;
  font-family: PlusJaS-Medium;
  margin-bottom: 13px;
  color: #777777;
}

.booking-detail .dateBox {
  position: relative;
}

.booking-detail .dateBox .picker__input {
  cursor: pointer;
  z-index: 2;
  padding: 11px 13px 13px;
  font-size: 14px;
  line-height: 100%;
  font-family: PlusJaS-Medium;
  color: #222222;
  background: transparent;
  border: 0.5px solid #C7C7C7;
  border-radius: 5px;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.booking-detail .dateBox .icn {
  position: absolute;
  z-index: 1;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.booking-detail .funcsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.booking-detail .funcsBox.popup {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.booking-detail .open-popup-close {
  font-size: 16px;
  line-height: 100%;
  font-family: PlusJaS-SemiBold;
  display: block;
  color: #777777;
}

.booking-detail .book-now {
  background: #FFA827;
  border-radius: 42px;
  padding: 12px 22px;
  font-size: 15px;
  line-height: 19px;
  /* identical to box height */
  font-family: PlusJaS-SemiBold;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  color: #222222;
}

.booking-detail .book-now:hover {
  background: var(--colorPrimary);
  color: #FFA827;
}

.popup-active .fancybox-content.PopUp-booking {
  background: transparent;
  overflow: unset;
}

.popup-active .fancybox-content.PopUp-booking .popup-booking-content {
  width: 550px;
  max-width: 100%;
}

.popup-active .fancybox-content.PopUp-booking .booking-popup__content {
  background: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
  border-top: 5px solid var(--colorYellow);
  padding: 30px 50px 40px;
}

.booking-save {
  padding: 30px;
  background: var(--colorPrimary);
}

@media screen and (max-width: 768px) {
  .booking-wrapper {
    padding: 35px 20px 58px;
  }

  .header-booking {
    margin-bottom: 17px;
  }

  .header-booking .td-logo {
    width: 190px;
  }

  .header-booking .hotline-box .txt {
    display: none;
  }

  .header-booking .hotline-box .phone-to .txt {
    display: none;
  }

  .header-booking .hotline-box .phone-to .icn {
    width: 32px;
    display: block;
  }

  .booking-detail__content {
    border-top: 4px solid #FFA827;
    padding: 20px 15px 32px;
  }

  .booking-detail .heading {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .booking-detail .input-booking {
    padding: 9px 13px;
    font-size: 14px;
  }

  .booking-detail .select-booking .dropdown-btn {
    padding: 9px 0;
  }

  .booking-detail .select-booking .dropdown-btn .value {
    font-size: 14px;
  }

  .booking-detail .form-flexBox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .booking-detail .form-type {
    width: calc((100% - 20px) / 2);
  }

  .booking-detail .form-type:nth-child(1) {
    margin-right: 50%;
  }

  .booking-detail .form-type .number-order .minus,
  .booking-detail .form-type .number-order .plus {
    width: 34px;
    height: 34px;
  }

  .booking-detail .dateBox .picker__input {
    padding: 10px 13px;
    height: 38px;
    font-size: 15px;
  }

  .popup-active .fancybox-content.PopUp-booking {
    padding: 50px 12px;
  }

  .popup-active .fancybox-content.PopUp-booking .booking-popup__content {
    padding: 13px 30px 32px;
  }

  .booking-success__content {
    padding: 30px 16px;
  }

  .booking-success__content .icon-scs {
    width: 75px;
  }

  .booking-success__content .title {
    font-size: 20px;
  }

  .booking-success__content .note {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .booking-success__content .booking-detail {
    padding: 25px 0;
  }

  .booking-success__content .info-type {
    gap: 35px;
  }

  .booking-success__content .type {
    font-size: 13px;
  }

  .booking-success__content .info {
    font-size: 13px;
  }

  .booking-success__content .back-home .txt {
    font-size: 14px;
  }
}

.td-home__wrapper {
  background-image: url("../../images/bg-pattern.webp");
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  margin-top: -108px;
  padding-top: 125px;
}

.td-home__wrapper .discount-box {
  position: relative;
  margin-bottom: 44px;
}

.td-home__wrapper .discount-box .swiper-button-prev {
  left: -54px;
}

.td-home__wrapper .discount-box .swiper-button-next {
  right: -54px;
}

.td-home__wrapper .discount-box .swiper-button-prev,
.td-home__wrapper .discount-box .swiper-button-next {
  background: none;
  top: 33%;
  -webkit-transform: translateX(-33%);
  transform: translateX(-33%);
  margin: 0;
  width: 24px;
  height: 24px;
  border: none;
}

.td-home__wrapper .discount-box .swiper-button-prev.swiper-button-disabled,
.td-home__wrapper .discount-box .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}

.td-home__wrapper .discount-box .swiper-pagination {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.td-home__wrapper .discount-box .swiper-pagination .swiper-pagination-bullet {
  background: #FFFFFF;
  opacity: 0.2;
  width: 9px;
  height: 9px;
  margin: 0;
}

.td-home__wrapper .discount-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFA827;
  opacity: 1;
}

.td-home__wrapper .swiper-dscHome {
  padding-bottom: 30px;
  margin-bottom: 28px;
}

.td-home__wrapper .swiper-dscHome .swiper-slide {
  height: auto;
  width: calc((100% - 48px) / 3);
}

.td-home__wrapper .dscBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.td-home__wrapper .dscBox:hover .total-dcs .get-dsc .txt {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}

.td-home__wrapper .dscBox .thumb {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 100%;
  background: #1B4E30;
  border-radius: 10px 10px 0 0;
  position: relative;
}

.td-home__wrapper .dscBox .thumb:before {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  content: "";
  background: transparent;
}

.td-home__wrapper .dscBox .thumb i {
  border-radius: 10px 10px 0 0;
  width: 100%;
  padding-top: 52.11%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}

.td-home__wrapper .dscBox .total-dcs {
  height: 100%;
  padding: 13px 25px 30px;
  background: #FFFFFF;
  border-radius: 0 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.td-home__wrapper .dscBox .title {
  font-size: 18px;
  line-height: 150%;
  font-family: PlusJaS-SemiBold;
  color: #222222;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.td-home__wrapper .dscBox .sapo {
  font-size: 13px;
  line-height: 150%;
  /* or 20px */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;
  color: #666666;
  font-family: PlusJaS-Medium;
}

.td-home__wrapper .dscBox .get-dsc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.td-home__wrapper .dscBox .get-dsc .icn {
  width: 30px;
  display: block;
}

.td-home__wrapper .dscBox .get-dsc .txt {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  padding-top: 7px;
  font-size: 15px;
  line-height: 150%;
  font-family: PlusJaS-Bold;
  color: #222222;
  display: block;
}

.td-home__wrapper .view-all {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  border: 2px solid #FFA827;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: PlusJaS-SemiBold;
  padding: 17px 60px;
  background: transparent;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.td-home__wrapper .view-all:hover {
  background: var(--colorYellow);
  color: var(--colorPrimary);
}

.td-home__wrapper .img-seq #imagesequence {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.td-home__wrapper .img-seq #imagesequence img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.td-home__wrapper .img-seq .spacer.s2 {
  min-height: 650px;
}

.td-home__wrapper .img-seq .rlt {
  position: relative;
  min-height: 55vh;
}

.td-home__wrapper .img-seq .block-relative {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.td-home__wrapper .img-seq .text-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.td-home__wrapper .img-seq .text {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.td-home__wrapper .img-seq .text.text-frame-1-1 {
  top: 25%;
}

.td-home__wrapper .img-seq .text.text-frame-1-2 {
  top: 65%;
}

.td-home__wrapper .img-seq .text.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.td-home__wrapper .img-seq .text-inside {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  text-align: center;
  padding-left: 15.66vw;
  right: 0;
  width: 28.6vw;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.td-home__wrapper .img-seq .heading {
  font-size: 60px;
  line-height: 110%;
  font-family: TiltWarp-Regular;
  text-align: left;
  letter-spacing: -0.02em;
  margin-bottom: 31px;
  color: #222222;
}

.td-home__wrapper .img-seq .check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 19px;
}

.td-home__wrapper .img-seq .check-list .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.td-home__wrapper .img-seq .check-list .icn {
  width: 33px;
  display: block;
}

.td-home__wrapper .img-seq .check-list .txt {
  font-size: 20px;
  line-height: 25px;
  font-family: PlusJaS-Medium;
  color: #222222;
}

.td-home__wrapper .new-food {
  position: relative;
}

.td-home__wrapper .new-food .heading {
  font-size: 54px;
  line-height: 68px;
  letter-spacing: -0.02em;
  font-family: TiltWarp-Regular;
  /* Line Space */
  margin-bottom: 25px;
  color: #DFDFDF;
  text-align: center;
}

.td-home__wrapper .new-food .swiper-newfood {
  padding-bottom: 67px;
}

.td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu {
  -ms-flex-wrap: unset;
  flex-wrap: unset;
  gap: 0;
}

.td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu .swiper-slide {
  height: auto;
  width: calc((100% - 75px) / 4);
}

.td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu .swiper-slide .food-menu {
  height: 100%;
}

.td-home__wrapper .new-food .swiper-button-next {
  right: -54px;
}

.td-home__wrapper .new-food .swiper-button-prev {
  left: -54px;
}

.td-home__wrapper .new-food .swiper-button-next,
.td-home__wrapper .new-food .swiper-button-prev {
  width: 24px;
  height: 24px;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: none;
  border: none;
  outline: none;
}

.td-home__wrapper .new-food .swiper-button-next.swiper-button-disabled,
.td-home__wrapper .new-food .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}

.td-home__wrapper .new-food .swiper-pagination {
  bottom: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.td-home__wrapper .new-food .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #FFFFFF;
  opacity: 0.2;
  margin: 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.td-home__wrapper .new-food .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFA827;
  opacity: 1;
}

.td-home__coverMob {
  display: none;
}

.td-home__coverWeb {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.td-home__coverWeb .coverBox {
  height: 650px;
  overflow: hidden;
  position: relative;
}

.td-home__coverWeb .parallax-mouse {
  position: relative;
  z-index: 3;
}

.td-home__coverWeb .parallax-mouse .prl-bg {
  display: block;
  width: 100%;
}

.td-home__coverWeb .parallax-scroll {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.td-home__coverWeb .parallax-scroll .prl-bgscrl {
  bottom: 3%;
  position: absolute;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.td-home__coverWeb .parallax-scrollHoz {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.td-home__coverWeb .parallax-scrollHoz .prl-bgscrlHoz {
  left: auto;
  top: 0;
  right: auto;
  position: absolute;
  display: block;
  height: 100%;
  width: auto;
}

.td-home__coverWeb .parallax-scrollHoz .prl-bgscrlHoz img {
  width: auto;
  height: 650px;
  display: block;
}

.td-home__coverWeb .parallax-scrollHoz .prl-bgscrlHoz.layer-1 {
  z-index: 2;
  -webkit-animation: mover 2.1s infinite alternate;
  animation: mover 2.1s infinite alternate;
}

.td-home__coverWeb .parallax-scrollHoz .prl-bgscrlHoz.layer-2 {
  z-index: 1;
  -webkit-animation: mover2 2.1s infinite alternate;
  animation: mover2 2.1s infinite alternate;
}

.td-home__coverWeb i {
  display: block;
  height: 650px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
}

.td-home__coverWeb .tvBox {
  position: absolute;
  z-index: 5;
  left: 60%;
  -webkit-transform: translateX(-60%);
  transform: translateX(-60%);
  bottom: 21px;
  width: 332px;
}

.td-home__coverWeb .bgTv {
  width: 332px;
  height: 232px;
  background-image: url("../../images/TV.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  position: relative;
  z-index: 2;
}

.td-home__coverWeb video {
  width: 181px;
  height: 166px;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 25px;
  left: 15px;
  z-index: 1;
  display: block;
}

.td-home__coverWeb .brich-left {
  position: absolute;
  z-index: 6;
  width: 100px;
  bottom: 55px;
  left: 30%;
}

.td-home__coverWeb .brich-left img {
  width: 100%;
  display: block;
}

.td-home__coverWeb .brich-right {
  position: absolute;
  z-index: 6;
  width: 100px;
  top: 169px;
  right: -20px;
}

.td-home__coverWeb .brich-right img {
  width: 100%;
  display: block;
}

.td-home__coverWeb .typetext {
  font-size: 20px;
  line-height: 20px;
  font-family: TrixiPro-Regular;
  position: absolute;
  z-index: 7;
  color: #E2E2E2;
}

.td-home__coverWeb .typetext#type-text-1 {
  left: 12%;
  top: 193px;
}

.td-home__coverWeb .typetext#type-text-2 {
  left: 60%;
  top: 156px;
}

.td-home__bigText-middle {
  padding: 60px 0px 30px;
  max-width: 100%;
  margin: 0 auto;
}

.td-home__bigText-middle .content__title {
  margin-bottom: 52px;
  font-size: 7vw;
  line-height: 132%;
  /* or 131% */
  font-family: Oswald-Stencil;
  text-align: center;
  color: #FFA827;
}

.td-home__bigText-middle .view-menu {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
  border: 2px solid #FFA827;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: PlusJaS-SemiBold;
  padding: 17px 39px;
  background: transparent;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.td-home__bigText-middle .view-menu:hover {
  background: var(--colorYellow);
  color: var(--colorPrimary);
}

.td-home__tdclub {
  position: relative;
  padding: 80px 0;
}

.td-home__tdclub .text-club {
  font-size: 3vw;
  line-height: 110%;
  /* identical to box height, or 66px */
  font-family: TiltWarp-Regular;
  text-align: center;
  margin-bottom: 1vw;
  letter-spacing: -0.02em;
  color: #FFA827;
}

.td-home__tdclub .heading {
  font-size: 4.5vw;
  line-height: 6vw;
  /* or 128% */
  font-family: Oswald-Stencil;
  text-align: center;
  margin-bottom: 1.2vw;
  color: #D9D9D9;
  opacity: 0;
  -webkit-transform: translate3d(0, 20%, 0);
  transform: translate3d(0, 20%, 0);
  -webkit-transition: 0.5s 0.2s;
  transition: 0.5s 0.2s;
}

.td-home__tdclub .heading.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.td-home__tdclub .des {
  font-size: 1vw;
  line-height: 130%;
  text-align: center;
  font-family: PlusJaS-Medium;
  color: #68A380;
  width: 56.67vw;
  max-width: 100%;
  margin: 0 auto 2vw;
}

.td-home__tdclub .join-club {
  border-radius: 10px;
  width: 231px;
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.td-home__tdclub .pin-icn {
  position: absolute;
  z-index: 2;
}

.td-home__tdclub .pin-icn img {
  width: 100%;
  display: block;
}

.td-home__tdclub .pin-icn.big-left {
  width: 13.85vw;
  left: 6vw;
  top: 6%;
}

.td-home__tdclub .pin-icn.sm-left {
  width: 8.8vw;
  left: 20vw;
  top: 18%;
}

.td-home__tdclub .pin-icn.sm-right {
  width: 10.92vw;
  right: 12vw;
  top: 10%;
}

.td-home__tdclub .swiper-club {
  width: 100%;
  overflow: hidden;
}

.td-home__tdclub .club-marquee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.td-home__tdclub .club-marquee .mq-item {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.td-home__tdclub .club-marquee .mq-item img {
  width: auto;
  height: 364px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.marquee {
  /*   overflow: hidden; */
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  width: 100%;
  background: #FFA827;
  overflow-x: hidden;
}

.marquee .marquee-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: scrolling 75s linear infinite;
  animation: scrolling 75s linear infinite;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 100%;
  z-index: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}

.marquee .marquee-item {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 70px;
  line-height: 88px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-family: TiltWarp-Regular;
  color: #222222;
}

.marquee .marquee-item span {
  color: #143D25;
}

.marquee .marquee-item .icn {
  width: 55px;
}

@-webkit-keyframes scrolling {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translatex(-100%);
    transform: translatex(-100%);
  }
}

@keyframes scrolling {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translatex(-100%);
    transform: translatex(-100%);
  }
}

.slide-up-box .slide-wrap {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slide-up-box .slide-wrap .box-info {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.slide-up-box .slide-wrap .box-info .info-content {
  width: 1115px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slide-up-box .slide-wrap .box-info .videoBox {
  position: relative;
  width: 615px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
}

.slide-up-box .slide-wrap .box-info .bg-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.slide-up-box .slide-wrap .box-info .bg-vid img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-up-box .slide-wrap .box-info video {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.slide-up-box .slide-wrap .box-info .info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 31px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  -webkit-transform: translate3d(0, 20%, 0);
  transform: translate3d(0, 20%, 0);
  -webkit-transition: 0.5s 0.2s;
  transition: 0.5s 0.2s;
}

.slide-up-box .slide-wrap .box-info .info.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slide-up-box .slide-wrap .heading {
  font-size: 60px;
  line-height: 110%;
  /* or 37px */
  width: 458px;
  letter-spacing: -0.02em;
  font-family: TiltWarp-Regular;
  color: #222222;
}

.slide-up-box .slide-wrap .check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 23px;
}

.slide-up-box .slide-wrap .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.slide-up-box .slide-wrap .check .icn {
  width: 31px;
}

.slide-up-box .slide-wrap .check .txt {
  font-size: 20px;
  line-height: 25px;
  font-family: PlusJaS-Medium;
  color: #222222;
}

.slide-up-box .slide-wrap .box-1 {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #FFA827;
}

.slide-up-box .slide-wrap .box-2 {
  border-top: 1px solid #e58e0d;
  background: #FFA827;
  z-index: 2;
  height: 100vh;
  position: relative;
}

.loading-box {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #0F361F;
  top: 0;
  left: 0;
}

.loading-box.active {
  opacity: 1;
  visibility: visible;
}

.loading-box .loading-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.loading-box .loading-content .logo {
  width: 250px;
  margin-bottom: 30px;
}

.loading-box .loading-content .progress {
  position: relative;
  width: 344px;
  max-width: 80%;
  height: 3px;
  background: #D9D9D9;
  margin-bottom: 30px;
}

.loading-box .loading-content .progress .meter {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: block;
  background: #FFA827;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.loading-box .loading-content .count {
  font-size: 20px;
  line-height: 130%;
  /* identical to box height, or 26px */
  font-family: PlusJaS-Medium;
  text-align: center;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .td-home__wrapper {
    overflow: hidden;
    padding-top: 60px;
  }

  .td-home__wrapper .discount-box {
    margin-bottom: 30px;
  }

  .td-home__wrapper .discount-box .swiper-button-prev,
  .td-home__wrapper .discount-box .swiper-button-next {
    display: none;
  }

  .td-home__wrapper .swiper-dscHome {
    margin-bottom: 0;
  }

  .td-home__wrapper .swiper-dscHome .swiper-wrapper {
    overflow-y: scroll;
    gap: 20px;
  }

  .td-home__wrapper .swiper-dscHome .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }

  .td-home__wrapper .swiper-dscHome .swiper-slide {
    width: 288px;
  }

  .td-home__wrapper .swiper-dscHome .swiper-slide:nth-child(1) {
    margin-left: 20px;
  }

  .td-home__wrapper .swiper-dscHome .swiper-slide:nth-last-child(1) {
    margin-right: 20px;
  }

  .td-home__wrapper .dscBox .total-dcs {
    padding: 10px 15px 20px;
  }

  .td-home__wrapper .dscBox .title {
    font-size: 15px;
  }

  .td-home__wrapper .dscBox .sapo {
    font-size: 12px;
  }

  .td-home__wrapper .dscBox .get-dsc .icn {
    width: 28px;
  }

  .td-home__wrapper .dscBox .get-dsc .txt {
    font-size: 14px;
  }

  .td-home__wrapper .view-all {
    padding: 14px 26px;
    font-size: 16px;
    line-height: 20px;
    width: 200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .td-home__wrapper .img-seq {
    display: none;
  }

  .td-home__wrapper .new-food .heading {
    font-size: 34px;
    margin-bottom: 22px;
    line-height: 110%;
  }

  .td-home__wrapper .new-food .swiper-newfood {
    padding-bottom: 26px;
  }

  .td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu {
    overflow-y: scroll;
    white-space: nowrap;
    max-width: 100%;
    gap: 10px;
  }

  .td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu::-webkit-scrollbar {
    width: 1em;
  }

  .td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu .swiper-slide {
    width: 220px;
  }

  .td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu .swiper-slide:nth-child(1) {
    margin-left: 20px;
  }

  .td-home__wrapper .new-food .swiper-wrapper.list-food-menu.combo-menu .swiper-slide:nth-last-child(1) {
    margin-right: 20px;
  }

  .td-home__wrapper .new-food .swiper-button-next,
  .td-home__wrapper .new-food .swiper-button-prev {
    display: none;
  }

  .td-home__wrapper .new-food .swiper-pagination {
    display: none;
  }

  .td-home__coverWeb {
    display: none;
  }

  .td-home__coverMob {
    display: block;
    position: relative;
    padding-top: 115%;
    width: 100%;
  }

  .td-home__coverMob .bg-vid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
  }

  .td-home__coverMob .bg-vid img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .td-home__coverMob video {
    position: absolute;
    width: 100%;
    display: block;
    z-index: 2;
    top: 0;
    left: 0;
  }

  .td-home__bigText-middle {
    padding: 12px 0 0;
  }

  .td-home__bigText-middle .content__title {
    line-height: 66px;
    margin-bottom: 20px;
    font-size: 50px;
  }

  .td-home__bigText-middle .view-menu {
    font-size: 16px;
    line-height: 20px;
    padding: 14px 26px;
  }

  .td-home__tdclub {
    padding: 33px 0;
  }

  .td-home__tdclub .text-club {
    font-size: 50px;
    margin-bottom: 7px;
  }

  .td-home__tdclub .heading {
    font-size: 36px;
    line-height: 140%;
    margin-bottom: 16px;
  }

  .td-home__tdclub .des {
    font-size: 12px;
    line-height: 15px;
    width: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .td-home__tdclub .join-club {
    border: 2px solid #FFA827;
    padding: 14px 26px;
    font-size: 16px;
    line-height: 20px;
    width: 200px;
    height: 48px;
    margin: 0 auto 30px;
  }

  .td-home__tdclub .pin-icn {
    display: none;
  }

  .td-home__tdclub .swiper-club .club-marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    gap: 10px;
  }

  .td-home__tdclub .swiper-club .club-marquee::-webkit-scrollbar {
    display: none;
  }

  .td-home__tdclub .swiper-club .club-marquee .mq-item {
    padding-left: 0;
  }

  .td-home__tdclub .swiper-club .club-marquee .mq-item:first-child {
    margin-left: 20px;
  }

  .td-home__tdclub .swiper-club .club-marquee .mq-item:last-child {
    margin-right: 20px;
  }

  .td-home__tdclub .swiper-club .club-marquee .mq-item img {
    height: 150px;
  }

  .td-home__tdclub .slide-club {
    height: 200px;
  }

  .marquee {
    margin-bottom: 25px;
  }

  .marquee .marquee-item {
    font-size: 38px;
    line-height: 47px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 385px;
    flex: 0 0 385px;
    gap: 10px;
  }

  .marquee .marquee-item .icn {
    width: 30px;
  }

  .slide-up-box .slide-wrap {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .slide-up-box .slide-wrap .box-info {
    height: auto;
  }

  .slide-up-box .slide-wrap .box-info .info-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 50px;
  }

  .slide-up-box .slide-wrap .box-info .videoBox {
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    -webkit-transition: 0.5s 0.2s;
    transition: 0.5s 0.2s;
    padding-top: 100%;
  }

  .slide-up-box .slide-wrap .box-info .videoBox.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .slide-up-box .slide-wrap .box-info video {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .slide-up-box .slide-wrap .box-info .info {
    padding: 0 35px;
    gap: 20px;
  }

  .slide-up-box .slide-wrap .heading {
    font-size: 34px;
    width: 260px;
  }

  .slide-up-box .slide-wrap .check-list {
    gap: 20px;
  }

  .slide-up-box .slide-wrap .check {
    gap: 8px;
  }

  .slide-up-box .slide-wrap .check .icn {
    width: 22px;
  }

  .slide-up-box .slide-wrap .check .txt {
    font-size: 16px;
    line-height: 20px;
  }

  .slide-up-box .slide-wrap .box-1 {
    position: relative;
    top: auto;
    left: auto;
  }

  .slide-up-box .slide-wrap .box-2 {
    border-top: 0;
  }
}

.td-404__wrapper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url("../../images/bg-pattern.webp");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.td-404__wrapper .content-404 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.td-404__wrapper .td-logo {
  width: 230px;
  margin-bottom: 49px;
  display: block;
}

.td-404__wrapper .images {
  width: 268px;
  margin-bottom: 42px;
}

.td-404__wrapper .images img {
  width: 100%;
  display: block;
}

.td-404__wrapper .note {
  font-size: 26px;
  line-height: 130%;
  /* identical to box height, or 34px */
  padding: 0 20px;
  text-align: center;
  font-family: PlusJaS-SemiBold;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.td-404__wrapper .back-to-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 22px;
  gap: 10px;
  background: #FFA827;
  border-radius: 31px;
  margin-bottom: 12px;
}

.td-404__wrapper .back-to-home .icn {
  width: 18px;
  display: block;
}

.td-404__wrapper .back-to-home .txt {
  font-size: 15px;
  line-height: 19px;
  /* identical to box height */
  font-family: PlusJaS-SemiBold;
  text-transform: uppercase;
  color: #222222;
}

.td-404__wrapper .redirect-note {
  font-size: 11px;
  line-height: 130%;
  /* or 14px */
  font-family: PlusJaS-Medium;
  text-align: center;
  color: #6AB086;
  margin-bottom: 24px;
}

.td-404__wrapper .hot-line .txt {
  font-size: 14px;
  line-height: 18px;
  /* identical to box height */
  font-family: PlusJaS-SemiBold;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.td-404__wrapper .hot-line .numb {
  font-size: 19px;
  line-height: 24px;
  /* identical to box height */
  font-family: TiltWarp-Regular;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #FFA827;
}

@media screen and (max-width: 768px) {
  .td-404__wrapper.td-wrapper {
    padding-top: 0;
  }

  .td-404__wrapper .images {
    width: 220px;
  }

  .td-404__wrapper .note {
    font-size: 16px;
  }
}

.td-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.td-wrapper.bcs-wrapper {
  padding-top: 0;
}

.td-wrapper.active-noti {
  padding-top: 36px;
}

.td-wrapper.active-noti .td-header {
  top: 36px;
}

.td-wrapper.active-noti .tagBox {
  top: 120px;
}

.td-wrapper.active-noti .noti-page {
  top: -36px;
}

.td-content__wrapper {
  margin-bottom: auto;
}

.widthCT {
  max-width: 100%;
  width: 1115px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-active .popup-active {
  max-height: 100vh;
  overflow: hidden;
}

body.popup-active {
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .td-wrapper {
    padding-top: 60px;
  }

  .td-wrapper.active-noti {
    padding-top: 112px;
  }

  .td-wrapper.active-noti .td-header {
    top: 52px;
  }

  .td-wrapper.active-noti .tagBox {
    top: 112px;
  }

  .td-wrapper.active-noti .noti-page {
    top: -52px;
  }
}

/*# sourceMappingURL=main.css.map */