/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Barlow Condensed" !important;
  padding: 0;
  margin: 0;
  background-color: #fff;
  color: #353535;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  overflow-y: auto;
  overflow-x: hidden;
}

.htc_wrapper {
  padding: 0 0 100px;
  background-color: #e9e9e9;
}

.htc_header {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 222px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
}

.header_title {
  color: #fff;
  font-family: Barlow Condensed;
  font-size: 64px;
  font-weight: 600;
  margin: 0;
}

.htc_container {
  max-width: 1418px;
  margin: 0 auto;
  padding: 0 54px;
}

.htc_fig_wrapper {
  margin: 110px auto;
  text-align: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.htc_fig_wrapper img {
  max-width: 100%;
  margin: 0 auto;
}

.htc_form_inner {
  padding: 60px 60px 30px;
  border-radius: 12px;
  border: 1px solid #000;
}

.htc_label {
  color: #353535;
  font-family: Barlow Condensed;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  display: inline-block;
}

.htc_form_grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 41px;
  -moz-column-gap: 41px;
  column-gap: 41px;
  row-gap: 24px;
}

.htc_input {
  border: 0;
  font-family: Barlow Condensed;
  font-size: 24px;
  font-weight: 600;
  color: #353535;
  line-height: normal;
  width: 100%;
  padding: 18px 12px;
  border-radius: 8px;
  border: 1px solid #fff;
  background: #fff;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.htc_input::-webkit-input-placeholder {
  color: #949494;
  opacity: 1;
}

.htc_input::-moz-placeholder {
  color: #949494;
  opacity: 1;
}

.htc_input:-ms-input-placeholder {
  color: #949494;
  opacity: 1;
}

.htc_input::-ms-input-placeholder {
  color: #949494;
  opacity: 1;
}

.htc_input::placeholder {
  color: #949494;
  opacity: 1;
}

:focus-visible {
  outline: 0;
}

.required {
  color: red;
  font-weight: 400;
}

.htc_input:focus,
input[type="text"]:focus {
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  border-color: #000;
  outline: none;
  color: #353535;
}

input:focus::-webkit-input-placeholder,
input:focus::placeholder {
  color: #353535;
}

.htc_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 33px;
  -moz-column-gap: 33px;
  column-gap: 33px;
  width: 100%;
  justify-content: space-between;
}

.htc_col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.htc_col_3 {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 30%;
  flex: 1 0 30%;
  margin-bottom: 24px;
}

.htc_form_inner .htc_label {
  margin-top: 18px;
  margin-right: 15px;
}

.mt_0 {
  margin-top: 0px !important;
}

.htc_label_col {
  min-width: 130px;
}

.htc_overall_col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mb_24 {
  margin-bottom: 24px !important;
}

/*======Custom Radio Button Start======= */
.htc_radio_wrapper {
  display: block;
  position: relative;
  cursor: pointer;
}

