@charset "UTF-8";
.moving-ball {
  position: absolute;
  border-radius: 50%; }

.mycanvas {
  position: absolute;
  left: 0;
  top: 0; }

/* ----------------------------------- */
/* ------ Datepicker ------ */
/* ----------------------------------- */
#ui-datepicker-div{
  /* left: 850px !important; */
  display: none !important;
}
.ui-widget-header {
  background-color: #D8B9A4; }
  .ui-widget-header .ui-datepicker-month {
    color: #fff; }

.ui-datepicker-year {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: auto !important;
  padding: 0 30px 0 10px;
  margin-right: 5px !important;
  border: 0;
  background-color: #fff;
  background-image: -webkit-linear-gradient(45deg, transparent 50%, #fff 50%), -webkit-linear-gradient(315deg, #fff 50%, transparent 50%), -webkit-linear-gradient(left, #CA8B60, #CA8B60);
  background-image: -o-linear-gradient(45deg, transparent 50%, #fff 50%), -o-linear-gradient(315deg, #fff 50%, transparent 50%), -o-linear-gradient(left, #CA8B60, #CA8B60);
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%), linear-gradient(to right, #CA8B60, #CA8B60);
  background-position: calc(100% - 0.10rem) calc(50% + 0.01rem), calc(100% - 0.06rem) calc(50% + 0.01rem), 100% 0;
  background-size: 0.04rem 0.04rem, 0.04rem 0.04rem, 0.2rem 0.4rem;
  background-repeat: no-repeat;
  color: #CA8B60;
  cursor: pointer; }
  .ui-datepicker-year:focus {
    border: 1px solid #fff;
    outline: none; }

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 0;
  background: #D8B9A4;
  color: #fff; }

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 0;
  background: #CA8B60; }

/* ----------------------------------- */
/* ------ Discount ------ */
/* ----------------------------------- */
@-webkit-keyframes twinkle {
  from {
    -webkit-transform: scale(1);
    transform: scale(1); }
  to {
    -webkit-transform: scale(0);
    transform: scale(0); } }
@keyframes twinkle {
  from {
    -webkit-transform: scale(1);
    transform: scale(1); }
  to {
    -webkit-transform: scale(0);
    transform: scale(0); } }

html.discount #discount {
  display: none !important; }

#discount {
  position: fixed;
  right: 4vw;
  bottom: 45%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  #discount:hover {
    -webkit-transform: translateY(calc(50% - 20px));
    -ms-transform: translateY(calc(50% - 20px));
    transform: translateY(calc(50% - 20px)); }
  #discount * {
    color: #F2F0EC; }

#discount.show {
  opacity: 1;
  visibility: visible; }

.discount__wrap {
  padding: 0.15rem 0.1rem 0.3rem;
  background-image: url("../img/deco/discount-bg.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center; }

.discount__deco {
  position: absolute;
  width: 0.1rem !important; }
  .discount__deco.top {
    left: 0.3rem;
    top: 0.1rem;
    -webkit-animation: twinkle 0.7s alternate infinite;
    animation: twinkle 0.7s alternate infinite; }
  .discount__deco.bottom {
    right: 0.3rem;
    bottom: 0.1rem;
    -webkit-animation: twinkle 0.8s 0.2s alternate infinite;
    animation: twinkle 0.8s 0.2s alternate infinite; }
#icon-fixed{
  margin: 0px 12px;
  padding: 0px;
  position: fixed;
  bottom: 88px;
  top: auto;
  right: 12px;
  z-index: 9999;
}
#icon-fixed a{
  display: block;
}
#icon-fixed a img{
  width: 60px;
  margin:0 0 6px 0;
}
@media (max-width: 575px) {
  #discount:hover {
    -webkit-transform: translateY(calc(50% - 10px));
    -ms-transform: translateY(calc(50% - 10px));
    transform: translateY(calc(50% - 10px)); }
  .discount__wrap {
    padding: 0.2rem 0.05rem 0.25rem; }
  .discount__deco {
    position: absolute;
    width: 0.08rem !important; }
    .discount__deco.top {
      left: 0.1rem;
      top: 0.2rem; }
    .discount__deco.bottom {
      right: 0.2rem;
      bottom: 0.14rem; }
  #icon-fixed a img{
  width: 40px;
  margin:0 0 6px 0;
} }


/* ----------------------------------- */
/* ------ Breadcrumb ------ */
/* ----------------------------------- */
#breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -0.06rem; }
  #breadcrumb * {
    line-height: 1.4; }

