/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
.flex_verticle_center,
#rooms #carousel-room .carousel-caption {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex_verticle_center_important {
  display: -webkit-flex !important;
  display: flex !important;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}

.mask20,
.before_mask20:before {
  background: rgba(0, 0, 0, 0.2);
}

.before_mask20:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.default_bg_cover,
#rooms #carousel-room .carousel-inner .item .img,
#rooms #carousel-room .carousel-control {
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.a_btnlike {
  display: block;
  width: 60px;
  height: 24px;
  border: 1px solid #4b4b4b;
  color: #4b4b4b;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.a_btnlike:hover {
  color: #000;
  border: 1px solid #000;
  text-decoration: none;
}

.blur_img {
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=$blur_q, MakeShadow=false);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.default_list_bg_img {
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

@-moz-keyframes duckstay_dance {
  25% {
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -moz-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  75% {
    -moz-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  100% {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes duckstay_dance {
  25% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes duckstay_dance {
  25% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  75% {
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  100% {
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-moz-keyframes duckstay_bounce_up {
  0% {
    top: 74px;
  }

  25% {
    top: 3px;
  }

  50% {
    top: 14px;
  }

  75% {
    top: 8px;
  }

  100% {
    top: 10px;
  }
}

@-webkit-keyframes duckstay_bounce_up {
  0% {
    top: 74px;
  }

  25% {
    top: 3px;
  }

  50% {
    top: 14px;
  }

  75% {
    top: 8px;
  }

  100% {
    top: 10px;
  }
}

@keyframes duckstay_bounce_up {
  0% {
    top: 74px;
  }

  25% {
    top: 3px;
  }

  50% {
    top: 14px;
  }

  75% {
    top: 8px;
  }

  100% {
    top: 10px;
  }
}

@-moz-keyframes duckstay_bounce_up_recover {
  50% {
    top: 10px;
  }

  75% {
    top: 8px;
  }

  100% {
    top: 74px;
  }
}

@-webkit-keyframes duckstay_bounce_up_recover {
  50% {
    top: 10px;
  }

  75% {
    top: 8px;
  }

  100% {
    top: 74px;
  }
}

@keyframes duckstay_bounce_up_recover {
  50% {
    top: 10px;
  }

  75% {
    top: 8px;
  }

  100% {
    top: 74px;
  }
}

.gray_bg_cell .gray_bg_content {
  background-image: url(../images/bg_main.png);
  background-position: center center;
}

.gray_bg_cell:before {
  display: block;
  content: '';
  height: 105px;
  background-image: url(../images/bg_header.png);
  background-position: left top;
  background-repeat: repeat-x;
}

.gray_bg_cell:after {
  display: block;
  content: '';
  height: 105px;
  background-image: url(../images/bg_bottom.png);
  background-position: right bottom;
  background-repeat: repeat-x;
}

.decorate_figure {
  position: relative;
  width: 100%;
  height: 0;
}

.decorate_figure>img {
  position: absolute;
}

.decorate_figure>.img_cell {
  position: absolute;
  overflow: hidden;
}

@-moz-keyframes duckstay_bounce {
  0% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  50% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }

  75% {
    -moz-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes duckstay_bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  75% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes duckstay_bounce {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  50% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  75% {
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

#rooms {
  padding-top: 240px;
  padding-bottom: 0;
}

#rooms h2 {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 24px;
}

#rooms h3 {
  display: block;
  height: 240px;
  margin-top: 40px;
  background-position: center 0;
  background-repeat: no-repeat;
  -moz-background-size: 60px 240px;
  -o-background-size: 60px 240px;
  -webkit-background-size: 60px 240px;
  background-size: 60px 240px;
  text-indent: -99999px;
}

#rooms .brief {
  text-align: center;
  margin-top: 20px;
}

#rooms #carousel-room {
  margin-top: 64px;
  height: 582px;
  overflow: hidden;
}

#rooms #carousel-room .carousel-indicators li {
  width: 28px;
  height: 28px;
  background-image: url(../../images/ico_roomsTab_28x28.svg);
  background-position: 0 -28px;
  background-repeat: no-repeat;
  -moz-background-size: 28px 56px;
  -o-background-size: 28px 56px;
  -webkit-background-size: 28px 56px;
  background-size: 28px 56px;
  background-color: transparent;
  border: 0;
}

#rooms #carousel-room .carousel-indicators li:hover {
  background-position: 0 0;
}

#rooms #carousel-room .carousel-inner {
  height: 100%;
}

#rooms #carousel-room .carousel-inner .item {
  height: 100%;
}

#rooms #carousel-room .carousel-inner .item .img {
  height: 100%;
}

#rooms #carousel-room .carousel-inner .item:after {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background-color: rgba(0, 0, 0, 0.2);
}

#rooms #carousel-room .carousel-caption {
  height: 100%;
  padding: 0;
  margin: 0;
  bottom: 0;
  top: 0;
}

