/* Typography */
@font-face {
    font-family: 'jostlight';
	src: url('../fonts/jost-light.eot');
    src: url('../fonts/jost-light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/jost-light.woff2') format('woff2'),
         url('../fonts/jost-light.woff') format('woff'),
         url('../fonts/jost-light.svg#jostlight') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'jostregular';
    src: url('../fonts/jost-regular.eot');
    src: url('../fonts/jost-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/jost-regular.woff2') format('woff2'),
         url('../fonts/jost-regular.woff') format('woff'),
         url('../fonts/jost-regular.svg#jostregular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'poppinsmedium';
	src: url('../fonts/poppins-medium.eot');
    src: url('../fonts/poppins-medium.eot?#iefix') format('embedded-opentype'),
         url('../fonts/poppins-medium.woff2') format('woff2'),
         url('../fonts/poppins-medium.woff') format('woff'),
         url('../fonts/poppins-medium.svg#poppinsmedium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
} 

@font-face {
   font-family: 'poppinssemibold';
    src: url('../fonts/poppins-semibold.eot');
    src: url('../fonts/poppins-semibold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/poppins-semibold.woff2') format('woff2'),
         url('../fonts/poppins-semibold.woff') format('woff'),
         url('../fonts/poppins-semibold.svg#poppinssemibold') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
} 

@font-face {
    font-family: 'jostbold';
    src: url('../fonts/jost-bold.eot');
    src: url('../fonts/jost-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/jost-bold.woff2') format('woff2'),
         url('../fonts/jost-bold.woff') format('woff'),
         url('../fonts/jost-bold.svg#jostbold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'JOURNAL';
  src: url('../fonts/JOURNAL.eot');
  src: url('../fonts/JOURNAL.eot') format('embedded-opentype'),
    url('../fonts/JOURNAL.woff2') format('woff2'),
    url('../fonts/JOURNAL.woff') format('woff'),
    url('../fonts/JOURNAL.ttf') format('truetype'),
    url('../fonts/JOURNAL.svg#JOURNAL') format('svg');
	font-display: swap;
}

/* // End typography */

.main-nav ul li.menu-item-has-children .sub-menu {
  display: block;
  position: absolute;
  left: 0;
  top: 40px;
  background: #fff;
  width: fit-content;
  min-width: 130px;
  padding: 0px;
  white-space: nowrap;
  -moz-transition: max-height 400ms ease-out, min-height 500ms ease-in, padding 500ms ease-out, opacity 500ms ease-in, margin 500ms ease-out;
  -o-transition: max-height 400ms ease-out, min-height 500ms ease-in, padding 500ms ease-out, opacity 500ms ease-in, margin 500ms ease-out;
  -webkit-transition: max-height 400ms ease-out, min-height 500ms ease-in, padding 500ms ease-out, opacity 500ms ease-in, margin 500ms ease-out;
  transition: max-height 400ms ease-out, min-height 500ms ease-in, padding 500ms ease-out, opacity 500ms ease-in, margin 500ms ease-out;
  opacity: 0;
  margin: -1px 0 0; 
  max-height: 1px;
  min-height: 0;
  overflow: hidden;

}
.main-nav ul li.menu-item-has-children:hover > .sub-menu ,/* .main-nav ul li.menu-item-has-children:hover .sub-menu */ {-moz-transition: max-height 800ms ease-in, min-height 500ms ease-out, padding 500ms ease-out, opacity 800ms ease-out, margin 500ms ease-out;
-o-transition: max-height 800ms ease-in, min-height 500ms ease-out, padding 500ms ease-out, opacity 800ms ease-out, margin 500ms ease-out;
-webkit-transition: max-height 800ms ease-in, min-height 500ms ease-out, padding 500ms ease-out, opacity 800ms ease-out, margin 500ms ease-out;
transition: max-height 800ms ease-in, min-height 500ms ease-out, padding 500ms ease-out, opacity 800ms ease-out, margin 500ms ease-out;
/* again using min/max heights to deal with unknown length of lists */
min-height: 4em;
max-height: 100em;
opacity: 1;
}

/* IMPORTANT */
.main-nav ul li.menu-item-has-children:hover > .sub-menu {
    overflow: visible;
}

/* second level flyout */
.main-nav ul ul .sub-menu {
    top: 0 !important;
    left: 100% !important;
}

/* prevent ALL nested submenus opening together */
.main-nav ul li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    max-height: 100em;
    min-height: 4em;
}

/* Second-level submenu arrows */
.main-nav ul .sub-menu li.menu-item-has-children > a:after {
    right: 8px; /* spacing from right edge */
    border-color: #4a4a4a;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;

    /* original arrow shape */
    transform: rotate(45deg) translate(-50%, -50%);
}

/* Hover state */
.main-nav ul .sub-menu li.menu-item-has-children:hover > a:after {
    border-color: #fff !important;
	
	 /* smooth animation */
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;

    /* GPU acceleration */
    will-change: transform;

    /* original 45deg - 90deg */
    transform: rotate(-45deg) translate(-50%, -50%);
}

/* Second-level submenu text only in normal state */
.main-nav ul .sub-menu .sub-menu li > a:not(:hover) {
    color: #4a4a4a !important;
}

/* Preserve white hover text */
.main-nav ul .sub-menu .sub-menu li:hover > a,
.main-nav ul .sub-menu .sub-menu li > a:hover {
    color: #fff !important;
}

/* keep nested ones hidden until their own parent is hovered */
.main-nav ul ul li.menu-item-has-children > .sub-menu {
    opacity: 0;
    max-height: 1px;
    min-height: 0;
}

/* now show only hovered nested submenu */
.main-nav ul ul li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    max-height: 100em;
    min-height: 1.8em;
}

@media screen and (max-width: 1160px) {

    /* Disable second-level flyout on burger menu */
    .main-nav ul ul .sub-menu {
        top: auto !important;
        left: auto !important;
    }

    /* Remove second-level arrow spacing + animation */
    .main-nav ul .sub-menu li.menu-item-has-children > a:after {
        right: 0 !important;
        transition: none !important;
        will-change: auto;
        border-color: #4a4a4a !important;
        transform: rotate(45deg) translate(-50%, -50%);
    }

    /* No arrow rotation/color change on hover */
    .main-nav ul .sub-menu li.menu-item-has-children:hover > a:after {
        border-color: #fff !important;
        /* transform: rotate(45deg) translate(-50%, -50%); */
    }

    /* No white text on expanded/hovered submenu links */
    .main-nav ul .sub-menu .sub-menu li:hover > a,
    .main-nav ul .sub-menu .sub-menu li > a:hover {
        color: #4a4a4a !important;
    }

    /* Burger submenu hover background */
    .main-nav ul .sub-menu li:hover {
        background: #e2ded9 !important;
    }
	
	.main-nav ul .sub-menu .sub-menu li:hover > a,
    .main-nav ul .sub-menu .sub-menu li > a:hover {
        color: #fff !important;
    }
	
	/* Burger submenu hover background */
	.main-nav ul .sub-menu li:hover {
		background-color: #4a4a4a !important;
	}
}

.camping-tours-inner h6 { text-align: center;}

.hero-bg-image {
  overflow: hidden;
}

.hero-bg-image img {
  width: 100%;
  overflow: hidden;
}

.grid {
  width: 100%;
}

.grid:after {
  content: "";
  display: block;
  clear: both;
}

.grid-sizer {
  width: 33.33%;
}

.grid-item {
  float: left;
}

.grid-item a:hover {
  cursor: pointer;
}

/** Custom styles added by webmaster on 13.12.2021 **/

.banner-headding {
  line-height: 14px;
  border-left: 1px solid rgba(128, 128, 128, 0.1);
  border-right: 1px solid rgba(128, 128, 128, 0.1);
}

.location-tab-triger-inner ul li:first-child {
  display: none;
}

.tab-thumb {
  transition: all 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-transition: all 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -moz-transition: all 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.overlay-btn {
  opacity: 0.8;
}

.map-trigger-wrap {
  padding-top: 20px;
}

.destination-list-item ul {
  padding: 14px 38px 17px 97px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
  align-items: flex-start;
}

.accommodation-item-time {
  padding: 8px 0 8px 0;
}

#when-to-go .tours-item a,
.tours-item div.text-container p a,
.tours-item li a,
.tours-item .tours-accordion-content a {
  float: none;
  width: auto;
  font-family: 'jostlight', sans-serif;
}

.tours-item .tours-accordion-content a {
  font-size: inherit;
}

.when-go-info-content p a,
.african-wildlife-item-content a,
.biggest-inland-content a,
.location-tittle-text p a,
.search-text p a,
.advice-hero-text-description p a, 
.guide-safari-content p a,
.camping-accommodations-text p a,
.team-single-content p a,
.tours-item .tours-accordion-content a,
body.page-template-safari-page #experiences p a {
  /*font-family: 'poppinsmedium';*/
  font-weight: bold;
  color: #4a4a4a;
  text-decoration: underline;
}

.african-wildlife-item-content ul li a {
  font-family: 'poppinsmedium';
  font-weight: normal;
}

.when-go-info-content p a:hover,
.african-wildlife-item-content a:hover,
.biggest-inland-content a:hover,
.location-tittle-text p a:hover,
.search-text p a:hover {
  text-decoration: none;
}
.african-wildlife-item-content-btn a,
.btn a {
  text-decoration: none;
  font-weight: normal;
}

div.slick-slider .camping-content-info h3 {
  max-width: 385px;
}

.biggest-inland-content h3 {
  margin-top: 20px;	
}

.impressive-item h2,
.impressive-item h3,
.impressive-item h4,
.impressive-item h5 {
  padding-bottom: 0px;
  padding-top: 0px;
}

body.page-template-where-to-go-single-page  .why-info-item {
  width: 25.619883%;
  margin: 0 24.28596% 0 0;
}

.impressive-icon,
.why-info-item img {
  max-width: 65px;
}

.footer-social img {
  max-width: 32px;
}

.page-component.guide-safari-wrap,
body.home .page-component.trip-guide-wrap {
  padding-top: 0px;
}

body.page-template-what-to-do-single-page #when-to-go.african-wildlife-wrap {
  padding-top: 0px;
}

