
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --darkred-color: #50252E;
    --redblack-color: #391A11;
    --black-color: #333333;
    --white-color: #FFFFFF;
    --grey-color: #58585A;
    --pink-color: #E1134E;
    --purple-color: #7D5571;
    --green-color: #547538;
}


*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


body{
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    color: #474844;
	background-color: #f0f0f0;
}

.heading-ff{
  font-family: "Montserrat", sans-serif;
}
.para-ff{
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}
a:hover{
  color: inherit;
}
/*  ======= Text Color =========== */
/* .text_dark_red{
    color: var(--darkred-color);
}
.text_red_black{
    color: var(--redblack-color);
}
.text_black{
    color: var(--black-color);
}
.text_grey{
    color: var(--grey-color);
}
.text_pink {
    color: var(--pink-color);
} */
.fs-18{
  font-size: 18px;
}
.theme_btn{
  transition: .2s all;
  text-align: center;
  color: var(--white-color);
  background-color: var(--purple-color);
  padding: 10px 20px;
  text-decoration: none;
  border: 0;
  outline: none;
  display: inline-block;
}
.theme_btn:hover{
    color: var(--white-color);
    background-color: var(--green-color);
}

/*  */
ol.breadcrumb  li  a.first_link:hover{
    color: var(--purple-color) !important;
}


/*  ====== Navbar CSS ========= */
.navigation_bar {
    padding: 34px 0px;
    background-color: var(--white-color);
    box-shadow: 0 5px 7px rgb(0 0 0 / 4%), 0 6px 6px rgb(0 0 0 / 0%);
}
.logo_wrap {
    width: 120px;
    height: auto;
}
.logo_wrap a{
  display: block;
  text-decoration: none;
  width: 100%;
}

.navBtn_wrap{
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 16px;
}

.cart_btn {
  transition: .2s all;
    color: var(--redblack-color);
    text-transform: uppercase;
    border-radius: 0;
    padding: 6px 15px;
    box-shadow: none !important;
    background-color: var(--white-color);
}
.cart_btn:hover {
    background-color: rgb(223 255 224);
}
.cart_btn i {
    font-size: 20px;
    margin-right: 5px;
}
.cart_btn::after {
    color: #ababab;
}
.cart_dropdown ul {
    padding: 10px;
    width: 400px;
}
.cart_dropdown ul{
  border-radius: 0;
  left: 0;
}
.cart_dropdown ul.dropdown-menu li {
    margin-bottom: 10px;
}
.cart_dropdown ul.dropdown-menu li:last-child{
  margin-bottom: 0px;
}
.cart_dropdown ul.dropdown-menu li  .product_item{
  display: flex;
  align-items: self-start;
  justify-content: start;
}
.cart_dropdown ul.dropdown-menu li a{
  transition: .2s all;
  font-size: 14px;
  text-decoration: none;
  color: var(--black-color);
}
.cart_dropdown ul.dropdown-menu li a:hover{
  color: var(--grey-color);
}

.cart_dropdown ul.dropdown-menu li .product_item .product_img {
    min-width: 80px;
    height: 80px;
    border-radius: 2px;
    overflow: hidden;
}
.cart_dropdown ul.dropdown-menu li .product_item .product_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cancel_product i{
  display: block;
  min-width: 20px;
  height: 30px;
  font-size: 25px !important;
  color: var(--black-color);
}
.cancel_product:hover i{
  color: var(--purple-color) !important; 
}
.default_dropdown{
  transition: .2s all;
  background-color: #F9F8F7;
  color: #50252e;
  padding: 9px 15px;
  border-radius: 4px;
  border: 0;
  border: 2px solid #F9F8F7;
  cursor: pointer;
}
.default_dropdown:focus{
  border: 2px solid var(--grey-color);
}
.select_wrapper{
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select_wrapper select{
  min-width: 160px;
}
.default_link{
  color: var(--black-color);
}
.default_link:hover{
  color: var(--purple-color);
}

.bookingreference_form{
  max-width: 700px;
}
.default_input{
  transition: .3s all;
  padding: 10px 15px;
  outline: none;
  border-radius: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #E0D8D6;
}
.default_input:focus{
  border-color: var(--grey-color);
}
.accordion-button {
  border-radius: 5px !important;
    color: var(--grey-color) !important;
    background-color: #f9f8f7 !important;
    box-shadow: none !important;
}

.accordion-button::after {
    width: 17px;
    height: 17px;
    background-size: 17px;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237D5571'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.event_item{
  display: block;
  text-decoration: none;
  color: var(--redblack-color);
}
.event_item .event_img{
  transition: .3s all;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.event_item .event_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s all;
}
.event_item:hover img{
  transition: .3s all;
  transform: scale(1.03);
}
.event_content{
  margin-top: 20px;
  margin-bottom: 15px;
}
.event_content h5{
  /* color: var(--purple-color); */
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  padding-bottom: 10px;
}
.event_item:hover h5{
  text-decoration: underline;
}
.pagination_wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.pagination{
  margin-bottom: 0px;
  column-gap: 7px;
}
.pagination li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E5E5;
    color: var(--grey-color) !important;
    box-shadow: none !important;
    border-radius: 100px !important;
}
.pagination li.active a{
  border: 1px solid #E5E5E5 !important;
  background-color: #E5E5E5 !important;
}
.pagination li a:focus{
  background-color: #E5E5E5;
}
.pagination li span i {
    display: block;
    font-size: 15px;
    padding-top: 4px;
}

