/*
Theme Name: Panagea v.2.8
Theme URI: http://www.ansonika.com/panagea/
Author: Ansonika
Author URI: http://themeforest.net/user/Ansonika/

[Table of contents] 

1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Buttons
- 1.3 Structure

2. CONTENT
- 2.1 Home
- 2.2 About
- 2.3 Listing
- 2.4 Detail page
- 2.5 Login/register
- 2.6 Map styles
- 2.7 Contacts
- 2.8 404 page 
- 2.9 Cart section
- 2.10 Media Gallery
- 2.11 Faq
- 2.12 Adventure
- 2.13 Home AirBnb
- 2.14 Half screen map
- 2.15 Autocomplete Address Search
- 2.16 OpenStreet Map
- 2.17 Parallax Video Background
- 2.18 Other Headers
- 2.19 Home Categories Hover effect
- 2.20 Home Search Radio categories

3. COMMON
- 3.1 Misc
- 3.2 Accordion
- 3.3 List
- 3.4 Spacing
- 3.5 Block reveal
- 3.6 Cookie bar
- 3.7 Sing In Modal
- 3.8 Input Switcher
- 3.9 Datepicker
- 3.10 Modal Generic
- 3.11 Others pricing tables
- 3.12 Styles Switcher
- 3.13 Time picker

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/* MAIN NAVIGATION */
/* All styles for screen size over 992px*/
@media only screen and (min-width: 992px) {
  nav#menu.main-menu {
    display: block !important;
  }

  #mm-menu.main-menu {
    display: none !important;
  }

  header .btn_mobile {
    display: none !important;
  }

  /* Menu */
  .main-menu {
    position: relative;
    z-index: 9;
    width: auto;
    top: 12px;
    right: 15px;
    float: right;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #fff;
  }

  .main-menu ul,
  .main-menu ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
  }

  .main-menu ul a,
  .main-menu ul li a {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    padding: 5px 10px;
    white-space: nowrap;
  }

  /*First level styles */
  .main-menu > ul > li span > a {
    color: #fff;
    padding: 0 8px 15px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  header.sticky .main-menu > ul > li span > a {
    color: #444;
  }

  header.sticky .main-menu > ul > li span:hover > a {
    opacity: 1;
    color: #108482;
  }

  header.sticktohead .main-menu > ul > li span > a {
    color: #444;
  }

  header.sticktohead .main-menu > ul > li span:hover > a {
    opacity: 1;
    color: #108482;
  }

  /* Submenu*/
  .main-menu ul ul {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    right: 0px;
    top: 100%;
    margin: 0;
    display: block;
    padding: 0;
    background: #fff;
    min-width: 200px;
    -webkit-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.175);
    transform: scale(0.4);
    transform-origin: 10% top;
    transition: 0.15s linear, 0.1s opacity cubic-bezier(0.39, 0.575, 0.565, 1),
      0.15s transform cubic-bezier(0.1, 1.26, 0.83, 1);
    opacity: 0;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 15px;
  }

  .main-menu ul ul:before {
    bottom: 100%;
    right: 14px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #fff;
    border-width: 7px;
    margin-left: -7px;
  }

  .main-menu ul ul li {
    display: block;
    height: auto;
    padding: 0;
  }

  .main-menu ul ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    display: block;
    padding: 15px 15px;
    line-height: 1;
    width: 100%;
  }

  .main-menu ul li:hover > ul {
    padding: 10px 0px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transition-duration: 0s, 0.2s, 0.2s;
    transition-duration: 0s, 0.2s, 0.2s;
  }

  .main-menu ul ul li:first-child a:hover {
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
  }

  .main-menu ul ul li:last-child a {
    border-bottom: none;
  }

  .main-menu ul ul li:last-child a:hover {
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    -ms-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
  }

  .main-menu ul ul li:hover > a {
    padding-left: 20px;
    background: #f2f4f7;
  }
}

.report-lost-dog-modal .modal-dialog {
  min-width: 45%;
}
.placeholder-wrapper {
  animation: glow 1.5s ease-in-out infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(134, 142, 150, 0.3);
  }
  50% {
    box-shadow: 0 0 10px rgba(134, 142, 150, 0.7);
  }
  100% {
    box-shadow: 0 0 5px rgba(134, 142, 150, 0.3);
  }
}
/* Submenu 2nd level right */
.main-menu ul ul.second_level_right {
  left: auto;
  right: 3px;
}
.cropbutton {
  width: 75px;
  background: var(--Primary-500, #108482) !important;
  color: var(--White, var(--Grays-White, #fff)) !important;
  font-size: 16px !important;
  border-radius: 24px !important;
  cursor: pointer;
  padding: 7px 8px;
  text-align: center;
}
.main-menu ul ul.second_level_right:before {
  right: 15%;
  left: auto;
}

/* Submenu 3rd level */
.main-menu ul ul li span a {
  font-weight: 500 !important;
}

.main-menu ul ul li span a:hover {
  color: #475467;
  padding-left: 18px;
  opacity: 1;
}

.main-menu ul ul li span a:after {
  font-family: "ElegantIcons";
  content: "\35";
  float: right;
  font-size: 16px;
  font-size: 1rem;
  margin-top: -2px;
}

.main-menu ul ul ul {
  position: absolute;
  border-top: 0;
  z-index: 1;
  height: auto;
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  min-width: 190px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.main-menu ul ul ul.third_level_left {
  right: 100%;
  left: auto;
}

.main-menu ul ul ul li a {
  border-bottom: 1px solid #ededed !important;
}

.main-menu ul ul ul li:last-child a {
  border-bottom: none !important;
}

/* Arrows top 3rd level*/
.main-menu ul ul ul:before {
  border-width: 0;
  margin-left: 0;
}

.category-main-menu {
  display: flex;
  justify-content: center;
  z-index: 0;
}

.category-main-menu ul li ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-width: 800px;
  gap: 32px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.category-main-menu section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* .category-main-menu .menu-category {
  flex: 1 0 20%;
  min-width: 180px;
  padding: 10px 15px;
} */

.category-main-menu > ul > li span > a {
  padding: 8px 16px;
}

.category-main-menu ul li {
  position: initial;
}

.category-title {
  font-family: "Be Vietnam Pro";
  font-size: 18px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 28px;
  color: var(--Primary-600, #0E7775) !important;
}

.category-main-menu p {
  margin-bottom: 0px;
}

.category-main-menu ul p a {
  color: #1d2939;
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  padding: 5px 10px 5px 0;
}

.category-main-menu ul li:hover > ul {
  padding: 10px 32px;
  overflow-y: auto;
  max-height: 80vh;
}

.category-main-menu hr {
  margin: 10px 0px;
}

.category-main-menu ul section p:hover > a {
  padding-left: 10px;
  background: #f2f4f7;
}

/* All styles for screen size under 991px */
@media only screen and (max-width: 991px) {
  nav#menu {
    display: none !important;
  }

  .mm-menu {
    background: #fff;
  }

  .mobileheader.navibar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 16px;
  }
  .main-menu {
    top: 0;
    right: 0;
    float: none;
  }

  ul.mm-listview {
    line-height: 25px;
  }

  ul.mm-listview li a {
    color: #555 !important;
    display: block;
  }
}

#menu.fake_menu {
  display: none !important;
  visibility: hidden !important;
}

/*-------- Preloader --------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999999 !important;
}

[data-loader="circle-side"] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: circle infinite 0.95s linear;
  -moz-animation: circle infinite 0.95s linear;
  -o-animation: circle infinite 0.95s linear;
  animation: circle infinite 0.95s linear;
  border: 2px solid #108482;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-Thin.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Be Vietnam Pro";
  src: url("./BeVietnamPro/BeVietnamPro-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

/* Applying font styles */
body {
  font-family: "Be Vietnam Pro", sans-serif;
}

.thin {
  font-weight: 100;
}

.extra-light {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

body {
  background: #f8f8f8;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}

p {
  margin-bottom: 30px;
}

strong {
  font-weight: 600;
}

label {
  font-weight: 500;
  margin-bottom: 3px;
}

hr {
  margin: 20px 0 20px 0;
  border-color: #ededed;
  opacity: 1;
}

hr.large {
  border-color: #ededed;
  height: 4px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  hr.large {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  hr.large {
    margin-bottom: 45px;
  }
}

ul,
ol {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}

.main_title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.main_title span {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: auto;
  margin-bottom: 20px;
  opacity: 1;
  background-color: #999;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.main_title.animated span {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.main_title_2 {
  position: relative;
}

.main_title_2 span {
  width: 120px;
  height: 2px;
  background-color: #e1e1e1;
  display: block;
  margin: auto;
}

.main_title_2 span em {
  width: 60px;
  height: 2px;
  background-color: #108482;
  display: block;
  margin: auto;
}

.main_title_2 h2 {
  margin-bottom: 36px;
}

.maringbottom32 {
  margin-bottom: 32px;
}

.maringbottom38 {
  margin-bottom: 38px;
}

.marginbottm24 {
  margin-bottom: 38px;
}

.lostdogfound {
  padding: 32px 16px;
}

.lostdogfound h2 {
  margin-bottom: 22px;
}

.carouselPopular {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

figure {
  margin: 0 0 15px !important;
}

@media (max-width: 767px) {
}

.main_title_2 h2 {
  margin: 10px 0 0 0;
}

@media (max-width: 767px) {
  .main_title_2 h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.main_title_2 h3 {
  margin: 25px 0 0 0;
}

@media (max-width: 767px) {
  .main_title_2 h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.main_title_2 p {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .main_title_2 p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.main_title_3 {
  margin-bottom: 25px;
  position: relative;
}

.main_title_3 span {
  width: 120px;
  height: 2px;
  background-color: #e1e1e1;
  display: block;
}

.main_title_3 span em {
  width: 60px;
  height: 2px;
  background-color: #108482;
  display: block;
}

@media (max-width: 767px) {
  .main_title_3 {
    margin-bottom: 10px;
  }
}

.main_title_3 h2,
.main_title_3 h3 {
  font-size: 23px;
  font-size: 1.4375rem;
  margin: 25px 0 0 0;
}

@media (max-width: 767px) {
  .main_title_3 h2,
  .main_title_3 h3 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.main_title_3 p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.4;
}

/** Layes slider typography ab buttons **/
h3.slide_typo {
  white-space: nowrap;
  color: #fff !important;
  font-weight: normal;
  font-size: 64px;
  font-size: 4rem;
}

.slide_typo_2 {
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.ls-l a.btn_1 {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .ls-l a.btn_1 {
    font-size: 11px !important;
    padding: 7px 15px !important;
  }
}

/*General links color*/
a {
  color: #108482;
  text-decoration: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}

a:hover,
a:focus {
  color: #111;
  text-decoration: none;
  outline: none;
}

/*-------- 1.2 Buttons --------*/
a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #108482;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

a.btn_1:hover,
.btn_1:hover {
  background: #0d6a68;
  color: #fff;
}

a.btn_1:focus,
.btn_1:focus {
  background: #0d6a68;
  color: #fff;
  box-shadow: 2px 2px 2.3px 0px rgba(152, 162, 179, 0.5);
}

a.btn_1.full-width,
.btn_1.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}

a.btn_1.full-width.purchase,
.btn_1.full-width.purchase {
  background-color: #32a067;
}

a.btn_1.full-width.purchase:hover,
.btn_1.full-width.purchase:hover {
  background-color: #0054a6;
}

a.btn_1.full-width.wishlist,
.btn_1.full-width.wishlist {
  border-color: #555;
  color: #555;
}

a.btn_1.medium,
.btn_1.medium {
  font-size: 16px;
  font-size: 1rem;
  padding: 18px 40px;
}

a.btn_1.rounded,
.btn_1.rounded {
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -ms-border-radius: 25px !important;
  border-radius: 25px !important;
}

a.btn_1.outline,
.btn_1.outline {
  border: 2px solid #108482;
  color: #108482;
  padding: 11px 40px;
  background: none;
}

a.btn_1.outline:hover,
.btn_1.outline:hover {
  background: #0054a6;
  color: #fff;
  border-color: #0054a6;
}

a.btn_1.outline:focus,
.btn_1.outline:focus {
  outline: none;
}

.closebt {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: absolute;
  font-size: 24px;
  font-size: 1.5rem;
  top: 10px;
  right: 15px;
  color: #fff;
  opacity: 0.6;
  width: 30px;
  height: 30px;
}

.closebt:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
}

.btn_home_align {
  text-align: right;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .btn_home_align {
    text-align: center;
    margin-bottom: 25px;
  }
}

a.btn_map {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 12px 8px 12px;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}

a.btn_map:hover {
  color: #108482;
}

a.btn_map:before {
  font-family: "ElegantIcons";
  content: "\e081";
  display: inline-block;
  margin-right: 5px;
}

a.btn_map_in,
.btn_map_in {
  border: none;
  color: #fff;
  background: #108482;
  outline: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

a.btn_map_in:hover,
.btn_map_in:hover {
  background: #0054a6;
  color: #fff;
}

/*-------- 1.3 Structure --------*/
/* Header */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 30px;
  z-index: 1000;
  background: linear-gradient(0deg, rgba(42, 42, 42, 0) 0%, #161313 100%);
}
.modal-backdrop {
  z-index: 1051; /* Ensure backdrop covers everything */
}
.modal {
  z-index: 1055; /* Increase modal’s z-index */
}
@media (max-width: 767px) {
  header {
    padding: 15px 15px 5px 15px;
  }
}

header.header .logo_sticky {
  display: none;
}

.font22 {
  font-size: 22px;
}

header.header.sticky {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #ededed !important;
  background: #fff !important;
  padding: 15px 20px;
}

header.header.sticktohead {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #ededed;
  background: #fff;
  padding: 15px 20px;
}

.second-head-container .second-header a {
  color: #ffffff;
}

.second-head-container .second-header svg path {
  fill: #ffffff ;

}

 .second-header a, header.header.sticky .second-header a {
  color: #444;
}

.second-header a:hover {
  color: #108482 !important;
}

.second-header svg path, header.header.sticky .second-header svg path {
  fill: #101828 ;
}

.second-header.dropdown .country-dropdown-toggle::after {
  display: none; /* Hide the default dropdown arrow */
}

.second-header.dropdown .dropdown-menu {
  width: auto;
  padding: 10px 0;
  inset: 10px auto auto 0px !important;
  z-index: 99;
}

.second-header.dropdown .dropdown-item {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  color: #444;
}
.second-header.dropdown img {
    width: auto;
    height: 16px;
    object-fit: cover;
}

.second-header.dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}

@media (max-width: 991px) {
  header.header.sticky {
    padding: 15px 15px 5px 15px;
  }
}

header.header.sticky .logo_normal {
  display: none;
}

header.header.sticktohead .logo_normal {
  display: none;
}

header.header.sticky .logo_sticky {
  display: inline-block;
}

header.header.sticktohead .logo_sticky {
  display: inline-block;
}

ul#top_menu {
  float: right;
  margin: 0 0 0 10px;
  padding: 0;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (max-width: 991px) {
  ul#top_menu {
    margin: -2px 0 0 10px;
  }
}

ul#top_menu li {
  float: left;
  margin: 0;
  line-height: 1;
  margin-right: 15px;
}

ul#top_menu li:last-child {
  margin-right: 0;
  position: relative;
  top: 0;
}

@media (max-width: 991px) {
  ul#top_menu li {
    margin: 0 0 0 10px;
  }
}

@media (max-width: 767px) {
  ul#top_menu li:first-child {
    display: none;
  }
}

ul#top_menu li a {
  color: #fff;
}

ul#top_menu li a:hover {
  color: #fff;
  opacity: 0.7;
}

ul#top_menu li a.login,
ul#top_menu li a.wishlist_bt_top,
ul#top_menu li a.cart-menu-btn {
  display: block;
  width: 22px;
  height: 23px;
  position: relative;
  top: 8px;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

@media (max-width: 991px) {
  ul#top_menu li a.login,
  ul#top_menu li a.wishlist_bt_top,
  ul#top_menu li a.cart-menu-btn {
    top: 2px;
  }
}

ul#top_menu li a.login:before,
ul#top_menu li a.wishlist_bt_top:before,
ul#top_menu li a.cart-menu-btn:before {
  font-family: "Glyphter";
  font-size: 21px;
  font-size: 1.3125rem;
  color: #fff;
  text-indent: 0;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
  line-height: 1;
}

.sticky ul#top_menu li a.login:before,
.sticky ul#top_menu li a.wishlist_bt_top:before,
.sticky ul#top_menu li a.cart-menu-btn:before {
  color: #444;
}

ul#top_menu li a.wishlist_bt_top {
  text-indent: -9999px;
}

ul#top_menu li a.wishlist_bt_top:before {
  content: "\0043";
}

ul#top_menu li a.login {
  text-indent: -9999px;
}

ul#top_menu li a.login:before {
  content: "\0042";
}

ul#top_menu li a.cart-menu-btn {
  top: 6px;
}

@media (max-width: 991px) {
  ul#top_menu li a.cart-menu-btn {
    top: 0;
  }
}

ul#top_menu li a.cart-menu-btn:before {
  content: "\0041";
}

ul#top_menu li a.cart-menu-btn strong {
  font-size: 11px;
  font-size: 0.6875rem;
  width: 15px;
  height: 15px;
  display: block;
  background-color: #333;
  color: #fff;
  position: relative;
  bottom: -15px;
  right: -10px;
  text-align: center;
  line-height: 17px !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

ul#top_menu li a.logged {
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  overflow: hidden;
  top: 6px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

ul#top_menu li a.logged img {
  width: 26px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  ul#top_menu li a.logged {
    top: 0;
  }
}

/* Dropdown user logged */
.dropdown-user .dropdown-menu {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  min-width: 0;
  padding: 0;
  width: 150px;
  top: 160%;
  margin-left: -115px;
  font-weight: normal;
  text-shadow: none;
  text-transform: none !important;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  border-left: 1px solid rgba(0, 0, 0, 0.02);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 3px 2px 7px 1px rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 0;
}

.dropdown-user .dropdown-menu:before {
  bottom: 100%;
  right: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-bottom-color: #fff;
  border-width: 7px;
  margin-left: -7px;
}

.dropdown-user .dropdown-menu ul {
  padding: 0;
  margin: 0 !important;
  list-style: none;
}

.dropdown-user .dropdown-menu ul li {
  border-bottom: 1px solid #ededed;
  margin: 0;
  width: 100%;
  margin-bottom: 15px;
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (max-width: 991px) {
  .dropdown-user .dropdown-menu ul li {
    margin: 0 !important;
  }
}

.dropdown-user .dropdown-menu ul li a {
  color: #444 !important;
  padding: 15px 8px 15px 8px;
  display: block;
}

.dropdown-user .dropdown-menu ul li a:hover {
  color: #108482 !important;
  opacity: 1 !important;
  padding-left: 15px;
}

.dropdown-user .dropdown-menu ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .dropdown-user .dropdown-menu ul li:first-child {
    display: block !important;
  }
}

header.sticky .hamburger-inner,
header.sticky .hamburger-inner::before,
header.sticky .hamburger-inner::after {
  background-color: #444;
}

header.sticktohead .hamburger-inner,
header.sticktohead .hamburger-inner::before,
header.sticktohead .hamburger-inner::after {
  background-color: #444;
}

#logo {
  float: left;
}

@media (max-width: 991px) {
  #logo {
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }

  #logo img {
    width: auto;
    height: 30px;
    margin: 12px 0 0 0;
  }
}

.hero_in {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.bestdogfriendlypaga .stats {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .hero_in {
    height: 350px;
  }
}

.hero_in.general:before {
  background: url(../img/hero_in_bg_2.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.general .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in.tours:before {
  background: url(../img/hero_in_bg_1.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.tours .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in.hotels:before {
  background: url(../img/hero_in_bg_4.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.hotels .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in.restaurants:before {
  background: url(../img/hero_in_bg_5.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.restaurants .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in.tours_detail {
  height: 550px;
}

@media (max-width: 575px) {
  .hero_in.tours_detail {
    height: 500px;
  }

  .hero_single .hero_image {
    width: calc(100% - 782px);
    height: 709.5px;
  }
}

.hero_in.tours_detail:before {
  background: url(../img/hero_in_tours_detail.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.tours_detail .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in.hotels_detail {
  height: 550px;
}

@media (max-width: 575px) {
  .hero_in.hotels_detail {
    height: 500px;
  }
}

.hero_in.hotels_detail:before {
  background: url(../img/hero_in_hotels_detail.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.hotels_detail .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in.restaurants_detail {
  height: 550px;
}

@media (max-width: 575px) {
  .hero_in.restaurants_detail {
    height: 500px;
  }
}

.hero_in.restaurants_detail:before {
  background: url(../img/hero_in_restaurants_detail.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.restaurants_detail .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in.contacts:before {
  background: url(../img/hero_in_bg_3.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.contacts .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero_in:before {
  animation: pop-in 5s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards;
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero_in .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero_in .wrapper h1 {
  color: #fff;
  font-size: 42px;
  font-size: 2.625rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .hero_in .wrapper h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.hero_in .wrapper h1 span {
  width: 80px;
  height: 4px;
  margin: auto;
  background-color: #ffc107;
  display: block;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  opacity: 1;
}

.hero_in .wrapper p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 24px;
  font-size: 1.5rem;
}

.hero_in .wrapper p strong {
  font-weight: 600;
}

.hero_in a.btn_photos {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  line-height: 1;
  padding: 10px 15px;
  color: #444;
  font-weight: 500;
}

.hero_in a.btn_photos:hover {
  color: #108482;
}

/* Animations */
@keyframes pop-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}

/* Delays */
.hero_in h1 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
}

.hero_in p {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
}

/* Main */
main {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background-color: #0a4f4e;
  color: #fbfbfb;
  color: rgba(255, 255, 255, 0.7);
}

footer h5 {
  color: #fff;
  margin: 32px 0px 15px 0;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (max-width: 575px) {
  footer h5 {
    margin: 25px 0 10px 0;
  }
}

footer ul li {
  margin-bottom: 5px;
}

footer ul li a {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  color: #fff;
}

footer ul li a:hover {
  color: #ffffff;
  opacity: 1;
}

footer ul li a i {
  margin-right: 10px;
  color: #fff;
}

footer ul.links li a:hover {
  -webkit-transform: translate(5px, 0);
  -moz-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  -o-transform: translate(5px, 0);
  transform: translate(5px, 0);
}

footer ul.links li a:hover:after {
  opacity: 1;
  color: #108482;
}

footer ul.links li a:after {
  font-family: "ElegantIcons";
  content: "\24";
  position: absolute;
  margin-left: 5px;
  top: 1px;
  opacity: 0;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

footer ul.contacts li a i {
  margin-right: 10px;
}

footer hr {
  opacity: 1;
}

footer #copy {
  text-align: right;
  font-size: 13px;
  font-size: 0.8125rem;
  opacity: 0.7;
}

@media (max-width: 767px) {
  footer #copy {
    text-align: left;
    margin: 5px 0 20px 0;
  }
}

/* Newsletter footer*/
#newsletter .form-group {
  position: relative;
}

#newsletter .loader {
  position: absolute;
  right: -20px;
  top: 11px;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
}

#newsletter h6 {
  color: #fff;
  margin-bottom: 12px;
}

#newsletter h5 {
  color: #fff;
  margin: 0;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1rem;
}

#newsletter .form-group {
  position: relative;
}

#newsletter input[type="email"] {
  border: 0;
  height: 40px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  padding-left: 15px;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #f3f3f3;
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
}

#newsletter input[type="email"]:focus {
  border: 0;
  box-shadow: none;
}

#newsletter input[type="submit"] {
  position: absolute;
  right: 0;
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  top: 0;
  border: 0;
  padding: 0 12px;
  height: 40px;
  cursor: pointer;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #108482;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  outline: none;
}

#newsletter input[type="submit"]:hover {
  background-color: #ffc107;
  color: #222;
}

.follow_us {
  margin-top: 15px;
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
}

.follow_us h5 {
  color: #fff;
}

.follow_us ul li {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}

.follow_us ul li:first-child {
  color: #fff;

  font-weight: 100;
  letter-spacing: 2px;
  font-size: 13px;
  font-size: 0.8125rem;
}

.follow_us h6 {
  color: #fff;
}

.follow_us ul li a {
  color: #fff;
}

.follow_us ul li a:hover {
  opacity: 1;
}

ul#footer-selector {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}

ul#footer-selector li {
  float: left;
}

@media (max-width: 575px) {
  ul#footer-selector li:last-child {
    margin-top: 5px;
  }
}

/* Addtional links Footer */
ul#additional_links {
  margin: 0;
  color: #555;
  font-size: 13px;
  font-size: 0.8125rem;
  float: right;
}

@media (max-width: 991px) {
  ul#additional_links {
    float: none;
    margin-top: 10px;
  }
}

ul#additional_links li {
  display: inline-block;
}

ul#additional_links li:last-child:after {
  content: "";
}

ul#additional_links li span {
  color: #fff;
  opacity: 0.5;
}