body.page-template-safari-page .page-component.guide-safari-wrap {
  padding-top: 60px;
}
body.page-template-safari-single-page .page-component.trip-guide-wrap {
  padding-bottom: 0px;
}

body.home .page-component.safari-world-item-wrap {
  padding-top: 34px;
}

body.page-template-safari-page
  #interested.page-component.tours-item.impressive {
  padding-top: 34px;
}

body.page-template-tour-page #when-to-go .why-info-item-inner {
  position: relative;
  left: 15%;
  text-align: center;
}

body.page-template-tour-page #who-should-go .text-container p,
body.page-template-tour-page #who-should-go.tours-item {
  padding-bottom: 0px;
}

body.page-template-tour-page #itinerary.page-component.tours-item {
  padding-bottom: 0px;
}

body.page-template-tour-page .tours-map-wrap {
  padding-top: 36px;
}

.page-component.should-go {
  padding: 4px 0 5px;
}

.guide-safari-wrap.simple-card-display .guide-safari-title-info h2 {
  margin-top: 94px;
}

.guide-safari-thumb img {
  padding-bottom: 2px;
}

.simple-card-display .guide-safari-inne-item {
  border-top: 2px solid #e2ded9;
}

body {
  font-size: 19px;
}

/*.tours-item div.text-container p, .tours-item div.text-container p a, .safari-experience .tours-item p, .safari-experience .tours-item p a {font-size:19px;}*/
.advice-hero-text-description p a {
  font-size: 22px;
}
.tours-item div.text-container p a,
.safari-experience .tours-item p a, 
.accommodation-plant-text a,
.tours-item li a {
  font-size: 19px;
  color: #4a4a4a;
  font-weight: bold;
}

.safari-experience .tours-item .impressive-item p a {
  font-size: 18px;
  font-weight: normal;
  float: none;
  width: auto;
}

.accommodation-plant-text a {
  text-decoration: underline;
}

.accommodation-plant-text a:hover {
  text-decoration: none;
}

.search-text p {
  margin-bottom: 36px;
}

#search.search-main {
  height: 52px;
}

/*.meet-guide-slider-item {width: 294px;}*/

#topbutton {
  position: fixed;
  display: none;
  height: 40px;
  width: 40px;
  line-height: 40px;
  right: 15px;
  bottom: 15px;
  z-index: 1001;
  background: #91963d;
  border-radius: 7px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  border: 1px solid #fff;
}

#topbutton:after {
  font-weight: bold;
  content: "\FE3F";
}

/*Blog*/
.blog-filter-bar .searchandfilter {
  margin: 0 1.93%;
}

.blog-filter-bar .searchandfilter > ul {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-column-gap: 20px;
  grid-template-areas:
    "a a a a a b b b b b"
    "c c c c c d d d e e";
}

.blog-filter-bar .searchandfilter > ul > li {
  grid-column: span 2;
}

.blog-filter-bar .searchandfilter > ul > li.sf-field-post_date {
  grid-column: span 4;
}

.searchandfilter ul > li > ul:not(.children) {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-column-gap: 20px;
}

.searchandfilter ul > li > ul:not(.children) li {
  grid-column: span 5;
}

body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul {
  display: grid;
   grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 20px;
  grid-template-areas:
    "a a b b c c";
}

body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul > li {
  grid-column: span 2;
}

body.page-template-guestbook-page .searchandfilter ul > li > ul:not(.children) {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 20px;
}

body.page-template-guestbook-page .searchandfilter ul > li > ul:not(.children) li {
  grid-column: span 3;
}

.searchandfilter ul li li {
  padding: 0;
}

.blog-filter-bar .searchandfilter h4 {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 17px;
  color: #363636;
}

.blog-filter-bar .sf-field-search input[type="text"],
.blog-filter-bar .select2-container--default .select2-selection--single,
.blog-filter-bar .sf_date_field input[type="text"] {
  font-family: 'poppinsmedium', sans-serif;
  font-size: 15px;
  line-height: 1.47;
  color: #363636;
  border-radius: 6px;
  border: solid 1px #dbdbdb;
  background-color: #fff;
  padding: 11px 20px 9px;
  height: auto;
  min-height: 50px;
}

.blog-filter-bar .sf-field-search input[type="text"]::placeholder {
  font-size: 15px;
  line-height: 1.47;
}
.select2-results__option {
  font-size: 15px;
  line-height: normal;
}
.blog-filter-bar .sf-field-search input[type="text"] {
  background-position: 95%;
}
.ll-skin-melon .ui-widget {
  background-color: #91963d;
  border-radius: 6px;
}

.ll-skin-melon .ui-datepicker th {
  background-color: #91963db5;
}
.ll-skin-melon .ui-datepicker th {
  border-color: #fff;
}
.blog-filter-bar
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 12px;
}
.blog-filter-bar
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  position: absolute;
  top: 45%;
  right: 0;
  height: 7px;
  width: 7px;
  border-style: solid;
  border-color: #4a4a4a;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg) translate(-50%, -50%);
}

.blog-filter-bar .searchandfilter > ul > li[data-sf-combobox="1"] label,
.blog-filter-bar .searchandfilter label {
  display: inline-block;

  width: 100%;
}

.blog-filter-bar .searchandfilter select.sf-input-select,
.blog-filter-bar .sf_date_field input[type="text"] {
  width: 100%;
}
.searchandfilter .sf-field-sort_order select.sf-input-select {
  width: 100% !important;
}

/* .blog-filter-bar .searchandfilter > ul > li.sf-field-sort_order {
  grid-area: e;
} */

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

.blog-filter-bar
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 28px;
}

.searchandfilter-date-picker .ui-datepicker .ui-datepicker-title select {
  padding: 5px;
  border-radius: 3px;
  border-color: #4a4a4a;
  border-width: 0 1px 1px 0;
  outline: none;
  box-shadow: none;
}
.ll-skin-melon td .ui-state-default {
  color: #4a4a4a;
}
.ll-skin-melon .ui-state-disabled .ui-state-default {
  color: #e2ded9;
}

.searchandfilter-date-picker
  .ui-datepicker
  .ui-datepicker-title
  .ui-datepicker-month {
  margin-right: 1%;
}
.ui-datepicker-year {
  margin-left: 1%;
}

.blog-filter-bar {
  float: left;
  width: 100%;
  padding-top: 20px;
}

.blog-wrap .searchandfilter input,
.blog-wrap .searchandfilter select,
.blog-wrap .searchandfilter textarea,
.blog-filter-bar .select2-container--default .select2-selection--single {
    font-size: 12px !important;
}

.blog-results {
  float: left;
  width: 100%;
  padding: 50px 0;
}
.blog-post-wrap {
  flex-flow: row wrap;
}
.blog-item {
  background-color: #fff;
}
.blog-item .camping-content-info p {
  border-bottom: none;
}

.single-blog-page {
  margin-top: 97px;
}
.post-header {
  padding: 46px 0 30px;
}
.single-blog-page .med-container {
  max-width: 850px;
  margin: 0 auto;
}
.post-header-content h1 {
  text-align: center;
  width: 100%;
  float: left;
  color: #91963d;
  font-family: 'poppinssemibold', sans-serif;
  margin-bottom: 20px;
}
.category-navigation {
  display: inline-block;
  width: 100%;
  margin-bottom: 46px;
}
.category-navigation ul li a {
  color: #91963d;
}

