@import url("https://fonts.googleapis.com/css?family=Quattrocento|Nunito:400,600|Raleway:200,200i,300,400,400i,600,600i");
@import url("/css/fa-all.css");
footer {
  background-color: #0b3f49;
  margin: 0;
  color: white;
  position: relative;
  bottom: 0;
}

footer p {
  margin: 0;
}

footer .grid-container {
  position: relative;
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 1080px;
  margin: auto;
      grid-template-areas: "newsletter" "about" "partners" "social" "links";
}

@media screen and (min-width: 480px) {
  footer .grid-container {
        grid-template-areas: "newsletter newsletter" "about partners" "social social" "links links";
  }
}

@media screen and (min-width: 800px) {
  footer .grid-container {
        grid-template-areas: "newsletter newsletter newsletter" " partners about social" "links links links";
  }
}

footer .grid-container .grid-elem {
  padding: 60px 20px;
  position: relative;
  min-width: 200px;
  width: 100%;
}

@media screen and (max-width: 800px) {
  footer .grid-container .grid-elem {
    padding: 20px 20px;
  }
}

footer .grid-container .grid-elem h4 {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  font-size: 10pt;
  color: #b1b1b1;
}

footer .grid-container .newsletter {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: newsletter;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-column-gap: 30px;
  border-bottom: #fabf4e 1px solid;
}

footer .grid-container .newsletter .nl-desc {
  font-size: 14pt;
  font-weight: bold;
  text-transform: uppercase;
}

footer .grid-container .newsletter .nl-input {
  position: relative;
  min-height: 50px;
}

footer .grid-container .newsletter .nl-input form {
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid #b1b1b1;
}

footer .grid-container .newsletter .nl-input form input {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px;
  min-width: 200px;
  color: #b1b1b1;
}

footer .grid-container .newsletter .nl-input form input:focus {
  outline: none;
  color: white;
}

footer .grid-container .newsletter .nl-input form button {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: #e9e9e9;
  border: none;
  cursor: pointer;
}

footer .grid-container .newsletter .nl-input form button:hover {
  background: white;
}

footer .grid-container .about {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: about;
  font-size: 10pt;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  width: 100%;
  height: 100%;
}

footer .grid-container .about p {
  margin: 4px 0;
}

footer .grid-container .about p i {
  margin-right: 5px;
}

footer .grid-container .about p a {
  color: white;
}

