

:root{
	--primary: #06345B;
	--secondary: #E86020;
	--white: #fff;
	--text-clr: #5b6475;
	--header-clr: #25273d;
	--next-btn-hover: #8577d2;
	--back-btn-hover: #8b8c8c;
	--progress-bar: #EFF0F6;
	--border-color: #EFF0F6;
	--light-grey: #EFF0F6;
	--placeholder-color:757575;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	list-style: none;
	outline: none;
	text-decoration: none;
}

body{
    font-family: 'Roboto','Montserrat' , sans-serif;
    font-weight: 400;

	/* background style */
	/* background-color: #fff; */
    /* background-image: url(../img/background_travel_skin.jpg);  */
	background-repeat: no-repeat;
    background-size: cover;
}

body::after {
    content: "";
    display: block;
    position: fixed;
    inset: 0;
    /* background-color: white; Change the alpha value to adjust the opacity */
    z-index: -1;
	opacity: 0.95;
	filter: blur(0px);

  }

.container_nav{
    width: 100%;
    max-width: 2200px;
    margin: 0 auto;
    padding: 30px 0;
}

.container_fluid{
    width: 100%;
    max-width: 2200px;
    margin: 0 auto;
    padding: 0;
}

.container{
    max-width: 100%;
    width: 1600px;
    margin: 0 auto;
    padding: 0px;
}

.navbar{
    padding: 0px 100px;
    display: flex;
    justify-content: space-between;
}

.nav_left h2{
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav_right .social_icons{
    color: var(--primary);
    font-size: 21px;
}

.nav_right .social_icons i{
    padding-left: 5px;
}

/* Multi-step form starts here */

.steps_heading{
	/* width: 1000px; */
	/* max-width: 100%; */
	margin: 20px auto;
	display: flex;
	justify-content: center;
}

.steps_heading h2{
	font-size: 34px;
	font-weight: 600;
}

.wrapper{
	/* width: 80%; */
	/* max-width: 100%; */
	/* background: var(--white);
	margin-top: 10px;
	padding: 20px 30px;
	border-radius: 10px; */
	/* box-shadow: 0px 4px 20px 0px #080F340F; */
	/* box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 10px; */
	/* border: 1px solid #bababa; */
}

.wrapper .header{
	
	display: flex;
	justify-content: center;
}

.wrapper .header ul{
	display: flex;
}

.wrapper .header ul li{
	position: relative;
}

.wrapper .header ul li:last-child{
	margin-right: 0;
}

.wrapper .header ul li:before{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 35px;
	width: 60px;
	height: 3px;
	border-radius: 5px;
	background: var(--progress-bar);
	/* display:none; */
}

.wrapper .header ul li:last-child:before{
	display: none;
}

.wrapper .header ul li div{
	padding: 5px;
	border-radius: 50%;
}

.wrapper .header ul li p{
	width: 25px;
	height: 25px;
	background: var(--progress-bar);
	color: var(--primary);
	text-align: center;
	line-height: 25px;
	font-size: 12px;
	border-radius: 50%;
}

.wrapper .header ul li.active:before{
	background: var(--secondary);
	/* display:none; */
}

.wrapper .header ul li.active p{
	background: var(--secondary);
	color: var(--white);
}

.wrapper .form_wrap{
	/* margin-bottom: 35px; */
}

.wrapper .form_wrap h2{
	color: var(--primary);
	font-size: 20px;
	/* text-align: center; */
	/* text-transform: uppercase; */
	/* margin-bottom: 20px; */
}

.note{
	padding-top: 20px;
}

.note p{
	font-size: 12px;
	color: var(--text-clr);
}

.wrapper .form_wrap .sub_head{
	margin: 10px 0px 20px 0px;
	font-weight: 700;
	color: var(--primary);
	border-bottom: 2px solid var(--secondary);
	padding-bottom: 2px;
	width: 90px;
	font-size: 16px;
}

.wrapper .form_wrap .input_wrap{
	/* width: 500px; */
	/* max-width: 100%; */
	/* margin: 0 auto 20px; */
	/* padding-bottom: 10px; */
}

.wrapper .form_wrap .radio_row{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wrapper .form_wrap .input_wrap .radio_btn label{
	margin-bottom: 0px !important;
	margin-right: 20px;
}

.wrapper .form_wrap .input_wrap:last-child{
	margin-bottom: 0;
}

.wrapper .form_wrap .input_wrap label{
	display: block;
	margin-bottom: 10px;
	color: var(--primary);
}

.wrapper .form_wrap .input_wrap .input{
	border: 2px solid var(--light-grey);
	border-radius: 3px;
	padding: 10px;
	display: block;
	width: 100%;	
	font-size: 15px;
	transition: 0.5s ease;
}

.wrapper .form_wrap .input_wrap .input:focus{
	border-color:  #d2d0d0;
}

.wrapper .btns_wrap{
	/* width: 350px; */
	/* max-width: 100%; */
	margin: 0 auto;
	padding-top: 20px;
}

.wrapper .btns_wrap .common_btns{
	display: flex;
	justify-content: flex-end;
}

.wrapper .btns_wrap .common_btns.form_1_btns{
	justify-content: flex-end;
}

.wrapper .btns_wrap .common_btns button{
	border: 0;
	padding: 10px 15px;
	background: var(--secondary);
	color: var(--white);
	width: 250px;
	justify-content: center;
	display: flex;
	align-items: center;
	font-size: 14px;
	border-radius: 8px;
	transition: 0.5s ease;
	cursor: pointer;
}

.wrapper .btns_wrap .common_btns button.btn_back{
	/* background: var(--primary); */
	margin-right: 20px;
}

.wrapper .btns_wrap .common_btns button.btn_next .icon{
	display: flex;
	margin-left: 10px;
}

.wrapper .btns_wrap .common_btns button.btn_back .icon{
	display: flex;
	margin-right: 10px;
}

.wrapper .btns_wrap .common_btns button.btn_next:hover,
.wrapper .btns_wrap .common_btns button.btn_done:hover{
	background: var(--primary);
}

.wrapper .btns_wrap .common_btns button.btn_back:hover{
	background: var(--primary);
}

.modal_wrapper{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
}

.modal_wrapper .shadow{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	opacity: 0;
	transition: 0.2s ease;
}

.modal_wrapper .success_wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-800px);
	background: var(--white);
	padding: 50px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	transition: 0.5s ease;
}

