@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
	--color-primary: #069848;
	--color-body: #2C2A29;
}

body {
	/* background-image: url('../images/body_background.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover; */
	background-color: #fff;
	color: var(--color-body);
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	margin: 0px auto;
}

nav.navbar {
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.01) 0px 1px 0px, rgba(0, 0, 0, 0.025) 0px 0px 8px, rgba(0, 0, 0, 0.075) 0px 20px 30px;

}

.mt-50 {
	margin-top: 50px;
}

.mtb-30 {
	margin: 30px 0px;
}

.savebtn button {
	background: var(--color-primary);
	padding: 10px 30px;
}

.savebtn button:hover {
	background: var(--color-body)
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
	align-items: center;
	justify-content: center;
}

.bg-white {
	background: #fff;
}

.pageContentBox {
	background: #fff;
	/*box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);*/
	/*box-shadow: 0 5px 10px 10px rgba(0, 0, 0, 0.2);*/
	/*border-radius: 30px;*/
	/*border: 1px solid #e4e4e4;*/

}

.pageContentWrapper {
	padding: 30px;
	padding-left: 10px;
	padding-right: 10px;
}

/* header */
.topHeading h3 {
	text-align: center;
	padding: 5px 0px;
	font-weight: 500;
	font-size: 40px;
	margin: 0px;
}

.header h1 {
	color: var(--color-primary);
	text-align: center;
	font-weight: 500;
	font-size: 25px;
	padding: 30px 0px;
	margin: 0px;
	border-bottom: solid 1px #CACACA;
}



/* content box inner */

 

.pageContentWrapper h2 {
	font-size: 24px;
	padding: 35px 0px 15px 0px;
	color: var(--color-primary);
}

.pageContentWrapper .card-text {
	font-weight: 500;
	font-size: 24px;
}

i.calendar_icon {
	vertical-align: text-top;
	margin-right: 10px;
}

.fromBox {
	background: #fff;
	text-align: center;
	border-radius: 8px;
	
}

a {
	color: var(--color-body);
	text-decoration: none;
}

a .fromBox:hover {
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
	color: var(--color-primary);
	text-decoration: none;
}

.fromBox .card-body {
	padding: 15px 0;

}

.fromBox p {
	padding: 0;
	margin: 0;
}

/* date availabelity box */

