@font-face {
    font-family: "Balivia Free";
    font-weight: normal;
    font-style: normal;
    src: url("/css/fonts/balivia-free-bold.ttf");
}
/* Montserrat */
@font-face {
    font-family: 'Montserrat';
    src: url('/css/fonts/Montserrat/static/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/css/fonts/Montserrat/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/css/fonts/Montserrat/static/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/css/fonts/Montserrat/static/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
/*@font-face {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}*/

:root {
    --primary-color: #15ada5;
    --secondary-color: #ffffff;
    --bg-color: #e3f4f3;
    /*  --font-family: "M PLUS 1p", sans-serif;*/
    --font-family: "Montserrat", sans-serif;
    --body-font-color: #1c1b1a;
    --body-font-size: ;
    --page-width: 1340px;
    --font-balivia: "Balivia Free";
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: var(--body-font-color);
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer !important;
}

a:hover {
    color: var(--primary-color) !important;
}

a[href^="http://"]:after,
a[href^="https://"]:after {
    content: url(http://upload.wikimedia.org/wikipedia/commons/6/64/Icon_External_Link.png);
    margin: 0 0 0 5px;
}

a[href^="//charterberater.de/"]:after,
a[href^="http://charterberater.de/"]:after,
a[href^="https://admin.charterberater.de/"]:after,
a[href^="https://dev.charterberater.de/"]:after,
a[href^="https://crm.charterberater.de/"]:after,
a[href^="https://charterberater.de/"]:after {
    content: '';
    margin: 0;
}

.destinationListing ul {
    padding: 0px;
}

.destinationListing ul li {
    padding: 5px 30px;
    cursor: pointer;
    background-image: url('https://charterberater.de/images/windrosnew.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px;
    list-style-type: none;
}

.destinationListing ul li :hover {
    color: var(--primary-color) !important;
}

.navWithChildren {
    color: currentColor;
    cursor: not-allowed;
    text-decoration: none;
}

.noChildrenNav {
     display: block !important;     
}



.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    text-decoration: none;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mainArea p {
    line-height: 25px !important;
}

.page-width {
    max-width: var(--page-width);
    padding: 0px 20px;
    margin: 0 auto;
}

.grid {
    display: flex;
    align-items: center;
}

.section {
    margin-top: 0px;
}

.active-page {
    background-color: #000 !important;
}

.disabled {
    cursor: none;
    opacity: 0.5
}

.button {
    background: #000;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    border-radius: 40px;
    font-weight: 500;
    padding: 10px 30px;
    font-size: 16px;
    border: 0;
    transition: background 0.6s ease;
}

.button:hover {
    background: var(--primary-color);
    color: #fff;
}

.primary--button {
    background: #fff;
    color: var(--primary-color);
}

.primary--button:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.btn-lg:hover {
    opacity: .8;
}

/* header css */
header {
    position: sticky;
    border-bottom: 1px solid #d2d2d2;
    top: 0;
    z-index: 4;
    background: #fff;
}

.header-wrapper {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 20px;
    /*    padding: 10px 0;*/
    align-items: center;
}

.menu-drawer-icon .hamburger-icon {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon {
    position: absolute;
}

.hamburger-icon svg.icon {
    width: 20px;
    height: 20px;
    top: 0;
    position: absolute;
    left: 0;
}

.hamburger-icon svg.icon.icon-close,
body.menu-drawer .hamburger-icon svg.icon.icon-hamburger {
    opacity: 0;
}

body.menu-drawer .hamburger-icon svg.icon.icon-close {
    opacity: 1;
}

.header__heading-logo-wrapper {
    line-height: 0;
    width: 260px;
}

.header__heading-logo-wrapper span {
    position: absolute;
    left: -9999px;
}

h1.header__heading {
    margin: 0;
}

a.navigation-item__content {
    padding: 5px 0;
    display: inline-block;
}

span.navigation-item__label {
    padding-bottom: 6px;
    position: relative;
    display: inline-flex;
    line-height: 1;
}

span.navigation-item__label:hover {
    color: var(--primary-color);
}

/*.navigation-item__content.active span.navigation-item__label {
    border-bottom: 1px solid gray;
}*/
span.navigation-item__label:after {
    content: "";
    position: absolute;
    height: 1px;
    left: 0;
    bottom: 0;
    background: gray;
    width: 0;
    transition: all 0.3s ease;
}

/*.navigation-item__content:hover span.navigation-item__label:after {
    width: 100%;
}*/

/*.navigation-item__content.active span.navigation-item__label:after {
    background: var(--primary-color);
    width: 50%;
}*/

li.header__linklist-images-item {
    margin: 0px 0;
}

li.header__linklist-images-item a {
    border-bottom: 1px solid gray;
    padding-bottom: 10px;
    padding-top: 10px;
    display: block;

}

li:last-child.header__linklist-images-item a {
    border-bottom: none !important;
}

h5.header__linklist-images-header {
    margin: 10px 0 10px;
    font-size: 16px;
}

.header__linklist-images-container {
    width: 100%;
}

li.navigation-item:hover .header__linklist-images-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__linklist-images-link:hover {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.country-language-selector {
    height: 100%;
    display: flex;
    padding: 20px;
    align-items: flex-end;

}

.country-language-selector select {
    background: transparent;
    border: 0;
    outline: none;
    color: #000;
    cursor: pointer;
    width: 100px;
}

img.country-flag {
    width: 20px;
    height: auto;
    margin: 0 5px 3px 0;
}

.language-form {
    display: inline-flex;
    flex-direction: column;
    padding-left: 20px;
}

.language-form .customer-name {
    color: #bcbcbc;
    font-size: 11px;
    padding-left: 6px;
    font-weight: 500;
}

/* hero-slider css */

.banner {
    position: relative;
}

.banner .slick-next {
    right: 30px;
}

.banner .slick-prev {
    left: 30px;
}

.banner .slick-arrow {
    z-index: 1;
    width: 35px;
    height: 35px;
}

.banner .slick-arrow:before {
    width: 35px;
    height: 35px;
}

.slideshow__slide {
    position: relative;
}

.slideshow__media {
    height: 80vh;
}

.slideshow__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow__media video {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    translate: 0 -50%;
}

.slideshow__text-wrapper {
    position: absolute;
    top: 5vw;
    width: 100%;
    left: 0;
    color: #fff;
}

.content-row {
    justify-content: space-between;
    align-items: flex-start;
}

.content-caption-text p {
    margin: 0 0 10px;
    line-height: 1;
    font-size: 12px;
    font-weight: bold;
}

.content-caption-text h3 {
    margin: 0;
    font-weight: 600;
    font-size: 32px;
    color: var(--primary-color);
    line-height: 1;
}

.content-caption-text {
    padding: 5px 0 5px 20px;
    border-left: 2px solid #6f7073;
}
.darkStyle .content-caption-text p {
    color: #fff!important;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);

}

.darkStyle .content-caption-text h3 {
    color: #fff!important;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);

}

.darkStyle .content-caption-text {
    padding: 5px 0 5px 20px;
    border-left: 2px solid #fff;
    
}
.lightStyle .content-caption-text p {
    color: #000!important;
    text-shadow: 3px 3px 0px rgba(21, 71, 165, 0.3);
}

.lightStyle .content-caption-text h3 {
    color: #000!important;
    text-shadow: 3px 3px 0px rgba(21, 71, 167, 0.3);
}

.lightStyle .content-caption-text {
    padding: 5px 0 5px 20px;
    border-left: 2px solid #000;
}

.banner-subtitle {
    background: var(--primary-color);
}

.text-background {
    font-size: 16px;
    padding: 10px;
    margin-top: 10px;
    font-weight: 500;
}

.content-text {
    max-width: 400px;
    width: 100%;
}

.text-background.p {
    font-size: 12px;
    margin: 0;
    padding: 10px 20px 10px 10px;
    display: inline-flex;
    column-gap: 20px;
    align-items: center;
    font-weight: 500;
}

.text-background.p img {
    height: 13px;
    transition: transform 0.3s ease;
}

.text-background.p:hover img {
    transform: translateX(4px);
}

.text-background.p + .btn {
    background-color: var(--primary-color);
}

a.btn {
    padding: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    max-width: 140px;
    height: 38px;
    font-weight: 700;
    border-radius: 0 0 30px 30px;
    line-height: normal;
}

.call-us {
    background: var(--primary-color);
    color: #fff;
    border-radius: 15px;
    padding: 10px 20px 10px 10px;
    text-transform: uppercase;
    width: 100%;
    max-width: 190px;
    position: relative;
}

.call-us a {
    color: #fff;
    font-size: 16px;
    text-align: right;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.call-us a:hover {
    color: #000!important;
    font-size: 16px;
    text-align: right;
    text-decoration: underline;
    display: flex;
    flex-direction: column;
}

.call-us a span {
    font-size: 20px;
    display: block;
    text-align: right;
    font-weight: 700;
}

span.headphone-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    padding: 10px;
    border-radius: 100%;
}

.blink {
    color: red;
    animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.blink-soft {
    color: red;
    animation: blink-soft-animation 2s ease-in-out infinite;
}

@keyframes blink-soft-animation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.play-box {
    display: none;
    align-items: center;
    font-size: 16px;
    max-width: 230px;
    column-gap: 15px;
    margin-top: 20px;
}

.play-icon {
    background: #fff;
    border-radius: 100%;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: inline-flex;
}

/* banner-top css */

.banner-bottom {
    margin-top: -62px;
    position: relative;
    z-index: 1;
    padding: 10px 0;
    background-color: var(--bg-color);
}

.search__inside-wrapper {
    position: relative;
}

.banner-bottom .search__input:hover {
    box-shadow: 0 0 5px rgba(21, 173, 165, 0.8);
}

/* button.search__button {
  background-color: var(--primary-color);
  border: 0;
  border-radius: 50px;
  height: 40px;
  color: #fff;
  outline: none;
  box-shadow: none;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  min-width: 200px;
  cursor: pointer;
} */
svg.icon.icon-search {
    width: 15px;
    height: 15px;
    fill: none !important;
}

/* button.search__button:hover {
  background: #000;
} */
.banner-right-text {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    border-right: 1px solid #15ada5;
}

.banner-right-text span {
    font-size: 14px;
}

.banner-list {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    column-gap: 30px;
}
/*
.banner-list-item,
.banner-list .select2-container--default .select2-selection--single {
    display: inline-flex;
    align-items: center;
    padding-bottom: 10px;
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-bottom: 1px solid #15ada5;
    width: 100%;
    max-width: 160px;
    justify-content: space-between;
    outline: none;
    border-radius: 0;
    background-position-y: 3px;
}

#banner-list-item-1 + span .select2-selection--single {
    background: url(/images/location-icon.png) right no-repeat;
    background-size: 16px;
}

.select2-selection__arrow,
.select2-selection__clear {
    display: none;
}

.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    color: #000;
}

.select2-container--default
.select2-search--dropdown
.select2-search__field:focus {
    outline: none;
    background-color: lightblue!important;
}
#banner-list-item-2 + span .select2-selection--single {
    background: url(/images/calendar-icon.png) right no-repeat;
    background-size: 16px;
}

#banner-list-item-3 + span .select2-selection--single {
    background: url(/images/cabin-icon.png) right no-repeat;
    background-size: 16px;
}

#banner-list-item-4 + span .select2-selection--single {
    background: url(/images/share-icon.png) right no-repeat;
    background-size: 16px;
}*/

/*  feature collection css  */
.section-title.grid {
    justify-content: space-between;
    margin-bottom: 10px;
    row-gap: 15px;
}

p.description {
    font-size: 16px;
    margin: 0;
    flex-basis: 65%;
}

label.label {
    font-weight: 700;
    margin-right: 8px;
}

.filter {
    display: inline-flex;
    align-items: center;
}
/*
select.filter-option,
.filter .select2-container--default .select2-selection--single {
    appearance: none;
    background: url(/images/dropdown.png) no-repeat right;
    height: 40px;
    width: 130px;
    border-color: #a8a6a6;
    border-radius: 40px !important;
    padding: 0 0 0 10px;
    color: #a0a0a0;
    display: flex;
    align-items: center;
}*/

ul.grid.product-grid.slick-dotted {
    margin: 0 -10px;
    padding-bottom: 40px;
}

.slick-dots {
    bottom: 0;
}

ul.grid.product-grid li.product_item {
    margin: 0 10px;
}

.card-media {
    padding-top: 11px;
    position: relative;
    display: inline-flex;
}

.card-information {
    position: absolute;
    bottom: 0;
    color: #fff;
    left: 0;
    width: 100%;
}

.price__sale {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
}

.price-item--sale {
    padding: 5px;
    text-decoration: line-through;
    font-size: 12px;
}

.price-item--regular {
    padding: 5px 8px;
    background: black;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}

h3.card__heading {
    margin: 0;
    background: black;
    opacity: 0.8;
    padding: 3px 10px;
    font-size: 18px;
    font-weight: normal;
    margin-top: 5px;
}

.country-tag {
    display: flex;
    margin-top: 10px;
    font-size: 16px;
    text-transform: uppercase;
    column-gap: 10px;
    align-items: center;
}

.Offer {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 24px;
}

.Offer b {
    font-size: 25px;
    line-height: 1;
}

.sale-budge {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 90px;
    color: #fff;
}

.slick-dots li button:before {
    font-size: 10px;
}

.slick-dots li.slick-active button:before,
.slick-dots li button:hover:before {
    color: var(--primary-color);
}

slick-dots li button:before {
    color: #535353;
    opacity: 1;
}

.slick-dots li {
    margin: 0;
    width: 15px;
    height: 15px;
}

/* feature blog css */
.grid.featured-blog-wrapper {
    align-items: flex-start;
}

.sidebar {
    border: 1px solid #c3c3c3;
    padding: 30px;
    border-radius: 3px;
    max-width: 400px;
    margin-top: 20px;
}

.sidebar hr {
    margin: 20px 0 20px 0;
}

.recent-blog p {
    margin: 0;
}

.recent-blog {
    border-bottom: 1px solid #c3c3c3;
    padding: 20px;
}

.recent-blog a:hover {
    color: var(--primary-color);
}

.recent-blog h3 {
    margin: 0;
}

.recent-blog span {
    margin-bottom: 10px;
    display: inline-flex;
    position: relative;
    align-items: center;
    color: var(--primary-color);
    line-height: 1;
    font-weight: 600;
}

.recent-blog span:before {
    /*content: "\2022"; */
    margin-right: 10px;
    font-weight: 700;
    font-size: 24px;
}

/* a.button.blog-btn {
  width: 100%;
  display: flex;
  max-width: 120px;
  border-radius: 40px;
  background: black;
  color: #fff;
  padding: 10px;
  justify-content: center;
  margin-left: auto;
  font-weight: 500;
  font-size: 12px;
} */
.top-content.grid {
    justify-content: space-between;
    margin-bottom: 60px;
    width: 100%;
}

.widgetTitle h3 {
    background-color: var(--bg-color);
    font-size: 15px;
    font-weight: 700;
    padding: 7px;
    margin: 0px;
}

.top-content.grid p {
    margin: 0;
    max-width: 290px;
    font-size: 16px;
    color: #9c9c9c;
}

.mainArea {
    flex-wrap: wrap;
    max-width: calc(100% - 400px);
    padding-right: 40px;
    width: 100%;
}

.mainArea h2 {
    font-size: 20pt;
    background-color: var(--bg-color);
    color: #000;
    padding: 7px;
    clear: both;
}

#page-main a {
    font-weight: 500;
}

.top-content.grid h3 {
    margin: 0;
    text-align: right;
    max-width: 400px;
    text-transform: uppercase;
}

.newsListing {
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: calc(100% - 276px);
    padding-right: 30px;
    align-items: flex-start;
}

.newsListing h2 {
    width: 100%;
    margin: 0 0 40px;
}

.blog-item {
    flex-basis: 41%;
    min-height: 170px;
    border-bottom: 1px solid #ccc;
    padding-top: 10px;
}

.blog-img {
    line-height: 0;
    margin-top: -220px;
}

.blog-item p {
    margin: 0;
    color: #9c9c9c;
    font-size: 16px;
}

.blog-item span {
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.blog-item h4 {
    text-transform: uppercase;
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 800;
}

.blog-item a {
    color: var(--primary-color);
    display: inline-block;
    text-decoration: underline;
    font-size: 12px;
    margin: 10px 0 20px;
    font-weight: 500;
}

.blog-item a:hover {
    color: #000;
    text-decoration: none;
}

/* quick links css */
section.quick-links.section {
    background: var(--body-font-color);
    padding: 30px 0;
    color: #fff;
}

.quick-links li {
    padding-right: 15px;
    font-size: 18px;
}

.quick-links li a {
    display: inline-flex;
    column-gap: 15px;
}

.quick-links li a:hover {
    color: var(--primary-color);
}

.profiles {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    text-align: center;
}

/* footer css */
footer.footer {
    background: var(--body-font-color);
    color: #fff;
}

.footer-top-content {
    background-color: var(--primary-color);
    justify-content: space-between;
    padding: 8px 0;
}

.footer-copyright p {
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.footer-copyright p a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-copyright p img {
    margin-left: 15px;
}

ul.list-menu.grid.social-list {
    column-gap: 10px;
    margin-left: 10px;
}

li.socialLinks-item {
    line-height: 0;
}

ul.list-menu.grid.social-list a {
    display: inline-flex;
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 100%;
    color: var(--primary-color);
    justify-content: center;
    align-items: center;
}

ul.list-menu.grid.social-list a:hover {
    color: #fff;
    background: var(--primary-color);
}

li.socialLinks-item svg {
    width: 18px;
    height: 18px;
}

/* footer css */
.footer-bottom-content {
    padding: 80px 0;
}

.footer__blocks-wrapper.grid {
    column-gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-block {
    max-width: 25%;
}

.footer-block__heading {
    margin: 0 0 20px;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
}

.testimonial-item {
    padding: 40px 40px 0;
    position: relative;
    z-index: 1;
}

span.quote-text {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 400px;
    z-index: -1;
    line-height: 160px;
    font-weight: 700;
    font-family: var(--font-balivia);
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-footer.grid {
    column-gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-footer.grid .details {
    font-weight: normal;
    display: block;
}

ul.list-menu.shop-details {
    margin-top: 25px;
}

ul.list-menu.shop-details li {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

ul.list-menu.shop-details li span:last-child {
    display: flex;
    width: 100%;
    max-width: calc(100% - 44px);
    flex-wrap: wrap;
}

a.list-menu__item {
    margin-bottom: 15px;
    display: inline-block;
}

.footer-bottom-content a:hover {
    color: var(--primary-color);
}

.testimonial-list .slick-next {
    right: 0;
}

.testimonial-list .slick-prev {
    left: 0;
}

.slick-arrow,
.slick-arrow:before {
    width: 28px;
    display: block;
    height: 28px;
}

.slick-arrow:before {
    background-image: url("/images/arrow.png");
    background-size: 100%;
    font-size: 0;
}
.banner .slick-arrow:before {
    background-image: url("/images/arrow_w.png");
    background-size: 100%;
    font-size: 0;
}

.slick-next:before {
    rotate: 180deg;
}

/* scroll-down css */
/*.left-social-icon {
    position: fixed;
    left: 4%;
    z-index: 9;
    color: #fff;
    height: 30vh;
    top: 50%;
    translate: 0% -50%;
}
.left-social-icon ul {
    height: 100%;
        width: 40px;
}
.left-social-icon li.socialLinks-item svg {
    width: 25px;
    height: 25px;
}

.left-social-icon ul li.socialLinks-item {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: rgb(171 169 169 / 45%);
    margin-bottom: 10px;
    border-radius: 100%;
}*/
/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color:var(--bg-color)!important;
  }
  
  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit!important;
    float: left!important;
    border: none!important;
    outline: none!important;
    cursor: pointer!important;
    padding: 14px 16px!important;
    transition: 0.3s!important;
    font-size: 17px!important;
    border-radius:0!important;
    color: #000!important;
  }

  /* Change background color of buttons on hover */
  .tab button:hover {
    background:var(--primary-color)!important;
    color: var(--secondary-color)!important;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background:var(--primary-color)!important;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc!important;
    border-top: none;
  }
  
  /* Style the close button */
  .topright {
    float: right;
    cursor: pointer;
    font-size: 28px;
  }
  
  .topright:hover {color: red;}

/* Responsive css */
@media screen and (min-width: 768px) {
    .section {
        ul.list-menu.shop-details li span:last-child {
            display: flex;
            width: 100%;
            max-width: calc(100% - 44px);
            flex-wrap: wrap;
        }

        margin-top: 20px;
    }

    /* header css */
    .hamburger-icon svg.icon,
    .menu-drawer-icon .hamburger-icon {
        width: 25px;
        height: 25px;
    }

    /* hero-slider css */
    .content-text {
        max-width: 440px;
        padding-top: 2vw;
    }

    .text-background {
        font-size: 22px;
    }

    .text-background.p {
        font-size: 14px;
    }

    .play-box {
        margin-top: 40px;
    }

    .content-caption-text p {
        font-size: 14px;
    }

    .content-caption-text h3 {
        font-size: 50px;
    }

    /*  Banner bottom css  */
    /* button.search__button {
      font-size: 18px;
    } */
    .banner-right-text {
        font-size: 24px;
    }

    .country-language-selector .btn-lg {
        width: auto;
    }
}

@media screen and (min-width: 1025px) {
    /*  header css  */
    .menu-drawer-icon {
        display: none;
    }

    .navigation-container-content {
        text-align: left;
        height: 100%;
    }

    .list-menu--inline {
        display: inline-flex;
        flex-wrap: wrap;
        column-gap: 40px;
        align-items: flex-end;
        height: 100%;
    }

    li.navigation-item {
        height: 100%;
        display: inline-flex;
        align-items: center;
    }

    .header__linklist-images-wrapper {
        position: absolute;
        background: #fff;
        z-index: 2;
        border-top: 1px solid rgba(0, 0, 0, .15);
        border-radius: .25rem;
        box-shadow: 0 6px 7px #3e3e3e33;
        top: 100%;
        width: 130px;
        text-align: left;
        padding: 10px 0 0px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-7px);
        transition: all 0.3s ease;
    }

    .mega-menu .header__linklist-images-wrapper {
        width: 100%;
        left: 0;
        padding-bottom: 40px;
    }

    .custom-menu {
        display: flex;
    }

    .custom-menu:not(.mega-menu .custom-menu) li.header__linklist-images-item a {
        padding: 10px 9px 10px 5px;
    }

    .custom-menu:not(.mega-menu .custom-menu) li.header__linklist-images-item:first-child a {
        padding-top: 5px;
    }

    .mega-menu .custom-menu {
        column-gap: 30px;
    }

    ul.header__linklist-images-list.list-menu {
        width: 100%;
    }

    .table-hide {
        display: none;
    }

    h5.header__linklist-images-header {
        pointer-events: none;
    }

    /* hero-slider css */
    .slideshow__media {
        height: 85vh;
    }

    .slideshow__media img {
        width: 100%;
    }

    .slideshow__text-wrapper {
        top: 3vw;
    }

    .content-text {
        max-width: 590px;
    }

    .content-caption-text p {
        font-size: 16px;
    }

    .content-caption-text h3 {
        font-size: 60px;
    }

    .text-background {
        font-size: 30px;
    }

    .call-us {
        max-width: 180px;
    }

    /* Banner-bottom css  */
    .banner-right-text {
        padding-right: 50px;
    }

    .banner-list {
        padding-left: 40px;
        padding-right: 10px;
    }

    .search__inside-wrapper {
        margin-left: 20px;
    }

    /*.select2-container--open .select2-dropdown {
          width: 280px !important;
      }*/
}

@media screen and (min-width: 1350px) {
    .slideshow__media {
        height: auto;
    }
}

@media (max-width: 1350px) and (min-width: 1025px) {
    .banner-right-text {
        display: none;
    }

    .banner-list {
        padding-left: 0;
    }

    .banner-bottom {
        margin-top: -60px;
    }
}

@media screen and (max-width: 1024px) {
    /*  header css  */
    .menu-drawer {
        overflow-y: hidden;
    }

    .navigation-container-content {
        position: absolute;
        height: 100vh;
        width: 100%;
        top: calc(100% + 1px);
        left: 0;
        background: #fff;
        z-index: 3;
        padding: 20px;
        max-width: 320px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .menu-drawer .navigation-container-content {
        transform: translateX(0);
        background-color: #000;
        color: #fff;
    }

    h1.header__heading {
        text-align: center;
    }

    li.navigation-item {
        position: relative;
        border-bottom: 1px solid gray;
    }

    .mobile-arrow {
        position: absolute;
        right: 0;
        z-index: 2;
        cursor: pointer;
        font-size: 25px;
        font-weight: 500;
        width: 280px;
    }

    .plus-icon, .minus-icon{
        float:right;
    }

    .header__linklist-images-container ul.header__linklist-images-list.list-menu,
    .header__linklist-images-wrapper,
    .minus-icon,
    .mobile-arrow.active .plus-icon,
    .header__linklist-images-header.active .plus-icon {
        display: none;
    }

    .mobile-arrow.active .minus-icon,
    .header__linklist-images-header.active .minus-icon {
        display: block;
    }

    .custom-menu.page-width {
        padding: 0;
    }

    a.navigation-item__content {
        font-size: 16px;
    }

    h5.header__linklist-images-header {
        font-weight: 600;
        font-size: 14px;
        padding: 8px 0;
        margin: 0;
        border-bottom: 1px solid gray;
    }
    h5.header__linklist-images-header:last-child {
        border-bottom: none;
    }
    .header__linklist-images-container:last-child {
        margin-bottom: 10px;
    }

    .header__linklist-images-wrapper,
    ul.header__linklist-images-list.list-menu {
        padding-left: 8px;
    }

    h5.header__linklist-images-header.active {
        border: 0;
    }

    /*  banner bottom css  */
    .banner-bottom {
        padding: 20px 0;
    }

    .grid.banner-row {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }

    .banner-list {
        flex-wrap: wrap;
        row-gap: 30px;
        width: 100%;
    }

    .banner-list-item {
        max-width: 47%;
    }

    .banner-right-text {
        width: 100%;
    }

    .mainArea p {
        line-height: 25px !important;
    }

    button.search__button {
        /* min-width: 200px; */
        margin-top: 10px;
    }

    .banner-list .select2-container--default .select2-selection--single {
        max-width: 100%;
    }

    /* feature blog css */
    .top-content.grid {
        flex-wrap: wrap;
        row-gap: 10px;
        margin-bottom: 40px;
    }

    .top-content.grid p,
    .top-content.grid h3,
    .newsListing {
        max-width: 100%;
        text-align: left;
    }

    /*   footer css */
    .footer__blocks-wrapper.grid {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .footer-block {
        max-width: 50%;
    }
}

@media screen and (max-width: 991px) {
    /* feature blog css */
    .blog-item {
        flex-basis: 100%;
    }

    .mainArea {
        padding-right: 20px;
    }

    /*  footer css  */
    .footer-top-content {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    /* header css */
    .header__heading-logo {
        max-width: 180px;
    }

    /* hero-slider css */
    .content-row {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .text-background.p {
        padding: 10px 20px 10px 20px;
    }

    .call-us {
        max-width: 120px;
    }

    .call-us a span {
        display: none;
    }

    span.headphone-icon {
        width: 40px;
        height: 40px;
        left: -5px;
    }

    .play-icon-text > span {
        display: none;
    }

    .slideshow__text-wrapper {
        top: 3vw;
    }

    .slideshow__media {
        height: 53vh;
    }

    /*  banner bottom css  */
    .banner-bottom {
        margin: 0;
    }

    .search__inside-wrapper {
        max-width: 190px;
    }

    /*  feature collection css  */
    .section-title.grid {
        flex-wrap: wrap;
    }

    /* feature blog css */
    .grid.featured-blog-wrapper {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .mainArea {
        padding-right: 0;
        max-width: 100%;
    }

    .sidebar {
        max-width: 100%;
    }

    .sidebar {
        padding: 20px;
        margin-bottom: 20px;
    }

    /*  feature collection css  */
    p.description {
        flex-basis: 100%;
    }

    .sale-budge {
        right: 10px;
        width: 80px;
    }

    .Offer {
        right: 14px;
        font-size: 10px;
    }

    .Offer b {
        font-size: 16px;
    }

    /* quick links css */
    .quick-links .grid {
        flex-wrap: wrap;
        row-gap: 5px;
    }

    .quick-links li {
        font-size: 14px;
        padding-right: 10px!important;
    }

    /* footer css  */
    .footer-block {
        max-width: 100%;
    }

    .footer-copyright p {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
    }

    section.quick-links.section {
        padding: 15px 0;
    }

    .footer-bottom-content {
        padding: 40px 0;
    }

    .footer-block.testimonial {
        margin-bottom: 20px;
    }

    .footer-block-testimonial {
        max-width: 520px;
    }

    .banner-list-item {
        max-width: 100%;
    }

    .banner .slick-next {
        right: 5px;
    }

    .banner .slick-prev {
        left: 5px;
    }

    .slideshow__text-wrapper .page-width {
        padding: 0 40px;
    }
}

@media screen and (max-width: 500px) {
    .header-wrapper {
        column-gap: 10px;
    }

    .header__heading-logo {
        max-width: 140px;
    }

    .country-language-selector {
        padding: 10px 5px;
        align-items: center;
        max-width: 100%;
    }

    img.country-flag {
        width: 12px;
        margin: 3px 2px 0px 0;
    }

    .country-language-selector select.country-selector {
        transform: scale(0.6);
        margin-left: -8px;
        margin-top: 6px;
    }

    .language-form {
        padding-left: 0px;
        transform: scale(0.5);
        margin-left: -40px;
    }

    .slideshow__media video {
        scale: 1.8;
        z-index: -1;
    }

    .country-language-selector .dropdown {
        max-width: 52px;
        margin-right: 5px;
    }

    .btn-lg {
        width: 100% !important;
    }

    .country-language-selector .dropdown-item span:last-child {
        display: none;
    }

    .country-language-selector .dropdown-menu {
        min-width: initial;
    }
}

@media screen and (max-width: 390px) {
    /*  banner bottom css  */
    .banner-list-item {
        max-width: 100%;
    }

    /*  footer css  */
    .footer-copyright p img {
        margin-left: 0;
    }

    .footer-copyright p {
        justify-content: flex-start;
        row-gap: 5px;
    }

    .footer-top-content {
        justify-content: flex-start;
    }
}

/* start reviews css */
.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.wrapper .box {
    background: #fff;
    width: calc(33% - 10px);
    padding: 25px;
    border-radius: 3px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    min-height: 300px;
}

.wrapper .box i.quote {
    font-size: 20px;
    color: #13aba7;
}

.wrapper .box .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.box .info .name {
    font-weight: 600;
    font-size: 17px;
}

.box .info .job {
    font-size: 16px;
    font-weight: 500;
    color: #13aba7;
}

.box .info .stars {
    margin-top: 2px;
}

.box .info .stars i {
    color: #13aba7;
}

.box .content .image {
    height: 75px;
    width: 75px;
    padding: 3px;
    background: #13aba7;
    border-radius: 50%;
}

.content .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}

.box:hover .content .image img {
    border-color: #fff;
}

@media (max-width: 1045px) {
    .wrapper .box {
        width: calc(50% - 10px);
        margin: 10px 0;
        padding: 20px 40px 20px 40px;
    }
}

@media (max-width: 702px) {
    .wrapper .box {
        width: 100%;
    }
}

.h-css {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials {
    margin-top: 35px;
}

.m-top {
    margin-top: 20px;
}

/* end reviews css */

/* start form css */
form {
    border: 3px solid #fff;
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

/*textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    display: block;
}*/

/* button {
  background-color: #13aba7;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
} */

.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}

img.avatar {
    width: 40%;
    border-radius: 50%;
}

.container {
    padding: 16px;
}

span.psw {
    float: right;
    padding-top: 16px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }

    .cancelbtn {
        width: 100%;
    }
}

.feedback-form {
    background-color: #13aba7;
    padding: 50px;
    margin-top: 40px;
}

.f-heading {
    text-align: center;
    color: #13aba7;
}

.rating {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 40px;
}

.rating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    cursor: pointer;
}

.rating label:last-child {
    position: static;
}

.rating label:nth-child(1) {
    z-index: 5;
}

.rating label:nth-child(2) {
    z-index: 4;
}

.rating label:nth-child(3) {
    z-index: 3;
}

.rating label:nth-child(4) {
    z-index: 2;
}

.rating label:nth-child(5) {
    z-index: 1;
}

.rating label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.rating label .icon {
    float: left;
    color: transparent;
}

.rating label:last-child .icon {
    color: #000;
}

.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
    color: #ecd501;
}

.rating label input:focus:not(:checked) ~ .icon:last-child {
    color: #000;
    text-shadow: 0 0 5px #ecd501;
}

/* end form css */

@media only screen and (max-width: 767px) {
    .d-testimonial {
        display:block;
    }

    .wrapper {
        flex-wrap: nowrap;
        display: grid;
    }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 30px;
    }

    h4 {
        font-size: 24px;
    }

    .m-testimonial {
        display: none;
    }
}

.swiper {
    width: 100%;
    height: 300px;
}

.swiper-wrapper {
    padding-left: 0;
}

.swiper-slide {
    /* height: auto; */
}

.swiper-button-next,
.swiper-button-prev {
    color: #13aba7 !important;
}

.swiper-pagination-bullet-active {
    background: #13aba7 !important;
}

/* pagination css*/
.pagination {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.page-link {
    font-size: 14px;
    padding: 7px 12px;
    background-color: #13aba7;
    color: #fff;
}

.page-link:hover {
    background-color: #1c1b1a;
}

@media only screen and (max-width: 767px) {
    .pagination {
        list-style: none;
        display: flex;
        gap: 20px;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
        display: inline;
        text-align: center;
        padding-left: 0;
    }

    .page-item {
        display: inline;
        line-height: 2rem;
    }

    .pagination li:nth-child(4n):after {
        content: ' ';
        display: block;
    }
}

/* end pagination css*/

/* breadcrumb css*/
.bread-crumb {
    list-style: none;
    display: flex;
    gap: 10px;
    padding-left: 0;

}

.bread-crumb a span {
    padding-left: 5px;
}

.bread-crumb a:hover {
    color: #13aba7;
}

/* end breadcrumb css*/

:root {
    --swiper-navigation-size: 20px !important;
}


/* dropdown css*/

.bg-dark {
    background-color: #212529 !important;
}

.btn-lg {
    padding: 1rem 1rem;
    font-size: 15px;
    border-radius: 0;
    color: #fff;
    border: 0;
    width: 130px;
    text-align: left;
    margin: 0 2px;
}

.dropdown-item.active, .dropdown-item:active {
    background: #fff;
    color: #000
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    text-align: left;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}


.dropdown-item.active, .dropdown-item:active {
    background: #fff;
    color: #000
}

.dropdown-menu.menu-dropdown {
    flex-direction: column;
    box-shadow: 0 6px 7px #3e3e3e33;
    padding-top: 10px;
}

.dropdown-menu.menu-dropdown.show {
    display: flex;
}

.menu-dropdown-list:hover {
    color: var(--primary-color);
}

.dropdown-menu.menu-dropdown a.menu-dropdown-list {
    display: block;
    padding: 10px 9px 10px 5px;
}

.dropdown-menu.menu-dropdown li:first-child a.menu-dropdown-list {
    padding-top: 5px;
}

.dropdown-menu.menu-dropdown li:not(:last-child) a.menu-dropdown-list {
    border-bottom: 1px solid gray;
}

.color-remove {
    color: #fff !important;
}


@media (max-width: 768px) {
    .mobile-text {
        display: none;
    }
}


/* dropdown css*/


/* popupcss */
.popup h1 {
    position: absolute;
    display: inline-table;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFF0;
}

.popup h2 {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    text-align: center;
    color: #FFFFF0;
}

.popup-btn {
    /* position: absolute!important;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%); */
}

.main-btn-rect,
.main-btn-circle {
    position: relative;
    /* margin: 0; */
    /* font-family: 'Roboto', sans-serif; */
    color: #FFFFF0;
    background-color: rgb(252, 79, 79);
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 1px;
    outline: none;
    cursor: pointer;
    z-index: 100;
    padding: 10px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 0;
}

/* .main-btn-rect {
  padding: 10px 80px;
  line-height: 30px;
} */
.main-btn-rect:before,
.main-btn-rect:after {
    position: absolute;
    content: '';
    top: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 240, 0.2);
    -webkit-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

.main-btn-rect:before {
    left: 0;
}

.main-btn-rect:after {
    right: 0;
}

.main-btn-rect:hover:before,
.main-btn-rect:hover:after {
    width: 50%;
}

/* .main-btn-circle{
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
} */
.main-btn-circle:hover {
    -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
    -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
    box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}

.swal2-show {
    background-color: #f7f7f7;
    border-radius: 10px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: background-color .1s;
}

.popup.active {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, .4);
    z-index: 10001;
}

/* .popup .main-btn-rect{
  padding: 10px 100px;
} */
.popup .popup-content {
    width: 100%;
    max-width: 32em;
    max-height: 568px;
    min-width: 320px;
    margin: auto;
    padding: 25px 25px 30px;
    background-color: #f7f7f7;
    border-radius: 10px;
    color: #070000;
    -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);
    transition: margin .6s;
    -webkit-transition: margin .6s;
    -moz-transition: margin .6s;
    -o-transition: margin .6s;
}

.popup-content h6 {
    display: table;
    font-size: 16px;
    text-align: center;
    margin: 10px auto;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 100;
}

.form-group {
    position: relative;
    width: 90%;
    margin: 0px auto;
}

form#send input, form#send textarea {
    position: relative;
    margin-bottom: 32px;
    width: 100%;
    height: 29px;
    font-family: 'RobotoLight', sans-serif;
    text-indent: 20px;
    background-color: transparent;
    outline: 0;
    border: none;
    border-bottom: 1px solid #070000;
    -webkit-transition: border 0.6s;
    -o-transition: border 0.6s;
    transition: border 0.6s;
}

form#send input:focus,
form#send textarea:focus {
    border-bottom: 1px solid rgb(63, 173, 168);
}

form#send label {
    position: absolute;
    top: 0;
    line-height: 28px;
    -webkit-transition: color .5s;
    -o-transition: color .5s;
    transition: color .5s;
}

form#send input:focus + label,
form#send textarea:focus + label {
    color: rgb(63, 173, 168);
}

form#send .txt {
    line-height: 22px;
    left: 2px;
}

/* form#send .main-btn-rect {
  position: relative;
  display: block;
  padding: 12px 80px;
  margin: 0px auto;
  font-size: 14px;
} */
form#send .main-btn-rect i {
    margin-right: 5px;
}

.popup .fade-out {
    position: absolute;
    top: -20px;
    right: -20px;
    text-align: center;
    font-size: 15px;
}

.share-wrap {
    position: absolute;
    display: inline-table;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    text-align: center;
}

.share-btn {
    color: #FFFFF0;
    padding: 7px 25px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 100;
    font-size: 14px;
    font-family: 'Lobster', sans-serif;
    background-color: rgba(63, 173, 168, .8);
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color .5s;
    -webkit-transition: background-color .5s;
    -moz-transition: background-color .5s;
    -o-transition: background-color .5s;
}

.share-btn:hover {
    color: #FFFFF0;
    text-decoration: none;
    background-color: rgba(63, 173, 168, 1.0);
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
    display: inline-block
}

.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
    margin: 2px;
}

.resp-sharing-button {
    border-radius: 5px;
    transition: 25ms ease-out;
    padding: 6px 9px;
    transition: background-color .5s;
    -webkit-transition: background-color .5s;
    -moz-transition: background-color .5s;
    -o-transition: background-color .5s;
}

.resp-sharing-button__icon svg {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: top
}

.resp-sharing-button--small svg {
    margin: 0;
    vertical-align: middle
}

.resp-sharing-button__icon,
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none
}

.resp-sharing-button--facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
    background-color: #2d4373;
    border-color: #2d4373;
}

