.calendar,  .calendar_2{
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 30px;
    padding: 10px;
    position: relative;
    border: 5px solid #2b5387;
}
.query_popup_open_btn {
    width: 100%;
    text-align: center;
    background: #ff9206;
    cursor: pointer;
    padding: 5px;
    border-radius: 100px;
    color: white;
    font-family: poppins;
    font-size: 16px;
    transition: all .3s;
}
.query_popup_open_btn:hover {
    transform: scale(0.9);
    background: #2b5387;
}
input#checkfront_validation_flag, #rezdy_validation_flag {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
}
span.error-msg-checkfront {
    font-family: 'Poppins';
    color: red;
    position: relative;
    top: 10px;
}
.validate_btn_checkfront {
    margin-bottom: 20px !important;
}

.light .calendar,  .light .calendar_2{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 25px;
    font-weight: 600;
    color: #151426;
}
/* .calendar-body {
    padding: 10px;
} */
.calendar-week-day {
    height: 50px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: 600;
}
.calendar-week-day div {
    display: grid;
    place-items: center;
    color: #2b5387;
}
.calendar-days, .calendar-days-2{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    color: #151426;
}
.calendar-days div, .calendar-days-2 div {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    cursor: pointer;
    animation: to-top 1s forwards;
    margin-left: 12px;
}
.calendar-days div span , .calendar-days-2 div span {
    position: absolute;
}

.calendar-days div span:nth-child(1), .calendar-days div span:nth-child(3) ,.calendar-days-2 div span:nth-child(1), .calendar-days-2 div span:nth-child(3) {
    width: 2px;
    height: 0;
    background-color: #151426;
}
.calendar-days div:hover span:nth-child(1), .calendar-days div:hover span:nth-child(3) , .calendar-days-2 div:hover span:nth-child(1), .calendar-days-2 div:hover span:nth-child(3){
    height: 100%;
}
.calendar-days div span:nth-child(1), .calendar-days-2 div span:nth-child(1) {
    bottom: 0;
    left: 0;
}
.calendar-days div span:nth-child(3), .calendar-days-2 div span:nth-child(3) {
    top: 0;
    right: 0;
}
.calendar-days div span:nth-child(2), .calendar-days div span:nth-child(4) , .calendar-days-2 div span:nth-child(2), .calendar-days-2 div span:nth-child(4) {
    width: 0;
    height: 2px;
    background-color: #151426;
}
.calendar-days div:hover span:nth-child(2), .calendar-days div:hover span:nth-child(4) , .calendar-days-2 div:hover span:nth-child(2), .calendar-days-2 div:hover span:nth-child(4){
    width: 100%;
}
.calendar-days div span:nth-child(2) .calendar-days-2 div span:nth-child(2){
    top: 0;
    left: 0;
}
.calendar-days div span:nth-child(4) , .calendar-days-2 div span:nth-child(4) {
    bottom: 0;
    right: 0;
}
.calendar-days div:hover span:nth-child(2) , .calendar-days-2 div:hover span:nth-child(2){
    transition-delay: 0.2s;
}
.calendar-days div:hover span:nth-child(3), .calendar-days-2 div:hover span:nth-child(3){
    transition-delay: 0.4s;
}
.calendar-days div:hover span:nth-child(4) , .calendar-days-2 div:hover span:nth-child(4){
    transition-delay: 0.6s;
}
.calendar-days div.curr-date, .calendar-days div.curr-date:hover ,.calendar-days-2 div.curr-date, .calendar-days-2 div.curr-date:hover {
    border:1px solid #2b5387;
    border-radius: 50%;
    background-color: #ffffff;
}

.calendar-days div.selected-date, .calendar-days div.selected-date:hover , .calendar-days-2 div.selected-date, .calendar-days-2 div.selected-date:hover{
    background-color: #2b5387;
    color: #fff;
    border-radius: 50%;
}