ul#additional_links li a {
  color: #fff;
  opacity: 0.5;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul#additional_links li a:hover {
  opacity: 1;
}

ul#additional_links li:after {
  content: "|";
  font-weight: 300;
  position: relative;
  left: 10px;
}

.styled-select {
  width: 100%;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  border: none;
  background-color: #f3f3f3;
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding-right: 35px;
  position: relative;
}

.styled-select#lang-selector:after {
  font-family: "ElegantIcons";
  content: "\e0e2";
  color: #fff;
  position: absolute;
  right: 10px;
  top: 0;
}

.styled-select#currency-selector:after {
  font-family: "ElegantIcons";
  content: "\33";
  color: #fff;
  position: absolute;
  right: 10px;
  top: 0;
}

.styled-select select {
  background: transparent;
  width: 110%;
  padding-left: 10px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  height: 30px;
  color: #ccc;
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0;
  font-weight: 500;
  -moz-appearance: window;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}

.styled-select select:focus {
  color: #fff;
  outline: none;
  box-shadow: none;
}

.styled-select select::-ms-expand {
  display: none;
}

.styled-select#lang-selector select option {
  color: #555;
}

/* Wow on scroll event */
.wow {
  visibility: hidden;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Home/front page--------*/
/* ------ jQuery FlexSlider v2.7.0 ----------- */
/* Resets */
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Base style */
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

/* Default theme */
.flexslider {
  margin: 0;
  background: #fff;
  position: relative;
  zoom: 1;
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  position: absolute;
  bottom: 50px;
  height: 30px;
  line-height: 1;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block !important;
  width: 45px;
  height: 52px;
  position: absolute;
  top: -65px;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
  font-family: "ElegantIcons";
  font-size: 46px;
  display: inline-block;
  content: "\34";
  color: white;
}

.flex-direction-nav a.flex-next:before {
  content: "\35";
}

.flex-direction-nav .flex-next {
  text-align: right;
}

#carousel_slider .flex-direction-nav .flex-prev {
  opacity: 0.8;
  left: 15px;
}

#carousel_slider .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

#carousel_slider .flex-direction-nav .flex-next {
  opacity: 0.8;
  right: 15px;
}

#carousel_slider .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

#carousel_slider .flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  display: inline;
}

/* Custom theme */
#slider.flexslider li {
  position: relative;
}

#slider.flexslider li .meta {
  position: absolute;
  bottom: 35%;
  left: 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 500;
  z-index: 99;
  padding-right: 45px;
}

@media (max-width: 767px) {
  #slider.flexslider li .meta {
    left: 45px;
    bottom: auto;
    top: 50%;
  }
}

#slider.flexslider li h3 {
  font-size: 36px;
  font-size: 2.25rem;
  color: #fff;
}

@media (max-width: 767px) {
  #slider.flexslider li h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

#slider.flexslider li .info {
  display: flex;
  flex-direction: row;
}

#slider.flexslider li .info p {
  margin-bottom: 15px;
  font-size: 16px;
  font-size: 1rem;
}

@media (max-width: 767px) {
  #slider.flexslider li .info p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

#slider.flexslider li h3,
#slider.flexslider li .info p {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

#slider.flexslider li .meta a {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  padding: 12px 20px;
}

#slider.flexslider li.flex-active-slide .meta h3,
#slider.flexslider li.flex-active-slide .meta .info p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

#slider.flexslider li.flex-active-slide .meta a {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

#slider.flexslider li.flex-active-slide .meta .info p {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.slider {
  position: relative;
}

#slider.flexslider {
  overflow: hidden;
}

#slider.flexslider .flex-direction-nav {
  opacity: 0;
  display: none;
}

#slider.flexslider ul.slides li {
  height: 650px;
  background-color: #000;
}

@media (max-width: 1199px) {
  #slider.flexslider ul.slides li {
    height: 650px !important;
  }
}

@media (max-width: 767px) {
  #slider.flexslider ul.slides li {
    height: 500px !important;
  }
}

#slider.flexslider ul.slides li img {
  opacity: 0.5;
  width: 100%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1199px) {
  #slider.flexslider ul.slides li img {
    height: 650px !important;
    width: auto;
  }
}

@media (max-width: 767px) {
  #slider.flexslider ul.slides li img {
    height: 500px !important;
    width: auto;
  }
}

#icon_drag_mobile {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: url(../img/drag_icon.svg) 0 0 no-repeat;
  width: 50px;
  height: 30px;
  opacity: 0.6;
  z-index: 99;
  display: none;
}

@media (max-width: 767px) {
  #icon_drag_mobile {
    display: block;
  }
}

#carousel_slider_wp {
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
  position: absolute;
  bottom: 0;
  z-index: 9;
  width: 100%;
  padding: 0 60px 45px 60px;
}

@media (max-width: 767px) {
  #carousel_slider_wp {
    display: none;
  }
}

/* Dropdown container */
.multiselect-dropdown .dropdown-container {
  position: relative;
  display: inline-block;
}

.multiselect-dropdown .dropdown-container-park {
  position: relative;
  display: inline-block;
}

/* Dropdown toggle button */
.multiselect-dropdown .dropdown-toggle {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
}

.multiselect-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  max-height: 250px; /* Adjust this as needed */
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 1000;
  overflow-y: auto; /* Enable vertical scroll */
  overflow-x: hidden; /* Disable horizontal scroll */
  min-width: 220px;
}

/* Search container */
.multiselect-dropdown .search-container {
  position: relative;
  margin-bottom: 10px;
}

/* Search input with round border */
.multiselect-dropdown #searchInput {
  width: 100%;
  padding: 8px 30px 8px 40px; /* Space for search icon */
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}

/* Search icon styling */
.multiselect-dropdown .search-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

/* Options list styling */
.multiselect-dropdown .options-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.multiselect-dropdown .options-list li {
  margin-bottom: 5px;
}

.multiselect-dropdown .options-list input[type="checkbox"] {
  margin-right: 8px;
}

/* Actions (Clear and Apply buttons) */
.multiselect-dropdown .actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 10px;
}

.multiselect-dropdown .actions button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.multiselect-dropdown .actions button:first-child {
  color: #00a89e;
  background-color: transparent;
}

.multiselect-dropdown .actions button:last-child {
  background-color: #e0e0e0;
  color: #fff;
}

#carousel_slider.flexslider {
  overflow: hidden;
  background-color: transparent;
}

#carousel_slider.flexslider ul.slides {
  padding-top: 20px;
}

#carousel_slider.flexslider ul.slides li {
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background-color: #000;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  cursor: pointer;
}

#carousel_slider.flexslider ul.slides li:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

#carousel_slider.flexslider ul.slides li img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 0.4;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#carousel_slider.flexslider ul.slides li .caption {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #fff;
}

#carousel_slider.flexslider ul.slides li .caption h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #fff;
  font-weight: 500;
}

#carousel_slider.flexslider ul.slides li .caption h3 span {
  margin: 3px 0 0 0;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
}

#carousel_slider.flexslider ul.slides li .caption small {
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  position: absolute;
  bottom: 10px;
  left: 20px;
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transform: translate(0, 10px);
  -moz-transform: translate(0, 10px);
  -ms-transform: translate(0, 10px);
  -o-transform: translate(0, 10px);
  transform: translate(0, 10px);
}

#carousel_slider.flexslider ul.slides li .caption small strong {
  float: right;
  display: inline-block;
  text-align: right;
  margin: 0 40px 0 0;
  padding: 3px 0 0 0;
}

#carousel_slider.flexslider ul.slides li .caption small strong h6 {
  color: #fff;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}

#carousel_slider.flexslider ul.slides li:hover .caption small {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

a#moveDown {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-size: 32px;
  font-size: 2rem;
  color: #fff;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  -moz-animation-duration: 6s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
}

/* Home video background*/
.header-video {
  position: relative;
  overflow: hidden;
  background: #000;
  height: 600px !important;
}

@media (max-width: 991px) {
  .header-video {
    height: 620px !important;
  }
}

.header-video video {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
}

.header-video iframe {
  height: 100%;
  width: 100%;
}

#hero_video {
  position: relative;
  background-size: cover;
  color: #fff;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  height: 100%;
  z-index: 99;
  text-align: center;
  display: table;
}

#hero_video .wrapper {
  display: table-cell;
  vertical-align: middle;
}

#hero_video .wrapper h3 {
  color: #fff;
  font-size: 42px;
  font-size: 2.625rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  #hero_video .wrapper h3 {
    font-size: 26px;
    font-size: 1.625rem;
    margin-top: 60px;
  }
}

@media (max-width: 575px) {
  #hero_video .wrapper h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

#hero_video .wrapper p {
  font-weight: 300;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

#hero_video .wrapper p strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  #hero_video .wrapper p {
    padding: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.teaser-video {
  width: 100%;
  height: auto;
}

.header-video--media {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  #hero_video {
    background: #ccc url(../img/home_section_1.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

  #hero_video > div {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .header-video {
    background: none;
  }
}

/* Home single hero */
.hero_single {
  width: 100%;
  position: relative;
  /* overflow: hidden; */
  text-align: center;
  margin: 0;
  color: #fff;
}

.hero_single .hero_image_main {
  position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* clip: rect(0 962.4000244140625px 550px 0); */
    /* clip: rect(0, 962.4000244140625px, 550px, 0); */
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero_single .hero_image {
  object-fit: cover;
  object-position: 50% 50%;
  max-width: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 715.5px;
  overflow: hidden;
  pointer-events: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  margin-top: 36.25px;
  transform: translate3d(0px, -36.25px, 0px);
}

.hero_single.start_bg_zoom:before {
  /* animation: pop-in 6s 0.3s cubic-bezier(0, 0.5, 0, 1) forwards; */
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero_single .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero_single .wrapper h3 {
  color: #fff;
  font-size: 52px;
  font-size: 3.25rem;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero_single .wrapper h3 {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

@media (max-width: 575px) {
  .hero_single .wrapper h3 {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}

.hero_single .wrapper p {
  font-weight: 300;
  margin: 10px 0 0 0;
  padding: 0 20%;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.hero_single .wrapper p strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .hero_single .wrapper p {
    padding: 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.hero_single.short {
  height: 600px;
}

.hero_single.version_2 {
  height: 620px;
}

.hero_single.version_2:before {
  background: url(../img/home_section_1.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_single.version_2 .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero_single.version_2 .wrapper h3 {
  font-size: 42px;
  font-size: 2.625rem;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .hero_single.version_2 .wrapper h3 {
    font-size: 26px;
    font-size: 1.625rem;
    margin-top: 60px;
  }
}

@media (max-width: 575px) {
  .hero_single.version_2 .wrapper h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.hero_single.version_2 .wrapper p {
  font-weight: 400;
  margin: 5px 0 20px 0;
  padding: 0;
  font-size: 21px;
  font-size: 1.3125rem;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero_single.version_2 .wrapper p strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .hero_single.version_2 .wrapper p {
    padding: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

#custom-search-input {
  padding: 0;
  width: 530px;
  max-width: 80%;
  margin: 20px auto 0;
  position: relative;
  transition: width 0.4s ease;
}

#custom-search-input:focus-within,#custom-search-input:has(.searchgoogle:not(:placeholder-shown)){
  width: 80%; /* Expand to 80% of the parent width */
}

@media (max-width: 991px) {
  #custom-search-input {
    width: auto;
  }
}

#custom-search-input .search-query {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 25px;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
}

#custom-search-input .search-query:focus {
  outline: none;
}

@media (max-width: 575px) {
  #custom-search-input .search-query {
    padding-left: 15px;
  }
}

#custom-search-input input[type="submit"] {
  position: absolute;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: -1px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  top: 0;
  border: 0;
  padding: 0 25px;
  height: 50px;
  cursor: pointer;
  outline: none;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #108482;
}

#custom-search-input input[type="submit"]:hover {
  background-color: #ffc107;
  color: #222;
}

@media (max-width: 575px) {
  #custom-search-input input[type="submit"] {
    text-indent: -999px;
    background: #108482 url(../img/search.svg) no-repeat center center;
  }
}

.custom-search-input-2 {
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-top: 15px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .custom-search-input-2 {
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
}

.custom-search-input-2 input {
  border: 0;
  height: 50px;
  padding-left: 15px;
  border-right: 1px solid #d2d8dd;
  font-weight: 500;
}

@media (max-width: 991px) {
  .custom-search-input-2 input {
    border: none;
  }
}

.custom-search-input-2 input:focus {
  box-shadow: none;
  border-right: 1px solid #d2d8dd;
}

@media (max-width: 991px) {
  .custom-search-input-2 input:focus {
    border-right: none;
  }
}

.custom-search-input-2 select {
  display: none;
}

.custom-search-input-2 .nice-select .current {
  font-weight: 500;
  color: #6f787f;
}

.custom-search-input-2 .form-group {
  margin: 0;
}

@media (max-width: 991px) {
  .custom-search-input-2 .form-group {
    margin-bottom: 5px;
  }
}

.custom-search-input-2 i {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  background-color: #fff;
  line-height: 50px;
  top: 0;
  right: 1px;
  padding-right: 15px;
  display: block;
  width: 20px;
  box-sizing: content-box;
  height: 50px;
  z-index: 9;
  color: #999;
}

@media (max-width: 991px) {
  .custom-search-input-2 i {
    padding-right: 10px;
  }
}

.custom-search-input-2 input[type="submit"] {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  border: 0;
  padding: 0 25px;
  height: 50px;
  cursor: pointer;
  outline: none;
  width: 100%;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #108482;
  margin-right: -1px;
}

@media (max-width: 991px) {
  .custom-search-input-2 input[type="submit"] {
    margin: 20px 0 0 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
  }
}

.custom-search-input-2 input[type="submit"]:hover {
  background-color: #ffc107;
  color: #222;
}

.custom-search-input-2.inner {
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .custom-search-input-2.inner {
    margin: 0 0 20px 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
}

.custom-search-input-2.inner-2 {
  margin: 0 0 20px 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: none;
}

.custom-search-input-2.inner-2 .form-group {
  margin-bottom: 10px;
}

.custom-search-input-2.inner-2 input {
  border: 1px solid #ededed;
}

.custom-search-input-2.inner-2 input[type="submit"] {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-top: 10px;
}

.custom-search-input-2.inner-2 i {
  padding-right: 10px;
  line-height: 48px;
  height: 48px;
  top: 1px;
}

.custom-search-input-2.inner-2 .nice-select {
  border: 1px solid #ededed;
}

/* Panel Drop Down */
.panel-dropdown {
  position: relative;
  text-align: left;
  padding: 15px 10px 0 15px;
}

@media (max-width: 991px) {
  .panel-dropdown {
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    height: 50px;
  }
}

.panel-dropdown a {
  color: #727b82;
  font-weight: 500;
  transition: all 0.3s;
  display: block;
  position: relative;
}

.panel-dropdown a:after {
  font-family: "ElegantIcons";
  content: "\33";
  font-size: 24px;
  font-size: 1.5rem;
  color: #999;
  font-weight: 500;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  right: 0;
  top: -8px;
}

.panel-dropdown.active a:after {
  transform: rotate(180deg);
}

.panel-dropdown .panel-dropdown-content {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: absolute;
  top: 58px;
  left: 0px;
  z-index: 99;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  padding: 15px 15px 0 15px;
  white-space: normal;
  width: 280px;
}

.panel-dropdown .panel-dropdown-content:before,
.panel-dropdown .panel-dropdown-content:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.panel-dropdown .panel-dropdown-content:before {
  top: -7px;
  left: 9px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.panel-dropdown .panel-dropdown-content:after {
  left: 10px;
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.panel-dropdown .panel-dropdown-content.right {
  left: auto;
  right: 0;
}

.panel-dropdown .panel-dropdown-content.right:before {
  left: auto;
  right: 9px;
}

.panel-dropdown .panel-dropdown-content.right:after {
  left: auto;
  right: 10px;
}

.panel-dropdown.active .panel-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.qtyButtons {
  display: flex;
  margin: 0 0 13px 0;
}

.qtyButtons input {
  outline: 0;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  width: 50px;
  height: 36px !important;
  color: #333;
  line-height: 36px;
  margin: 0 !important;
  padding: 0 5px !important;
  border: none;
  box-shadow: none;
  pointer-events: none;
  display: inline-block;
  border: none !important;
}

.qtyButtons label {
  font-weight: 500;
  line-height: 36px;
  padding-right: 15px;
  display: block;
  flex: 1;
  color: #727b82;
}

.qtyInc,
.qtyDec {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 28px;
  font-size: 1.75rem;
  background-color: #f2f2f2;
  -webkit-text-stroke: 1px #f2f2f2;
  color: #333;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  font-family: "ElegantIcons";
}

.qtyInc:before {
  content: "\4c";
}

.qtyDec:before {
  content: "\4b";
}

.qtyTotal {
  background-color: #66676b;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  line-height: 18px;
  text-align: center;
  position: relative;
  top: 0;
  left: 2px;
  height: 18px;
  width: 18px;
}

.rotate-x {
  animation-duration: 0.5s;
  animation-name: rotate-x;
}

@keyframes rotate-x {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

/*Carousel home page*/
#reccomended {
  margin-top: 40px;
}

@media (max-width: 767px) {
  #reccomended {
    margin-top: 0;
  }
}

#reccomended .item {
  margin: 0 15px;
}

#reccomended .owl-item {
  opacity: 0.5;
  transform: scale(0.85);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.85, 0.85);
  transition: all 0.3s ease-in-out 0s;
  overflow: hidden;
}

#reccomended .owl-item.active.center {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: scale(1);
}

#reccomended .owl-item.active.center .item .title h4,
#reccomended .owl-item.active.center .item .views {
  opacity: 1;
}

.owl-theme .owl-dots {
  margin-top: 10px !important;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .owl-theme .owl-dots {
    margin-top: 0 !important;
    margin-bottom: 20px;
  }
}

.owl-theme .owl-dots .owl-dot {
  outline: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #108482 !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 13px !important;
  height: 13px !important;
}

a.box_news {
  position: relative;
  display: block;
  padding-left: 230px;
  color: #555;
  margin-bottom: 30px;
  min-height: 150px;
}

@media (max-width: 767px) {
  a.box_news {
    min-height: inherit;
    padding-left: 0;
  }
}

a.box_news figure {
  width: 200px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  a.box_news figure {
    position: relative;
    width: auto;
  }
}

a.box_news figure img {
  width: 250px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (max-width: 767px) {
  a.box_news figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

a.box_news figure figcaption {
  background-color: #ffc107;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  color: #fff;
  width: 60px;
  height: 60px;
  padding: 15px;
  line-height: 1;
}

a.box_news figure figcaption strong {
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
}

a.box_news h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  a.box_news h4 {
    margin-bottom: 5px;
  }
}

a.box_news:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

a.box_news:hover h4 {
  color: #108482;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.box_news ul {
  margin: 0;
  padding: 10px 0 0 0;
}

@media (max-width: 767px) {
  a.box_news ul {
    padding: 0;
  }
}

a.box_news ul li {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  font-size: 12px;
  font-size: 0.75rem;
  margin-right: 5px;
}

a.box_news ul li:last-child {
  margin-right: 0;
}

a.box_news ul li:last-child:after {
  content: "";
  margin: 0;
}

a.box_news ul li:after {
  content: "-";
  margin: 0 0 0 10px;
}

a.grid_item {
  display: block;
  margin-bottom: 25px;
}

a.grid_item .info {
  position: absolute;
  width: 100%;
  z-index: 9;
  display: block;
  padding: 25px 20px 5px 20px;
  color: #fff;
  left: 0;
  bottom: 0;
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
  box-sizing: border-box;
}

a.grid_item .info .cat_star {
  font-size: 9px;
  font-size: 0.5625rem;
}

a.grid_item .info .cat_star i {
  color: #fff;
}

a.grid_item .info h3 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
}

a.grid_item .info p {
  color: #fff;
  margin-bottom: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}

a.grid_item figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  a.grid_item figure {
    height: 350px !important;
  }
}

@media (max-width: 575px) {
  a.grid_item figure {
    height: 220px !important;
  }
}

a.grid_item figure .score {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 9;
}

a.grid_item figure small {
  position: absolute;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  left: 20px;
  top: 22px;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 7px 10px 4px 10px;
  line-height: 1;
  z-index: 9;
}