.modal_wrapper .success_wrap .modal_icon{
	margin-right: 20px;
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 700;
}

.modal_wrapper.active{
	visibility: visible;
}

.modal_wrapper.active .shadow{
	opacity: 1;
}

.modal_wrapper.active .success_wrap{
	transform: translate(-50%,-50%);
}


/* Radio Button style start here */


.radio_btn{
	display: flex;
	background: #fff;
	align-items: center;
	/* justify-content: space-between; */
  }


  .radio_btn .option{
	background: #fff;
	display: flex !important;
	align-items: center;
	justify-content: space-evenly;
	/* margin-left: 10px; */
	border-radius: 5px;
	cursor: pointer;
	padding: 10px 20px;
	border: 2px solid var(--border-color);
	transition: all 0.3s ease;
  }
  .radio_btn .option .dot{
	height: 20px;
	width: 20px;
	background: var(--border-color);
	border-radius: 50%;
	position: relative;
  }
  .radio_btn .option .dot::before{
	position: absolute;
	content: "";
	top: 4px;
	left: 4px;
	width: 12px;
	height: 12px;
	background:#12355b;
	border-radius: 50%;
	opacity: 0;
	transform: scale(1.5);
	transition: all 0.3s ease;
  }
  input[name="select"]{
	display: none;
  } 

  input[name="select_travel_to"]{
	display: none;
  }
  #option-1:checked:checked ~ .option-1,
  #option-2:checked:checked ~ .option-2{
	border-color: #d2d0d0;
	/* background: #0069d9; */
  }
  #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);
  }
  .radio_btn .option span{
	font-size: 14px;
	/* color: var(--primary); */
	padding-left: 10px;
  }
  #option-1:checked:checked ~ .option-1 span,
  #option-2:checked:checked ~ .option-2 span{
	/* color: var(--secondary); */
  }

/* Radio Button style ends here */
#every_country:checked:checked ~ .every_country,
#schengen_countries:checked:checked ~ .schengen_countries{
	border-color: #d2d0d0;
	
}

#every_country:checked:checked ~ .every_country .dot::before,
#schengen_countries:checked:checked ~ .schengen_countries .dot::before{
opacity: 1;
transform: scale(1);
}

/* Select Button style start here */

li {
	list-style: none;
}