footer .grid-container .about .name {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

footer .grid-container .about .phone {
  margin-top: 15px;
}

footer .grid-container .partners {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: partners;
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

footer .grid-container .partners .best-in-sg {
  min-height: 80px;
  background: url("/media/logos/best_in_singapore_2024.png") no-repeat center;
  background-size: contain;
}

footer .grid-container .partners .review-ranger {
  min-height: 80px;
  background: url("/media/logos/logo_review-ranger.svg") no-repeat center;
  background-size: contain;
}

footer .grid-container .partners .apac-insider {
  min-height: 80px;
  max-width: 150px;
  margin: 0 auto;
  background: url("/media/logos/apac_insider.png") no-repeat center;
  background-size: contain;
}

footer .grid-container .partners .finest-services {
  min-height: 80px;
  max-width: 150px;
  margin: 0 auto;
  background: url("/media/logos/finest_services.png") no-repeat center;
  background-size: contain;
}

footer .grid-container .partners .bestlah {
  min-height: 80px;
  max-width: 150px;
  margin: 0 auto;
  background: url("/media/logos/logo_bestlah.png") no-repeat center;
  background-size: contain;
}

footer .grid-container .social {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: social;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  text-align: center;
  width: 100%;
  height: 100%;
}

footer .grid-container .social a {
  min-width: 100px;
  margin-bottom: 20px;
}

footer .grid-container .social a i {
  font-size: 36px;
  color: white;
}

footer .grid-container .links {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: links;
  border-top: #fabf4e 1px solid;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 9pt;
  color: white;
}

footer .grid-container .links span {
  display: inline-block;
  border-left: #e9e9e9 1px solid;
  padding: 0 10px;
  margin: 10px 0;
}

footer .grid-container .links span a {
  color: white;
}

footer .grid-container .links span a:hover {
  text-decoration: underline;
}

footer .grid-container .links span:nth-child(1) {
  border-left: none;
  padding-left: 0;
}

.desktop-nav {
  min-width: 480px;
  width: 100%;
  height: 86px;
  position: fixed;
  z-index: 99;
  padding-bottom: 2px;
}

@media screen and (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }
}

.desktop-nav .logo-container {
  position: absolute;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.desktop-nav .phone {
  height: 36px;
  line-height: 30px;
  text-align: right;
  padding: 3px 20px;
  display: block;
  color: white;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.desktop-nav .phone a {
  margin-left: 10px;
  color: white;
}

.desktop-nav .menu {
  margin: 0;
  text-align: right;
  position: relative;
  -webkit-transition: background-color 500ms;
  transition: background-color 500ms;
  background-color: transparent;
}

.desktop-nav .menu .menu-elem {
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.desktop-nav .menu .menu-elem .menu-link {
  padding: 8px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  font-size: 10pt;
  color: white;
  text-decoration: none;
  font-family: "Raleway", "Helvetica", sans-serif;
  font-weight: 600;
}

.desktop-nav .menu .menu-elem:hover {
  background-color: rgba(241, 243, 245, 0.2);
}

.desktop-nav .menu .menu-elem:hover .menu-dropdown {
  max-height: 800px;
  border-left: 1px white solid;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.desktop-nav .menu .menu-elem .menu-dropdown {
  position: absolute;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  min-width: 150px;
  border-left: 0px white solid;
  background-color: rgba(13, 110, 129, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.desktop-nav .menu .menu-elem .menu-dropdown .menu-link {
  display: block;
  padding: 10px 20px;
}

.desktop-nav .menu .menu-elem .menu-dropdown .menu-link:hover {
  background-color: rgba(241, 243, 245, 0.2);
}

.compact {
  max-height: 50px;
}

.compact .logo-container {
  margin-left: -10px;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

.compact .phone {
  height: 0;
  padding: 0;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.compact .phone a {
  max-height: 0;
  opacity: 0;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.compact .menu {
  background-color: rgba(13, 110, 129, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.compact .menu .menu-elem {
  background: transparent;
}

.mobile-nav {
  position: relative;
}

@media screen and (min-width: 1080px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav .nav-bar-container {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50px auto 50px;
      grid-template-columns: 50px auto 50px;
  background-color: #f1f3f5;
  height: 50px;
}

.mobile-nav .nav-bar-container .nav-logo {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../media/logos/YBSG_logo_standalone.png) no-repeat center;
  background-size: contain;
  border: transparent 8px solid;
}

.mobile-nav .nav-bar-container .nav-contact {
  height: 100%;
  text-align: right;
  padding-right: 20px;
}

.mobile-nav .nav-bar-container .nav-contact a {
  display: inline-block;
  color: #636363;
  line-height: 50px;
  font-size: 15pt;
  margin-left: 15px;
}

.mobile-nav .nav-bar-container .nav-contact #nav-wa {
  color: #25d366;
  font-size: 18pt;
}

.mobile-nav .nav-bar-container .hamburger-menu {
  position: relative;
  height: 100%;
}

.mobile-nav .nav-bar-container .hamburger-menu .hamburger {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px 15px 10px 6px;
  cursor: pointer;
}

.mobile-nav .nav-bar-container .hamburger-menu .hamburger span {
  display: block;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: #0a9abe;
}

.mobile-nav #mobile-nav-menu {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: margin-left 500ms;
  transition: margin-left 500ms;
}

.mobile-nav #mobile-nav-menu .bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: #636363;
  opacity: .6;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  cursor: pointer;
}

.mobile-nav #mobile-nav-menu .menu {
  position: relative;
  width: calc(100vw - 150px);
  margin-left: 150px;
  height: 100vh;
  background: #0a9abe;
  padding-top: 20px;
}

.mobile-nav #mobile-nav-menu .menu .menu-elems a {
  display: inline-block;
  min-width: 250px;
  padding: 14px 0 14px 30px;
  color: white;
  text-transform: capitalize;
  font-weight: bold;
  font-size: 14pt;
}

.mobile-nav #mobile-nav-menu .menu .social {
  padding: 50px 0 0 30px;
}

.mobile-nav #mobile-nav-menu .menu .social a {
  display: inline-block;
  color: white;
  font-size: 14pt;
  padding-right: 15px;
}

.mobile-nav .slide-right {
  margin-left: 100vw;
  -webkit-transition: margin-left 500ms;
  transition: margin-left 500ms;
}

.grab-ribbon {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 25;
  min-height: 50px;
  background: #00612d;
  background: #00A950;
  border-top: 5px dotted white;
  border-bottom: 5px dotted white;
  -webkit-transform: translateX(150px) translateY(-40px) rotate(-45deg);
  transform: translateX(150px) translateY(-40px) rotate(-45deg);
}

.grab-ribbon a {
  margin: 20px 50px 20px 50px;
  padding-bottom: 5px;
  background: white;
  display: inline-block;
  width: 400px;
  height: 60px;
  color: #00A950;
  font-weight: 600;
  font-size: 1.7em;
  text-align: center;
  line-height: 0em;
}

.grab-ribbon a:hover {
  color: #00A950;
}

.grab-ribbon a span {
  font-size: .5em;
}

.grab-ribbon a .grab-logo {
  vertical-align: middle;
  display: inline-block;
  width: 90px;
  height: 50px;
  background: url(../media/pics/grab-logo.png) center no-repeat;
  background-size: contain;
  margin-bottom: -5px;
}

html,
body,
nav,
div,
span,
a,
h1,
h2,
h3,
h4,
p {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Raleway", "Helvetica", sans-serif;
  min-width: 480px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 800px) {
  body {
    min-width: 0px;
  }
}

main {
  width: 100%;
}

a {
  text-decoration: none;
  color: #071021;
}

a:hover {
  text-decoration: none;
  color: #071021;
}

ul {
  margin: 0;
  padding: 0;
}

.top-spacer {
  height: 85px;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .top-spacer {
    display: none;
  }
}

.jumbotron {
  background-color: #e9e9e9;
}

.intro {
  border-radius: 5px 3px 0 0;
}

.logo-container {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -15px;
  height: 145px;
  width: 145px;
  padding: 10px 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  text-align: center;
  z-index: 15;
  border-radius: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 1080px) {
  .logo-container {
    display: none;
  }
}

.logo-container .logo {
  display: block;
  width: 100%;
  height: 100px;
  background: url(../media/logos/YBSG_logo_standalone.png) no-repeat center;
  background-size: contain;
  margin-bottom: 5px;
}

.logo-container .line {
  width: 100%;
  background-color: grey;
  height: 1px;
}

.logo-container .logo-text {
  text-align: center;
  margin: auto;
  font-size: 8pt;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  letter-spacing: 1.5pt;
}

.social-btns {
  position: fixed;
  right: 0;
  top: 85px;
  z-index: 16;
}

@media screen and (max-width: 1080px) {
  .social-btns {
    display: none;
    font-size: 1.5em;
    top: 25px;
  }
}

.social-btns ul {
  position: relative;
  list-style: none;
}

.social-btns ul li {
  margin: 5px 0;
  padding: 5px 7px;
  background-color: #f1f3f5;
  text-align: right;
  display: block;
}

.social-btns ul #fb:hover {
  background-color: #3b5998;
}

.social-btns ul #fb:hover i {
  color: white;
}

.social-btns ul #ig:hover {
  background-color: #8a3ab9;
}

.social-btns ul #ig:hover i {
  color: white;
}

.social-btns ul #linkedin:hover {
  background-color: #0077b5;
}