#rooms #carousel-room .carousel-caption .carousel-caption-inner {
  padding-left: 0;
}

#rooms #carousel-room .carousel-caption .carousel-caption-inner h4 {
  font-size: 24px;
  font-weight: 700;
  /* line-height: 3; */
  text-align: left;
}

#rooms #carousel-room .carousel-control {
  width: 40px;
  height: 60px;
  margin: auto;
  top: 0;
  bottom: 0;
}

#rooms #carousel-room .carousel-control.left {
  background-image: url(../../images/btn_L_40x60.svg);
  -moz-background-size: 40px 60px;
  -o-background-size: 40px 60px;
  -webkit-background-size: 40px 60px;
  background-size: 40px 60px;
}

#rooms #carousel-room .carousel-control.right {
  background-image: url(../../images/btn_R_40x60.svg);
  -moz-background-size: 40px 60px;
  -o-background-size: 40px 60px;
  -webkit-background-size: 40px 60px;
  background-size: 40px 60px;
}

#rooms .slogan_xs {
  padding: 40px 10px;
}

#rooms .slogan_xs h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  margin-bottom: 30px;
}

#rooms .slogan_xs .html_editor_shower p {
  text-align: center;
}

#rooms #room_content {
  display: -webkit-flex;
  display: flex;
  margin-top: 2px;
}

#rooms #room_content #sidebar {
  width: 300px;
  float: left;
}

#rooms #room_content #sidebar img {
  display: block;
  width: 100%;
}

#rooms #room_content #main {
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
}

#rooms #room_content #main .table {
  display: table;
  width: 690px;
  /* width: 660px; */
  margin: 100px auto;
  border-collapse: separate;
  border-spacing: 20px;
}

#rooms #room_content #main .table .tr {
  display: table-row;
}

#rooms #room_content #main .table .tr .td-l,
#rooms #room_content #main .table .tr .td-r {
  display: table-cell;
  border-bottom: 1px solid #4b4b4b;
  padding-top: 0;
  padding-bottom: 20px;
}

#rooms #room_content #main .table .tr .td-l {
  vertical-align: middle;
  width: 140px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

#rooms #room_content #main .table .tr .td-r {
  width: 460px;
  text-align: left;
  margin-left: 20px;
}

#rooms #room_content #main .table .tr .td-r.html_editor_shower ul {
  list-style-type: circle;
}

#rooms #room_content #main .table .tr .td-r.html_editor_shower * {
  line-height: 1.5;
}

#rooms #room_content #main .table .tr .td-r.td-price.html_editor_shower p {
  line-height: 1;
}

#rooms #room_content:after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  line-height: 0;
  overflow: hidden;
}

#rooms .container-fluid {
  margin-top: 100px;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

#rooms .container-fluid .row {
  margin-left: -1px;
  margin-right: -1px;
  padding-left: 0;
  padding-right: 0;
}

#rooms .container-fluid .row .col {
  margin: 0;
  /* padding-left: 1px; */
  /* padding-right: 1px; */
  padding: 1px;
}

#rooms .container-fluid .row .col .room_type {
  position: relative;
}

#rooms .container-fluid .row .col .room_type .room_type_bg {
  display: block;
  width: 100%;
}

#rooms .container-fluid .row .col .room_type .room_contain {
  position: absolute;
  width: 100%;
  height: 24px;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  z-index: 3;
  color: #fff;
}