.related-posts {
  display: inline-block;
  width: 100%;
  padding: 60px 0;
  background-color: #f6f4f2;
}
.post-content-wrap {
  float: left;
  width: 100%;
  padding: 50px 0 100px;
}
.related-post-title {
  float: left;
  width: 100%;
}
.related-posts-wrapper {
  float: left;
  width: 100%;
  padding-top: 44px;
}

.post-content-wrap h2,
.post-content-wrap h3,
.post-content-wrap h4,
.post-content-wrap h5 {
  color: #91963d;
  font-family: 'poppinsmedium', sans-serif;
  margin-bottom: 20px;
  margin-top: 30px;
  display: inline-block;
}
.post-content-wrap p,
.post-content-wrap ul,
.post-content-wrap ol {
  margin-bottom: 25px;
}
.post-content-wrap ul,
.post-content-wrap ol {
  margin-top: 5px;
  display: inline-block;
  width: 100%;
}
.post-content-wrap a {
  color: inherit;
  text-decoration: underline;
}
.post-content-wrap a.btn-outline {
  color: #91963d;
  text-decoration: none;
}
.post-content-wrap a.btn-outline:hover {
  color: #fff;
}
a.btn-outline {
 background-color: #91963d;
 color: #fff !important;
}
.wp-block-image figcaption {
  text-align: center;
  font-size: 15px;
}
.wp-block-gallery,
.wp-block-image {
  padding: 20px 0;
}
.post-content-wrap ul li {
  position: relative;
  padding-left: 37px;
  margin-bottom: 14px;
}
.post-content-wrap ul li:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 11px;
  transform: translateX(-50%);
  width: 22px;
  height: 1px;
  background-color: #91963d;
}

.readmore ul li {
 list-style-type: none;
}
.readmore ul li {
 position: relative;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 14px;
  padding-left: 37px;
}
.biggest-inland-info .readmore ul  {
  padding-top: 20px;
}

.biggest-inland-info .readmore ul li, .biggest-inland-info .readmore ul li p {
  font-size: 18px;
}

.biggest-inland-info .readmore ul li p {
  margin-top: 18px;
}

.readmore ul li:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 11px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 22px;
  height: 1px;
  background-color: #75682C;
}

.post-content-wrap ol {
  margin-inline-start: 20px;
}
.post-content-wrap ol li {
  padding-left: 15px;
  margin-bottom: 14px;
}

.post-content-wrap blockquote {
  color: #91963d;
  text-align: center;
  font-family: 'JOURNAL';
  display: inline-block;
  width: 100%;
  padding: 25px 0;
}
.post-content-wrap blockquote p {
  font-size: 45px;
  line-height: 45px;
}

.post-content-wrap blockquote p a {
  font-family: 'JOURNAL';
}

.post-content-wrap blockquote cite {
  font-family: 'jostregular', sans-serif;
  margin-top: 12px;
  font-size: 18px;
  font-style: normal;
  display: inline-block;
}

.blog-content-wrapper {
  text-align: center;
}

body.author .blog-content-wrapper {
  max-width: 75%;
  margin: 50px auto;
}

body.author h2 {
  color: #91963d;
  font-family: 'poppinsmedium', sans-serif;
  margin-bottom: 20px;
  margin-top: 30px;
}

span.cat-name:nth-child(n+2):nth-child(-n+5):before {
  content: ' | ';
}

#author-avatar {
  text-align: center;
}

#author-description {
  text-align: justify;
}

#author-avatar img {
padding: 5px 15px 5px 0px;
float: left;
height: auto;
max-width: 100%;
}

div.post-header-content a {
color: #363636; /*#833200*/
text-decoration: underline; 
}

#upcoming-departures.tours-item h2,
#upcoming-departures-reversed.tours-item h2 {
  font-family: 'poppinssemibold', sans-serif;
  font-size: 50px;
  text-align: center;
  line-height: 55px;
  font-weight: 700;
  float: none;
  }
  
#upcoming-departures.tours-item p.child-rates {
  float: none;
  }

div.menu-404error-menu-container {
  margin: 0 auto;
  width: 170px;
}

#menu-404error-menu li a {
  display: block;
  font-family: 'jostlight', sans-serif;
  font-size: 19px;
  line-height: 22px;
  color: #4a4a4a;
}

.search-btn-wrap .search-btn {
  margin-top: 15px;
}

[type="checkbox"],
[type="radio"] {
  filter: grayscale(1);
}

.contact-form-wrap .gform_wrapper ul.gfield_checkbox li label::before {
  display:none;
}

span.gfield_required  {
  float: none;	
}

.gform_legacy_markup_wrapper h2.gsection_title {
  line-height: 2em;
}

.gform_legacy_markup_wrapper .gform-icon--circle-error::before {
  content: '';
}

.visually-hidden {
    /* display: none; */
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    overflow: hidden;
}

.post-featured-img {
  padding: 0 115px;
}

.okavango-slider-item-content h4 { 
  line-height: 26px;
}

input[type="submit"] {
  margin: 0;
  padding: 16px 30px 15px;
  border-radius: 15px;
  border: solid 1px #91963d;
  background-color: #91963d;
  font-family: 'poppinsmedium',sans-serif;
  font-size: 15px;
  line-height: 1.47;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  min-width: 260px;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
}

.gform_wrapper h2.gform_submission_error {
  float: none;
  padding-bottom: 0px;
}

.btn-bg-gold:hover {background-color: #898e35;}

.contact-form-wrap .gform_wrapper .gform_footer input.button:hover, .contact-form-wrap .gform_wrapper .gform_footer input[type="submit"]:hover, .contact-form-wrap .gform_wrapper .gform_page_footer input.button:hover, .contact-form-wrap .gform_wrapper .gform_page_footer input[type="submit"]:hover, input[type="submit"]:hover {background-color: #898e35;}

body.page-template-safari-page #why-us.tours-item.block-align-centre {
  padding-bottom: 0px;
}

body.page-template-safari-single-page #why-us ul {
text-align: left;	
}

body.page-template-where-to-go-single-page .trip-guide-wrap, body.page-template-what-to-do-single-page .trip-guide-wrap {
  padding-bottom: 60px;
}

body.page-id-2311 .camping-tours-wrap, body.page-id-1823 .camping-tours-wrap, body.page-id-1895 .camping-tours-wrap, body.page-id-1846 .camping-tours-wrap, body.page-id-40 .camping-tours-wrap {
  padding-top: 10px;
}

.category-navigation ul li::after {content: '|';padding: 0 3px;}
.category-navigation ul li:last-child::after {content: ' ';}

.contact-banner {
  width: 100%;
  background-color: #e2ded9;
  text-align: center;
  display: block;
  line-height: 20px;
  padding-top: 3px;
  min-height: 30px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #262b25;
}

.contact-banner a  { 
  color: #262b25;
}

.main-header-section {
  padding: 0px 0 15px;
}

.go-rating {
  position: absolute;
  float: left;
  margin-left: 3%;
  display: block;
  font-size: 16px;
  font-style: italic;
}

.contact-banner span.banner-text {
  font-size: 16px;
}

.contact-banner a.contact-form {
  font-size: 17px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-banner a.phonenumber {
  font-size: 17px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

div.sign-guestbook {
  text-align: center;
}

#join-our-team .tours-accordion-content ul {
  list-style: disc; 
  padding-left: 30px;
}

body.page-template-tour-page #overview.tours-item .text-container p:last-of-type {
  padding-bottom: 0px;
}

body.page-template-tour-page #overview.tours-item .text-container p {
  margin-bottom: 0px;
}

#overview.tours-item:first-child {
  padding-bottom: 0px;
}

.quick-enquiry-modal-inner .gform_body input[type="checkbox"] {
  width: auto;
}

.close-enquiry-modal {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 25px;
  font-weight: bold;
  color: #363636;
  cursor: pointer;
  background: none;
  border: none;
}

body .contact-form-wrap .gform_wrapper img.ui-datepicker-trigger {
  left: 10px;	
}

.camping .destination-list-wrap .common-wrap {
  max-width: 1080px
}

.camping .destination-list-wrap .common-wrap:lang(de-DE) {
  max-width: 1280px;
}

body.single-post .gb-block-element div.camping-item {
  width: 46%;	
}

body.single-post .gb-block-element .camping-content-info h3 {
  color:#91963d;margin-top: 5px; margin-bottom: 5px;
}

body.single-post .gb-block-element .camping-content-info p {
  margin-top: 10px; margin-bottom: 10px;
}

body.single-post .gb-block-element .camping-content-info .pakage-inner p {
  margin: 0px;
}

body.single-post .camping-tours-wrap {
  padding-top: 0px;
  padding-bottom: 5px;
}

/*.close-btn::before {content: 'x'; font-family: Arial;font-weight: 600;cursor: pointer; }

.close-btn {position: absolute; top: 15px; right: 15px; }*/

#mjframe {
  height: 420px !important;
} 

.wp-block-pullquote {
  padding: 1em 0;  	
}

.camping-tours-inner h2 {
  text-align: left;
}