.calendar-days div.selected-date span , .calendar-days-2 div.selected-date span {
    display: none;
}
.month-picker , .month-picker-2{
    padding: 10px 10px;
    cursor: pointer;
    background-color: #2b5387;
    color: #ffffff;
    border-radius: 22px;
    font-size: 18px;
}
/* .month-picker:hover {
    font-size: 20px;
} */
.year-picker{
    display: flex;
    align-items: center;
    background-color: #2b5387;
    color: #ffffff;
    border-radius: 22px;
    font-size: 18px;
}
.year-change {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 10px;
    cursor: pointer;
}
.year-change:hover {
    font-size: 20px;
}
.calendar-footer {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.toggle {
    display: flex;
}
.toggle span {
    margin-right: 10px;
    color: #151426;
}
.month-list,.month-list-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fdfdfd;
    padding: 20px;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
    display: grid;
    visibility: hidden;
    pointer-events: none;
    border-radius: 30px;
}
.month-list.show , .month-list-2.show {
    transform: scale(1);
    visibility: visible;
    pointer-events: visible;
    transition: all 0.2s ease-in-out;
}
.month-list > div , .month-list-2 > div {
    display: grid;
    place-items: center;
}
.month-list > div > div, .month-list-2 > div > div {
    width: 100%;
    padding: 5px 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    color: #151426;
}
.month-list > div > div:hover , .month-list-2 > div > div:hover {
    background-color: #edf0f5;
}

.calendar span.year-change pre , .calendar_2 span.year-change pre{
    font-size: 0.8em;
}

/* .time_selector {
    width: 100%;
    background-color: #f2f2f2;
    border-radius: 30px;
    padding: 20px 10px;
    margin-top: 14px;
} */

.show-selected-date span {
    text-align: center;
    width: 100%;
    display: block;
    background-color: #2b5387;
    color: #ffffff;
    padding: 9px;
    border-radius: 22px 22px 0px 0px;
}

span.time-slot {
    padding: 9px;
    margin: 7px 0px;
    border-radius: 22px;
    color: #2b5387;
    cursor: pointer;
    text-align: center;
    border: 2px solid #2b5387;
    font-weight: 600;
    display: block;
    width: 24.25%;
    float: left;
    margin-left:1%;
}

/*ancillaries*/
#ancillaries_zt_input span {
    cursor:pointer;
 }

 #ancillaries_zt_input .number {
    margin-bottom: 10px;
}

#ancillaries_zt_input .minus, #ancillaries_zt_input .plus {
    width: 34px;
    height: 39px;
    background: #f2f2f2;
    /* border-radius: 4px; */
    /* padding: 0px 5px 8px 5px; */
    border: unset;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: #2b5387;
    font-size: 24px;
    font-weight: bold;
    line-height: 35px;
}
#ancillaries_zt_input input{
    height: 39px;
    width: 39px;
    text-align: center;
    /* border-radius:4px; */
    display: inline-block;
    vertical-align: middle;
    border: unset;
    background: #f2f2f2;
    color: #2b5387;
    font-size: 20px;
    font-weight: 600;
    outline: unset;
    pointer-events: none;
}

#ancillaries_zt_input .minus {
    border-radius: 20px 0px 0px 20px;
    margin-left: 5px;
}

#ancillaries_zt_input .plus{
    border-radius: 0px 20px 20px 0px;
}
.hidden_field{
 display: none;
}

table#ancillaries_zt_input {
    width: 100%;
    margin-top: 15px;
}

select#package{
    margin-top: -20px;
}
 
#ancillaries_zt_input td {
    padding-bottom: 9px;
    vertical-align: top;
    font-family: "Poppins", Sans-serif;
    width: 33.33%;
}
.fare_ancillaries_zt_main .ancillaries_price_column .zt_calcluted_field {
    width: 135px;
    margin: 0 auto;
  }

span.zt_calcluted_field {
    border: unset;
    background: #f2f2f2;
    color: #2b5387;
    font-size: 20px;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 0px 5px 0px;
    width: 100px;
    display: block;
    text-align: center;
    float: right;
}

/* .ancillaries_price_column {
    float: right;
  } */

input.no_of_people, input#number_of_child {
    height: 39px;
    width: 39px !important;
    text-align: center;
    /* border-radius: 4px; */
    display: inline-block;
    vertical-align: middle;
    border: unset !important;
    background: #f2f2f2 !important;
    color: #2b5387 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    outline: unset;
    border-radius: unset !important;
    margin:unset !important;
    padding: 0px !important;
    pointer-events: none;
}
.no_of_child_main {
    margin-bottom: 0px;
}
span.people-minus {
    width: 34px;
    height: 39px;
    background: #f2f2f2;
    border: unset;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: #2b5387;
    font-size: 24px;
    font-weight: bold;
    line-height: 35px;
    border-radius: 20px 0px 0px 20px;
    margin-left: 20px;
    cursor: pointer;
}

span.people-plus {
    width: 34px;
    height: 39px;
    background: #f2f2f2;
    border: unset;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: #2b5387;
    font-size: 24px;
    font-weight: bold;
    line-height: 35px;
    border-radius: 0px 20px 20px 0px;
    cursor: pointer;
}