#rooms .container-fluid .row .col .room_type .rooms_container {
  position: absolute;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 4;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

#rooms .container-fluid .row .col .room_type .rooms_container .room_a {
  /* height: 360px; */
  /* height: 400px; */
  height: 420px;
  color: #fff;
  font-size: 24px;
  width: 50px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 60px;
  display: block;
  background-color: rgba(158, 158, 158, 0.7);
  /* width: 60px; */
  /* width: 100%;
  height: 60px; */
  /* background-position: 0 0;
  background-repeat: no-repeat;
  -moz-background-size: 60px 480px;
  -o-background-size: 60px 480px;
  -webkit-background-size: 60px 480px;
  background-size: 60px 480px; */
}

#rooms .container-fluid .row .col .room_type .rooms_container .room_a:hover {
  background-color: rgba(158, 158, 158, 1);
}

/* #rooms .container-fluid .row .col .room_type .rooms_container .room_a:hover,
#rooms .container-fluid .row .col .room_type .rooms_container .room_a:active,
#rooms .container-fluid .row .col .room_type .rooms_container .room_a.active {
  background-position: 0 -240px;
} */

/* #rooms .container-fluid .row .col .room_type .rooms_container .room_a#room_a0 {
  background-image: url(../../images/btn_rooms01_60x240.svg);
} */

/* #rooms .container-fluid .row .col .room_type .rooms_container .room_a#room_a1 {
  background-image: url(../../images/btn_rooms02_60x240.svg);
}

#rooms .container-fluid .row .col .room_type .rooms_container .room_a#room_a2 {
  background-image: url(../../images/btn_rooms03_60x240.svg);
}

#rooms .container-fluid .row .col .room_type .rooms_container .room_a#room_a3 {
  background-image: url(../../images/btn_rooms04_60x240.svg);
}

#rooms .container-fluid .row .col .room_type .rooms_container .room_a#room_a4 {
  background-image: url(../../images/btn_rooms05_60x240.svg);
}

#rooms .container-fluid .row .col .room_type .rooms_container .room_a#room_a5 {
  background-image: url(../../images/btn_rooms06_60x240.svg);
}

#rooms .container-fluid .row .col .room_type .rooms_container .room_a#room_a6 {
  background-image: url(../../images/btn_rooms07_60x240.svg);
} */

#rooms .container-fluid .row .col .room_type .rooms_container .room_a+.room_a {
  margin-left: 20px;
}

#rooms .container-fluid .row .col .room_type:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

#rooms .container-fluid .row .col .room_type:hover .room_contain {
  display: none;
}

#rooms .container-fluid .row .col .room_type:hover .rooms_container {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

#rooms .container-fluid.mobile .row .col .room_type .room_contain {
  display: none;
  /* height: 7%;
  top: 3%;
  bottom: auto; */
}

#rooms .container-fluid.mobile .row .col .room_type .rooms_container {
  /* height: 90%;
  top: 10%; */
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/* #rooms .container-fluid.mobile .row .col .room_type:hover .room_contain {
  display: block;
} */

/* #rooms .container-fluid.mobile .row .col .room_type:hover .rooms_container {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
} */

#rooms .container-fluid .row .room_a_sp {
  text-align: center;
  font-size: 18px;
  line-height:40px;
  height: 40px;
  border: none;
  display: block;
  background-color: rgba(158, 158, 158, 0.7);
  width: 90%;
  margin: 10px auto;
  float: none;
  color: #fff;
  padding: 0 5px;
}

#rooms .container-fluid .row .room_a_sp:hover,
#rooms .container-fluid .row .room_a_sp:focus,
#rooms .container-fluid .row .room_a_sp:active {
  border: 1px solid #fff;
}

/*md only*/
@media (min-width: 992px) and (max-width: 1199px) {
  #rooms #carousel-room {
    height: 500px;
  }

  #rooms #carousel-room .carousel-inner {
    height: 100%;
  }

  #rooms #carousel-room .carousel-inner .item {
    height: 100%;
  }

  #rooms #carousel-room .carousel-inner .item .img {
    height: 100%;
  }
}