.hero-safari-button {
  bottom: 25%;
  opacity: 0.9;
}

.hero-safari-button a {
  padding: 14px 23px 11px;	
}

.hero-safari-button a img {
  display: block;
  margin: 0 auto;
  -webkit-animation: bounce-top 1.2s infinite both;
  animation: bounce-top 1.2s infinite both;
}

@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    -moz-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
 
  25% {
    -webkit-transform: translateY(5px) rotate(0deg);
    -moz-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    -moz-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
 
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    -moz-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
}
@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    -moz-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
 
  25% {
    -webkit-transform: translateY(5px) rotate(0deg);
    -moz-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    -moz-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
 
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    -moz-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
}

@media only screen and (max-width: 1160px) {
  .main-nav ul li.menu-item-has-children .sub-menu {
    position: relative;
    top: 0;
    left: auto;
    width: 100%;
    background-color: #e2ded9;
    padding-top: 0;
    margin-top: 0px;
  }
  .main-nav ul li.menu-item-has-children:hover .sub-menu {
    margin-top: 20px;
  }
}

.trp_language_switcher_shortcode,
.trp-language-switcher {
    position: relative;
    float: right;
    margin: 0;
    z-index: 1000;
    width: auto;
}

.trp-ls-shortcode-current-language {
    position: relative;
    z-index: 1001;
}

.trp-ls-shortcode-language {
    position: absolute !important;
    top: 100%;     
    right: 0;
    width: 62px !important; 
    display: none; 
    background: #e2ded9;
    z-index: 1002;
    box-sizing: border-box;
}

.trp-language-switcher:hover .trp-ls-shortcode-language {
    display: block !important;
}

.trp-language-switcher {
  margin: 0;
  box-sizing: unset;
  float: right;
  z-index:1000;
  width: auto;
}

.navShown .trp-language-switcher > div {
  background-color: transparent;
}

.trp-language-switcher > div {
  padding: 0px 5px 0px 0px;
  background-color: #e2ded9;
  border: 0px solid #e2ded9;
  border-radius: 0px;
  background-image:linear-gradient(45deg,transparent 50%,gray 50%),linear-gradient(135deg,gray 50%,transparent 50%);
  background-position: calc(100% - 8px) calc(1em + 0px),calc(100% - 3px) calc(1em + 0px);
  background-size: 5px 5px,5px 5px;
}

.trp-language-switcher > div:hover {
  background-image:linear-gradient(45deg,transparent 50%,gray 50%),linear-gradient(135deg,gray 50%,transparent 50%);
  background-position: calc(100% - 8px) calc(1em + 0px),calc(100% - 3px) calc(1em + 0px);
  background-size: 5px 5px,5px 5px;
} 

.trp-language-switcher:hover .trp-ls-shortcode-language {
  padding: 0px 5px 0px 0px;
}

.trp-language-switcher > div > a.trp-ls-shortcode-disabled-language, 
.trp-language-switcher > div > a.trp-ls-shortcode-disabled-language:hover, 
.trp-language-switcher > div > a {
  color: rgb(38,43,37);
  font-size:16px;
  font-weight: inherit;

}

.trp-language-switcher > div > a:hover {
  background-color: #e2ded9;
}

.trp-shortcode-switcher__wrapper {
  position: relative;
  border: none;
  float: right;
  right: 4%;
}

.trp-shortcode-switcher {
  padding: 0px 0 !important;
}

.trp-current-language-item__wrapper:not(.trp-hide-arrow) {
  padding-right: 0px !important;
}

.trp-language-switcher > div, .trp-language-switcher > div:hover {
  background-image: unset;

} 
.trp-language-item-name {
  font-family: 'jostlight' !important; 
  font-weight: 600 !important; 
  font-size: 16px !important;
}

.trp-language-item {
  font-family: 'jostlight';
  padding: 0px 12px !important;
}
 
.trp-language-item span {
  font-family: 'jostlight' !important;
}

div.trp-switcher-dropdown-list .trp-language-item {
  font-family: 'jostlight' !important;
  padding: 6px 12px !important;
}

.post-content-wrap em {
  font-style: italic;
}

.post-content-wrap ul li::before {
  left:1px; 
  top: 15px;
}

#ez-toc-container a {
  margin-left: 20px;
  text-decoration: underline;
  text-decoration-color: #44444480;
}

.experience-slider .pakage-inner dfn {
  display:inline;	
}

/* Floating button styling */
.float-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #91963d;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
	z-index: 997;
	border: 1px solid #fff;
}

.float-button svg {
    width: 34px; 
    height: 34px; 
    transform-origin: 50% 50%;
    /* Reset any margin or padding that could affect positioning */
    margin: 0;
    padding: 0;
    vertical-align: middle;
    /* Optional: ensure display consistency */
    display: inline-block;
	fill: white; 
    stroke: white;
    stroke-width: 0.2;
}

/* body.page-template-contact-page .float-button {
	display: none;
} */

/* Hover and active effects */
.float-button:hover {
    background-color: #898e35;
    transform: scale(1.1);
}

.float-button:active {
    background-color: #274221;
    transform: scale(0.9);
}

#menu-main-menu li.go-rating-nav.mobi a::before {
	content: '';
	background-image: url("/wp-content/uploads/2025/04/GO-rating.png");
	background-repeat: no-repeat;
	display: block;
	width: 69px;
	height: 13px;
	margin: 0 auto;
}

#menu-main-menu li.go-rating-nav.mobi a {
	color: #262b25;
	margin-top: 20px;
	text-transform: unset;
	font-family: 'jostlight';
	font-style: italic;
}

.contact-info-item span.physical-address {
	margin-left: 30px;
}

body.page-template-where-to-go-single-page div.biggest-inland-map .overlay-btn {
	text-wrap: nowrap;
}

.tabs-trigger ul li.trip-tab-active {
    cursor: default;
 }
  
.tabs-trigger > ul li.trip-tab-active > a.tab-content-trigger {
    cursor: pointer;
}

div.nb-notification, div.currency-notice {
	font-family: 'jostlight',sans-serif;
	color: #363636;
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	padding: 15px 0;
	background-color: rgba(0,0,0,.075);
	border: 2px solid #d4d4d1;
	margin: 20px 5px;
}

div.currency-notice {
	color: #91963d;
	border: 2px solid #91963d;
}

div.nb-notification a {
	font-family: 'jostlight',sans-serif;
	float: unset;
	width: auto;
	font-size: 18px;
    line-height: 20px;
}

a.dates-rates-anchor  {
	font-family: 'jostregular';
	font-size: 32px;
	line-height: 36px;
	text-underline-offset: 4px;
}

body.page-template-where-to-go-single-page #tours.okavango-section {
	padding: 160px 0 0 0;
}

body.page-template-where-to-go-single-page #why-to-go.when-go-wrap {
	padding-top : 0px;
}

body.page-template-what-to-do-single-page #who-should-go .african-wildlife-item-content p, 
body.page-template-what-to-do-single-page #where-to .african-wildlife-item-content p, 
body.page-template-what-to-do-single-page #when-to-go .tours-item p, 
body.page-template-what-to-do-single-page .slider-align-right .african-wildlife-item .african-wildlife-item-content p, 
body.page-template-what-to-do-single-page #accommodation .accommodation-plant-text p,
.safari-experience .tours-item .impressive-item p,
body.page-template-advice-page .african-wildlife-wrap .african-wildlife-item-content p,
body.page-template-advice-page .advice-hero-text-description p, body.page-template-where-to-go-single-page #location .location-tittle-text p,
body.page-template-tour-page #overview.tours-item .text-container p {
	padding-bottom: 18px;
}

.main-wrap p strong, .text-container li strong, .biggest-inland-info .readmore ul li strong {
	font-family: 'jostlight',sans-serif;
}

.impressive-item p strong {
	font-family: 'jostregular',sans-serif;
}

.sister-company-section .footer-companies-ribbon:nth-of-type(4)::after {
height: 0px;	
}

.sister-company-section .footer-companies-ribbon:nth-of-type(4) p {
font-size: 13px;
}

.main-content-wrap.single-teams {
padding-top: 124px;	
}

:root {
  --fcal_primary_color: #91963d !important;
  --fcal_slot_border: #e6e6e6 !important;
  --group-title-border-color: #fff !important;
}

.fcal_wrap .fcal_calendar_inner { flex-wrap: wrap !important;}

.fcal_calendar_inner .fcal_side {min-width: 100% !important; min-height: 100px !important;}

.fcal_cal_wrap .fcal_multi_locations, .fcal_cal_wrap .slot_timing,  .fcal_slot_picker .fcal_slot_picker_header_action, .fcal_slot_wrapper .fcal_author/*_avatar, .fcal_slot_wrapper .fcal_author_name */, .fcal_cal_wrap .fcal_slot_heading  {
	display: none !important;
}

