@media screen and (max-width: 575px) {
  .container {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.fw-700 {
  font-weight: 700;
}

.smaller {
  font-size: 11px;
}

.text-color {
  color: #5d5d5d;
}

.fontello {
  font-family: "fontello", sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.form-check-input {
  cursor: pointer;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0 6px 0 0;
}

label {
  cursor: pointer;
}

input, select {
  box-shadow: none !important;
}

.form-select:focus {
  border-color: #04BFBF;
}

.btn {
  outline: none !important;
  box-shadow: none !important;
}
.btn-custom {
  border-radius: 100px;
  background-color: #04BFBF;
  border-color: #04BFBF;
  color: #ffffff !important;
  padding: 15px 30px 13px;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.2em;
  text-align: center;
  min-width: 139px;
  max-width: 100%;
  transition: all 0.4s;
}
.btn-custom > i {
  position: relative;
  width: 0;
  opacity: 0;
  margin: 0;
  left: 6px;
  transition: all 0.2s;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom:active {
  background-color: #001839 !important;
  border-color: #001839 !important;
}
.btn-custom:hover > i, .btn-custom:focus > i, .btn-custom:active > i {
  width: 16px;
  opacity: 1;
}
.btn-custom.red {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
}
.btn-custom.red:hover, .btn-custom.red:focus, .btn-custom.red:active {
  background-color: #bb2d3b !important;
  border-color: #bb2d3b !important;
}

.image-border {
  padding: 7px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
}

.divider-bottom {
  border-bottom: 1px solid #e1e1e1;
}

.link-theme {
  color: #04BFBF;
}
.link-theme:hover {
  color: #001839;
}

.topbar {
  position: relative;
  background-color: #001839;
  padding: 7px 0;
  z-index: 9;
}
.topbar nav ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  font-size: 11px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .topbar nav ul {
    justify-content: center;
  }
}
.topbar nav ul > li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}
.topbar nav ul > li a {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.topbar nav ul > li a:hover {
  text-decoration: underline;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 8;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
}
@media screen and (min-width: 992px) {
  .mobile-menu-overlay {
    display: none;
  }
}
.mobile-menu-overlay.open {
  visibility: visible;
  opacity: 1;
}

.navbar {
  display: block;
  background-color: #ffffff;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  padding: 3px 0;
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.navbar > .container {
  display: block;
}
.navbar .logo img {
  max-height: 64px;
}
@media screen and (max-width: 399px) {
  .navbar .logo img {
    max-width: 50vw;
  }
}
.navbar .main-nav {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.navbar .main-nav > ul {
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.navbar .main-nav > ul > li {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 12px;
  padding-left: 12px;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav > ul > li {
    display: block;
    height: auto;
    margin: 0;
    padding: 0;
  }
}
.navbar .main-nav > ul > li > a {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav > ul {
    position: fixed;
    top: 112px;
    right: -350px;
    display: block;
    width: 350px;
    height: calc(100vh - 111px);
    z-index: 11;
    background: #ffffff;
    overflow: auto;
    transition: right 0.4s;
  }
  .navbar .main-nav > ul.open {
    right: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .navbar .main-nav > ul {
    top: 128px;
  }
}
@media screen and (max-width: 399px) {
  .navbar .main-nav > ul {
    width: 100vw;
    right: -100vw;
  }
}
.navbar .main-nav ul li {
  position: relative;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav ul li {
    width: 100%;
  }
}
.navbar .main-nav ul li.dropdown .sub-menu {
  display: none;
  list-style: none;
  margin-left: 0;
  left: 0;
  position: absolute;
  top: 100%;
  width: 208px;
  padding: 0;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav ul li.dropdown .sub-menu {
    display: block;
    position: relative;
    box-shadow: none;
    width: 100%;
  }
}
.navbar .main-nav ul li.dropdown .sub-menu > li {
  background-color: #ffffff;
  transition: background-color 0.4s;
}
.navbar .main-nav ul li.dropdown .sub-menu > li:hover {
  background-color: #f8f8f8;
}
.navbar .main-nav ul li.dropdown .sub-menu a {
  display: block;
  font-size: 12px;
  padding: 8px 15px;
  min-height: 23px;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav ul li.dropdown .sub-menu a {
    padding: 15px 50px 15px 70px !important;
    position: relative;
  }
}
@media screen and (max-width: 991px) {
  .navbar .main-nav ul li.dropdown .sub-menu a:before {
    content: "-";
    position: absolute;
    left: 50px;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #04BFBF;
  }
}
.navbar .main-nav ul li.dropdown:hover .sub-menu {
  display: block;
}
.navbar .main-nav a {
  color: #001839;
  text-decoration: none;
  transition: color 0.4s;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav a {
    color: #04BFBF;
    font-size: 15px !important;
    font-weight: normal !important;
    font-family: "Quicksand", sans-serif !important;
    display: block;
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 50px !important;
    min-height: auto !important;
  }
}
.navbar .main-nav a:hover {
  color: #04BFBF;
}
.navbar .main-nav .nav-search {
  background: transparent;
  border: none;
  outline: none;
  padding: 0 0 0 0;
  margin: 0 0 0 24px;
  color: #04BFBF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.4s;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav .nav-search {
    font-size: 24px;
  }
}
@media screen and (max-width: 399px) {
  .navbar .main-nav .nav-search {
    margin: 0 0 0 12px;
  }
}
.navbar .main-nav .nav-search:hover {
  color: #333333;
}
.navbar .main-nav .menu-toggler {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 0 0 0;
  margin: 0 0 0 24px;
  color: #04BFBF;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.4s;
}
@media screen and (max-width: 991px) {
  .navbar .main-nav .menu-toggler {
    display: block;
  }
}
@media screen and (max-width: 399px) {
  .navbar .main-nav .menu-toggler {
    margin: 0 0 0 12px;
  }
}
.navbar .main-nav .menu-toggler:hover {
  color: #333333;
}
.navbar .main-nav .menu-toggler .hamburger-box {
  height: 8px;
  width: 35px;
  display: inline-block;
  position: relative;
}
.navbar .main-nav .menu-toggler .hamburger-box .hamburger-inner {
  display: block;
  width: 100%;
  top: 50%;
  margin-top: -2px;
  background-color: #04BFBF;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  transition: transform 0.15s ease;
}
.navbar .main-nav .menu-toggler .hamburger-box .hamburger-inner:before, .navbar .main-nav .menu-toggler .hamburger-box .hamburger-inner:after {
  content: "";
  height: 3px;
  border-radius: 3px;
  position: absolute;
  display: block;
  width: 100%;
  background-color: #04BFBF;
}
.navbar .main-nav .menu-toggler .hamburger-box .hamburger-inner:before {
  top: -10px;
}
.navbar .main-nav .menu-toggler .hamburger-box .hamburger-inner:after {
  bottom: -10px;
}
.navbar .main-nav .menu-toggler.open .hamburger-inner {
  background-color: #333333;
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navbar .main-nav .menu-toggler.open .hamburger-inner:before {
  background-color: #333333;
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out, background-color 0.15s ease;
}
.navbar .main-nav .menu-toggler.open .hamburger-inner:after {
  background-color: #333333;
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.15s ease;
}
.navbar .main-nav .search-box {
  position: absolute;
  right: 0;
  top: 100%;
  padding: 15px;
  margin-top: 2px;
  background: #ffffff;
  z-index: 12;
  width: 300px;
  border-radius: 2px;
  box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.2);
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.navbar .main-nav .search-box.open {
  opacity: 1;
  visibility: visible;
}
.navbar .main-nav .search-box input {
  background-color: #f8f8f8;
  color: #04BFBF;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0;
  box-shadow: none;
  border: none;
  padding: 12px 47px 12px 5px;
  height: 41px;
}
.navbar .main-nav .search-box button {
  background-color: #04BFBF;
  color: #ffffff;
  font-size: 17px;
  width: 40px;
  line-height: 40px;
  padding: 0;
  z-index: 2;
  margin: 0;
  border-radius: 0;
  min-width: 40px;
  height: 41px;
  border: none;
  transition: all 0.4s;
}
.navbar .main-nav .search-box button:hover {
  background-color: #001839;
  color: #ffffff;
}

.scroller-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 15px 0;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  background-color: #ffffff;
  z-index: 7;
}
.scroller-nav ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.scroller-nav ul > li {
  margin: 0;
}
.scroller-nav ul > li:not(:first-child) {
  padding-left: 12px;
  margin-left: 12px;
  border-left: 1px solid #e1e1e1;
}
.scroller-nav ul > li a {
  font-size: 13px;
  text-decoration: none;
  color: #000a1a;
}
.scroller-nav ul > li a:hover {
  color: #04BFBF;
}

.strong-points {
  padding: 70px 0;
  background-color: #04BFBF;
}
.strong-points .strong-point {
  display: flex;
  align-items: flex-start;
}
.strong-points .strong-point img {
  width: 30px;
  margin: 12px 24px 0 0;
}
.strong-points .strong-point .strong-content .strong-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}
.strong-points .strong-point .strong-content .strong-text {
  color: #ffffff;
  font-size: 14px;
}

.main-footer {
  padding: 40px 0;
  background-color: #001839;
}
.main-footer .footer-title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  padding: 10px 0;
  margin-bottom: 12px;
}
.main-footer .footer-text {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 12px;
}
.main-footer .footer-nav ul {
  color: #ffffff;
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-footer .footer-nav ul li {
  font-size: 13px;
}
.main-footer a {
  text-decoration: none;
  color: #ffffff;
}
.main-footer a:hover {
  color: #04BFBF;
}

.footer-bottom {
  background-color: #000a1a;
  padding: 15px 0;
}
.footer-bottom .copyright {
  font-size: 11px;
  color: #ffffff;
}
.footer-bottom a {
  font-size: 11px;
  text-decoration: none;
  color: #ffffff;
}
.footer-bottom a:hover {
  color: #04BFBF;
}

body {
  font-family: "Open-Sans", sans-serif;
}

.page-wrapper {
  min-height: calc(100vh - 150px);
}

.page-title-area {
  padding: 50px 0;
  background-color: #F5F5F5;
}
.page-title-area .title {
  font-size: 28px;
  font-weight: 500;
  color: #000a1a;
}
.page-title-area .breadcrumb {
  font-size: 13px;
}
.page-title-area .breadcrumb a {
  text-decoration: none;
  color: #000a1a;
}
.page-title-area .breadcrumb a:hover {
  color: #04BFBF;
}

.flexslider {
  overflow: hidden;
}
.flexslider .flex-direction-nav a {
  top: 40%;
  margin: 0;
  opacity: 1;
}
.flexslider .flex-direction-nav a:before {
  color: #ffffff;
  margin-top: -8px;
}
.flexslider.navslider li img {
  cursor: pointer;
  opacity: 0.5;
}
.flexslider.navslider li img:hover {
  opacity: 0.8;
}
.flexslider.navslider li.flex-active-slide img {
  opacity: 1;
}

.product-details h1, .product-details .h1 {
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 4px;
  color: #000a1a;
}
.product-details h2 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #5d5d5d;
}
.product-details h4, .product-details .h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #000a1a;
}
.product-details p {
  font-size: 13px;
  margin-bottom: 12px;
  color: #5d5d5d;
}
.product-details ul {
  font-size: 13px;
  margin-bottom: 12px;
  color: #5d5d5d;
}
.product-details .product-features {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px 8px -8px;
}
.product-details .product-features .single-feature {
  width: 50%;
  padding: 0 8px;
  margin-bottom: 12px;
  display: flex;
}
@media screen and (max-width: 479px) {
  .product-details .product-features .single-feature {
    width: 100%;
  }
}
.product-details .product-features .single-feature > i {
  margin: 3px 12px 0 0;
}
.product-details .product-features .single-feature .feature-content .feature-title {
  font-size: 14px;
  color: #000a1a;
}
.product-details .product-features .single-feature .feature-content .feature-text {
  font-size: 13px;
  color: #5d5d5d;
}
.product-details .product-features.lg .single-feature {
  width: 33.333%;
}
@media screen and (max-width: 991px) {
  .product-details .product-features.lg .single-feature {
    width: 50%;
  }
}
@media screen and (max-width: 479px) {
  .product-details .product-features.lg .single-feature {
    width: 100%;
  }
}
.product-details .product-addons {
  display: flex;
  flex-wrap: wrap;
  margin: 8px -8px 0;
}
.product-details .product-addons .product-addon {
  width: 25%;
  padding: 0 8px;
  margin-bottom: 12px;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .product-details .product-addons .product-addon {
    width: 33.333%;
  }
}
@media screen and (max-width: 575px) {
  .product-details .product-addons .product-addon {
    width: 50%;
  }
}
@media screen and (max-width: 479px) {
  .product-details .product-addons .product-addon {
    width: 100%;
  }
}
.product-details .product-addons .product-addon label {
  font-size: 14px;
  color: #000a1a;
}
.product-details .price {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 12px;
}
.product-details .price span {
  color: #04BFBF;
}
.product-details .add-to-cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-details .add-to-cart .quantity {
  display: flex;
  margin: 0 16px 12px 0;
}
.product-details .add-to-cart .quantity button {
  border: 1px solid #e1e1e1;
  outline: none;
  background-color: #e7e7e7;
  color: #5d5d5d;
  font-size: 20px;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}
.product-details .add-to-cart .quantity input {
  border: 1px solid #e1e1e1;
  height: 40px;
  padding: 0 8px;
  width: 75px;
  text-align: center;
}
.product-details .add-to-cart .add-to-cart-button {
  margin: 0 0 12px 0;
}

.boat-carousel .carousel-item .overlay,
.opening-carousel .carousel-item .overlay {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  z-index: 2;
}
.boat-carousel .carousel-indicators,
.opening-carousel .carousel-indicators {
  z-index: 3;
}
.boat-carousel .carousel-caption,
.opening-carousel .carousel-caption {
  z-index: 3;
  padding: 0;
  top: 50%;
  bottom: unset;
  transform: translateY(-50%);
}
@media screen and (max-width: 479px) {
  .boat-carousel .carousel-caption,
  .opening-carousel .carousel-caption {
    top: 16px;
    transform: none;
  }
}
.boat-carousel .carousel-caption.center,
.opening-carousel .carousel-caption.center {
  left: 50%;
  right: unset;
  max-width: 70%;
  transform: translate(-50%, -50%);
  /*@media screen and (min-width: 480px){
      transform: translate(-50%,-50%);
  }
  @media screen and (max-width: 479px){
      transform: translateX(-50%);
  }*/
}
.boat-carousel .carousel-caption.right,
.opening-carousel .carousel-caption.right {
  left: unset;
  right: 15%;
  max-width: 40%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .boat-carousel .carousel-caption.right,
  .opening-carousel .carousel-caption.right {
    max-width: 70%;
  }
}
.boat-carousel .carousel-caption.left,
.opening-carousel .carousel-caption.left {
  left: 15%;
  right: unset;
  max-width: 40%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .boat-carousel .carousel-caption.left,
  .opening-carousel .carousel-caption.left {
    max-width: 70%;
  }
}
.boat-carousel .carousel-caption .carousel-caption-text,
.opening-carousel .carousel-caption .carousel-caption-text {
  font-family: "Open-Sans", sans-serif;
  font-size: 4.5vw;
  line-height: 4.5vw;
}
@media screen and (min-width: 1200px) {
  .boat-carousel .carousel-caption .carousel-caption-text,
  .opening-carousel .carousel-caption .carousel-caption-text {
    font-size: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .boat-carousel .carousel-caption .btn,
  .opening-carousel .carousel-caption .btn {
    margin-top: 16px;
    padding: 1.5vw 2vw;
  }
}
@media screen and (max-width: 399px) {
  .boat-carousel .carousel-caption .btn,
  .opening-carousel .carousel-caption .btn {
    margin-top: 8px;
  }
}
@media screen and (max-width: 349px) {
  .boat-carousel .carousel-caption .btn,
  .opening-carousel .carousel-caption .btn {
    display: none;
  }
}

.home-seo {
  text-align: center;
}
.home-seo h1 {
  font-size: 28px;
  color: #000a1a;
  margin-bottom: 6px;
}
.home-seo h2 {
  font-size: 19px;
  color: #000a1a;
  margin-bottom: 8px;
}
.home-seo p {
  font-size: 14px;
  color: #5d5d5d;
  margin-bottom: 12px;
}
.home-seo p:last-of-type {
  margin-bottom: 0;
}

.category-seo h1 {
  font-size: 20px;
  color: #000a1a;
  margin-bottom: 6px;
}
.category-seo h2 {
  font-size: 16px;
  color: #000a1a;
  margin-bottom: 8px;
}
.category-seo p {
  font-size: 13px;
  color: #5d5d5d;
  margin-bottom: 12px;
}

.product-box .product-image {
  position: relative;
}
.product-box .product-image .product-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}
.product-box .product-image .product-overlay .product-name {
  font-size: 14px;
}
.product-box .product-image .product-overlay .product-price {
  font-size: 14px;
  font-weight: bold;
  margin-top: 6px;
}
.product-box .product-image:hover .product-overlay {
  opacity: 0;
  visibility: hidden;
}
.product-box .product-image .driver-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.product-box .product-image .driver-badge + .driver-badge {
  right: 52px;
}
.product-box .product-image .driver-badge.without-driver {
  background: #ffffff;
  color: #04BFBF;
}
.product-box .product-image .driver-badge.with-driver {
  background: #04BFBF;
  color: #ffffff;
}
.product-box .product-image .supended-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #ffffff;
  background-color: #c10000;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  padding: 2px 12px;
}
.product-box .product-icons {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 375px) {
  .product-box .product-icons {
    display: block;
  }
}
.product-box .product-icons > .product-icon {
  width: 50%;
  background-color: #ffffff;
  text-align: center;
  border: 1px solid #e1e1e1;
  padding: 12px;
}
.product-box .product-icons > .product-icon i {
  font-size: 24px;
  margin: 0 0 4px 0;
  color: #04BFBF;
}
.product-box .product-icons > .product-icon:first-child {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}
.product-box .product-icons > .product-icon:first-child span {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.product-box .product-icons > .product-icon:first-child i {
  margin: 0 8px 0 0;
}
@media screen and (max-width: 375px) {
  .product-box .product-icons > .product-icon {
    width: 100% !important;
    display: block !important;
    padding: 12px !important;
  }
  .product-box .product-icons > .product-icon i {
    margin: 0 0 4px 0 !important;
  }
}
.product-box .product-icons > .product-icon .product-icon-text {
  font-size: 15px;
  color: #000a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-box .product-icons > .product-icon .product-icon-text.small {
  font-size: 14px;
}
.product-box .product-icons > .product-icon .product-icon-text span {
  font-size: 16px;
}
.product-box .product-icons > .product-icon .product-icon-text a {
  color: #000a1a;
  text-decoration: none;
}
.product-box .product-icons > .product-icon .product-icon-text a:hover {
  color: #04BFBF;
}
.product-box.ship .product-image {
  padding: 7px;
  border: 1px solid #e1e1e1;
  border-bottom: none;
}
.product-box.ship .product-image .product-overlay {
  top: 7px;
  bottom: 7px;
  left: 7px;
  right: 7px;
}

.pagination > .page-item .page-link {
  border-radius: 100px;
  font-size: 11px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000a1a;
  box-shadow: none !important;
}
.pagination > .page-item:not(:last-child) {
  margin-right: 8px;
}
.pagination > .page-item:hover .page-link, .pagination > .page-item:focus .page-link, .pagination > .page-item:active .page-link, .pagination > .page-item.active .page-link {
  color: #ffffff;
  background-color: #04BFBF;
  border-color: #04BFBF;
}

.flat-slider {
  margin-bottom: 16px;
}
.flat-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  background: #04BFBF;
  border-radius: 50% !important;
  border: none;
  cursor: pointer;
}
.flat-slider .ui-slider-handle:hover {
  opacity: 0.8;
}
.flat-slider .ui-slider-range {
  border: 0;
  border-radius: 100px;
  background: #001839;
}
.flat-slider.ui-corner-all,
.flat-slider .ui-corner-all {
  border-radius: 0;
}
.flat-slider.ui-slider {
  border: 0;
  background: #e1e1e1;
  border-radius: 100px;
}
.flat-slider.ui-slider-horizontal {
  height: 6px;
}
.flat-slider.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  margin-top: -10px;
}
.flat-slider.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 6px;
}
.flat-slider.ui-slider-vertical {
  height: 15em;
  width: 6px;
}
.flat-slider.ui-slider-vertical .ui-slider-handle {
  left: 50%;
  margin-left: -10px;
}
.flat-slider.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 6px;
}