.resp-sharing-button--twitter {
    background-color: #55acee;
    border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
    background-color: #2795e9;
    border-color: #2795e9;
}

.resp-sharing-button--linkedin {
    background-color: #0077b5;
    border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
    background-color: #046293;
    border-color: #046293;
}

@media only screen and (max-width: 768px) {
    /* form#send .main-btn-rect {padding: 7px 60px; font-size: 14px;} */
    .popup-btn {
        padding: 7px 60px;
        font-size: 14px;
    }
}

form#send {
    background: transparent;
    border: 0;
}

form#send input, form#send textarea {
    text-indent: initial;
    margin-bottom: 15px;
}

/* form#send .main-btn-rect {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 25px;
    margin-top: 15px;
} */
/* popupcss */

/* register */
button#dropdownMenuButton1 {
    display: flex;
    padding: 15px;
    justify-content: center;
    column-gap: 5px;
    cursor: pointer;
}

button#dropdownMenuButton1 i {
    padding-top: 1.5px;
}

.account-dropdown button#dropdownMenuButton1 i {
    column-gap: 4px;
}

/* register */
/* date table css */
.daterangepicker {
    border-radius: 8px !important;
    padding: 15px !important;
    border: 0 !important;
    box-shadow: 0 .5rem 1.5rem 0 rgba(0, 0, 0, .16) !important;
    /* width: 50% !important;*/
}

