#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
   margin: 0;
   padding: 0;
   border: 0;
   list-style: none;
   line-height: 1;
   display: block;
   position: relative;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}
#cssmenu:after,
#cssmenu > ul:after {
   content: ".";
   display: block;
   clear: both;
   visibility: hidden;
   line-height: 0;
   height: 0;
}
#cssmenu #menu-button {
   display: none;
}
#cssmenu {
   width: auto;
   line-height: 1;
   font-weight: 700;
}
#cssmenu > ul > li {
   float: none;
   display: inline-block;
   margin-right: 16px;
   margin-left: 16px;
}
/* #cssmenu > ul > li:last-child {margin-right: 0px;} */
/* #cssmenu > ul > li:first-child {margin-left: 0px;} */
#cssmenu.align-center > ul {
   font-size: 0;
   text-align: center;
}
#cssmenu.align-center > ul > li {
   float: left;
}
#cssmenu.align-center ul ul {
   text-align: left;
}
#cssmenu.align-right > ul > li {
   float: right;
}
#cssmenu.align-right ul ul {
   text-align: right;
}
#cssmenu > ul > li > a {
   padding: 25px 0px;
   font-size: 16px;
   text-decoration: none;
   color: #000;
   letter-spacing: 0;
   display: inline-block;
   vertical-align: middle;
   font-weight: 600;
   transition: all 0.3s ease-in-out 0s;
   -moz-transition: all 0.3s ease-in-out 0s;
   -webkit-transition: all 0.3s ease-in-out 0s;
   -o-transition: all 0.3s ease-in-out 0s;
}
/* #cssmenu > ul > li:after{content: none; display: inline-block; width: 1px; height: 20px; background-color: #b3b8bb; margin:0 15px 0 20px; vertical-align: middle;  } */
/* #cssmenu > ul > li > a::after {
content: "";
position: absolute;
bottom: 0px;
left: 0%;
width: 0;
height: 2px;
background-color: var(--primary);
-webkit-transition-property: width;
transition-property: width;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
#cssmenu > ul > li:hover > a::after,
#cssmenu > ul > li.active > a::after {
width: 100%;
} */
/* #cssmenu > ul > li:hover:not(.active) > a::after {height: 1px;} */

