@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  color: #41493b;
}

/* ========= Utility Class ==========  */
.font_200 {
  font-weight: 200 !important;
}

.font_300 {
  font-weight: 300 !important;
}

.font_400 {
  font-weight: 400 !important;
}

.font_500 {
  font-weight: 500 !important;
}

.font_600 {
  font-weight: 600 !important;
}

.font_700 {
  font-weight: 700 !important;
}

.font_800 {
  font-weight: 800 !important;
}

.font_900 {
  font-weight: 900 !important;
}

.font_8 {
  font-size: 8px !important;
}

.font_10 {
  font-size: 10px !important;
}

.font_12 {
  font-size: 12px !important;
}

.font_14 {
  font-size: 14px !important;
}

.font_15 {
  font-size: 15px !important;
}

.font_16 {
  font-size: 16px !important;
}

.font_17 {
  font-size: 17px !important;
}

.font_18 {
  font-size: 18px !important;
}

.font_19 {
  font-size: 19px !important;
}

.font_20 {
  font-size: 20px !important;
}

.font_22 {
  font-size: 22px !important;
}

.font_24 {
  font-size: 24px !important;
}

.font_25 {
  font-size: 25px !important;
}

.font_26 {
  font-size: 26px !important;
}

.font_28 {
  font-size: 28px !important;
}

.font_30 {
  font-size: 30px !important;
}

.font_32 {
  font-size: 32px !important;
}

.font_36 {
  font-size: 36px !important;
}

.font_40 {
  font-size: 40px !important;
}

.font_46 {
  font-size: 46px !important;
}

.font_48 {
  font-size: 48px !important;
}

.white_ff {
  color: #ffffff !important;
}

.white_f9 {
  color: #f9fff3 !important;
}

.black_00 {
  color: #000000;
}

.white_aa {
  color: #aaaaaa;
}

.white-space-nw {
  white-space: nowrap;
}

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

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

.nav-link:hover {
  color: inherit;
}

.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: none;
}

ul {
  list-style: none;
}