.daterangepicker .drp-calendar {
    max-width: 100% !important;
    width: 50% !important;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    font-weight: 500;
}

thead > tr:first-child th {
    font-weight: 600 !important;
}

thead > tr:last-child th {
    border-bottom: 1px solid black !important;
}

table.table-condensed th, table.table-condensed td {
    font-size: 14px !important;
    padding: 5px !important;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover,
.daterangepicker td.active, .daterangepicker td.active:hover {
    border-radius: 4px !important;
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.daterangepicker:before,
.daterangepicker:after {
    display: none !important;
}

/**/
/*.select2-container--open .select2-dropdown--below,
span.select2-dropdown.select2-dropdown--above {
    box-shadow: 0 .5rem 1.5rem 0 rgba(0, 0, 0, .16) !important;
    border-radius: 8px !important;
    border: 0 !important;
    margin-top: 5px;
    padding: 10px 0 !important;
    width: 100% !important;
}

.select2-container--default .select2-results > .select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #fff;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 6px;
}

!* Track *!
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: #e3f4f3;
}

!* Handle *!
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb,
.select2-container--default .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color) !important;
}

.select2-container--default .select2-results__option {
    padding: 8px 10px !important;
}*/

form#search {
    background: transparent !important;
    border: 0 !important;
    width: 100% !important;
}
/*
.select2-container {
    width: auto !important;
}

.select2-container--default .select2-selection--multiple {
    height: 40px;
    border-color: var(--primary-color) !important;
}

.select2-container--default .select2-selection--single {
    height: 40px;
    border-color: var(--primary-color) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered li,
.select2-container--default .select2-search--inline .select2-search__field {
    margin: 0 !important;
    padding-left: 30px;
}

.select2-container--open .select2-dropdown--below {
    width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 6px 5px !important;
    display: flex;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #fff;
}*/

/* selected options in multi select */
/*.select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
   ackground-color: var(--primary-color) !important;
   border: 0 !important;
   color: #fff !important;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 12px !important;
   margin: 0 5px 0 0 !important;
   flex: 0 0 auto;

}*/

/*.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff !important;
}*/

/* generic datepicker */
input#date {
    border-radius: 4px !important;
    outline: none !important;
    padding: 10px 20px 10px 40px;
    background-color: #fff;
    appearance: none;
    background-image: url(/images/calendar-alt-svgrepo-com.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 6px;
    float: left;
    width: 32% !important;
}

/*.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 5px;
}*/

/* datepicker in horizontal search bar */
.banner-bottom input#date {
    margin: 0 14px;
    padding: 12px 20px 12px 40px;
}