body.page-template-contact-page .page-section, body.page-template-contact-page .contact-page-buttons {margin-top: 20px;}

.enquiry-form-header h3 {
    color: #91963d; text-align: center;font-family: 'poppinsmedium', sans-serif;margin: 10px 0;
}

#menu.button-wrapper { display: flex; }

#tab-contact { margin-right: 5px; }

.contact-form-wrap a.contact-buttons {
  color: #363636;
  padding: 20px 0px;
  font-size: 15px;
  background-color: transparent;
  font-family: 'poppinsmedium', sans-serif;
  line-height: 18px;
  font-weight: normal;
  letter-spacing: normal;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  box-shadow: inset 0px 0px 0px 4px #91963d;
}

.contact-form-wrap a.contact-buttons.w--current {
  background-color: #91963d;
  box-shadow: none;
  color: #fff;
}

.contact-form-wrap a.contact-buttons:not(.w--current):hover {
  background-color: #91963d;
  color: #fff;
  box-shadow: none;
}

.w-tab-pane {
  display: none; 
}

.w--tab-active { 
  display: block;
}

#best-destinations.okavango-section {
margin: 60px 0;
}

body.page-id-10902 .page-component.trip-guide-wrap {
padding-top: 25px;
}	

.socials-cta {
	vertical-align:top;
	color: #91963d;
	font-family: 'poppinsmedium';
	padding-right: 10px;
	white-space: nowrap;
}
  
.ty-socials {
	padding: 10px 0;
}

.ty-video-container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 20px 0;
}

.ty-video-container iframe {
	width: 100%;
	max-width: 960px;
	aspect-ratio: 16 / 9;
}

.helpie-faq.accordions h3.collection-title, .helpie-faq.accordions h3.accordion__heading.accordion__category {
    color: #91963d;
    font-family: 'poppinsmedium',sans-serif;
    margin-bottom: 10px;
    margin-top: 10px;
    /* display: block; */
    float: unset;
}
  
.helpie-faq.accordions span.search__icon {
    width: unset;
    float: unset;
}

.helpie-faq.accordions .search__input  {
    border-radius: 6px;
}
  
.helpie-faq.accordions .search__message {
    margin: 50px 0;		
}
  
.helpie-faq.accordions .search__input:focus {
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    color: #363636;
}

.post-content-wrap .helpie-faq.accordions a  {
    color: #4a4a4a;
    font-weight: bold;
}

.post-content-wrap .helpie-faq.accordions a:hover  {
    text-decoration: none;
}
  
.helpie-faq.custom-styles .accordion__header::after, .helpie-faq.custom-styles .accordion__header::before, .helpie-faq.accordions .accordion__header::before, .helpie-faq.accordions .accordion__header::after {
    background: #91963d !important;
}

.accordion__header.active .accordion__title {
  color: #91963d;
  font-weight: 600;
}

.accordion__item:has(.accordion__header.active) {
  background-color: #ffffff;
}

.high-lights-item p a {
  font-size: 18px;
  line-height: 24px;
  float: unset;
  width: auto;
  font-family: jostlight,sans-serif;
  font-weight: bold;  
}

.search-filter-scroll-loading {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -50px;
	margin: 0;
}

.camping-content-info .pakage-inner span {
	margin-right: 1px;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  body.page-id-10902 #what-to-expect.tours-item {
   padding: 50px 0 0;
  }	
  
  body.page-id-10902 #our-guides.meet-guide-slider-area {
   margin-top: 5px;
  }
}

@media only screen and (max-width: 320px)  {
  #popmake-5682.pum-container {
   width: 90% !important; height: 85% !important;overflow-y: scroll;}

  #mjframe {
   min-height: 420px; height: 500px !important;
  }
}