.number_of_people_block{
    text-align: right;
}

.jet-form-builder__heading.heading_no_of_field {
    margin-top: 4px;
}

/*end css for ancillaries*/
.slots-field{
    overflow-y: scroll;
    height: 429px;
    padding: 10px;
}
span.time-slot:hover {
    background: #2b5387;
    color:#ffffff;
}

.date_time_selector {
    /* display: flex; */
    margin-top: 10px;
}

.slots-field::-webkit-scrollbar {
    width: .5em;
}
#home_page_sport_filter, #home_page_category_filter, #home_page_exp_filter, #home_page_region_filter{
    display: none;
}
.slots-field::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius:22px;
    display:none
}
 
.slots-field::-webkit-scrollbar-thumb {
    background-color: #2b5387;
    outline: unset;
    border-radius:22px;
    display:none;
}

.make-it-hide-in-calendar{
    height: 1px !important;
    opacity: 0;
}

span.time-slot.selected-time {
    background: #2b5387;
    color:#ffffff;
}

.calendar-day-hover.disabled-date {
    color: gray;
    cursor: not-allowed;
    opacity: 0.4;
}

input:read-only {
    cursor: not-allowed;
}

#zt_loader{
    display:none;
}
#zt_loader_voucher{
    display:none;
}
#voucher_form_on_popup h2 {
    margin: 0;
}

#voucher_form_on_popup {
    padding: 0 20px;
}
#voucher_form_on_popup .jet-sm-gb-wrapper.jet-sm-gb-36ad19dd-5858-4310-89d2-e194eb149d94 {
    display: none;
}
#voucher_form_on_popup .wp-block-columns {
    margin: 0;
}
#voucher_form_on_popup .jet-form-builder__submit-wrap {
    margin: 0;
}
#voucher_form_on_popup .jet-form-builder__field-wrap.checkboxes-wrap.checkradio-wrap {
    margin: 0;
    padding: 0;
}
#voucher_form_on_popup .design_your_voucher {
    padding: 10px 0;
}
.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000000c9;
    z-index: 99;
    border-radius: 15px;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100% !important;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.clear-float{
    clear:both;
}

span.time-slot:nth-child(5n){
    margin-left:unset !important;
}

span.time-slot:nth-child(1){
    margin-left:unset !important;
}

.hide-date-group-field {
    opacity: 0;
    pointer-events: none;
    height: 0;
}


.time_selector {
    border: 2px solid #2b5387;
    border-radius: 30px;
    padding: 20px;
    margin-top: 21px;
    min-height: 103px;
    position: relative;
    display: none;
}

span.heading-time-slot {
    position: absolute;
    top: -16px;
    left: 20px;
    background: #ffffff;
    padding: 7px;
}

input.slot_hidden_price_field {
    display: none;
}

span.month-change {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 10px;
    cursor: pointer;
    font-size: 15px;
}

span.time-slot.disabled_slot {
    color: #c4c4c4;
    border: 2px solid #c4c4c4;
}

span.time-slot.disabled_slot:hover {
    background: unset;
    cursor: not-allowed;
}

.hide-date-main-booking {
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
div#ancillaries_zt_input {
    margin-top: 8px;
}
/*Tool Tip for slots*/
.zt_tooltip {
    position: relative;
    display: inline-block;
}
  
.zt_tooltip .tooltiptext {
    visibility: hidden;
    width: max-content;
    background-color: #000000e8;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 114%;
    left: 0%;
    line-height: 20px;
    font-size: 13px;
    /* margin-left: -60px; */
}

.zt_tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 15px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #000000e8 transparent;
}

.zt_tooltip:hover .tooltiptext {
    visibility: visible;
}

.reschedule_submit_button:disabled {
    background-color: gray !important;
}

.discount_value_hidden{
    display: none;
}

.single_course_calendar .calendar-day-hover {
    border: 1px solid #35D5264F;
    border-radius: 100%;
}
.disabled-date {
    border: unset !important;
}
.message-time-slot {
    color: #64696E;
    font-style: italic;
}

.message-time-slot .time-slot {
    font-style: initial;
}

@media only screen and (max-width: 600px)  {
    .calendar-days div, .calendar-days-2 div {
        width: 32px;
        height: 32px;
		margin: unset !important;
    }
	.calendar_2 span.month-change,.calendar_2 span.year-change  {
		margin: unset !important;
	}
}

