@charset "UTF-8";
/* Magnific Popup CSS */
/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog,
.my-mfp-zoom-in.mfp-ready .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog,
.my-mfp-zoom-in.mfp-removing .mfp-iframe-scaler {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.new-houses-v2 {
  background-color: #3d3935;
  padding: 80px 0;
}
.new-houses-v2 .container .row .single-house {
  overflow: hidden;
  margin-bottom: 15px;
}
.new-houses-v2 .container .row .single-house .photo {
  text-decoration: none;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.new-houses-v2 .container .row .single-house .photo:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
  display: block;
}
.new-houses-v2 .container .row .single-house .desc {
  padding: 40px 50px;
  background: #ffffff;
  height: 100%;
}
@media (max-width: 480px) {
  .new-houses-v2 .container .row .single-house .desc {
    padding: 25px 25px;
  }
}
.new-houses-v2 .container .row .single-house .desc .name {
  text-decoration: none;
  color: #3d3935;
  font-size: 22px;
  font-weight: 600;
  line-height: 33.44px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin-bottom: 20px;
}
.new-houses-v2 .container .row .single-house .desc p {
  color: #9c9c9c;
  font-size: 13px;
  font-weight: 400;
  line-height: 25.81px;
  letter-spacing: 0.75px;
}
.new-houses-v2 .container .row .single-house .desc .more {
  text-decoration: none;
  color: #b58a61;
  border: 2px solid #b58a61;
  transition: ease all 0.3s;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  padding: 6px 20px 6px 10px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
  transition: ease all 0.3s;
}

@media (max-width: 768px) {
  .page-template-template-nameliai-2 .info-block .one-info-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .page-template-template-nameliai-2 .info-block .one-info-box:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .page-template-template-nameliai-2 .info-block .one-info-box .text-side {
    order: 1;
  }
}
@media (max-width: 768px) {
  .page-template-template-nameliai-2 .info-block .one-info-box .photo-side {
    order: 2;
  }
}
@media (max-width: 768px) {
  .page-template-template-nameliai-2 .info-block .one-info-box .photo-side img {
    width: 100%;
  }
}

.new-house-v2 {
  padding: 80px 0;
}
.new-house-v2 .container .row.top-part {
  margin: 0 0 60px;
}
@media (max-width: 1024px) {
  .new-house-v2 .container .row.top-part .left .gallery {
    margin: 0 0 30px;
  }
}
@media (max-width: 480px) {
  .new-house-v2 .container .row.top-part .left .gallery {
    margin: 0 0 24px;
  }
}
.new-house-v2 .container .row.top-part .left .gallery .photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  text-decoration: none;
}
.new-house-v2 .container .row.top-part .left .gallery .photo:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.new-house-v2 .container .row.top-part .left .more-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 30px;
}
@media (max-width: 480px) {
  .new-house-v2 .container .row.top-part .left .more-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 24px;
  }
}
.new-house-v2 .container .row.top-part .left .more-gallery a {
  display: block;
  text-decoration: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.new-house-v2 .container .row.top-part .left .more-gallery a:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
}
.new-house-v2 .container .row.top-part .right .desc {
  margin: 0 0 60px;
}
.new-house-v2 .container .row.top-part .right .desc p {
  margin-bottom: 30px;
  color: #9c9c9c;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.81px;
  letter-spacing: 0.75px;
}
.new-house-v2 .container .row.top-part .right .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 30px;
}
.new-house-v2 .container .row.top-part .right .features .single-feature img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.new-house-v2 .container .row.top-part .right .features .single-feature span {
  color: #b68b62;
  font-size: 13px;
  font-weight: 600;
  line-height: 17px;
  text-transform: uppercase;
  letter-spacing: 1.95px;
  display: block;
  text-align: center;
  margin: 16px 0 0;
}
.new-house-v2 .container .row.bottom-part h2 {
  text-align: center;
  color: #3d3935;
  font-size: 21px;
  font-weight: 600;
  line-height: 33.43px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin-bottom: 40px;
}
.new-house-v2 .container .row.bottom-part .reservation input[type=text],
.new-house-v2 .container .row.bottom-part .reservation input[type=number],
.new-house-v2 .container .row.bottom-part .reservation select {
  padding: 6px 20px 6px 10px;
  border-radius: 2px;
  line-height: 24px;
  border: 2px solid #9c9c9c;
}
.new-house-v2 .container .row.bottom-part .reservation input[type=submit] {
  text-decoration: none;
  color: #b58a61;
  border: 2px solid #b58a61;
  transition: ease all 0.3s;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  padding: 6px 20px 6px 10px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  transition: ease all 0.3s;
  background: none;
  cursor: pointer;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-search-no-result,
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-searching {
  margin: 16px 0 0;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-title-search-form {
  margin: 0 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-search-fields label {
  margin: 0 0 8px;
}
@media (max-width: 531px) {
  .new-house-v2 .container .row.bottom-part .reservation .hb-search-fields label {
    margin: 16px 0 8px;
  }
}
@media (max-width: 531px) {
  .new-house-v2 .container .row.bottom-part .reservation .hb-search-fields .hb-search-submit-wrapper {
    margin: 24px 0 0;
  }
}
@media (max-width: 531px) {
  .new-house-v2 .container .row.bottom-part .reservation .hb-change-search-wrapper {
    margin: 24px 0 0;
  }
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list {
  margin: 24px auto 0;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list .hb-title.hb-title-select,
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list .hb-title.hb-title-extra {
  margin: 8px 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list .hb-accom {
  padding-bottom: 20px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list label {
  margin: 0 0 8px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list .hb-quantity-option {
  margin: 0 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list .hb-quantity-option:last-of-type {
  margin: 0;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list .hb-quantity-option label {
  display: inline-block;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-accom-list .hb-options-total-price {
  margin: 0 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-details-fields .hb-title {
  margin: 16px 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-details-fields p {
  margin: 0 0 8px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-coupons-area {
  margin: 24px 0 0;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-coupons-area .hb-title.hb-title-coupons {
  margin: 0 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-coupons-area .hb-clearfix {
  margin: 8px 0 0;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-summary-wrapper {
  margin: 24px 0 0;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-summary-wrapper .hb-title.hb-resa-summary-title {
  margin: 0 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-payment-info-wrapper .hb-title.hb-title-payment {
  margin: 0 0 16px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-multiple-choice .hb-payment-type-wrapper {
  display: block;
  margin: 0 0 8px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-multiple-choice .hb-payment-type-wrapper:first-of-type {
  margin: 8px 0 8px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-multiple-choice .hb-payment-type-wrapper:last-of-type {
  margin: 0;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-explanation {
  margin: 0 0 8px;
}
.new-house-v2 .container .row.bottom-part .reservation .hb-booking-details-form .hb-confirm-button {
  margin: 24px 0 0;
}

.page-template-template-namelis-2-php .page-title {
  position: relative;
  overflow: hidden;
}
.page-template-template-namelis-2-php .page-title:before {
  content: "";
  width: 180px;
  height: 157px;
  background-image: url("/wp-content/themes/zex/assets/img/LOGO_SIGN.png");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -80px;
  left: 10%;
}
.page-template-template-namelis-2-php .page-title:after {
  content: "";
  width: 180px;
  height: 157px;
  background-image: url("/wp-content/themes/zex/assets/img/LOGO_SIGN.png");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -80px;
  right: 10%;
}

@media (max-width: 768px) {
  .naujienlaikis-home .row .col-md-8 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.naujienlaikis-home .ml-subscribe-form .disclaimer-newsletter-home {
  margin: 0 0 24px;
  color: #ffffff;
  display: block;
}
.naujienlaikis-home .ml-subscribe-form .disclaimer-newsletter-home a {
  color: #ffffff;
}
.naujienlaikis-home .ml-subscribe-form h3 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
  line-height: 26.87px;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin: 0 0 28px;
}
.naujienlaikis-home .ml-subscribe-form input[type=email] {
  display: block;
  width: 100%;
  border: 0px;
  color: #707070;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.75px;
  padding: 16px 20px;
  background-color: #ffffff;
  border-radius: 0;
  margin-bottom: 28px;
}
.naujienlaikis-home .ml-subscribe-form button.primary {
  display: block;
  width: 100%;
  border: 0px;
  color: #b58a61;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.75px;
  padding: 16px 20px;
  background-color: #ffffff;
  border-radius: 0;
  transition: ease all 0.3s;
  cursor: pointer;
}
.naujienlaikis-home .ml-subscribe-form button.primary:hover {
  background: #ac7d51;
  color: #ffffff;
}

.video-home {
  max-width: 1170px;
  margin: 75px auto 90px;
}
.video-home .video-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-home .video-wrap:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.video-home .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.page-template-template-titulinis .ideja__left {
  padding-top: 70px;
}
.page-template-template-titulinis .ideja__left .shape {
  left: -90px !important;
}

@media (max-width: 768px) {
  .check-availability-home {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.check-availability-home h3 {
  margin: 0 0 16px;
}
.check-availability-home .form-wrap .hb-title {
  display: none;
}
.check-availability-home .form-wrap .hb-search-fields {
  display: flex;
  flex-direction: column;
}
.check-availability-home .form-wrap .hb-search-fields .hb-check-dates-wrapper {
  width: 100%;
}
.check-availability-home .form-wrap .hb-search-fields .hb-accom-number-wrapper {
  width: 100%;
}
.check-availability-home .form-wrap .hb-search-fields .hb-people-wrapper {
  width: 100%;
}
.check-availability-home .form-wrap .hb-search-fields .hb-search-submit-wrapper {
  width: 100%;
}
.check-availability-home .form-wrap .hb-search-fields p {
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .check-availability-home .form-wrap .hb-search-fields p {
    padding-right: 0;
  }
}
.check-availability-home .form-wrap .hb-search-fields input[type=text],
.check-availability-home .form-wrap .hb-search-fields input[type=number],
.check-availability-home .form-wrap .hb-search-fields select {
  padding: 6px 20px 6px 10px;
  border-radius: 2px;
  line-height: 24px;
  border: 2px solid #9c9c9c;
}
.check-availability-home .form-wrap .hb-search-fields input[type=submit] {
  text-decoration: none;
  color: #b58a61;
  border: 2px solid #b58a61;
  transition: ease all 0.3s;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  padding: 6px 20px 6px 10px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  transition: ease all 0.3s;
  background: none;
  cursor: pointer;
  width: 100%;
}

body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor {
  margin-top: 3em;
  display: flex;
  flex-direction: column;
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-single-recipient {
  display: flex;
  flex-direction: column;
  order: 1;
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-single-recipient .ywgc-recipient-name {
  order: 2;
  margin: 15px 0 15px;
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-single-recipient .ywgc-recipient-email {
  order: 1;
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-single-recipient .ywgc-recipient-email label {
  position: relative;
  text-align: left;
  transform: translateY(-6px);
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-single-recipient .ywgc-recipient-email label:after {
  content: "(dovanos gavėjo)";
  font-size: 12px;
  color: #b58a61;
  display: block;
  line-height: 1;
  position: absolute;
  left: 0;
  bottom: -3px;
  white-space: nowrap;
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-sender-name {
  text-transform: lowercase;
  order: 3;
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-sender-name label:before {
  content: "Pirkėjo ";
  text-transform: capitalize;
  display: inline;
}
body.single-product .product.product-type-gift-card#product-2118 .gift-card-content-editor .ywgc-message {
  order: 2;
}
body.single-product .product.product-type-gift-card#product-2118 .ywgc_delivery_info_title,
body.single-product .product.product-type-gift-card#product-2118 .ywgc_recipient_info_title,
body.single-product .product.product-type-gift-card#product-2118 .ywgc-sender-info-title {
  display: none !important;
}
body.single-product .product.product-type-gift-card .woocommerce-product-gallery__wrapper {
  box-shadow: none;
}
body.single-product .product.product-type-gift-card .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  box-shadow: 0 0 19px -12px grey;
}
body.single-product .product.product-type-gift-card .ywgc-main-form-preview-container {
  display: none;
}
body.single-product .product.product-type-gift-card .ywgc_select_amount_title {
  margin: 0 0 10px;
}
body.single-product .product.product-type-gift-card .ywgc_recipient_info_title,
body.single-product .product.product-type-gift-card .ywgc-sender-info-title {
  margin-bottom: 10px;
}
body.single-product .product.product-type-gift-card .yith_wc_gift_card_input_recipient_details,
body.single-product .product.product-type-gift-card #ywgc-sender-name,
body.single-product .product.product-type-gift-card #ywgc-edit-message,
body.single-product .product.product-type-gift-card #ywgc-recipient-name {
  padding: 14px 14px;
}
body.single-product .product.product-type-gift-card .ywgc-sender-name {
  margin-top: 15px;
}
body.single-product .product.product-type-gift-card .ywgc-sender-name:after {
  content: "";
  clear: both;
  display: block;
}
body.single-product .product.product-type-gift-card .ywgc-sender-name label {
  float: left;
}

.single.page-valentine-pdf .single-page .main-img {
  max-width: 640px;
  margin: 0 auto 40px;
  height: auto;
  display: block;
}
.single.page-valentine-pdf .single-page .ml-form-atokampis {
  margin: 40px 0 0;
}

.related.products {
  margin: 64px 0 0;
}
.related.products:before {
  content: "";
  display: table;
  clear: both;
}
.related.products h2 {
  margin-bottom: 32px;
}

.spa .kompleksas-box .box-wrapper ul.buy li:nth-child(1) {
  width: 25%;
  width: 20%;
  text-align: center;
  font-weight: 600;
  padding-top: 7px;
}

.reservation-hbook input[type=text],
.reservation-hbook input[type=number],
.reservation-hbook select {
  padding: 6px 20px 6px 10px;
  border-radius: 2px;
  line-height: 24px;
  border: 2px solid #9c9c9c;
}
.reservation-hbook input[type=submit] {
  text-decoration: none;
  color: #b58a61;
  border: 2px solid #b58a61;
  transition: ease all 0.3s;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  padding: 6px 20px 6px 10px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  transition: ease all 0.3s;
  background: none;
  cursor: pointer;
}
.reservation-hbook .hb-search-no-result,
.reservation-hbook .hb-booking-searching {
  margin: 16px 0 0;
}
.reservation-hbook .hb-title-search-form {
  margin: 0 0 16px;
}
.reservation-hbook .hb-search-fields label {
  margin: 0 0 8px;
}
@media (max-width: 531px) {
  .reservation-hbook .hb-search-fields label {
    margin: 16px 0 8px;
  }
}
@media (max-width: 531px) {
  .reservation-hbook .hb-search-fields .hb-search-submit-wrapper {
    margin: 24px 0 0;
  }
}
@media (max-width: 531px) {
  .reservation-hbook .hb-change-search-wrapper {
    margin: 24px 0 0;
  }
}
.reservation-hbook .hb-accom-list {
  margin: 24px auto 0;
}
.reservation-hbook .hb-accom-list .hb-title.hb-title-select,
.reservation-hbook .hb-accom-list .hb-title.hb-title-extra {
  margin: 8px 0 16px;
}
.reservation-hbook .hb-accom-list .hb-accom {
  padding-bottom: 20px;
}
.reservation-hbook .hb-accom-list label {
  margin: 0 0 8px;
}
.reservation-hbook .hb-accom-list .hb-quantity-option {
  margin: 0 0 16px;
}
.reservation-hbook .hb-accom-list .hb-quantity-option:last-of-type {
  margin: 0;
}
.reservation-hbook .hb-accom-list .hb-quantity-option label {
  display: inline-block;
}
.reservation-hbook .hb-accom-list .hb-options-total-price {
  margin: 0 0 16px;
}
.reservation-hbook .hb-booking-details-form .hb-details-fields .hb-title {
  margin: 16px 0 16px;
}
.reservation-hbook .hb-booking-details-form .hb-details-fields p {
  margin: 0 0 8px;
}
.reservation-hbook .hb-booking-details-form .hb-coupons-area {
  margin: 24px 0 0;
}
.reservation-hbook .hb-booking-details-form .hb-coupons-area .hb-title.hb-title-coupons {
  margin: 0 0 16px;
}
.reservation-hbook .hb-booking-details-form .hb-coupons-area .hb-clearfix {
  margin: 8px 0 0;
}
.reservation-hbook .hb-booking-details-form .hb-summary-wrapper {
  margin: 24px 0 0;
}
.reservation-hbook .hb-booking-details-form .hb-summary-wrapper .hb-title.hb-resa-summary-title {
  margin: 0 0 16px;
}
.reservation-hbook .hb-booking-details-form .hb-payment-info-wrapper .hb-title.hb-title-payment {
  margin: 0 0 16px;
}
.reservation-hbook .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-multiple-choice .hb-payment-type-wrapper {
  display: block;
  margin: 0 0 8px;
}
.reservation-hbook .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-multiple-choice .hb-payment-type-wrapper:first-of-type {
  margin: 8px 0 8px;
}
.reservation-hbook .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-multiple-choice .hb-payment-type-wrapper:last-of-type {
  margin: 0;
}
.reservation-hbook .hb-booking-details-form .hb-payment-info-wrapper .hb-payment-type-explanation {
  margin: 0 0 8px;
}
.reservation-hbook .hb-booking-details-form .hb-confirm-button {
  margin: 24px 0 0;
}

.mfp-counter {
  display: none !important;
}

#product-2117 .gift-card-content-editor {
  margin-top: 3em;
  display: flex;
  flex-direction: column;
}
#product-2117 .gift-card-content-editor .ywgc-sender-info-title {
  display: none !important;
}
#product-2117 .gift-card-content-editor .ywgc-recipient-name {
  order: 1;
}
#product-2117 .gift-card-content-editor .ywgc-sender-name {
  order: 3;
  margin-bottom: 0;
}
#product-2117 .gift-card-content-editor .ywgc-message {
  order: 2;
  margin-top: 15px;
}

html .reservation-notification {
  margin: 0 0 24px;
}
html .reservation-notification p {
  color: #000000;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 18.4px;
  line-height: 18.4px;
}

.product .summary.entry-summary p.price {
  margin: 24px 0;
}
.product .summary.entry-summary .cart .quantity {
  float: none;
}
.product .summary.entry-summary .cart .single_add_to_cart_button {
  float: none;
}

#product-2978 .woocommerce-product-details__short-description p {
  margin-bottom: 16px;
}
#product-2978 .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}
#product-2978 .woocommerce-product-details__short-description p a {
  color: #b58a61;
}
#product-2978 .woocommerce-product-details__short-description .notification {
  background: #b58a61;
  padding: 16px 16px;
  color: #ffffff;
}
#product-2978 .woocommerce-product-details__short-description .notification p {
  color: #ffffff;
}
#product-2978 .woocommerce-product-details__short-description .notification a {
  color: #ffffff;
}

label[for=hb-form-1-slygos_ir_taisykls_2] {
  display: none;
}

label[for=hb-form-1-slygos_ir_taisykls_2-a_perskaiiau_ir_sutinku_su_puslapio_slygomis__2] a {
  color: #9c9c9c;
}

label[for=hb-form-1-naujienlaikis] {
  display: none;
}

.hb-payment-method-wrapper .hb-payment-form.hb-payment-form-montonio > p {
  display: none;
}

.hb-booking-details-form .hb-bottom-area {
  display: none !important;
}

.single-page.reservation-hbook .hb-options-form .hb-options-multi-accoms.hb-options-multi-accom-1 .hb-quantity-option.disabled {
  display: none !important;
}

/*# sourceMappingURL=style.css.map */