/*sm xs*/
@media (max-width: 991px) {
  #rooms {
    padding-top: 100px;
  }

  #rooms #room_content {
    display: block;
  }

  #rooms #room_content #sidebar {
    width: 100%;
    float: none;
  }

  #rooms #room_content #sidebar img {
    display: inline-block;
    width: 50%;
  }
}

/*sm only*/
@media (min-width: 768px) and (max-width: 991px) {
  #rooms #carousel-room {
    height: 450px;
  }

  #rooms #carousel-room .carousel-inner {
    height: 100%;
  }

  #rooms #carousel-room .carousel-inner .item {
    height: 100%;
  }

  #rooms #carousel-room .carousel-inner .item .img {
    height: 100%;
  }

  #rooms .container-fluid.mobile .row .col .room_type .room_contain {
    display: none;
    /* height: 7%;
    top: 3%;
    bottom: auto; */
  }

  /* #rooms .container-fluid.mobile .row .col .room_type .rooms_container {
    height: 90%;
    top: 10%;
  } */

  /* #rooms .container-fluid.mobile .row .col .room_type .rooms_container .room_a {
    width: 40px;
    height: 160px;
    -moz-background-size: 40px 320px;
    -o-background-size: 40px 320px;
    -webkit-background-size: 40px 320px;
    background-size: 40px 320px;
  }

  #rooms .container-fluid.mobile .row .col .room_type .rooms_container .room_a:hover,
  #rooms .container-fluid.mobile .row .col .room_type .rooms_container .room_a:active,
  #rooms .container-fluid.mobile .row .col .room_type .rooms_container .room_a.active {
    background-position: 0 -160px;
  } */

  /* #rooms .container-fluid.mobile .row .col .room_type:hover .room_contain {
    display: block;
  }

  #rooms .container-fluid.mobile .row .col .room_type:hover .rooms_container {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  } */
}

/* xs */
@media only screen and (max-width: 767px) {
  .section_header {
    font-size: 21px;
    line-height: 1;
  }

  .section_header span:before,
  .section_header span:after {
    display: none;
  }

  #rooms {
    padding-bottom: 100px;
  }

  #rooms #carousel-room {
    height: auto;
  }

  #rooms #carousel-room .carousel-inner {
    height: auto;
  }

  #rooms #carousel-room .carousel-inner .item {
    height: auto;
  }

  #rooms #carousel-room .carousel-inner .item .img {
    height: 0;
    padding-bottom: 66%;
  }

  #rooms #room_content #main {
    display: block;
  }

  #rooms #room_content #main .table {
    display: block;
    width: auto;
    margin: 40px 10px;
  }

  #rooms #room_content #main .table .tr {
    display: block;
  }

  #rooms #room_content #main .table .tr .td-l,
  #rooms #room_content #main .table .tr .td-r {
    display: block;
  }

  #rooms #room_content #main .table .tr .td-l {
    vertical-align: middle;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    padding-top: 40px;
    padding-bottom: 10px;
  }

  #rooms #room_content #main .table .tr .td-r {
    width: 100%;
    text-align: left;
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #9e9e9e;
  }

  #rooms #room_content #main .table .tr .td-price {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  #rooms #room_content #main .table .tr .td-price .html_editor_shower span.html_wordsize2 {
    font-size: 21px;
  }

  #rooms #room_content:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
    line-height: 0;
    overflow: hidden;
  }

  #rooms .container-fluid,
  #rooms .container-fluid.mobile {
    margin-top: 40px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
  }

  #rooms .container-fluid .row,
  #rooms .container-fluid.mobile .row {
    margin-left: 0;
    margin-right: 0;
  }

  #rooms .container-fluid .row .col,
  #rooms .container-fluid.mobile .row .col {
    padding-left: 0;
    padding-right: 0;
    margin-top: 2px;
  }

  #rooms .container-fluid .row .room_a_sp,
  #rooms .container-fluid.mobile .row .room_a_sp {
    margin: 2px auto;
  }

  #rooms .container-fluid .row .col .room_type .room_contain,
  #rooms .container-fluid.mobile .row .col .room_type .room_contain {
    font-size: 21px;
  }
}