.slider-values > input {
  text-align: center;
}
.slider-values > input:first-child {
  margin-right: 4px;
}
.slider-values > input:last-child {
  margin-left: 4px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -24px;
}
@media screen and (max-width: 767px) {
  .product-filters {
    margin: 0 -12px;
  }
}
.product-filters > div {
  width: 20%;
  padding: 0 24px;
  margin-bottom: 12px;
}
@media screen and (max-width: 991px) {
  .product-filters > div {
    width: 33.333%;
  }
}
@media screen and (max-width: 767px) {
  .product-filters > div {
    width: 50%;
    padding: 0 12px;
  }
}
@media screen and (max-width: 479px) {
  .product-filters > div {
    width: 100%;
  }
}
.product-filters > div.filters-submit {
  display: flex;
  align-items: center;
}
.product-filters > div.filters-submit button {
  width: 100%;
}
.product-filters-title {
  font-size: 20px;
  color: #000a1a;
  margin-bottom: 12px;
}

.boat-data-table {
  font-size: 14px;
}
.boat-data-table tbody > tr > th, .boat-data-table tbody > tr > td {
  width: 50%;
  color: #5d5d5d;
}

#ebrs-boat-optionals + .select2-container .select2-selection {
  padding: 6px 12px;
  border-color: #dee2e6;
}
#ebrs-boat-optionals + .select2-container .select2-selection .select2-selection__choice {
  max-width: 98%;
}

