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

:root{
	--primary: #06345B;
	--secondry: #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;
  --card-background: #F7F8FC;
  --card-text: #6F6C90;
}

body{
    font-family: 'Roboto', sans-serif !important;

}

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

  } */

.container_fluid{
    max-width: 1300px;
    width: 100%;
    margin: 0px auto;
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
    gap: 100px;
    /* margin-bottom: 40px; */
}

.container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.initial_doc_terms{
  display: flex;
  justify-content: center;
  margin: 0px auto;
  padding-top: 10px;
  text-align: center;
}

.initial_doc_terms label{
  font-size: 14px;
  color: var(--card-text);
}

.hero_section .left_flex{
    flex: 35%;
    max-width: 100%;
}

.hero_section .right_flex{
    margin: 10px 0px 0px 0px;
    flex: 65%;
}

.title{
    color: var(--primary);
}

.title span{
    color: var(--secondry);
}

.title h1{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 7px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.title h2{
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.title .element{
    /* font-size: 32px; */
    font-weight: 600;
    letter-spacing: 1.5px;
    text-align: center;
}

.left_flex {
  /* display: flex; */
  flex-direction: row;
  align-items: center;
  justify-content: space-between; /* automatically adjusts gap */
  gap: 250px; /* optional: provides minimal base gap */
  flex-wrap: nowrap; /* allows wrapping on small screens */
  padding: 10px 20px;
}

.nav_logo img {
  max-width: 180px;
  height: auto;
}

/* --- Responsive behavior --- */
@media (max-width: 768px) { /* tablets */
  .left_flex {
    justify-content: center;
    gap: 60px; /* slightly smaller gap */
  }

  .nav_logo img {
    max-width: 150px;
  }
}

@media (max-width: 480px) { /* mobile */
  .left_flex {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .nav_logo img {
    max-width: 120px;
  }
}


.title_description{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.des_element span{
    width: 20px;
}

.des_element span i{
    color: var(--primary);
}

.title_insurer_logo{
  display: flex;
  align-items: center;
  gap: 30px;
}

.insurer_logo{
  width: 100px;
}

.insurer_logo img{
  width: 100%;
}

/* ========== 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: 0px;
    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;
}
/* ============ multi step form ========= */

.custom-line {
  height: 2px; /* Set the height of the line */
  background-color: var(--progress-bar); /* Set the color of the line */
  width: 100%; /* Set the width of the line (optional) */
  margin: 16px 0 30px 0px; /* Add margin for spacing (optional) */
}

.steps_heading{
	margin: 10px auto;
	display: flex;
	justify-content: center;
}

.steps_heading h2{
	font-size: 20px;
	font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.step_count_title{
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.wrapper .header{
	/* margin-bottom: 45px; */
	display: flex;
	justify-content: center;
}

.wrapper .header ul{
	display: flex;
}

.wrapper .header ul li{
	margin-right: 70px;
	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: 45px;
	width: 60px;
	height: 8px;
	border-radius: 5px;
	background: var(--progress-bar);
  /* background: linear-gradient(to right, var(--secondary) 50%, var(--progress-bar) 50%); */
}

.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: 30px;
	height: 30px;
	background: var(--progress-bar);
	color: var(--primary);
	text-align: center;
	line-height: 30px;
	font-size: 14px;
  font-weight: 600;
	border-radius: 50%;
}

.wrapper .header ul li.active:before{
	background: linear-gradient(to right, var(--secondary) 50%, var(--progress-bar) 50%);
}

.wrapper .header ul li.completed:before {
  background: var(--secondary); /* Fully filled for completed bars */
}

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

/* step 1 */

/* trip detail row */

.form_container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trip_details{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trip_det_row{
    display: flex;
    align-items: center;
    gap: 40px;
}

.trip_det_col_1{
    width: 150px;
}

.trip_det_col_2{
    width: 100%;
}

/* Radio Button style start here */

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


  .radio_btn .option{
  width: 220px;
	background: #fff;
	display: flex !important;
	align-items: center;
	justify-content: space-evenly;
	/* margin-left: 10px; */
	border-radius: 5px;
	cursor: pointer;
	padding: 8px 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: var(--secondary);
	border-radius: 50%;
	opacity: 0;
	transform: scale(1.5);
	transition: all 0.3s ease;
  }
  input[name="select"]{
	display: none;
  }
  #option-1:checked:checked ~ .option-1,
  #option-2:checked:checked ~ .option-2{
	border-color: var(--secondary);
	/* 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(--placeholder-color);
	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 */



/* sort by */

.choose_plan_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sort-container {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fc, #e6ebf5);
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #d1d9e6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    width: fit-content;
    gap: 12px;
    margin-left: auto;
    margin-right: 9px;
  }
  
  /* Individual fields inside the sort container */
  .sort-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  
  .sort-field label {
    font-weight: 600;
    font-size: 13px;
    color: #333;
  }

   /* Select policy on step 2*/

   .selected-policy{
    background-color: #f0e6f6 !important;
  }
  
  /* Dropdown styling */
  .sort-content {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 6px 12px;
    border: 1px solid #c7d1ff;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.08);
    transition: 0.2s ease-in-out;
  }
  
  /* Hover and Focus Effects */
  .sort-content:hover {
    border-color: #4f6ef7;
    box-shadow: 0 0 6px rgba(79, 110, 247, 0.2);
    transform: translateY(-1px);
  }
  
  .sort-content select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    outline: none;
    width: 100%;
    cursor: pointer;
  }


  /* --- traveller_row --- */

  .traveller_row{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .traveller_col{
    width: 260px;
  }

.traveller_col:last-child{
  margin-right: 50px;
}

  .common_btns.form_1_btns label{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }

  /* ========== traveller date row ============== */
  .traveller_date_row{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* ============================= Custom CSS for Select2 dropdown ============================= */
.select2-container--default .select2-selection--multiple {
  border: 2px solid var(--border-color) !important;
  border-radius: 4px !important;
  padding: 5px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4 !important;
  border: 2px solid var(--border-color) !important;
  border-radius: 4px !important;
  padding: 2px 5px !important;
  margin: 3px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999 !important;
  margin-right: 5px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333 !important;
}

.select2-container .select2-search--inline .select2-search__field{
  margin: 3px !important;
}
.flag-icon {
  margin-right: 5px;
}
/* stepper 3rd page design */

.wrapper .form_wrap .input_wrap{
  flex: 1 !important;
}

.wrapper .form_wrap .sm_input{
  flex: none !important;
}

.dob_date{
  padding: 11px;
  width: 130px;
}

/* ========== others button colapsible */
.collapsible{
  padding: 5px;
  background: var(--back-btn-hover);
} 

.collapsible:hover{
  background-color: var(--secondry);
}

.content_collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  /* background-color: #f1f1f1; */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* summery card design */

.card-container{
  margin: 40px 0px 0px 10px !important;
}

.card-container .card{
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card-background);
  padding: 10px 20px;
  border-radius: 10px;
  width: 350px;
}

.card-container .card .card-title{
  color: var(--primary);
  text-align: center;
}

.card-container .card .card-tabs .tab-button {
  background-color: var(--primary) !important;
  padding: 5px 0px;
  border-radius: 0px;
  width: 100%;
}

.card-container .card .card-details{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-container .card .card-details .detail-item{
  display: flex;
  gap: 5px;
}

.card-container .card .card-details .detail-item .detail-value{
  color: var(--card-text);
  font-weight: 500;
}

.card-container .card .card-details .detail-item .icon{
  color: var(--primary);
}

.card-container .card .card-details .detail-item span{
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.card-container .card .card-details .two_column{
  display: flex;
  justify-content: space-between;
  text-align: start;
}

.card-details .two_column .two_column_1{
  flex: 2%;
}

.card-details .two_column .two_column_2{
  flex: 40%;
}

.card-details .two_column .two_column_3{
  flex: 40%;
}

.custom-line-sum{
  height: 2px; /* Set the height of the line */
  background-color: var(--progress-bar); /* Set the color of the line */
  width: 100%; /* Set the width of the line (optional) */
  margin: 5px 0px;
}

.toggle-container{
  padding-top: 10px;
}

.image_container{
  display: flex;
  margin: 0px auto;
  justify-content: center;
  align-items: center;
  width: 300px;
  padding: 30px 0px;
}

.image_container img{
  width: 300px !important;
}


  /* ================== partner logo ================= */

.isurer_logo{
    width: 1200px;
    margin: 0px auto;
}

.img_insurer img{
    width: 140px;
    height: 58px;
}

/* ================ REQUIRED INSURER  =================== */
.required_insurence{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.required_insurence .container{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.required_insurence .card{
  width: 100%;
  height: 100px;
  background-color: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 5px;
}

.required_insurence .card i{
  font-size: 30px;
}

.required_insurence .card h2{
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.required_insurence .card p{
  font-size: 16px;
  font-weight: 500;
  color: var(--card-text);
}

.required_insurence .container > .card:nth-child(3){
  background-color: #FEF0EB;
}

.required_insurence .container > .card:nth-child(5){
  background-color: #E6EAEF;
}

.required_insurence .item_card{
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
}

.required_insurence .item_card .item_col{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
}

.item_card .item_col .item{
  padding: 10px 20px;
  background-color: #ffff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--card-text);
}

/* ================ INSURER DETAILS =================== */
.insurer_card{
  width: 302px;
  height: 340px;
  border-radius: 15px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insurer_card .insurer_card_head{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.insurer_card_head .insurer_img img{
  width: 100px;
  height: 40px;
  object-fit: contain;
}

.insurer_card_head .insurer_price p{
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.insurer_price span{
  color: var(--secondry);
}

.insurer_card_body{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insurer_card_body .body_row{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.insurer_card_body h4{
  font-size: 13px;
  font-weight: 550;
  color: var(--primary);
}

.insurer_card_body p{
  font-size: 12px;
  font-weight: 500;
  color: var(--card-text);
}

.insurer_card_body .insure_card_btn{
  display: flex;
  justify-content: end;
}

.insure_card_btn a{
  border: 1px solid var(--secondry);
  font-size: 14px;
  color: var(--secondry);
  width: 100%;
  text-align: center;
  padding: 7px ;
  border-radius: 4px;
  transition: 0.5s ease;
}

.insure_card_btn a:hover{
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  cursor: pointer;
}

  /* ================== How it works ================= */

  .process{

  }

   /* ================== why choose multi-trip ================= */

.why_choose_multitrip_travel_insurance {
    overflow: hidden;
}

.multiTripSliderViewport {
    overflow: hidden;
    width: 100%;
}

.multiTripSlider {
    display: flex;
    gap: 20px;
    transition: transform 1.5s ease;
}

.multiTripFeature {
    flex: 0 0 calc(33.33% - 15px); /* 3 items fully visible at a time */
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: #ffff; */
    padding: 15px;
    border-radius: 5px;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
}

/* Tick Icon Style */
.multiTripFeature i{
    color: var(--primary);
    font-size: 30px;
    /* display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    flex-shrink: 0; */
}

  /* ================== what_can_go_wrong ================= */

  .what_can_go_wrong{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .what_can_go_wrong .card__header{
    width: 200px;
    height: 132px;
    background-color: white;
  }

  .what_can_go_wrong img {
    max-width: 100%; /* Ensure the image doesn't exceed the container's width */
    max-height: 100%; /* Ensure the image doesn't exceed the container's height */
    object-fit:contain;
    /* box-shadow: 3px 3px 10px #6e6e6f; */
    border: 1px solid #e5e8f3;
    border-radius: 6px;
  }
  
  .what_can_go_wrong .card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 414px; 
    height: 329px;
    overflow: hidden;
    /* box-shadow: 0 .1rem 1rem rgba(0, 0, 0, 0.1); */
    border-radius: 15px;
    background: var(--card-background);
  
  }
  
  
  
  .what_can_go_wrong .card__body {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
  
  
  .what_can_go_wrong .tag {
    align-self: flex-start;
    padding: .25em .75em;
    border-radius: 1em;
    font-size: .75rem;
  }
  
  .what_can_go_wrong .tag + .tag {
    margin-left: .5em;
  }
  
  .what_can_go_wrong .tag-blue {
    background: #56CCF2;
  background: linear-gradient(to bottom, #2F80ED, #56CCF2);
    color: #fafafa;
  }
  
  .what_can_go_wrong .tag-brown {
    background: #D1913C;
  background: linear-gradient(to bottom, #FFD194, #D1913C);
    color: #fafafa;
  }
  
  .what_can_go_wrong .tag-red {
    background: #cb2d3e;
  background: linear-gradient(to bottom, #ef473a, #cb2d3e);
    color: #fafafa;
  }
  
  .what_can_go_wrong .card__body h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
  }
  
  .what_can_go_wrong .card__body p{
    font-size: 14px;
    font-weight: 500;
    color: var(--card-text);
}

  .what_can_go_wrong .card__footer {
    display: flex;
    padding: 1rem;
    margin-top: auto;
  }
  
  .what_can_go_wrong .user {
    display: flex;
    gap: .5rem;
  }
  
  .what_can_go_wrong .user__image {
    border-radius: 50%;
  }
  
  .what_can_go_wrong .user__info > small {
    color: #666;
  }
  /* ========== WHO NEEDS MULTI-TRIP ===========  */
.grey_container{
  background-color: var(--card-background);
  margin: 70px 0px;
  padding: 70px 0px;
}

.who_needs_multi_trip{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.who_needs_multi_trip .card{
  width: 320px;
  height: 200px;
  background-color: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border-radius: 5px;
}

.who_needs_multi_trip .card i{
  font-size: 30px;
}

.who_needs_multi_trip .card h2{
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.who_needs_multi_trip .card p{
  font-size: 14px;
  font-weight: 500;
  color: var(--card-text);
}

  /* ========== MULTI TRIP OPTION INSURANCE ===========  */

  .multi_trip_option{
    width: 1200px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .multi_trip_option .img_insurer img{
    width: 200px;
    height: 70px;
  }

  .multi_btn a{
    padding: 10px 20px;
    background: var(--secondry);
    color: var(--white);
    border-radius: 5px;
    transition: 0.5s ease;
  }

  .multi_btn a:hover{
    background: var(--primary);
  }


  /* ========== MULTI TRIP OPTION INSURANCE ===========  */

  .contact_us{
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .contact_us_container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1000px;
    margin: 0px auto;
  }

  .contact_us .contact_left{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
  }

  .contact_us .contact_left .img_contact{
    width: 300px;
  }

  .img_contact img{
    width: 100%;
  }

  .contact_left p{
    font-size: 14px;
    font-weight: 500;
    color: var(--card-text);
    text-align: center;
  }

  .contact_us .contact_right{
    flex: 1;
    display: flex;
    align-items: center;
  }
  
  .contact_us .contact_right form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 30px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: 350px;
  }


  .contact_right input {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.contact_right button {
    padding: 10px 20px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

  /* ========== pdf modal style starts ===========  */

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index:  1050;
  }
  
  .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    position: relative;
    outline: 0;
  }
  
  .modal-content iframe {
    flex-grow: 1;
    border: none;
  } 


/* zoomIN and zoomOut */
.zoom-controls {
    margin: 10px 0;
    text-align: center;
}

#zoomLevel{
  margin: 0 10px;
  border: 2px solid var(--primary);
  font-size: 14px;
  padding: 2px;
}

.zoom-button {
    padding: 5px 10px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.zoom-button:hover {
    background-color: var(--secondry);
}

  /* ========== pdf modal style ends ===========  */
  footer table td span, footer table td div, footer table tr td span a{
    color: #E0E0E0;
  }


  /* ============= langauge selection modal ========== */
  .language_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language_modal {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

#language-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.language_modal h2 {
    font-size: 21px;

}

#language-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: left;
    justify-content: flex-start;
}

#language-form button[type="submit"] {
    margin-top: 1rem;
    padding: 10px 20px;
    background-color: #12355b;
}


/* Review and Pay page design starts here */

.review_box_1{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review_row{
  display: flex;
  flex-direction: row;
  gap: 40px;
  border: 1px solid #EFF0F6;
  padding: 5px 10px;
}

.review_row input{
  width: 100%;
  padding: 5px 10px;
  border: none;
}


#traveler1_section h3{
  padding: 20px 10px;
  color: #06345B;
}

.review_box_tr tbody{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tr_review_row {
  padding: 5px 10px;
  border: 1px solid #EFF0F6;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.tr_review_row > td {
        flex: 1;
        padding: 0;
        border: none;
    }

    /* next btn loader css */

        .loader_button {
            margin-left: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            position: relative;
            animation: rotate 1s linear infinite
        }

        .loader_button::before,
        .loader_button::after {
            content: "";
            box-sizing: border-box;
            position: absolute;
            inset: 0px;
            border-radius: 50%;
            border: 3px solid #FFF;
            animation: prixClipFix 2s linear infinite;
        }

        .loader_button::after {
            border-color: #FF3D00;
            animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
            inset: 6px;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg)
            }

            100% {
                transform: rotate(360deg)
            }
        }

        @keyframes prixClipFix {
            0% {
                clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
            }

            25% {
                clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
            }

            50% {
                clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
            }

            75% {
                clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
            }

            100% {
                clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
            }
        }