a.grid_item figure img {
  width: 100%;
  height: auto;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

a.grid_item:hover figure img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.search_container {
  padding: 30px 0 15px 0;
  border-bottom: 1px solid #ededed;
}

/* ------ Search 3 index-10.html ----------- */
.custom-search-input-2.version_3 {
  margin-top: 20px;
}

.custom-search-input-2.version_3 .form-group {
  text-align: left;
}

.custom-search-input-2.version_3 .form-group span {
  color: #111;
  position: absolute;
  left: 15px;
  top: 12px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.custom-search-input-2.version_3 .form-group input {
  height: 58px;
  padding: 22px 10px 5px 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}

@media (max-width: 991px) {
  .custom-search-input-2.version_3 .form-group input {
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
  }
}

.custom-search-input-2.version_3 .form-group input:hover {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

@media (max-width: 991px) {
  .custom-search-input-2.version_3 .form-group input:hover {
    background-color: white;
    background-color: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
  }
}

.custom-search-input-2.version_3 .form-group input:focus {
  background-color: black;
  background-color: transparent;
}

@media (max-width: 991px) {
  .custom-search-input-2.version_3 .form-group input:focus {
    background-color: white;
    background-color: white;
  }
}

@media (max-width: 991px) {
  .custom-search-input-2.version_3 .panel-dropdown {
    height: 58px;
  }
}

.custom-search-input-2.version_3 .panel-dropdown a {
  height: 43px;
  padding: 13px 10px 0px 0;
  display: block;
}

.custom-search-input-2.version_3 .panel-dropdown a:after {
  display: none !important;
}

.custom-search-input-2.version_3 .panel-dropdown a span {
  position: relative;
  top: 0;
  left: 0;
  color: #fff;
}

.custom-search-input-2.version_3 .panel-dropdown:hover {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

@media (max-width: 991px) {
  .custom-search-input-2.version_3 .panel-dropdown:hover {
    background-color: white;
    background-color: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
  }
}

.custom-search-input-2.version_3 .panel-dropdown.active {
  background-color: black;
  background-color: transparent;
}

@media (max-width: 991px) {
  .custom-search-input-2.version_3 .panel-dropdown.active {
    background-color: white;
    background-color: white;
  }
}

.custom-search-input-2.version_3 .panel-dropdown .panel-dropdown-content {
  top: 70px;
}

.custom-search-input-2.version_3 input[type="submit"] {
  height: 58px;
}

/*-------- 2.2 About --------*/
a.box_feat {
  text-align: center;
  background: #fff;
  padding: 40px 30px 30px 30px;
  display: block;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  -webkit-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-box-shadow: 0px 3px 0px 0px #f0f2f4;
  -moz-box-shadow: 0px 3px 0px 0px #f0f2f4;
  box-shadow: 0px 3px 0px 0px #f0f2f4;
  color: #555;
  margin-bottom: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}

@media (max-width: 767px) {
  a.box_feat {
    padding: 20px 20px 0 20px;
  }
}

a.box_feat:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0px 3px 0px 0px #ebedef;
  -moz-box-shadow: 0px 3px 0px 0px #ebedef;
  box-shadow: 0px 3px 0px 0px #ebedef;
}

a.box_feat i {
  font-size: 70px;
  font-size: 4.375rem;
  color: #32a067;
  margin-bottom: 10px;
}

a.box_feat h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

#carousel {
  margin-top: 40px;
}

@media (max-width: 767px) {
  #carousel {
    margin-bottom: 30px;
  }
}

#carousel .item .title {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 9;
}

#carousel .item .title h4 {
  background-color: #0054a6;
  background-color: #0054a6;
  display: inline-block;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  color: #fff;
  padding: 10px 15px;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  opacity: 0;
}

#carousel .item .title h4 em {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 300;
  margin-top: 3px;
}

#carousel .item a {
  position: relative;
  display: block;
}

#carousel .owl-item {
  opacity: 0.5;
  transform: scale(0.85);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(0.85, 0.85);
  transition: all 0.3s ease-in-out 0s;
  overflow: hidden;
}

#carousel .owl-item.active.center {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: scale(1);
}

#carousel .owl-item.active.center .item .title h4,
#carousel .owl-item.active.center .item .views {
  opacity: 1;
}

/*-------- 2.3 Listing --------*/
.filters_listing {
  padding: 10px 0 5px 0;
  background: #fff;
  border-bottom: 1px solid #ededed;
  z-index: 999999 !important;
  position: relative;
}

.filters_listing ul {
  margin: 0 15px;
}

@media (max-width: 991px) {
  .filters_listing ul {
    margin: 0;
  }
}

.filters_listing ul li {
  margin-right: 10px;
}

.filters_listing ul li:first-child {
  float: left;
}

.filters_listing ul li:nth-child(2) {
  float: right;
  margin-right: 0;
}

.filters_listing ul li:nth-child(3) {
  float: right;
}

.score strong {
  background-color: #0054a6;
  color: #fff;
  line-height: 1;
  -webkit-border-radius: 5px 5px 5px 0;
  -moz-border-radius: 5px 5px 5px 0;
  -ms-border-radius: 5px 5px 5px 0;
  border-radius: 5px 5px 5px 0;
  padding: 10px;
  display: inline-block;
}

.score span {
  display: inline-block;
  position: relative;
  top: 7px;
  margin-right: 8px;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: right;
  line-height: 1.1;
  font-weight: 500;
}

.score span em {
  display: block;
  font-weight: normal;
  font-size: 11px;
  font-size: 0.6875rem;
}

.wrapper-grid {
  padding: 0 20px;
}

.box_grid {
  background-color: #fff;
  display: block;
  position: relative;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.box_grid .price {
  display: inline-block;
  font-weight: 500;
  color: #999;
}

.box_grid .price strong {
  color: #32a067;
}

.box_grid a.wish_bt {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 9px 10px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.box_grid a.wish_bt:after {
  font-family: "ElegantIcons";
  content: "\e030";
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.box_grid a.wish_bt.liked:after {
  content: "\e089";
  color: #108482;
}

.box_grid a.wish_bt:hover.liked:after {
  color: #108482;
}

.box_grid a.wish_bt:hover:after {
  content: "\e089";
  color: #fff;
}

.box_grid figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  height: 210px;
}

.box_grid figure small {
  position: absolute;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  left: 20px;
  top: 22px;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 7px 10px 4px 10px;
  line-height: 1;
}

.box_grid figure .read_more {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 2;
}

.box_grid figure .read_more span {
  background-color: #fcfcfc;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  color: #222;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 10px;
}

.box_grid figure:hover .read_more {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.box_grid figure a img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.box_grid figure a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.box_grid .wrapper {
  padding: 25px;
}

.box_grid .wrapper h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
}

.box_grid ul {
  padding: 20px 15px;
  border-top: 1px solid #ededed;
}

.box_grid ul li {
  display: inline-block;
  margin-right: 15px;
}

.box_grid ul li .score {
  margin-top: -10px;
}

.box_grid ul li:last-child {
  margin-right: 0;
  float: right;
}

.cat_star i {
  margin-right: 2px;
  color: #ffc107;
}

.rating {
  color: #ccc;
}

.rating .voted {
  color: #ffc107;
}

.rating i {
  margin-right: 2px;
}

.box_list {
  background-color: #fff;
  display: block;
  position: relative;
  margin: 0 15px 30px 15px;
  min-height: 310px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.box_list a.wish_bt {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 9px 10px;
  display: inline-block;
  color: #555;
  line-height: 1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.box_list a.wish_bt:after {
  font-family: "ElegantIcons";
  content: "\e030";
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.box_list a.wish_bt.liked:after {
  content: "\e089";
  color: #108482;
}

.box_list a.wish_bt:hover.liked:after {
  color: #108482;
}

.box_list a.wish_bt:hover:after {
  content: "\e089";
  color: #999;
}

.box_list figure {
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  min-height: 310px;
}

@media (max-width: 991px) {
  .box_list figure {
    min-height: 220px;
    max-height: 220px;
    height: 220px;
  }
}
.slow-spin {
  animation: slowSpin 3s linear infinite; /* Adjust speed here */
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fast-spin {
  animation: fastSpin 0.5s linear infinite; /* Faster speed */
}

@keyframes fastSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.reverse-spin {
  animation: reverseSpin 1s linear infinite;
}

@keyframes reverseSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg); /* Negative for counterclockwise */
  }
}

.pause-spin {
  animation: pauseSpin 2s ease-in-out infinite;
}
.showspinlocation {
  font-size: 2rem;
}
@keyframes pauseSpin {
  0%,
  20% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wobble-spin {
  animation: wobbleSpin 1.5s ease-in-out infinite;
}

@keyframes wobbleSpin {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg) scale(0.9);
  }
  100% {
    transform: rotate(360deg);
  }
}

.box_list figure small {
  position: absolute;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  right: 20px;
  top: 20px;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 600;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 7px 10px 4px 10px;
  line-height: 1;
  z-index: 99;
}

@media (max-width: 991px) {
  .box_list figure small {
    right: 15px;
    top: 15px;
  }
}

@media (max-width: 991px) {
  .box_list figure {
    min-height: 220px;
    max-height: 220px;
    height: 220px;
  }
}

.box_list figure .read_more {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 2;
}

.box_list figure .read_more span {
  background-color: #fcfcfc;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  color: #222;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 10px;
}

.box_list figure:hover .read_more {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.box_list figure a img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -moz-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  -o-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 360px;
  width: auto;
  max-width: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .box_list figure a img {
    max-width: inherit;
    height: 460px;
    width: auto;
  }
}

@media (max-width: 767px) {
  .box_list figure a img {
    height: 350px;
  }
}

.box_list figure a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.box_list .wrapper {
  padding: 30px 30px 20px 30px;
  min-height: 245px;
  position: relative;
}

@media (max-width: 991px) {
  .box_list .wrapper {
    min-height: inherit;
  }
}

.box_list .wrapper h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
}

.box_list .wrapper .price {
  display: inline-block;
  font-weight: 500;
  color: #999;
}

.box_list .wrapper .price strong {
  color: #32a067;
}

.box_list small {
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}

.box_list ul {
  padding: 20px 15px 20px 30px;
  border-top: 1px solid #ededed;
  margin-bottom: 0;
}

.box_list ul li {
  display: inline-block;
  margin-right: 15px;
}

.box_list ul li .score {
  margin-top: -10px;
}

.box_list ul li:last-child {
  margin-right: 0;
  float: right;
}

.layout_view {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4px 8px 3px 8px;
}

.layout_view a {
  color: rgba(0, 0, 0, 0.5);
}

.layout_view a.active {
  color: rgba(0, 0, 0, 0.8);
}

.layout_view a:hover {
  color: #108482;
}

.switch-field {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.switch-field input:checked + label {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.9);
}

.switch-field label {
  float: left;
  display: inline-block;
  min-width: 70px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  text-shadow: none;
  padding: 10px 12px 8px 12px;
  line-height: 1;

  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin: 0;
}

@media (max-width: 575px) {
  .switch-field label {
    min-width: inherit;
  }
}

.switch-field label:first-of-type {
  border-left: 0;
}

.switch-field label:last-of-type {
  border-right: 0;
}

.switch-field label:hover {
  cursor: pointer;
  color: #108482;
}

#filters_col {
  background-color: #fff;
  padding: 20px 20px 15px 20px;
  margin-bottom: 25px;
  border: 1px solid #ededed;
}

#filters_col label {
  color: #333;
  font-weight: normal;
  font-size: 13px;
  font-size: 0.8125rem;
}

a#filters_col_bt {
  display: block;
  color: #333;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
}

a#filters_col_bt:before {
  font-family: "ElegantIcons";
  content: "\66";
  font-size: 26px;
  font-size: 1.625rem;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  font-weight: normal;
}

.filter_type h6 {
  border-top: 1px solid #ededed;
  margin: 15px 0;
  padding: 15px 0 0 0;
  font-size: 13px;
  font-size: 0.8125rem;
}

.filter_type ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.filter_type ul li {
  margin-bottom: 5px;
}

.filter_type ul li:last-child {
  margin-bottom: 0;
}

a.boxed_list {
  text-align: center;
  padding: 30px;
  border: 1px solid #ededed;
  display: block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 25px;
}

a.boxed_list i {
  font-size: 60px;
  font-size: 3.75rem;
  margin-bottom: 15px;
}

a.boxed_list h4 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #333;
}

a.boxed_list p {
  color: #777;
  margin-bottom: 0;
}

a.boxed_list:hover i {
  color: #32a067;
}

/*-------- 2.4 Detail page --------*/
.secondary_nav {
  background: #fff;
  border-bottom: 1px solid #ededed;
  padding: 15px 0;
}

.secondary_nav.is_stuck {
  z-index: 99;
  width: 100% !important;
  left: 0;
}

.secondary_nav ul {
  margin-bottom: 0;
}

.secondary_nav ul li {
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}

.secondary_nav ul li a {
  color: rgba(0, 0, 0, 0.5);
}

.secondary_nav ul li a:hover {
  color: #108482;
}

.secondary_nav ul li a.active {
  color: rgba(0, 0, 0, 0.9);
}

.secondary_nav ul li:last-child {
  display: none;
}

.secondary_nav ul li:last-child a {
  background-color: #108482;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 15px;
}

.secondary_nav ul li:last-child a:hover {
  background-color: #0054a6;
}

@media (max-width: 575px) {
  .secondary_nav ul li:last-child {
    display: inline-block;
    float: right;
    margin-right: 0;
  }
}

.intro_title h2 {
  display: inline-block;
}

.intro_title ul {
  float: right;
  margin: 10px 0 0 0;
}

.intro_title ul li {
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
}

section#description h2,
section#reviews h2 {
  font-size: 24px;
  font-size: 1.5rem;
}

section#description h3,
section#reviews h3 {
  font-size: 21px;
  font-size: 1.3125rem;
}

section#description h4,
section#reviews h4 {
  font-size: 18px;
  font-size: 1.125rem;
}

section#reviews {
  border-bottom: none;
}

#review_summary {
  text-align: center;
  background-color: #0054a6;
  color: #fff;
  padding: 20px 10px;
  -webkit-border-radius: 5px 5px 5px 0;
  -moz-border-radius: 5px 5px 5px 0;
  -ms-border-radius: 5px 5px 5px 0;
  border-radius: 5px 5px 5px 0;
}

@media (max-width: 991px) {
  #review_summary {
    margin-bottom: 15px;
  }
}

#review_summary strong {
  font-size: 42px;
  font-size: 2.625rem;
  display: block;
  line-height: 1;
}

#review_summary em {
  font-style: normal;
  font-weight: 500;
  display: block;
}

.pictures_grid {
  margin-bottom: 45px;
}

.pictures_grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  height: 60px;
  width: 60px;
  display: inline-block;
}

@media (max-width: 767px) {
  .pictures_grid figure {
    width: 62px;
    height: 62px;
  }
}

.pictures_grid figure a {
  display: block;
}

.pictures_grid figure a span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.pictures_grid figure a img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  width: auto;
  height: 120px;
  z-index: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .pictures_grid figure a img {
    height: 80px;
  }
}

.pictures_grid figure a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -moz-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}

.reviews-container .progress {
  margin-bottom: 12px;
}

.reviews-container .progress-bar {
  background-color: #0054a6;
}

.reviews-container .review-box {
  position: relative;
  margin-bottom: 16px;
  height: 100%;
}

@media (max-width: 767px) {
  .reviews-container .review-box {
    padding-left: 0;
  }
}

.reviews-container .rev-thumb {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  background: #ffffff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

.reviews-container .rev-thumb img {
  width: 80px;
  height: auto;
}

@media (max-width: 767px) {
  .reviews-container .rev-thumb {
    position: static;
    margin-bottom: 10px;
  }
}

.reviews-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.reviews-container .rev-content {
  position: relative;
  padding: 25px 25px 0 25px;
  border: 1px solid #ededed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews-container .rev-content .user-profile{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.reviews-container .rev-info {
  font-size: 12px;
  font-size: 0.75rem;
  font-style: italic;
  color: #777;
  margin-bottom: 10px;
}

.box_detail {
  padding: 25px 25px 15px 25px;
  border: 1px solid #ededed;
  background-color: #f8f8f8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.box_detail .price {
  line-height: 1;
  border-bottom: 1px solid #ededed;
  margin: 0 -25px 25px -25px;
  padding: 0 25px 15px 25px;
}

.box_detail .price > span {
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: 600;
}

.box_detail .price > span > small {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
}

.box_detail .price .score {
  float: right;
  margin-top: -5px;
}

.box_detail h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 25px 0 10px 0;
}

.box_detail ul {
  margin-bottom: 0;
}

.box_detail ul li {
  margin-bottom: 5px;
}

.box_detail ul li i {
  margin-right: 8px;
}

.box_detail figure {
  position: relative;
  background-color: #000;
}

.box_detail figure img {
  opacity: 0.8;
}

.box_detail figure span {
  position: absolute;
  display: block;
  left: 0;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-weight: 600;
}

.box_detail figure a i {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  width: 60px;
  height: 60px;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  font-size: 42px;
  font-size: 2.625rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}

.box_detail figure:hover i {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.booking input {
  font-weight: 500;
  height: 45px;
}

.booking input:focus {
  box-shadow: none;
  border: 1px solid #d2d8dd;
}

.booking select {
  display: none;
}

.booking .panel-dropdown {
  background-color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d2d8dd;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 0 10px 0;
}

@media (max-width: 991px) {
  .booking .panel-dropdown {
    height: inherit;
  }
}

.booking .panel-dropdown .panel-dropdown-content {
  top: 50px;
}

.booking .nice-select .current {
  font-weight: 500;
  color: #6f787f;
}

.booking .custom-select-form .nice-select:active,
.booking .custom-select-form .nice-select.open,
.booking .custom-select-form .nice-select:focus {
  border-color: #d2d8dd;
  outline: 0;
  box-shadow: none;
}

.booking .custom-select-form select {
  display: none;
}

.booking .form-group {
  margin: 0 0 10px 0;
}

.booking .form-group i {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-size: 18px;
  font-size: 1.125rem;
  position: absolute;
  background-color: #fff;
  height: 43px;
  top: 1px;
  right: 1px;
  padding-right: 10px;
  display: block;
  width: 20px;
  box-sizing: content-box;
  line-height: 43px;
  z-index: 9;
  color: #999;
}

.booking .form-group i.icon_lock_alt {
  top: 36px;
}

/* Detail page contact form */
.booking textarea {
  font-weight: 500;
  height: 100px;
  padding-right: 25px;
}

.booking textarea:focus {
  border: 1px solid #d2d8dd;
  box-shadow: none;
}

.booking i.loader {
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  height: auto;
  width: auto;
  padding: 0;
  right: 10px;
}

/* ------ Full view calendar on mobile ----------- */
@media (max-width: 767px) {
  .datepicker_mobile_full .daterangepicker {
    margin-top: 0 !important;
    border: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999999 !important;
    height: 100% !important;
    overflow-y: scroll !important;
  }

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

/*Timeline --------------- */
ul.cbp_tmtimeline {
  margin: 45px 0 45px 0;
  padding: 0;
  list-style: none;
  position: relative;
}

/* The line */
.cbp_tmtimeline:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ebeef3;
  left: 18.5%;
  margin-left: -2px;
}

/* The date/time */
.cbp_tmtimeline > li {
  position: relative;
}

.cbp_tmtimeline > li .cbp_tmtime {
  display: block;
  width: 23%;
  padding-right: 80px;
  position: absolute;
}

.cbp_tmtimeline > li .cbp_tmtime span {
  display: block;
  text-align: right;
}

.cbp_tmtimeline > li .cbp_tmtime span:first-child {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 0;
}

.cbp_tmtimeline > li .cbp_tmtime span:last-child {
  font-size: 18px;
  font-weight: 500;
}

/* Right content */
img.thumb_visit {
  width: 70px;
  height: 70px;
  border: 2px solid #fff;
  margin-top: -5px;
  float: right;
  margin-left: 15px;
}

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

.cbp_tmtimeline > li .cbp_tmlabel {
  margin: 0 0 15px 25%;
  background: #eef3f7;
  padding: 20px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.cbp_tmtimeline > li .cbp_tmlabel p {
  margin-bottom: 0;
  font-size: 13px;
  font-size: 0.8125rem;
}

.cbp_tmtimeline > li .cbp_tmlabel h4 {
  margin: 0 0 5px 0;
  padding: 0;
  font-size: 16px;
  font-size: 1rem;
}

/* The triangle */
.cbp_tmtimeline > li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #eef3f7;
  border-width: 10px;
  top: 15px;
}

/* The icons */
.cbp_tmtimeline > li .cbp_tmicon {
  width: 48px;
  height: 48px;
  font-weight: 500;
  background-color: #fff;
  text-transform: none;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 50px;
  position: absolute;
  color: #ff9933;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #999;
  text-align: center;
  left: 18.5%;
  top: 0;
  margin: 0 0 0 -25px;
}

/* Media Queries */
@media screen and (max-width: 65.375em) {
  .cbp_tmtimeline > li .cbp_tmtime span:last-child {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 47.2em) {
  .cbp_tmtimeline:before {
    display: none;
  }

  .cbp_tmtimeline > li .cbp_tmtime {
    width: 100%;
    position: relative;
    padding: 0 0 20px 0;
  }

  .cbp_tmtimeline > li .cbp_tmtime span {
    text-align: left;
  }

  .cbp_tmtimeline > li .cbp_tmlabel {
    margin: 0 0 30px 0;
    padding: 1em;
  }

  .cbp_tmtimeline > li .cbp_tmlabel:after {
    right: auto;
    left: 20px;
    border-right-color: transparent;
    border-bottom-color: #eef3f7;
    top: -20px;
  }

  .cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: transparent;
    border-bottom-color: #eef3f7;
  }

  .cbp_tmtimeline > li .cbp_tmicon {
    position: relative;
    float: right;
    left: auto;
    margin: -65px 5px 0 0px;
  }
}

ul.hotel_facilities {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

ul.hotel_facilities li {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}

ul.hotel_facilities li img {
  margin-right: 10px;
}

.room_type {
  padding: 30px 30px 10px 30px;
}

.room_type.first {
  padding: 0 30px 15px 30px;
}

.room_type.gray {
  background-color: #f8f8f8;
}

.room_type.last {
  padding: 30px 30px 0 30px;
}

@media (max-width: 767px) {
  .room_type h4 {
    margin-top: 25px;
  }
}

/*-------- 2.5 Login/register --------*/
#login_bg,
#register_bg {
  background: url(../img/hero_in_bg_3.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
}

#register_bg {
  background: url(../img/hero_in_bg_2.jpg) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#login figure,
#register figure {
  text-align: center;
  border-bottom: 1px solid #ededed;
  margin: -45px -60px 25px -60px;
  padding: 20px 60px 25px 60px;
}

@media (max-width: 767px) {
  #login figure,
  #register figure {
    margin: -30px -30px 20px -30px;
    padding: 15px 60px 20px 60px;
  }
}