/* selected options in single select dropdown */
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #e3f4f3 !important;
    color: #000;
}
/* TODO: what is this */
/*.select2-container--default .select2-selection--multiple .select2-selection__rendered::-webkit-scrollbar {
    height: 3px;
}*/

.banner-bottom {
    padding: 30px 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li:not(.select2-selection__choice) input {
    width: auto !important;
}

.select2.select2-container {
    float: left;
    width: 30% !important;
}

#smart_search + span input.select2-search__field,
#search_boat_type + span input.select2-search__field {
    padding-left: 30px;
}

/*#smart_search + .select2.select2-container input.select2-search__field {
    background-image: url(/images/search.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 6px;
}*/

#search_boat_type + .select2.select2-container input.select2-search__field {
    background-image: url(/images/ship-boat.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 6px;
}

li.select2-selection__choice + li input.select2-search__field {
    padding-left: 0 !important;
    background: none !important;
}

@media screen and (max-width: 767px) {
    input#date, .select2.select2-container {
        width: 100% !important;
        float: none !important;
    }

    input#date {
        margin: 10px 0 !important;
    }

    .daterangepicker {
        width: 92% !important;
    }

    button#dropdownMenuButton1 i {
        padding-top: 0;
    }

    #popup-reg.popup.active .popup-content {
        width: 95% !important;
    }
}