.select {
	/* max-width: 300px; */
	width: 100%;
	position: relative;
}
.custom-select {
	width: 100%;
	padding: 10px 20px;
	border: 2px solid var(--light-grey);
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all .3s ease;
	grid-gap: 10px;
}
.custom-select * {
	pointer-events: none;
}
.select.show .custom-select {
	background: var(--light-grey);
}
.custom-select span {
	display: block;
}
.custom-select .label {
	font-size: 10px;
	font-weight: 600;
	color: var(--grey);
}
.custom-select .value {
	display: flex;
	align-items: center;
	grid-gap: 10px;
	font-size: 14px;
}
.custom-select i {
	transition: all .3s ease;
}
.select.show .custom-select i {
	transform: rotateZ(180deg);
}
.option_drop {
	position: absolute;
	top: calc(100% + 10px);
	max-height: 0;
	overflow-y: hidden;
	width: 100%;
	transition: all .3s;
	z-index: 500;
	background: #fff;
}
.select.show .option_drop {
	max-height: 260px;
}
.custom-option {
	border-radius: 10px;
	border: 2px solid var(--light-grey);
	padding: 10px 0;
	width: 100%;
	max-height: 260px;
	overflow-y: auto;
	scrollbar-width: none; /* For firefox */
}
.custom-option::-webkit-scrollbar {
	display: none; /* For chrome browser */
}
.custom-option li {
	padding: 10px 10px 10px 24px;
	display: flex;
	align-items: center;
	grid-gap: 10px;
	transition: all .3s ease;
	cursor: pointer;
}
.custom-option li:hover {
	background: var(--light-grey);
	color: var(--primary);
}

/* Select Button style ends here */


.input_wrap .select_sum{
	width: 314px;
	padding: 10px 20px;
	border: 2px solid var(--light-grey);
	border-radius: 5px;
	display: flex;
	/* justify-content: space-between; */
	align-items: center;
	overflow: hidden;
}
.input_wrap .select_sum select{
	overflow: hidden;
}

.input_wrap .select_sum label{
	margin-bottom: 0px !important;
	/* margin-right: 10px; */
	font-size: 14px;
	color: var(--text-clr) !important;
}

.input_wrap select{
	/* padding: 5px 10px; */
	border: none;
	border-radius: 5px;
	font-size: 14px;
}


/* Date button style starts here */

.date_row{
	display: flex;
	align-items: end;
	justify-content: space-between;
	/* justify-content: space-between; */
}

.del_date_col{
	display: flex;
	gap: 10px;
}

.date_col{
	display: flex;
	align-items: center;
	padding: 6px 10px;
	border: 2px solid var(--light-grey);
	border-radius: 5px;
	width: 290px;

}

.wrapper .form_wrap .input_wrap .date_col label{
	margin-bottom: 0px;
	margin-right: 10px;
	font-size: 14px;
	color: var(--primary);
	font-weight: 600;
	width: 80px;
}

.wrapper .form_wrap .input_wrap .date_col input{
	/* padding: 5px 10px; */
	/* border: 2px solid var(--light-grey); */
	border: none;
	border-radius: 5px;
	width: 100%;
	color: var(--placeholder-color);
	/* font-family: 'Inter', sans-serif; */
}

/* Travel Select */

.travellers{
	display: flex;
	align-items: center;

	padding: 5px 10px;
	border: 2px solid var(--light-grey);
	border-radius: 5px;
	/* width: 140px; */
}


.wrapper .form_wrap .input_wrap .travellers label{
	margin-bottom: 0px;
	margin-right: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
}

.wrapper .form_wrap .input_wrap .travellers select{
	padding: 5px 10px;
	border: none;
	border-radius: 5px;
	width: 100%;
}

.travel_box_2, .travel_box_3, .travel_box_4{
	display: none;
	margin-top: 20px;
}

/* Date button style ends here */

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

.textField{
	font-size: 14px;
}