#login aside,
#register aside {
  width: 430px;
  padding: 45px 60px 60px 60px;
  position: absolute;
  left: 0;
  top: 0;
  overflow-y: auto;
  background-color: #fff;
  min-height: 100vh;
}

@media (max-width: 767px) {
  #login aside,
  #register aside {
    width: 100%;
    padding: 30px;
  }
}

#login aside form,
#register aside form {
  margin-bottom: 60px;
  display: block;
}

#login aside form .form-group input,
#register aside form .form-group input {
  padding-left: 40px;
}

#login aside form .form-group i,
#register aside form .form-group i {
  font-size: 21px;
  font-size: 1.3125rem;
  position: absolute;
  left: 12px;
  top: 34px;
  color: #ccc;
  width: 25px;
  height: 25px;
  display: block;
  font-weight: 400 !important;
}

#login aside .copy,
#register aside .copy {
  text-align: center;
  position: absolute;
  height: 30px;
  left: 0;
  bottom: 30px;
  width: 100%;
  color: #999;
  font-weight: 500;
}

.access_social {
  margin-top: 45px;
}

@media (max-width: 767px) {
  .access_social {
    margin-top: 30px;
  }
}

.divider {
  text-align: center;
  height: 1px;
  margin: 30px 0 15px 0;
  background-color: #ededed;
}

.divider span {
  position: relative;
  top: -20px;
  background-color: #fff;
  display: inline-block;
  padding: 10px;
  font-style: italic;
}

a.social_bt {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  min-width: 200px;
  margin-bottom: 10px;
  display: block;
  padding: 12px;
  line-height: 1;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

a.social_bt:hover {
  -webkit-filter: brightness(115%);
  filter: brightness(115%);
}

a.social_bt.facebook:before,
a.social_bt.google:before,
a.social_bt.linkedin:before {
  font-family: "ElegantIcons";
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}

a.social_bt.facebook {
  background-color: #3b5998;
}

a.social_bt.facebook:before {
  content: "\e093";
}

a.social_bt.google {
  background-color: #dc4e41;
}

a.social_bt.google:before {
  content: "\e096";
  top: 12px;
}

a.social_bt.linkedin {
  background-color: #0077b5;
}

a.social_bt.linkedin:before {
  content: "\e09d";
}

/*Password strength */
#pass-info {
  width: 100%;
  margin-bottom: 15px;
  color: #555;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 5px 3px 3px 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

#pass-info.weakpass {
  border: 1px solid #ff9191;
  background: #ffc7c7;
  color: #94546e;
}

#pass-info.stillweakpass {
  border: 1px solid #fbb;
  background: #fdd;
  color: #945870;
}

#pass-info.goodpass {
  border: 1px solid #c4eec8;
  background: #e4ffe4;
  color: #51926e;
}

#pass-info.strongpass {
  border: 1px solid #6ed66e;
  background: #79f079;
  color: #348f34;
}

#pass-info.vrystrongpass {
  border: 1px solid #379137;
  background: #48b448;
  color: #cdffcd;
}

/* Checkbox style */
.container_check {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.8;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.container_check input:checked ~ .checkmark {
  background-color: #0054a6;
  border: 1px solid transparent;
}

.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #d2d8dd;
  background-color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}

/*-------- 2.6 Map styles --------*/
.map {
  width: 100%;
  height: 500px;
}

.map.map_single {
  height: 400px;
}

.infoBox {
  -webkit-animation: fadeIn 0.9s;
  animation: fadeIn 0.9s;
  padding-right: 50px;
}

.infoBox > img {
  position: absolute !important;
  right: 60px !important;
  top: 10px !important;
  z-index: 9999;
  width: 20px;
  height: 20px;
  display: block;
  cursor: pointer;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.marker_info {
  width: 240px;
  height: 270px;
  border-radius: 5px;
  text-align: left;
  background: #000;
  background: white;
  position: relative;
  z-index: 999;
  font-family: "Poppins", Helvetica, sans-serif;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
}

.marker_info img {
  display: block;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.marker_info h3 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 3px;
  color: #444;
}

.marker_info em {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
}

.marker_info span {
  display: block;
  padding: 20px 20px 0 20px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #fff;
  position: relative;
}

.marker_info span strong {
  display: block;
  font-weight: 500;
}

.marker_info:after {
  right: 100%;
  top: 56%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-right-color: white;
  border-width: 12px;
  margin-top: -12px;
}

a.btn_infobox_detail {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 20px;
  height: 20px;
}

a.btn_infobox_detail:before,
.btn_infobox_get_directions:before,
a.btn_infobox_phone:before {
  font-style: normal;
  font-weight: normal;
  font-family: "ElegantIcons";
  font-size: 20px;
  font-size: 1.25rem;
  cursor: pointer;
}

a.btn_infobox_detail:before {
  content: "\70";
  color: #ccc;
}

a.btn_infobox_detail:before:hover {
  color: #108482;
}

.btn_infobox_get_directions,
a.btn_infobox_phone {
  border: none;
  display: inline-block;
  font-weight: 500;
  color: #108482;
  background: none;
  cursor: pointer;
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  outline: none;
}

.btn_infobox_get_directions:focus,
a.btn_infobox_phone:focus {
  outline: none;
}

.btn_infobox_get_directions:hover,
a.btn_infobox_phone:hover {
  color: #333;
}

.btn_infobox_get_directions:before {
  font-size: 14px;
  font-size: 0.875rem;
  content: "\e080";
  position: absolute;
  left: 0;
  top: 0;
}

a.btn_infobox_phone:before {
  font-size: 14px;
  content: "\e090";
  position: absolute;
  left: 0;
  top: -2px;
}

span.infobox_rate {
  display: inline-block;
  margin: -44px 0 0 -20px;
  float: left;
  background-color: #0054a6;
  padding: 5px 8px;
  font-weight: 500;
  text-align: left;
  font-size: 12px;
  font-size: 0.75rem;
}

/* Cluster styles */
.cluster img {
  display: none;
}

.cluster-visible {
  text-align: center;
  font-size: 15px !important;
  color: #fff !important;
  font-weight: 500;
  border-radius: 50%;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  background-color: #108482;
}

.cluster-visible:before {
  border: 7px solid #108482;
  opacity: 0.2;
  box-shadow: inset 0 0 0 4px #108482;
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: cluster-animation 2.5s infinite;
}

@keyframes cluster-animation {
  0%,
  100% {
    transform: scale(1.3) rotate(0deg);
  }

  50% {
    transform: scale(1.5) rotate(90deg);
  }
}

/*-------- 2.7 Contacts--------*/
.map_contact {
  width: 100%;
  height: 465px;
}

@media (max-width: 991px) {
  .map_contact {
    height: 350px;
    margin-bottom: 45px;
  }
}

.contact_info {
  background-color: #121921;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.contact_info ul {
  margin: 0;
  padding: 0;
}

.contact_info ul li {
  float: left;
  width: 33.33%;
  position: relative;
  padding: 0 20px;
}

.contact_info ul li span {
  opacity: 0.7;
}

.contact_info ul li h4 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  color: #108482;
}

.contact_info ul li i {
  color: #fff;
  font-size: 46px;
  font-size: 2.875rem;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .contact_info ul li {
    width: 100%;
    float: none;
    margin-bottom: 35px;
    padding: 0;
  }

  .contact_info ul li:last-child {
    margin-bottom: 5px;
  }
}

.error_message {
  font-weight: 500;
  color: #e3464c;
}

/*-------- 2.8 404 page --------*/
#error_page {
  position: relative;
  width: 100%;
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../img/park/404.png);
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#error_page .error_page_image{
  position: absolute;
  height: -webkit-fill-available;
  width: 100%;
  object-fit: cover;
}

#error_page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2); /* Black with 20% opacity */
  z-index: 1; /* Ensures the overlay is behind the container content */
}

#error_page .container {
  position: relative;
  z-index: 2; /* Brings content above the overlay */
}

#error_page h2 {
  margin-top: 30px;
  font-size: 100px;

  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
}

#error_page h2 i {
  color: #ffc107;
}

.withstick {
  display: none;
}

.stickymobile .withoutstick {
  display: none;
}

.stickheadother .withoutstick {
  display: none;
}

.stickheadother .withstick {
  display: block !important;
}

.stickymobile .withstick {
  display: block !important;
}

@media (max-width: 767px) {
  #error_page h2 {
    font-size: 72px;
    font-size: 4.5rem;
  }
}

#error_page p {
  font-size: 34px;
}

@media (max-width: 767px) {
  #error_page p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  #error_page {
    padding: 0;
    height: 500px;
    overflow: hidden;
  }
}

.search_bar_error {
  position: relative;
  margin-bottom: 60px;
}

.search_bar_error input[type="text"] {
  border: 0;
  height: 50px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding-left: 15px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
}

.search_bar_error input[type="submit"] {
  position: absolute;
  right: -1px;
  color: #fff;
  font-weight: 600;
  top: 0;
  border: 0;
  padding: 0 25px;
  height: 50px;
  cursor: pointer;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  background-color: #108482;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.search_bar_error input[type="submit"]:hover {
  background-color: #ffc107;
  color: #333;
}

/*-------- 2.9 Cart section --------*/
.cart_section {
  background: #0054a6 url(../img/pattern_1.svg) center bottom repeat-x;
}

@media (max-width: 767px) {
  .cart_section {
    background-size: auto 300px;
  }
}

.cart_section.last {
  height: 600px;
}

@media (max-width: 767px) {
  .cart_section.last {
    height: 500px;
  }
}

.bs-wizard {
  width: 100%;
  margin: 50px auto 0;
}

.bs-wizard > .bs-wizard-step {
  padding: 0;
  position: relative;
  width: 33.33%;
  float: left;
}

.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
  width: 100%;
}

.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
  width: 50%;
}
.pics .d-flex {
  gap: 8px;
}
.pics img {
  width: 100px;
  height: 100px;
}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
  width: 0%;
}

.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
  width: 100%;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
  background-color: #0054a6;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
  opacity: 0;
}

.bs-wizard > .bs-wizard-step:first-child > .progress {
  left: 50%;
  width: 50%;
}

.bs-wizard > .bs-wizard-step:last-child > .progress {
  width: 50%;
}

.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
  position: absolute;
  width: 50px;
  height: 50px;
  display: block;
  top: 36px;
  left: 50%;
  margin-top: -5px;
  margin-left: -25px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #0054a6;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
  content: "\e903";
  font-family: "Fontello";
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  position: absolute;
  top: -2px;
  left: 9px;
  font-size: 32px;
  font-size: 2rem;
  color: #ffc107;
}

.bs-wizard > .bs-wizard-step > .progress {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  height: 2px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin: 34px 0;
}

.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
  width: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #fff;
}

.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
  pointer-events: none;
}

.table.cart-list {
  margin-bottom: 0;
}

.table.cart-list td {
  vertical-align: middle;
  padding: 15px;
}

.table.cart-list td strong {
  font-weight: 500;
}

.table.cart-list th,
.table.options_cart th {
  background-color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border: 0;
  padding-top: 0;
}

.table.cart-list tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.025);
}

.table > :not(:first-child) {
  border-top: 1px solid #ddd;
}

@media (max-width: 991px) {
  .table.cart-list,
  .table.cart-list thead,
  .table.cart-list tbody,
  .table.cart-list th,
  .table.cart-list td,
  .table.cart-list tr {
    display: block;
    border: 0;
  }

  .table.cart-list thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .table.cart-list tr {
    border: 1px solid #eee;
  }

  .table.cart-list td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  .table.cart-list td:before {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }

  .table.cart-list td:nth-of-type(1):before,
  .table.cart-list td:nth-of-type(2):before,
  .table.cart-list td:nth-of-type(3):before,
  .table.cart-list td:nth-of-type(4):before {
    font-weight: 600;
    color: #111;
  }

  .table.cart-list td:nth-of-type(1):before {
    content: "Item";
  }

  .table.cart-list td:nth-of-type(2):before {
    content: "Discount";
  }

  .table.cart-list td:nth-of-type(3):before {
    content: "Total";
  }

  .table.cart-list td:nth-of-type(4):before {
    content: "Actions";
  }

  td.options {
    text-align: left !important;
  }
}

.thumb_cart {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  float: left;
}

.thumb_cart img {
  width: 60px;
  height: auto;
}

@media (max-width: 991px) {
  .thumb_cart {
    display: none;
  }
}

.item_cart {
  display: inline-block;
  margin: 20px 0 0 15px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .item_cart {
    margin: 5px 0 0 0;
  }
}

#total_cart {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid #ededed;
  margin: 0 -25px 20px -25px;
  padding: 0 25px 15px 25px;
  line-height: 1;
}

#total_cart span {
  font-weight: 600;
}

ul.cart_details {
  margin: 0 0 25px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #ededed;
}

ul.cart_details li {
  font-weight: 500;
}

ul.cart_details li span {
  float: right;
}

.form_title {
  position: relative;
  padding-left: 55px;
  margin-bottom: 10px;
}

.form_title {
  position: relative;
  padding-left: 55px;
  margin-bottom: 0;
}

.form_title h3 {
  margin: 0;
  padding: 0;
  font-size: 21px;
  font-size: 1.3125rem;
}

.form_title h3 strong {
  background-color: #108482;
  text-align: center;
  width: 40px;
  height: 40px;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 42px;
  text-align: center;
  position: absolute;
  left: 0;
  top: -5px;
}

.form_title p {
  color: #999;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
}

.cards-payment {
  margin-top: 28px;
}

@media (max-width: 991px) {
  .cards-payment {
    display: none;
  }
}

.box_cart .step {
  padding: 15px 55px 0 55px;
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .box_cart .step {
    padding: 15px 0 0 0;
  }
}

.message {
  background-color: #f8f8f8;
  padding: 15px;
  margin-bottom: 30px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.message p {
  margin: 0;
}

#confirm {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 20px;
}

#confirm h4 {
  color: #fff;
}

#confirm p {
  font-size: 16px !important;
  font-size: 16px !important;
  margin-bottom: 0;
}

.box_cart {
  margin-bottom: 25px;
}

.box_cart hr {
  margin: 30px -25px 30px -25px;
}

.box_cart label {
  font-weight: 500;
}

.box_cart a.btn_1.outline,
.box_cart .btn_1.outline {
  border: 2px solid #999;
  color: #999;
  padding: 12px 40px;
}

.box_cart a.btn_1.outline:hover,
.box_cart .btn_1.outline:hover {
  color: #fff;
  border: 2px solid #0054a6;
}

.cart-options {
  position: relative;
  padding: 25px 0px 0px 0px;
}

@media (max-width: 991px) {
  .cart-options .fix_mobile {
    float: left !important;
  }
}

.apply-coupon .form-group {
  position: relative;
  float: left;
  margin-right: 10px;
}

.apply-coupon .form-control {
  padding: 10px 12px;
}

/*-------- 2.10 Media Gallery --------*/
.grid ul {
  margin: 0 0 25px 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.grid ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin: -3px;
  min-height: 100%;
  width: 25%;
  background-color: #000;
  list-style: none;
}

@media (max-width: 991px) {
  .grid ul li {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .grid ul li {
    width: 100%;
    min-height: 100%;
    float: none;
  }
}

.grid ul li figure {
  position: relative;
  overflow: hidden;
  margin: -3px;
}

.grid ul li figure img {
  width: 100%;
  height: 100%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grid ul li figure:hover img,
.grid ul li figure:focus img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.grid ul li figure:hover figcaption,
.grid ul li figure:focus figcaption {
  opacity: 1;
}

.grid ul li figure:hover figcaption .caption-content,
.grid ul li figure:focus figcaption .caption-content {
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.grid ul li figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15% 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 0;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grid ul li figcaption .caption-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -100px;
  width: 200px;
  -webkit-transform: translate(0px, 15px);
  -moz-transform: translate(0px, 15px);
  -ms-transform: translate(0px, 15px);
  -o-transform: translate(0px, 15px);
  transform: translate(0px, 15px);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.grid ul li figcaption a {
  color: #fff;
}

.grid ul li figcaption a:hover,
.grid ul li figcaption a:focus {
  color: #108482;
}

.grid ul li figcaption i {
  font-size: 30px;
  font-size: 1.875rem;
}

.grid ul li figcaption p {
  margin-bottom: 0;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 400;
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*-------- 2.11 Faq --------*/
.box_style_cat {
  background: #fff;
  border: 1px solid #ededed;
  margin-bottom: 25px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .box_style_cat {
    display: none;
  }
}

ul#cat_nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul#cat_nav li {
  border-bottom: 1px solid #ededed;
}

ul#cat_nav li i {
  font-size: 16px;
  font-size: 1rem;
  margin: 2px 10px 0 0;
  float: left;
}

ul#cat_nav li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

ul#cat_nav li a {
  position: relative;
  color: #555;
  display: block;
  padding: 15px 10px;
}

ul#cat_nav li a:after {
  font-family: "fontello";
  content: "\e89b";
  position: absolute;
  right: 15px;
  top: 15px;
}

ul#cat_nav li a span {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #999;
}

ul#cat_nav li a:hover,
ul#cat_nav li a#active,
ul#cat_nav li a.active {
  color: #108482;
}

.hero_in form {
  animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
}

a.box_topic {
  text-align: center;
  background: #fff;
  padding: 40px 30px 15px 30px;
  display: block;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  color: #555;
  margin-bottom: 30px;
  overflow: hidden;
}

@media (max-width: 767px) {
  a.box_topic {
    padding: 20px 20px 0 20px;
  }
}

a.box_topic:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

a.box_topic i {
  font-size: 60px;
  font-size: 3.75rem;
  color: #32a067;
  margin-bottom: 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  background-color: #2c8e5b;
  background-color: rgba(50, 160, 103, 0.05);
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 15px;
}

a.box_topic h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

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

.list_articles ul li {
  float: left;
  width: 45%;
  margin-right: 45px;
  padding: 15px 0;
  border-bottom: 1px solid #ededed;
}

.list_articles ul li a {
  color: #555;
  display: block;
}

.list_articles ul li a:hover {
  color: #108482;
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}

.list_articles ul li i {
  margin-right: 10px;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  top: 2px;
}

@media (max-width: 991px) {
  .list_articles ul li {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}

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

ul.list_3 li {
  margin-bottom: 0;
  position: relative;
  padding-left: 20px;
}

ul.list_3 li strong {
  font-weight: 500;
}

ul.list_3 li:before {
  font-family: "fontello";
  content: "\ea3e";
  position: absolute;
  left: 0;
  top: 0;
}

.box_general {
  border: 1px solid #ededed;
  padding: 25px 25px 5px 25px;
  margin-bottom: 25px;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}

/*-------- 2.12 Adventure --------*/
.header-video.adventure .wrapper {
  padding-top: 60px;
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
}

.header-video.adventure .wrapper small {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .header-video.adventure .wrapper h3 {
    font-size: 36px !important;
    margin-top: 0 !important;
  }
}

.header-video.adventure .wrapper p {
  max-width: 400px;
}

@media (max-width: 767px) {
  .header-video.adventure .wrapper p {
    font-size: 21px !important;
  }
}

@media (max-width: 1024px) {
  .header-video.adventure #hero_video {
    background: #ccc url(../img/bg_fallback_video_adventure.jpg) center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

  .header-video.adventure #hero_video > div {
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .header-video.adventure {
    background: none;
  }
}

a.grid_item_adventure {
  display: block;
  margin-bottom: 25px;
}

a.grid_item_adventure .info {
  position: absolute;
  width: 100%;
  z-index: 9;
  display: block;
  padding: 25px 20px 5px 20px;
  color: #fff;
  left: 0;
  bottom: 0;
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
  box-sizing: border-box;
}

a.grid_item_adventure .info h3 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
}

a.grid_item_adventure .info p {
  color: #fff;
  margin-bottom: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}

a.grid_item_adventure figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

a.grid_item_adventure figure .score {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 9;
}

a.grid_item_adventure figure em {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

a.grid_item_adventure figure img {
  width: 100%;
  height: auto;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

a.grid_item_adventure:hover figure img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

a.grid_item.latest_adventure h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

a.grid_item.latest_adventure em {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  font-style: normal;
}

.banner {
  background: url(../img/banner_bg_desktop.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 420px;
  margin-bottom: 60px;
  position: relative;
}

@media (max-width: 767px) {
  .banner {
    background: url(../img/banner_bg_mobile.jpg) center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}

.banner .wrapper {
  color: #fff;
  padding: 60px;
}

@media (max-width: 767px) {
  .banner .wrapper {
    padding: 30px;
  }
}

.banner .wrapper small {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.banner .wrapper h3 {
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  margin: 15px 0 0 0;
}

.banner .wrapper p {
  font-size: 21px;
  font-size: 1.3125rem;
}

.call_section.adventure {
  background: url(../img/park/webp/dog_back.webp) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.adventure_feat h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin-top: 20px;
}

.hero_in.adventure_detail {
  text-align: left;
  height: 600px;
}

@media (max-width: 767px) {
  .hero_in.adventure_detail {
    height: 550px;
  }
}

.hero_in.adventure_detail:before {
  background: url(../img/bg_adventure_detail.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_in.adventure_detail .container {
  position: relative;
  height: 100%;
}

.hero_in.adventure_detail .wrapper a.btn_photos {
  left: 30px;
  bottom: 35px;
}

.hero_in.adventure_detail .wrapper .main_info {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 999;
  padding-bottom: 30px;
}

.hero_in.adventure_detail .wrapper .main_info em {
  font-style: normal;
  text-transform: uppercase;
}

.hero_in.adventure_detail .wrapper .main_info h1 {
  color: #fff;
  margin: 0;
  text-transform: none;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .hero_in.adventure_detail .wrapper .main_info h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.hero_in.adventure_detail .wrapper .main_info h3 {
  color: #fff;
  margin: 0;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .hero_in.adventure_detail .wrapper .main_info h3 {
    margin-top: 10px;
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.hero_in.adventure_detail .wrapper .main_info p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
}

.hero_in.adventure_detail .wrapper .main_info p strong {
  font-weight: 600;
}

.hero_in.adventure_detail .wrapper .main_info ul {
  margin: 10px 0 0 0;
  padding-bottom: 0;
  list-style: none;
}

.hero_in.adventure_detail .wrapper .main_info ul li {
  display: inline-block;
  line-height: 1.2;
  margin-right: 30px;
}

.hero_in.adventure_detail .wrapper .main_info ul li:last-child {
  margin-right: 0;
}

.hero_in.adventure_detail .wrapper .main_info ul li span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

.hero_in.adventure_detail .wrapper .main_info ul li i {
  margin-bottom: 5px;
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
}

.adventure_detail .container {
  position: relative;
  height: 100%;
}

.adventure_detail .main_info {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 999;
  padding: 0 15px;
  padding-bottom: 25px;
}

.adventure_description h2 {
  font-size: 26px;
  font-size: 1.625rem;
}

ul.list_feat {
  margin: 0 0 25xp 0;
  padding: 0;
  list-style: none;
}

ul.list_feat li {
  float: left;
  width: 30%;
  margin: 0 15px 15px 0;
  border: 1px solid #ededed;
  padding: 25px;
  min-height: 180px;
}

@media (max-width: 991px) {
  ul.list_feat li {
    width: 45%;
  }
}

@media (max-width: 575px) {
  ul.list_feat li {
    width: 100%;
    min-height: inherit;
  }
}

ul.list_feat li h4 {
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
}

ul.list_feat li p {
  margin: 0;
  color: #777;
}

/* Opacity mask when left open */
.layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.35);
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
  opacity: 0;
  visibility: hidden;
}

.layer-is-visible {
  opacity: 1;
  visibility: visible;
}

#panel_dates {
  right: -100%;
  bottom: 0;
  width: 400px;
  height: 100%;
  opacity: 0;
  position: fixed;
  background-color: #fff;
  transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  z-index: 9999999;
  -webkit-box-shadow: 1px 0px 5px 0px rgba(50, 50, 50, 0.55);
  -moz-box-shadow: 1px 0px 5px 0px rgba(50, 50, 50, 0.55);
  box-shadow: 1px 0px 5px 0px rgba(50, 50, 50, 0.55);
  overflow: auto;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  #panel_dates {
    width: 100%;
  }
}

#panel_dates.show {
  visibility: visible;
  opacity: 1;
  right: 0;
}

#panel_dates a.aside-panel-bt {
  font-size: 24px;
  position: relative;
  left: 10px;
  top: 0;
  width: 24px;
  height: 24px;
  color: #ccc;
}

#panel_dates a.aside-panel-bt:hover {
  color: #333;
}

.additional_txt {
  padding: 0 25px 10px 25px;
}

.additional_txt p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.timeline {
  padding-left: 25px;
  border-left: 1px solid #ededed;
}

.timeline h3 {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
}

.timeline h3:before {
  font-family: "ElegantIcons";
  content: "\5c";
  position: absolute;
  left: -35px;
  top: -3px;
  font-size: 21px;
  font-size: 1.3125rem;
  color: #ccc;
  background-color: #fff;
}

.pictures {
  margin-bottom: 45px;
}

.pictures figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  height: 100px;
  width: 100px;
  display: inline-block;
}

.pictures figure a {
  display: block;
}

.pictures figure a span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
}