@media screen and (max-width: 590px) {
    .daterangepicker .drp-calendar {
        width: 100% !important;
    }
}

/* contact form css */
.grid.form-page {
    margin: 80px 0;
    justify-content: space-between;
    align-items: flex-start;
}

.custom-form {
    width: calc(100% - 420px);
}

.custom-form p.heading {
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px;
    font-size: 23px;
    text-transform: capitalize;
}

.custom-form form {
    margin: 0px auto;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 -15px;
    border: 0;
}

.custom-form .field {
    width: 50%;
    float: left;
    padding: 0 15px;
}

form label:not(#search label) {
    font-size: 14px;
    margin-right: 10px;
    margin-top: 12px;
    display: inline-block;
}

form label.label {
    text-transform: capitalize;
    font-weight: 500;
    display: block;
    width: 100%;
}

.searchYachtSidebar input,
.searchYachtSidebar select,
.custom-form input,
.custom-form select,
.standardForm input,
.standardForm select,
.standardForm textarea,
input[type="text"] {
    margin: 8px 0 15px;
    padding: 10px 10px;
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background: transparent;
    display: inline-block;
    transition: 0.2s ease all;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #444;
}

/*.custom-form input,
.custom-form select,
.standardForm input:focus{
    background-color: lightblue;
}*/