/*iPhone fix for grid on team page*/
@media (max-width: 767px) {
  .mel-grid {
    width: 100%;
  }

  .mel-grid-item {
    width: 100% !important;
    left: 0 !important;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  /*.tours-map-wrap {border: 1px solid #e2ded9;margin-bottom: 50px;padding-bottom: 0px;}*/

  .map-trigger-item {
    /*width: 50%;*/
    padding: 9px 0 9px 4px;
    background-color: #f1efec !important;
  }

  .map-trigger-item:nth-child(2) {
    background-color: #ece8e3 !important;
  }

  .map-trigger-wrap {
    padding-top: 9px;
  }

  #when-to-go .tours-item a,
  .tours-item div.text-container p a,
  .when-go-info-content p a,
  .african-wildlife-item-content a,
  .biggest-inland-content a,
  .location-tittle-text p a,
  .search-text p a {
    font-size: 16px;
    line-height: 22px;
    color: #4a4a4a;
    font-weight: bold;
    text-decoration: underline;
  }

  #tour-feed .slick-slide .camping-content-info,
  #tours .slick-slide .camping-content-info,
  .recommened-tours .slick-slide .camping-content-info {
    min-height: 180px;
  }

  div.slick-slider .camping-content-info h3 {
    max-width: 299px;
    font-size: 17px;
  }
  
  .camping-content-info h3 {
	border-bottom: 0px solid #91963d;
	padding-bottom: 0px;
   }
   
  .camping-content-info a {
    border-bottom: 1px solid #91963d;	   
   }

  .african-wildlife-wrap {
    margin-top: 0px;
    padding-top: 35px;
  }

  .african-wildlife-item-content-btn {
    margin-top: 2px;
  }
  .african-wildlife-item {
    padding-bottom: 8px;
  }

  .okavango-section {
    padding-bottom: 17px;
  }

  .page-component.should-go {
    padding: 5px 0;
  }

  .camping .meet-guide-slider-area {
    margin-top: 94px;
  }

  #when-to-go .why-info-item-inner {
    position: relative;
    left: 0%;
  }

  #when-to-go.african-wildlife-wrap .common-wrap,
  #where-to-stay.okavango-section .common-wrap {
    padding: 0 15px;
  }

  .map-trigger-item {
    font-size: 28px;
    width: 100%;
  }

  .right-choice-btn.mobi {
    display: none;
  }

  .tours-item.block-align-centre p {
    text-align: center;
  }

  body.page-template-safari-page #why-us.tours-item.block-align-centre {
    padding-bottom: 0px;
  }

  body.page-template-safari-page
    #accommodation.page-component.accommodation-type-wrap {
    padding: 34px 0 50px;
  }

  body.page-template-safari-page
    #experiences.page-component.accommodation-type-wrap {
    padding: 64px 0 50px;
  }

  body.page-template-safari-page
    #guided-safaris.page-component.guide-safari-wrap {
    padding-top: 36px;
  }

  body.page-template-safari-page #tour-feed.page-component.camping-tours-wrap {
    padding-top: 36px;
  }

  body.page-template-safari-page
    #accommodations.page-component.page-component.camping-accommodations-wrap {
    padding-top: 18px;
  }

  body.page-template-safari-single-page
    #tour-feed.page-component.camping-tours-wrap {
    padding-top: 36px;
  }

  body.page-template-safari-single-page
    #accommodations.page-component.page-component.camping-accommodations-wrap {
    padding-top: 18px;
  }

  .destination-experience-wrap .when-go-info-content {
    margin-bottom: 20px;
  }

  #when-to-go.when-go-wrap,
  #why-to-go.when-go-wrap {
    padding-top: 36px;
  }

  body.page-template-where-to-go-single-page
    #things-to-do.african-wildlife-wrap {
    padding-top: 10px;
  }

  body.page-template-what-to-do-page .tours-item.block-align-centre {
    padding-bottom: 0px;
  }

  body.page-template-what-to-do-single-page .page-component.trip-guide-wrap {
    padding-bottom: 60px;
  }

  body.page-template-what-to-do-single-page #highlights.tours-item {
    padding-top: 18px;
  }

  body.page-template-what-to-do-single-page #tours.okavango-section {
    padding-top: 18px;
  }

  #travel-advice.page-component.tours-item {
    padding-bottom: 18px;
  }

  body.page-template-advice-page .page-component.advice-page-header {
    padding-bottom: 18px;
  }

  #camping-equipment.page-component.camping-accommodations-wrap,
  #vehicles.page-component.camping-accommodations-wrap {
    padding-top: 36px;
  }

  #vehicles.meet-guide-slider-area {
    padding-top: 18px;
  }

  body.page-template-tour-page #highlights.tours-item a {
    font-size: 20px;
  }

  body.page-template-tour-page .tours-map-wrap {
    margin-top: 0px;
    padding-top: 18px;
  }

  body.page-template-tour-page #itinerary.page-component.tours-item {
    padding-bottom: 18px;
  }

  body.page-template-tour-page .page-component.tours-feature-wrap {
    padding-top: 18px;
  }

  body.page-template-tour-page .feature-item.excluded {
    margin-top: 40px;
  }

  .tours-item div.text-container p,
  .tours-item div.text-container p a,
  .safari-experience .tours-item p,
  .safari-experience .tours-item p a,
  .safari-experience .tours-item .impressive-item p a,
  .accommodation-plant-text a  {
    font-size: 16px;
  }

  #when-to-go .tours-item a,
  .tours-item div.text-container p a,
  .safari-experience .tours-item p a,
  .safari-experience .tours-item .impressive-item p a,
  .advice-hero-text-description p a,
  .accommodation-plant-text a {
    color: #4a4a4a;
    font-weight: bold;
  }

  .blog-filter-bar .searchandfilter {
    margin: 0;
  }

  .blog-filter-bar .searchandfilter > ul {
    grid-template-areas: "a" "b" "c" "d" "e";
  }

  .blog-filter-bar .searchandfilter > ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .searchandfilter ul > li > ul:not(.children) {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-filter-bar .searchandfilter > ul > li {
    grid-column: span 2;
  }
  .blog-filter-bar .searchandfilter > ul > li.sf-field-post_date {
    grid-column: span 2;
  }
  .searchandfilter ul > li > ul:not(.children) li {
    grid-column: span 1;
  }

  body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul {
    grid-template-areas: "a" "b" "c";
  }

  body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-template-guestbook-page .searchandfilter ul > li > ul:not(.children) {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul > li {
    grid-column: span 2;
  }

  body.page-template-guestbook-page .searchandfilter ul > li > ul:not(.children) li {
    grid-column: span 1;
  }  
  
/*   .blog-filter-bar .searchandfilter > ul > li.sf-field-sort_order {
    grid-column: span 2;
    grid-area: e;
  } */

  .blog-item {
    width: 100%;
  }

  .single-blog-page {
    margin-top: 62px;
  }
  .post-content-wrap {
    padding: 0px 0 50px;
  }
  .post-content-wrap blockquote p {
    font-size: 35px;
    line-height: 35px;
  }
  .post-content-wrap blockquote cite {
    margin-top: 13px;
    font-size: 16px;
  }
  .post-content-wrap p,
  .post-content-wrap ul,
  .post-content-wrap ol {
    font-size: 16px;
  }

  .related-posts-wrap {
    flex-flow: row wrap;
  }

  #upcoming-departures.tours-item h2,
  #upcoming-departures-reversed.tours-item h2 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
  }

  .search-btn-wrap .search-btn {
    margin-top: 0px;
  }

  .nav-right-sticky span em.desk {
    display: none !important;
  }
  
  .post-featured-img {
    padding: 0 0px;
  }	
  
  .phone-nav {
	top: 85px;
	}
	
  .search-btn-wrap {
	top: 79px;
	}

  a.btn-arrow {
	display: inline-block;
	margin: 20px 0 0 65%;
	color: #91963d;
	text-decoration: underline;
	font-weight: bold;
	font-size: 16px;}

  a.btn-arrow::after {
	content: 'Read More';
  }

  a.btn-arrow img {
    display: none;
  }

  #overview.tours-item:first-child {
    margin-bottom: 10px;
  }
  .destination-wrap {
    padding-top: 130px;
  }

  .main-nav ul {
	padding-top: 130px;
	padding-bottom: 75px;
  }
 
  .trp-language-switcher {
	display:none !important;
  }
  
  .navShown .trp-language-switcher {
	display: block !important;
	top: 70px;
	position: absolute;
	left: 40%;
	right: 39%;
	background: transparent;
  }
  
  .trp-language-item {
	padding: 6px 12px !important;  
  }
  
  div.trp-switcher-dropdown-list .trp-language-item {
	padding: 0px 12px !important;  
  }
  
  .trp-language-item span {
	font-size: 20px !important;
  } 
  
  body.single-post .gb-block-element div.camping-item {
  width: 100%;	
  }

  .meet-guide-slider-area .meet-guide-slider-wrap .slick-prev {
	left: -8%;
  }

  .meet-guide-slider-area .meet-guide-slider-wrap .slick-next {
	right: -1.2%;
  }  

  .okavango-slider-wrap .slick-prev {
	left: -1.2%;
  }
  
  .post-content-wrap ul li::before {
	top: 11px;
  }  

  a.dates-rates-anchor  {
	font-size: 26px;
	line-height: 30px;
	text-decoration: underline;
  }
  
  a.dates-rates-anchor:hover {
	text-decoration: none;
  }

  body.page-template-what-to-do-single-page #who-should-go .african-wildlife-item-content p, 
  body.page-template-what-to-do-single-page #where-to .african-wildlife-item-content p, 
  body.page-template-what-to-do-single-page #when-to-go .tours-item p, 
  body.page-template-what-to-do-single-page .slider-align-right .african-wildlife-item .african-wildlife-item-content p, 
  body.page-template-what-to-do-single-page #accommodation .accommodation-plant-text p,
  .safari-experience .tours-item .impressive-item p,
  body.page-template-advice-page .african-wildlife-wrap .african-wildlife-item-content p,
  body.page-template-advice-page .advice-hero-text-description p, body.page-template-where-to-go-single-page #location .location-tittle-text p,
  body.page-template-tour-page #overview.tours-item .text-container p
  {
	padding-bottom: 15px;
  }
  
  body.single-post .blog-content-wrapper {
  max-width: 75%;
  margin: 50px auto;
  }
  
  #schedule .common-wrap {padding: 0px;}

  .helpie-faq.accordions h4.collection-title, .helpie-faq.accordions h3.accordion__heading.accordion__category  {
  font-size: 26px;
  line-height: 30px;
  }
  .helpie-faq.accordions .search__message {
  margin: 30px 0;		
  }
    

}

@media only screen and (min-width: 321px) and (max-width: 479px) {
 #popmake-5682.pum-container {
 width: 90% !important; height: 65% !important;overflow-y: scroll;
 }

 #mjframe {
 min-height: 420px; height: 460px !important;
 }
}