.pictures figure a img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  z-index: 1;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pictures figure a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
  -moz-transform: translate(-50%, -50%) scale(1.05);
  -ms-transform: translate(-50%, -50%) scale(1.05);
  -o-transform: translate(-50%, -50%) scale(1.05);
  transform: translate(-50%, -50%) scale(1.05);
}

/*-------- 2.13 Home AirBnb --------*/
/* Home single hero */
.hero_single.version_3 {
  height: 690px;
}

.hero_single.version_3:before {
  background: url(../img/home_section_3.jpg) center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.hero_single.version_3 .wrapper {
  background-color: black;
  background-color: rgba(0, 0, 0, 0.45);
}

.hero_single.version_3 .wrapper .main_search {
  background-color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  width: 460px;
  text-align: left;
  padding: 30px 30px 15px 30px;
}

@media (max-width: 767px) {
  .hero_single.version_3 .wrapper .main_search {
    width: auto;
  }
}

.hero_single.version_3 .wrapper .main_search h3 {
  color: #333;
  font-size: 28px;
  font-size: 1.75rem;
  text-transform: none;
  font-weight: 500;
}

.hero_single.version_3 .wrapper .main_search p {
  color: #555;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0;
  margin-bottom: 20px;
}

.hero_single.version_3 .wrapper .main_search .custom-search-input-2 {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.hero_single.version_3
  .wrapper
  .main_search
  .custom-search-input-2
  .form-group {
  margin-bottom: 15px;
}

.hero_single.version_3 .wrapper .main_search .custom-search-input-2 i {
  line-height: 48px;
  top: 1px;
  right: 1px;
  padding-right: 12px;
  height: 46px;
}

.hero_single.version_3 .wrapper .main_search .custom-search-input-2 input {
  border: 1px solid #d2d8dd;
}

.hero_single.version_3
  .wrapper
  .main_search
  .custom-search-input-2
  .panel-dropdown {
  border: 1px solid #d2d8dd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  height: 50px;
  padding: 14px 12px 0 15px;
}

.hero_single.version_3
  .wrapper
  .main_search
  .custom-search-input-2
  input[type="submit"] {
  margin: 20px 0 0 0;
  border: none;
  width: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

/*-------- 2.14 Half screen map --------*/
/* Header */
header.header.map_view {
  padding: 12px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ededed;
}

@media (max-width: 991px) {
  header.header.map_view {
    padding: 15px 15px 5px 15px;
  }
}

header.header.map_view ul#top_menu li a.login:before,
header.header.map_view ul#top_menu li a.wishlist_bt_top:before,
header.header.map_view ul#top_menu li a.cart-menu-btn:before {
  color: #444;
}

header.header.map_view .main-menu > ul > li span > a {
  color: #444;
}

header.header.map_view .main-menu > ul > li span:hover > a {
  opacity: 1;
  color: #108482;
}

header.header.map_view .hamburger-inner,
header.header.map_view .hamburger-inner::before,
header.header.map_view .hamburger-inner::after {
  background-color: #444;
}

.full-height {
  height: 100%;
}

@media (max-width: 991px) {
  .full-height {
    height: auto;
  }
}

.row-height {
  height: 100%;
  min-height: 100%;
  padding-top: 15px;
}

.park-map-page .row-height {
  height: calc(100% - 227px);
  min-height: auto;
  overflow: hidden;
}

@media (max-width: 991px) {
  .row-height {
    height: auto;
    padding-top: 50px;
  }
}

.map-right {
  height: 100%;

  padding: 0px;
  /* position: fixed; */
  top: 0px;
  right: 0;
  /* padding-top: 250px; */
}

@media (max-width: 991px) {
  .map-right {
    height: 400px;
    position: static;
    min-height: inherit;
  }
}

.map-right #map {
  height: 100%;
  width: 100%;
}

.content-left {
  height: 100%;
  min-height: 100%;
  background-color: #fff;
}

@media (max-width: 991px) {
  .content-left {
    padding-top: 0;
  }
}

.search_map_wp {
  padding: 10px 0 10px 0;
  display: none;
  width: 100%;
}

.search_map_wp .nice-select {
  margin-bottom: 5px;
  border: none;
}

.search_map_wp .form-control {
  margin-bottom: 10px;
}

.search_map_wp input[type="submit"] {
  background-color: #ffc107;
  color: #222;
}

.search_map_wp input[type="submit"]:hover {
  background-color: #32a067;
  color: #fff;
}

a.btn_search_map_view {
  background: url(../img/search.svg) no-repeat center center;
  background-size: 21px 21px;
  width: 21px;
  height: 21px;
  float: right;
  display: block;
}

#results_map_view {
  padding: 10px 0;
  margin: 0 -15px;
  color: #fff;
  background: #0054a6;
  position: relative;
  z-index: 99999999 !important;
}

#results_map_view h4 {
  color: #fff;
  margin: 3px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
}

@media (max-width: 991px) {
  #results_map_view h4 {
    margin: 5px 0 0 0;
  }
}

@media (max-width: 767px) {
  #results_map_view h4 {
    margin: 3px 0 0 0;
  }
}

.custom-search-input-2.map_view {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.custom-search-input-2.map_view input {
  border: none;
}

.custom-search-input-2.map_view input[type="submit"] {
  margin: 20px 0 0 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.filters_listing.version_3 {
  margin: 0 -15px 0 -15px;
}

.filters_listing.version_3 ul {
  margin: 2px 0 0 0;
}

.filters_listing.version_3 ul li {
  margin-right: 10px;
}

.filters_listing.version_3 ul li:first-child {
  float: left;
}

.filters_listing.version_3 ul li:nth-child(2) {
  float: right;
  margin-right: 0;
}

a.btn_filt_map {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  padding: 8px 12px 8px 10px;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 12px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  position: relative;
}

@media (max-width: 767px) {
  a.btn_filt_map {
    text-indent: -999px;
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
  }
}

a.btn_filt_map:hover {
  color: #108482;
}

a.btn_filt_map:before {
  font-family: "ElegantIcons";
  content: "\67";
  display: inline-block;
  margin-right: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media (max-width: 767px) {
  a.btn_filt_map:before {
    text-indent: 1px;
    position: absolute;
    left: 3px;
    top: 4px;
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: normal;
  }
}

#filters {
  background-color: #fff;
  padding-top: 15px;
  border-bottom: 1px solid #ededed;
}

#filters h6 {
  margin-bottom: 15px;
  font-size: 16px;
  font-size: 1rem;
}

.map_view#filters {
  margin: 0 -15px;
}

.box_list.map_view {
  min-height: 120px;
  margin: 0 0 20px 0;
}

.box_list.map_view .wrapper {
  min-height: 125px;
  padding: 20px 20px 0 20px;
}

.box_list.map_view .wrapper .price {
  line-height: 1.2;
}

@media (max-width: 767px) {
  .box_list.map_view .wrapper h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .box_list.map_view .wrapper {
    min-height: 110px;
    padding-right: 45px;
  }
}

@media (max-width: 991px) {
  .box_list.map_view .wrapper {
    min-height: 110px;
  }
}

.box_list.map_view figure {
  height: 185px;
  min-height: inherit;
}

.box_list.map_view figure small {
  font-size: 11px;
  font-size: 0.6875rem;
}

@media (max-width: 991px) {
  .box_list.map_view figure {
    height: 165px;
  }
}

.box_list.map_view figure a img {
  height: 210px;
  width: auto;
  max-width: none;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .box_list.map_view figure a img {
    max-width: inherit;
    height: 210px;
    width: auto;
  }
}

.box_list.map_view figure a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.box_list.map_view ul {
  padding: 20px 15px 0 15px;
}

@media (max-width: 991px) {
  .box_list.map_view ul li:first-child {
    display: none;
  }
}

a.address {
  display: inline-block;
  font-weight: 500;
  color: #999;
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
}

a.address:before {
  font-family: "ElegantIcons";
  content: "\e081";
  margin-right: 5px;
  display: inline-block;
}

a.address:hover {
  color: #108482;
}

.distance {
  margin-bottom: 15px;
}

.distance span {
  font-weight: 600;
  color: #108482;
}

.rangeslider__handle {
  border: 2px solid #108482 !important;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.rangeslider__fill {
  background: #108482 !important;
}

/*-------- 2.15 Autocomplete Address Search --------*/
.pac-container {
  margin-top: 5px;
  border-top: none !important;
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  -ms-border-radius: 4px !important;
  border-radius: 4px !important;
  font-family: "Poppins", Helvetica, sans-serif;
  color: #555;
  -webkit-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
}

.pac-item-query {
  color: #555;
}

/*-------- 2.16 OpenStreet Map --------*/
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
  max-width: none !important;
}

/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
  max-width: 15000px !important;
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-tile-pane {
  z-index: 2;
}

.leaflet-objects-pane {
  z-index: 3;
}

.leaflet-overlay-pane {
  z-index: 4;
}

.leaflet-shadow-pane {
  z-index: 5;
}

.leaflet-marker-pane {
  z-index: 6;
}

.leaflet-popup-pane {
  z-index: 7;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 7;
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-clickable {
  cursor: pointer;
}

.leaflet-container {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #0078a8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-control-zoom-out {
  font-size: 20px;
}

.leaflet-touch .leaflet-control-zoom-in {
  font-size: 22px;
}

.leaflet-touch .leaflet-control-zoom-out {
  font-size: 24px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  margin: 0 auto;
  width: 40px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* leaflet marker cluster styles ===================== */
.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background-color: transparent;
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  margin-left: 5px;
  margin-top: 5px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #108482;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background-color: #108482;
}

.marker-cluster div:before {
  content: "";
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 7px solid #108482;
  opacity: 0.2;
  box-shadow: inset 0 0 0 4px #108482;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: cluster-animation 2.5s infinite;
}

.marker-cluster span {
  font-family: Arial, sans-serif;
  line-height: 36px;
}

.leaflet-popup-content-wrapper {
  width: 240px;
  height: 270px;
  padding: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  border-radius: 5px !important;
}

.leaflet-popup-content {
  margin: 0;
  font-family: "Poppins", Helvetica, sans-serif;
  position: relative;
}

.leaflet-popup-content img {
  display: block;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.leaflet-popup-content h3 {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: 500;
  margin-top: 3px;
  color: #444;
}

.leaflet-popup-content em {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
  font-style: normal;
}

.leaflet-popup-content span {
  display: block;
  padding: 15px 20px 0 20px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #fff;
  position: relative;
}

.leaflet-popup-content span strong {
  display: block;
  font-weight: 500;
}

.leaflet-popup-content a {
  color: #108482;
}

.leaflet-popup-content span.infobox_rate {
  display: inline-block;
  margin: -39px 0 0 -20px;
  float: left;
  background-color: #0054a6;
  padding: 5px 8px;
  font-weight: 500;
  text-align: left;
  font-size: 12px;
  font-size: 0.75rem;
}

.leaflet-container a.leaflet-popup-close-button {
  z-index: 9999;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 5px;
  right: 5px;
  padding: 0;
  line-height: 18px;
  text-align: center;
}

/*-------- 2.17 Parallax Video Background --------*/
.hero_single {
  height: 650px;
}

.hero_single .wrapper h3 {
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 72px;
  /* 120% */
  letter-spacing: 1px;
  font-size: 42px;
}

@media (max-width: 767px) {
  .hero_single .wrapper h3 {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 60px;
  }
}

.hero_single .wrapper p {
  font-weight: 400;
  margin: 5px 0 0 0;
  padding: 0;
  font-size: 21px;
  font-size: 1.3125rem;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .hero_single .wrapper p {
    padding: 0;
    font-size: 16px;
    font-size: 1rem;
  }
}

.hero_single video {
  opacity: 1;
}

/*-------- 2.18 Other Headers --------*/
.hero_single.fullscreen {
  width: 100%;
  height: 100vh;
}

@media (max-width: 767px) {
  .hero_single.fullscreen {
    height: 90vh;
  }
}

.hero_single.fullscreen.video_bg video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  opacity: 1;
  z-index: -1;
}

a.btn_explore {
  background: #fff;
  display: block;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  line-height: 65px;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -30px;
  font-size: 24px;
  font-size: 1.5rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  animation: pulseanime 2.5s infinite;
  -webkit-animation: pulseanime 2.5s infinite;
}

a.btn_explore:hover {
  bottom: 30px;
}

@-webkit-keyframes pulseanime {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulseanime {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*-------- 2.19 Home Categories Hover effect --------*/
.hero_single.cat_hover {
  height: 720px;
  background-color: #00509e;
  background-color: rgba(0, 84, 166, 0.7);
}

.hero_single.cat_hover .wrapper {
  padding-top: 45px;
  background: #0054a6;
  background: -webkit-linear-gradient(top, #0054a6, transparent);
  background: linear-gradient(to bottom, #0054a6, transparent);
}

.hero_single.cat_hover .wrapper h3 {
  font-size: 42px;
  font-size: 2.625rem;
}

@media (max-width: 767px) {
  .hero_single.cat_hover .wrapper h3 {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 60px;
  }
}

.hero_single.cat_hover .cat_nav_hover ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .hero_single.cat_hover .cat_nav_hover ul {
    overflow-x: scroll;
    justify-content: start;
  }
}

.hero_single.cat_hover .cat_nav_hover ul li {
  padding: 0 10px;
  width: calc(20% - 10px);
}

@media (max-width: 767px) {
  .hero_single.cat_hover .cat_nav_hover ul li {
    width: auto;
  }
}

.hero_single.cat_hover .cat_nav_hover ul li a {
  display: block;
}

.hero_single.cat_hover .cat_nav_hover ul li a figure {
  width: 100%;
  height: 140px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

@media (max-width: 767px) {
  .hero_single.cat_hover .cat_nav_hover ul li a figure {
    height: 110px;
  }
}

.hero_single.cat_hover .cat_nav_hover ul li a figure img {
  margin: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 5px;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}

.hero_single.cat_hover .cat_nav_hover ul li a h2 {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}

.hero_single.cat_hover .cat_nav_hover ul li a:hover figure img {
  opacity: 1;
}

.hero_single.cat_hover .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-in-out;
}

.hero_single.cat_hover .image-bg img,
.hero_single.cat_hover .image-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(100%);
}

@media (max-width: 767px) {
  .hero_single.cat_hover .container-item {
    width: 200px;
  }
}

.hero_single.cat_hover .container-item.active figure img {
  opacity: 1;
}

.hero_single.cat_hover .container-item.active a + .image-bg {
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero_single.cat_hover.version_2 {
  height: 100vh;
  background: none;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .hero_single.cat_hover.version_2 {
    height: 90vh;
  }
}

.hero_single.cat_hover.version_2 .wrapper {
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, transparent);
  background: linear-gradient(to bottom, transparent, transparent);
}

.hero_single.cat_hover.version_2 .image-bg img,
.hero_single.cat_hover.version_2 .image-bg video {
  filter: grayscale(0);
}

/*-------- 2.20 Home Search Radio categories --------*/
.hero_single.radio_cat {
  height: 700px;
}

.hero_single.radio_cat .switch-field {
  padding: 15px 0 15px 0;
  justify-content: center;
  display: flex;
  border: 0;
}

@media (max-width: 767px) {
  .hero_single.radio_cat .switch-field {
    overflow-x: scroll;
    justify-content: center;
  }
}

.explorepark a {
  color: #fff !important;
}
.hero_single.radio_cat .switch-field::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.hero_single.radio_cat .switch-field input:checked + label {
  border-bottom: 2px solid;
}

.hero_single.radio_cat .switch-field label {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 15px;
  color: #fff;
  font-weight: 500;
  min-width: 125px;
}

.hero_single.radio_cat .switch-field label img {
  display: block;
  width: 45px;
  height: auto;
  margin: 0 auto 10px;
}

@media (max-width: 767px) {
  .hero_single.radio_cat .switch-field label {
    padding: 10px;
  }
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Misc --------*/
@media (min-width: 1400px) {
  .container-custom {
    max-width: 100%;
  }
}

.lostdogfound {
  padding: 32px;
}

.opacity-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.error {
  color: red;
  width: 100%;
}

.upload-image-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.preview-container img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
}

#file-input {
  visibility: hidden; /* Hides the element visually but keeps it in the DOM */
  position: absolute; /* Optional: Prevent it from affecting layout */
}

.preview-container .image-wrapper {
  position: relative;
}

.preview-container .delete-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
}

.suggest-pin-form .upload-image svg {
  display: flex;
  width: 52px;
  height: 52px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 32px;
  border: 1px solid var(--Primary-500, #108482);
  background: var(--Grays-White, #fff);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.bg_color_1 {
  background-color: #fff;
}

.box_1 {
  background-color: #121921;
  color: #fff;
  padding: 45px;
  opacity: 0;
}

.box_1 p {
  opacity: 0.8;
}

.box_1 h3 {
  color: #fff;
}

.animated .box_1 {
  animation: color 0.3s ease-in-out;
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.call_section {
  background: url(../img/park/webp/dog_back.webp) center center no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 400px;
  padding: 10% 0;
}

.box_faq {
  position: relative;
  padding-left: 50px;
}

.box_faq h4 {
  font-size: 18px;
  font-size: 1.125rem;
}

.box_faq i {
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
}

.custom-select-form .nice-select {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d2d8dd;
  height: 45px;
  line-height: 42px;
}

.custom-select-form .nice-select:hover {
  border-color: #d2d8dd;
}

.custom-select-form .nice-select:active,
.custom-select-form .nice-select.open,
.custom-select-form .nice-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select-form select {
  display: none;
}

ul.share-buttons {
  padding: 0;
  list-style: none;
  text-align: center;
  margin: 0 0 25px 0;
}

ul.share-buttons li {
  display: inline-block;
  margin: 0 5px 5px 5px;
}

ul.share-buttons li a {
  background: #fff;
  border: 1px solid #666;
  border-radius: 50px;
  font-weight: 500;
  font-size: 13px;
  padding: 7px 20px;
  transition: 0.3s;
  display: inline-block;
  line-height: 17px;
  font-weight: 500;
}

ul.share-buttons li a:hover {
  color: #fff;
}

ul.share-buttons li a.fb-share {
  border-color: #3b5998;
  color: #3b5998;
}

ul.share-buttons li a.fb-share:hover {
  background: #3b5998;
  color: #fff;
}

ul.share-buttons li a.gplus-share {
  border-color: #dd4b39;
  color: #dd4b39;
}

ul.share-buttons li a.gplus-share:hover {
  background: #dd4b39;
  color: #fff;
}

ul.share-buttons li a.twitter-share {
  border-color: #1da1f2;
  color: #1da1f2;
}

ul.share-buttons li a.twitter-share:hover {
  background: #1da1f2;
  color: #fff;
}

ul.share-buttons li i {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  right: 3px;
  top: 2px;
}

/* Jquery select */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 3px;
  border: none;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 50px;
  line-height: 48px;
  outline: none;
  padding-left: 15px;
  padding-right: 27px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
  color: #555;
  padding-top: 2px;
}

.nice-select:hover {
  border-color: #8c8c8c;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 8px;
  margin-top: -5px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #9e9e9e;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-25px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  height: 18vh;
  overflow: auto;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .list::-webkit-scrollbar {
  width: 14px;
  height: 18px;
}

.nice-select .list::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid transparent;
  background-clip: padding-box;
  -webkit-border-radius: 7px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05),
    inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.nice-select .list::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.nice-select .list::-webkit-scrollbar-corner {
  background-color: transparent;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 38px;
  list-style: none;
  min-height: 38px;
  outline: none;
  padding-left: 15px;
  padding-right: 26px;
  text-align: left;
  transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 500;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/* Scroll top button */
#toTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 1;
  border-radius: 50%;
  text-align: center;
  font-size: 21px;
  color: #fff;
  cursor: pointer;
}

#toTop:after {
  content: "\e899";
  font-family: "fontello";
  position: relative;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
}

#toTop:hover {
  background-color: #108482;
}

/* Bootstrap Modal Fix */
.modal-backdrop {
  position: static;
  background-color: transparent;
}

.modal {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.7);
}

/*-------- 3.2 Accordion --------*/
.accordion_2 .card {
  border: 0;
  margin-bottom: 5px;
}

.accordion_2 .card .card-header {
  background-color: #fff;
  border-bottom: 1px solid #ededed;
  padding: 20px 0px;
}