.tox-tinymce {
    margin-top: 10px;
}

.custom-form input[type="date"], .custom-form input[type="file"] {
    width: 100%;
}

/* .custom-form select {
  width: 100%;
} */

.field_input {
    width: 100%;
}

/* .form-select option {
  background-color: #ffffff!important;
  color: #1e1c1b!important;
}

.form-select option:hover {
  background-color: #15afa5!important;
  color: #fff!important;
} */

/* .custom-form input[type=text]:focus,
.custom-form input[type="password"]:focus {
	border-color:cornflowerblue;
} */

input[type=submit],
.inner-page button {
    padding: 10px 30px;
    width: auto;
    background: #000;
    /* background:var(--primary-color); */
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    display: inline-block;
    transition: background 0.2s ease;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
}

input[type=submit]:hover, .inner-page button:hover {
    background: var(--primary-color);
}

.custom-form input[type=submit]:hover {
    opacity: 0.8;
}

.custom-form input[type="submit"]:active {
    opacity: 0.4;
}

.custom-form .row-flex {
    width: 100%;
}

textarea {
    max-width: 550px;
    border-color: var(--primary-color);
    border-radius: 4px;
    width: 100% !important;
    outline: none;
}

.custom-form .select2.select2-container {
    width: 100% !important;
    margin: 10px 0 15px;
}