footer{
  margin-top: 75px;
}
.footer_topPart{
  padding: 50px 0px;
  background-color: var(--darkred-color);
}

.footer_sloganImg {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding-left: 70px;
}
.footer_logo {
    position: absolute;
    bottom: 0;
    left: -20%;
}
.footer_sloganImg .slogn_img{
  width: 100%;
}

.footer_bottomPart{
  padding: 35px 0px;
  background-color: var(--white-color);/*green*/
}
ul.social_media{
  padding: 0;
  margin-bottom: 0;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 18px;
}
ul.social_media li{
  list-style: none;
}
ul.social_media li a{
  transition: .2s all;
  color: var(--black-color);
  font-size: 22px;
}
ul.social_media li a:hover{
  color: var(--darkred-color);
  opacity: .7;
}

.text_light_red{
  color: #990000;
}

.event_mainimg{
  border-radius: 40px;
}
.theme_btn.grey_btn{
  background-color: var(--grey-color);
}
.theme_btn.grey_btn:hover{
  background-color: var(--black-color);
}

/*  ============ Calender CSS Start ================== */
.calendar_wrapper , .rightside_checkout{
  position: sticky;
  top: 40px;
}
.calendar {
	 width: 100%;
   margin-bottom: 35px;
}
.calendar__month {
    font-size: 20px;
    padding: 10px 10px;
    width: 100%;
    position: relative;
    background: var(--purple-color);
    color: var(--white-color);
}
 .cal-month__previous, .cal-month__next {
	 position: absolute;
	 top: 51%;
	 transform: translateY(-50%);
	 cursor: pointer;
	 width: 30px;
	 height: 30px;
	 text-align: center;
}
.cal-month__previous a ,  .cal-month__next a{
  color: var(--white-color) !important;
}
 .cal-month__next {
	 right: 10px;
}
 .cal-month__current {
	 text-align: center;
	 color: var(--white-color);
}
.cal-head__day, .cal-body__day {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
}
.cal-body__week, .calendar__head {
    display: block;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
 .calendar__head {
	 line-height: 50px;
	 position: relative;
}
.calendar__head .cal-head__day{
  color: var(--redblack-color);
  font-weight: 600;
}
.cal-body__day  {
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    position: relative;
}
 .cal-day__month--current {
	 color: var(--black-color);
}
 .cal-day__day--today {
	 font-weight: 800;
	 color: var(--purple-color);
}
.cal-day__day--selected  , .available_day.cal-day__day--selected , .notavailable_day.cal-day__day--selected{
    background-color: var(--purple-color);
    border-radius: 50%;
    color: var(--white-color);
    border: 0;
}
.available_day.cal-day__day--selected::after {
    content: "";
    position: absolute;
    border: 2px solid var(--green-color);
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.notavailable_day.cal-day__day--selected::after {
    content: "";
    position: absolute;
    border: 1px dashed var(--black-color);
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.available_day{
  color: var(--white-color);
  border-radius: 50%;
  background-color: var(--green-color);
}
.notavailable_day{
  border-radius: 50%;
  border: 1px dashed var(--black-color);
}

.days_markWrapper{
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 30px;
}
.mark_item  p{
  font-size: 14px;
}
.mark_item span {
    min-width: 30px;
    height: 30px;
    border-radius: 100px;
    margin-right: 10px;
}
.mark_item span.available_span{
  background-color: var(--green-color);
}
.mark_item span.selected_span{
  background-color: var(--purple-color);
}
.mark_item span.notavailable_span{
  background-color: transparent;
  border: 1px dashed var(--black-color);
}
/*  ================= Calender CSS End ================ */

.note_wrap{
  background-color: #EDE9EA;
  padding: 16px;
}

.event_time_btn {
    font-size: 16px;
    outline: none;
    border: 0;
    color: var(--white-color);
    background-color: var(--purple-color);
    padding: 13px 17px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
}

.event_time_content{
  width: 100% !important;
  padding: 15px !important;
  border: 1px solid var(--purple-color);
}

.event_name_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  margin-bottom: 10px;
}

ul.facility_wrap{
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
ul.facility_wrap li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  list-style: none;
  margin-bottom: 10px;
  font-size: 14px;
}
ul.facility_wrap li input{
  font-size: 16px;
  transition: .3s all;
  outline: none;
  width: 60px;
  border: 1px solid #E0D8D6;
  padding: 5px 10px;
  text-align: right;
  color: var(--grey-color);
}
ul.facility_wrap li input:focus{
  border-color: var(--purple-color);
}

.event_timeItem{
  margin-bottom: 12px;
}

.bordered_dropdown{
  transition: .2s all;
  background-color: var(--white-color);
  color: var(--grey-color);
  padding: 9px 15px;
  border-radius: 4px;
  border: 0;
  border: 1px solid #E0D8D6;
  cursor: pointer;
}

.bordered_dropdown:focus{
  border-color: var(--grey-color);
}
.payment_secureImg{
  max-width: 500px;
  margin-bottom: 30px;
}

.cartProduct_img{
  width: 110px;
  height: 110px;
  overflow: hidden;
}
.cartProduct_name{
  font-size: 20px;
}

.cart_wrapper table tr th, .cart_wrapper table tr td{
  vertical-align: middle;
}

table{
  color: #50252E !important;
}

.cart_wrapper table tbody tr td input{
  transition: .3s all;
  border: 1px solid #E0D8D6;
  width: 90px;
  padding: 8px 15px;
  outline: none;
}
.cart_wrapper table tbody tr td input:focus{
  border-color: var(--purple-color);
}
.cart_wrapper table thead tr th{
  border-bottom: 1px dashed #8C8C8C !important; 
}
.cart_wrapper table tbody tr td{
  border-right: 1px dashed #8C8C8C;
  border-bottom: 1px dashed #8C8C8C !important; 
}
.cart_wrapper table tbody tr td:last-child{
  border-right: 0;
}

.cart_wrapper table{
  min-width: 100px;/*900*/
}

.shoppingBtn_wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #8C8C8C;
}

.light_btn {
    transition: .2s all;
    text-decoration: none;
    display: inline-block;
    color: var(--black-color) !important;
    text-transform: uppercase;
    padding: 12px 15px;
    background-color: #E5E5E5;
    text-align: center;
    outline: none;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 5px 10px rgba(0,0,0,0.16), 0 2px 4px rgb(0 0 0 / 12%);
}
.light_btn:hover{
  box-shadow: none;
}
.discount_subtotal_wrap{
  margin-top: 50px;
}

.dashedBorder_btm{
  border-bottom: 1px dashed #8C8C8C;
}
.discountcode_wrap {
    max-width: 400px;
    margin-left: auto;
    text-align: right;
    margin-bottom: 30px;
}
.subtotal_wrap{
  display: flex;
  align-items: center;
  justify-content: end;
}

.subtotal_wrap table tbody tr td {
    min-width: 50px;
    line-height: 45px;
}

.theme_btn.chekout_btn{
  background-color: #E1134E;
  padding: 14px 30px;
  margin-top: 10px;
  font-weight: 500;
}
.theme_btn.chekout_btn:hover{
  background-color: #ff3a72;
}
.subtotal_wrap table tbody tr td.line_height0{
  line-height: normal;
}


.checkout_form .form_item{
  margin-bottom: 18px;
}

.checkout_form .form_item:last-child{
  margin-bottom: 0px;
}

.checkout_form .form_item label {
  font-weight: 500;
  color: var(--black-color);
  width: 100%;
}

.checkout_form .form_item label span{
  color: var(--purple-color);
}
.border-r0{
  border-radius: 0 !important;
}
.fs-14{
  font-size: 14px;
}

.back_btn{
  color: var(--redblack-color);
  column-gap: 10px;
}
.back_btn span {
    transition: .2s all;
    color: var(--redblack-color);
    font-size: 18px;
    padding-top: 5px;
    width: 40px;
    height: 40px;
    background-color: #FFCF28;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back_btn:hover{
  color: var(--purple-color);
}
.back_btn:hover span{
  transition: .4s all;
  border-radius: 100px;
}

.wizard_wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 950px;
  margin: auto;
  margin-bottom: 40px;
}
.wizard_item{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: #EDEDED;
  padding: 14px 20px;
}
.wizard_item.active{
  background-color: #FFCF28;
}
.wizard_item span{
  background-color: var(--redblack-color);
  color: var(--white-color);
  font-weight: 500;
  width: 35px;
  height: 35px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wizard_item::before {
    width: 0;
    height: 0;
    border-top: 33px inset transparent;
    border-bottom: 33px inset transparent;
    border-left: 24px solid var(--white-color);
    position: absolute;
    content: "";
    top: -1px;
    left: 0;
}
.wizard_item::after {
    width: 0;
    height: 0;
    border-top: 33px inset transparent;
    border-bottom: 33px inset transparent;
    border-left: 24px solid #ededed;
    position: absolute;
    content: "";
    top: -1px;
    right: -17px;
    z-index: 2;
}

.wizard_item:first-child::before{
  display: none;
}

.wizard_item:nth-child(2) , .wizard_item:nth-child(3){
  padding-left: 45px;
}
.wizard_item:nth-child(3)::after {
    right: -24px;
}
.wizard_item.active::after{
    border-left: 24px solid #FFCF28;
}

.bordered_wrap{
  border: 1px solid var(--purple-color);
  padding: 15px;
}

.form-check-input:focus{
  border-color: var(--purple-color);
}
.form-check-input:checked {
    background-color: var(--purple-color);
    border-color: var(--purple-color);
}

/*  =========== New Added CSS =========== */
.max-wdth-content{
  max-width: 700px;
  margin: auto;
}
.cart_btn{
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.bag-icon{
  width: 25px;
}