.faqhome .card-body {
  padding: 15px 0px;
}

.accordion_2 .card-body {
  padding-bottom: 0;
}

.accordion_2 .card-header h5, .accordion_2 .card-header h3 {
  font-size: 1rem;
}

.accordion_2 .card-header h5 a, .accordion_2 .card-header h3 a {
  border: 0;
  /* display: block; */
  color: #000;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion_2 .card-header h5 a i.indicator, .accordion_2 .card-header h3 a i.indicator {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  float: right;

  color: var(--Gray-800, #1d2939);
}

.card {
  border-radius: 0;
  border: 0;
  margin-bottom: 5px;
}

/*-------- 3.3 List --------*/
ul.list_ok {
  list-style: none;
  margin: 25px 0 30px 0;
  padding: 0;
}

ul.list_ok li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
}

ul.list_ok li:before {
  font-family: "ElegantIcons";
  content: "\52";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 32px;
  font-size: 2rem;
  color: #8dc63f;
}

ul.bullets {
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

ul.bullets li {
  position: relative;
  padding-left: 20px;
}

ul.bullets li:before {
  font-style: normal;
  font-weight: normal;
  font-family: "ElegantIcons";
  font-size: 14px;
  font-size: 0.875rem;
  content: "\5c";
  color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
}

/*-------- 3.4 Spacing --------*/
.add_bottom_15 {
  margin-bottom: 15px;
}

.add_bottom_30 {
  margin-bottom: 30px;
}

.add_bottom_45 {
  margin-bottom: 45px;
}

.add_bottom_60 {
  margin-bottom: 60px;
}

.add_bottom_75 {
  margin-bottom: 75px;
}

.add_top_10 {
  margin-top: 10px;
}

.add_top_15 {
  margin-top: 15px;
}

.add_top_20 {
  margin-top: 20px;
}

.add_top_30 {
  margin-top: 30px;
}

.add_top_60 {
  margin-top: 60px;
}

.more_padding_left {
  padding-left: 40px;
}

.nomargin_top {
  margin-top: 0;
}

.nopadding {
  margin: 0 !important;
  padding: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.margin_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.margin_60_35 {
  padding-top: 60px;
  padding-bottom: 35px;
}

@media (max-width: 575px) {
  .margin_60_35 {
    padding-top: 30px;
    padding-bottom: 5px;
  }
}

.margin_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 991px) {
  .margin_80 {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}

@media (max-width: 575px) {
  .margin_80 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.margin_80_55 {
  padding-top: 80px;
  padding-bottom: 55px;
}

@media (max-width: 991px) {
  .margin_80_55 {
    padding-top: 60px;
    padding-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .margin_80_55 {
    padding-top: 45px;
    padding-bottom: 15px;
  }
}

.margin_80_0 {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .margin_80_0 {
    padding-top: 60px;
  }
}

@media (max-width: 575px) {
  .margin_80_0 {
    padding-top: 45px;
  }
}

.margin_60_0 {
  padding-top: 60px;
}

@media (max-width: 991px) {
  .margin_60_0 {
    padding-top: 60px;
  }
}

@media (max-width: 575px) {
  .margin_60_0 {
    padding-top: 45px;
  }
}

.margin_30_95 {
  padding-top: 30px;
  padding-bottom: 95px;
}

@media (max-width: 991px) {
  .margin_30_95 {
    padding-top: 15px;
    padding-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .margin_30_95 {
    padding-top: 5px;
    padding-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .hidden_tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden_mobile {
    display: none !important;
  }
}

/*-------- 3.5 Block reveal --------*/
.animated .block-reveal {
  height: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.block-horizzontal,
.block-vertical {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.animated .block-horizzontal {
  animation: reveal_left_to_right 1s ease-in-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  background: #0054a6;
}

.animated .block-vertical {
  animation: reveal_top_to_bottom 1s ease-in-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  background: #0054a6;
}

.block-reveal img {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.animated .block-reveal img {
  animation: color 0.5s ease-in-out;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes reveal_left_to_right {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes reveal_top_to_bottom {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  50% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes color {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*-------- 3.6 Cookie bar --------*/
#cookie-bar {
  background: rgba(0, 0, 0, 0.8);
  height: auto;
  line-height: 24px;
  color: #eeeeee;
  text-align: center;
  padding: 15px 0;
  font-weight: 400;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}

#cookie-bar p {
  margin: 0;
  padding: 0;
}

#cookie-bar a {
  color: #fff;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  padding: 2px 10px;
  margin-left: 8px;
}

@media (max-width: 767px) {
  #cookie-bar a {
    display: block;
    max-width: 150px;
    margin: auto;
    margin-bottom: 5px;
  }
}

#cookie-bar .cb-enable {
  background: #32a067;
}

#cookie-bar .cb-enable:hover {
  background: #fff;
  color: #0054a6;
}

#cookie-bar .cb-disable {
  background: #990000;
}

#cookie-bar .cb-disable:hover {
  background: #bb0000;
}

#cookie-bar .cb-policy {
  background: #108482;
}

#cookie-bar .cb-policy:hover {
  background: #fff;
  color: #0054a6;
}

#cookie-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999999;
}

#cookie-bar.fixed.bottom {
  bottom: 0;
  top: auto;
}

@media (max-width: 767px) {
  #cookie-bar {
    padding: 5px 0;
  }
}

/*-------- 3.7 Sing In Modal --------*/
#sign-in-dialog {
  background: #fff;
  padding: 30px;
  padding-top: 0;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

/* Popup close button*/
#sign-in-dialog .mfp-close,
#lang-dialog .mfp-close {
  color: #666;
  background-color: #e4e4e4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  top: 12px;
  right: 20px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}

#sign-in-dialog .mfp-close:hover,
#lang-dialog .mfp-close:hover {
  color: #fff;
  background-color: #66676b;
}

#sign-in-dialog .mfp-close:before {
  font-size: 24px;
  font-family: "ElegantIcons";
  content: "\4d";
}

.small-dialog-header {
  font-size: 18px;
  width: calc(100% + 60px);
  position: relative;
  left: -30px;
  top: 0;
  -webkit-border-radius: 4px 4px;
  -moz-border-radius: 4px 4px;
  -ms-border-radius: 4px 4px;
  border-radius: 4px 4px;
  display: inline-block;
  background-color: #f6f6f6;
  padding: 18px 20px 15px 20px;
  margin-bottom: 30px;
}

.small-dialog-header h3 {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

#sign-in-dialog .form-group {
  position: relative;
}

#sign-in-dialog .form-group input.form-control {
  padding-left: 40px;
}

#sign-in-dialog .form-group i {
  font-size: 21px;
  font-size: 1.3125rem;
  position: absolute;
  left: 12px;
  top: 34px;
  color: #ccc;
  width: 25px;
  height: 25px;
  display: block;
  font-weight: 400 !important;
}

#sign-in-dialog .form-group i.icon_lock_alt {
  top: 36px;
}

.my-toggle {
  background: transparent;
  border: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  color: #888;
  cursor: pointer;
  font-size: 10px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: bold;
  margin-right: 5px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
}

.my-toggle:hover,
.my-toggle:focus {
  background-color: #eee;
  color: #555;
  outline: transparent;
}

.hideShowPassword-wrapper {
  width: 100% !important;
}

.checkboxes label {
  color: #999;
}

a#forgot {
  color: #999;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
}

#forgot_pw {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  min-height: 450px;
  display: none;
}

#forgot_pw label {
  font-weight: 500;
}

.sign-in-wrapper {
  position: relative;
  height: 100%;
}

a.social_bt {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  min-width: 200px;
  margin-bottom: 15px;
  display: block;
  padding: 12px;
  line-height: 1;
  position: relative;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

a.social_bt:hover {
  -webkit-filter: brightness(115%);
  filter: brightness(115%);
}

a.social_bt.facebook:before,
a.social_bt.google:before,
a.social_bt.linkedin:before {
  font-family: "ElegantIcons";
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 1rem;
  color: #fff;
}

a.social_bt.facebook {
  background-color: #3b5998;
}

a.social_bt.facebook:before {
  content: "\e093";
}

a.social_bt.google {
  background-color: #dc4e41;
}

a.social_bt.google:before {
  content: "\e096";
  top: 12px;
}

a#forgot {
  position: relative;
  top: -3px;
}

.divider {
  text-align: center;
  height: 1px;
  margin: 30px 0 20px 0;
  background-color: #e1e8ed;
}

.divider span {
  position: relative;
  top: -20px;
  background-color: #fff;
  display: inline-block;
  padding: 10px;
  font-style: italic;
}

/* Magnific popup */
.mfp-bottom-bar {
  padding: 0 10px !important;
}

.mfp-counter {
  right: 10px !important;
  color: #fff !important;
}

.mfp-bg {
  opacity: 0.8 !important;
}

/*-------- 3.8 Input Switcher --------*/
.switchery {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  vertical-align: middle;
  width: 50px;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: content-box;
  background-clip: content-box;
  float: right;
}

.switchery > small {
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  height: 30px;
  position: absolute;
  top: 0;
  width: 30px;
}

/* Switchery sizes. */
.switchery-small {
  border-radius: 20px;
  height: 20px;
  width: 33px;
}

.switchery-small > small {
  height: 20px;
  width: 20px;
}

.switchery-large {
  border-radius: 40px;
  height: 40px;
  width: 66px;
}

.switchery-large > small {
  height: 40px;
  width: 40px;
}

/*-------- 3.9 Datepicker --------*/
.daterangepicker {
  font-family: "Poppins", Helvetica, sans-serif !important;
}

/* Fix for scroll issue */
@media screen and (min-width: 560px) {
  .daterangepicker {
    width: 490px !important;
  }

  .daterangepicker.single {
    width: auto !important;
  }
}

.applyBtn.btn.btn-sm.btn-primary {
  background-color: #108482;
  border: 0;
}

.drp-selected {
  display: none !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #0054a6 !important;
}

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

  .daterangepicker .drp-calendar.left,
  .daterangepicker .drp-calendar.right {
    clear: none !important;
    float: none !important;
    margin-right: 0;
  }
}

.daterangepicker {
  -webkit-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 35px 2px rgba(0, 0, 0, 0.12);
}

/*-------- 3.10 Modal Generic --------*/
#modal-dialog {
  background: #fff;
  padding: 30px;
  padding-top: 0;
  text-align: left;
  max-width: 450px;
  margin: 40px auto;
  position: relative;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

/* Popup close button*/
#modal-dialog .mfp-close {
  color: #666;
  background-color: #e4e4e4;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  top: 12px;
  right: 20px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}

#modal-dialog .mfp-close:hover {
  color: #fff;
  background-color: #66676b;
}

#modal-dialog .mfp-close:before {
  font-size: 24px;
  font-family: "ElegantIcons";
  content: "\4d";
}

/*-------- 3.11 Others pricing tables --------*/
.margin_tabs {
  margin-top: -97px;
}

@media (max-width: 991px) {
  .margin_tabs {
    margin-top: -68px;
  }
}

@media (max-width: 767px) {
  .margin_tabs {
    margin-top: -50px;
  }
}

.tabs {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-bottom: 35px;
  z-index: 5;
}

.tabs nav {
  text-align: center;
  overflow: hidden;
}

.tabs nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.tabs nav ul li {
  margin: 0 -4px 0 0;
  display: block;
  display: inline-block;
  background-color: #ededed;
  width: 33%;
  text-align: left;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .tabs nav ul li {
    text-align: center;
  }
}

.tabs nav ul li a {
  padding: 25px 35px 25px 85px;
  color: #555;
  display: block;
  font-size: 21px;
  font-size: 1.3125rem;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
}

@media (max-width: 991px) {
  .tabs nav ul li a {
    padding: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}

.tabs nav ul li a i {
  position: absolute;
  left: 35px;
  top: 25px;
  font-size: 38px;
  font-size: 2.375rem;
}

@media (max-width: 991px) {
  .tabs nav ul li a i {
    display: none;
  }
}

.tabs nav ul li a em {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
}

@media (max-width: 991px) {
  .tabs nav ul li a em {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media (max-width: 767px) {
  .tabs nav ul li a em {
    display: none;
  }
}

.tabs nav ul li:first-child {
  -webkit-border-radius: 3px 0 0 0;
  -moz-border-radius: 3px 0 0 0;
  -ms-border-radius: 3px 0 0 0;
  border-radius: 3px 0 0 0;
  border-right: 2px solid #ddd;
}

.tabs nav ul li:last-child {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  -ms-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
  border-left: 2px solid #ddd;
}

.tabs nav ul li.tab-current {
  background-color: #fafafc;
  z-index: 100;
}

.tabs nav ul li.tab-current:after {
  right: auto;
  left: 100%;
  width: 4000px;
}

.tabs nav ul li.tab-current a {
  color: #222;
}

.tabs nav ul li.tab-current a i {
  color: #108482;
}

/* Content */
.content section {
  padding: 30px 0 0 0;
  display: none;
  max-width: 1230px;
  margin: 0 auto;
}

.content section:before,
.content section:after {
  content: "";
  display: table;
}

.content section.content-current {
  display: block;
}

.content section:after {
  clear: both;
}

.no-js .content section {
  display: block;
  padding-bottom: 2em;
  border-bottom: 1px solid #e2e2e2;
}

.box_pricing {
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #d2d8dd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  position: relative;
}

@media (max-width: 767px) {
  .box_pricing {
    padding: 15px;
  }
}

.box_pricing hr {
  margin: 25px -30px;
  border-color: #d2d8dd;
}

@media (max-width: 767px) {
  .box_pricing hr {
    margin: 25px -15px;
  }
}

.box_pricing ul {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0 0 30px 0;
}

.box_pricing a {
  background-color: #108482;
  display: block;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

.box_pricing a:hover {
  background-color: #0054a6;
}

.box_pricing .price {
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: #108482;
}

.box_pricing .price sup {
  font-size: 16px;
  font-size: 1rem;
}

.box_pricing .price em {
  font-size: 16px;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

.ribbon_tabs {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}

.ribbon_tabs span {
  font-size: 10px;
  font-weight: bold;
  color: #222;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  position: absolute;
  top: 19px;
  right: -21px;
}

.ribbon_tabs span.top_selling {
  background: #00dfaa;
}

.ribbon_tabs span.top_selling::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #008a69;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #008a69;
}

.ribbon_tabs span.top_selling::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #008a69;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #008a69;
}

/*Pricing tables*/
.plans {
  margin: 0px auto 20px;
}

.plans:before,
.plans:after {
  content: "";
  display: table;
}

.plans:after {
  clear: both;
}

.plan {
  margin: 10px 0;
  padding: 20px 20px 30px 20px;
  text-align: center;
  border: solid #d2d8dd;
  border-width: 1px 0 1px 1px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
  -moz-box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
  box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .plan {
    border-width: 1px;
  }
}

.col-md-4.plan:first-child {
  margin-right: -5px;
  margin-left: 5px;
}

@media (max-width: 991px) {
  .col-md-4.plan:first-child {
    margin: 0 0 15px 0;
  }
}

.plan:last-child {
  border-width: 1px;
}

.plan-title {
  position: relative;
  margin: -25px -25px 30px -25px;
  padding: 30px 20px 1px 20px;
  border-bottom: 1px dotted #d2d8dd;
  font-size: 15px;
  font-size: 0.9375rem;
  background-color: #f9f9f9;
  line-height: 1.2;
  color: #777;
}

.plan-title h3 {
  margin-bottom: 0;
}

.plan-tall .plan-title {
  background-color: #108482;
  border-bottom: none;
  color: #fff;
}

.plan-tall .plan-title h3 {
  color: #fff;
}

.plan-price {
  margin: 0 auto 15px;
  width: 110px;
  height: 110px;
  line-height: 115px;
  font-size: 30px;
  font-weight: 600;
  color: white;
  background: #777;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
}

.plan-price > span {
  font-size: 12px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
}

.plan-features {
  margin-bottom: 20px;
  line-height: 2;
}

ul.plan-features {
  padding: 0;
  margin: 0 0 20px 0;
}

.plan-features li {
  list-style: none;
}

.plan-tall {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  margin-right: -5px;
  position: relative;
  z-index: 100;
  border: solid #108482;
  position: relative;
}

.plan-tall > .plan-price {
  height: 130px;
  width: 130px;
  line-height: 135px;
  font-size: 36px;
  background: #108482;
  -webkit-border-radius: 130px;
  -moz-border-radius: 130px;
  -ms-border-radius: 130px;
  border-radius: 130px;
}

.plan-tall + .plan {
  border-left: 0;
}

@media (max-width: 991px) {
  .plan-tall + .plan {
    border-left: 1px solid #d2d8dd;
  }
}

/*-------- 3.12 Styles Switcher --------*/
#style-switcher {
  background: #fff;
  width: 205px;
  position: fixed;
  top: 205px;
  z-index: 99;
  left: -205px;
  border-radius: 0 0 4px 0;
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.175);
}

#style-switcher h3 {
  color: #fff;
  font-size: 13px;
  margin: 10px 0;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

#style-switcher ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

#style-switcher div {
  padding: 6px 18px;
}

#style-switcher h6 {
  background: #f8f8f8;
  color: #333;
  font-size: 14px;
  line-height: 46px;
  padding: 0 0 0 20px;
  margin-top: 0;
  font-weight: 500;
}

#style-switcher h6 a {
  background-color: #f8f8f8;
  display: block;
  height: 46px;
  position: absolute;
  right: -46px;
  top: 0;
  width: 46px;
  border-radius: 0 4px 4px 0;
  font-size: 22px;
  color: #fff;
  text-align: center;
}

#style-switcher h6 a i {
  position: relative;
  top: 4px;
  color: #333;
}

.colors {
  list-style: none;
  margin: 0 0px 10px 0;
  overflow: hidden;
}

.colors li {
  float: left;
  margin: 4px 2px 0 2px;
}

.colors li a {
  display: block;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.default {
  background: #108482;
}

.aqua {
  background: #1cbbb4;
}

.green_switcher {
  background: #82ca9c;
}

.orange {
  background: #f7941d;
}

.blue {
  background: #004dda;
}

.colors li a.active {
  box-shadow: 0 0 0 2px #fff inset;
}

.colors li a {
  border-radius: 3px;
}

@media only screen and (max-width: 1024px) {
  #style-switcher {
    display: none;
  }
}

/*-------- 3.13 Time picker --------*/
@media only screen and (min-width: 992px) {
  .clock-timepicker-popup {
    position: absolute !important;
    left: 0 !important;
    top: 50px !important;
  }
}

.flexarrow {
  display: flex !important;
  align-items: center;
}

.ml-8p {
  margin-left: 8px;
}

.ml-6p {
  margin-left: 6px;
}

.font12 {
  font-size: 12px;
}

.loginpadding {
  padding: 2px 11px !important;
}

@media only screen and (min-width: 992px) {
  header.sticky .main-menu > ul > li span > a.loginpadding {
    color: #fff !important;
  }
}

.search-container {
  position: relative;
  width: 300px; /* Adjust as needed */
  margin: 20px auto; /* Center the container */
}

#autocomplete {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none; /* Initially hidden */
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

.slider-wrapper {
  font-size: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 117px;
  padding-left: 16px;
  overflow: hidden;
}

.slider.dog-friendly {
  height: 86px;
  padding-left: 0px;
}

.slider-container {
  transition: margin-top 0.5s ease;
  margin-top: 0;
}

.slider-container div {
  height: 90px;
  color: #ffffff;
  margin-bottom: 11px;
  box-sizing: border-box;
  text-align: left;
  font-size: 72px;
}

.slider.dog-friendly .slider-container div{
  font-size: 36px;
}

.sliderdiscover {
  height: 86px;
  padding-left: 14px;
  overflow: hidden;
}

.sliderdiscover div {
  height: 85px;
  color: #ffffff;
  margin-bottom: 11px;
  box-sizing: border-box;
  text-align: left;
  font-size: 36px;
}

.slider-text-1 {
  animation: slide 5s linear infinite;
}

@keyframes slide {
  0% {
    margin-top: -300px;
  }

  5% {
    /* For stopping effect */
    margin-top: -200px;
  }

  33% {
    margin-top: -200px;
  }

  38% {
    /* For stopping effect */
    margin-top: -100px;
  }

  66% {
    margin-top: -100px;
  }

  71% {
    /* For stopping effect */
    margin-top: 0px;
  }

  100% {
    margin-top: 0px;
  }
}

.ltspace {
  letter-spacing: 0.8px;
}