#cssmenu ul ul {
   position: absolute;
   left: -9999px;
      z-index: 9;
   border-radius: 0px;
   text-align: left;
   padding: 0.75rem 0;
   margin-top: 15px;

   border-top: 3px solid #e91e63;
   background: #ffffff;
   -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
   -webkit-transition: all 0.35s ease;
   -o-transition: all 0.35s ease;
   transition: all 0.35s ease;
}
#cssmenu li:hover > ul {
   left: auto;
   margin-top: 0px;
}
#cssmenu ul.menu > .menu-item:nth-last-of-type(2):hover > ul,
#cssmenu ul.menu > .menu-item:nth-last-of-type(3):hover > ul,
#cssmenu ul.menu > .menu-item:last-of-type:hover > ul {
   right: 0;
}
#cssmenu ul.menu > .menu-item:nth-last-of-type(2) > ul .menu-item .sub-menu,
#cssmenu ul.menu > .menu-item:nth-last-of-type(3) > ul .menu-item .sub-menu,
#cssmenu ul.menu > .menu-item:last-of-type > ul .menu-item .sub-menu {
   margin-right: 100%;
}
#cssmenu ul.menu > .menu-item:nth-last-of-type(2) > ul .menu-item:hover .sub-menu,
#cssmenu ul.menu > .menu-item:nth-last-of-type(3) > ul .menu-item:hover .sub-menu,
#cssmenu ul.menu > .menu-item:last-of-type > ul .menu-item:hover .sub-menu {
   right: 0;
}
#cssmenu.align-right li:hover > ul {
   right: 0;
}
#cssmenu ul ul ul {
   margin-left: 100%;
   top: 0;
   padding: 8px 0;
}
#cssmenu.align-right ul ul ul {
   margin-left: 0;
   margin-right: 100%;
}
#cssmenu ul ul li {
   /*border-bottom: 1px solid #dbe2eb;*/
   height: 0;
   -webkit-transition: height 0.2s ease;
   -moz-transition: height 0.2s ease;
   -ms-transition: height 0.2s ease;
   -o-transition: height 0.2s ease;
   transition: height 0.2s ease;
}
#cssmenu ul ul li:last-child {
   border-bottom: 1px dashed transparent;
}
#cssmenu ul li:hover > ul > li {
   height: auto;
}
#cssmenu ul ul li a {
   padding: 0.5rem 1.25rem;
   line-height: inherit;
   font-size: 15px;
   width: 15rem;
   text-decoration: none;
   color: #121212;
   font-weight: 600;
   text-transform: capitalize;
   text-rendering: optimizeLegibility;
   -webkit-transition: all 0.35s ease;
   -o-transition: all 0.35s ease;
   transition: all 0.35s ease;
}
#cssmenu ul ul ul li a {
   width: 20rem;
   font-size: 14px;
   padding: 6px 1rem;
}
#cssmenu ul.sub-menu li:hover > a,
#cssmenu ul.sub-menu li a:hover,
#cssmenu ul.sub-menu li.current-menu-item > a,
#cssmenu ul.sub-menu li.active a {
   color: #e91e63;
}
#cssmenu ul li.has-sub > a::after {
   content: "\F282";
   font-size: 14px;
   line-height: 1.2;
   font-family: bootstrap-icons;
   font-weight: 600;
   margin-left: 8px;
   -webkit-transition: border-color 0.2s ease;
   -moz-transition: border-color 0.2s ease;
   -ms-transition: border-color 0.2s ease;
   -o-transition: border-color 0.2s ease;
   transition: border-color 0.2s ease;
}
#cssmenu ul.sub-menu li.has-sub > a::after {
   content: "\F285";
   font-size: 12px;
   line-height: 1;
   margin-left: 10px;
}
#cssmenu.align-right ul li.has-sub > a::after {
   right: auto;
   left: 10px;
   border-bottom: 0;
   border-right: 0;
   border-top: 1px solid #000000;
   border-left: 1px solid #000000;
}
#cssmenu ul li.has-sub:hover > a::after {
   border-color: #000000;
}

.sticking #cssmenu > ul > li.has-sub > a::after {
   top: 16px;
}

.packageslistbox .packsliddet h5 {
   margin-bottom: 1px;
}
.cityleand {
   font-weight: 700;
   margin-bottom: 12px;
}
.packageslistbox .pac-cont {
   min-height: 50px;
}

#cssmenu ul > li > a.active {
   border-bottom: 2px solid #000;
}

#cssmenu ul > li > a {
   position: relative;
   font-size: 16px;
   font-weight: 500;
   line-height: 1.2;
   border: none;
   outline: none;
   color: #fff;
   text-rendering: optimizeLegibility;
   padding: 15px 0px;
   display: flex;
   align-items: center;
}