.fromBox .availableSit {
	padding-bottom: 6px;
	border-bottom: solid 1px #CACACA;
	background-image: linear-gradient(to top, #e0efd4, #ffffff);
}

.availableSit h4 {
	font-size: 28px;
	font-weight: 700;
	margin: 0;

}

.fromBox .dateAvailable {
	padding: 6px 0px 0px 0px;
	display: flex;
    justify-content: center;
	align-items: baseline;
	font-size: 30px;
    color: #3f3c3c;
	font-weight: 400;
	
}

/* check box */
.checkBoxSelect .head {
	padding: 15px 0;
	font-size: 24px;
	color: var(--color-primary);
}

.checkBoxSelect .boxes {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 20px;
	position: relative;
}

.checkBoxSelect .boxes .box {
	position: relative;
}

.checkBoxSelect .boxes .box input {
	appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	/* width: 300px;
      height: 200px; */
	padding: 65px 73px;
	background-color: transparent;
	z-index: 0;
	border: 1px solid #aaaaaa;
	border-radius: 10px;
	cursor: pointer;
	transition: 1s;
	height: 150px;
}

/* @media (max-width: 800px) {
	.checkBoxSelect .boxes .box input {
		
	}
} */
.checkBoxSelect .boxes .box input:hover {
	background-color: rgba(214, 213, 213, 0.361);
}

.checkBoxSelect .boxes .box input:checked {
	/* border: 4px solid var(--mainColor); */
	background-image: linear-gradient(to top, #e0efd4, #ffffff);
}

.checkBoxSelect .boxes .box label {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	width:100%;
}

.checkBoxSelect .boxes .box label i {
	font-size: 60px;
	color: var(--mainColor);
}

.cropIcon img {
	width: 70px;
}

.checkBoxSelect .boxes .box label p {
	padding: 2px 0 0 0;
}

/* check box end */


/* radio button */
.radioheader {
	color: var(--color-primary);
	text-align: center;
	font-weight: 500;
	font-size: 40px;
	padding: 6px 0px;
	margin: 0px;
	/*border-bottom: solid 1px #CACACA;*/
}

.radio-buttons-container {
	display: flex;
	align-items: center;
	gap: 80px;
	justify-content: center;
}

.radio-button {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.radio-button__input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.radio-button__label {
	display: inline-block;
	padding-left: 30px;
	position: relative;
	font-size: 21px;
	color: var(--color-body);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.radio-button__custom {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) scale(1.6);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #555;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.radio-button__input:checked+.radio-button__label .radio-button__custom {
	transform: translateY(-50%) scale(1.6);
    color: #353332;
    /* background-color: rgb(13, 110, 253); */
    border: 5px solid rgb(13, 110, 253);
}

.radio-button__input:checked+.radio-button__label {
	color: #404341;
} 

.radio-button__label:hover .radio-button__custom {
	transform: translateY(-50%) scale(1.2);
	border-color: #4c8bf5;
	box-shadow: 0 0 10px #4c8bf580;
}


/* radio button end */

/* form */
.formSection {
	margin-bottom: 30px;
}

.form-control {
	padding: 12px 10px;
	border: 0px;
    border-bottom: 1px solid #a5a5a5;
	border-radius: 0px;
	font-size: 20px;
}
.form-label{
	color: #316a8d;
    font-size: 24px;
	padding-top: 9px;
}
.accordion-body {
    padding: 0;
	/* padding-top: 25px; */
}
.accordion-item {
	border: 0;
	padding: 0px;
	margin: 0;
}

.accordion-button {
	color: var(--color-body);
	box-shadow: unset;
	font-weight: 600;
	align-items: center;
    background: #d8eaf9;
	padding: 10px;
}

.accordion-button:hover {
	z-index: 2;
	background-color: white;
	/*background-color: var(--color-primary);*/
}

.accordion-button:not(.collapsed), .accordion-button.collapsed 
 {
	/* color: #fff;*/
    background-color: #ffffff; 
     box-shadow: unset;
	font-size: 24px;
	color:var(--color-primary);
    border-radius: 10px;
	background: #e7e7e7;
    padding: 18px;
}

.accordion-item:first-of-type .accordion-button {
	border-top-left-radius: calc(.25rem - 1px);
	border-top-right-radius: calc(.25rem - 1px);
}

i.logobanner img {
	width: 130px;
}


/*Front page card start */

.booking-card {
	position: relative;
	border-radius: 8px;
	border: 2px solid #fed7aa;
	overflow: hidden;
	cursor: pointer;
  }
  
  .booking-content {
	background-color: #fff7ed;
	padding: 9px;
  }
  
  .booking-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
  }
  
  .date-info {
	display: flex;
	flex-direction: column;
  }
  
  .date {
	font-weight: 500;
    color: #1f2937;
    margin: 0;
    font-size: 21px;
  }
  
  .year {
	font-size: 16px;
	color: #000000;
	margin: 0;
	text-align: left;
  }
  
  .clock-icon {
	color: #ea580c;
  }

  .close-icon {
	color: #dc2626;
  }
  .tick-icon {
	color: #16a34a;
  }
  .clock-icon .icon {
	height: 20px;
	width: 20px;
  }
  
  .status-label {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #ea580c;
  }
  
  .status-label span {
	font-size: 16px;
	font-weight: 300;
  }
  
  .progress-container {
	margin-top: 0px;
  }
  
  .progress-header {
	display: flex;
	justify-content: space-between;
	font-size: 18px;
	color: #4b5563;
	margin-bottom: 4px;
  }
  
  .progress-bar {
	width: 100%;
	height: 8px;
	border-radius: 9999px;
	background-color: #ffedd5;
  }
  
  .progress-fill {
	height: 100%;
	width: 85%;
	border-radius: 9999px;
	background-color: #f97316;
	transition: all 0.3s ease;
  }
  
  .closing-time {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 500;
	color: #ea580c;
  }
  
  .book-button {
	width: 100%;
	padding: 8px 0;
	background-color: white;
	font-size: 20px;
	font-weight: 500;
	color: #16a34a;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  

 /*front page card end */ 


/* responsive css*/


@media (min-width: 768px) {

	.container,
	.container-md,
	.container-sm {
		/*max-width: 890px;*/
		max-width: 1300px;
	}
}


/*@media (max-width: 600px) {
	body {
		/*background-image: url('../images/mobile_body_bg.png');
	}

	
}*/

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
	background:#f9fafb;
	padding:1rem;
}

@media (min-width: 800px) {

	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 900px;
		background:#f9fafb;
		padding:1rem;
	}
}

.confirmation_detail {
	/*display: flex;*/
	justify-content: center;
}

.confirmation_detail_button
{
	color: #ffffff;
	background: #0297D7;
	font-size:28px;
	padding:18px;
	width: 50%;
}

@media (max-width: 900px) {     /* 900 * 0.7 meta tag viewport size,  only work less than screen size 630 */
	.navbar.navbar-light.bg-light {
        display: none !important;
    }

	 
	.row-cols-1 >* {
		flex: 0 0 auto;
		width: 33.33%;
	}

	.header h1 {
		color: var(--color-primary);
		text-align: center;
		font-weight: 500;
		font-size: 25px;
		padding: 30px 0px;
		margin: 0px;
		border-bottom: solid 1px #CACACA;
	}

	.row>*  {
		padding-right: 0px;
	}

	.mb-3
	{
		margin-bottom: 0px !important;
	}
	 
	.confirmation_detail
	{
		display: block;
	}
	.confirmation_detail_button
	{
		width: 100%;
	}
	
}

.registr_top_radio
{
	padding: 10px;
}

textarea:focus, input:focus{
    outline: none;
}

*:focus {
    outline: none;
}
.form-control:focus
{
	border-color:unset;
	box-shadow:unset;
}

.star_required{
	color: #D70003; 
	font-size: 25px
}

@media (max-width: 900px) {     /* 900 * 0.7 meta tag viewport size,  only work less than screen size 630 */
	.accordion-collapse{
		width: 97%;
	}
}

 