.dflexl {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search bar container */
.search-bar {
  display: flex;
  align-items: center;
  border-radius: 25px;
  background: var(--Grays-White, #fff);

  /* Rounded corners */
  padding: 13px 16px;
  width: 100%;
  gap: 8px;
}

#custom-search-input .search-bar {
  position: relative;
  background: var(--White, #FFF);
  box-shadow: 1px 1px 6px 1px rgba(16, 24, 40, 0.05);
  z-index: 999;
}

/* Search icon */
.search-bar i {
  color: #8a8a8a;
  /* Light grey color */
  margin-right: 8px;
}

/* Input field styling */
.search-bar input {
  border: none;
  outline: none;
  background-color: #fff;
  color: #4b4b4b;
  /* Darker grey for text */
  width: 100%;
  font-size: 16px;
}

.search-bar input::placeholder {
  color: #8a8a8a;
  /* Light grey for placeholder text */
}

.p-0 {
  padding: 0px;
}

.languagedrop {
  padding: 10px 80px 10px 12px; /* Padding with room for icon on the right */
  font-size: 16px;
  color: #475467; /* Text color */
  background-color: #ffffff; /* Background color */
  border: 1px solid #ccc; /* Border color */
  border-radius: 8px; /* Rounded corners */
  appearance: none; /* Remove default dropdown arrow */
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="10" viewBox="0 0 20 10" fill="none"><path d="M0.597425 1.74882C0.268915 1.4251 0.268942 0.895133 0.597485 0.571445C0.919207 0.254478 1.43579 0.254478 1.75752 0.571445L9.4175 8.11824C9.57389 8.27226 9.78596 8.35879 10.0071 8.35879C10.2282 8.35879 10.4403 8.27226 10.5967 8.11824L18.2401 0.58628C18.5622 0.268841 19.0795 0.268815 19.4017 0.586221C19.7307 0.910358 19.7307 1.44106 19.4017 1.7652L11.7758 9.27834C11.3067 9.74042 10.6705 10 10.0071 10C9.34371 10 8.70749 9.74042 8.23833 9.27834L0.597425 1.74882Z" fill="%23475467"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center; /* Position of the icon */
  background-size: 20px 10px; /* Size of the icon */
  outline: none; /* Remove outline on focus */
}

.languagedrop:focus {
  border-color: #007bff; /* Border color on focus */
}

.rightflo {
  float: left !important;
  display: flex;
  margin-bottom: 0px;
}

.discoverdogfrindly {
  padding-left: 32px;
  padding-right: 32px;
}

.rightflo li {
  margin-right: 25px;
}

.carouselPopular {
  width: 90%;
  margin: 0px auto;
}

.slick-slide {
  margin: 10px;
}

.slick-slider {
  width: 100% !important;
}

.slick-slide img {
  width: 100%;
  border: 2px solid #fff;
}

.wrapper .slick-dots li button:before {
  font-size: 20px;
  color: white;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 40px !important;
  line-height: 1;
  opacity: 1 !important;
  color: #108482 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  top: 35% !important;
}

.slick-next {
  top: 35% !important;
}

.slick-next {
  right: -20px !important;
}

.slick-prev {
  left: -18px !important;
  z-index: 999;
}

.underline {
  /* Uncomment below to add Underline in the City */
  border-bottom: 2px solid;
  font-weight: 500 !important;
}

.imageradius {
  border-radius: 20px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.nearbytitle {
  color: var(--Gray-800, #1d2939);

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.btnsm {
  color: var(--White, var(--Grays-White, #fff));

  /* Text sm/Semibold */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  display: flex;
  height: 32px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: var(--Primary-500, #108482);
}

.btnsm:hover {
  background: #0d6a68;
  color: #fff;
}

.fortitle {
  display: flex;
  justify-content: space-between;
}

.subtitlepopup {
  margin-bottom: 0px;
}

.subtitlepopup {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--Gray-600, #475467);
  line-height: 20px;
  margin-top: 7px;
}

.stats {
  display: flex;
  list-style: none;
  padding: 0;

  margin-top: 5px;
  margin-bottom: 0px;
}

/* .stats li {
  display: flex;
  color: var(--Gray-600, #475467);
  font-size: 13px;
  align-items: center;
} */

.stats li:not(:last-child)::after {
  content: "•";
  margin: 0 8px;
  color: #555;
  /* Adjust color as needed */
}

.star-icon {
  display: flex;
  align-items: center;
  margin-right: 4px;
}

.discoverservice {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px !important;
  /* 122.222% */
  letter-spacing: -0.72px;
}

.dogservice {
  display: flex;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: 32px;
}

.discoverservicesmain .service-overlay {
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 0) 24.04%,
    #161313 104.29%
  );
  display: flex;
  height: 67px;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  width: 99%;
  top: 85px;
  left: 1px;
}

.discoverservicesmain {
  max-width: 100%;
}

.slideitem {
  position: relative;
}

.subtitle {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #FFF;
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.popularitem {
  margin-bottom: 25px;
}
.titlerate {
  margin-left: 3px;
}

.sliderService .slick-slide {
  transform: translateZ(0);
  /* Enables GPU rendering */
}

/* Remove any unnecessary animations on the slick track */
.slick-track {
  transition: transform 0.8s linear !important;
  /* Smooth transition */
  will-change: transform;
}

.slideitem {
  overflow: hidden;
  /* Ensure the image doesn’t overflow its container */
  display: inline-block;
}

.slideitem img, .slideitem .service-overlay {
  transition: transform 0.3s ease;
  /* Smooth transition for zoom effect */
}

.slideitem:hover img, .slideitem:hover .service-overlay  {
  transform: scale(1.05);
  /* Zoom in by 5% */
}

.colorwhi {
  color: #fff;
}

.fontsi {
  font-size: 45px;
}

.testimonial {
  background-color: #fff;
  border-radius: 15px;
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

  padding: 25px 10px;
}

.profile-img {
  width: auto;
  height: 60px;
  object-fit: cover;
}

.star-rating i {
  color: #ffc107;
  /* Color for stars */
  font-size: 12px;
}

.testimonial-text {
  color: #333;
  font-size: 12px;
  line-height: 1.5;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.app-buttons img {
  width: 170px;
  max-width: 100%;
  height: 60px;
}

/* Responsive */
@media (max-width: 600px) {
  .app-buttons img {
    width: 100px;
  }
}

.post-card {
  max-width: 400px;
  border-radius: 10px;
  border: 1px solid #eee;
  overflow: hidden;
}

.post-header {
  padding: 15px;
}

.post-header,
.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footersocial {
  padding: 10px 16px 0 16px;
}

.post-header .profile-info {
  display: flex;
  align-items: center;
}

.post-header .profile-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.post-image img {
  width: 100%;
  height: 300px;
  /* Fixed height */
  object-fit: cover;
  /* Crop large images to fit */
}

.post-footer .actions span {
  margin-right: 1rem;
}

.margint30 {
  margin-top: 30px;
}

.mb-2 {
  margin-bottom: 15px;
}

.btntosm {
  background: #108482;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 24px;
}

.font24 {
  font-size: 24px;
}

.btnsmfollow {
  background: #108482;
  color: #fff;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 15px;
}

.btntosm:hover {
  cursor: pointer;
  color: #fff;
}

.font20 {
  font-size: 20px;
}

.dog-card {
  max-width: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.dog-card img {
  width: 100%;
  height: 190px;
  /* Fixed height for consistency */
  object-fit: cover;
}

.dog-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 15px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px 16px 0px 0px;
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 0) 24.04%,
    #161313 104.29%
  );
  height: 50px;
}

.dog-card .breed-badge {
  border-radius: 16px;
  background: var(--Gray-100, #f2f4f7);
  color: var(--Gray-700, #344054) !important;
  text-align: center;
  padding: 2px 8px;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  /* 150% */
}

.dog-card .card-overlay span {
  color: var(--Grays-White, #fff);

  /* Text sm/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.custom-col {
  flex: 0 0 20%;
  /* 20% width for 5 columns */
  max-width: 20%;
  /* Make sure each column is at most 20% */
  padding: 10px;
  text-align: center;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .custom-col {
    flex: 0 0 33.33%;
    /* 3 columns per row */
    max-width: 33.33%;
  }
}

/* Mobile (small screens): 2 columns in a row */
@media (max-width: 768px) {
  .custom-col {
    flex: 0 0 50%;
    /* 2 columns per row */
    max-width: 50%;
  }
}

/* Extra small devices (like very small mobile screens): 1 column per row */
@media (max-width: 576px) {
  .custom-col {
    flex: 0 0 100%;
    /* 1 column per row */
    max-width: 100%;
  }
}

.blogs .card {
  border: none;
  /* No border for the card */
  border-radius: 15px;
  /* Rounded corners */
  overflow: hidden;
  /* To handle overflow of content */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Light shadow */
}

.blogs .card-img-top {
  height: 200px;
  /* Fixed height for the image */
  object-fit: cover;
  /* Ensures the image covers the area */
  border-radius: 15px;
}

.blogs .card-title {
  font-weight: bold;
  /* Bold title */
  font-size: 1.5rem;
  /* Title font size */
  margin-bottom: 0.5rem;
  /* Space below title */
}

.blogs .card-text {
  color: #6c757d;
  /* Grey text for readability */
}

.blogs .btn {
  background-color: #007bff;
  /* Bootstrap primary color */
  color: white;
  /* White text on button */
}

.blogs .btn:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
}

.subpartblog {
  align-items: center;
  font-size: 11px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.font18 {
  font-size: 18px;
}

.subtitleblog {
  width: 100%;
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
}

.blogtitle {
  color: var(--Gray-800, #1d2939);
  /* Display xs/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.readnow:hover {
  color: #108482;
}

.readnow {
  color: var(--Primary-500, #108482);
  /* Text sm/Semibold */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.slideitemrating {
  padding: 0px !important;
}

.dark-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.dark-mode-icon {
  font-size: 1.2rem;
}

.app-image {
  max-width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.nav-tabs .nav-link {
  color: #000;
  border: none;
}

.nav-tabs .nav-link.active {
  color: #000;
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.nav-tabs .nav-link {
  border-bottom: 2px solid #eee;
}

.dark-mode {
  background-color: #121212;
  color: #fff;
}

.dark-mode .nav-tabs .nav-link {
  color: #fff;
}

.dark-mode .nav-tabs .nav-link.active {
  border-bottom: 2px solid #fff;
}

.tab-nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-nav-buttons i {
  cursor: pointer;
  font-size: 1.5rem;
}

.left-content {
  padding-top: 10%;
}

.dark-mode-icon {
  width: 52px;
  height: 52px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  border: 1px solid var(--Primary-500, #108482);
  display: flex;
}

/* Dropdown and Button Styles */
.dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 8px 12px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  padding: 20px;
  padding-top: 30px;
  border-radius: 8px;
  width: 240px;
  z-index: 1;
}

/* Slider Range and Handle Styles */
#slider .noUi-target {
  background-color: #e0e0e0;
  border-radius: 4px;
}

#slider .noUi-connect {
  background-color: #007b72;
  height: 4px; /* Set the height of the range line */
  border-radius: 4px;
}

#slider {
  padding-right: 5px !important;
}
#slider .noUi-handle {
  background-color: white;
  border: 2px solid #007b72;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: -8px;
  cursor: pointer;
  box-shadow: none;
  right: -13px; /* Remove shadow if there is any */
}

.noUi-handle:after,
.noUi-handle:before {
  display: none !important;
}

.noUi-target {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Label Styles */
.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0px;
  padding: 0 0px 0px 0px;
  font-size: 12px;
  color: #333;
}

/* Control Buttons */
.slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.clear {
  background: none;
  border: none;
  cursor: pointer;
  color: #007bff;
}

.apply-button {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
}

.apply-button {
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 4px 10px;
  cursor: pointer;
}

/* Base styling for the div */
.right-content {
  position: relative;
  background-color: white;
  /* Default background color */
  overflow: hidden;
}

/* Dark mode background effect using ::before */
.right-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--Black-400, #33373d);
  transform: scale(0.8) translate(-100%, 100%);
  opacity: 0;
  z-index: -1; /* Ensure it stays behind content */
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform-origin: left bottom;
}

/* Apply the dark mode effect */
.right-content.darkmode::before {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

/* Optional: Smooth keyframe effect for more complex animation */
@keyframes fadeInFromLeftBottom {
  0% {
    opacity: 0;
    transform: scale(0.8) translate(-100%, 100%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
}

.left-content h2 {
  font-size: 46px;
  color: var(--Gray-800, #1d2939);
}

.left-content p {
  font-size: 20px;
}

.left-content span {
  font-size: 20px;
}

.faqhome h2 {
  font-size: 36px;
  margin-top: 20px;
}

.right-content {
  background-color: #f9fafb;
  border-radius: 35px 35px 0px 0px;
  text-align: center;
  padding: 25px 0px 0px 0px;
  z-index: 99;
}

.right-content .nav-tabs {
  border-bottom: none;
  /* Remove the bottom border of the entire nav-tabs */
}

.right-content .nav-tabs .nav-link {
  border: none;
  background: none;
  color: var(--Gray-600, #475467);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  /* Remove the border from each individual nav-link */
}

.right-content.darkmode .nav-tabs .nav-link {
  color: var(--White, #fff);
}

.right-content .nav-tabs .nav-link.active {
  border-bottom: 1px solid #475467;
  /* Add a custom bottom border to the active tab */
  background: none;
  color: var(--Gray-600, #475467);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.right-content.darkmode .nav-tabs .nav-link.active {
  color: var(--White, #fff);
  border-bottom: 1px solid #ffffff;
}

.bi-chevron-left {
  padding: 1px;
  border: 1px solid #108482;
  height: 52px;
  width: 52px;
  display: flex;
  border-radius: 50%;
  font-size: 18px !important;
  align-items: center;
  justify-content: center;
  color: #108482;
  margin-right: 15px;
}

.bi-chevron-right {
  padding: 1px;
  border: 1px solid #108482;
  height: 52px;
  width: 52px;
  display: flex;
  border-radius: 50%;
  font-size: 18px !important;
  align-items: center;
  justify-content: center;
  color: #108482;
  margin-left: 15px;
}

.filter-section {
  padding-top: 90px;
}

.search-box {
  flex: 1;
}

.tab-content {
  height: 480px;
  overflow-y: scroll;
}

.halfmap .nav-tabs .nav-link.active {

  /* when tags are added you can remove this */
  border: none;
  text-align: left;
  color: var(--Gray-800, #1d2939);



  /* when tags are added uncomment */
  /* Teal color for active tab text */
  /* border-color: #008080; */
  /* Teal color for the bottom border */
  /* border-bottom: 2px solid #008080; */
  /* color: var(--Primary-600, #0e7775);
  color: #008080; */
  
  /* Text sm/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.halfmap .nav-tabs .nav-link {
  color: #6c757d;
  /* Gray for inactive tab text */
  color: var(--Gray-600, #475467);

  /* Text sm/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.halfmap .nav-tabs {
  border-bottom: none;
  /* Remove default border */
}

/* Making tabs take 50% width each */
.halfmap .nav-item {
  flex: 1;
  text-align: center;
}

::-webkit-scrollbar {
  width: 9px;
  height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.btndogbig {
  display: flex;
  height: 48px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  border: 1px solid var(--Primary-500, #108482);
  color: var(--Primary-500, #108482);

  /* Text md/Semibold */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  border: none;
  background-color: white;
}

.addyourbusiness {
  display: flex;
  height: 48px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: var(--White, var(--Grays-White, #fff));
  color: var(--Primary-500, #108482);

  /* Text md/Semibold */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  border: 2px solid var(--Primary-500, #108482);
}

.addyourbusiness:hover {
  background: var(--Primary-25, #e7f3f3);
}

.search-box {
  border-radius: 25px;
}

.input-icon {
  position: relative;
  width: 100%;
}

.input-icon input {
  padding-left: 40px;
  /* Adjust this padding based on icon size */
  text-overflow: ellipsis;
  position: relative;
  z-index: 99999;
}

.input-icon .bi.bi-search {
  position: absolute;
  left: 14px;
  /* Position the icon */
  top: 50%;
  transform: translateY(-50%);
  /* Center the icon vertically */
  color: #999;
  z-index: 999999;
  /* Change icon color */
}

.input-icon .bi-arrow-repeat.pause-spin {
  top: 20%;
}

.reviewamenities {
  cursor: pointer;
}

.input-icon .bi-arrow-repeat {
  position: absolute;
  right: 14px;
  /* Position the icon */
  top: 50%;
  transform: translateY(-50%);
  /* Center the icon vertically */
  color: #999;
  font-size: 20px;
  /* Change icon color */
}

.textsearch {
  border-radius: 24px;
  border: 1px solid var(--Gray-50, #f9fafb);
  background: var(--Grays-White, #fff);
  box-shadow: 1px 1px 6px 1px rgba(16, 24, 40, 0.05);
  height: 52px;
}

@media screen and (max-width: 1903px) and (max-height: 945px) {
  .tab-content {
    max-height: 700px !important;
    overflow-y: scroll;
  }
  .parkview .content-right-view-park .park-list {
    max-height: 120vh;
    overflow-y: auto;
  }
}

@media screen and (max-width: 1298px) and (max-height: 727px) {
  /* CSS styles for 1298x727 or smaller */
  .tab-content {
    height: 700px !important;
    overflow-y: scroll;
  }
  .parkview .content-right-view-park .park-list {
    max-height: 145vh;
  }
}

.amenities-modal .modal-body {
  padding: 24px 36px;
}

/* Left side: Image section */
.modal-body .image-section {
  flex: 1;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-body .image-section img {
  max-height: 100%;
  max-width: 100%;
}

/* Right side: Comment section */
.modal-body .comment-section {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background-color: #fff;
  border-left: 1px solid #dee2e6;
}

/* Style for comments */
.comment {
  margin-bottom: 15px;
}

.comment .user {
  font-weight: bold;
}

.card-custom {
  overflow: hidden;
}

.live-status {
  position: absolute;
  right: 15px;
  top: 5px;
  display: flex;
  height: 24px;
  padding: 6px;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: rgba(146, 198, 198, 0.5);
  backdrop-filter: blur(10px);
  overflow: hidden;
  color: var(--White, var(--Grays-White, #fff));
  text-overflow: ellipsis;

  /* Text xs/Semibold */
  font-family: "Be Vietnam Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 150% */
}

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

.rightside {
  padding: 15px 0px;
}

.card-custom {
  width: 400px;
  height: 140px;
}

.card-custom .custom-card-image {
  height: inherit;
}

@media (max-width: 768px) {
  .card-custom {
    width: 386px;
  }
}

@media (max-width: 575px) {
  .card-custom {
    width: 400px;
  }

  .card-custom .custom-card-image {
    padding: 0;
    width: 140px;
    height: 140px;
  }

  .card-custom .rightside{
    max-height: 137px;
    max-width: 272px;
    padding: 15px 10px;
  }
}

.titlename {
  overflow: hidden;
  color: var(--Gray-800, #1d2939);
  text-overflow: ellipsis;
  width: 85%;
  /* white-space: nowrap; */

  /* Text sm/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.titlename a {
  color: var(--Gray-800, #1d2939);
}

.marginb0 {
  margin-bottom: 0px !important;
  margin-left: 0px !important;
}

.buttnscheckin {
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 16px;
}

.btn-checkin {
  border: 1px solid var(--Primary-500, #108482);
  padding: 7px 14px;
  border-radius: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  flex: 1;
  display: flex;
  justify-content: center;
  cursor: pointer;
  color: var(--Primary-500, #108482);
}

.btn-checkin:hover {
  color: var(--Primary-500, #108482) !important;
  background: var(--Primary-25, #E7F3F3);
}

.btn-checkin:active {
  background: var(--Primary-25, #E7F3F3);
  box-shadow: 2px 2px 2.3px 0px rgba(152, 162, 179, 0.50);
}

.socialmain {
  position: relative;
}

.socialdog {
  position: absolute;
  background: linear-gradient(0deg, rgba(47, 47, 47, 0) 0%, #2f2f2f 91.27%);
  width: 100%;
  color: #fff;
  border-radius: 24px 24px 0px 0px;
}

.social-dog-img img {
  border-radius: 24px;
}

.pl-0 {
  padding-left: 0px;
}

.dogprofileimage {
  width: 100px;
  height: 67px;
  object-fit: cover;
  border-radius: 50%;
}

.pading15 {
  padding: 15px 30px 15px 0px;
}

.spacebetween {
  justify-content: space-between;
}

.titlesocial {
  overflow: hidden;
  color: var(--Primary-500, #108482);
  text-overflow: ellipsis;
  /* Text xs/Semibold */

  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  /* 150% */
}

.yearage {
  overflow: hidden;
  color: var(--Gray-500, #667085);
  text-overflow: ellipsis;
  /* Text xs/Semibold */

  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  /* 150% */
}

.buttondogsocial {
  width: 100% !important;
  border-radius: 24px;
  background: var(--Primary-500, #108482);
  height: 32px;
  padding: 10px 12px;
  float: left;
  color: #fff;
  text-align: center;
  margin-top: 15px;
}

.margin_90_35 {
  padding-top: 90px;
  padding-bottom: 35px;
}

.readmore {
  color: var(--Primary-500, #108482);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  width: fit-content;
}

.descriptioncountry {
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--Gray-600, #475467);
}

.rowbackforward {
  display: flex;
  margin-bottom: 10px;
  justify-content: space-between;
}

.imagedog {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.float-left {
  float: left;
}

.ml-1 {
  margin-left: 10px;
}

.colorgreay {
  overflow: hidden;
  color: var(--Gray-600, #475467);
  text-overflow: ellipsis;
  /* Text sm/Regular */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
}

.mapheight {
  height: 900px !important;
}

.imagecomment {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.username {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.review {
  overflow: hidden;
  color: var(--Primary-500, #108482);
  text-overflow: ellipsis;

  font-family: "Be Vietnam Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  /* 150% */
}

.bottonlikereview {
  justify-content: space-between;
}

.greycolor {
  background: var(--Gray-50, #f9fafb);
}

.countrylist .nav-tabs .nav-link.active {
  color: #0e7775;
  background: none;
}

.countrylist .tab-content .tab-pane {
  margin-top: 20px;
}

.countrylist .nav-tabs .nav-link {
  border-bottom: none;
}

.heightchanges {
  height: auto !important;
  overflow: hidden;
}

.countrylist .tab-pane ul li {
  margin-bottom: 10px;
}

.countrylist .nav.nav-tabs {
  border: none;
}

.countrylist .nav-link.active {
  border-bottom: 2px solid #0e7775;
  color: #0e7775;
}

.btn404 {
  float: left;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background: var(--Grays-White, #fff);
  font-weight: 600;
}

.explorepark {
  color: var(--White, var(--Grays-White, #fff));
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 150% */
  text-decoration-line: underline;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-30%);
  }
}

.sliderService {
  display: flex;
  width: max-content;
  /* animation: scroll 20s linear infinite; */
  gap: 16px;
}

.image-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.feature_image {
  width: auto;
  height: auto;
  /* border-radius: 48px;
  border: 20px black solid; */
}

.mobileresponsivefeature {
  padding: 0px 25px;
  height: 650px !important;
  overflow: hidden;
}

.textrightdiscover {
  text-align: right;
}

.textaligndis {
  text-align: right;
  height: 52px;
  padding: 10px 24px;
  color: var(--Primary-500, #108482);
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
}

/* 
.card-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
}

.card {
  min-width: 300px;
  min-height: 200px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  scroll-snap-align: start;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.1);
}

/* For swipe effect on mobile */
/* .card-container {
  -webkit-overflow-scrolling: touch;
}  */

.mobileview {
  display: none;
}

.desktop {
  display: flex;
}

swiper-container {
  width: 240px;
  height: 320px;
}

swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.btn-theme {
  background: var(--Primary-500, #108482) !important;
  color: var(--White, var(--Grays-White, #fff)) !important;
  font-size: 16px !important;
  border-radius: 24px !important;
  padding: 10px 15px;
  font-weight: 600;
  margin-left: 33px;
}

.btn-theme-sm {
  height: 32px;
  padding: 10px 12px;

  gap: 10px;
  border-radius: 24px;
  background: var(--Primary-500, #108482);
  color: var(--White, var(--Grays-White, #fff)) !important;
  /* Text sm/Semibold */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.explrbtn {
  padding: 10px 24px;
}

.exploremar {
  margin-bottom: 50px;
}

.btn-theme-sm:hover {
  background: var(--Primary-700, #0d6a68) !important;
}

.btn-theme-sm:focus {
  background: var(--Primary-600, #0e7775) !important;
  box-shadow: 2px 2px 2.3px 0px rgba(152, 162, 179, 0.5) !important;
}

.btn-theme:hover {
  background: var(--Primary-700, #0d6a68) !important;
}

.btn-theme:focus {
  background: var(--Primary-600, #0e7775) !important;
  box-shadow: 2px 2px 2.3px 0px rgba(152, 162, 179, 0.5) !important;
}

.slick-dots {
  position: relative;
  bottom: -30px;
}

.dot {
  display: block;
  height: 5px;
  width: 0;
  /* Progress will grow */
  background-color: blue;
  transition: width 0.1s linear;
}

.discoverdog {
  margin-top: 32px;
}

.btn-download-app {
  padding: 10px 30px;
  cursor: pointer;
}

.downloadAppModel .modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
}

.downloadAppModel .modal-body .title {
  margin-top: 48px;
  color: var(--Gray-800, #1d2939);
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}

.downloadAppModel .modal-body .body {
  color: var(--Gray-600, #475467);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.downloadAppModel .modal-body .close-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
}

.dogpackrating {
  padding: 96px 32px;
}
/* 
.dogpackrating h2 {
  margin-bottom: 22px;
} */

.slideitemrating {
  margin-bottom: 48px !important;
}

.blogsection {
  padding: 96px 32px;
  background-color: #fff;
}

.blogsection h2 {
  margin-bottom: 24px;
  font-size: 36px;
}

.deskview {
  display: block;
}

.deskviewmap {
  display: flex;
}

.mobileviewbest {
  display: none;
}

.mobileviewbestmap {
  display: none;
}

.popularpark {
  padding: 42px 32px;
  background-color: #fff;
}

.popularpark h2 {
  margin-bottom: 22px;
  font-size: 36px;
}

.localstars {
  padding: 60px 32px;
  background: #fff;
}

.localstars h2 {
  margin-bottom: 24px;
  font-size: 36px;
}

.ourfeatures {
  padding: 0px 12px 0px 32px;
  background-color: #fff;
}

.topcountrydetail {
  font-size: 48px;
}

.countrydetailpage {
  padding: 90px 32px;
}

.toppark {
  font-size: 36px;
  margin-bottom: 20px;
}

.reviewtitle {
  font-size: 36px;
  margin-bottom: 24px;
}

.colorgrey {
  color: var(--Gray-600, #475467);
}

.colorgrey800 {
  color: var(--Gray-800, #1d2939);
}

.park-filter {
  color: var(--Gray-800, #1d2939);
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  width: 100%;
  text-align: center;
  float: left;
  /* 150% */
}

.filter-popup {
  display: none;
}

.slick-next:before {
  display: none !important;
}

.slick-prev::before {
  display: none !important;
}

.slick-next.slick-arrow {
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 32px;
  background: var(--Primary-500, #108482) !important;
}

.slick-prev.slick-arrow {
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 32px;
  background: var(--Primary-500, #108482) !important;
}

.menu-container {
  display: none;
}

.headerfixed {
  display: none;
}

.footersection {
  padding: 60px 32px;
}

p.footer-logo {
  margin-bottom: 0px;
}

.mobileviewfooter {
  display: none;
}

.followussection {
  display: flex;
  justify-content: flex-end;
}

/*********************** Mobile Css ***********************/
@media only screen and (max-width: 767px) {
  .followussection {
    display: block;
    padding-top: 32px;
  }

  ul#additional_links {
    margin-top: 24px;
  }

  .footerlinemargin {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .follow_us ul {
    margin-bottom: 0px;
  }

  .footermobile {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footersection {
    padding: 36px 16px;
  }

  .headerfixed.stickymobile {
    background: #fff;
  }

  .headerfixed.stickymobile .mobileiconmenu {
    fill: #636262;
  }

  .headerfixed.stickheadother .mobileiconmenu {
    fill: #636262;
  }

  .headerfixed.stickheadother {
    background: #fff;
  }

  .dislaynone {
    display: none;
  }

  .right-content .nav-tabs {
    width: 100%;
    justify-content: space-around;
  }

  /* Basic styling for footer */
  .footermobile {
    background-color: #044e54;
    color: #ffffff;
  }

  .mobileviewfooter {
    display: block;
  }

  /* Section titles and links */
  .footermobile .footer-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 32px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .footermobile .footer-links {
    display: none;
    /* Hidden by default for accordion effect */
    padding: 10px 0;
  }

  .footermobile .footer-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
  }

  /* Rotate arrow on open */
  .footermobile .footer-section.open .arrow {
    transform: rotate(180deg);
  }

  /* Show links when section is open */
  .footermobile .footer-section.open .footer-links {
    display: block;
  }

  .menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    /* Full width */
    height: 100%;
    background-color: #fff;
    transition: right 0.5s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    display: block;
  }

  /* Menu active class */
  .menu-container.active {
    right: 0;
  }

  /* Close button */
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
  }

  .menu-header img {
    height: 30px;
  }

  .close-btn {
    font-size: 24px;
    cursor: pointer;
  }

  /* Menu items */
  .menu-items {
    list-style-type: none;
    padding: 16px;
  }

  .menu-items li {
    padding: 16px 0;
    border-bottom: 1px solid var(--Gray-200, #e4e7ec);
  }

  .menu-items li button {
    font-size: 18px;
    font-style: normal;
    color: var(--Gray-800, #1d2939);
    font-weight: 600;
    line-height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
  }

  .submenu,
  .nested-submenu {
    display: none;
    padding-left: 20px;
    padding-top: 10px;
  }

  .menu-items li.active .submenu {
    display: block;
  }

  .submenu li.active .nested-submenu {
    display: block;
  }

  .submenu li {
    list-style: none;
    padding: 10px 0;
  }

  .menu-items .profile-details-container {
    display: flex;
    height: 86px;
    padding: 0px 8px;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    background: var(--Gray-50, #f9fafb);
  }

  .menu-items .profile-details-container img {
    height: 68px;
    border-radius: 68px;
  }

  .menu-items .profile-details-container .profile-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--Gray-800, #1d2939);
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  /* Buttons */
  .menu-footer {
    padding: 0 15px;
  }

  .menu-footer button {
    width: 100%;
    padding: 10px 24px;
    font-size: 20px;
    border: 1px solid #108482;
    background-color: #fff;
    color: #108482;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .menu-items {
    margin-bottom: 32px;
  }

  .menu-footer .continue-btn {
    background: var(--Primary-500, #108482);
    color: #fff;
    border: none;
  }

  /* Overlay when menu opens */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .overlay.active {
    display: block;
  }

  .headerfixed {
    position: fixed;
    z-index: 9;
    display: flex;
    width: 100%;
  }

  .mobileheader.navibar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
  }

  .mobileheader .logo img {
    height: 40px;
    /* Adjust as needed */
    margin-right: 20px;
  }

  .mobileheader .search-bar {
    display: flex;
    align-items: center;
    flex: 1;
    /* Take up remaining space */
    background-color: #f5f5f5;
    border-radius: 25px;
    padding: 10px 14px;
    max-width: 500px;
  }

  .mobileheader .search-bar input {
    border: none;
    background: #fff;
    outline: none;

    flex: 1;
    font-size: 16px;
  }

  .mobileheader .search-bar .search-icon {
    color: #666;
    font-size: 18px;
  }

  .mobileheader .menu-icon {
    font-size: 24px;
    margin-left: 20px;
    cursor: pointer;
  }

  .open-menu-btn.hidden {
    display: none;
  }

  .open-menu-btn {
    display: block;
  }

  /* Media query to show the open-menu-btn only on mobile view */
  header {
    display: none;
  }

  .filter-popup {
    display: block;
  }

  .map-right {
    padding: 0px;
  }

  .row-height {
    padding-top: 0px;
  }
  
  .park-map-page .row-height {
    height: auto !important;
    overflow: hidden;
  }

  .filtericon {
    border-radius: 100px;
    border: 0px solid var(--Primary-500, #108482);
    background: var(--Grays-White, #fff);
    box-shadow: 0px 2px 4px 4px rgba(152, 162, 179, 0.12);
    display: flex;
    width: 42px;
    height: 42px;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
  }

  .mapmobile {
    border-radius: 32px;
  }

  .countrydetailpage {
    padding: 90px 16px;
  }

  .topcountrydetail {
    font-size: 36px;
  }

  .ourfeatures {
    padding: 0px 16px;
    background-color: #fff;
  }

  .popularpark {
    padding: 42px 16px 32px 16px;
    background-color: #fff;
  }

  .localstars {
    padding: 60px 16px;
  }

  .popularpark h2 {
    font-size: 36px;
    margin-bottom: 14px;
  }

  .dogfriendlypark h2 {
    font-size: 30px !important;
  }

  .faqhome {
    padding: 32px 6px;
  }

  .reviews-container .rev-content {
    padding: 15px 15px 0 15px;
  }

  .dogfriendlypark {
    padding: 26px 16px;
  }

  .deskview {
    display: none !important;
  }

  .deskviewmap {
    display: none;
  }

  .mapheight {
    height: 300px !important;
  }

  .imgdetail {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }

  .mobileviewbest {
    display: block;
  }

  .mobileviewbestmap {
    display: block;
  }

  .card-wontainer::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  .term_condition {
    margin-top: 32px;
  }

  .maringbottom24 {
    margin-bottom: 24px !important;
  }

  .dogpackrating {
    padding: 60px 16px;
  }

  .lostdogfound span b {
    font-size: 20px;
  }

  .lostdogfound h2 {
    font-size: 36px;
    margin-bottom: 26px;
  }

  .dogpackrating .main_title_2 h2 {
    font-size: 36px;
    font-weight: 500;
  }

  .mobileresponsivefeature {
    height: 430px !important;
  }

  .mobileresponsive {
    padding-top: 22px;
  }

  .card-wontainer {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .blogsection .maintitile h2 {
    margin-bottom: 24px !important;
  }

  .reponsivedownloadapp {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    color: var(--White, var(--Grays-White, #fff));

    /* Text xl/Semibold */
    font-family: "Be Vietnam Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
  }

  .mobilecard {
    border-radius: 10px;

    justify-content: center;
    align-items: center;

    scroll-snap-align: start;
    transition: transform 0.3s ease-in-out;
    width: 83%;
  }

  .card-locntainer::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }

  .card-locntainer {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
  }

  .mobilecard {
    border-radius: 10px;

    justify-content: center;
    align-items: center;

    scroll-snap-align: start;
    transition: transform 0.3s ease-in-out;
  }

  .desktop {
    display: none;
  }

  .mobileview {
    display: block;
  }

  .mySwiper {
    width: 250px;
  }

  .swiper-slide-shadow {
    background: none !important;
    /* Remove background */
  }

  /* Styles for mobile phones */
  .slider-wrapper {
    font-size: 42px;
    display: block;
  }

  .left-content {
    padding-top: 0%;
  }

  .margin_60_0 {
    padding-top: 0px;
  }

  .left-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .slider {
    height: 80px;
    padding-left: 0px;
  }

  .slider div {
    height: 87px;
    color: #ffffff;
    margin-bottom: 11px;
    box-sizing: border-box;
    font-size: 40px;
    text-align: center;
  }

  .slider.dog-friendly div {
    text-align: start;
  }

  .slick-next {
    display: none !important;
  }

  .slick-prev {
    display: none !important;
  }

  .mobileresponsive {
    margin-bottom: 20px;
  }

  .feature_image {
    width: 100% !important;
    height: 100% !important;
  }

  .left-content p {
    font-size: 16px;
    padding-right: 0px !important;
  }

  .left-content span {
    font-size: 16px;
  }

  .textrightdiscover {
    text-align: left;
  }

  .slick-slider {
    margin-bottom: 0px !important;
  }

  .sliderrating {
    margin-top: 15px !important;
  }

  .app-buttons {
    justify-content: left;
  }

  .textaligndis {
    text-align: center;
  }

  swiper-container {
    height: auto !important;
  }

  .profileitem {
    scroll-snap-align: start;
    transition: transform 0.3s ease-in-out;
  }

  .profileitem:hover {
    transform: scale(1.1);
  }

  .localstart {
    -webkit-overflow-scrolling: touch;
  }

  .localstart {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px;
  }

  .localstars h2 {
    font-size: 36px;
  }

  .blogsection {
    padding: 60px 16px;
  }

  .blogsection h2 {
    font-size: 36px;
  }

  .blogsection .maintitile {
    margin-bottom: 4px !important;
  }

  .filter-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: teal;
    color: white;
    border-radius: 20px;
    cursor: pointer;
  }

  .filter-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    z-index: 99999;
  }

  .filter-header {
    display: block;
    width: 100%;
    float: left;
    justify-content: space-between;
    padding: 10px;
    background-color: #f9f9f9;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    cursor: grab;
    background: no-repeat;
    border-bottom: 1px solid #eee;
  }

  .filter-popup hr {
    margin: 24px 0 24px 0;
  }

  .filter-header h2 {
    margin: 0;
    font-size: 18px;
  }

  .close-popup {
    font-size: 24px;
    cursor: pointer;
  }

  .filter-content {
    padding: 20px;
    overflow-y: auto;
  }

  .no-scroll {
    overflow: hidden;
  }

  .filter-container {
    font-family: Arial, sans-serif;
    padding: 8px 16px;
    width: 100%;
    height: 80%;
    margin: auto;
    float: left;
    overflow: scroll;
    padding-bottom: 50px;
  }

  .search-footer {
    position: absolute;
    bottom: 0;
    background: #ffffff;
    width: 100%;
    height: 80px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--Gray-300, #d0d5dd);
    box-shadow: 0px -2px 4px 0px rgba(208, 213, 221, 0.25);
  }

  .btnforfilter {
    display: flex;
    height: 42px;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    background: var(--Primary-500, #108482);
    font-family: "Be Vietnam Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: var(--White, var(--Grays-White, #fff));
    border: none;
  }
  .sort-container {
    display: inline-flex;
    border-radius: 25px;
    overflow: hidden;
    gap: 5px;
  }

  .sort-container button {
    border: none;
    padding: 10px 20px;
    background-color: white;
    font-size: 14px;
    color: #333;
    cursor: pointer;
  }

  .sort-container button:not(:last-child) {
    border-right: 1px solid #d3d3d3;
  }

  .sort-container button.active {
    background-color: #f0f0f0;
    font-weight: bold;
  }

  .sort-container button:hover {
    background-color: #f0f0f0;
  }

  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .sort-buttons,
  .distance-buttons,
  .park-type-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

  .filter-container button {
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 20px;
    padding: 4px 12px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .filter-container button:hover {
    background-color: #f0f0f0;
  }

  .filter-container button:active {
    background-color: #ddd;
  }

  .amenities-section img {
    position: absolute;
    right: 11px;
    top: 17px;
  }

  .amenities-dropdown {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    appearance: none;
    -moz-appearance: none;
    background-color: white;
    -webkit-appearance: none;
  }

  .deskviewfooter {
    display: none;
  }

  .filtermobile.toggle-container {
    display: flex;
    border: 1px solid #d0d5dd;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    background: #d0d5dd;
    white-space: nowrap;
  }

  /* Button styling */
  .filtermobile .toggle-button {
    flex: 1;
    text-align: center;
    cursor: pointer;
    color: #333;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
    font-size: 14px;
    font-style: normal;

    line-height: 20px;
    display: flex;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }
  .filter-popup label {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    color: #1d2939;
    margin-bottom: 16px;
  }

  /* Active button styling */
  .filtermobile .toggle-button.active {
    background-color: #108482;
    color: white;
  }

  /* Divider styling */
  .filtermobile .divider {
    width: 1px;
    background-color: #d3d3d3;
  }

  /* Display selected value */
  .filtermobile .selected-value {
    margin-top: 20px;
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .tab-content {
    height: 700px;
  }

  .parkview .content-right-view-park .park-list {
    max-height: 170vh;
    overflow-y: auto;
  }
}

.parkview {
  padding-top: 72px;
  padding: 72px 36px 34px 36px;
  background: var(--Gray-50, #f9fafb);
}
.breadcrumb-park .breadcrumb-item a {
  color: var(--Gray-800, #1d2939);
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.breadcrumb-park .breadcrumb-separator {
  margin: 0px 8px;
}
.breadcrumb-park {
  padding: 24px 0px;
}

.parkview .park-image {
  max-height: 391px;
  border-radius: 16px;
  object-fit: cover;
  position: relative;
}
.shareinfoicon,
.reportParkInaccurateIcon {
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  background: #fff;
  display: inline-block;
  text-align: center;
  line-height: 37px;
  border-radius: 50%;
  cursor: pointer;
}

.parkview .live-label {
  position: absolute;
  top: 28px;
  left: 34px;
  background: #28a745;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.parkview .icon-top-right {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #475467;
  font-size: 1.2rem;
}
.parkview-button-follow {
  border-radius: 32px;
  background: var(--Primary-500, #108482);
  display: flex;
  height: 40px;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--White, var(--Grays-White, #fff));
  font-family: "Be Vietnam Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border: none;
}
.dividerpark {
  border-left: 1px solid #e4e7ec;
  height: 96%;
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 73.67%;
  z-index: 1;
  width: 0;
}
.view-park-desciption {
  overflow: hidden;
  color: var(--Gray-600, #475467);
  text-overflow: ellipsis;
  /* Text md/Regular */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
}
.content-left-view-park hr {
  margin: 24px 0;
  border-color: #e4e7ec;
}
.view-read-more {
  color: var(--Primary-500, #108482);
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
  text-decoration-line: underline;
  margin-top: 18px;
  margin-bottom: 10px;
  display: block;
}
.amenities-main-title {
  display: flex;
  justify-content: space-between;
}
.amenities-view-park-amenities {
  color: var(--Gray-800, #1d2939);
  /* Display xs/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.amenities-view-park-review {
  color: var(--Primary-500, #108482);
  /* Text md/Semibold */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.amenities-view-park-review.reviewamenities:hover {
  color: var(--Primary-500, #108482);
}

.park-view-bottom-part {
  padding: 16px 0px;
  padding-top: 60px;
  position: relative;
}
.content-left-view-park {
  padding-right: 48px;
}
.content-right-view-park {
  padding-left: 0px;
  z-index: 2;
}

.park-list .card {
  background: none;
}

.mapfornearbypark {
  height: 250px;
  border-radius: 20px;
}
.parkview .see-gallery-btn {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ddd;
  display: inline-flex;
  height: 32px;
  padding: 10px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 24px;
  background: var(--Grays-White, #fff);
  color: var(--Primary-500, #108482);
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.parkview .view-park-detail {
  margin: 16px 0px;
}
.view-park-detail h1 svg {
  margin-top: -7px;
}
.view-park-detail h1 {
  color: var(--Gray-800, #1d2939);
  font-family: "Be Vietnam Pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.72px;
  margin-bottom: 0px;
}
.parkview .breadcrumb-item svg {
  vertical-align: middle;
}
.parkview .follow-button {
  font-size: 0.9rem;
}
.parkview .weather-widget {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.parkview .amenities-icons img {
  width: 32px;
  margin: 5px;
}
.parkview .amenity-card {
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 8px;
  background: var(--Grays-White, #fff);
  box-shadow: -1px 0px 1px 0px rgba(152, 162, 179, 0.12),
    1px 0px 1px 0px rgba(152, 162, 179, 0.12),
    0px -1px 1px 0px rgba(152, 162, 179, 0.12),
    0px 1px 1px 0px rgba(152, 162, 179, 0.12);
  margin-left: 8px;
}

.parkview .stats svg {
  margin-top: -4px;
}
.parkview .stats {
  margin: 8px 0px;
}
.distance-view-park {
  overflow: hidden;
  color: var(--Gray-800, #1d2939);
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 8px;
  /* Text lg/Regular */
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: underline;
}
.parkview .stats li {
  overflow: hidden;
  color: var(--Gray-800, #1d2939);
  text-overflow: ellipsis;
  font-family: "Be Vietnam Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
}

.parkview .amenity-title {
  overflow: hidden;
  color: var(--Gray-600, #475467);
  text-overflow: ellipsis;
  /* Text xs/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
  left: 8px;
  bottom: 8px;
  position: absolute;
  text-align: left;
}

.amenity-card .icon {
  position: absolute;
  top: 8px;
  left: 8px;
}

.popularpark h2,
.discoverservicesmain h2,
.discoverdogfrindly h2,
.localstars h2,
.blogsection h2 {
  color: var(--Gray-800, #1d2939);

  /* Display md/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}

/* CSS fix for homepage */
.discoverservicesmain .app-buttons .xiomi-image {
  display: flex;
  width: 138px;
  height: 34px;
  padding: 8px;
  align-items: center;
  border-radius: 6px;
  background: var(--Grays-Black, #000);
}

.discoverservicesmain .app-buttons .xiomi-image img {
  width: 24.727px;
  height: 24px;
  flex-shrink: 0;
}

.discoverservicesmain .app-buttons .xiomi-image .button-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.discoverservicesmain .app-buttons .xiomi-image .button-body .top {
  display: flex;
  height: 12px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  color: var(--White, var(--Grays-White, #fff));
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.discoverservicesmain .app-buttons .xiomi-image .button-body .bottom {
  display: flex;
  height: 16px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  color: var(--White, var(--Grays-White, #fff));
  text-align: center;
  font-family: "Be Vietnam Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}

#heading {
  text-transform: uppercase;
  color: #673ab7;
  font-weight: normal;
}

#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;

  /*stacking fieldsets above each other*/
  position: relative;
}

.form-card {
  text-align: left;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input,
#msform textarea {
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 25px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2c3e50;
  background-color: #eceff1;
  font-size: 16px;
  letter-spacing: 1px;
}

#msform input:focus,
#msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #673ab7;
  outline-width: 0;
}

/*Next Buttons*/
#msform .action-button {
  width: 100px;
  background: #673ab7;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0px 10px 5px;
  float: right;
}

#msform .action-button:hover,
#msform .action-button:focus {
  background-color: #311b92;
}

/*Previous Buttons*/
#msform .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  background-color: #000000;
}

/*The background card*/
.card {
  z-index: 0;
  border: none;
  position: relative;
}

/*FieldSet headings*/
.fs-title {
  font-size: 25px;
  color: #673ab7;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

.purple-text {
  color: #673ab7;
  font-weight: normal;
}

/*Step Count*/
.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

/*Field names*/
.fieldlabels {
  color: gray;
  text-align: left;
}

/*Icon progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
}

#progressbar .active {
  color: #673ab7;
}

#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 25%;
  float: left;
  position: relative;
  font-weight: 400;
}

/*Icons in the ProgressBar*/
#progressbar #account:before {
  font-family: FontAwesome;
  content: "\f13e";
}

#progressbar #personal:before {
  font-family: FontAwesome;
  content: "\f007";
}

#progressbar #payment:before {
  font-family: FontAwesome;
  content: "\f030";
}

#progressbar #confirm:before {
  font-family: FontAwesome;
  content: "\f00c";
}

/*Icon ProgressBar before any progress*/
#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #673ab7;
}

/*Animated Progress Bar*/
.progress {
  height: 20px;
}

.progress-bar {
  background-color: #673ab7;
}

/*Fit image in bootstrap div*/
.fit-image {
  width: 100%;
  object-fit: cover;
}