@media only screen and (max-width: 767px)  {
    .single-courses .jet-popup__container-inner {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
    .farehabor_diplay_name {
        font-size: 14px;
      }
      .booking_form_colum {
        margin-bottom: 5px;
      }
      
.no_of_people_instant_form .wp-block-column-is-layout-flow {
    width: 120px !important;
  }
  .no_of_people_instant_form .wp-block-columns {
    margin-bottom: 0;
  }
  .no_of_people_instant_form {
    display: flex !important;
  }
    #voucher_form_on_popup .wp-block-columns.is-layout-flex {
        gap: 0;
    }
    .next_avail_time_date {
        font-size: 13px;
    }
    .single_course_calendar div.calendar-days-2 div {
        margin-left: unset !important;
    }
    span.month-change{
        font-size: 10px;
    }
    .month-picker , .month-picker-2, .year-picker, .calendar-week-day div{
        font-size: 14px;
    }
    .year-change {
        font-size: 13px;
    }
    span.zt_tooltip.time-slot {
        font-size: 14px;
    }
    span.zt_calcluted_field, .extras_quantity_field {
        font-size: 16px;
    }
    .people-minus, .people-plus {
        font-size: 22px !important;
        margin: unset !important;
    }
    input.no_of_people {
        font-size: 16px !important;
    }
    .ancillaries_zt_main {
        padding-top: 0;
    }
    .booking_form_colum_right {
        padding-left: unset;
    }
    .jet-form-builder__next-page-wrap:has(.booking_from_nxt_btn){
        text-align: center !important;
    }
    .booking_from_nxt_btn{
        width: 50%;
    }
    /*ancillaries css*/
    .zt_calcluted_field {
        width: 80px !important;
      }
      .minus, .plus, .extras_quantity_field {
        width: 25px !important;
      }
      
      .ancillaries_label_column {
        width: 100px;
		max-width: 100px !important;
      }
	  .error_dialog_box{
		width: 80% !important;
		padding: 6% !important;
		
	  }
      .apply_coupon_field {
        width: 60% !important;
    }
    
    .apply_btn_main_div {
        position: absolute;
        right: 5px;
    }
	  /* .apply_coupon_field {
		width: 96% !important;
		max-width: 100% !important;
	  } */
}
@media only screen and (min-width: 940px) and (max-width: 1120px) {
    .calendar-days div, .calendar-days-2 div {
        margin-left: unset;
    }
}
@media only screen and (max-width: 939px){
    .booking_form_colum {
        display: block !important;
    }
    .booking_form_colum_right::after{
        display: none;
    }
} 
.booking_form .jet-form-builder-message--error {
    display: none;
}
.error_dialog_main{
	position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #0000004d;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error_dialog_box{
    background: white;
    width: 25%;
    margin: 0 auto;
    border-radius: 15px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 3%;
}
.error_dialog_box p{
	color: red;
	line-height: 25px;
}
.error_dialog_main{
	display: none;
}
button.error_msg_close {
    margin-top: 15px;
    float: right;
    background-color: #2b5387;
    color: #ffffff;
    border-radius: 5px;
    border: unset;
    padding: 0.5em;
}
.coupon_amt_percent_hdn{
	margin: unset;
}
.coupon_field_main {
	align-items: center !important;
}
select#package_2 {
    margin-top: 20px;
}
.Apply_coupon_btn .wp-element-button {
	font-size: 14px;
    font-family: poppins;
    background: #f2f2f2;
    border-radius: 35px;
    color: #345286;
    min-width: 94px;
    font-weight: 600;
}
.apply_coupon_field {
	border-radius: 50px !important;
	padding: 10px !important;
	margin-right: unset !important;
}
.booking_location {
    margin-right: 0px !important;
    margin-bottom: 15px !important;
}
.jet-form-builder__prev-page {
    color: #345286 !important;
    background: #f2f2f2 !important;
    text-shadow: unset !important;
}
.cancel .wp-element-button {
	font-size: 14px;
	font-family: poppins;
	background: #a3002e;
	border-radius: 15px;
	min-width: 94px;
}
/* .applied{
	pointer-events: none;
} */
.coupon_amt_percent_hdn {
	display: none !important;
}
.show_discount_style {
	margin-bottom: 30px;
	background: #00af26;
	color: white;
	font-family: poppins;
	padding: 7px;
	font-size: 15px;
	border-left: 5px solid #31653c;
	padding-left: 15px;
}