.passport_btn{
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.y_n{
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.y_n label{
	margin-bottom: 0px !important;
	margin-left: 5px
}


/* Trip Details ends here */


/* Choose Plan style starts here */

.plan_cards{
	display: flex;
	align-items: center;
	width: 100%;
	border: 1px solid #EFF0F6;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
	border-radius: 5px;
	padding: 20px ;
	margin-top: 20px;
}

.cards_col1{
	/* flex: 1; */
	padding-right: 20px;
}

.cards_col2{
	flex: 2;
}

.card_head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* width: 100%; */
}

.card_head h3{
	color: var(--secondary);
	margin-right: 20px;
	font-size: 16px;
	font-weight: 400;
}

.card_head .select_sum{
	padding: 0px 10px;
	border: 2px solid var(--light-grey);
	border-radius: 5px;
}

.card_head label{
	margin-bottom: 0px;
	/* margin-right: 10px; */
	font-size: 12px;
	color: var(--text-clr);
}

.card_head select{
	padding: 5px 10px;
	border: none;
	border-radius: 5px;
	font-size: 12px;
}

.card_head .price{
	/* padding-left: 240px; */
	display: flex;
}

.card_head .price .price_text{
	padding: 5px 10px;
	border: 2px solid var(--secondary);
	border-radius: 5px;
	font-size: 12px;
	color: var(--secondary);
	margin-right: 10px;
}

/* buy button design starts here */


.card_head .price .price_btn{
	display: flex;
	align-items: center;
	/* padding: 5px 10px; */
	border: 2px solid var(--secondary);
	color: var(--secondary);
	border-radius: 5px;
	font-size: 12px;
}

.price_btn label span {
	text-align: center;
	padding: 5px 20px;
	display: block;
  }

.card_head .price .price_btn label input{
	/* display: none; */
	position: absolute;
  	display: none;
  	color: var(--secondary) !important;
}


.price_btn input:checked + span{background-color: #F75A1B;
	color: #fff;}


/* buy button design ends here */

.card_center p{
	font-size: 14px;
	padding-top: 10px;
}

.card_bottom{
	padding-top: 10px;
}

.card_bottom label{
	font-size: 12px;
}

/* Choose Plan style ends here */

/* Travellers information style starts here */

.input_row{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.input_row .input_wrap:not(:last-child){
	/* padding-right: 20px; */
}

.input_row .date_col label{
	margin-bottom: 0px;
	margin-right: 10px;
	font-size: 14px;
	color: var(--text-clr);
}


.input_row .date_col input{
	/* padding: 10px 10px !important; */
	border: 2px solid var(--light-grey);
	border-radius: 5px;
	width: 100%;
}

.relationship select{
	padding: 10px 10px;
	border: 2px solid var(--light-grey);
	border-radius: 5px;
	width: 100%;
}

.gender select{
	padding: 10px 10px;
	border: 2px solid var(--light-grey);
	border-radius: 5px;
	width: 100%;
	cursor: pointer;
}

/* Travellers information style starts here */



/* Review and Pay style starts here */

.review_cards{
	width: 100%;
	border: 2px solid #EFF0F6;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
	border-radius: 5px;
	padding: 20px ;
	margin-top: 20px;
}


.review_cards .input_review{
	display: flex;
	align-items: center;
	padding: 10px 10px;
	border: 1px solid var(--light-grey);
	border-radius: 5px;
	margin-bottom: 10px;
	white-space: nowrap;

}

.review_cards .hidden_price{
	display: none !important;
}

.review_cards .input_review:not(:last-child){
	margin-right: 20px;
}

.review_cards .input_review label{
	margin-bottom: 0px !important;
	/* margin-right: 5px; */
	font-size: 14px;
	color: var(--text-clr);
}

.review_cards .input_review input{
	padding: 0px 10px ;
	border: none ;
	font-size: 14px ;
}


.right_align_btn{
	display: flex;
	justify-content: end;
}

.edit_btn {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white);
    background-color: var(--primary);
    /* border: 1px solid var(--primary); */
    padding: 10px 15px;
    text-align: center;
    border-radius: 3px;
    /* box-shadow: 0px 1px 5px rgb(0 0 0 / 25%); */
    transition: 0.5s;
	width: 135px;
}

.edit_btn:hover {
    color: var(--white);
    /* background-color: var(--secondary); */
    /* border: 1px solid var(--secondary);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25); */
}
/* Review and Pay style ends here */



/* Upload Button design starts here */

  
  
  .wrapper-upload {
	/* width: 100%; */
	/* height: 100%; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px 5px;
  }

  .wrapper .file-upload {
	height: 20px;
	width: 40px;
	border-radius: 5px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	/* border: 4px solid #FFFFFF; */
	overflow: hidden;
	background-image: linear-gradient(to bottom, var(--secondary) 50%, #FFFFFF 50%);
	background-size: 100% 200%;
	transition: all 1s;
	color: #FFFFFF;
	font-size: 100px;
  }
  .wrapper .file-upload input[type=file] {
	height: 20px;
	width: 40px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
  }
  .wrapper .file-upload:hover {
	background-position: 0 -100%;
	color: var(--secondary);
	cursor: pointer;

  }

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

  .file-upload .fa-arrow-up{
	font-size: 12px;
  }

  .success{
	display: none;
  }

/* Upload Button design ends here */



/* Loader Design */

.loader {

	
	height: 100%;
	padding: 40px 0px;
  }

.new_loadanimation_area {
    background: #fbfbfd;
}

.new_loadanimation_top {
    padding: 120px 0px 270px;
    position: relative;
      overflow-x: hidden;
}



.new_loadanimation_top .loadanimation_bg {
    position: absolute;
    bottom: 0;
    background: url("../img/website_bg_modified_2_h266.png") no-repeat center center;
    background-size: cover; /* Ensures the image covers the entire element */
    width: 100vw; /* Makes sure it takes the full viewport width */
    max-width: 100%; /* Ensures it does not exceed the container */
    height: 266px;
    border-radius: 5px;
}


.new_loadanimation_top .loadanimation_bg .loadanimation_bg_one {
    background: url("../img/person_waiting_150x150.gif") no-repeat center center;
    width: 150px;
    height: 150px;
  	background-size:100%;
    position: absolute;
    /* bottom: 0; */
    left: 40%;
    /* -webkit-animation: myfirst 22s linear infinite; */
    /* animation: myfirst 10s linear infinite; */
}

.new_loadanimation_top .loadanimation_bg .loadanimation_bg_two {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
  background-size:100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 15s linear infinite;
}

  
 
  @-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}


  /* massage */

  .massage{
	
  }

  /* toast */

  .toast{
    position: fixed;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-left: 6px solid #ff3333;
    overflow: hidden !important;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
	/* display: none; */
}
.toast.active{
    transform: translateX(0%);
	/* display: block; */
}
.toast .toast-content{
    display: flex;
    align-items: center;
}
.toast-content .check{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: #ff3333;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}
.toast-content .message{
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}
.message .text{
    font-size: 16px;
    font-weight: 400;;
    color: #666666;
}
.message .text.text-1{
    font-weight: 600;
    color: #333;
}
.toast .close{
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}
.toast .close:hover{
    opacity: 1;
}
.toast .progress{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
}
.toast .progress:before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #ff3333;
}
.progress.active:before{
    animation: progress 5s linear forwards;
}
@keyframes progress {
    100%{
        right: 100%;
    }
}
button{
    padding: 12px 20px;
    font-size: 20px;
    outline: none;
    border: none;
    background-color: #4070f4;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover{
    background-color: #0e4bf1;
}
.toast.active ~ button{
    pointer-events: none;
}

button#clearButton {
	
	padding:10px 15px;
	border-radius: 6px;
	color: #828282;
	cursor: pointer;
	transition: background-color 0.3s;
	font-size: 10px;
	white-space: nowrap;
    text-transform: uppercase !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    text-align: center !important;
}

button#clearButton:hover{
	background-color: #12355b !important;
	color: #FFFFFF !important;
	cursor: pointer !important;
}

