/* * * * * * * * * * * * * * * * * * * * * * *
 * Device screen size
 * Usage: @include responsive(mobile) { ... }
 *        @include responsive(transition){ ... }
 *        @include responsive(desktop) { ... }
 * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * *
 * Helpers / Functions
 * Usage:
 *        @include responsive(mobile){ ... }
 * * * * * * * * * * * * * * * * * * * * * * */
@font-face {
  font-family: Bitter;
  src: url("./assets/fonts/Bitter-Regular.otf") format("opentype");
  font-style: normal; }

@font-face {
  font-family: Bitter;
  src: url("./assets/fonts/Bitter-Italic.otf") format("opentype");
  font-style: italic; }

@font-face {
  font-family: Bitter;
  src: url("./assets/fonts/Bitter-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: bold; }

@font-face {
  font-family: Bitter;
  src: url("./assets/fonts/Bitter-BoldItalic.otf") format("opentype");
  font-style: italic;
  font-weight: bold; }

@font-face {
  font-family: Engravers Gothic;
  src: url("./assets/fonts/Engravers Gothic Regular.otf") format("opentype");
  font-style: normal; }

@font-face {
  font-family: Sackers Gothic;
  src: url("./assets/fonts/SackersGothicStd-Light.otf") format("opentype");
  font-style: normal; }

@font-face {
  font-family: Sackers Gothic;
  src: url("./assets/fonts/SackersGothicStd-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500; }

@font-face {
  font-family: Sackers Gothic;
  src: url("./assets/fonts/SackersGothicStd-Heavy.otf") format("opentype");
  font-style: normal;
  font-weight: bold; }

@font-face {
  font-family: DFHei;
  src: url("./assets/fonts/DFHeiStd-W3.otf") format("opentype");
  font-style: normal; }

@font-face {
  font-family: DFHei;
  src: url("./assets/fonts/DFHeiStd-W5.otf") format("opentype");
  font-style: normal;
  font-weight: bold; }

body {
  height: 100%;
  margin: 0;
  background: #f7f1eb;
  font-family: Bitter;
  font-size: 8pt;
  color: #0c3930;
  line-height: 1.8;
  letter-spacing: 0.25px;
  overflow: auto;
  transition: background 0.5s; }
  body.chi, body .chi {
    font-family: DFHei;
    letter-spacing: 2px;
    line-height: 2.2;
    font-size: 10pt; }
    @media only screen and (max-width: 767px) {
      body.chi, body .chi {
        font-size: 2.7vw; } }
  body .eng-font {
    font-family: Bitter;
    letter-spacing: 0.25px;
    line-height: 1.8;
    font-size: 9pt; }
    @media only screen and (max-width: 767px) {
      body .eng-font {
        font-size: 2.4vw; } }
  @media only screen and (max-width: 767px) {
    body {
      font-size: 2.4vw; } }
  body .container .main-container {
    flex-grow: 1;
    width: 100%; }
    body .container .main-container .main {
      width: 85vw;
      box-sizing: border-box;
      padding: 3.5vw 3.5vw 3.5vw 0;
      margin-left: 15vw; }
      @media only screen and (max-width: 767px) {
        body .container .main-container .main {
          width: 100%;
          margin-top: 22.7vw;
          margin-left: 0px;
          padding: 3.4vw 6.6vw 6.6vw 6.6vw; } }
  @media only screen and (max-width: 767px) {
    body .container {
      flex-direction: column; } }

body.night {
  background: #012638;
  color: #F6E5CF; }

.title {
  font-family: "Sackers Gothic";
  font-size: 11.5pt;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: bold; }
  @media only screen and (max-width: 767px) {
    .title {
      font-size: 3.2vw; } }

a {
  color: #0c3930;
  text-decoration: none; }

a:hover, a:active {
  font-weight: bold; }

.night a {
  color: #F6E5CF; }

.night .line {
  background: rgba(246, 229, 207, 0.5); }

.all-caps {
  text-transform: uppercase; }

.line {
  height: 1px;
  width: 100%;
  background: rgba(12, 57, 48, 0.5); }

.button.outlined {
  cursor: pointer;
  border: rgba(12, 57, 48, 0.5) 1px solid;
  font-family: "Sackers Gothic";
  font-size: 9.5pt;
  letter-spacing: 1.5px;
  line-height: 1;
  width: 150px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .button.outlined {
      width: 30vw;
      height: 5.5vw;
      font-size: 2.6vw; } }
  .button.outlined.chi {
    font-size: 9pt;
    letter-spacing: 5px; }
    @media only screen and (max-width: 767px) {
      .button.outlined.chi {
        font-size: 2.1vw; } }

.button.outlined:hover, .button.outlined:active {
  background: #0c3930;
  color: #f7f1eb; }

.show-on-desktop-only {
  display: block; }
  @media only screen and (max-width: 767px) {
    .show-on-desktop-only {
      display: none; } }

.show-on-mobile-only {
  display: none; }
  @media only screen and (max-width: 767px) {
    .show-on-mobile-only {
      display: block; } }

.light-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 54, 46, 0.95);
  padding: 3vw 3vw 3vw 3vw;
  box-sizing: border-box;
  display: none; }
  @media only screen and (max-width: 767px) {
    .light-box {
      padding: 10vw 6.7vw 10vw 6.7vw; } }
  .light-box .display-wrapper {
    max-width: 80%;
    height: 100%;
    align-self: center;
    position: relative;
    margin: auto; }
    @media only screen and (max-width: 767px) {
      .light-box .display-wrapper {
        width: 100%;
        max-height: 80%; } }
    .light-box .display-wrapper #imgPlace {
      width: 100%;
      max-height: 100%;
      object-fit: contain; }
    .light-box .display-wrapper .button-wrapper {
      position: absolute;
      top: calc(50% - 25px);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding-right: 2.5vw;
      padding-left: 2.5vw;
      box-sizing: border-box; }
  .light-box #closeButton {
    position: fixed;
    top: 3vw;
    right: 3vw; }
    @media only screen and (max-width: 767px) {
      .light-box #closeButton {
        top: 10vw;
        right: 6.7vw; } }
  .light-box .btn {
    width: 20px;
    height: auto;
    object-fit: contain;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      .light-box .btn {
        width: 3vw; } }
  .light-box.show {
    display: flex; }

.slider {
  position: relative; }
  .slider > img {
    position: absolute;
    width: 100% !important;
    opacity: 1;
    transition: opacity 1s; }
    .slider > img.slider-hidden {
      opacity: 0; }
  .slider .slider-indicator-wrapper {
    z-index: 900;
    flex-direction: column;
    margin: 22% 16px 22% auto;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-end; }
    .slider .slider-indicator-wrapper .slider-indicator {
      width: 14px;
      height: 1px;
      padding: 5px;
      transition: width 0.3s;
      cursor: pointer; }
      .slider .slider-indicator-wrapper .slider-indicator div {
        width: 100%;
        height: 100%;
        background: #f7f1eb;
        box-sizing: content-box; }
      .slider .slider-indicator-wrapper .slider-indicator.current, .slider .slider-indicator-wrapper .slider-indicator.active {
        width: 44px; }
    @media only screen and (max-width: 767px) {
      .slider .slider-indicator-wrapper {
        margin: 13% 8px 13% auto; }
        .slider .slider-indicator-wrapper .slider-indicator {
          height: 1px; } }

.navigation-wrapper {
  width: 15vw;
  height: 100%;
  flex-shrink: 0;
  position: fixed;
  transition: background 0.2s;
  top: 0;
  z-index: 950; }
  .navigation-wrapper .chi {
    letter-spacing: 2px; }
  @media only screen and (max-width: 767px) {
    .navigation-wrapper {
      height: auto;
      width: 100%;
      background: #f7f1eb; }
      .navigation-wrapper.expand {
        height: 100vh;
        background: #0c3930; }
        .navigation-wrapper.expand .navigation .menu-wrapper {
          display: flex;
          display: -webkit-box;
          /* OLD - iOS 6-, Safari 3.1-6, BB7 */
          display: -ms-flexbox;
          /* TWEENER - IE 10 */
          display: -webkit-flex;
          /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
          display: flex;
          /* NEW, Spec - Firefox, Chrome, Opera */ 
	  	  overflow: scroll;
          height: 80vh;}
        .navigation-wrapper.expand .navigation .logo .night-only {
          display: block; }
        .navigation-wrapper.expand .navigation .logo .bright-only {
          display: none; }
        .navigation-wrapper.expand .navigation .hamburger .night-only {
          display: none; }
        .navigation-wrapper.expand .navigation .hamburger .bright-only {
          display: none; }
        .navigation-wrapper.expand .navigation .hamburger .expand-only {
          display: block; } }
  .navigation-wrapper .navigation {
    width: 100%;
    height: 100%;
    padding: 26px;
    font-family: "Sackers Gothic";
    font-size: 6.5pt;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .navigation-wrapper .navigation {
        padding: 6.6vw;
        font-size: 2.6vw; } }
    .navigation-wrapper .navigation .logo {
      width: 100px;
      background-size: 90%;
      -webkit-flex-shrink: 0;
      flex-shrink: 0;
      margin-bottom: 10px; }
      .navigation-wrapper .navigation .logo img {
        width: 100%; }
      .navigation-wrapper .navigation .logo .night-only {
        display: none; }
      .navigation-wrapper .navigation .logo .bright-only {
        display: block; }
      @media only screen and (max-width: 767px) {
        .navigation-wrapper .navigation .logo {
          width: 22vw;
          margin-bottom: 0px; } }
    .navigation-wrapper .navigation .menu-wrapper {
      display: flex;
      flex-direction: column;
      height: 100%; }
      @media only screen and (max-width: 767px) {
        .navigation-wrapper .navigation .menu-wrapper {
          color: #F6E5CF; } }
      .navigation-wrapper .navigation .menu-wrapper .menu {
        flex-grow: 1;
        -webkit-flex-shrink: 0;
        flex-shrink: 0; }
        .navigation-wrapper .navigation .menu-wrapper .menu .chi {
          font-size: 9pt;
          letter-spacing: 2px; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .menu .chi {
              font-size: 3vw; } }
        .navigation-wrapper .navigation .menu-wrapper .menu ul {
          list-style: none;
          margin-left: 0;
          padding-left: 0; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .menu ul {
              margin-top: 20px; } }
        .navigation-wrapper .navigation .menu-wrapper .menu li {
          padding-left: 1em;
          text-indent: -1em;
          position: relative;
          margin-bottom: 5px; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .menu li {
              text-indent: 0;
              margin-bottom: 4vw; } }
        .navigation-wrapper .navigation .menu-wrapper .menu li:before {
          content: " ";
          background: #0c3930;
          height: 1px;
          width: 5px;
          position: absolute;
          top: 50%;
          left: 0;
          transition: 0.5s; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .menu li:before {
              background: #F6E5CF;
              width: 10px; } }
        .navigation-wrapper .navigation .menu-wrapper .menu li.active:before, .navigation-wrapper .navigation .menu-wrapper .menu li.current:before {
          width: 12px;
          left: -7px; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .menu li.active:before, .navigation-wrapper .navigation .menu-wrapper .menu li.current:before {
              width: 17px; } }
        .navigation-wrapper .navigation .menu-wrapper .menu a {
          font-size: 7.5pt;
          line-height: 2;
          letter-spacing: 1px;
          font-family: "Sackers Gothic";
          text-decoration: none;
          margin-left: 10px;
          text-transform: lowercase; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .menu a {
              color: #F6E5CF;
              font-size: 3.4vw;
              margin-left: 15px; } }
        .navigation-wrapper .navigation .menu-wrapper .menu a:hover, .navigation-wrapper .navigation .menu-wrapper .menu a:active {
          font-weight: bold; }
      .navigation-wrapper .navigation .menu-wrapper .contact {
        width: 100%;
        -webkit-flex-shrink: 0;
        flex-shrink: 0; }
        .navigation-wrapper .navigation .menu-wrapper .contact .address {
          font-size: 8pt; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .contact .address {
              font-size: 3vw; } }
        @media only screen and (max-width: 767px) {
          .navigation-wrapper .navigation .menu-wrapper .contact a {
            color: #F6E5CF; } }
        @media only screen and (max-width: 767px) {
          .navigation-wrapper .navigation .menu-wrapper .contact {
            margin-left: 31px; } }
        .navigation-wrapper .navigation .menu-wrapper .contact .chi {
          font-size: 8pt; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .contact .chi {
              font-size: 2.8vw; } }
        .navigation-wrapper .navigation .menu-wrapper .contact > div {
          width: 100%;
          letter-spacing: 0.25px; }
        .navigation-wrapper .navigation .menu-wrapper .contact > div {
          margin-bottom: 10px; }
        .navigation-wrapper .navigation .menu-wrapper .contact .phone {
          line-height: 1; }
        .navigation-wrapper .navigation .menu-wrapper .contact .lang-switch .chi {
          font-family: DFHei;
          font-size: 8pt;
          letter-spacing: 0.5px; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .contact .lang-switch .chi {
              font-size: 2.7vw; } }
        .navigation-wrapper .navigation .menu-wrapper .contact .lang-switch > span {
          cursor: pointer; }
          .navigation-wrapper .navigation .menu-wrapper .contact .lang-switch > span.active, .navigation-wrapper .navigation .menu-wrapper .contact .lang-switch > span.current {
            font-weight: bold; }
      .navigation-wrapper .navigation .menu-wrapper .social {
        padding: 5px 5px 5px 0px;
        width: 100px;
        display: flex;
        box-sizing: border-box;
        -webkit-flex-shrink: 0;
        flex-shrink: 0; }
        @media only screen and (max-width: 767px) {
          .navigation-wrapper .navigation .menu-wrapper .social {
            width: 22.8vw;
            margin-left: 31px; } }
        .navigation-wrapper .navigation .menu-wrapper .social div {
          width: 14px;
          height: 14px;
          background: no-repeat center center;
          background-size: 100%; }
          .navigation-wrapper .navigation .menu-wrapper .social div img {
            height: 100%;
            margin: auto; }
          .navigation-wrapper .navigation .menu-wrapper .social div .night-only {
            display: none; }
          .navigation-wrapper .navigation .menu-wrapper .social div .bright-only {
            display: block; }
          @media only screen and (max-width: 767px) {
            .navigation-wrapper .navigation .menu-wrapper .social div {
              width: 3.6vw;
              height: 3.6vw; }
              .navigation-wrapper .navigation .menu-wrapper .social div .night-only {
                display: block; }
              .navigation-wrapper .navigation .menu-wrapper .social div .bright-only {
                display: none; } }
      @media only screen and (max-width: 767px) {
        .navigation-wrapper .navigation .menu-wrapper {
          display: none; } }
    .navigation-wrapper .navigation .hamburger {
      cursor: pointer;
      width: 3.2vw;
      position: absolute;
      right: 6.6vw;
      top: 8vw;
      display: none; }
      .navigation-wrapper .navigation .hamburger img {
        width: 100%; }
      .navigation-wrapper .navigation .hamburger .night-only {
        display: none; }
      .navigation-wrapper .navigation .hamburger .bright-only {
        display: block; }
      .navigation-wrapper .navigation .hamburger .expand-only {
        display: none; }
      @media only screen and (max-width: 767px) {
        .navigation-wrapper .navigation .hamburger {
          display: block; } }

.night .navigation-wrapper {
  background: #012638; }
  @media only screen and (max-width: 767px) {
    .night .navigation-wrapper.expand {
      display: block;
      background: #0c3930; }
      .night .navigation-wrapper.expand .navigation .hamburger .night-only {
        display: none; }
      .night .navigation-wrapper.expand .navigation .hamburger .bright-only {
        display: none; }
      .night .navigation-wrapper.expand .navigation .hamburger .expand-only {
        display: block; } }
  .night .navigation-wrapper .navigation .hamburger .night-only {
    display: block; }
  .night .navigation-wrapper .navigation .hamburger .bright-only {
    display: none; }
  .night .navigation-wrapper .navigation .hamburger .expand-only {
    display: none; }

.night .navigation-wrapper .navigation .menu li:before {
  background: #F6E5CF; }

.night .navigation-wrapper .navigation .social div .night-only {
  display: block; }

.night .navigation-wrapper .navigation .social div .bright-only {
  display: none; }

.night .navigation-wrapper .navigation .logo .night-only {
  display: block; }

.night .navigation-wrapper .navigation .logo .bright-only {
  display: none; }

.instagram {
  margin-left: 15px; }

.welcome {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }
  @media only screen and (max-width: 767px) {
    .welcome {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important; } }
  .welcome .heading-wrapper {
    width: 100%;
    margin-bottom: 4vw; }
    .welcome .heading-wrapper .title.chi {
      font-size: 13.5pt;
      letter-spacing: 1.5px; }
      @media only screen and (max-width: 767px) {
        .welcome .heading-wrapper .title.chi {
          font-size: 3.4vw; } }
    .welcome .heading-wrapper .sub-title {
      width: 45%;
      font-size: 10.5pt;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .welcome .heading-wrapper .sub-title {
          width: 100%;
          font-size: 3vw; } }
      .welcome .heading-wrapper .sub-title.chi {
        line-height: 2.2; }
  .welcome .content-wrapper .preview {
    width: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .welcome .content-wrapper .preview {
        flex-wrap: wrap; }
        .welcome .content-wrapper .preview:nth-child(even) {
          flex-wrap: wrap-reverse; } }
    .welcome .content-wrapper .preview .picture {
      width: 64.5vw;
      height: 39vw;
      display: flex;
      flex: 660 660 660px; }
      @media only screen and (max-width: 767px) {
        .welcome .content-wrapper .preview .picture {
          height: 52.7vw;
          margin-bottom: 7.2vw; } }
      .welcome .content-wrapper .preview .picture img {
        width: 0;
        height: 100%;
        object-fit: cover;
        flex: 1 1;
        min-width: 0; }
      .welcome .content-wrapper .preview .picture > img:not(:last-child) {
        margin-right: 1.5vw; }
    .welcome .content-wrapper .preview .picture.multiple {
      height: 52.2vw; }
      @media only screen and (max-width: 767px) {
        .welcome .content-wrapper .preview .picture.multiple {
          height: 60vw; } }
    .welcome .content-wrapper .preview .description {
      width: 14.6vw;
      min-width: 150px;
      flex: 151 151 151px;
      display: flex;
      flex-direction: column; }
      .welcome .content-wrapper .preview .description .line {
        margin-top: 20px;
        margin-bottom: 20px; }
      .welcome .content-wrapper .preview .description .aworkofsubstance {
        flex-grow: 1; }
      .welcome .content-wrapper .preview .description .description-third {
        flex-grow: 1; }
    .welcome .content-wrapper .preview > div:first-child {
      margin-right: 3.5vw; }
      @media only screen and (max-width: 767px) {
        .welcome .content-wrapper .preview > div:first-child {
          margin-right: 0px; } }
  .welcome .content-wrapper .preview:not(:last-child) {
    margin-bottom: 3.7vw; }
    @media only screen and (max-width: 767px) {
      .welcome .content-wrapper .preview:not(:last-child) {
        margin-bottom: 7.2vw; } }
  .welcome .TA_selfserveprop {
    min-width: 190px;
    margin-top: 20px; }
    .welcome .TA_selfserveprop.desktop-widget {
      display: flex; }
      @media only screen and (max-width: 767px) {
        .welcome .TA_selfserveprop.desktop-widget {
          display: none; } }
    .welcome .TA_selfserveprop.mobile-widget {
      display: none; }
      @media only screen and (max-width: 767px) {
        .welcome .TA_selfserveprop.mobile-widget {
          display: flex; } }
      .welcome .TA_selfserveprop.mobile-widget #CDSWIDSSP {
        margin-left: auto;
        margin-right: auto; }

	.welcome .TA_tchotel {
    min-width: 190px;
    margin-top: 20px; }
    .welcome .TA_tchotel.desktop-widget {
      display: flex; }
      @media only screen and (max-width: 767px) {
        .welcome .TA_tchotel.desktop-widget {
          display: none; } }
    .welcome .TA_tchotel.mobile-widget {
      display: none; }
      @media only screen and (max-width: 767px) {
        .welcome .TA_tchotel.mobile-widget {
          display: flex; } }
      .welcome .TA_tchotel.mobile-widget #CDSWIDTC {
        margin-left: auto;
        margin-right: auto; }
  .welcome .TA_certificateOfExcellence #CDSWIDCOE {
    margin-left: auto;
    margin-right: auto; }
  .welcome #CDSWIDSSP {
    border: 1px solid #0c3930; }
    .welcome #CDSWIDSSP .widSSPData, .welcome #CDSWIDSSP img {
      background-color: transparent;
      border-color: transparent !important; }
  .welcome .ui_bubble_rating:before {
    color: transparent; }
  .welcome .ui_bubble_rating:after {
    color: #0c3930; }

.rooms {
  display: flex; }
  @media only screen and (max-width: 767px) {
    .rooms {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important;
      flex-wrap: wrap; } }
  .rooms .heading-wrapper {
    margin-top: 43px;
    width: 100%;
    flex: 151 151 151px;
    margin-right: 4%;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .rooms .heading-wrapper {
        margin-top: 0;
        margin-bottom: 7.2vw; } }
    .rooms .heading-wrapper .line {
      margin-top: 20px;
      margin-bottom: 20px; }
    .rooms .heading-wrapper .type-heading {
      font-family: "Sackers Gothic";
      font-size: 9.5pt;
      letter-spacing: 1.5px;
      color: #872d2c;
      line-height: 1;
      margin-bottom: 5px;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        .rooms .heading-wrapper .type-heading {
          font-size: 3vw; } }
      .rooms .heading-wrapper .type-heading.chi {
        font-size: 13.5pt; }
        @media only screen and (max-width: 767px) {
          .rooms .heading-wrapper .type-heading.chi {
            font-size: 3.1vw; } }
    .rooms .heading-wrapper .types {
      display: flex;
      flex-direction: column; }
  .rooms .detail-wrapper {
    width: 100%;
    flex: 660 660 660px; }
    .rooms .detail-wrapper .item .picture {
      width: 100%;
      height: 40vw; }
      @media only screen and (max-width: 767px) {
        .rooms .detail-wrapper .item .picture {
          height: 53vw; } }
      .rooms .detail-wrapper .item .picture img {
        width: 100%;
        height: 100%; }
    .rooms .detail-wrapper .item .description-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .rooms .detail-wrapper .item .description-wrapper {
          margin-top: 4.6vw;
          margin-bottom: 4.6vw; } }
      .rooms .detail-wrapper .item .description-wrapper .description {
        margin-bottom: 20px;
        margin-top: 15px;
        max-width: 60%; }
        .rooms .detail-wrapper .item .description-wrapper .description .type {
          font-family: "Sackers Gothic";
          font-size: 9.5pt;
          letter-spacing: 1.5px;
          font-weight: bold; }
          @media only screen and (max-width: 767px) {
            .rooms .detail-wrapper .item .description-wrapper .description .type {
              font-size: 2.6vw; } }
          .rooms .detail-wrapper .item .description-wrapper .description .type.chi {
            font-size: 11pt; }
            @media only screen and (max-width: 767px) {
              .rooms .detail-wrapper .item .description-wrapper .description .type.chi {
                font-size: 2.7vw; } }
      .rooms .detail-wrapper .item .description-wrapper .button-group {
        flex-grow: 0;
        flex-shrink: 0;
        top: -4px;
        position: relative;
        display: flex; }
        @media only screen and (max-width: 767px) {
          .rooms .detail-wrapper .item .description-wrapper .button-group {
            flex-direction: column;
            margin-left: 2vw; } }
        .rooms .detail-wrapper .item .description-wrapper .button-group .button {
          margin-left: 10px; }
          @media only screen and (max-width: 767px) {
            .rooms .detail-wrapper .item .description-wrapper .button-group .button {
              margin-left: 0;
              margin-top: 1vw;
              margin-bottom: 1.2vw; } }

.room-detail {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }
  @media only screen and (max-width: 767px) {
    .room-detail {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important; } }
  .room-detail .heading-wrapper {
    width: 100%;
    margin-bottom: 38px; }
    .room-detail .heading-wrapper .title {
      text-transform: lowercase;
      letter-spacing: 1.5px;
      font-weight: bold;
      text-transform: uppercase; }
      @media only screen and (max-width: 767px) {
        .room-detail .heading-wrapper .title {
          font-size: 3.2vw; } }
      .room-detail .heading-wrapper .title.chi {
        font-size: 14pt; }
        @media only screen and (max-width: 767px) {
          .room-detail .heading-wrapper .title.chi {
            font-size: 2.9vw; } }
    .room-detail .heading-wrapper .sub-title {
      width: 51%;
      font-size: 10.5pt;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .room-detail .heading-wrapper .sub-title {
          width: 100%;
          font-size: 2.8vw; } }
      .room-detail .heading-wrapper .sub-title.chi {
        font-size: 10pt;
        line-height: 2.2; }
        @media only screen and (max-width: 767px) {
          .room-detail .heading-wrapper .sub-title.chi {
            font-size: 2.7vw; } }
  .room-detail .content-wrapper .preview {
    width: 100%;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .room-detail .content-wrapper .preview {
        flex-wrap: wrap; } }
    .room-detail .content-wrapper .preview .picture {
      width: 64.5vw;
      height: 39vw;
      display: flex;
      flex: 660 660 660px; }
      @media only screen and (max-width: 767px) {
        .room-detail .content-wrapper .preview .picture {
          height: 52.7vw;
          margin-bottom: 7.2vw; } }
      .room-detail .content-wrapper .preview .picture img {
        width: 0;
        height: 100%;
        object-fit: cover;
        flex: 1 1; }
      .room-detail .content-wrapper .preview .picture > img:not(:last-child) {
        margin-right: 1.5vw; }
    .room-detail .content-wrapper .preview .picture.multiple {
      height: 52.2vw; }
    .room-detail .content-wrapper .preview .description {
      width: 14.6vw;
      min-width: 150px;
      flex: 151 151 151px;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-self: stretch; }
      .room-detail .content-wrapper .preview .description ul {
        line-height: 2.3;
        list-style: none;
        padding-left: 0;
        margin: 0 0 10px 0; }
        @media only screen and (max-width: 767px) {
          .room-detail .content-wrapper .preview .description ul {
            margin-bottom: 8.5vw; } }
        .room-detail .content-wrapper .preview .description ul li {
          text-indent: -4pt;
          position: relative; }
          .room-detail .content-wrapper .preview .description ul li:before {
            content: "- "; }
    .room-detail .content-wrapper .preview > div:first-child {
      margin-right: 3.5vw; }
      @media only screen and (max-width: 767px) {
        .room-detail .content-wrapper .preview > div:first-child {
          margin-right: 0px; } }
  .room-detail .content-wrapper .preview:not(:last-child) {
    margin-bottom: 3.7vw; }

.gallery {
  display: flex;
  padding-bottom: 70px !important; }
  @media only screen and (max-width: 767px) {
    .gallery {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important;
      flex-wrap: wrap; } }
  .gallery .heading-wrapper {
    margin-top: 43px;
    width: 100%;
    flex: 151 151 151px;
    margin-right: 4%;
    min-width: 151px;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .gallery .heading-wrapper {
        margin-top: 0;
        margin-bottom: 7.2vw; } }
    .gallery .heading-wrapper .line {
      margin-top: 20px;
      margin-bottom: 20px; }
  .gallery .gallery-wrapper {
    width: 100%;
    flex: 660 660 660px; }
    .gallery .gallery-wrapper .row {
      display: flex;
      width: 100%; }
      .gallery .gallery-wrapper .row:not(:last-child) {
        margin-bottom: 1vw; }
        @media only screen and (max-width: 767px) {
          .gallery .gallery-wrapper .row:not(:last-child) {
            margin-bottom: 2vw; } }
      .gallery .gallery-wrapper .row > img, .gallery .gallery-wrapper .row > div {
        flex: 1 1 100px; }
        .gallery .gallery-wrapper .row > img:not(:last-child), .gallery .gallery-wrapper .row > div:not(:last-child) {
          margin-right: 1vw; }
          @media only screen and (max-width: 767px) {
            .gallery .gallery-wrapper .row > img:not(:last-child), .gallery .gallery-wrapper .row > div:not(:last-child) {
              margin-right: 2vw; } }
      .gallery .gallery-wrapper .row > img {
        cursor: pointer; }
      .gallery .gallery-wrapper .row:nth-child(1) {
        height: 39vw; }
        @media only screen and (max-width: 767px) {
          .gallery .gallery-wrapper .row:nth-child(1) {
            height: 52.9vw; } }
      .gallery .gallery-wrapper .row:nth-child(2) {
        height: 40vw; }
        @media only screen and (max-width: 767px) {
          .gallery .gallery-wrapper .row:nth-child(2) {
            height: 54vw; } }
      .gallery .gallery-wrapper .row:nth-child(3) {
        height: 19.5vw; }
        @media only screen and (max-width: 767px) {
          .gallery .gallery-wrapper .row:nth-child(3) {
            height: 26vw; } }
      @media only screen and (max-width: 767px) {
        .gallery .gallery-wrapper .row:nth-child(4) {
          height: 52.9vw; } }
      .gallery .gallery-wrapper .row:nth-child(5) {
        height: 40vw; }
        @media only screen and (max-width: 767px) {
          .gallery .gallery-wrapper .row:nth-child(5) {
            height: 54vw; } }
      .gallery .gallery-wrapper .row .col {
        display: flex;
        flex-direction: column; }
        .gallery .gallery-wrapper .row .col > img, .gallery .gallery-wrapper .row .col > div {
          flex: 1 1 0; }
          .gallery .gallery-wrapper .row .col > img:not(:last-child), .gallery .gallery-wrapper .row .col > div:not(:last-child) {
            margin-bottom: 1vw; }
            @media only screen and (max-width: 767px) {
              .gallery .gallery-wrapper .row .col > img:not(:last-child), .gallery .gallery-wrapper .row .col > div:not(:last-child) {
                margin-bottom: 2vw; } }
      .gallery .gallery-wrapper .row .text-box {
        font-family: "Sackers Gothic";
        font-weight: 500;
        width: 100%;
        height: 100%;
        padding: 3%;
        box-sizing: border-box;
        background: #012638;
        color: #F6E5CF;
        font-size: 9.5pt;
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          .gallery .gallery-wrapper .row .text-box {
            font-size: 2vw; } }
      .gallery .gallery-wrapper .row img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-width: 0;
        min-height: 0; }

@media only screen and (max-width: 767px) {
  .location {
    padding: 3.4vw 6.6vw 6.6vw 6.6vw !important; } }

.location .heading-wrapper {
  width: 100%;
  height: 100vh;
  margin-bottom: 1vw; }
  @media only screen and (max-width: 767px) {
    .location .heading-wrapper {
      height: auto; } }
  .location .heading-wrapper #map {
    width: 100%;
    height: 75%; }
    @media only screen and (max-width: 767px) {
      .location .heading-wrapper #map {
        height: 50vh; } }
  .location .heading-wrapper .description {
    vertical-align: text-top;
    display: flex;
    align-items: baseline;
    max-width: 660px;
    margin-right: 5vw;
    margin-top: 2vw;
    margin-bottom: 1.5vw; }
    @media only screen and (max-width: 767px) {
      .location .heading-wrapper .description {
        flex-direction: column;
        margin-top: 4.6vw;
        margin-bottom: 4.6vw; } }
    .location .heading-wrapper .description .name {
      font-family: "Sackers Gothic";
      font-size: 11.5pt;
      letter-spacing: 1.5px;
      line-height: 1;
      flex-shrink: 0;
      margin-right: 3vw; }
      @media only screen and (max-width: 767px) {
        .location .heading-wrapper .description .name {
          font-size: 2.6vw;
          margin-right: 0;
          margin-top: 2vw;
          margin-bottom: 2vw; } }
      .location .heading-wrapper .description .name.chi {
        font-weight: bold;
        font-size: 13pt;
        letter-spacing: 5px;
        line-height: 2.2; }
        @media only screen and (max-width: 767px) {
          .location .heading-wrapper .description .name.chi {
            font-weight: normal;
            font-size: 3.2vw; } }

.location .content-wrapper {
  width: 100%;
  display: none; }
  .location .content-wrapper .line {
    margin-top: 20px;
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      .location .content-wrapper .line {
        margin-top: 4.3vw;
        margin-bottom: 4.3vw; } }
  .location .content-wrapper .small-heading {
    font-family: "Sackers Gothic";
    font-weight: 500;
    font-size: 9.5pt;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 18px; }
    @media only screen and (max-width: 767px) {
      .location .content-wrapper .small-heading {
        font-size: 2.6vw;
        margin-bottom: 6vw; } }
    .location .content-wrapper .small-heading.chi {
      font-weight: bold;
      font-size: 11pt;
      letter-spacing: 1.5px; }
      @media only screen and (max-width: 767px) {
        .location .content-wrapper .small-heading.chi {
          font-size: 2.9vw; } }
  .location .content-wrapper .arrow-wrapper img {
    cursor: pointer; }
  .location .content-wrapper .hide {
    display: none; }
  .location .content-wrapper.show-on-desktop-only .row {
    display: flex;
    margin-bottom: 3.7vw; }
    .location .content-wrapper.show-on-desktop-only .row .picture {
      height: 39vw;
      flex: 1 1 660px; }
      .location .content-wrapper.show-on-desktop-only .row .picture img, .location .content-wrapper.show-on-desktop-only .row .picture div {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex: 1 1 0;
        min-width: 0; }
    .location .content-wrapper.show-on-desktop-only .row .multiple {
      height: 40vw;
      display: flex;
      flex: 1 1 660px; }
      .location .content-wrapper.show-on-desktop-only .row .multiple > img:not(:last-child), .location .content-wrapper.show-on-desktop-only .row .multiple > div:not(:last-child) {
        margin-right: 1vw; }
      .location .content-wrapper.show-on-desktop-only .row .multiple img, .location .content-wrapper.show-on-desktop-only .row .multiple div {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex: 1 1 0;
        min-width: 0; }
    .location .content-wrapper.show-on-desktop-only .row > :first-child {
      margin-right: 1.5vw; }
    .location .content-wrapper.show-on-desktop-only .row .description {
      width: 20%;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-self: stretch;
      flex: 1 1 151px; }
    .location .content-wrapper.show-on-desktop-only .row .arrow-wrapper {
      margin-top: 5px; }
      .location .content-wrapper.show-on-desktop-only .row .arrow-wrapper img {
        height: 10px;
        padding: 2px; }
  .location .content-wrapper.show-on-mobile-only .row .description {
    margin-bottom: 4.3vw; }
  .location .content-wrapper.show-on-mobile-only .row .arrow-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4.3vw; }
    .location .content-wrapper.show-on-mobile-only .row .arrow-wrapper img {
      height: 3.2vw;
      padding: 2px; }
  .location .content-wrapper.show-on-mobile-only .row .picture {
    margin-bottom: 4.3vw; }
    .location .content-wrapper.show-on-mobile-only .row .picture img, .location .content-wrapper.show-on-mobile-only .row .picture div {
      width: 100%;
      height: 100%;
      object-fit: cover;
      flex: 1 1 0;
      min-width: 0; }
  .location .content-wrapper.show-on-mobile-only .row.first {
    margin-bottom: 15vw; }
    .location .content-wrapper.show-on-mobile-only .row.first .picture {
      height: 52vw; }
  .location .content-wrapper.show-on-mobile-only .row.second .picture {
    height: 57vw; }
  .location .content-wrapper.show-on-mobile-only .row.second .mixin {
    display: flex; }
    .location .content-wrapper.show-on-mobile-only .row.second .mixin .line {
      margin-top: 0; }
    .location .content-wrapper.show-on-mobile-only .row.second .mixin > div {
      flex: 1 1 0; }
      .location .content-wrapper.show-on-mobile-only .row.second .mixin > div:first-child {
        margin-right: 4vw;
        display: flex;
        flex-direction: column; }
        .location .content-wrapper.show-on-mobile-only .row.second .mixin > div:first-child .description {
          align-self: stretch;
          flex: 1 0 0; }
  .location .content-wrapper.show-on-mobile-only .row.second #map-bottom {
    height: 52vw; }

.restaurant {
  padding-top: 110px !important;
  padding-bottom: 95px !important;
  letter-spacing: 1.5px;
  line-height: 2.2; }
  @media only screen and (max-width: 767px) {
    .restaurant {
      padding: 16vw 6.6vw 6.6vw 6.6vw !important; } }
  .restaurant .heading-wrapper {
    width: 70%;
    margin-bottom: 10vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (max-width: 767px) {
      .restaurant .heading-wrapper {
        font-size: 3.2vw; } }
    .restaurant .heading-wrapper .title {
      font-weight: normal;
      font-size: 13pt; }
      @media only screen and (max-width: 767px) {
        .restaurant .heading-wrapper .title {
          font-size: 3.2vw; } }
      .restaurant .heading-wrapper .title.chi {
        font-family: "Sackers Gothic";
        font-size: 13pt;
        letter-spacing: 1.5px; }
        @media only screen and (max-width: 767px) {
          .restaurant .heading-wrapper .title.chi {
            font-size: 3.2vw; } }
    .restaurant .heading-wrapper .logo {
      width: 6vw;
      margin-bottom: 4vw; }
      @media only screen and (max-width: 767px) {
        .restaurant .heading-wrapper .logo {
          width: 15vw; } }
    .restaurant .heading-wrapper .sub-title {
      font-size: 10.5pt;
      line-height: 2;
      margin: auto; }
      @media only screen and (max-width: 767px) {
        .restaurant .heading-wrapper .sub-title {
          font-size: 3vw; } }
      .restaurant .heading-wrapper .sub-title.chi {
        font-size: 12pt;
        font-weight: bold; }
        @media only screen and (max-width: 767px) {
          .restaurant .heading-wrapper .sub-title.chi {
            font-size: 2.7vw;
            font-weight: normal; } }
  .restaurant .content-wrapper .preview {
    width: 100%;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .restaurant .content-wrapper .preview {
        flex-wrap: wrap; }
        .restaurant .content-wrapper .preview:nth-child(odd) {
          flex-wrap: wrap-reverse; } }
    .restaurant .content-wrapper .preview .picture {
      width: 64.5vw;
      height: 39vw;
      display: flex;
      flex: 660 660 660px; }
      @media only screen and (max-width: 767px) {
        .restaurant .content-wrapper .preview .picture {
          height: 52.7vw;
          margin-bottom: 7.2vw; } }
      .restaurant .content-wrapper .preview .picture img {
        width: 0;
        height: 100%;
        object-fit: cover;
        flex: 1 1;
        min-width: 0; }
      .restaurant .content-wrapper .preview .picture > img:not(:last-child) {
        margin-right: 1.5vw; }
    .restaurant .content-wrapper .preview .picture.multiple {
      height: 52.2vw; }
      @media only screen and (max-width: 767px) {
        .restaurant .content-wrapper .preview .picture.multiple {
          height: 60vw; } }
    .restaurant .content-wrapper .preview .description {
      width: 14.6vw;
      min-width: 150px;
      flex: 151 151 151px; }
      @media only screen and (max-width: 767px) {
        .restaurant .content-wrapper .preview .description {
          display: flex; }
          .restaurant .content-wrapper .preview .description > .line {
            display: none; }
          .restaurant .content-wrapper .preview .description > div {
            flex: 1 1 0;
            margin-right: 5vw; }
            .restaurant .content-wrapper .preview .description > div:not(:first-child) {
              margin-left: 1.5vw; } }
      .restaurant .content-wrapper .preview .description.chi {
        font-weight: bold; }
      .restaurant .content-wrapper .preview .description .line {
        margin-top: 20px;
        margin-bottom: 20px; }
      .restaurant .content-wrapper .preview .description .small-heading {
        font-family: "Sackers Gothic";
        font-size: 9.5pt;
        letter-spacing: 1.5px;
        line-height: 1.5;
        margin-bottom: 18px; }
        @media only screen and (max-width: 767px) {
          .restaurant .content-wrapper .preview .description .small-heading {
            font-size: 2.6vw; } }
        .restaurant .content-wrapper .preview .description .small-heading.chi {
          font-size: 12.5pt;
          font-weight: bold; }
          @media only screen and (max-width: 767px) {
            .restaurant .content-wrapper .preview .description .small-heading.chi {
              font-weight: normal;
              font-size: 3.2vw; } }
    .restaurant .content-wrapper .preview > div:first-child {
      margin-right: 3.5vw; }
      @media only screen and (max-width: 767px) {
        .restaurant .content-wrapper .preview > div:first-child {
          margin-right: 0px; } }
  .restaurant .content-wrapper .preview:not(:last-child) {
    margin-bottom: 3.7vw; }
    @media only screen and (max-width: 767px) {
      .restaurant .content-wrapper .preview:not(:last-child) {
        margin-bottom: 7.2vw; } }
  .restaurant .footer {
    margin-top: 150px;
    font-size: 10.5pt;
    letter-spacing: 1.5px;
    text-align: center; }
    .restaurant .footer .eng-font {
      font-size: 10.5pt;
      letter-spacing: 1px; }
    @media only screen and (max-width: 767px) {
      .restaurant .footer {
        margin-bottom: 7.2vw;
        font-size: 2.4vw; } }
    .restaurant .footer .logo-small {
      width: 3vw;
      margin-bottom: 1vw; }
      .restaurant .footer .logo-small img {
        width: 100%; }
      @media only screen and (max-width: 767px) {
        .restaurant .footer .logo-small {
          width: 6.6vw; } }
    .restaurant .footer a {
      font-size: 10.5pt; }
      @media only screen and (max-width: 767px) {
        .restaurant .footer a {
          font-size: 2.4vw; } }

.contact-us {
  display: flex;
  padding: 78px 18vw 28px 18vw !important; }
  @media only screen and (max-width: 767px) {
    .contact-us {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important;
      flex-direction: column;
      font-size: 3vw; } }
  .contact-us .heading {
    font-family: "Sackers Gothic";
    color: #872d2c;
    display: none; }
    @media only screen and (max-width: 767px) {
      .contact-us .heading {
        display: block; } }
    @media only screen and (max-width: 767px) {
      .contact-us .heading.chi {
        font-weight: bold;
        font-size: 3.1vw; } }
  .contact-us .general-contact .address, .contact-us .press-contact .address {
    font-size: 9.5pt;
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      .contact-us .general-contact .address, .contact-us .press-contact .address {
        font-size: 3vw;
        margin-bottom: 4.5vw; } }
    .contact-us .general-contact .address.chi, .contact-us .press-contact .address.chi {
      font-size: 10.5pt;
      font-weight: bold;
      letter-spacing: 2px; }
      @media only screen and (max-width: 767px) {
        .contact-us .general-contact .address.chi, .contact-us .press-contact .address.chi {
          font-size: 3.2vw; } }
  .contact-us .general-contact .small-heading, .contact-us .press-contact .small-heading {
    font-size: 9.5pt;
    text-transform: uppercase; }
    @media only screen and (max-width: 767px) {
      .contact-us .general-contact .small-heading, .contact-us .press-contact .small-heading {
        font-size: 3vw; } }
    .contact-us .general-contact .small-heading.chi, .contact-us .press-contact .small-heading.chi {
      font-size: 10.5pt; }
      @media only screen and (max-width: 767px) {
        .contact-us .general-contact .small-heading.chi, .contact-us .press-contact .small-heading.chi {
          font-weight: bold;
          font-size: 2.7vw; } }
  .contact-us .general-contact > div, .contact-us .press-contact > div {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      .contact-us .general-contact > div, .contact-us .press-contact > div {
        margin-bottom: 4.5vw; } }
  .contact-us .general-contact {
    margin-right: 4vw;
    width: 17vw;
    min-width: 118px; }
    @media only screen and (max-width: 767px) {
      .contact-us .general-contact {
        width: 100%; } }
  .contact-us .press-contact {
    flex-grow: 1; }
  .contact-us .social {
    padding: 5px 5px 6.6vw 5px;
    width: 22.8vw;
    justify-content: space-between;
    box-sizing: border-box;
    bottom: 0;
    position: absolute;
    display: none; }
    .contact-us .social img {
      height: 100%;
      margin: auto; }
    @media only screen and (max-width: 767px) {
      .contact-us .social {
        display: flex; } }
    .contact-us .social div {
      width: 12px;
      height: 12px; }
      @media only screen and (max-width: 767px) {
        .contact-us .social div {
          width: 3.6vw;
          height: 3.6vw; } }

.promotion {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }
  @media only screen and (max-width: 767px) {
    .promotion {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important; } }
  .promotion .heading-wrapper {
    width: 100%;
    margin-bottom: 4vw; }
    .promotion .heading-wrapper .title {
      text-transform: uppercase; }
      .promotion .heading-wrapper .title.chi {
        font-size: 13.5pt;
        letter-spacing: 1.5px; }
        @media only screen and (max-width: 767px) {
          .promotion .heading-wrapper .title.chi {
            font-size: 3.4vw; } }
    .promotion .heading-wrapper .sub-title {
      width: 45%;
      font-size: 10.5pt;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .promotion .heading-wrapper .sub-title {
          width: 100%;
          font-size: 3vw; } }
      .promotion .heading-wrapper .sub-title.chi {
        line-height: 2.2; }
  .promotion .content-wrapper .preview {
    width: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: flex-end; }
    @media only screen and (max-width: 767px) {
      .promotion .content-wrapper .preview {
        flex-wrap: wrap; }
        .promotion .content-wrapper .preview:nth-child(even) {
          flex-wrap: wrap-reverse; } }
    .promotion .content-wrapper .preview:not(:last-child) {
      margin-bottom: 3.7vw; }
      @media only screen and (max-width: 767px) {
        .promotion .content-wrapper .preview:not(:last-child) {
          margin-bottom: 7.2vw; } }
    .promotion .content-wrapper .preview .picture {
      width: 64.5vw;
      height: 39vw;
      display: flex;
      flex: 660 660 660px; }
      @media only screen and (max-width: 767px) {
        .promotion .content-wrapper .preview .picture {
          height: 52.7vw;
          margin-bottom: 7.2vw; } }
      .promotion .content-wrapper .preview .picture img {
        width: 0;
        height: 100%;
        object-fit: cover;
        flex: 1 1;
        min-width: 0; }
      .promotion .content-wrapper .preview .picture > img:not(:last-child) {
        margin-right: 1.5vw; }
    .promotion .content-wrapper .preview .picture.multiple {
      height: 52.2vw; }
      @media only screen and (max-width: 767px) {
        .promotion .content-wrapper .preview .picture.multiple {
          height: 60vw; } }
    .promotion .content-wrapper .preview .description-wrapper {
      min-width: 150px;
      flex: 151 151 151px;
      max-width: 80%; }
      .promotion .content-wrapper .preview .description-wrapper .title {
        text-transform: uppercase; }
      .promotion .content-wrapper .preview .description-wrapper .description {
        min-width: 150px;
        flex: 151 151 151px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-self: stretch;
        margin-bottom: 20px; }
        .promotion .content-wrapper .preview .description-wrapper .description ul {
          line-height: 2.3;
          list-style: none;
          padding-left: 0;
          margin: 0; }
          .promotion .content-wrapper .preview .description-wrapper .description ul li {
            text-indent: -4pt;
            position: relative; }
            .promotion .content-wrapper .preview .description-wrapper .description ul li:before {
              content: "- "; }
    .promotion .content-wrapper .preview > div:first-child {
      margin-right: 3.5vw; }
      @media only screen and (max-width: 767px) {
        .promotion .content-wrapper .preview > div:first-child {
          margin-right: 0px; } }

.promotion-detail {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }
  @media only screen and (max-width: 767px) {
    .promotion-detail {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important; } }
  .promotion-detail .heading-wrapper {
    width: 100%;
    margin-bottom: 4vw; }
    .promotion-detail .heading-wrapper .title {
      text-transform: uppercase; }
      .promotion-detail .heading-wrapper .title.chi {
        font-size: 13.5pt;
        letter-spacing: 1.5px; }
        @media only screen and (max-width: 767px) {
          .promotion-detail .heading-wrapper .title.chi {
            font-size: 3.4vw; } }
    .promotion-detail .heading-wrapper .sub-title {
      width: 45%;
      font-size: 10.5pt;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .promotion-detail .heading-wrapper .sub-title {
          width: 100%;
          font-size: 3vw; } }
      .promotion-detail .heading-wrapper .sub-title.chi {
        line-height: 2.2; }
  .promotion-detail .content-wrapper .preview {
    width: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .promotion-detail .content-wrapper .preview {
        flex-wrap: wrap; }
        .promotion-detail .content-wrapper .preview:nth-child(even) {
          flex-wrap: wrap-reverse; } }
    .promotion-detail .content-wrapper .preview:not(:last-child) {
      margin-bottom: 3.7vw; }
      @media only screen and (max-width: 767px) {
        .promotion-detail .content-wrapper .preview:not(:last-child) {
          margin-bottom: 7.2vw; } }
    .promotion-detail .content-wrapper .preview .picture {
      width: 64.5vw;
      height: 73vw;
      display: -webkit-box;
      /* OLD - iOS 6-, Safari 3.1-6, BB7 */
      display: -ms-flexbox;
      /* TWEENER - IE 10 */
      display: -webkit-flex;
      /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
      display: flex;
      /* NEW, Spec - Firefox, Chrome, Opera */
      flex: 160 160 160px; }
      @media only screen and (max-width: 767px) {
        .promotion-detail .content-wrapper .preview .picture {
          height: 164.7vw;
		  flex: 660 660 660px;
          margin-bottom: 7.2vw; } }
      .promotion-detail .content-wrapper .preview .picture img {
        width: 0;
        object-fit: cover;
        flex: 1 1;
        min-width: 0; }
      .promotion-detail .content-wrapper .preview .picture > img:not(:last-child) {
        margin-right: 1.5vw; }
    .promotion-detail .content-wrapper .preview .picture.multiple {
      height: 52.2vw; }
      @media only screen and (max-width: 767px) {
        .promotion-detail .content-wrapper .preview .picture.multiple {
          height: 60vw; } }
    .promotion-detail .content-wrapper .preview .description-wrapper {
      min-width: 150px;
      flex: 151 151 151px;
      max-width: 80%; }
      @media only screen and (max-width: 767px) {
        .promotion-detail .content-wrapper .preview .description-wrapper {
          max-width: 100%; } }
      .promotion-detail .content-wrapper .preview .description-wrapper.no-image {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        /* NEW, Spec - Firefox, Chrome, Opera */
        justify-content: space-between;
        align-items: flex-start; }
        .promotion-detail .content-wrapper .preview .description-wrapper.no-image .privileges {
          margin-right: 60px; }
        @media only screen and (max-width: 767px) {
          .promotion-detail .content-wrapper .preview .description-wrapper.no-image {
            display: block; }
            .promotion-detail .content-wrapper .preview .description-wrapper.no-image .privileges {
              margin-right: 0; } }
      .promotion-detail .content-wrapper .preview .description-wrapper .privileges {
        float: right;
        width: 100%; }
        .promotion-detail .content-wrapper .preview .description-wrapper .privileges .title {
          font-size: 11pt; }
          @media only screen and (max-width: 767px) {
            .promotion-detail .content-wrapper .preview .description-wrapper .privileges .title {
              font-size: 3vw; } }
        .promotion-detail .content-wrapper .preview .description-wrapper .privileges .description {
          font-size: 10pt; }
          @media only screen and (max-width: 767px) {
            .promotion-detail .content-wrapper .preview .description-wrapper .privileges .description {
              font-size: 3.2vw; } }
      .promotion-detail .content-wrapper .preview .description-wrapper .daily-rate .description > div {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6, BB7 */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
        display: flex;
        /* NEW, Spec - Firefox, Chrome, Opera */
        justify-content: space-between; }
        .promotion-detail .content-wrapper .preview .description-wrapper .daily-rate .description > div > div {
          margin-right: 15px; }
      .promotion-detail .content-wrapper .preview .description-wrapper .title {
        text-transform: uppercase; }
    .promotion-detail .content-wrapper .preview > div:first-child {
      margin-right: 3.5vw; }
      @media only screen and (max-width: 767px) {
        .promotion-detail .content-wrapper .preview > div:first-child {
          margin-right: 0px; } }
  .promotion-detail .content-wrapper .description {
    min-width: 150px;
    flex: 151 151 151px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    justify-content: space-between;
    flex-direction: column;
    align-self: stretch;
    margin-bottom: 20px; }
    .promotion-detail .content-wrapper .description ul {
      line-height: 2.3;
      list-style: none;
      padding-left: 10px;
      margin: 0; }
      .promotion-detail .content-wrapper .description ul li {
        text-indent: -4pt;
        position: relative; }
        .promotion-detail .content-wrapper .description ul li:before {
          content: "- "; }

.promotion-detail-custom {
  padding-top: 70px !important;
  padding-bottom: 70px !important; }
  @media only screen and (max-width: 767px) {
    .promotion-detail-custom {
      padding: 3.4vw 6.6vw 6.6vw 6.6vw !important; } }
  .promotion-detail-custom .heading-wrapper {
    width: 100%;
    margin-bottom: 4vw; }
    .promotion-detail-custom .heading-wrapper .title {
      text-transform: uppercase; }
      .promotion-detail-custom .heading-wrapper .title.chi {
        font-size: 13.5pt;
        letter-spacing: 1.5px; }
        @media only screen and (max-width: 767px) {
          .promotion-detail-custom .heading-wrapper .title.chi {
            font-size: 3.4vw; } }
    .promotion-detail-custom .heading-wrapper .sub-title {
      width: 45%;
      font-size: 10.5pt;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .promotion-detail-custom .heading-wrapper .sub-title {
          width: 100%;
          font-size: 3vw; } }
      .promotion-detail-custom .heading-wrapper .sub-title.chi {
        line-height: 2.2; }
  .promotion-detail-custom .content-wrapper .preview {
    width: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .promotion-detail-custom .content-wrapper .preview {
        flex-wrap: wrap; }
        .promotion-detail-custom .content-wrapper .preview:nth-child(even) {
          flex-wrap: wrap-reverse; } }
    .promotion-detail-custom .content-wrapper .preview:not(:last-child) {
      margin-bottom: 3.7vw; }
      @media only screen and (max-width: 767px) {
        .promotion-detail-custom .content-wrapper .preview:not(:last-child) {
          margin-bottom: 7.2vw; } }
    .promotion-detail-custom .content-wrapper .preview .picture {
      width: 64.5vw;
      height: 39vw;
      display: flex;
      flex: 660 660 660px; }
      @media only screen and (max-width: 767px) {
        .promotion-detail-custom .content-wrapper .preview .picture {
          height: 52.7vw;
          margin-bottom: 7.2vw; } }
      .promotion-detail-custom .content-wrapper .preview .picture img {
        width: 0;
        height: 100%;
        object-fit: cover;
        flex: 1 1;
        min-width: 0; }
      .promotion-detail-custom .content-wrapper .preview .picture > img:not(:last-child) {
        margin-right: 1.5vw; }
    .promotion-detail-custom .content-wrapper .preview .picture.multiple {
      height: 52.2vw; }
      @media only screen and (max-width: 767px) {
        .promotion-detail-custom .content-wrapper .preview .picture.multiple {
          height: 60vw; } }
    .promotion-detail-custom .content-wrapper .preview > div:first-child {
      margin-right: 3.5vw; }
      @media only screen and (max-width: 767px) {
        .promotion-detail-custom .content-wrapper .preview > div:first-child {
          margin-right: 0px; } }
  .promotion-detail-custom .content-wrapper .description {
    min-width: 150px;
    flex: 151 151 151px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-self: stretch;
    margin-bottom: 20px; }
    .promotion-detail-custom .content-wrapper .description ul {
      line-height: 2.3;
      list-style: none;
      padding-left: 0;
      margin: 0; }
      .promotion-detail-custom .content-wrapper .description ul li {
        text-indent: -4pt;
        position: relative; }
        .promotion-detail-custom .content-wrapper .description ul li:before {
          content: "- "; }


@media only screen and (max-width: 767px) {
	.promotion-detail .description-wrapper {
    display: none;
	}
}