.breadcrumb__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.06rem; }
  .breadcrumb__wrap * {
    -webkit-transition: color 0.7s;
    -o-transition: color 0.7s;
    transition: color 0.7s; }
  .breadcrumb__wrap:not(.active):hover * {
    color: #CA8B60 !important; }
  .breadcrumb__wrap::after {
    content: '';
    display: block;
    width: 0.1rem;
    height: 1px;
    background-color: #D8B9A4;
    margin: 0 0.1rem; }
  .breadcrumb__wrap:last-child::after {
    display: none; }

.breadcrumb__item {
  color: #D8B9A4; }

/* ----------------------------------- */
/* ------ Pagination ------ */
/* ----------------------------------- */
#pagination {
  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;
  margin-top: 0.6rem; }

.pagination__btn-wrap:not(.dot) {
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .pagination__btn-wrap:not(.dot).disabled {
    display: none; }

.pagination__btn-wrap:not(.dot).active .pagination__btn {
  color: #CA8B60; }
  .pagination__btn-wrap:not(.dot).active .pagination__btn::after {
    opacity: 1; }

.pagination__btn {
  padding: 0.01rem 1.5vw 0.08rem;
  font-family: "Bad Script", cursive;
  font-size: 0.4rem;
  letter-spacing: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .pagination__btn::after {
    content: '';
    display: block;
    position: absolute;
    width: 0.24rem;
    height: 2px;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #CA8B60;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  .pagination__btn.arrow {
    letter-spacing: -0.06rem;
    -webkit-transform: translateY(-0.02rem);
    -ms-transform: translateY(-0.02rem);
    transform: translateY(-0.02rem); }
  .pagination__btn:hover {
    color: #CA8B60; }
    .pagination__btn:hover:not(.arrow)::after {
      opacity: 1; }

@media (max-width: 991px) {
  .pagination__btn {
    padding: 0.01rem 2vw 0.08rem; } }

@media (max-width: 575px) {
  #pagination {
    margin-top: 12vw; }
  .pagination__btn {
    padding: 0.01rem 3vw 0.08rem;
    font-size: 0.3rem; } }

/* ----------------------------------- */
/* ------ Uk Lightbox ------ */
/* ----------------------------------- */
@-webkit-keyframes lightboxOpen {
  from {
    opacity: 0;
    visibility: hidden; }
  to {
    opacity: 1;
    visibility: visible; } }
@keyframes lightboxOpen {
  from {
    opacity: 0;
    visibility: hidden; }
  to {
    opacity: 1;
    visibility: visible; } }

.uk-lightbox {
  width: 100%;
  max-width: 805px;
  height: 88%;
  max-height: 805px;
  left: auto;
  right: 50%;
  top: 55%;
  bottom: auto;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  background-color: #fff;
  -webkit-animation: lightboxOpen 0.5s both;
  animation: lightboxOpen 0.5s both;
  opacity: 0;
  visibility: hidden; }
  .uk-lightbox [class*=uk-transition-slide] {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  .uk-lightbox .uk-transition-fade {
    opacity: 1; }
  .uk-lightbox ul {
    position: static; }
  .uk-lightbox-toolbar.uk-position-top {
    padding: 0;
    background-color: transparent; }
  .uk-lightbox-caption {
    left: 0.5rem;
    right: auto;
    bottom: 0.5rem;
    padding: 0;
    background-color: rgba(202, 139, 96, 0);
    color: #CA8B60; }
  .uk-lightbox-toolbar-icon, .uk-lightbox-button {
    background-color: rgba(202, 139, 96, 0);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
    .uk-lightbox-toolbar-icon:hover, .uk-lightbox-button:hover {
      background-color: #CA8B60; }
  .uk-lightbox-toolbar-icon {
    margin: 0.5rem; }
    .uk-lightbox-toolbar-icon:hover line {
      stroke: #fff !important; }
  .uk-lightbox-button:hover::after {
    color: #fff !important; }
  .uk-lightbox-toolbar-icon * {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  .uk-lightbox-toolbar-icon svg {
    width: 0.4rem;
    height: 0.4rem; }
  .uk-lightbox-toolbar-icon line {
    stroke: #CA8B60 !important; }
  .uk-lightbox-button {
    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;
    width: 0.5rem;
    height: 0.5rem;
    left: auto;
    right: 0.5rem;
    bottom: 0.5rem;
    top: auto;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    padding: 0;
    margin: 0; }
    .uk-lightbox-button svg {
      display: none; }
    .uk-lightbox-button::after {
      font-family: "Bad Script", cursive;
      font-size: 0.4rem;
      letter-spacing: -0.06rem;
      color: #CA8B60;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
    .uk-lightbox-button.uk-position-center-left {
      -webkit-transform: translateX(-100%) !important;
      -ms-transform: translateX(-100%) !important;
      transform: translateX(-100%) !important; }
      .uk-lightbox-button.uk-position-center-left::after {
        content: '<-'; }
    .uk-lightbox-button.uk-position-center-right::after {
      content: '->'; }
  .uk-lightbox-items > .uk-active {
    padding: 0.5rem 1.6rem 1.6rem 0.5rem; }
  .uk-lightbox-items > * > * {
    max-width: 100%;
    max-height: 66vh; }
  .uk-lightbox-items > * > :not(iframe) {
    width: auto !important;
    height: auto !important; }

@media (max-width: 1024px) {
  .uk-lightbox {
    max-width: 670px;
    height: 88%;
    max-height: 670px; } }

@media (max-width: 991px) {
  .uk-lightbox {
    max-width: 90vw;
    height: 88%;
    max-height: 90vw; } }

@media (max-width: 575px) and (orientation: portrait) {
  .uk-lightbox {
    max-width: 100vw;
    height: 88%;
    max-height: 100vw; }
    .uk-lightbox-caption {
      left: 4vw;
      bottom: 4vw; }
    .uk-lightbox-toolbar-icon {
      margin: 4vw; }
    .uk-lightbox-button {
      right: 4vw;
      bottom: 4vw; }
    .uk-lightbox-items > .uk-active {
      padding: 4vw 16vw 16vw 4vw; } }

@media (max-width: 767px) and (orientation: landscape) {
  .uk-lightbox {
    max-width: 340px;
    height: 80%;
    max-height: 340px;
    top: 60%; }
    .uk-lightbox-caption {
      left: 2vw;
      bottom: 2vw; }
    .uk-lightbox-toolbar-icon {
      margin: 2vw; }
    .uk-lightbox-button {
      right: 2vw;
      bottom: 2vw; }
    .uk-lightbox-items > .uk-active {
      padding: 2vw 10vw 10vw 2vw; } }

/* ----------------------------------- */
/* ------ Obfit Ie ------ */
/* ----------------------------------- */
@media (max-width: 575px) {
  .obfit-ie {
    height: 0 !important;
    padding-bottom: 60% !important; } }

/* ----------------------------------- */
/* ------ Text Editor ------ */
/* ----------------------------------- */
#text-editor * {
  word-break: break-all; }

#text-editor table {
  width: 100%;
  max-width: 100%; }

#text-editor table th, #text-editor table td {
  padding: 0.04rem 0.1rem; }

#text-editor table p {
  text-align: inherit; }

#text-editor ul {
  list-style: initial;
  padding-left: 20px; }

#text-editor img {
  max-width: 100%; }

@media (max-width: 767px) {
  #text-editor table {
    display: inline-block;
    overflow: auto; }
  #text-editor table tbody {
    white-space: nowrap; } }

@media (max-width: 600px) {
  #text-editor iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; } }

/* ----------------------------------- */
/* ------ Burger ------ */
/* ----------------------------------- */
.navbar__wrap.fixed .burger__span, html.inner .navbar__wrap .burger__span {
  background-color: #fff !important; }

#burger {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  margin-left: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  z-index: 999; }
  #burger:not(.isOpened):hover .burger__span {
    background-color: #4B4B4B; }
    #burger:not(.isOpened):hover .burger__span:nth-child(1) {
      width: 0.28rem; }
    #burger:not(.isOpened):hover .burger__span:nth-child(2) {
      width: 0.4rem; }
    #burger:not(.isOpened):hover .burger__span:nth-child(3) {
      width: 0.28rem; }

#burger.isOpened .burger__span {
  width: 0.32rem;
  background-color: #fff; }
  #burger.isOpened .burger__span:nth-child(1) {
    -webkit-transform: translateY(0.09rem) rotate(-135deg);
    -ms-transform: translateY(0.09rem) rotate(-135deg);
    transform: translateY(0.09rem) rotate(-135deg); }
  #burger.isOpened .burger__span:nth-child(2) {
    width: 0; }
  #burger.isOpened .burger__span:nth-child(3) {
    -webkit-transform: translateY(-0.09rem) rotate(135deg);
    -ms-transform: translateY(-0.09rem) rotate(135deg);
    transform: translateY(-0.09rem) rotate(135deg); }

#burger.isOpened:hover .burger__span-wrap {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

#burger.isOpened:hover .burger__span {
  background-color: #fff; }

html.inner #burger, #burger.fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  visibility: visible;
  opacity: 1; }
  html.inner #burger .burger__span, #burger.fixed .burger__span {
    background-color: #fff !important; }