/* Responsive menu
=================================*/
@media all and (max-width: 1199px) {
   /* #cssmenu {width: 100%;} */
   #cssmenu ul {
      width: 100%;
      display: none;
   }
   #cssmenu > ul > li.has-sub > a::after {
      display: none;
   }
   #cssmenu ul {
      background: #fff;
      position: fixed;
      z-index: 999;
      top: 0px;
      left: -300px;
      width: 300px;
      height: 100%;
      overflow: auto;
      transition: all 0.3s ease-in-out 0s;
      -moz-transition: all 0.3s ease-in-out 0s;
      -webkit-transition: all 0.3s ease-in-out 0s;
      -o-transition: all 0.3s ease-in-out 0s;
   }
   #cssmenu ul.open {
      left: 0;
   }
   #cssmenu > ul > li {
      margin: 0px;
   }

   #cssmenu.align-center > ul,
   #cssmenu.align-right ul ul {
      text-align: left;
   }
   #cssmenu ul li,
   #cssmenu ul ul li  {
      width: 100%;
      height: auto;
      border-bottom: 1px solid rgba(0, 0, 0, 0.15);
      background-color: transparent;
   }
   #cssmenu ul li a,
   #cssmenu ul ul li a {
      width: 100%;
   }
   #cssmenu > ul > li,
   #cssmenu.align-center > ul > li,
   #cssmenu.align-right > ul > li {
      float: none;
      display: block;
   }
   #cssmenu ul ul li a {
      padding: 10px 15px;
      color: #000000;
      background: none;
   }
   #cssmenu ul ul li:hover > a,
   #cssmenu ul ul li a:hover {
      color: #84851d;
   }
   #cssmenu ul ul ul li a {
      padding-left: 30px;
   }
   #cssmenu ul ul,
   #cssmenu ul ul ul {
      position: relative;
      left: 0;
      right: auto;
      width: 100%;
      margin: 0;
   }
   #menu-line {
      display: none;
   }
   #cssmenu #menu-button {
      display: inline-block;
      padding: 0px;
      color: #000000;
      cursor: pointer;
      font-size: 12px;
      /* position: absolute;
      top: 0px;
      right: 0px; */
      width: 25px;
      height: 25px;
   }
   #cssmenu #menu-button::after {
      content: "";
      display: block;
      width: 25px;
      height: 25px;
      background: url(../images/menu.png) no-repeat;
      background-position: center;
      background-size: contain;
      transition: all 0.5s ease-in-out 0s;
   }
   /* #cssmenu #menu-button::before {
      content: "";
      position: absolute;
      top: 8px;
      right: 0px;
      display: block;
      width: 25px;
      height: 12px;
      border-top: 3px solid var(--dark);
      border-bottom: 3px solid var(--dark);
      transition: all 0.5s ease-in-out 0s;
   } */
   #cssmenu .submenu-button {
      position: absolute;
      z-index: 10;
      right: 0;
      top: 0;
      display: block;
      border-left: 1px solid #dbe2eb;
      height: 100%;
      width: 47px;
      cursor: pointer;
   }
   #cssmenu > ul > li:hover > a { color: #fff; }
   #cssmenu > ul > li:hover {background-color: var(--pink);}
   #cssmenu > ul > li:hover > .submenu-button::after,
   #cssmenu > ul > li:hover > .submenu-button::before { background: #fff; }
   #cssmenu .sub-menu .submenu-button {
      width: 35px;
      height: 35px;
   }
   #cssmenu .submenu-button::after {
      content: "";
      position: absolute;
      top: 16px;
      left: 22px;
      display: block;
      width: 2px;
      height: 12px;
      background: #000;
      z-index: 99;
   }
   #cssmenu .submenu-button::before {
      content: "";
      position: absolute;
      left: 17px;
      top: 21px;
      display: block;
      width: 12px;
      height: 2px;
      background: #000;
      z-index: 99;
   }
   #cssmenu .submenu-button.submenu-opened:after {
      display: none;
   }
   #cssmenu .sub-menu .submenu-button::after {
      top: 14px;
      left: 17px;
      height: 10px;
      background: #121212;
   }
   #cssmenu .sub-menu .submenu-button::before {
      left: 13px;
      top: 18px;
      width: 10px;
      background: #121212;
   }
   #cssmenu ul ul {
      box-shadow: none;
      border-top: 1px solid #dbe2eb;
   }
   #cssmenu ul.open {
      border-top: 1px solid #dbe2eb;
   }

   #cssmenu ul ul,
   #cssmenu ul ul ul {
      padding: 0;
      background: #f4f4f4;
      border: none;
      top: inherit;
      position: inherit;
      width: 100%;
      height: auto;
      overflow: inherit;
      left: inherit;
      transition: none;
      -moz-transition: none;
      -webkit-transition: none;
      -o-transition: none;
   }

   #cssmenu ul > li > a { padding: 14px; color: #121212; }
   #cssmenu ul > li > a:hover { color: #fff; }
   #cssmenu ul.sub-menu li.has-sub > a::after,
   .menunavebar .menu > .menu-item > a:hover::before,
   #cssmenu ul li.has-sub > a::after { content: none; }
}