.custom-form .select2-container--default .select2-selection--single {
    padding: 15px 10px;
    border: 1px solid var(--primary-color);
}

.custom-form .select2-search--dropdown {
    display: none;
}

.single .custom-form {
    width: 80%;
    margin: 0 auto;
}

.custom-form .select2.select2-container input.select2-search__field {
    padding-left: 0 !important;
}

.custom-form .select2-container--default .select2-selection--multiple {
    height: 47px;
    padding: 0 5px;
}

.popup .fade-out {
    background: var(--primary-color);
}

/* .popup .popup-content {
  background: #fff;
} */
form#send .main-btn-rect {
    background: var(--primary-color);
    margin-top: 15px;
    transition: background 0.6s ease;
}

.swal2-confirm.swal2-styled.swal2-default-outline:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.swal2-confirm.swal2-styled.swal2-default-outline,
.swal2-cancel.swal2-styled.swal2-default-outline {
    background: var(--primary-color) !important;
    color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: none;
    border-radius: 50px;
    transition: background 0.6s ease;
}

.swal2-cancel.swal2-styled.swal2-default-outline {
    background: transparent !important;
    color: var(--primary-color);
}

.swal2-cancel.swal2-styled.swal2-default-outline:hover {
    background: var(--primary-color) !important;
    color: #fff;
}

form#send .main-btn-rect::before, form#send .main-btn-rect::after {
    content: none;
}

form#send .main-btn-rect:hover,
.swal2-confirm.swal2-styled.swal2-default-outline:hover {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

button.fade-out.main-btn-circle {
    position: relative;
    background: transparent;
    color: var(--primary-color);
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
    float: left;
    left: 200px;
    top: -38px;
    transition: background 0.6s ease;
}

button.fade-out.main-btn-circle:hover {
    background-color: var(--primary-color);
    color: #fff;
}

#popup-reg.popup.active .popup-content {
    animation: swal2-show .3s;
}

@keyframes swal2-show {
    0% {
        transform: scale(0.7);
    }
    45% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

form#send input {
    padding: 12px 0;
}

@media screen and (max-width: 991px) {
    .custom-form:not(.single .custom-form) form {
        margin: 0;
    }

    .custom-form:not(.single .custom-form) .field {
        width: 100%;
        float: none;
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .custom-form {
        width: 100%;
    }

    .order .custom-form {
        order: -1;
    }

    .custom-form p.heading {
        margin: 0 0 20px;
    }

    .grid.form-page {
        margin: 40px 0;
        flex-wrap: wrap;
    }

    .grid.form-page .sidebar {
        margin-top: 30px;
    }

    .single .custom-form form {
        margin: 0;
    }

    .single .custom-form .field {
        width: 100%;
        float: none;
        padding: 0;
    }
}

/* Segler Literatur css */

.banner-heading-wrapper {
    position: relative;
}

/* .banner-heading-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
} */
.banner-heading-wrapper h2 {
    margin: 0;
    position: absolute;
    left: 30px;
    font-size: 50px;
    top: 50%;
    z-index: 1;
    translate: 0 -50%;
    color: #fff;
    text-shadow: 5px 4px 2px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    background: transparent;
}

figure {
    margin: 0;
    display: inline-block;
    position: relative;
    line-height: normal;
}

.grid.inner-page {
    justify-content: space-between;
    align-items: flex-start;
    /*margin: 80px 0;*/
    gap: 20px;
}

.styled-table {

    border-collapse: collapse;

    margin: 25px 0;

    font-size: 0.9em;

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);

    border-radius: 5px 5px 0 0;
    width: 100%;

}

.styled-table caption {

    background-color: #fff !important;
    font-weight: 600;
    text-align: left;
    font-size: 18px;
    padding: 5px 0 5px 0;

}

.styled-table thead tr {

    /*background-color: #009879;*/

    background: var(--primary-color);

    color: #ffffff;

    text-align: left;

}


.styled-table th,
.styled-table td {

    padding: 12px 15px;

}


.styled-table tbody tr {

    border-bottom: 1px solid #dddddd;

}

.styled-table tbody tr:not(.odd) {
    background: #f3f3f3;
}

.styled-table tbody tr.th-heading + tr.odd + tr.even + tr.odd {
    background: #f3f3f3;
}

.styled-table tbody tr.th-heading + tr {
    background: #f3f3f3 !important;
}

.styled-table tbody tr.th-heading ~ tr:nth-child(2n+1) {
    background: #fff;
}

.styled-table tbody tr.th-heading {

    background-color: #fff !important;
    font-weight: bold;
    text-align: center;

}

.styled-table tbody tr.odd + tr.even {
    background: #f3f3f3;
}

.styled-table tbody tr.th-heading + tr.odd + tr.even {
    background: #fff;
}

.styled-table tbody tr:last-child {
    background: #fff !important;
}

.styled-table tbody tr:last-of-type {

    border-bottom: 2px solid #009879;

}

/* .styled-table tbody tr.odd {
  background: #fff !important;
} */


.styled-table tbody tr.active-row {

    font-weight: bold;

    color: #009879;

}

figcaption {

    background-color: grey;

    color: white;

    max-width: 400px;

    font-size: 10px;

    display: block;

    float: left;

    position: absolute;

    bottom: 0;

    right: 0;

}

.blog-list.location-page {
    max-width: 100%;
    padding: 0;
}

.grid.custom-grid {
    align-items: flex-start;
    gap: 40px;
}

.grid.custom-grid h2 {
    margin-top: 0;
}

.left-side-accordion {
    width: calc(100% - 400px);
}

form#newsletterForm {
    width: 100%;
}

form#newsletterForm span.select2-selection {
    border-color: var(--primary-color);
    padding: 10px 10px;
    height: 48px;
    margin: 8px 0 15px;
}

form#newsletterForm .select2.select2-container {
    width: 100% !important;
}

form#newsletterForm p {
    margin: 0;
}

.fieldsetDescription {
    margin-bottom: 15px;
}

form#newsletterForm p.clearfix {
    margin: 10px 0 15px;
}

.left-side-table {
    width: calc(100% - 420px);
}

.inner-page form {
    width: 100%;
}

.sidebar figure {
    margin: 15px 0;
}

.sidebar h4 {
    margin-top: 0;
}

.image-with-text.grid {
    gap: 30px;
    justify-content: space-between;
}

.image-with-text.grid > div {
    width: 50%;
}

.iamge-with-text-media {
    text-align: right;
}

#newsText p {
    margin: 0;
    padding: 0;
    padding-top:10px;
}

#newsText h2 {

    clear: both !important;
}

/* right aligned images */
figure.align-right,
img.alignright {
    float: right;
    margin: 10px 0 10px 10px;
}

figure.align-right figcaption {
    margin: 10px 0 10px 10px;
}

/* left aligned images */
figure.align-left,
img.alignleft {
    float: left;
    margin: 10px 10px 10px 0;
}

figure.align-left figcaption {
    margin: 0 10px 10px 0;
}

blockquote {
    border-left: 2px solid #ccc;
    margin-left: 1.5rem;
    padding-left: 1rem;
}

.inner-page a:not(li a) {
    font-weight: 500;
}

.inner-page a:not(li a):hover {
    color: var(--primary-color);
    text-decoration: underline;
}