.burger__span-wrap {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s; }

.burger__span {
  width: 0.32rem;
  height: 1px;
  margin-top: 0.08rem;
  background-color: #4B4B4B;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s; }
  .burger__span:first-child {
    margin-top: 0; }

#burger-container {
  position: fixed;
  width: 100%;
  max-width: 7.6rem;
  height: 0;
  right: 0;
  top: 0;
  background-color: rgba(216, 185, 164, 0.9);
  overflow: hidden;
  visibility: hidden;
  z-index: 1000;
  -webkit-transition: 0.7s 0.7s;
  -o-transition: 0.7s 0.7s;
  transition: 0.7s 0.7s; }

#burger-container.isOpened {
  height: 100vh;
  visibility: visible;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s; }
  #burger-container.isOpened .burger__btn-wrap {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 0.7s 0.7s, -webkit-transform 0.7s 0.7s;
    transition: opacity 0.7s 0.7s, -webkit-transform 0.7s 0.7s;
    -o-transition: transform 0.7s 0.7s, opacity 0.7s 0.7s;
    transition: transform 0.7s 0.7s, opacity 0.7s 0.7s;
    transition: transform 0.7s 0.7s, opacity 0.7s 0.7s, -webkit-transform 0.7s 0.7s; }

.burger__btn-outer {
  width: 100%;
  height: calc(100% - 1rem);
  padding: 0 6vw 1rem;
  margin-top: 1rem;
  overflow: hidden; }