.next_avail_time_date {
	font-family: "Poppins", sans-serif;
	text-align: center;
	color: #04bd2c;
	margin: unset;
    font-style: italic;
    font-weight: 300;
}
.next_date_cal {
	position: relative;
}
.next_date_cal  .elementor-icon {
	position: absolute;
	top: 7px;
	/* left: 10px; */
}
@media only screen and (min-width: 768px)  {
	.apply_coupon_field {
		max-width: 100% !important;
	  }
}

.voucher_form_redirect_button {
	text-align: center;
}
.voucher_form_redirect_button a {
	padding: 8px;
	background: #2b5387;
	border: navajowhite;
	color: white;
	font-family: poppins;
	border-radius: 15px;
}
.voucher_form_redirect_button a:hover {
	background: #04BD2C;
}
.Farharbor_main {
    position: relative;
}

.fetch_farharbor_course_btn {
    position: absolute;
    right: 0px;
    top: 38px;
}

.fetch_farharbor_course_btn  a {
    padding: 14px;
    font-family: 'Poppins';
    border-radius: 20px;
}
.fareharbor_courses{
    display: none;
}
select.fareharbor_courses {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    margin: 10px 0px 20px 0px;
    font-family: 'Poppins';
    background: white;
    color: #54595f;
}
span.farharbor_course_heading {
    font-family: 'Poppins';
    color: #54595f;
    font-style: italic;
    font-size: 17px;
}
.center_shortname_col .jet-form-builder__label:after {
    content: "?";
    position: absolute;
    top: 0px;
    left: 19%;
    border-radius: 100%;
    padding: 0px 5px;
    background: #345286;
    color: white;
    cursor: pointer;
}

.center_shortname_col .jet-form-builder__label {
    position: relative;
}
.fareharbor_types_main {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.fare_ty_input input {
    height: 39px;
    width: 40px !important;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border: unset !important;
    background: #f2f2f2 !important;
    color: #2b5387 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    outline: unset;
    border-radius: unset !important;
    margin: unset !important;
    padding: 0px !important;
    pointer-events: none;
    font-size: 18px;
    font-weight: 600;
    color: #345286;
}

.farehabor_diplay_name {
    width: 33.33%;
    cursor: default;
}

.fare_ty_price {
    width: 33.33%;
    text-align: center;
    background: #f2f2f2;
    padding: 5px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #345286;
    margin: 0 50px;
}

.fare_ty_input {
    width: 33.33%;
    text-align: right;
}

.fare_ty_input span.people-plus {
    right: 5px;
    position: relative;
}
.no_people_main_fareharbor {
    display: none !important;
}
.party_size_active{
    pointer-events: none;
}
.party_size_error_msg {
    font-family: poppins;
    font-size: 14px;
    font-style: italic;
    color: #403838;
}
/* FareHarbor form responsive */
@media only screen and (min-width: 940px) and (max-width: 1200px) {
    .fare_ty_price {
        margin: 0;
    }
    .fare_ty_input .people-minus {
        margin: 0;
    }
}
@media only screen and (min-width: 1120px) and (max-width: 1200px){
    .fare_ancillaries_zt_main .ancillaries_price_column .zt_calcluted_field{
        width: 155px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 939px){
    .fare_ancillaries_zt_main .ancillaries_price_column .zt_calcluted_field{
        width: 145px;
    }
}
@media only screen and (max-width:767px) {
    .fare_ty_price {
        margin: 0;
        font-size: 15px;
    }
    .fare_ty_input .people-minus {
        width: 22px;
    }
    .fare_ty_input  .people-plus {
        width: 22px;
    }
    .fare_ty_input input {
        width: 30px !important;
        font-size: 16px !important;
    }
    .fare_ancillaries_zt_main .zt_calcluted_field {
        width: 100% !important;
    }
    .fare_ancillaries_zt_main .extras_quantity_field {
        font-size: 16px !important;
        font-weight: 700 !important;
    }
}
.show_suggested_password {
    font-family: poppins;
    background: #97dda7;
    padding: 8px;
    border-radius: 10px;
    margin: 11px 0 0 0 !important;
    font-size: 14px;
    margin-top: -10px !important;
    margin-bottom: 10px !important;
    position: relative;
    top: -12px;
  }

  /* checkfront css */
  .checkfront_host_id_heading .jet-form-builder__label:after {
    content: "?";
    position: absolute;
    top: 6px;
    left: 20%;
    border-radius: 100%;
    padding: 2px 8px;
    background: #345286;
    color: white;
    cursor: pointer;
}
.checkfront_host_id_heading{
   position:relative;
}