form.standardForm {
    box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

form.standardForm fieldset {
    padding: 20px;
    min-width: initial;
}

form.standardForm legend {
    background: #e6fffe;
    padding: 4px 10px;
    color: #000;
    display: block;
    font-weight: 500;
    font-size: 18px;
}

form.standardForm .select2.select2-container {
    width: 100% !important;
    margin-top: 8px;
    margin-bottom: 10px;
}

form.standardForm textarea {
    margin-top: 20px;
}

form.standardForm input[type="submit"] {
    margin-top: 20px;
}

.left-side-table h3 {
    margin-top: 0;
}

.image-with-text {
    margin-bottom: 60px;
}

.sidebar > ul li, .sidebar > ol li {
    padding: 5px 0;
    cursor: pointer;
}

.sidebar > ul li:hover, .sidebar > ol li:hover {
    color: var(--primary-color);
}

#search_boat_type + .select2.select2-container span.select2-selection {
    border: 1px solid var(--primary-color);
    padding: 8px 12px;
    height: auto;
}

#search_boat_type + .select2.select2-container span.selection {
    width: 100%;
    display: block;
}

#search_boat_type + .select2.select2-container span.select2-selection {
    max-width: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 12px 20px 12px 40px;
    background-image: url(/images/sailboat.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 6px;
}

#search_boat_type + .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    line-height: normal;
}

#search_boat_type + .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #7e7575;
    font-weight: 500;
}

form span.select2-selection__placeholder {
    color: #999999 !important;
    font-style: italic;
}

@media screen and (max-width: 767px) {
    .blog-img {
        display: none;
    }

    .grid.inner-page {
        flex-wrap: wrap;
        margin: 40px 0;
    }

    .left-side-accordion {
        width: 100%;
    }

    .grid.custom-grid {
        flex-wrap: wrap;
    }

    .banner-heading-wrapper h2 {
        font-size: 30px;
    }

    .left-side-table {
        width: 100%;
    }

    li.header__linklist-images-item a {
        border-bottom: 1px solid gray;
        padding-bottom: 10px;
        padding-top: 10px;
        display: block;
        color: white;
    }

    li.header__linklist-images-item a:hover {
        border-bottom: 1px solid gray;
        padding-bottom: 10px;
        padding-top: 10px;
        display: block;
    }

    .header__linklist-images-container:hover {
        color: var(--primary-color);
    }
    .slick-arrow, .slick-arrow:before
    {
        z-index: 100;
    }
ul.literatureSideBarSlider{
        padding: 0px!important;
        max-width: 100%!important;
        margin: 10px 0px 0px 0px!important;
    }
    /* breadcrumb css*/
.bread-crumb {
    list-style: none;
    display: ruby-text;
    gap: 10px;
    padding-left: 0;
    text-align: left;
}
.bread-crumb a span {
    padding-left: 0px!important;
}
.testimonial-list button.slick-prev.slick-arrow{
        left: 0px !important;
        background:transparent!important;
        border:none!important;
        border-radius:0!important;
        padding: 0px!important;
    }
.testimonial-list button.slick-next.slick-arrow{
        right: 0px !important;
        background:transparent!important;
        border:none!important;
        border-radius:0!important;
        padding: 0px!important;
    }
.testimonial-list button.slick-arrow:before{
        z-index: 999;
        width: 25px;
        height: 25px;
        margin: 20px 0px 0px 0px!important;
        left: 0;
        top: 0;
        position: absolute;
    }
.slideshowSpecialsDestination .product_card
{
margin: 0 auto;
width: fit-content;
}
ul.grid.product-grid li.product_item
{
    margin: 0px!important;
}
.slideshowSpecialsDestination.slick-slide
{
    width: fit-content!important;
}
ul.grid.product-grid.slick-dotted
{
    margin:0px!important;
}
}

.flex {
    display: flex;
}

li.navigation-item {
    cursor: pointer !important;
}

li:hover > a {
    color: var(--primary-color);
}

/* dummy css start */


@media screen and (min-width: 768px) {

    .result-main-container{
        background-color: #e3f4f3;
    }

    .result-grid-container {        
        width: 100%;
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-gap: 5px;        
        padding: 5px;
    }
      
    .result-grid-container > div {        
        text-align: left;
        padding: 5 0;        
    }
    
      
    .grid-container-nested{
        background-color: white;
        width: 100%;
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-gap: 5px;        
        padding: 5px;
        display: subgrid                
    }
    .grid-container-nested > div {        
        text-align: left;
        padding: 5 0;        
    }

    .highlights-row{
        padding-bottom: 100px;
    }
    .prices-row > div{
        float:left;
        width: 33.33%;
        margin-top: 50px;
        text-align: center;
        
    }
    .price-container{
        background-color: rgb(245, 245, 245);
        border-style:solid;
        border-color:white;
    }

    .original-price{        
        color: red;
        text-decoration: line-through;
    } 
    .discount-price{        
        color: green;        
    } 

    
    .book-btn {        
        margin: 5px;
        padding: 5px;
        width:100px;
        border-radius: 4px;
        background-color: #04AA6D; 
        color: white; 
        border: 2px solid #04AA6D;
    }
  
    .book-btn:hover {
        background-color: #fff;
        color: black;
    }

    .price-container {
        padding-top: 5px;
    } 

    .full-span-item {
        grid-column: 1 / span 4;
    }
   
    .result-image {
        object-fit: cover;
        width: 100%;
        max-height: 300px;
    }

    .sorting-header{
        height: 60px;        
        background-color: white;
        margin: 10px;
        padding:10px;
    }
    .sort-btn{
        border: none;      
        border-radius: 5px;
        text-transform: uppercase;
        color:rgb(46, 117, 161); 
        background-color: #e3f4f3;
        margin: 1px;
        padding: 10px;
        
    }
    .sort-btn:hover {
        background-color: #15ada5;
        color: white;
    }
    .btn-desc img{
        width: 16px;
        transform: rotate(270deg);
    }
    .btn-asc img{
        width: 16px;
        transform: rotate(90deg);
    }
    .searchYachtSidebar .select2.select2-container{
        width: 100% !important;
       clear:both;
       margin-bottom: 5px;
       margin-top:5px;
    }
    #vertical-date{
        width: 100% !important;
    }
    #pagination-container{
        margin: auto;
        width: 50%;
        padding: 10px;
        text-align: center;
    }
}

/* 
@media screen and (max-width: 767px) {
    .result-main-container{
        background-color: #e3f4f3;
    }

    .result-grid-container {        
        width: 100%;
       
        grid-gap: 5px;        
        padding: 5px;
    }
      
    .result-grid-container > div {        
        text-align: left;
        padding: 5 0;        
    }
    
      
    .grid-container-nested{
        background-color: white;
        width: 100%;
        display: grid;
        grid-template-columns: auto auto auto auto;
        grid-gap: 5px;        
        padding: 5px;
        display: subgrid                
    }
    .grid-container-nested > div {        
        text-align: left;
        padding: 5 0;        
    }

    .item > p{
        font-weight: 700;
    }
    .highlights-row{
        padding-bottom: 100px;
    }
    .prices-row > div{
        float:left;
        width: 33.33%;
        margin-top: 50px;
        text-align: center;
        
    }
    .price-container{
        background-color: rgb(245, 245, 245);
    }

    .original-price{        
        color: red;
        text-decoration: line-through;
    } 
    .discount-price{        
        color: green;        
    } 

    
    .book-btn {        
        margin: 5px;
        padding: 5px;
        width:100px;
        border-radius: 4px;
        background-color: #04AA6D; 
        color: white; 
        border: 2px solid #04AA6D;
    }
  
    .book-btn:hover {
        background-color: #fff;
        color: black;
    }

    .price-container > p{
        padding-top: 5px;
    } 

    .full-span-item {
        grid-column: 1 / span 4;
    }
   
    .result-image {
        object-fit: cover;
        width: 100%;
        max-height: 300px;
    }

    .sorting-header{
        height: 60px;        
        background-color: white;
        margin: 10px;
        padding:10px;
    }
    .sort-btn{
        border: none;      
        border-radius: 5px;
        text-transform: uppercase;
        color:rgb(46, 117, 161); 
        background-color: #e3f4f3;
        margin: 1px;
        padding: 10px;
        
    }
    .sort-btn:hover {
        background-color: #15ada5;
        color: white;
    }
   
} */


/* dummy css end */