.htc_radio_wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.htc_radio_wrapper .checkmark {
  display: block;
  width: 100%;
  padding: 18px 12px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  border: 3px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.htc_radio_wrapper input:checked ~ .checkmark {
  border-color: #ff0042;
}

/*======Custom Radio Button End======= */

/*======Custom Checkbox Button Start======= */
.htc_checkbox_wrapper {
  display: block;
  position: relative;
  cursor: pointer;
}

.htc_checkbox_wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.htc_checkbox_wrapper .checkmark {
  display: block;
  width: 100%;
  min-width: 111px;
  padding: 18px 12px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  border: 3px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.htc_checkbox_wrapper .checkmark:after {
  content: "No";
}

.htc_checkbox_wrapper input:checked ~ .checkmark:after {
  display: block;
  content: "Yes";
}

/*======Custom Checkbox Button End======= */
.slider_choice_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-column-gap: 18px;
  -moz-column-gap: 18px;
  column-gap: 18px;
  /* flex-wrap: wrap; */
}

.email_validetor_wrap {
  padding: 22px 60px;
}

.htc_primary_btn {
  font-family: Barlow Condensed;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  background: #c7322c;
  color: #fff;
  padding: 18px 12px;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.htc_primary_btn:hover {
  opacity: 0.7;
}

.email_validetor_wrap .htc_primary_btn {
  display: block;
  width: 100%;
}

.m_0 {
  margin: 0 !important;
}

.slider_choice_wrap .htc_label {
  white-space: normal;
}

.d-none {
  display: none !important;
}

/* ===========HTC Output Start============== */
.htc_output_wrapper {
  padding: 72px;
}

.htc_title_wrapper {
  text-align: center;
  padding: 0 15px;
}

.htc_output_wrapper .header_title {
  color: #02418e;
  font-family: Barlow Condensed;
  font-size: 56px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 13px;
}

.htc_output_wrapper .htc_form_wrapper {
  max-width: 1013px;
  margin: 0 auto;
}

.htc_output_wrapper .htc_form_inner {
  padding: 35px 50px 35;
}

.htc_output_wrapper .htc_form_inner .htc_label {
  margin: 0 0 10px;
  font-size: 25px;
  white-space: normal;
}

.htc_output_field {
  display: block;
  background: #d9d9d9;
  width: 100%;
  padding: 12px;
  color: #000;
  font-size: 24px;
  font-weight: 600;
}

.htc_col_4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  width: 33.33%;
}

.htc_output_row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mb_25 {
  margin-bottom: 25px !important;
}

.htc_output_wrapper .htc_fig_wrapper {
  margin: 30px auto;
  text-align: center;
  position: relative;
}

.htc_required_title {
  color: #00319b;
  font-family: Barlow Condensed;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 17px;
}

.req_optn_row,
.htc_required_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.htc_optional_wrapper,
.htc_required_wrapper,
.htc_req_col_2,
.htc_req_col_10 {
  padding: 0 12px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.htc_req_col_10 {
  width: 60%;
}

.htc_req_col_2 {
  width: 40%;
}

.htc_num_field {
  display: block;
  color: #000;
  font-family: Barlow Condensed;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  text-align: right;
  word-break: break-word;
}

.req_optn_row {
  margin: 0 -36px;
}

.htc_optional_wrapper,
.htc_required_wrapper {
  width: 50%;
  padding: 0 36px;
}

.htc_required_wrapper {
  border-right: 1px solid #000;
}

.htc_output_wrapper .htc_required_wrapper .htc_label,
.htc_output_wrapper .htc_optional_wrapper .htc_label {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.htc_optional_wrapper .htc_required_title {
  color: #000;
}

.htc_footer_fig {
  margin: 63px auto 0;
  text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.twc_validation_error {
  color: red;
  margin: 8px 0 0;
  display: block;
}

.htc_checkbox_wrapper p {
  margin: 0;
}

.show_email_message {
  max-width: 1013px;
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  color: #ff9800;
  font-weight: 600;
  margin-bottom: 30px;
}

/*.twc-field-required{
	border-color:red !important;
}*/

.twc-loader-spinner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1200;
}

.twc-loader-spinner svg {
  width: 100px;
  fill: none;
}

.twc-loader-spinner .load {
  transform-origin: 50% 50%;
  stroke-dasharray: 0.7 0.3;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: #02418e;
}

.twc-loader-spinner .load.one {
  animation: spinners 1.5s infinite ease-in;
  animation-direction: reverse;
}

.twc-loader-spinner .load.two {
  fill: #02418e;
}

.twc-loader-spinner .load.three {
  animation: spinners 1.5s infinite;
}

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

.htc_divider:last-child {
  display: none;
}

.htc_divider {
  width: 96%;
  height: 1px;
  background: #ebe8e8;
  margin: auto;
  margin-bottom: 20px;
}

.twc_recalculate_wrap {
  margin-top: 10px;
}

.twc_recalculate_wrap input {
  width: 100%;
  padding: 8px 5px;
  font-size: 20px;
}

input.twc_range_slider {
  float: right;
}

.twc_range_slider {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  width: 100%;
  cursor: pointer;
  outline: none;
  /*  slider progress trick  */
  overflow: hidden;
  border-radius: 16px;
}

/* Track: webkit browsers */
.twc_range_slider::-webkit-slider-runnable-track {
  height: 15px;
  background: #ccc;
  border-radius: 16px;
}

/* Track: Mozilla Firefox */
.twc_range_slider::-moz-range-track {
  height: 15px;
  background: #ccc;
  border-radius: 16px;
}

/* Thumb: webkit */
.twc_range_slider::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #02418e;
  /*  slider progress trick  */
  box-shadow: -407px 0 0 400px #02418e;
}

/* Thumb: Firefox */
.twc_range_slider::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #02418e;
  /*  slider progress trick  */
  box-shadow: -407px 0 0 400px #02418e;
}

.wrapper {
  color: #4b4949;
  background: #02418e;
  max-width: 400px;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.range {
  display: flex;
  align-items: center;
  max-width: 500px;
  height: 4rem;
  width: 80%;
  background: #fff;
  padding: 0px 10px;
}

.twc_range_slider_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 550px;
  margin: 0 auto;
  justify-content: center;
}

.payload_cog_btn_grp {
  display: flex;
  align-items: self-end;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: 20px;
}

.payload_cog_wrapper {
  /* max-width: 550px; */
  margin: 0 auto 50px;
}

.payload_cog_wrapper .htc_primary_btn {
  width: 100%;
}

.payload_cog_wrapper .range_slider_wrapper {
  margin: 0 0 40px 0px;
}

.htc_output_message .alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.htc_output_message .alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.htc_output_message .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
}