.social-btns ul #linkedin:hover i {
  color: white;
}

.social-btns ul #twitter:hover {
  background-color: #1da1f2;
}

.social-btns ul #twitter:hover i {
  color: white;
}

.social-btns ul #mail,
.social-btns ul #phone {
  display: block;
  background-color: #282828;
}

.social-btns ul #mail i,
.social-btns ul #phone i {
  color: white;
}

.social-btns ul #mail:hover,
.social-btns ul #phone:hover {
  background-color: #0d6e81;
}

.social-btns ul #mail:hover i,
.social-btns ul #phone:hover i {
  color: white;
}

.social-btns ul #mail {
  margin-top: 30px;
}

.social-btns ul #whatsapp {
  background-color: #25d366;
  color: white;
  font-weight: bold;
}

.social-btns ul #whatsapp:hover {
  background-color: #0d6e81;
}

main .img-container {
  position: relative;
  width: 100%;
  min-height: 400px;
}

main .img-container .header-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0d6e81 url(../media/pics/destinations.jpg) center no-repeat;
  background-size: cover;
  -webkit-filter: contrast(200%) grayscale(100%);
          filter: contrast(200%) grayscale(100%);
}

main .img-container .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, #0d6e81, #0a9abe);
  opacity: 0.6;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

main .img-container .text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  line-height: 40vh;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

main .img-container .text h1 {
  width: 100%;
  font-family: "Raleway", "Helvetica", sans-serif;
  font-size: 10vmin;
  line-height: 10vmin;
  margin: 0;
  color: white;
}

main .img-container ul {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 20px;
}

main .img-container ul li {
  display: inline-block;
  padding: 10px 0px;
}

main .img-container ul li a {
  white-space: nowrap;
  color: white;
  padding: 10px 20px;
}

main .img-container ul li a:hover {
  background-color: rgba(241, 243, 245, 0.2);
}

