:root {
  --loader-background-color: #eeeeee;
  --loader-highlight-color: #dedede;
}
body {
  min-height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  font-family: Poppins;
  display: flex;
  flex-direction: column;
  background: #ffcd02;
  /* overscroll-behavior: none; */
}

#header {
  position: sticky;
  top: 0; /* Stick to the top of the viewport */
  z-index: 1000; 
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  background: #ffcd02;
}

.headerNew {
  position: sticky !important;
  top: 0 !important; /* Stick to the top of the viewport */
  z-index: 1000 !important; 
  height: 60px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0px 30px !important;
  /* background: #ffcd02; */
  background: white !important;
  border-bottom: 1px solid rgb(68, 67, 67) !important;
}

#header #logo_holder {
  display: flex;
  align-items: center;
}
#header #menu i {
  font-size: 24px;
}
#brandname {
  font-size: larger;
  padding-left: 7px;
}

#content_holder {
  height: max-content;
  /* min-height: 43vh; */
  flex-grow: 1;
  /* z-index: 1; */
  background: #ffcd02;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#content_holder #image_holder {
  text-align: center;
}

#content_holder #image_holder img {
  width: 300px;
}

#parnter_title {
  text-align: center;
  font-weight: bold;
}

#content_holder #call_to_action {
  width: 80vw;
  border-radius: 0 7px 7px 0;
  background: #f1f1f1;
  border: 1px solid #9b9b9b;
  border-left: 1px solid #f1f1f1;
  padding: 10px;
  padding-left: 0;
  text-align: left;
  font-weight: light;
  font-family: "Poppins";
  font-size: large;
  color: grey;
}

#footer {
  border-top: 5px solid #ffcd02;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 20px 10px;
  padding-bottom: 80px;
  flex-direction: column;
}
#whatsapp {
  background-color: #11a72a;
  z-index: 9;
  position: fixed;
  bottom: 0px;
  width: 100%;
  max-width: var(--max_w);
  padding: 15px 0px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

#footer #lhs {
  background-color: black;
  flex: 1;
}

#footer #rhs {
  background: black;
  flex: 1;
}

#footer #rhs ul li {
  background-color: black;
  color: white;
  font-size: small;
  padding: 0.5rem 0;
  cursor: pointer;
}

#footer #rhs ul li:hover {
  color: #ffcd02;
}

#footer #lhs #footername {
  font-size: larger;
  padding: 0px;
  color: white;
}

#footer #lhs #description {
  font-size: x-small;
  color: white;
}

#main_menu .modal-dialog .modal-content {
  height: 100vh;
  background-color: #262626;
}

.register_variable {
  display: none;
}
#login_page_action_button {
  background: black !important;
  color: #ffcd02 !important;
  padding: 14px;
  width: 100%;
}

@media screen and (max-width: 500px) {
  #footer {
    flex-direction: column;
  }
  #footer #lhs {
    flex: 0;
  }
}
#special_package_container {
  background-color: white;
  font-family: "Poppins", sans-serif;
  padding: 30px 15px;
  padding-right: 0px;
  padding-bottom: 55px;
}
#special_package_container .package_heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.special_package_card_container {
  overflow-x: scroll;
  padding-right: 15px;
  display: flex;
  gap: 16px;
}
.special_package_card {
  border-radius: 10px;
  overflow: hidden;
  width: 200px;
  min-width: 200px;
  box-shadow: 0px 1px 5px 0px rgb(199, 199, 199);
  margin-bottom: 5px;
}

.special_package_card img {
  width: 200px;
  height: 104px;
  object-fit: cover;
}
.special_package_card .card_details {
  padding: 12px 8px;
}
.special_package_card .card_details .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.skeleton_container {
  height: 242px;
  border-radius: 10px;
  overflow: hidden;
  width: 200px;
  min-width: 200px;
  box-shadow: 0px 1px 5px 0px rgb(199, 199, 199);
  margin-bottom: 5px;
}
.image-skeleton {
  overflow: hidden;
  width: 200px;
  height: 104px;
  background: linear-gradient(
    90deg,
    var(--loader-background-color) 25%,
    var(--loader-highlight-color) 50%,
    var(--loader-background-color) 75%
  );
  background-size: 200% 104%;
  /* background-position: 110px 0; */
  /* background-position:-290px 0; */
  animation: skeleton_loading 0.8s infinite ease-in-out;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.skeleton_container .card_details {
  padding: 12px 8px;
  padding-top: 20px;
}
.skeleton-loader {
  overflow: hidden;
  width: 100%;
  height: 14px;
  background: linear-gradient(
    90deg,
    var(--loader-background-color) 25%,
    var(--loader-highlight-color) 50%,
    var(--loader-background-color) 75%
  );
  background-size: 200% 104%;
  /* background-position: 110px 0; */
  /* background-position:-290px 0; */
  animation: skeleton_loading 0.8s infinite ease-in-out;
  border-radius: 8px;
  margin-bottom: 15px;
}
@keyframes skeleton_loading {
  0% {
    background-position: -290px 0;
  }

  100% {
    background-position: 110px 0;
  }
}

.contact {
  padding: 1px 5px;
  font-size: 18px;
  margin: 5px 0px;
  color: #fec700;
  border-radius: 10px;
}
.contactNumber {
  font-size: 14px;
  color: #ffffff;
}

li.menu-list-item {
  border: 0;
  font-size: medium;
  font-weight: normal;
  background-color: #262626;
  color: white;
  padding-left: 0;
  margin-right: 4px;
}


/* 

@media  (min-width: 500px) {
  body{
    max-width: 450px !important;
    border-radius: 0;
  }
  #header {
    width: auto !important;
  }
  #footer {
    width: auto !important;
  }
  #whatsapp{
    
  }
} */