.driver-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.driver-box .driver-box-photo {
  position: relative;
}
.driver-box .driver-box-photo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.driver-box .driver-box-photo .driver-box-name {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  padding: 8px 16px;
  font-weight: bold;
  font-size: 17px;
  max-width: 100%;
}
.driver-box .driver-box-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 16px 24px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.3s;
}
.driver-box:not(.empty):hover .driver-box-content {
  top: 0;
}

.driver-popup-content p {
  font-size: 14px;
  margin-bottom: 12px;
}

h1 + h2 {
  margin-bottom: 12px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #5d5d5d;
}

p {
  color: #5d5d5d;
  margin-bottom: 8px;
}

.color-theme {
  color: #04BFBF;
}

.navisnet-boat-contact {
  padding: 32px;
  border: 1px solid #e1e1e1;
}
.navisnet-boat-contact input:not([type=checkbox]),
.navisnet-boat-contact textarea {
  border: 1px solid #e1e1e1;
  padding: 13px;
  border-radius: 2px;
  background-color: #f8f8f8;
  color: #808080;
  font-size: 13px;
}
.navisnet-boat-contact input:not([type=checkbox]):focus,
.navisnet-boat-contact textarea:focus {
  background-color: #f8f8f8;
  border-color: #e1e1e1;
  color: #808080;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}
.navisnet-boat-contact textarea {
  width: 100%;
  height: 150px;
}
@media screen and (max-width: 479px) {
  .navisnet-boat-contact textarea {
    height: 250px;
  }
}
.navisnet-boat-contact label {
  font-size: 13px;
}

.grecaptcha-badge {
  display: none !important;
}

#ui-datepicker-div {
  z-index: 2 !important;
}