.burger__btn-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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 0 8vw;
  text-align: center; }

.burger__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, -webkit-transform 0.7s;
  -o-transition: transform 0.7s, opacity 0.7s;
  transition: transform 0.7s, opacity 0.7s;
  transition: transform 0.7s, opacity 0.7s, -webkit-transform 0.7s; }

.burger__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  max-width: 2.6rem;
  padding: 0.15rem 0;
  border-bottom: 1px solid rgba(75, 75, 75, 0);
  color: #fff;
  font-size: 0.2rem;
  text-align: center;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s; }
  .burger__btn:hover, .burger__btn.active {
    border-bottom: 1px solid #fff;
    color: #fff; }

.burger__p.zh {
  margin-right: 0.1rem; }

.burger__p.en {
  font-size: 0.17rem;
  margin-bottom: -0.02rem; }

@media (max-width: 991px) {
  #burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
    opacity: 1; }
  .navbar__btn-box {
    display: none; }
  #burger-container {
    max-width: 7rem; } }

@media (max-width: 575px) and (orientation: portrait) {
  #burger {
    top: 0; }
    #burger:not(.isOpened):hover .burger__span:nth-child(1) {
      width: 0.24rem; }
    #burger:not(.isOpened):hover .burger__span:nth-child(2) {
      width: 0.34rem; }
    #burger:not(.isOpened):hover .burger__span:nth-child(3) {
      width: 0.24rem; }
  #burger.isOpened .burger__span:nth-child(1) {
    -webkit-transform: translateY(0.07rem) rotate(-135deg);
    -ms-transform: translateY(0.07rem) rotate(-135deg);
    transform: translateY(0.07rem) rotate(-135deg); }
  #burger.isOpened .burger__span:nth-child(2) {
    width: 0; }
  #burger.isOpened .burger__span:nth-child(3) {
    -webkit-transform: translateY(-0.07rem) rotate(135deg);
    -ms-transform: translateY(-0.07rem) rotate(135deg);
    transform: translateY(-0.07rem) rotate(135deg); }
  .burger__span {
    width: 0.28rem;
    margin-top: 0.06rem; }
  .burger__btn-outer {
    height: calc(100% - 30vw);
    padding-bottom: 20vw;
    margin-top: 30vw; }
  .burger__btn-wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .burger__btn {
    padding: 0.1rem 0;
    font-size: 0.17rem; } }

@media (max-width: 767px) and (orientation: landscape) {
  .burger__btn-outer {
    height: calc(100% - 16vw);
    padding: 0 6vw 10vw;
    margin-top: 16vw; }
  .burger__btn-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: inherit; }
  .burger__btn-wrap {
    width: 50%;
    padding: 0 2vw; }
  .burger__btn {
    padding: 0.15rem 0; } }