.ipid_download {
	text-decoration: none !important;
	color: #2b83e3 !important;
	/* border: 1px solid #c2c3c5 !important; */
	padding: 2px 8px !important;
	border-radius: 3px !important;
}

.ipid_download:hover{
	background-color: #0e2e50 !important;
	color: #FFFFFF !important;
}

.ipid_download:hover .ipid_span {
    color: #FFFFFF !important; 
}

.ipid_span:hover {
    color: #FFFFFF !important; 
}

.select-insurance-button:hover{
	background-color: #0e2e50 !important;
	color: #FFFFFF !important;
}

.goog-te-gadget-simple:hover * {
    color: #FFFFFF !important; 
}

.medical_info_section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.medical_info_section h3 {
    margin-bottom: 20px;
    color: #333;
}

.declaration_checkbox {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
}

.declaration_checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.medical_conditions {
    margin: 20px 0;
}

.medical_conditions h4 {
    margin-bottom: 15px;
}

.conditions_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(356px, 1fr));
    gap: 15px;
}

.condition_item {
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
}

.condition_item input[type="checkbox"] {
    width: 34px;
    margin-top: -10px;
}

.condition_details {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff8f8;
    border-radius: 5px;
    border: 1px solid #ffdddd;
}

.condition_details h4 {
    margin-bottom: 15px;
    color: #d32f2f;
}

.condition_details .input_wrap {
    margin-bottom: 15px;
}

.condition_details textarea {
    min-height: 100px;
    resize: vertical;
}

.input_note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}
.required-asterisk {
    color: red;
    margin-left: 2px; /* Small space between label and asterisk */
}