.ui-datepicker-inline {
  width: 100%;
}

.ui-datepicker-calendar td:not(.past-date) {
  /*&.morning-partial-lock,
  &.afternoon-partial-lock{
      opacity: 1;

      a, span{
          background: #ffcf78;
          color: #454545;
      }
  }*/
}
.ui-datepicker-calendar td:not(.past-date) a, .ui-datepicker-calendar td:not(.past-date) span {
  background: #dfdfdf;
}
.ui-datepicker-calendar td:not(.past-date).ui-datepicker-current-day a, .ui-datepicker-calendar td:not(.past-date).ui-datepicker-current-day span {
  border: 1px solid #dfdfdf;
  background: #dfdfdf;
  color: #454545;
}
.ui-datepicker-calendar td:not(.past-date).locked-morning:not(.locked-afternoon), .ui-datepicker-calendar td:not(.past-date).locked-afternoon:not(.locked-morning), .ui-datepicker-calendar td:not(.past-date).booked-morning, .ui-datepicker-calendar td:not(.past-date).booked-afternoon {
  opacity: 1;
}
.ui-datepicker-calendar td:not(.past-date).locked-morning:not(.locked-afternoon) a, .ui-datepicker-calendar td:not(.past-date).locked-morning:not(.locked-afternoon) span, .ui-datepicker-calendar td:not(.past-date).locked-afternoon:not(.locked-morning) a, .ui-datepicker-calendar td:not(.past-date).locked-afternoon:not(.locked-morning) span, .ui-datepicker-calendar td:not(.past-date).booked-morning a, .ui-datepicker-calendar td:not(.past-date).booked-morning span, .ui-datepicker-calendar td:not(.past-date).booked-afternoon a, .ui-datepicker-calendar td:not(.past-date).booked-afternoon span {
  background: orange;
  color: #ffffff;
}
.ui-datepicker-calendar td:not(.past-date).locked-fullday {
  opacity: 1;
}
.ui-datepicker-calendar td:not(.past-date).locked-fullday a, .ui-datepicker-calendar td:not(.past-date).locked-fullday span {
  background: #777777;
  color: #ffffff;
}
.ui-datepicker-calendar td:not(.past-date).booked-fullday, .ui-datepicker-calendar td:not(.past-date).booked-morning.booked-afternoon {
  opacity: 1;
}
.ui-datepicker-calendar td:not(.past-date).booked-fullday a, .ui-datepicker-calendar td:not(.past-date).booked-fullday span, .ui-datepicker-calendar td:not(.past-date).booked-morning.booked-afternoon a, .ui-datepicker-calendar td:not(.past-date).booked-morning.booked-afternoon span {
  background: red;
  color: #ffffff;
}
.ui-datepicker-calendar td:not(.past-date).ui-datepicker-current-day:not(.locked-fullday):not(.booked-fullday) a, .ui-datepicker-calendar td:not(.past-date).ui-datepicker-current-day:not(.locked-fullday):not(.booked-fullday) span {
  border-color: #04BFBF;
  background: #04BFBF;
  color: #ffffff;
}
.ui-datepicker-calendar td.ui-datepicker-other-month {
  opacity: 0.7 !important;
}