@media only screen and (min-width: 365px) and (max-width: 480px) {

  .contact-banner {
   padding-top: 10px;
   min-height: 60px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 359px) {
  div.slick-slider .camping-content-info h3 {
    font-size: 16px;
  }
  #tour-feed .slick-slide .camping-content-info,
  #tours .slick-slide .camping-content-info,
  .recommened-tours .slick-slide .camping-content-info {
    min-height: 200px;
  }
  .guest-item .african-wildlife-item-content-btn a {
    line-height: 25px;
  }
  
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  #when-to-go .tours-item a,
  .tours-item div.text-container p a,
  .when-go-info-content p a,
  .african-wildlife-item-content a,
  .biggest-inland-content a,
  .location-tittle-text p a,
  .search-text p a {
    font-size: 16px;
    line-height: 22px;
    color: #4a4a4a;
    font-weight: bold;
    text-decoration: underline;
  }

  #tour-feed .slick-slide .camping-content-info,
  #tours .slick-slide .camping-content-info,
  .recommened-tours .slick-slide .camping-content-info {
    min-height: 210px;
  }

  #when-to-go.african-wildlife-wrap .common-wrap,
  #where-to-stay.okavango-section .common-wrap {
    padding: 0 15px;
  }

  .map-trigger-item {
    padding: 9px 0 9px 4px;
    width: 100%;
  }

  .map-trigger-item span.title,
  .map-trigger-item span.text {
    text-align: left;
    padding-right: 0%;
    padding-left: 0;
    width: 100%;
  }
  .map-trigger-item h3 span.title {
    font-size: 16px !important;
    line-height: 23px !important;
  }
  .map-trigger-item span.text {
    font-size: 26px !important;
    line-height: 30px !important;
  }
  .map-trigger-item:nth-child(2) span.title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 0;
  }
  .map-trigger-item:nth-child(2) span.text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 0%;
  }

  #when-to-go .why-info-item-inner {
    position: relative;
    left: 0%;
  }

  body.page-template-safari-page #why-us.tours-item.block-align-centre {
    padding-bottom: 0px;
  }

  body.page-template-safari-page
    #accommodation.page-component.accommodation-type-wrap {
    padding: 34px 0 50px;
  }

  body.page-template-safari-page
    #guided-safaris.page-component.guide-safari-wrap {
    padding-top: 18px;
  }

  body.page-template-safari-page #tour-feed.page-component.camping-tours-wrap {
    padding-top: 36px;
  }

  body.page-template-safari-page
    #accommodations.page-component.page-component.camping-accommodations-wrap {
    padding-top: 18px;
  }

  body.page-template-safari-single-page
    #tour-feed.page-component.camping-tours-wrap {
    padding-top: 36px;
  }

  body.page-template-safari-single-page
    #accommodations.page-component.camping-accommodations-wrap {
    padding-top: 18px;
  }

  .destination-experience-wrap .when-go-info-content {
    margin-bottom: 20px;
  }

  #when-to-go.when-go-wrap,
  #why-to-go.when-go-wrap {
    padding-top: 36px;
  }

  body.page-template-where-to-go-single-page
    #things-to-do.african-wildlife-wrap {
    padding-top: 10px;
  }

  body.page-template-what-to-do-page .tours-item.block-align-centre {
    padding-bottom: 0px;
  }

  body.page-template-what-to-do-single-page .page-component.trip-guide-wrap {
    padding-bottom: 60px;
  }

  body.page-template-what-to-do-single-page #highlights.tours-item {
    padding-top: 18px;
  }

  body.page-template-what-to-do-single-page #tours.okavango-section {
    padding-top: 18px;
  }

  #travel-advice.page-component.tours-item {
    padding-bottom: 18px;
  }

  body.page-template-advice-page .page-component.advice-page-header {
    padding-bottom: 18px;
  }

  #camping-equipment.page-component.camping-accommodations-wrap,
  #vehicles.page-component.camping-accommodations-wrap {
    padding-top: 36px;
  }

  #vehicles.meet-guide-slider-area {
    padding-top: 18px;
  }

  body.page-template-tour-page #highlights.tours-item a {
    font-size: 18px;
  }

  body.page-template-tour-page .tours-map-wrap {
    margin-top: 0px;
    padding-top: 18px;
  }

  body.page-template-tour-page #itinerary.page-component.tours-item {
    padding-bottom: 18px;
  }

  body.page-template-tour-page .page-component.tours-feature-wrap {
    padding-top: 18px;
  }

  .tours-item div.text-container p,
  .tours-item div.text-container p a,
  .safari-experience .tours-item p,
  .safari-experience .tours-item p a,
  .safari-experience .tours-item .impressive-item p a,
  .accommodation-plant-text a {
    font-size: 16px;
  }

  #when-to-go .tours-item a,
  .tours-item div.text-container p a,
  .safari-experience .tours-item p a,
  .safari-experience .tours-item .impressive-item p a,
  .advice-hero-text-description p a,
  .accommodation-plant-text a {
    color: #4a4a4a;
    font-weight: bold;
  }

  .accommodation-item {
    width: 100%;
    margin-left: 0;
    margin-top: 22px;
  }
  .accommodation-item:nth-child(-n + 2) {
    margin-top: 24px;
  }
  .accommodation-item:first-child {
    margin-top: 0;
  }
  .accommodation-item span {
    text-align: left;
  }
  .accommodation-item-time.mobi {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    background-color: #91963d;
    color: #ffffff;
  }
  .accommodation-item-time span {
    color: #ffffff;
    text-align: center;
  }
  .accommodation-item-time.desk {
    display: none;
  }

  .blog-filter-bar .searchandfilter {
    margin: 0;
  }

  .blog-filter-bar .searchandfilter > ul {
    grid-template-areas: "a a a a b b b b c c c c" "d d d d e e e e f f f f";
  }

  .blog-filter-bar .searchandfilter > ul,
  .searchandfilter ul > li > ul:not(.children) {
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: ;
  }
  .blog-filter-bar .searchandfilter > ul > li {
    grid-column: span 4;
  }
  .blog-filter-bar .searchandfilter > ul > li.sf-field-post_date {
    grid-column: span 8;
  }
  .searchandfilter ul > li > ul:not(.children) li {
    grid-column: span 6;
  }
  .blog-filter-bar .searchandfilter > ul > li.sf-field-sort_order {
    grid-column: span 4;
    grid-area: f;
  }
  
 body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul {
    grid-template-areas: "a a b b c c" "d d e e f f";
  }

 body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul,
 body.page-template-guestbook-page  .searchandfilter ul > li > ul:not(.children) {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: ;
  }
 body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul > li {
    grid-column: span 2;
  }

 body.page-template-guestbook-page .searchandfilter ul > li > ul:not(.children) li {
    grid-column: span 3;
  }
 body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul > li.sf-field-sort_order {
    grid-column: span 2;
    grid-area: c;
  }
 
  #upcoming-departures.tours-item h2,
  #upcoming-departures-reversed.tours-item h2 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
  }

  .search-btn-wrap .search-btn {
    margin-top: 0px;
  }

  .nav-right-sticky span em.desk {
    display: none !important;
  }
  
  .post-featured-img {
      padding: 0 0px;
  }	
  
   .okavango-slider-item-content h4 { 
	line-height: 24px;
  }	
  
  .phone-nav {	
    top: 55px;
  }
   
  .search-btn-wrap { 
    top: 49px;
  }
  
  a.btn-arrow {
	display: inline-block;
	margin: 20px 0 0 65%;
    width: auto;
    padding: 13px 30px 11px;
    text-decoration: none;
    line-height: 22px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1;
    text-align: center;
    font-family: 'poppinsmedium';
    border: 1px solid #91963d;
    color: #91963d;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
  }
	
  a.btn-arrow::after {
    content: 'Read more';
  }
   
  a.btn-arrow img {
     display: none;
  }

  a.btn-arrow:hover {
   background-color: #91963d;
   color: #fff;
  }
  
  #overview.tours-item:first-child {
    margin-bottom: 10px;
  }

  .trp-language-switcher {
    display: none  !important;
	top: 45px;
  }
   
  .navShown .trp-language-switcher {
	display: block !important;
	position: absolute; 
	top: 51px;
	left: 66%;
	right: 22%;
	background: transparent;
  }
  
  .trp-language-item {
	padding: 6px 12px !important;  
  }
  
   div.trp-switcher-dropdown-list .trp-language-item {
	padding: 0px 12px !important;  
  }
  
  .trp-language-item span {
	font-size: 20px !important;
  }  

  body.single-post .gb-block-element div.camping-item {
	width: 100%;	
  }

  .meet-guide-slider-area .meet-guide-slider-wrap .slick-prev {
	left: -4%;
  }

  .meet-guide-slider-area .meet-guide-slider-wrap .slick-next {
	right: -1.2%;
  }  

  .okavango-slider-wrap .slick-prev {
	left: -1.2%;
  }

  a.dates-rates-anchor {
	font-size: 28px;
	text-decoration: underline;
  }
  
  a.dates-rates-anchor:hover {
	text-decoration: none;
  }

  body.page-template-what-to-do-single-page #who-should-go .african-wildlife-item-content p, 
  body.page-template-what-to-do-single-page #where-to .african-wildlife-item-content p, 
  body.page-template-what-to-do-single-page #when-to-go .tours-item p, 
  body.page-template-what-to-do-single-page .slider-align-right .african-wildlife-item .african-wildlife-item-content p, 
  body.page-template-what-to-do-single-page #accommodation .accommodation-plant-text p,
  .safari-experience .tours-item .impressive-item p,
  body.page-template-advice-page .african-wildlife-wrap .african-wildlife-item-content p,
  body.page-template-advice-page .advice-hero-text-description p, body.page-template-where-to-go-single-page #location .location-tittle-text p,
  body.page-template-tour-page #overview.tours-item .text-container p  {
	padding-bottom: 18px;
  }  

}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .grid-sizer {
    width: 100%;
  }
  
  .main-nav {
    overflow-y: auto;
  }
  
   .main-nav li a {
	padding: 0;	
  }

  .trp-shortcode-switcher__wrapper {
	   float: none;
   }  
 
  .meet-guide-slider-wrap .slick-next::after {
	display: none;
  }

  .meet-guide-slider-wrap .slick-next, .meet-guide-slider-wrap .slick-prev {
	top: 50%;
	z-index: 9;
  }
  
  .hero-safari-button {
	display: none;
  }
  
    .go-rating {
	display: none;
  } 

  body.home .african-wildlife-item-content p {
	font-size: 19px;
  }
  
  .tabs-trigger ul li {
    position: relative;
  } 
  
  .tabs-trigger ul li:last-child {
	border-bottom: 1px solid #91963d;  
  }
  
  .tabs-trigger ul li.trip-tab-active:last-child {
	border-bottom: 0;  
  }
  
  .tabs-trigger ul li::after {
	content: '\002B'; 
	position: absolute; 
	font-family: inherit;
	font-size: 20px; 
	line-height: 47px; 
	color: #4a4a4a; 
	right: 1px; 
	top: 5px;
	font-weight: bold;
  }
  
  .tabs-trigger ul li.trip-tab-active::after {
	content: ''; 
  }
  
  body.page-template-where-to-go-single-page #tours.okavango-section {
	padding: 60px 0 0 0;
}

  a.nb-enquiry-link {
	text-decoration: underline;
	text-underline-offset: 4px;
  }
  
  a.nb-enquiry-link:hover {
	text-decoration: none;
  }
  
  .readmore ul li {
  font-size: 15px;
 }  

  .biggest-inland-info .readmore ul li, .biggest-inland-info .readmore ul li p {
  font-size: 15px;
 }  
  
}