/* ----------------------------------- */
/* ------ Form ------ */
/* ----------------------------------- */
#form {
  padding: 0.85rem 0.8rem;
  margin-top: -0.26rem; }

.form__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

.form__wrap {
  margin-top: 0.26rem; }

.form__wrap.abreast {
  width: 50%; }
  .form__wrap.abreast:nth-child(1) {
    margin-right: 0.1rem; }
  .form__wrap.abreast:nth-child(2) {
    margin-left: 0.1rem; }

.form__enter-block {
  -webkit-appearance: none;
  width: 100%;
  padding: 0.22rem 0.4rem;
  border-radius: 0;
  border: 1px solid rgba(75, 75, 75, 0);
  background-color: #fff;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  font-size: 0.18rem;
  letter-spacing: 0.02rem;
  color: #CA8B60 !important;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .form__enter-block::-webkit-input-placeholder {
    color: #CA8B60;
    opacity: 0.3; }
  .form__enter-block:-ms-input-placeholder {
    color: #CA8B60;
    opacity: 0.3; }
  .form__enter-block::-ms-input-placeholder {
    color: #CA8B60;
    opacity: 0.3; }
  .form__enter-block::placeholder {
    color: #CA8B60;
    opacity: 0.3; }
  .form__enter-block:focus {
    outline: none;
    border: 1px solid #CA8B60; }

.form__label {
  margin-left: 0.4rem;
  margin-bottom: 0.1rem;
  color: #D8B9A4; }

.form label {
  display: block;
  margin: 0; }

.form__send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 1rem; }

.form__send-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.form__btn {
  height: 0.4rem;
  max-height: 100%;
  padding: 0 0.4rem;
  margin-left: 0.1rem;
  background-color: #D8B9A4;
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
  .form__btn.unlocked {
    background-color: #CA8B60; }

.form__send-desc {
  color: #CA8B60;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }
.form__note{
  color: #CA8B60;
}
.form__note a{
  display: inline-block;
}
.modal-header{
  padding: 0.15rem;
}
.modal-body{
  padding: 0.15rem;
}
.modal-footer{
  padding: 0.15rem;
}

@media (max-width: 991px) {
  #form {
    padding: 0.85rem 6vw; } }

@media (max-width: 575px) {
  #form {
    padding: 14vw 0; }
  .form__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .form__wrap.abreast {
    width: 100%; }
    .form__wrap.abreast:nth-child(1) {
      margin-right: 0; }
    .form__wrap.abreast:nth-child(2) {
      margin-left: 0; }
  .form__enter-block {
    padding: 0.12rem 0.22rem; }
  .form__label {
    margin-left: 0.22rem;
    margin-bottom: 0.05rem; }
  .form__send {
    margin-top: 10vw; }
  .form__btn {
    margin-top: 2vw; }
  .form__send-desc {
    margin-top: 2vw;
    text-align: right; } }

/* ----------------------------------- */
/* ------ SlideToUnlock ------ */
/* ----------------------------------- */
.slideToUnlock {
  position: relative;
  width: 3rem;
  background-color: #fff; }
  .slideToUnlock__progressBar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%; }
    .slideToUnlock__progressBar.unlocked {
      background-color: #D8B9A4; }
  .slideToUnlock__text {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: transparent;
    color: #D8B9A4;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  .slideToUnlock__drag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0.2rem;
    background-color: #CA8B60;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    -o-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s; }
    .slideToUnlock__drag::after {
      content: '->';
      font-family: "Bad Script", cursive;
      font-size: 0.4rem;
      letter-spacing: -0.067rem;
      line-height: 1;
      color: #fff; }

.slideToUnlock.unlocked .slideToUnlock__text {
  color: #fff; }

.slideToUnlock.unlocked .slideToUnlock__drag {
  opacity: 0;
  visibility: hidden; }

@media (max-width: 575px) {
  .slideToUnlock {
    width: 70vw; } 
  }

/* ----------------------------------- */
/* ------ Copyright ------ */
/* ----------------------------------- */
#copyright {
  font-size: 0.15rem; }

.copyright__p {
  display: inline;
  font-size: 0.14rem;
  letter-spacing: 0.015rem;
  line-height: 1.5;
  color: #fff;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s; }

span.copyright__p {
  margin-right: 0.1rem; }

a.copyright__p:hover {
  color: #F2F0EC; }