.ui-tooltip {
  white-space: pre-line;
}

.calendar-legend {
  margin: 12px 0;
}
.calendar-legend .calendar-legend-square {
  width: 25px;
  height: 25px;
  /*&.partial-lock{
      background: #ffcf78;
  }*/
}
.calendar-legend .calendar-legend-square.available {
  background: #dfdfdf;
}
.calendar-legend .calendar-legend-square.single-lock-rental {
  background: orange;
}
.calendar-legend .calendar-legend-square.full-lock {
  background: #777777;
}
.calendar-legend .calendar-legend-square.full-rental {
  background: red;
}
.calendar-legend .calendar-legend-square.selected {
  background: #04BFBF;
}
.calendar-legend.smaller {
  font-size: 13px;
}
.calendar-legend.smaller .calendar-legend-square {
  width: 20px;
  height: 20px;
}

.go-back-btn {
  position: fixed;
  right: calc((100vw - 1320px) / 2 + 12px);
  bottom: 0;
  border-radius: 12px 12px 0 0;
  z-index: 5;
}
@media screen and (max-width: 1399px) {
  .go-back-btn {
    right: calc((100vw - 1140px) / 2 + 12px);
  }
}
@media screen and (max-width: 1199px) {
  .go-back-btn {
    right: calc((100vw - 960px) / 2 + 12px);
  }
}
@media screen and (max-width: 991px) {
  .go-back-btn {
    right: calc((100vw - 720px) / 2 + 12px);
  }
}
@media screen and (max-width: 767px) {
  .go-back-btn {
    right: calc((100vw - 540px) / 2 + 12px);
  }
}
@media screen and (max-width: 575px) {
  .go-back-btn {
    right: 24px;
  }
}
.go-back-btn > i {
  left: unset;
}

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