@media only screen and (min-width: 768px) {
  #tour-feed .camping-content-info,
  #tours .slick-slide .camping-content-info,
  .recommened-tours .camping-content-info {
    min-height: 265px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
  .blog-filter-bar .searchandfilter {
    margin: 0;
  }

  .blog-filter-bar .searchandfilter > ul {
    grid-template-areas: "a a a a b b b b c c c c" "d d d d e e e e f f f f";
  }

  .blog-filter-bar .searchandfilter > ul,
  .searchandfilter ul > li > ul:not(.children) {
    grid-template-columns: repeat(12, 1fr);
    grid-template-areas: ;
  }
  .blog-filter-bar .searchandfilter > ul > li {
    grid-column: span 4;
  }
  .blog-filter-bar .searchandfilter > ul > li.sf-field-post_date {
    grid-column: span 8;
  }
  .searchandfilter ul > li > ul:not(.children) li {
    grid-column: span 6;
  }
  .blog-filter-bar .searchandfilter > ul > li.sf-field-sort_order {
    grid-column: span 4;
    grid-area: f;
  }
  
  body.page-template-guestbook-page  .blog-filter-bar .searchandfilter {
    margin: 0;
  }

   body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul {
    grid-template-areas: "a a b b c c" "d d e e f f";
  }

   body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul,
   body.page-template-guestbook-page .searchandfilter ul > li > ul:not(.children) {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas: ;
  }
   body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul > li {
    grid-column: span 2;
  }

   body.page-template-guestbook-page .searchandfilter ul > li > ul:not(.children) li {
    grid-column: span 3;
  }
   body.page-template-guestbook-page .blog-filter-bar .searchandfilter > ul > li.sf-field-sort_order {
    grid-column: span 2;
    grid-area: c;
  }
  .nav-right-sticky span em.desk {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .destination-experience-wrap .when-go-info-content {
    margin-bottom: 20px;
  }

  #when-to-go.when-go-wrap,
  #why-to-go.when-go-wrap {
    padding-top: 60px;
  }

  #travel-advice.page-component.tours-item {
    padding-bottom: 18px;
  }

  body.page-template-tour-page #highlights.tours-item a,
  .high-lights-item-title h4 {
    font-size: 18px;
  }

  .menu-show .search-btn-wrap {
    display: block;
    z-index: 999;
  }

  .search-btn-wrap .search-btn {
    margin-top: 0px;
  }
    .phone-nav {
	top: 55px;
   }
   
  .search-btn-wrap {
	top: 49px;
   }
  
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .map-trigger-item h3 span.title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .map-trigger-item span.text {
    font-size: 18px !important;
    line-height: 22px !important;
  }

  body.home .camping-item:first-child {
    margin-left: 0px;
    margin-right: 0px;
  }

  body.home .camping-item:nth-child(2n + 1) {
    margin: 0 10px;
  }

  body.home .camping-item:nth-child(2n) {
    margin: 0 10px;
  }

  body.page-template-safari-page
    #accommodations.page-component.camping-accommodations-wrap {
    padding-top: 18px;
  }

  body.page-template-safari-single-page
    #tour-feed.page-component.camping-tours-wrap {
    padding-top: 36px;
  }

  body.page-template-safari-single-page
    #accommodations.page-component.camping-accommodations-wrap {
    padding-top: 18px;
  }

  body.page-template-advice-page .page-component.advice-page-header {
    padding-bottom: 18px;
  }

  #camping-equipment.page-component.camping-accommodations-wrap,
  #vehicles.page-component.camping-accommodations-wrap {
    padding-top: 36px;
  }

  body.page-template-tour-page .tours-map-wrap {
    margin-top: 0px;
    padding-top: 36px;
  }

  body.page-template-tour-page #itinerary.page-component.tours-item {
    padding-bottom: 36px;
  }

  body.page-template-tour-page .page-component.tours-feature-wrap {
    padding-top: 36px;
  }

  .african-wildlife-wrap {
    padding-top: 60px;
  }

  .menu-show .search-btn-wrap {
    display: block;
    z-index: 999;
  }

  .search-btn-wrap .search-btn {
    margin-top: 0px;
  }
  
  .post-featured-img {
      padding: 0 0px;
  }
  
  .grid-sizer {
    width: 50%;
  }
  
  .camping-item.grid-item,
  .camping-item.grid-item:nth-child(even),
  .camping-item.grid-item:nth-child(odd) {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }
  
  .main-nav {
   overflow-y: auto;
  }
  
  .main-nav li a {
	padding: 0;	
  }

  .hero-safari-button {
	display: none;
  }

  .go-rating {
	display: none;
  }   

  .tabs-trigger ul li:last-child {
	border-bottom: 1px;  
  }
  
  .tabs-trigger ul li.trip-tab-active:last-child {
	border-bottom: 0;  
  }

  .navShown .trp-language-switcher {
	background: transparent;
  }
  
  div.trp-switcher-dropdown-list .trp-language-item {
	padding: 2px 12px !important;  
  }  
  
}

@media only screen and (min-width: 1024px) and (max-width: 1160px) {

 div.meet-guide-slider-wrap .slick-next,  div.meet-guide-slider-wrap .slick-prev {
   display: none !important;
   }

  .phone-nav {
   top: 56px;
  }
  .search-btn-wrap {
   top: 35px;
  }
  
  .main-nav {
   overflow-y: auto;
  }
  
  .main-nav li a {
	padding: 0;	
  }

  .go-rating {
	display: none;
  }   
  
  .hero-safari-button {
	display: none;
  } 
  
  .navShown .trp-language-switcher {
	background: transparent;
  }  
  
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .blog-filter-bar .searchandfilter {
    margin: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .search-btn-wrap .search-btn {
    margin-top: 15px;
  }  
}

/* outsourced from plugin*/
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  font-family: 'jostregular', sans-serif !important;
}

.flatpickr-day.selected::after, .flatpickr-day.selected.startRange::after { 
  box-shadow: 10px 0 5px #e6e6e6;
  background-color: #e6e6e6;
  content: '.';
  display: block;
  width: 150px;
  overflow: hidden;
  margin: -40px 0 0 50px;
  color: #e6e6e6;
}

.flatpickr-day.selected.endRange::after { 
  
  content: '' !important;
  
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange {
  background-color: #262b25 !important;
  background: #262b25 !important;
  border-radius: 50px 0 0 50px !important; 
  border-color: #262b25 !important;
  box-shadow: 25px 0 0 #e6e6e6 !important;
}

.flatpickr-day.endRange.startRange {
  background-color: #262b25 !important;
  background: #262b25 !important;
  border-radius: 50px 0 0 50px !important; 
  border-color: #262b25 !important;

}

.flatpickr-day.startRange:hover {
  background-color: #262b25 !important;
  background: #262b25 !important;
  box-shadow: 25px 0 0 #e6e6e6 !important;
}

.flatpickr-day.endRange:hover {
  background-color: #262b25 !important;
}

.flatpickr-day.selected, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange, .flatpickr-day.endRange:focus, .flatpickr-day.endRange.nextMonthDay { 
  background-color: #262b25 !important;
  background: #262b25 !important;
  border-color: #262b25 !important;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
background-color: #262b25 !important;
  background: #262b25 !important;
  border-color: #262b25 !important;
}

.flatpickr-day.endRange.nextMonthDay {
  background-color: #262b25 !important;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #262b25 !important; 
}

#mySidebar form input[type="submit"] {
  border: 1px solid #91963d !important;
  background: #91963d !important;
}

 .elefant-sidebar form input, .elefant-sidebar form textarea { 
 font-size: 13px !important;	 
 }

.elefant-btn {
    font-size: 16px !important;
    font-family: inherit !important;
	background-color: #91963d;
}

p.cart-subtext a {
  font-size: 22px !important;  	
}

body.home header.headroom--top .tour-icon, body.page-id-3259 header.headroom--top .tour-icon {
  background-image: url("/wp-content/uploads/2024/05/Basket-white.png");
}

body.home.navShown .tour-icon, body.home.navShown header.headroom--top .tour-icon, body.home header.headroom--not-top .tour-icon,
body.page-id-3259.navShown .tour-icon, body.page-id-3259.navShown header.headroom--top .tour-icon, body.page-id-3259 header.headroom--not-top .tour-icon {
  background-image: url("/wp-content/plugins/elefant-tours/img/Basket.png");
}

label.form-check-label:has(input[name="newsletter"]) {
    font-size: 18px;
    font-family: jostregular;
}

#mySidebar label.form-check-label:has(input[name="newsletter"]) {
    font-size: 14px;
}

@media (min-width:320px) and (max-width:1160px) {
  .tour-icon.mobile {
   display:block
  }
  .tour-icon::after {
  top: -5px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1023px) {
  .tour-icon.mobile {
  top: 0px;
  }

  .main-content-wrap.single-teams {
   padding-top: 104px;	
  }  
}

@media only screen and (min-width: 1024px) and (max-width: 1160px) {
  .tour-icon.mobile {
  top: 15px;
  }
}