ul .dropdown-item:focus,
ul .dropdown-item:hover {
  background-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

button {
  border: inherit;
}

.cursor-pointer {
  cursor: pointer;
}

.position-z-1 {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-1 {
  flex: 1;
}

.margin-auto {
  margin: 0 auto;
}

.green_dark {
  color: #718e5d;
}

.green_light {
  color: #73D13D;
}

.bg_light_green {
  background-color: #f9fff3 !important;
}

.btn--primary {
  background-color: #73d13d;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 8px;
}

.white-header {
  background: linear-gradient(142.4deg, #73d13d 36.22%, #40ae00 95.21%);
  /* background: #ffff !important; */
}

.bg-header {
  background: transparent !important;
  /* background: #fff !important; */
}

.white_green_btn {
  background: #ffffff !important;
  color: #73D13D !important;
}

.green_white_btn .white_green_btn {
  background: #ffffff !important;
  color: #73D13D !important;
}

.bg-image.bg-overlay-dark::before {
  content: "";
  position: absolute;
  background-color: #73d13d !important;
  opacity: 0.5;
  z-index: -1;
  height: 100%;
  top: 0px;
  width: 100%;
}

.view_all_image {
  width: fit-content;
  bottom: 30px;
  right: 0;
  position: absolute;
}

.breadcrumb_place {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pad-16 {
  padding: 16px;
}

.primary_btn {
  padding: 15px 30px;
  background-image: linear-gradient(142.4deg, #73d13d 5.22%, #40ae00 95.21%);
  background-color: #73d13d;
  /* background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%); */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  color: #fcfffc;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.primary_btn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  background-color: #73d13d;
  background-image: linear-gradient(142.4deg, #88d05e 5.22%, #73c643 95.21%);
  transition: all 0.3s ease;
}

.primary_btn:hover {
  color: #fcfffc;
}

.primary_btn:hover:after {
  top: 0;
  height: 100%;
  color: #fcfffc;
}

.primary_outline_btn {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid #73d13d;
  padding: 15px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  color: #718E5D;
}

.primary_outline_btn:hover {
  background-image: linear-gradient(142.4deg, #73d13d 5.22%, #40ae00 95.21%);
  background-color: #73d13d;
  color: #ffffff;
}

.w-fit-content {
  width: fit-content;
}

.btn-close:focus {
  box-shadow: none;
}

/* ========= Utility Class ==========  */

/* ===================================================
Authentication Styling Starts Here
=================================================== */

.height_100 {
  height: 100%;
}

.daleely_login {
  overflow-x: hidden;
}

.side_image {
  background: #73d13d;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.side_content {
  height: 100%;
}

.side_content .nav-tabs {
  border: none;
  margin-top: 28px;
}

.side_content .nav-tabs .nav-item .nav-link {
  background: #fcfffc;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 10px;
}

.side_content .nav-tabs .nav-item .nav-link p {
  color: #41493b;
  margin-bottom: 0;
  margin-top: 10px;
}

.side_content .nav-tabs .nav-item .nav-link.active {
  background: linear-gradient(142.4deg, #73d13d 5.22%, #40ae00 95.21%);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
}

.side_content .nav-tabs .nav-item .nav-link.active img {
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(233deg) brightness(108%) contrast(101%);
}

.side_content .nav-tabs .nav-item .nav-link.active p {
  color: #ffffff;
}

.tab_middle {
  height: 51px;
  width: 1px;
  background: #c0dea7;
  margin: 16px 24px;
}

.login_form .form-control {
  border: 1px solid #718e5d;
  border-radius: 8px;
  background: #fcfffc;
  color: #41493b;
  height: 56px;
}

.login_form .form-control:focus {
  background: #f9fff3;
  border: 1px solid #41493b;
  color: #41493b;
  font-weight: 700;
}

.login_form .form-control::-webkit-input-placeholder {
  color: #41493b;
}

.login_form .form-control::-moz-placeholder {
  color: #41493b;
}

.login_form .form-control:-ms-input-placeholder {
  color: #41493b;
}

.login_form input:-moz-placeholder {
  color: #41493b;
}

.login_form .form-select {
  border: 1px solid #718e5d;
  border-radius: 8px;
  background: #fcfffc;
  color: #41493b;
  height: 56px;
  background-image: url("../images/icon/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 11px 12px;
}

.login_form .form-select:focus {
  background: #f9fff3;
  border: 1px solid #41493b;
  color: #41493b;
  font-weight: 700;
}

.login_form .input-group {
  border: 1px solid #718e5d;
  border-radius: 8px;
  background: #fcfffc;
}

.login_form .input-group:focus {
  background: #f9fff3;
  border: 1px solid #41493b;
  color: #41493b;
  font-weight: 700;
}

.login_form .input-group .form-control {
  border: none;
}

.login_form .input-group .form-control:focus {
  border: none;
}

.login_form .input-group .input-group-text {
  background: transparent;
  border: none;
}

.login_form .input-group,
.login_form .form-group {
  margin-bottom: 16px;
}

.or_line {
  position: relative;
  z-index: 0;
  margin: 22px 0;
}

.or_line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  width: 100%;
  background: #c0dea7;
  z-index: -1;
}

.or_line p {
  margin: 0 auto;
  background: #fcfffc;
  color: #6a707c;
  font-size: 14px;
  font-weight: 600;
  width: max-content;
  padding: 0 12px;
}

.social_login_box {
  background: #ffffff;
  border: 1px solid #c0dea7;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: 100%;
}

.otp_form {
  margin-top: 50px;
}

.otp_form .form-control {
  height: 56px;
  width: 56px;
  margin-right: 20px;
}

.otp_form .form-control:last-child {
  margin-right: 0;
}

.otp_timer {
  display: flex;
  align-items: center;
  margin: 30px auto 0 auto;
  background: #c0dea7;
  border-radius: 100px;
  padding: 15px;
  width: fit-content;
}

/* ===================================================
Authentication Styling Ends Here
=================================================== */

/* ===================================================
Header Styling Starts Here
=================================================== */
.btn_style {
  /* background-color: #40ae00; */
  color: #fff;
  padding: 12px 32px !important;
  border-radius: 50px;
  cursor: pointer;
  background: #73d13d;
}

.search-field .form-control {
  padding: 0px 20px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

a {
  border: inherit;
}

.margin-25 {
  margin: 25px;
}

.signin_btn_1 {
  color: #ffffff !important;
  border-radius: 50px 0 0 50px;
  background: #73d13d;
  /* padding: 3px 18px !important; */
  display: inline-block !important;
  /* line-height: 3 !important; */
  position: relative !important;
}

.signin_btn_1::after {
  content: "|";
  position: absolute;
  right: 0;
  z-index: 0;
}

.signin_btn_2 {
  color: #ffffff !important;
  border-radius: 0 50px 50px 0;
  background: #73d13d;
  /* padding: 3px 18px !important; */
  display: inline-block !important;
  /* line-height: 3 !important; */
  margin-left: -6px;
}

.top_header .navbar {
  background: linear-gradient(142.4deg, #73d13d 36.22%, #40ae00 95.21%);
}

.right_nav {
  display: flex !important;
  align-items: center !important;
}

.profile_pic {
  height: 40px;
  width: 40px;
  border-radius: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.nav_pages .nav-item .nav-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
}

.nav_pages .nav-item .nav-link.active {
  color: #41493b;
}

.bell {
  position: relative;
  cursor: pointer;
}

.bell::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 82px;
}

.bell::after {
  position: absolute;
  content: "";
  top: -4px;
  right: 2px;
  width: 10px;
  height: 10px;
  /* background-color: #ff023d; */
  border-radius: 4px;
}

.bell .sub-notification {
  /* opacity: 0; */
  /* visibility: hidden; */
  position: absolute;
  top: 47px;
  left: -260px;
  width: 424px;
  padding: 24px;
  background-color: #fff;
  z-index: 20;
  transition: ease-out 0.3s;
  border-radius: 0px 0px 8px 8px;
  box-shadow: 0px 2px 2px rgba(28, 36, 51, 0.1);
  text-align: start;
}

.sub-notification-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #41493b;
  margin-bottom: 28px;
}

.sub-notification-heading span {
  color: #41493b;
  position: relative;
}

.sub-notification-item {
  padding: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 10px;
  position: relative;
}

.sub-notification-item .content {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #64666c;
}

.bell .sub-notification-item .time {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #40ae00;
  padding-left: 0;
  margin-bottom: 0px;
  position: relative;
  margin-top: 5px;
}

.bell .sub-notification-item .content .name {
  font-weight: 500;
  color: #121212;
  position: relative;
}

.notification_show {
  opacity: 1;
  visibility: visible;
  top: 53px;
}

.navbar-toggler {
  padding: 0;
  border: none;
}

/* ===================================================
Header Styling Ends Here
=================================================== */
.bg-lightgreen-overlay {
  position: relative;
  width: 100%;
  height: 300px;
}

.bg-lightgreen-overlay::after {
  content: "";
  position: absolute;
  background-color: #73d13d !important;
  opacity: 0.5;
  z-index: 0;
  height: 100%;
  top: 0px;
  width: 100%;
  left: 0;
}

.height_30 {
  height: 45px;
}

.heading .heading--title {
  color: #41493b;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  /* margin-bottom: 30px; */
  text-transform: capitalize;
}

/* ===================================================
Footer Styling Starts Here
=================================================== */

.top_footer {
  background: #41493b;
  padding: 60px 0;
}

.top_footer ul li a {
  color: #aaaaaa;
}

.top_footer ul li:not(:last-child) {
  margin-bottom: 6px;
}

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

.footer_contact_text {
  margin-left: 10px;
  color: #aaaaaa;
}

.social_links {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50px;
  margin-right: 10px;
}

.social_links i {
  color: #41493b;
}

.social_links:hover {
  background: #40ae00;
}

.social_links:hover i {
  color: #ffffff;
}

.subscribe_input {
  border-radius: 50px;
  background: #ffffff;
  padding: 10px;
  margin-top: 20px;
}

.subscribe_input .form-control {
  border: none;
  background: transparent;
  padding: 0;
}

.subscribe_input .btn {
  border: none;
  background: #41493b;
  border-radius: 50px !important;
  padding: 10px 14px;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  display: flex;
}

.bottom_footer {
  background: #30362b;
  padding: 15px 0;
}

.bt-left {
  display: flex;
  align-items: center;
}

.menu-bottom {
  justify-content: end;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 6%;
  z-index: 9999;
  border: none;
  outline: none;
  background: #40ae00;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.uparrow_white {
  color: #ffffff;
}

/* ===================================================
Footer Styling Ends Here
=================================================== */

/* ===================================================
Home Styling Starts Here
=================================================== */

/* .daleely {
    margin-top: 50px;
} */
/* .card-content {
  width: 100%;
  padding: 15px 25px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.582);
  color: white;
  transform: translateY(100%);
  transition: all 0.35s ease;
}

.card-holder:hover .card-content {
  transform: translateY(0);
} */

.business-card-holder {
  background-color: #fff;
  padding: 10px;
  /* padding: 20px; */
  transition: 0.3s;
  border-radius: 18px;
}

.b-card {
  /* padding: 10px; */
  /* border-radius: 18px; */
  /* background: #f9fff3; */
  /* box-shadow: 0px 8px 30px 0px rgba(59, 62, 66, 0.05); */
  display: block;
  /* border: 6px solid #f9fff3; */
}

/* .business-card-holder:hover {
  background-color: #f9fff3;
} */
.event_item {
  margin-bottom: 20px;
  position: relative;
}

.save_btn {
  border-radius: 10px;
  /* background: linear-gradient(142deg, #73d13d 0%, #40ae00 100%); */
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  color: #f9fff3;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 19px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 99;
}

.business-card-holder .card-title {
  font-size: 24px;
  font-weight: 700;
  color: #41493b;
  padding-top: 6px;
  margin-bottom: 0;
}

.business-card-holder .card-text {
  color: #718e5d;
}

.business-card-holder .img_height {
  height: 36px;
}

.bg-image {
  position: relative;
  width: 100%;
  height: 200px;
}

.phone_image {
  height: 480px;
  width: 100%;
  margin-top: 30px;
}

.view-more-btn {
  border: none;
  color: #ffffff;
  text-align: center;
  font-size: 28px;

  width: 200px;
  transition: all 0.5s;
  cursor: pointer;

  margin-top: 45px;
}

.view-more-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.view-more-btn span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.view-more-btn:hover span {
  padding-right: 25px;
}

.view-more-btn:hover span:after {
  opacity: 1;
  right: 0;
}

.phone_image img {
  height: 100%;
}

.bg-image::after {
  content: "";
  position: absolute;
  background: url("../images/page-image/bg-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  top: 0;
  opacity: 0.4;
}

.party_image {
  position: relative;
  /* background: url("../images/page-image/property-1.png"); */
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 500px;
  z-index: 0;
  background-size: cover;
  /* new css added */
}

.party_image.new_headers {
  height: 90px;
  background-color: #b3e794;
}

.party_image.new_headers::before {
  background: unset;
}

.party_image::before {
  position: absolute;
  content: "";
  bottom: 0%;
  left: 0%;
  right: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      #0e1728 7.47%,
      rgba(14, 23, 40, 0) 171.37%);
  mix-blend-mode: normal;
  transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
}

.main_event {
  padding: 50px 0;
}

.business_event {
  background: #f9fff3;
}

.event_boxes {
  border-radius: 8px;
  border: 1px solid #718e5d;
  background: #fcfffc;
  padding: 40px;
  margin-bottom: 60px;
  cursor: pointer;
}

.event_boxes:hover {
  border: 1px solid #41493b;
  background: #f9fff3;
  box-shadow: 0px 0px 0px 0px rgba(0, 99, 0, 0.04),
    0px 1px 3px 0px rgba(0, 99, 0, 0.04), 0px 6px 6px 0px rgba(0, 99, 0, 0.03),
    0px 13px 8px 0px rgba(0, 99, 0, 0.02),
    0px 24px 10px 0px rgba(0, 99, 0, 0.01), 0px 37px 10px 0px rgba(0, 99, 0, 0);
}

.event_boxes_image {
  height: 150px;
  width: 150px;
  margin: 0 auto 50px auto;
}

.event_boxes_image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.event_item {
  padding: 10px;
  border-radius: 18px;
  background: #f9fff3;
  box-shadow: 0px 8px 30px 0px rgba(59, 62, 66, 0.05);
  display: block;
}

.event_image {
  height: 170px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.event_img_height {
  height: 170px;
}

.event_image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #3b3e42 100%);
  height: 100%;
  width: 100%;
}

.event_image img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.event_date {
  border-radius: 10px;
  background: linear-gradient(142deg,
      rgba(252, 255, 252, 0.4) 0%,
      rgba(252, 255, 252, 0.1) 100%);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  padding: 5px 10px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-align: center;
}

.event_date_2 {
  padding: 2px 6px;
}

.event_description {
  margin-top: 10px;
}

.event_desc_12 {
  margin-top: 12px;
}

.event_like {
  border-top: 1px solid #d9d9d9;
  /* padding-top: 10px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event_like_edit_icon {
  margin-right: 3px;
}

.event_like_edit_icon img {
  height: 16px;
  width: 16px;
}

.event_like_edit_text {
  color: #73d13d;
}

.event_delete_edit_text {
  color: #ff3c3c;
}

.event_active_edit_text {
  color: #009ffe;
}

.event_active_edit_text {
  color: #41493b;
}

.business_class {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 96%;
  padding: 5px;
}

.green_rating.star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 1em;
  justify-content: space-around;
  padding: 0 0.2em;
  text-align: center;
  width: max-content;
}

.green_rating.star-rating input {
  display: none;
}

.green_rating.star-rating label {
  color: #73d13d;
  cursor: pointer;
}

.green_rating.star-rating :checked~label {
  color: #73d13d;
}

.green_rating.star-rating label:hover,
.green_rating.star-rating label:hover~label {
  color: #73d13d;
}

.event_image {
  position: relative;
  z-index: 0;
}

.open_btn {
  border-radius: 10px;
  background: linear-gradient(142deg, #73d13d 0%, #40ae00 100%);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  color: #f9fff3;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.close_btn {
  border-radius: 10px;
  background: #41493B;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  color: #f9fff3;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid #718E5D;
}

.yellow_rating.star-rating label {
  color: #ffcd55;
}

.yellow_rating.star-rating :checked~label {
  color: #ffcd55;
}

.yellow_rating.star-rating label:hover,
.yellow_rati#FFCD55-rating label:hover~label {
  color: #ffcd55;
}

.bath_white {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 8px;
  background: #fcfffc;
  backdrop-filter: blur(4px);
  color: #000000;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-left: 10px;
}

.apply_shopping {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.halloween_sale {
  position: absolute;
  top: 10px;
  left: 10px;
}

.offer_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  opacity: 0.699999988079071;
  background: #41493b;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* ===================================================
Home Styling Ends Here
=================================================== */

/* ===================================================
Event Detail Styling Starts Here
=================================================== */

.pz_2 {
  position: relative;
  z-index: 3;
}

.event_detail_image {
  height: 700px;
  /* background: url("../images/page-image/events.jpg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  z-index: 1;
  background-size: cover; */
}

.event_detail_image::before {
  background: linear-gradient(180deg,
      #0e1728d4 7.47%,
      rgba(14, 23, 40, 0) 171.37%);
  z-index: 2;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff;
}

.business-carousel.owl-carousel .owl-item .height_500,
.business-carousel-b.owl-carousel .owl-item .height_500,
.event-carousel.owl-carousel .owl-item .height_500,
.event-carousel-b.owl-carousel .owl-item .height_500,
.deals-carousel.owl-carousel .owl-item .height_500,
.deals-carousel-b.owl-carousel .owl-item .height_500,
.realestate-carousel.owl-carousel .owl-item .height_500,
.realestate-carousel-b.owl-carousel .owl-item .height_500 {
  height: 500px;
}

.business_detail_image {
  height: 700px;
  /* background: url("../images/page-image/business.jpg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  z-index: 1;
  background-size: cover; */
}

.business_detail_image::before {
  z-index: 2;
}

.realestate_detail_image {
  height: 700px;
  /* background: url("../images/page-image/real-estate.jpg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  z-index: 1;
  background-size: cover; */
}

.realestate_detail_image::before {
  z-index: 2;
}

.deals_detail_image {
  height: 700px;
  /* background: url("../images/page-image/deals.jpg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  z-index: 1;
  background-size: cover; */
}

.deals_detail_image::before {
  z-index: 2;
}

.folder_image {
  height: 230px;
  background: url("../images/page-image/folder.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  z-index: 1;
  background-size: cover;
}

.more_events {
  padding: 60px 0;
}

.green_input {
  border-radius: 10px;
  border: 1px solid #73D13D;
  background: linear-gradient(142deg, rgba(252, 255, 252, 0.60) 0%, rgba(252, 255, 252, 0.60) 100%);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  padding: 16px;
}

.green_input .input-group-text {
  padding: 0;
  border: none;
  background: transparent;
}

.green_input .form-control {
  padding: 0;
  border: none;
  background: transparent;
}

.filter_modal .modal-content {
  border-radius: 10px;
  background: #ffffff;
}

.modal-header {
  border-color: #E8E8E8;
}

.filter_modal .modal-footer {
  border-top: none;
}

.public_e {
  border-radius: 5px;
  border: 1px solid #808080;
  background: #FFF;
  padding: 10px;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  cursor: pointer;
}

.public_e.active {
  background-image: linear-gradient(142.4deg, #73d13d 5.22%, #40ae00 95.21%);
  background-color: #73d13d;
  color: #fcfffc;
  border: transparent;
}

/* ========== Distance Range ===========  */

.range-slider {
  --range-slider-value-low-fallback: calc(var(--range-slider-value-low, 0) * 1%);
  --range-slider-value-high-fallback: calc(var(--range-slider-value-high, 100) * 1%);
  --range-slider-thumb-size: 24px;
  --range-slider-thumb-radius: calc(var(--range-slider-thumb-size) / 2);
  position: relative;
  width: 100%;
  height: 26px;
  margin-bottom: 40px;
}

@media (max-width: 500px) {
  .range-slider {
    --range-slider-thumb-size: 26px;
  }
}

.range-slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -2px;
  border-radius: 100vmax;
  background-color: #ebebeb;

  pointer-events: none;
}

.range-slider__display {
  pointer-events: none;
}

.range-slider__display::before,
.range-slider__display::after {
  content: attr(data-span) "mi";
  position: absolute;
  color: #0c0a0d;
  font-size: 14px;
  font-weight: 600px;
  font-family: sans-serif;
  white-space: nowrap;
  transform: translateX(-50%) translateX(calc(var(--range-slider-thumb-radius) * calc(-0.02 * var(--pos) + 1)));
  z-index: 1;
}

.range-slider__display::before {
  --pos: var(--range-slider-value-low);
  content: attr(data-low) "mi";
  top: 100%;
  margin-top: calc(var(--range-slider-thumb-size) / 4);
  left: var(--range-slider-value-low-fallback);
}

.range-slider__display::after {
  --pos: var(--range-slider-value-high);
  content: attr(data-high) "mi";
  top: 100%;
  margin-top: calc(var(--range-slider-thumb-size) / 4);
  left: var(--range-slider-value-high-fallback);
}

.range-slider__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  background-color: transparent;
  pointer-events: none;
}

.tp-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  background: #60914c;
  text-align: center;
  padding: 5px 20px;
  position: relative;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
  border-radius: 60px;
  text-transform: capitalize;

}

@supports selector(:focus-visible) {
  .range-slider__input:focus-visible {
    outline: none;
  }

  .range-slider__input:focus-visible::-webkit-slider-thumb {
    outline: 2px solid white;
    outline-offset: 2px;
  }

  .range-slider__input:focus-visible::-moz-range-thumb {
    outline: 2px solid white;
    outline-offset: 2px;
  }
}

@supports not selector(:focus-visible) {
  .range-slider__input:focus {
    outline: none;
  }

  .range-slider__input:focus::-webkit-slider-thumb {
    outline: 2px solid white;
    outline-offset: 2px;
  }

  .range-slider__input:focus::-moz-range-thumb {
    outline: 2px solid white;
    outline-offset: 2px;
  }
}

.range-slider__input:active::-webkit-slider-thumb {
  transform: scale(1.3);
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.range-slider__input:active::-moz-range-thumb {
  transform: scale(1.3);
  cursor: grabbing;
}

.range-slider__input::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border-radius: 0;
}

.range-slider__input::-moz-range-track {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border-radius: 0;
}

.range-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  pointer-events: all;
  position: relative;
  width: 12px;
  height: 26px;
  background-image: linear-gradient(142deg, #73D13D 0%, #40AE00 100%);
  border-radius: 18px;
  border: none;
  box-shadow: none;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
}

.range-slider__input::-moz-range-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  pointer-events: all;
  position: relative;
  width: var(--range-slider-thumb-size);
  height: var(--range-slider-thumb-size);
  background-color: #000;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  cursor: grab;
  -moz-transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transition: transform 300ms cubic-bezier(0.47, 1.64, 0.41, 0.8);
}

/* ========== Distance Range ===========  */

.price_all {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.price_one {
  border-radius: 5px;
  border: 1px solid #808080;
  background: #FFF;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 60px;
}

.price_one.active {
  background: linear-gradient(142deg, #73D13D 0%, #40AE00 100%);
  border-color: transparent;
}

.price_one.active span {
  color: #ffffff !important;
}

.price_one.active img {
  filter: invert(99%) sepia(26%) saturate(1%) hue-rotate(158deg) brightness(382%) contrast(160%);
}

.price_all .price_one:last-child {
  margin-right: 0;
}

.price_one span {
  color: #808080;
  font-size: 12px;
}

.int_brand {
  padding: 60px 0;
}

.limited_tickets {
  border-radius: 6px;
  border: 2px solid #C0DEA7;
  background: #FCFFFC;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 20px;
  padding: 0 10px;
}

.limited_tickets h6 {
  word-break: break-all;

}

.attend_event {
  border-radius: 6px;
  border: 1px solid #C0DEA7;
  background: #F8FFF3;
  padding: 20px;
  margin: 20px 0;
}

.lang {
  background: url("../images/page-image/languages.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 10px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.img_filter {
  filter: invert(56%) sepia(9%) saturate(1423%) hue-rotate(52deg) brightness(92%) contrast(85%);
}

.ratings {
  border-radius: 6px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  padding: 20px;
}

.ratings_heading {
  margin-bottom: 20px;
  border-bottom: 1px solid #DFDFDF;
}

.rates {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rate_image {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

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

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 1em;
  justify-content: left;
  padding: 0 .2em;
  text-align: start;
  width: 5em;
  margin-left: 5px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: #ccc;
  cursor: pointer;
}

.star-rating :checked~label {
  color: #f90;
}

.star-rating label:hover,
.star-rating label:hover~label {
  color: #fc0;
}

.review_palce_img {
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.review_palce_img img {
  height: 70px;
  width: 70px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 15px;
}

.rate_textarea {
  padding: 0;
}

.rate_textarea .form-control {
  background: #F9FFF3;
  border: none;
  border-radius: 4px;
}

.file-input__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-input__label {
  cursor: pointer;
}

.file-input {
  margin: 20px 0;
}

.delete_btn {
  background: #FF3B3B;
}

.delete_btn:after {
  background-color: #bb6e6e;
  background-image: linear-gradient(142.4deg, #FF3B3B 5.22%, #bb6e6e 95.21%);
}

.active_btn {
  background: #009FFE;
}

.active_btn:after {
  background-color: #61aad4;
  background-image: linear-gradient(142.4deg, #009FFE 5.22%, #61aad4 95.21%);
}

.upload_images {
  display: flex;
}

.select_image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.upload_images .file-input {
  margin-right: 15px;
}

.uploaded {
  margin-bottom: 0;
  position: relative;
}

.uploaded img {
  margin-bottom: 20px;
}

.del_pic {
  position: absolute;
  z-index: 9;
  height: 24px;
  width: 24px;
  top: -5px;
  right: 11px;
}

.del_pic img {
  height: 100%;
  width: 100%;
  margin: 0;
}

.scale_56 {
  height: 56px;
}

.working_h li {
  border-bottom: 1px solid #F1F1F1;
  margin-bottom: 20px;
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;

}

.hours_input {
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  background: #FFF;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.10);
  padding: 11px 13px;
  width: max-content;
  max-width: 90px;
  color: #73D13D;
  font-weight: 600;
  font-size: 14px;
}

.hours_input::-webkit-input-placeholder {
  color: #73D13D;
}

.hours_input::-moz-placeholder {
  color: #73D13D;
}

.hours_input:-ms-input-placeholder {
  color: #73D13D;
}

.hours_inputinput:-moz-placeholder {
  color: #73D13D;
}

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

.date_action {
  border-radius: 4px;
  border: 1px solid #E2E2E2;
  background: #FFF;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.10);
  padding: 9.5px 13px;
  width: max-content;
  height: 45px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time_input {
  color: #000000;
}

.time_input::-webkit-input-placeholder {
  color: #000000;
}

.time_input::-moz-placeholder {
  color: #000000;
}

.time_input:-ms-input-placeholder {
  color: #000000;
}

.time_inputinput:-moz-placeholder {
  color: #000000;
}

.modal-content {
  border: none;
  border-radius: 10px;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

.remove_red {
  padding: 9px 45px;
}

.edit_pic {
  height: 110px;
  width: 110px;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  cursor: pointer;
}

.edit_pic img {
  height: 100%;
  width: 100%;
}

.accordion-item {
  margin-bottom: 20px;
  border: 1px solid #F1F1F1 !important;
}

.accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #ffffff;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("../images/icon/acc-plus.svg");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../images/icon/acc-minus.svg");
}

.accordion-button:focus {
  box-shadow: none;
  border-color: inherit;
}

.accordian-body {
  color: #959CAA;
}

.new_folder {
  border-radius: 12px;
  background: #C0DEA7;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.05);
  padding: 30px;
  cursor: pointer;
}

.add_folder {
  background: linear-gradient(142deg, #73D13D 0%, #40AE00 100%);
}

.gray_75 {
  color: #757575;
}

.save_f {
  border-radius: 0px 12px;
  background: linear-gradient(142deg, #73D13D 0%, #40AE00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px;
  cursor: pointer;
}

.green_services {
  border-radius: 4px;
  background: #41493B;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px;
  cursor: pointer;
}

.save_p {
  position: absolute;
  top: 1px;
  left: 40px;
}

.form-check-input:checked {
  background: #73D13D;
  border-color: #D9D9D9;
}

.bg-parallex {
  background-attachment: fixed;
}

.bg-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.bg-overlay-dark:before {
  background-color: #73D13D;
  opacity: 0.8;
}

.bg-overlay:before {
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.pricing-panel {
  border-radius: 6px;
  padding: 40px;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -o-transition: all 0.35s;
  transition: all 0.35s;
  position: relative;
}

.text--center {
  text-align: center !important;
}

.pricing-panel .pricing--heading h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 33px;
  text-transform: uppercase;
}

.pricing-panel .pricing--heading p {
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 35px;
  text-transform: capitalize;
}

.pricing-panel .pricing--heading .pricing--desc {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 20px;
}

.pricing-panel .pricing--body {
  text-align: center;
}

.pricing-panel .btn {
  border-radius: 4px;
}

.btn--bordered.btn--white {
  color: #ffffff;
  border-color: #ffffff;
}

.btn--white {
  background-color: #ffffff;
  color: #363636;
  border: 1px solid #ffffff;
  border-radius: 4px;
}

.btn {
  position: relative;
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
  padding: 0;
  line-height: 45px;
  width: 170px;
  height: 45px;
}

.btn--bordered {
  background-color: transparent;
}

.pricing-panel:hover {
  background-color: #ffffff;
}

.pricing-panel:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

.pricing-panel:hover .btn--white {
  background-color: #363636;
  border-color: #363636;
  color: #ffffff;
}

.btn--bordered.btn--white:active,
.btn--bordered.btn--white:focus,
.btn--bordered.btn--white:hover {
  color: #73D13D;
  background-color: #ffffff;
  border-color: #ffffff;
}

.pricing-panel:hover .pricing--heading .pricing--desc,
.pricing-panel:hover .pricing--heading h4 {
  color: #7C7C7C;
}

.pricing-panel:hover .pricing--heading p {
  color: #7C7C7C;
}

.pricing-panel.pricing-active,
.pricing-panel:hover {
  background-color: #ffffff;
}

.pricing-panel.pricing-active .pricing--heading .pricing--desc,
.pricing-panel.pricing-active .pricing--heading h4,
.pricing-panel:hover .pricing--heading .pricing--desc,
.pricing-panel:hover .pricing--heading h4 {
  color: #7C7C7C;
}

.pricing-panel.pricing-active .pricing--heading p,
.pricing-panel:hover .pricing--heading p {
  color: #41493B;
}

.price_list {
  text-align: left;
  list-style-type: disc;
}

.price_list li {
  color: #e0e0e0;
}

.pricing-active .price_list li {
  color: #7C7C7C;
}

.pricing-panel:hover .price_list li {
  color: #7C7C7C;
}

.search_b {
  height: unset;
  width: unset;
}

.green_white_arrow {
  position: absolute;
  bottom: -10px;
  left: -10px;
  border-radius: 0px 25px 0px 0px;
  background: #73D13D;
  width: 53px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.green_white_arrow img {
  height: 13px;
  width: 21px;
}

.wrapper {
  display: inline-flex;
  background: #fff;
  height: 60px;
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
}

.wrapper .option {
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  transition: all 0.3s ease;
}

.wrapper .option .dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}

.wrapper .option .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: #73D13D;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}

.wrapper input[type="radio"] {
  display: none;
}

#option-1:checked:checked~.option-1,
#option-2:checked:checked~.option-2 {
  border-color: #73D13D;
  background: #73D13D;
}

#option-1:checked:checked~.option-1 .dot,
#option-2:checked:checked~.option-2 .dot {
  background: #fff;
}

#option-1:checked:checked~.option-1 .dot::before,
#option-2:checked:checked~.option-2 .dot::before {
  opacity: 1;
  transform: scale(1);
}

.wrapper .option span {
  font-size: 20px;
  color: #808080;
}

#option-1:checked:checked~.option-1 span,
#option-2:checked:checked~.option-2 span {
  color: #fff;
}

.pagination .page-item {
  margin: 0 5px;
}

.pagination .page-item .page-link {
  color: #3b3e42;
  border-radius: 8px;
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
}

.pagination .page-item.active .page-link {
  color: #ffffff;
  background: #40ae00;
  border-color: #40ae00;
}

.all_imgs {
  border-radius: 18px;
  margin-bottom: 20px;
  height: 300px;
  overflow: hidden;
}

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

.business_filter {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.business_filter_item {
  margin-right: 20px;
}


.img_height {
  /* .business_filter_item .business-card-holder .img_height { */
  height: 24px;
  width: 30px;
}

.business_filter_item .business-card-holder {
  padding: 5px 7px;
  justify-content: center;
  flex-direction: column;
  display: flex;
  text-align: center;
  min-width: 110px;
  max-width: 110px;
}

.main_event_20 {
  padding: 20px 0;
}

.business_filter_item .business-card-holder .card-title {
  word-wrap: break-word;
}

.new_img {
  margin: 0 auto;
}

.saved_post {
  height: 41px;
  width: 36px;
}

.saved_post img {
  object-fit: contain;
}

/* notification */
#notification-list {
  width: 300px;
  max-height: 400px;
  overflow-y: scroll;
}

.dropdown-menu>.panel {
  border: none;
  margin: -5px 0;
}

.panel-heading {
  background-color: #f8fff4;
  border-bottom: 1px solid #f8fff4;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
}

.activity-item i {
  float: left;
  margin-top: 3px;
  font-size: 16px;
  color: #56bd1a;
}

div.activity {
  margin-left: 28px;
}

div.activity-item {
  padding: 7px 12px;
}

#notification-list div.activity-item {
  border-top: 1px solid #f5f5f5;
}

#notification-list div.activity-item a {
  font-weight: 600;
}

div.activity span {
  display: block;
  color: #999;
  font-size: 11px;
  line-height: 16px;
}

#notifications i.fa {
  font-size: 20px;
  color: #FFFFFF;
}

.noty_type_error * {
  font-weight: normal !important;
}

.noty_type_error a {
  font-weight: bold !important;
}

.noty_bar.noty_type_error a,
.noty_bar.noty_type_error i {
  color: #fff
}

.noty_bar.noty_type_information a {
  color: #fff;
  font-weight: bold;
}

.noty_type_error div.activity span {
  color: #fff
}

.noty_type_information div.activity span {
  color: #fefefe
}

.no-notification {
  padding: 10px 5px;
  text-align: center;
}

.noty-manager-wrapper {
  position: relative;
  display: inline-block !important;
}

.noty-manager-bubble {
  position: absolute;
  top: -8px;
  background-color: #fb6b5b;
  color: #fff;
  padding: 2px 5px !important;
  font-size: 9px;
  line-height: 12px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  cursor: pointer;
  height: 15px;
  font-weight: bold;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  opacity: 0;
}

.header-customize-item .dropdown-menu[data-bs-popper] {
  right: 10px;
  left: unset;
}

footer.panel-footer {
  padding: 5px 10px;
  text-align: center;
}

/* ===================================================
Event Detail Styling Ends Here
=================================================== */

/* ========== Media Query Starts ===========  */

@media (max-width: 1200px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 14px !important;
  }

  .font_15 {
    font-size: 14px !important;
  }

  .font_16 {
    font-size: 15px !important;
  }

  .font_17 {
    font-size: 16px !important;
  }

  .font_18 {
    font-size: 16px !important;
  }

  .font_19 {
    font-size: 18px !important;
  }

  .font_20 {
    font-size: 18px !important;
  }

  .font_22 {
    font-size: 20px !important;
  }

  .font_24 {
    font-size: 22px !important;
  }

  .font_26 {
    font-size: 22px !important;
  }

  .font_25 {
    font-size: 22px !important;
  }

  .font_28 {
    font-size: 22px !important;
  }

  .font_30 {
    font-size: 23px !important;
  }

  .font_32 {
    font-size: 23px !important;
  }

  .font_36 {
    font-size: 24px !important;
  }

  .font_40 {
    font-size: 24px !important;
  }

  .font_46 {
    font-size: 32px !important;
  }

  .font_48 {
    font-size: 32px !important;
  }

  .social_links {
    height: 30px;
    width: 30px;
  }
}

@media (min-width: 992px) {
  .r_none {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 14px !important;
  }

  .font_15 {
    font-size: 14px !important;
  }

  .font_16 {
    font-size: 15px !important;
  }

  .font_17 {
    font-size: 16px !important;
  }

  .font_18 {
    font-size: 16px !important;
  }

  .font_19 {
    font-size: 18px !important;
  }

  .font_20 {
    font-size: 18px !important;
  }

  .font_22 {
    font-size: 20px !important;
  }

  .font_24 {
    font-size: 22px !important;
  }

  .font_26 {
    font-size: 22px !important;
  }

  .font_25 {
    font-size: 22px !important;
  }

  .font_28 {
    font-size: 22px !important;
  }

  .font_30 {
    font-size: 23px !important;
  }

  .font_32 {
    font-size: 23px !important;
  }

  .font_36 {
    font-size: 24px !important;
  }

  .font_40 {
    font-size: 26px !important;
  }

  .font_46 {
    font-size: 30px !important;
  }

  .font_48 {
    font-size: 30px !important;
  }

  .event_boxes_image {
    height: 100px;
    width: 100px;
  }

  .right_nav {
    margin-right: 30px;
  }

  /* .navbar-toggler.collapsed{
        position: absolute;
        right: 15px;
    } */

  .l_none {
    display: none !important;
  }

  .bell .sub-notification {
    left: 0;
  }
}

@media (max-width: 767.5px) {
  .font_10 {
    font-size: 10px !important;
  }

  #map {
    height: 500px !important;
  }

  .timeslot {
    overflow-y: auto;
    max-height: 350px;

  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 14px !important;
  }

  .font_15 {
    font-size: 14px !important;
  }

  .font_16 {
    font-size: 15px !important;
  }

  .font_17 {
    font-size: 15px !important;
  }

  .font_18 {
    font-size: 16px !important;
  }

  .font_19 {
    font-size: 16px !important;
  }

  .font_20 {
    font-size: 16px !important;
  }

  .font_22 {
    font-size: 16px !important;
  }

  .font_24 {
    font-size: 17px !important;
  }

  .font_26 {
    font-size: 17px !important;
  }

  .font_25 {
    font-size: 18px !important;
  }

  .font_28 {
    font-size: 18px !important;
  }

  .font_30 {
    font-size: 20px !important;
  }

  .font_32 {
    font-size: 20px !important;
  }

  .font_36 {
    font-size: 20px !important;
  }

  .font_40 {
    font-size: 26px !important;
  }

  .font_46 {
    font-size: 28px !important;
  }

  .font_48 {
    font-size: 28px !important;
  }

  .event_boxes {
    padding: 20px;
  }

  .event_boxes_image {
    height: 70px;
    width: 70px;
  }

  .btn_style {
    padding: 7px 10px !important;

    font-size: 13px;
  }

  .logo-w {
    width: 150px;
  }

  .phone_image {
    height: 280px;
    width: 100%;
  }

  .heading .heading--title {
    font-size: 28px;
  }

  div.hamburger-box {
    top: -6px;
    width: 42px;
  }

  .int_brand {
    padding: 40px 0;
  }

  .ratings {
    padding: 15px;
  }

  #myBtn {
    bottom: 94px;
  }

  .more_events {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .font_10 {
    font-size: 10px !important;
  }

  .font_12 {
    font-size: 12px !important;
  }

  .font_14 {
    font-size: 12px !important;
  }

  .font_15 {
    font-size: 12px !important;
  }

  .font_16 {
    font-size: 13px !important;
  }

  .font_17 {
    font-size: 14px !important;
  }

  .font_18 {
    font-size: 14px !important;
  }

  .font_19 {
    font-size: 14px !important;
  }

  .font_20 {
    font-size: 15px !important;
  }

  .font_22 {
    font-size: 16px !important;
  }

  .font_24 {
    font-size: 16px !important;
  }

  .font_26 {
    font-size: 16px !important;
  }

  .font_25 {
    font-size: 16px !important;
  }

  .font_28 {
    font-size: 16px !important;
  }

  .font_30 {
    font-size: 20px !important;
  }

  .font_32 {
    font-size: 20px !important;
  }

  .font_36 {
    font-size: 20px !important;
  }

  .font_40 {
    font-size: 22px !important;
  }

  .font_46 {
    font-size: 24px !important;
  }

  .font_48 {
    font-size: 24px !important;
  }

  .bt-left {
    margin-bottom: 10px;
    justify-content: center;
  }

  .menu-bottom {
    margin-bottom: 10px;
    justify-content: center;
  }

  .btn_style {
    padding: 4px 8px !important;
    font-size: 13px;
  }

  .nav-pad-0 {
    padding: 0 !important;
  }

  .search-field .form-control {
    padding: 7px 10px;
  }

  .margin-auto {
    margin: 0;
  }

  div.hamburger-box {
    top: -28px;
  }

  .menu {
    top: -39px;
  }

  .hamburger-box.active {
    top: -39px;
  }

  .pad-16 {
    padding: 10px;
  }

  .input-group-text img {
    width: 10px;
  }

  .main_event {
    padding: 40px 0;
  }

  .subscribe_input .btn {
    padding: 7px 10px;

    font-size: 14px;
  }

  .footer_contact_icon img {
    width: 20px;
  }

  .subscribe_input {
    padding: 8px;

    margin-bottom: 20px;
  }

  .primary_btn {
    padding: 10px 30px;
    border-radius: 5px;
  }

  .flex-order-2 {
    order: 2;
  }

  .flex-order-1 {
    order: 1;
  }

  .bg-image {
    height: 450px;
  }

  .phone_image {
    height: 180px;
    width: 100%;
    margin-top: 0;
  }

  .height_30 {
    height: 30px;
  }

  .ratings {
    padding: 10px;
  }

  .primary_outline_btn {
    padding: 9px 30px;
  }

  .pagination .page-item .page-link {
    font-size: 12px;
  }


}

@media(max-width:471px) {
  .bell .sub-notification {
    left: 0;
    padding: 10px;
    width: 320px;
  }
}

@media (max-width: 1024px) {
  .header-customize-item.resp-notification-block {
    position: absolute;
    right: 60px;
    top: 25px;
  }
}

@media (max-width: 768px) {
  .header-customize-item.resp-notification-block {
    position: absolute;
    right: 60px;
    top: 25px;
  }

  .header-customize-item .dropdown-menu[data-bs-popper] {
    top: 45px;
  }

  .header-customize-item .dropdown-menu[data-bs-popper] {
    top: 45px;
  }
}

/* ========== Media Query Ends ===========  */

/* for business  multiple language dropdown */

.select2-container .select2-selection--multiple {
  min-height: 56px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #718e5d !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  height: 45px;
  overflow-y: auto !important;
}


.select2-container--default .select2-selection--multiple {
  border: 1px solid #718e5d !important;
}

.header-customize-item .dropdown-toggle::after {
  color: #ffffff
}

.owl-carousel .owl-item img {
  object-fit: cover
}

.height_700 {
  height: 700px;
}

.section-lft-container {
  width: 200px;
  height: 200px;
  overflow: hidden;
  text-align: center;
  margin: 0 auto;
}

.section-lft-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}