.shadow-level-1 {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shadow-level-1:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-level-2 {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadow-level-3 {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadow-level-4 {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadow-level-5 {
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.shadow-invis {
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shadow-invis:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

main {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f1f3f5;
}

main .header-img-container .header-img {
  background: transparent url(/media/pics/yachts/ybsg_default.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 70vmin;
}

main .content-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
      grid-template-areas: " yacht-info booking ";
  max-width: 1440px;
  margin: auto;
  padding: 20px;
  grid-gap: 20px;
}

@media screen and (max-width: 1080px) {
  main .content-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: " yacht-info ";
  }
}

@media screen and (max-width: 800px) {
  main .content-container {
    padding: 20px 0;
  }
}

main .content-container .spacer {
  margin: 30px 0;
  width: 100%;
  height: 1px;
  background: #c8ced2;
}

main .content-container .booking-container {
  z-index: 9;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: booking;
  height: auto;
  max-height: 500px;
  background: white;
  min-width: 300px;
  border-radius: 3px;
  font-family: "Nunito", "Helvetica", sans-serif;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    height: 56px;
    min-width: auto;
  }
}

main .content-container .booking-container .price-container {
  background: #636363;
  color: white;
  margin: auto;
  text-align: center;
  line-height: 56px;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container .price-container {
    display: inline-block;
    width: 40%;
  }
}

main .content-container .booking-container .price-container .price-time-container {
  border-bottom: 1px #282828 solid;
}

main .content-container .booking-container .price-container .price-time-container .price {
  display: inline-block;
  font-size: 20pt;
  font-weight: bold;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 480px) {
  main .content-container .booking-container .price-container .price-time-container .price {
    font-size: 14pt;
  }
}

main .content-container .booking-container .price-container .price-time-container .price:before {
  content: "from ";
  font-size: 14pt;
}

@media screen and (max-width: 480px) {
  main .content-container .booking-container .price-container .price-time-container .price:before {
    font-size: 10pt;
  }
}

main .content-container .booking-container .price-container .price-time-container .price:after {
  content: " S$ ";
  font-size: 14pt;
}

@media screen and (max-width: 480px) {
  main .content-container .booking-container .price-container .price-time-container .price:after {
    font-size: 10pt;
  }
}

main .content-container .booking-container .price-container .price-time-container .time {
  display: inline-block;
}

main .content-container .booking-container .price-container .price-time-container .time:before {
  content: "/ ";
}

main .content-container .booking-container .special-offer-container {
  background-color: #282828;
  padding: 15px 20px;
  color: white;
  font-weight: bold;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container .special-offer-container {
    padding: 0;
  }
}

main .content-container .booking-container .special-offer-container .headline {
  display: block;
  background: #e93a05;
  padding: 2px 10px;
  line-height: 25px;
  font-size: 1.2em;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container .special-offer-container .headline {
    line-height: 50px;
  }
}

main .content-container .booking-container .special-offer-container .price {
  font-size: 2em;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container .special-offer-container .price {
    display: none;
  }
}

main .content-container .booking-container .special-offer-container .price::before {
  content: "from";
  padding: 0 5px 0 0;
}

main .content-container .booking-container .special-offer-container .price::after {
  content: "S$";
  padding: 0 0 0 5px;
}

main .content-container .booking-container .special-offer-container .price::after, main .content-container .booking-container .special-offer-container .price::before {
  color: white;
  font-size: 0.5em;
  font-weight: normal;
}

main .content-container .booking-container .special-offer-container .pax {
  line-height: 20px;
  font-size: 1.5em;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container .special-offer-container .pax {
    display: none;
  }
}

main .content-container .booking-container .special-offer-container .pax::before {
  content: "up to";
  padding: 0 5px 0 0;
}

main .content-container .booking-container .special-offer-container .pax::after {
  content: "guests";
  padding: 0 0 0 5px;
}

main .content-container .booking-container .special-offer-container .pax::after, main .content-container .booking-container .special-offer-container .pax::before {
  color: white;
  font-size: 0.7em;
  font-weight: normal;
}

main .content-container .booking-container .strikethrough {
  text-decoration: line-through !important;
}

main .content-container .booking-container .strikethrough .price,
main .content-container .booking-container .strikethrough .time {
  text-decoration: line-through;
}

main .content-container .booking-container .text-container {
  padding: 20px 20px;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container .text-container {
    display: none;
  }
}

main .content-container .booking-container .text-container .special {
  color: #e93a05;
}

main .content-container .booking-container .text-container .pax {
  font-size: 15pt;
}

main .content-container .booking-container .text-container .pax::before {
  content: "up to ";
  font-size: 12pt;
}

main .content-container .booking-container .text-container .pax::after {
  content: " guests";
  font-size: 12pt;
}

main .content-container .booking-container .text-container .pax-special {
  font-size: 20pt;
  font-weight: 600;
}

main .content-container .booking-container .text-container .pax-special::before {
  content: "now up to ";
  font-size: 12pt;
}

main .content-container .booking-container .text-container .pax-special::after {
  content: " guests";
  font-size: 12pt;
}

main .content-container .booking-container .text-container .faded {
  text-decoration: line-through;
  color: rgba(7, 16, 33, 0.5);
}

main .content-container .booking-container .text-container .crew {
  color: #606060;
}

main .content-container .booking-container .text-container .crew .crew-entry {
  margin: 5px 0;
}

main .content-container .booking-container .text-container .crew .crew-entry .marker {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 10px;
  border: 3px #fabf4e solid;
}

main .content-container .booking-container .text-container .crew .crew-entry .marker:after, main .content-container .booking-container .text-container .crew .crew-entry .marker:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 3px #fabf4e solid;
  border-color: #fabf4e;
  bottom: 2px;
  left: -2px;
}

main .content-container .booking-container .text-container .crew .crew-entry .marker:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: -5px;
  left: -3px;
}

main .content-container .booking-container .text-container .crew .crew-entry .included {
  border-color: #0d6e81;
}

main .content-container .booking-container .text-container .crew .crew-entry .included:before {
  content: none;
}

main .content-container .booking-container .text-container .crew .crew-entry .included:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 3px #fabf4e solid;
  border-bottom: 3px #fabf4e solid;
  border-color: #0d6e81;
  bottom: 4px;
  left: 3px;
}

main .content-container .booking-container .text-container .t-c {
  margin-top: 15px;
}

main .content-container .booking-container .text-container .t-c a {
  font-size: 10pt;
  color: #b1b1b1;
  text-decoration: underline;
}

main .content-container .booking-container .open-contact {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  bottom: 0;
  width: 100%;
  border: none;
  padding: 15px 20px;
  border-radius: 3px;
  background: #0a9abe;
  color: white;
  font-size: 15pt;
  border-bottom: 2px #0d6e81 solid;
  cursor: pointer;
}

@media screen and (max-width: 1080px) {
  main .content-container .booking-container .open-contact {
    display: inline-block;
    width: 60%;
    border-radius: 0;
  }
}

main .content-container .booking-container .open-contact:hover {
  background: #0d6e81;
}

main .content-container .yacht-info-container {
  min-height: 1000px;
  padding: 0 20px;
  grid: yacht-info;
  overflow-x: hidden;
}

main .content-container .yacht-info-container .short-info-container {
  position: relative;
}

main .content-container .yacht-info-container .short-info-container .share-container {
  position: absolute;
  font-size: 18pt;
  right: 20px;
  top: 6px;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-btn {
  cursor: pointer;
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  color: #0a9abe;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-btn i {
  font-size: 18pt;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-btn span {
  font-size: 12pt;
  line-height: 18pt;
  margin-left: 10px;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-btn:hover span {
  text-decoration: underline;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-dialog {
  display: none;
  padding: 10px;
  position: absolute;
  right: 0;
  border: 1px #c8ced2 solid;
  margin-top: 8px;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-dialog::after {
  position: absolute;
  top: -8px;
  right: 20px;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #c8ced2;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-dialog .share-elem {
  display: inline-block;
  padding: 0 10px;
  cursor: pointer;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-dialog .fb {
  color: #3b5998;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-dialog .twitter {
  color: #1da1f2;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-dialog .email,
main .content-container .yacht-info-container .short-info-container .share-container #share-dialog .copy {
  color: #606060;
}

main .content-container .yacht-info-container .short-info-container .share-container #share-dialog .copy input {
  padding: 0;
  margin: 0;
  max-height: 0;
  max-width: 0;
  opacity: 0;
  position: absolute;
}

main .content-container .yacht-info-container .short-info-container .share-container .is-open {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

main .content-container .yacht-info-container .short-info-container .name {
  font-size: 25pt;
  max-width: 80%;
  text-transform: uppercase;
  color: #071021;
  margin-bottom: 0;
}

main .content-container .yacht-info-container .short-info-container .name ~ h4 {
  margin: 10px 0 30px 0;
}

main .content-container .yacht-info-container .short-info-container .h-list {
  margin-bottom: 15px;
  position: relative;
  display: block;
}

main .content-container .yacht-info-container .short-info-container .h-list li {
  display: inline-block;
  margin-right: 20px;
}

main .content-container .yacht-info-container .short-info-container .h-list li .icon {
  width: 40px;
  height: 40px;
  background-size: cover;
  text-align: center;
  margin: auto;
  font-size: 25px;
  padding-top: 10px;
  color: #606060;
}

main .content-container .yacht-info-container .short-info-container .h-list li .desc {
  font-size: 12pt;
  color: #606060;
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 1080px) {
  main .content-container .yacht-info-container .short-info-container .h-list li .desc {
    font-size: 10pt;
  }
}

main .content-container .yacht-info-container .short-info-container .category li .Catamaran {
  background-image: url(/media/icons/catamaran.png);
}

main .content-container .yacht-info-container .short-info-container .category li .Motor-Yacht {
  background-image: url(/media/icons/motor_yacht.png);
}

main .content-container .yacht-info-container .short-info-container .category li .Monohull {
  background-image: url(/media/icons/monohull.png);
}

main .content-container .yacht-info-container .short-info-container .category li .Sailing-Yacht {
  background-image: url(/media/icons/sailing_yacht.png);
}

main .content-container .yacht-info-container .short-info-container .category li .Super-Yacht {
  background-image: url(/media/icons/super_yacht.png);
}

main .content-container .yacht-info-container .short-info-container .category li .Classic {
  background-image: url(/media/icons/classic.png);
}

main .content-container .yacht-info-container .special-container {
  padding-right: 50px;
  color: #e93a05;
  border-top: #e93a05 3px solid;
  border-bottom: #e93a05 3px solid;
}

main .content-container .yacht-info-container .info-container {
  padding-right: 50px;
}

main .content-container .yacht-info-container .amenities-container .amenities {
  list-style: none;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media screen and (max-width: 800px) {
  main .content-container .yacht-info-container .amenities-container .amenities {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

main .content-container .yacht-info-container .amenities-container .amenities li {
  margin: 5px 0;
}

main .content-container .yacht-info-container .amenities-container .amenities li .tick {
  color: #0d6e81;
  margin-right: 5px;
}

main .content-container .yacht-info-container .imgs-container {
  position: relative;
}

main .content-container .yacht-info-container .imgs-container .maximized {
  position: fixed;
  min-width: 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 77;
}

main .content-container .yacht-info-container .imgs-container .maximized .bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(40, 40, 40, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

main .content-container .yacht-info-container .imgs-container .maximized .carousel-elem {
  height: 100%;
  position: absolute;
}

main .content-container .yacht-info-container .imgs-container .maximized .carousel-elem img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: auto;
  margin: auto auto;
}

main .content-container .yacht-info-container .carousel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

main .content-container .yacht-info-container .carousel .carousel-elem {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

main .content-container .yacht-info-container .carousel .scroll-arr {
  position: absolute;
  width: 50px;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  background: radial-gradient(circle at 100%, rgba(0, 0, 0, 0.3), transparent 75%);
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  main .content-container .yacht-info-container .carousel .scroll-arr {
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}

main .content-container .yacht-info-container .carousel .scroll-arr i {
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  margin-top: -100%;
  color: white;
  font-size: 20pt;
}

main .content-container .yacht-info-container .carousel .right-arr {
  right: 0;
}

main .content-container .yacht-info-container .carousel .img-dots {
  position: absolute;
  margin: auto;
  text-align: center;
  width: 100%;
  bottom: 20px;
}

main .content-container .yacht-info-container .carousel .img-dots .img-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #0a9abe;
  background: white;
  margin: 7px;
  border-radius: 100%;
  cursor: pointer;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px 1px;
          box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px 1px;
  opacity: 0.5;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

main .content-container .yacht-info-container .carousel .img-dots .img-dot:hover {
  border-radius: 3px;
  opacity: 1;
}

main .content-container .yacht-info-container .carousel .img-dots .active {
  border-radius: 3px;
  opacity: 1;
}

main .content-container .yacht-info-container .carousel img {
  display: inline-block;
  position: absolute;
  width: 100%;
  max-width: 100vw;
  max-height: 100vh;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  left: 0;
  min-width: 0;
  margin: auto;
  opacity: 1;
}

main .content-container .yacht-info-container .carousel .to-right {
  left: 100%;
  opacity: 0;
}

main .content-container .yacht-info-container .carousel .to-left {
  left: -100%;
  opacity: 0;
}

main .content-container .yacht-info-container #related-carousel {
  min-height: 700px;
}

main .content-container .yacht-info-container .yacht-card {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  max-width: 700px;
  margin: auto;
  width: 100%;
  background: #f1f3f5;
}

@media screen and (max-width: 1080px) {
  main .content-container .yacht-info-container .yacht-card {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

main .content-container .yacht-info-container .yacht-card:hover {
  background: #e9e9e9;
}

main .content-container .yacht-info-container .yacht-card .yacht-bg-img {
  background: #0a9abe url("/media/pics/cat_sailing_yacht.jpg") no-repeat center;
  background-size: cover;
  min-height: 300px;
}

@media screen and (max-width: 800px) {
  main .content-container .yacht-info-container .yacht-card .yacht-bg-img {
    min-height: 300px;
  }
}

main .content-container .yacht-info-container .yacht-card .yacht-desc {
  padding: 0 20px;
  font-family: "Nunito", "Helvetica", sans-serif;
  position: relative;
  min-width: 300px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .name {
  margin: 30px 0 10px 0;
  font-size: 20pt;
  font-family: "Raleway", "Helvetica", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #0d6e81;
}

@media screen and (max-width: 800px) {
  main .content-container .yacht-info-container .yacht-card .yacht-desc .name {
    font-size: 24pt;
  }
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .h-line {
  width: 100%;
  background: #0d6e81;
  height: 1px;
  margin-bottom: 10px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .price {
  font-size: 20pt;
  margin-bottom: 10px;
  width: auto;
  max-width: 200px;
  font-weight: 900;
  display: inline-block;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .price:before, main .content-container .yacht-info-container .yacht-card .yacht-desc .price:after {
  font-size: 14pt;
  font-weight: 100;
  color: #606060;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .price:before {
  content: "from";
  margin-right: 5px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .price:after {
  content: "S$";
  margin-left: 5px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .time {
  display: inline-block;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .time:before {
  content: "/";
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .pax {
  font-size: 15pt;
  margin-bottom: 10px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .pax:before, main .content-container .yacht-info-container .yacht-card .yacht-desc .pax:after {
  font-size: 12pt;
  font-weight: 100;
  color: #606060;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .pax:before {
  content: "up to";
  margin-right: 5px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .pax:after {
  content: "guests";
  margin-left: 5px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category {
  margin-bottom: 15px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li {
  display: inline-block;
  margin-right: 7px;
}

@media screen and (max-width: 1080px) {
  main .content-container .yacht-info-container .yacht-card .yacht-desc .category li {
    margin-right: 25px;
  }
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .cat-icon {
  width: 40px;
  height: 40px;
  background-size: cover;
  text-align: center;
  margin: auto;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .cat-desc {
  font-size: 8pt;
  color: #606060;
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 1080px) {
  main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .cat-desc {
    font-size: 10pt;
  }
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .Catamaran {
  background-image: url(/media/icons/catamaran.png);
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .Motor-Yacht {
  background-image: url(/media/icons/motor_yacht.png);
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .Monohull {
  background-image: url(/media/icons/monohull.png);
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .Sailing-Yacht {
  background-image: url(/media/icons/sailing_yacht.png);
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .Super-Yacht {
  background-image: url(/media/icons/super_yacht.png);
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .category li .Classic {
  background-image: url(/media/icons/classic.png);
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .location {
  margin-bottom: 20px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .location:before {
  content: "location:";
  margin-right: 5px;
  color: #606060;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .link {
  width: 100%;
  margin: auto;
  text-align: center;
  color: #0a9abe;
  margin-top: 10px;
  margin-bottom: 20px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .link:after {
  content: ">";
  margin-left: 5px;
}

main .content-container .yacht-info-container .yacht-card .yacht-desc .link:hover {
  text-decoration: underline;
}

main .content-container .yacht-info-container .desc-container h2 {
  text-transform: capitalize;
  margin: 30px 0 10px 0;
}

main .content-container .yacht-info-container .rating-container {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main .content-container .yacht-info-container .rating-container h2 {
  margin-bottom: 50px;
}

main .content-container .yacht-info-container .rating-container .testimonials {
  background-color: transparent;
  width: 100%;
  max-width: 800px;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 50px;
}

@media screen and (min-width: 1080px) {
  main .content-container .yacht-info-container .rating-container .testimonials {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container {
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container .line {
  width: 50%;
  height: 1px;
  background-color: #071021;
  margin: 10px auto;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container i {
  color: #0d6e81;
  font-size: 1.5em;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container span {
  padding: 0;
  line-height: 1.5em;
  font-weight: normal;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container .rating {
  padding: 5px 0 8px 0;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container .rating .star {
  color: #c8ced2;
  font-size: 12pt;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container .rating .opaque {
  color: #fabf4e;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container .date {
  display: block;
  color: #0d6e81;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container .name {
  font-weight: bold;
}

main .content-container .yacht-info-container .rating-container .testimonials .entry-container .position {
  display: block;
  font-size: 0.9em;
}

main .booking-overlay-container {
  z-index: 99;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

main .booking-overlay-container .bg-overlay {
  background: rgba(40, 40, 40, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
}

main .booking-overlay-container .booking-form-container {
  position: relative;
  max-width: 600px;
  max-height: 100vh;
  margin: auto;
  padding: 50px;
  background: linear-gradient(30deg, #0b3f49, rgba(10, 154, 190, 0.5));
  color: white;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.8em;
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container {
    max-width: 100%;
    padding: 50px 20px;
    height: 100%;
    bottom: 0;
    overflow: scroll;
  }
}

main .booking-overlay-container .booking-form-container .booking-form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 50px;
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .booking-form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

main .booking-overlay-container .booking-form-container .booking-form #form-yacht-name {
  grid-column: span 2;
  font-size: 1em;
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .booking-form #form-yacht-name {
    grid-column: span 1;
  }
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select {
  display: -ms-grid;
  display: grid;
  grid-column: span 2;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .booking-form .form-timing-select {
    grid-column: span 1;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element {
  text-align: center;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 1em;
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element + .radio {
  margin-top: 2px;
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element .form-control-select-radio-button {
  display: none;
  text-align: center;
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element .form-control-select-radio-button + span {
  display: inline-block;
  position: relative;
  margin-top: 50px;
  margin-bottom: 20px;
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element .form-control-select-radio-button + span:before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 30px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  background: none;
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element .form-control-select-radio-button + span:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: white;
  position: absolute;
  border-radius: 50%;
  top: -26px;
  left: calc(50% - 6px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: all 0.2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
  transition: all 0.2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element .form-control-select-radio-button:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

main .booking-overlay-container .booking-form-container .booking-form .form-timing-select .form-control-select-element label {
  cursor: pointer;
  position: relative;
  top: 10px;
}

main .booking-overlay-container .booking-form-container .booking-form .form-control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border: none;
  padding: 14px 20px;
  overflow: visible;
  font-family: "Raleway", "Helvetica", sans-serif;
  background: transparent;
  color: white;
  border-bottom: 1px #e9e9e9 solid;
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .booking-form .form-control {
    padding: 14px 10px;
  }
}

main .booking-overlay-container .booking-form-container .booking-form .form-control:focus {
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border-bottom-width: 3px;
  padding-bottom: 12px;
}

main .booking-overlay-container .booking-form-container .booking-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

main .booking-overlay-container .booking-form-container .booking-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

main .booking-overlay-container .booking-form-container .booking-form .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

main .booking-overlay-container .booking-form-container .booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

main .booking-overlay-container .booking-form-container .booking-form textarea {
  min-height: 0;
  -webkit-transition: min-height 500ms ease-in-out;
  transition: min-height 500ms ease-in-out;
  resize: none;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  height: 100px;
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .booking-form textarea {
    grid-column: span 1;
  }
}

main .booking-overlay-container .booking-form-container .booking-form textarea:focus {
  min-height: 200px;
}

main .booking-overlay-container .booking-form-container .booking-form .send-btn {
  color: white;
  text-decoration: none;
  font-family: "Raleway", "Helvetica", sans-serif;
  font-size: 10pt;
  cursor: pointer;
  grid-column: span 2;
  background-color: transparent;
  border: none;
  border-radius: 1px;
  border: solid 1px white;
  padding: 10px 20px;
  margin: 10px auto;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  text-align: center;
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .booking-form .send-btn {
    grid-column: span 1;
  }
}

main .booking-overlay-container .booking-form-container .booking-form .send-btn:hover {
  -webkit-box-shadow: inset 150px 0px 0px 0px white, inset -150px 0px 0px 0px white;
          box-shadow: inset 150px 0px 0px 0px white, inset -150px 0px 0px 0px white;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  color: #0d6e81;
}

main .booking-overlay-container .booking-form-container .booking-form .send-btn:after {
  content: "send enquiry";
}

main .booking-overlay-container .booking-form-container .booking-form .submitting {
  border: none;
  cursor: default;
}

main .booking-overlay-container .booking-form-container .booking-form .submitting:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main .booking-overlay-container .booking-form-container .booking-form .submitting:after {
  position: relative;
  display: block;
  content: "";
  background: transparent url(/media/icons/super_yacht.png) no-repeat center;
  background-size: contain;
  -webkit-filter: invert(1);
          filter: invert(1);
  width: 50px;
  height: 50px;
  -webkit-animation: sail 2s cubic-bezier(0.1, 0.7, 1, 0.1) infinite;
          animation: sail 2s cubic-bezier(0.1, 0.7, 1, 0.1) infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes sail {
  0% {
    -webkit-transform: rotate(0) translateX(-3px) translateY(-3px);
            transform: rotate(0) translateX(-3px) translateY(-3px);
  }
  25% {
    -webkit-transform: rotate(5deg) translateX(3px) translateY(3px);
            transform: rotate(5deg) translateX(3px) translateY(3px);
  }
  37% {
    -webkit-transform: rotate(2deg) translateX(6px) translateY(0px);
            transform: rotate(2deg) translateX(6px) translateY(0px);
  }
  50% {
    -webkit-transform: rotate(0) translateX(3px) translateY(-3px);
            transform: rotate(0) translateX(3px) translateY(-3px);
  }
  75% {
    -webkit-transform: rotate(-5deg) translateX(-3px) translateY(3px);
            transform: rotate(-5deg) translateX(-3px) translateY(3px);
  }
  87% {
    -webkit-transform: rotate(-2deg) translateX(-6px) translateY(0px);
            transform: rotate(-2deg) translateX(-6px) translateY(0px);
  }
  100% {
    -webkit-transform: rotate(0) translateX(-3px) translateY(-3px);
            transform: rotate(0) translateX(-3px) translateY(-3px);
  }
}

@keyframes sail {
  0% {
    -webkit-transform: rotate(0) translateX(-3px) translateY(-3px);
            transform: rotate(0) translateX(-3px) translateY(-3px);
  }
  25% {
    -webkit-transform: rotate(5deg) translateX(3px) translateY(3px);
            transform: rotate(5deg) translateX(3px) translateY(3px);
  }
  37% {
    -webkit-transform: rotate(2deg) translateX(6px) translateY(0px);
            transform: rotate(2deg) translateX(6px) translateY(0px);
  }
  50% {
    -webkit-transform: rotate(0) translateX(3px) translateY(-3px);
            transform: rotate(0) translateX(3px) translateY(-3px);
  }
  75% {
    -webkit-transform: rotate(-5deg) translateX(-3px) translateY(3px);
            transform: rotate(-5deg) translateX(-3px) translateY(3px);
  }
  87% {
    -webkit-transform: rotate(-2deg) translateX(-6px) translateY(0px);
            transform: rotate(-2deg) translateX(-6px) translateY(0px);
  }
  100% {
    -webkit-transform: rotate(0) translateX(-3px) translateY(-3px);
            transform: rotate(0) translateX(-3px) translateY(-3px);
  }
}

main .booking-overlay-container .booking-form-container .booking-form .success {
  border: none;
  font-size: 14pt;
  cursor: default;
}

main .booking-overlay-container .booking-form-container .booking-form .success:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
}

main .booking-overlay-container .booking-form-container .booking-form .success:after {
  position: relative;
  display: block;
  content: "Enquiry sent!";
}

@media screen and (max-width: 1080px) {
  main .booking-overlay-container .booking-form-container .booking-form #form-yacht-name,
  main .booking-overlay-container .booking-form-container .booking-form .form-control,
  main .booking-overlay-container .booking-form-container .booking-form .send-btn {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .booking-form #form-yacht-name,
  main .booking-overlay-container .booking-form-container .booking-form .form-control,
  main .booking-overlay-container .booking-form-container .booking-form .send-btn {
    font-size: 1.5em;
  }
}

main .booking-overlay-container .booking-form-container .close-overlay {
  position: absolute;
  background: transparent;
  border: none;
  border-radius: 100px;
  top: 5px;
  right: 8px;
  cursor: pointer;
  font-size: 20pt;
  color: white;
  padding: 0;
}

@media screen and (max-width: 800px) {
  main .booking-overlay-container .booking-form-container .close-overlay {
    font-size: 30pt;
  }
}

main .booking-overlay-container .booking-form-container .close-overlay:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

main .fade {
  height: 0;
  top: 150vmax;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
/*# sourceMappingURL=styles_yacht.css.map */