article.htc_output_message {
  max-width: 1013px;
  margin: 0 auto;
  display: none;
}
.payload_weight_label {
  width: 100%;
}
.htc_form_inner .payload_weight_label .htc_label {
  margin: 0 0 24px;
  font-weight: 600;
  text-transform: capitalize;
}
.htc_text_center {
  text-align: left;
}
div#wrap_twc_e10 {
  flex: 0 0 auto;
}

/* 22 nov 2023 ns css */

.field-holder {
  display: flex;
}
.htc_col_2 {
  padding: 0 15px;
}
.pr-0 {
  padding-right: 0px !important;
}
.htc_ps_0 {
  padding-left: 0 !important ;
}

.comment_2 {
  position: absolute;
  top: 71%;
  left: 21%;
}
.comment_3 {
  position: absolute;
  top: 96%;
  left: 23%;
}
.comment_1 {
  position: absolute;
  right: 34%;
  top: -8%;
}

/* Media */

@media (max-width: 1366px) {
  .comment_1 {
    top: -7%;
  }
  .comment_2 {
    top: 69%;
  }
  .comment_3 {
    top: 93%;
  }
}

@media (max-width: 1200px) {
  .comment_1 {
    top: -4%;
    right: 34%;
  }
  .comment_2 {
    top: 66%;
  }
  .comment_3 {
    top: 89%;
  }
}
@media (max-width: 991px) {
  .comment_1 {
    /*top: 13%;
    right: 7%;*/
        top: -6%;
    right: 34%;
    font-size: 15px;
  }
  .comment_3 {
    top: 85%;
    font-size: 15px;
  }
  .comment_2 {
    top: 65%;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .comment_1 {
    /*top: 11%;
    right: 5%;*/
        top: 6%;
    right: 34%;
    font-size: 13px;
  }
  .comment_2 {
    font-size: 14px;
  }
  .comment_3 {
    top: 90%;
    font-size: 14px;
    left: 19%;
  }
}

@media(max-width:575px){
  .comment_1 {
    /*top: -26%;
    right: 0%;*/
    top: 3%;
    right: 34%;
    font-size: 12px;
  }
  .comment_2 {
    font-size: 12px;
    top: 63%;
  }
  .comment_3 {
    top: 83%;
    font-size: 12px;
    left: 23%;
    max-width: 129px;
  }
}