:root {
  --bodyText: #151517;
  --bodyColor: #fdf4f4;
  --primary-color: #d90429;
  --primary-light: rgba(255, 58, 81, 1);
  --primary-color-hover: #b3052a;
  --grayText: #83868e;
  --dashedBorder: 1px dashed #dadbdd;
  --border-radius: 8px;
  --success-color: #52bd94;
  --pending-color: #d14343;
  --figtree: "Figtree", sans-serif;
}

body {
  font-family: var(--figtree);
  background-color: #fffaf1;
}

.main__wrapper {
  margin: 79px 0 15px;
  word-break: break-word;
}

/* Multistep form steps */
.multistep_progress {
  padding: 12px 0;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 74px;
  z-index: 99;
}

.step_num {
  font-size: 12px;
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--grayText);
}

.inProgress .step_num {
  background-color: var(--primary-color);
}

.review-form .inProgress .step_head {
  color: #111216;
}

.completed .step_num {
  background-color: var(--bodyText);
}

.step_head {
  font-size: 14px;
  font-weight: 700;
  color: var(--grayText);
  line-height: 147%;
  margin-left: 8px;
}

.completed {
  cursor: pointer;
}

.completed .step_head,
.current .step_head {
  color: var(--bodyText);
}

.current .step_num {
  font-size: 0;
  background-color: var(--primary-color);
}

.current .step_num:before {
  position: absolute;
  content: "";
  background: url("../../images/vendor/vendor-panel/edit-form.svg") no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.formStep {
  position: relative;
  padding-right: 36px;
  cursor: pointer;
}

.formStep.completed .step_head:hover {
  border-bottom: 1px dotted var(--bodyText);
}

.formStep.inProgress {
  cursor: auto;
}

/* .formStep:last-child {
  padding: 0;
} */
.multistep_progress .dp_flx a {
  position: relative;
}

.multistep_progress .dp_flx a:not(:last-child):after,
.multistep_progress .dp_flx .formStep:not(:last-child):after {
  position: absolute;
  content: "";
  background: url("../../images/vendor/vendor-panel/formstep-arrow.svg") no-repeat;
  width: 14px;
  height: 10px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.formStep:after {
  filter: invert(50%) sepia(4%) saturate(220%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.completed.formStep:after,
.current.formStep:after {
  filter: unset;
}

/* upload form css */
.main_form_panel {
  border-radius: 12px;
  background: #fff;
  margin-top: 12px;
}

.form_section {
  padding: 36px 24px;
}

.form_section:not(.last) {
  border-bottom: 1px solid #e6e7e8;
  padding: 36px 24px 45px;
}

.form_title_wrap {
  margin-bottom: 36px;
}

.form__title {
  color: var(--bodyText);
  font-size: 22px;
  font-weight: 800;
  line-height: 147%;
}

.upload_row {
  margin: 0 -30px;
}

.upload_col {
  max-width: 50%;
  padding: 0 30px;
  flex: 0 0 50%;
}

.form_subhead {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
  margin-bottom: 16px;
}

.form__subtitle {
  color: var(--grayText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
}

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

.upload_box {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  border: 1px dashed #f5c0c9;
  background: #fdf2f4;
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.upload_box img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}

.upload_box .upload_icon img {
  width: 33px;
  margin-bottom: 8px;
}

.upload_box .upload_txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  color: var(--grayText);
  text-align: center;
}

.upload_box.img_uploaded {
  border: 1px solid #f5c0c9;
  padding: 0;
}

.company_profile_logo_preview {
  max-width: 149px;
  max-height: 149px;
}

.upload_box .upload_link {
  color: var(--primary-color);
  background-color: transparent;
  border-bottom: 2px dotted var(--primary-color);
  display: block;
  margin: 0 auto 2px;
}

.upload_box:hover .upload_link {
  border-bottom: 2px dotted transparent;
}

.upload_box .file_upload {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.upload_box input[type="file"]::-webkit-file-upload-button {
  display: none;
}

.upload_right {
  padding-left: 24px;
}

.upload_right .logo_info {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 147%;
  color: #010101;
}

.upload_right .logo_info .bold_txt {
  font-weight: 600;
}

.upload_right .logo_info .normal_txt {
  font-weight: 400;
}

.upload_right .logo_description {
  font-size: 12px;
  font-weight: 500;
  line-height: 142%;
  color: var(--grayText);
  padding-top: 4px;
}

/* upload form css ends */

/* Multistep form steps ends */

/* common Form field css */
.form_group_row {
  position: relative;
}

.floating_input {
  border-bottom: 1px solid var(--grayText);
  color: var(--bodyText);
  caret-color: #52bd94;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.3px;
  width: 100%;
  height: 40px;
  padding-top: 8px;
  padding-right: 40px;
}

.floating_input:focus {
  border-bottom: 1px solid #52bd94;
}

.floated.input_error {
  caret-color: #d14343;
  border-bottom: 1px solid #d14343;
}

.floated.floated_no_focus {
  border-bottom: 1px solid var(--bodyText);
}

.floating_label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--grayText);
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
}

.floated+.floating_label,
.floated+em+.floating_label {
  top: -8px;
  left: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--bodyText);
}

.forgot_password {
  color: var(--grayText);
  font-size: 14px;
  font-weight: 400;
  line-height: 147%;
  border-bottom: 1px dotted var(--grayText);
}

.forgot_password:hover {
  color: var(--bodyText);
  border-bottom: 1px dotted var(--bodyText);
}

.mb15 {
  margin-bottom: 15px;
  display: block;
}

.mb0 {
  margin-bottom: 0;
}

.jcfe {
  justify-content: flex-end;
}

.primary_btn {
  background-color: var(--primary-color);
  font-family: var(--figtree);
  border-radius: var(--border-radius);
  text-align: center;
  margin: 0;
  padding: 8px 16px;
}

.primary_btn.modal_full_btn {
  width: 100%;
  margin-top: 15px;
}

.secondry_btn.modal_full_btn {
  width: 100%;
  margin-top: 24px;
}

.modal_img {
  margin-bottom: 24px;
}

.secondry_btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 8px 16px;
  margin-right: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 147%;
  transition: all 0.3s ease-in;
}

.error {
  font-size: 12px;
  padding-top: 5px;
  font-weight: 500;
  display: inline;
  color: var(--primary-color);
}

.eye_icon {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.password_has_text .eye_icon {
  right: 30px;
}

.eye_icon img {
  filter: invert(87%) sepia(5%) saturate(40%) hue-rotate(180deg) brightness(93%) contrast(90%);
}

.clear_text {
  position: absolute;
  background: #cdcfd2;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  top: 14px;
  right: 0;
  cursor: pointer;
}

.clear_text:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  transform: rotate(-45deg);
  background-color: #fff;
  left: 3px;
  top: 7px;
}

.clear_text:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  transform: rotate(-45deg);
  background-color: #fff;
  left: 7px;
  top: 3px;
}

/* common Form field css ends */

/* custom select2 css */
.form__select .floating_label {
  opacity: 0;
}

.form__select .floating_label.open {
  opacity: 1;
  top: -7px;
  font-size: 12px;
  color: var(--bodyText);
}

.form__select .select2-container {
  width: 100% !important;
}

.form__row .select2-container--default .select2-selection--single {
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid var(--grayText);
}

.form__row .value_selected .select2-selection--single {
  border-bottom: 1px solid var(--bodyText);
}

.form__row .restore_placeholder .select2-selection--single {
  border-bottom: 1px solid var(--grayText);
}

.select2-container--open .select2-dropdown--below {
  border-radius: 4px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid #ddd;
  margin-top: 4px;
  height: 275px;
  overflow: hidden;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 245px;
  overflow-y: auto;
  padding-right: 5px;
  margin-right: 7px;
  margin-top: 7px;
}

.select2-results__option,
.select2-results__all_option,
.no-data-found {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
  color: var(--grayText);
  vertical-align: middle;
  position: relative;
}

.select2-results__option:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 15px;
  width: 15px;
  right: 10px;
  border: 2px solid #cdcfd2;
  border-radius: 50%;
  background-color: #fff;
  vertical-align: middle;
}

.select2-results__option[aria-selected="true"]:after {
  position: absolute;
  content: "";
  right: 10px;
  top: 7px;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  background-color: #fff;
  height: 9px;
  width: 9px;
}

.radio_wrapper {
  gap: 50px;
  margin-bottom: 24px;
}

.radio_box {
  position: relative;
  display: flex;
}

.radio_box label {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  cursor: pointer;
}

.radio_box input[type="radio"]:checked+label {
  font-weight: 700;
}

.radio_box input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ddd;
  outline: none;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
}

.radio_box input[type="radio"]:checked {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.radio_box input[type="radio"]:checked::before {
  display: block;
}

.radio_box input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--bodyText) transparent transparent transparent;
  margin-top: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: transparent;
  color: var(--bodyText);
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 2px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #e4e4e4;
  border-radius: 12px;
}

.form__select .select2-search {
  display: none;
}

.form__row .select2-container--open .select2-selection--single {
  border-bottom: 1px solid #52bd94;
}

.form__row .select2-selection__clear {
  display: none;
}

.form__row .select2-container .select2-selection--single {
  height: 40px;
}

.form__row .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  font-weight: 600;
  color: var(--bodyText);
  padding: 5px 30px 0 0;
  line-height: 1.8;
}

.form__floating .select2-container {
  z-index: unset;
  cursor: pointer;
}

.value_selected .select2-selection--single .select2-selection__rendered,
.restore_placeholder .select2-selection--single .select2-selection__rendered {
  padding-top: 5px !important;
}

.value_selected .select2-selection--single .select2-selection__rendered {
  padding-top: 7px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0;
}

.restore_placeholder .select2-selection__rendered {
  color: var(--grayText) !important;
  font-weight: 400 !important;
}

.form__row .select2-selection__placeholder {
  font-weight: 400;
  font-size: 14px;
}

/* custom select2 css ends */

.form__row {
  display: grid;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.form__row.col1 {
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
}

.non_floating_label {
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
  color: var(--bodyText);
  padding-bottom: 8px;
  display: block;
}

/* Service line */
.col50 {
  width: 50%;
}

.service_cat_wrap {
  padding: 0 0 50px;
}

.all_services {
  overflow-y: scroll;
  max-height: 560px;
}

.borderTop {
  overflow-y: scroll;
  max-height: 435px;
}

.editborderTop {
  overflow-y: scroll;
  max-height: 512px;
}

#service-slider-wrap.borderTop {
  max-height: 545px;
}

.all_services::-webkit-scrollbar,
.borderTop::-webkit-scrollbar,
.editborderTop::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}

.all_services::-webkit-scrollbar-thumb,
.borderTop::-webkit-scrollbar-thumb,
.editborderTop::-webkit-scrollbar-thumb {
  background-color: #cdcfd2;
  border-radius: 4px;
}

.left_seperation {
  border-left: 1px solid #e6e7e8;
}

.form_search {
  position: relative;
  margin-bottom: 36px;
}

.form_search:before {
  position: absolute;
  top: 14px;
  left: 0;
  height: 14px;
  width: 14px;
  content: url(../../images/vendor/vendor-panel/form-search.svg);
}

.form_search .form_search_input {
  padding-left: 22px;
}

.form_search_input+.floating_label {
  left: 22px;
  top: 13px;
}

.form_search_input.floated+.floating_label {
  left: 0;
  top: -2px;
}

.icon_subtitle {
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 15px;
}

.range-slider-cat .icon_subtitle {
  border-bottom: 0;
}

.icon_subtitle span {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.service-chip-list {
  gap: 8px;
}

.s-chip {
  position: relative;
}

.s-chip input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.fww {
  flex-wrap: wrap;
}

.s-chip input+label {
  position: relative;
  top: 0;
  color: var(--bodyText);
  font-size: 12px;
  font-weight: 700;
  line-height: 142%;
  padding: 8px 16px;
  display: inline-block;
  background: #f3f3f4;
  border-radius: var(--border-radius);
  cursor: pointer;
  z-index: 10;
}

.s-chip.clicked input+label {
  color: #fff;
  background-color: var(--bodyText);
}

.bar_panel {
  height: 21px;
  margin-top: 50px;
  position: relative;
  display: flex;
  display: -webkit-flex;
  background-color: #F3F3F4;
}

.bar_panel>span {
  border: 2px solid transparent;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  display: block;
  height: 21px;
  margin: 0;
  padding: 0;
}

.bar_panel>span:hover {
  border: 2px solid #D90429;
}

.bar_panel .active_bar {
  border: 2px solid #D90429;
}

.bar_panel span:not(:last-child) {
  margin-right: 2px;
}

.bar_panel span:not(:last-child).active_bar:after {
  content: none;
}

.bar_panel span:not(:last-child):after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
}

.bar_panel:after,
.bar_panel::before {
  position: absolute;
  content: "";
  top: -2px;
  width: 1px;
  height: 25px;
  background-color: var(--bodyText);
}

.bar_panel:before {
  left: -1px;
}

.bar_panel:after {
  right: 0;
}

.activeBar {
  padding-top: 20px;
}

.activeBar {
  font-size: 16px;
  font-weight: 400;
}

.activeBarBg {
  width: 19px;
  height: 19px;
  display: inline-block;
  margin-right: 15px;
}

.progressiveCard {
  background-color: #ebf0ff;
  border-radius: var(--border-radius);
  margin: 16px 0;
}

.progressCount {
  font-size: 12px;
  font-weight: 800;
  color: #3366ff;
  display: inline-block;
}

.progressText {
  font-size: 12px;
  font-weight: 700;
  color: var(--bodyText);
  position: relative;
  padding-left: 8px;
  margin-left: 8px;
}

.progressText:before {
  position: absolute;
  content: "";
  background-color: var(--bodyText);
  width: 1px;
  height: 24px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.range-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 22px;
}

.col-grid3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-grid2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-grid4 {
  grid-template-columns: repeat(4, 1fr);
}

.borderTop,
.editborderTop {
  border-top: 1px solid var(--light-gray);
  padding-top: 30px;
}

.range-slider .icon_subtitle {
  border-bottom: 0;
}

.range-slider {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
}

.range-slider_input {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.range-slider_input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.range-slider_input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.slider_thumb {
  width: 16px;
  height: 16px;
  border: 1px solid var(--secondry-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  z-index: 2;
}

.range-slider_line {
  height: 6px;
  width: 100%;
  background-color: #d9d9d9;
  border-radius: 4px;
  left: 0;
  bottom: 7px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}

.slider_line-fill {
  position: absolute;
  height: 7px;
  border-radius: 12px 0 0 12px;
  width: 0;
  background-color: var(--secondry-color);
}

.range-service .rangeServiceBg {
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-radius: 50%;
  display: inline-block;
}

.slider-service-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 142%;
  color: var(--secondry-color);
  padding-right: 12px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: calc(100% - 12px);
}

.slider_value {
  font-size: 12px;
  font-weight: 700;
  line-height: 142%;
  color: var(--bodyText);
  min-width: 35px;
}

.range-slider-wrap .range-slider-cat {
  padding-bottom: 35px;
  margin-right: 10px;
}

.range-slider-wrap .range-slider-cat:last-child,
.all_services .service_cat_wrap:last-child {
  padding-bottom: 0;
}

.bar_panel .bar_tooltip {
  color: var(--bodyText);
  width: max-content;
  min-width: 80px;
  font-size: 12px;
  font-weight: 700;
  line-height: 142%;
  padding: 8px 12px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 15px);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #dadbdd;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
}

.bar_tooltip::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
  transform: translateX(-50%) rotate(45deg);
  height: 15px;
  width: 15px;
  left: 50%;
  bottom: -8px;
  background-color: #fff;
  box-shadow: 7px 5px 12px -3px rgba(0, 0, 0, 0.1);
}

.bar_panel span:hover .bar_tooltip {
  visibility: visible;
  opacity: 1;
}

/* Service line ends */

/* Modal */
.hidden_dialog {
  display: none;
}

.dialog_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  transition: all 0.5s;
}

.modal_container {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%);
  width: 460px;
  max-width: 100%;
}

.auth_modal {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
}

.modal_logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
}

.bg_box {
  background-color: #f3f6ff;
}

.dialog_head {
  color: var(--bodyText);
  font-size: 22px;
  font-weight: 400;
  line-height: 147%;
  margin-bottom: 16px;
  text-align: center;
}

.dialog_head.line_seperator {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed #dadbdd;
}

.dialog_para {
  color: var(--bodyText);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
}

.confirm_check {
  border-radius: var(--border-radius);
  background: #f3f3f4;
  padding: 12px;
  margin-bottom: 10px;
}

.check__input {
  display: none;
}

.check_label {
  display: flex;
  align-items: center;
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  position: relative;
  cursor: pointer;
}

em {
  font-style: normal;
}

.check_label span {
  width: 18px;
  height: 18px;
  position: relative;
  margin-right: 12px;
}

.check__input+.check_label span:before {
  content: "";
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 2px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
  width: 15px;
  height: 15px;
}

.check__input:checked+.check_label span:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 3px;
  height: 9px;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fill_form {
  color: var(--bodyText);
  font-size: 16px;
  font-weight: 600;
  line-height: 147%;
  text-transform: uppercase;
}

.formHead {
  color: var(--bodyText);
  font-size: 22px;
  font-weight: 600;
  line-height: 147%;
}

.bold {
  font-weight: 800;
}

.modal_container form {
  margin-top: 36px;
}

.modal_container.clain_profile_modal {
  width: 1144px;
}

.clain_profile_modal .auth_modal {
  padding: 0;
}

.left_form {
  padding: 36px;
  width: 50%;
}

.right_graphic {
  background-color: #49e6aa;
  border-radius: 0 12px 12px 0;
  padding: 36px;
  width: 50%;
  transform: scale(1.02);
}

.right_graphic .fdc {
  height: 100%;
}

.center {
  text-align: center;
}

.img_caption {
  color: var(--bodyText);
  font-size: 22px;
  font-weight: 600;
  line-height: 147%;
  margin-top: 24px;
  padding: 0 40px;
}

.close_auth_modal {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}

.discard_btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  background-color: transparent;
  margin-top: 15px;
}

.form_sunhd {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  padding-top: 4px;
}

.reset {
  width: 572px;
}

.back_btn {
  color: var(--bodyText);
  font-size: 16px;
  font-weight: 600;
  line-height: 147%;
  text-transform: uppercase;
  background-color: transparent;
  margin-bottom: 24px;
  padding-left: 18px;
  position: relative;
  display: inline-block;
}

.back_btn svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.1s ease-in;
}

.back_btn:hover svg {
  left: -5px;
}

.discard path {
  fill: #d14343;
}

.discard span {
  color: #d14343;
}

/* otp */
.otp_label {
  color: var(--bodyText);
  font-size: 12px;
  font-weight: 400;
  line-height: 142%;
  padding-bottom: 8px;
  display: inline-block;
}

.otp_input_list {
  margin-bottom: 36px;
}

.otp_input {
  border-bottom: 1px solid #83868e;
  text-align: center;
  padding-bottom: 8px;
  width: 58px;
  font-size: 14px;
  font-weight: 700;
}

.otp_input:focus {
  border-bottom: 1px solid #52bd94;
  caret-color: #52bd94;
}

.otp_input.filled_otp {
  border-bottom: 1px solid var(--bodyText);
}

.rsend_code {
  color: #83868e;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  padding-top: 4px;
}

.primary_link {
  margin-left: 0;
}

/* otp */
/* Modal ends*/

/* Loader */
.form__loader {
  width: 60px;
  margin: 0 auto 30px;
  aspect-ratio: 2;
  --loaderBg: no-repeat radial-gradient(circle closest-side, #d90429 90%, #fff);
  background: var(--loaderBg) 0% 50%, var(--loaderBg) 50% 50%,
    var(--loaderBg) 100% 50%;
  background-size: calc(100% / 3) 50%;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }

  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }

  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }

  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}

/* Loader ends*/

/* Focus Area */
.focus-bar-status {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  margin-left: 12px;
  border-radius: 12px;
  text-transform: uppercase;
}

.complete-bar {
  background-color: #eef8f4;
  border: 1px solid var(--success-color);
  color: var(--success-color);
}

.pending-bar {
  background: #f9dada;
  border: 1px solid var(--pending-color);
  color: var(--pending-color);
}

.accordion-title {
  position: relative;
  cursor: pointer;
}

.accordion-title .form_subhead {
  margin: 0;
}

.dropdown-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.clicked.accordion-section .dropdown-arrow,
.active .clicked.accordion-section .dropdown-arrow {
  transform: translateY(-50%) rotate(-180deg);
}

.clicked.accordion-section .dropdown-arrow svg path,
.active .clicked.accordion-section .dropdown-arrow svg path {
  fill: #d90429;
}

.active .accordion-section .dropdown-arrow {
  transform: translateY(-50%)
}

.active .accordion-section .dropdown-arrow svg path {
  fill: var(--bodyText)
}

.accordion-content .progressiveCard,
.bg_none.progressiveCard {
  background-color: transparent;
}

.accordion-content .progressCount,
.bg_none .progressCount {
  margin-left: 8px;
}

.accordion-section {
  padding: 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid #e6e7e8;
}

.accordion-content {
  display: none;
}

.accordion-section.clicked .accordion-content {
  display: block;
}

/* Focus Area*/

/* Vendor edit profile */

.note_panel {
  padding: 12px 24px;
  top: 16px;
  border-radius: 12px;
  background: #ffdfa6;
  position: relative;
}

.note-icon {
  margin-right: 10px;
}

.note-text {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
}

.vendor-prfile-wrap {
  padding-top: 16px;
}

.vendor-sidebar,
.vendor-profile-detail {
  margin-top: 16px;
}

.vendor-sidebar {
  margin-right: 16px;
  width: 300px;
}

.vendor-sidebar .profile-header {
  border-radius: 12px 12px 0 0;
}

.vendor-sidebar .profile-card:last-child {
  border-radius: 0 0 12px 12px;
}

.company-logo {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  padding: 2px;
  border: 1px solid #f0f0f0;
}

.verification-badge {
  padding: 2px 4px;
  border-radius: 4px;
  background: #f3f6ff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.verification-badge span {
  color: #3366ff;
  font-size: 12px;
  font-weight: 600;
  line-height: 142%;
  text-transform: uppercase;
}

.verification-badge img {
  padding: 3px;
}

.company-name {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  margin: 16px 0 0;
}

.company-name img {
  margin-left: 11px;
}

.preview-profile {
  width: 100%;
  display: flex;
  justify-content: center;
}

.preview-profile span {
  line-height: 147%;
}

.preview-profile img {
  margin-right: 8px;
}

.profile-card {
  padding: 16px;
  background-color: #fff;
}

.profile-header {
  border-bottom: 1px solid #e6e7e8;
}

.sidebar-nav li a {
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
}

.sidebar-nav-icon {
  margin-right: 10px;
  /* filter: invert(6%) sepia(0) saturate(100%) hue-rotate(200deg) brightness(-185%) contrast(95%); */
}

.svg-sprite path {
  fill: #151517;
}

.active .filled-color {
  fill: var(--primary-color);
}

.sidebar-nav .active>a {
  background-color: #fdf2f4;
}

.sidebar-nav-txt {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
}

.active .sidebar-nav-txt {
  color: var(--primary-color);
}

.active>a>.sidebar-nav-icon {
  filter: invert(10%) sepia(97%) saturate(7472%) hue-rotate(347deg) brightness(89%) contrast(108%);
}

.lock {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar-nav li {
  margin-bottom: 2px;
}

.team-management {
  margin-top: 80px;
}

.need-help {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 800;
  line-height: 147%;
}

.contact-us {
  color: var(--primary-color);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
}

.contact-us span {
  border-bottom: 2px dotted var(--primary-color);
  margin-left: 8px;
}

.contact-us span:hover {
  border-bottom: 2px dotted #fff;
}

.sidebar-nav .dropdown-arrow {
  right: 12px;
}

.active .dropdown-arrow {
  transform: translate(0, -50%) rotate(180deg);
}

.active .dropdown-arrow path {
  fill: var(--primary-color);
}

.sidebar-list-nav {
  margin: 0 0 12px;
  padding-left: 28px;
  display: none;
}

.sidebar-list-nav a {
  font-size: 13px;
}

.tabs {
  gap: 36px;
  padding: 12px 24px;
  border-bottom: 1px solid #e6e7e8;
}

.tab {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  cursor: pointer;
  border-bottom: 2px solid #fff;
}

.tab.active {
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
}

.tab-content,
.section-content {
  display: none;
}

.tab-content.active,
.section-content.active {
  display: block;
}

.vendor-profile-detail {
  background-color: #fff;
  border-radius: 12px;
  width: calc(100% - 300px);
  /* margin-bottom: 24px; */
}

.sidebar {
  width: 227px;
  padding: 16px;
}

.content-area {
  width: calc(100% - 227px);
  /* min-height: 750px; */
}

.sidebar-item {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.sidebar-item-icon {
  margin-right: 10px;
  width: 20px;
  display: flex;
  justify-content: center;
}

.sidebar-item-icon img {
  filter: invert(100%) sepia(65%) saturate(480%) hue-rotate(150deg) brightness(-35%) contrast(95%);
}

.active>.sidebar-item-icon img {
  filter: brightness(0) invert(1);
}

.sidebar-item.active {
  color: #fff;
  background: var(--bodyText);
}

.upload_col_wrap+.upload_col_wrap {
  padding-top: 36px;
}

.vendor-profile-detail .form__row {
  grid-template-columns: repeat(2, 1fr);
}

.warning-msg {
  padding: 8px 12px;
  background-color: #f8e3da;
  justify-content: center;
}

.warning-icon {
  margin-right: 12px;
}

.disabled-form {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

.disabled-form input,
.disabled-form textarea,
.disabled-form select {
  cursor: not-allowed;
}

.dot_ln_btn {
  color: var(--primary-color);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
  background-color: transparent;
}

.dot_ln_btn span:hover {
  border-bottom: 2px dotted #fff;
}

.dot_ln_btn span {
  border-bottom: 2px dotted var(--primary-color);
}

.dot_ln_btn img {
  margin-right: 8px;
}

.form_submit_btn {
  margin-right: 28px;
}

.cards_bg {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 12px;
  background: #fffaf1;
}

.card-header {
  margin-bottom: 8px;
}

.card-strip {
  padding: 16px 24px;
  width: 100%;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  gap: 6px;
  display: flex;
  flex-direction: column;
}

.card-drag {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.card-actions {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.card_flx {
  padding: 0 80px 0 50px;
}

.country-name {
  color: #010101;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}

.badge {
  padding: 2px 8px;
  margin-left: 12px;
  border-radius: 12px;
  background: var(--bodyText);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 147%;
  text-transform: uppercase;
}

.card-details {
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.card-details p {
  position: relative;
  color: #010101;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
}

.card-details p:not(:last-child) {
  margin-bottom: 8px;
}

.card-para-icon {
  position: relative;
  min-width: 20px;
  height: 18px;
}

.icon-location {
  top: 2px;
}

.location_para {
  gap: 10px;
}

.card-para-icon img {
  max-width: 100%;
}

.card-actions {
  gap: 24px;
}

.card-actions i,
.card-drag {
  cursor: pointer;
}

.vendor-prfile-wrap .back_btn,
.form_section_main .back_btn {
  padding: 5px 15px 4px 28px;
  font-size: 14px;
  border-radius: 16px;
  background: #f3f3f4;
  color: #83868e;
  font-weight: 500;
  line-height: 150%;
}

.vendor-prfile-wrap .back_btn svg,
.form_section_main .back_btn svg {
  left: 14px;
}

.vendor-prfile-wrap .back_btn:hover svg,
.form_section_main .back_btn:hover svg {
  left: 10px;
}




/* Line css */

#basic-details .form_section_main {
  position: relative;
  border-left: 1px solid #e6e7e8;
}

#basic-details .form_section_main:before {
  position: absolute;
  content: "";
  width: 215px;
  height: 1px;
  background: #e6e7e8;
  left: -215px;
  bottom: 0;
}

#basic-details .form_section_main.remove-ln:before,
.hidden_section+.add_new_location .form_section_main .form_section_main:before {
  content: none;
}

#basic-details .form_section_main.remove-ln {
  border-left: 0
}

.hidden_section+.add_new_location .form_section_main .form_section_main {
  border: none;
}

/* Line css ends */

.default-selected .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: transparent;
  border: none;
  margin: 0;
  position: relative;
  padding: 0 10px 0 0;
}

.default-selected .select2-container--default .select2-selection--multiple .select2-selection__choice:before {
  position: absolute;
  content: ",";
  width: 2px;
  height: 2px;
  left: -7px;
}

.default-selected .select2-container--default .select2-selection--multiple .select2-selection__choice+.select2-selection__choice {
  padding-right: 5px;

}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  font-size: 12px;
  font-weight: 700;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .extra-badge {
  color: #83868E;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
}

.default-selected .select2-container--default .select2-search--inline+.select2-selection__choice:before {
  content: none;
}

.default-selected .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  width: 100%;
  padding: 0;
  position: relative;
  top: 6px;
}

.default-selected .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}

.multiselect-wrapper.default-selected .form__select .select2-search {
  display: inline-block;
  width: 100%;
  order: 1;
}



.hidden_section {
  display: none;
}

.leadership_panel {
  min-height: 650px;
  position: relative;
}

.add_new_panel {
  position: absolute;
  text-align: center;
  width: 440px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.primary_btn img {
  filter: brightness(0) invert(1);
}

.add_new_head {
  color: var(--bodyText);
  font-size: 22px;
  font-weight: 800;
  line-height: 147%;
  margin-top: 18px;
}

.add_new_sbhead {
  color: #83868e;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  margin-bottom: 24px;
}

.vendor-profile-detail .upload_wrapper+.upload_wrapper {
  margin-top: 36px;
}

.leader_img {
  width: 48px;
  height: 48px;
}

.leader_img img {
  width: 100%;
  border-radius: 50%;
}

/* 
.vendor-profile-detail div,
.vendor-profile-detail p {
  line-break: anywhere;
  word-wrap: break-word;
} */

.leader_detail {
  padding-left: 16px;
}

.leader-name {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 800;
  line-height: 160%;
}

.leader-designation {
  color: var(--bodyText);
  font-size: 12px;
  font-weight: 500;
  line-height: 142%;
}

.form__row.d-block {
  grid-template-columns: repeat(1, 1fr);
}

.d-block .form_col {
  width: 50%;
}

.card-main_hd {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.certificate_status {
  padding: 2px 8px;
  margin-left: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 142%;
  text-transform: uppercase;
  border-radius: 12px;
}

.certificate_status.pending {
  color: #83868e;
  border: 1px solid #83868e;
  background: #f3f3f4;
}

.certificate_status.verified {
  color: #52bd94;
  border: 1px solid #52bd94;
  background: #eef8f4;
}

.certificate_status.rejected {
  color: var(--pending-color);
  border: 1px solid var(--pending-color);
  background: #fdf7f4;
}

.add_new_btn img {
  margin-right: 8px;
  display: inline-block;
}

.dpinline_flx {
  display: inline-flex;
}

.vendor-main {
  border-bottom: 1px solid #e6e7e8;
  padding: 36px 24px 45px;
  min-height: 791px;
  position: relative;

}



.vendor-main-btns {
  padding: 36px 24px 45px;
}

.sidebar_sticky {
  position: sticky;
  top: 100px;
}

/* Vendor edit profile */

.add-certificate span {
  padding-left: 8px;
}

.primary_btn.dp_flx {
  display: inline-flex;
}

.gap8 {
  gap: 8px;
}

.link {
  color: #3366FF;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.card-details div {
  margin-top: 8px;
}

.cards_bg.aic {
  align-items: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  /* margin: 150px 20px; */
  margin: 150px 65px;
}

.review-card {
  padding: 20px;
  background-color: #FDF2F4;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 36px;
}

.review-card .primary_btn {
  margin-top: 0;
}

.primary_btn img,
.secondry_btn img {
  margin-right: 8px;
}

.single_icon {
  background-color: transparent;
  cursor: pointer;
  padding: 10px;
  margin-right: 8px;
}

.theme_color {
  filter: invert(10%) sepia(97%) saturate(7472%) hue-rotate(347deg) brightness(89%) contrast(108%);
}

.head3 {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 16px;
}

.rating_grid {
  gap: 16px;
}

.rating_box {
  padding: 15px 24px;
  width: 250px;
  border-radius: 8px;
  background: #FFFAF1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.total_review {
  color: var(--bodyText);
  padding-top: 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
}

.total_rating {
  font-size: 14px;
  font-weight: 500;
}

.rating-badge .rating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.app-rating {
  font-size: 46px;
  font-weight: 500;
  line-height: 120%;
  padding-right: 5px;
  display: inline-block;
  letter-spacing: -0.25px;
}

.star_blank {
  background: url('../../images/vendor/vendor-panel/review-rating-stars.png') no-repeat;
  margin: 0;
  height: 17px;
  width: 100px;
  display: inline-block;
  vertical-align: middle;
  background-position: 0 -1px;
}

.star_blank .star_yellow {
  background: url('../../images/vendor/vendor-panel/review-rating-stars.png') no-repeat;
  width: 64px;
  height: 17px;
  display: block;
  background-position: 0 -29px;
  margin: 0;
}

.star_blank_blue {
  background: url('../../images/vendor/vendor-panel/star-blue.png') no-repeat;
  margin: 0;
  height: 17px;
  width: 100px;
  display: inline-block;
  vertical-align: middle;
  background-position: 0 -1px;
}

.star_blank_blue .star_blue {
  background: url('../../images/vendor/vendor-panel/star-blue.png') no-repeat;
  width: 64px;
  height: 17px;
  display: block;
  background-position: 0 -29px;
  margin: 0;
}

.rating-review {
  padding: 24px 15px;
  width: calc(100% - 250px);
  border: 1px solid #FFEFD2;
  border-radius: var(--border-radius);
}

.rating-row {
  gap: 24px;
}

.rating-row:not(:last-child) {
  margin-bottom: 8px;
}

.star-label {
  font-size: 14px;
  font-weight: 500;
}

.rating-row img {
  margin-right: 6px;
}

.bar {
  flex: 1;
  height: 9px;
  background: #FFFAF1;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.fill {
  height: 100%;
  background-color: #F7C94F;
}

.tab-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.tab-button {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border-bottom: 2px solid #fff;
}

.tab-button.active {
  font-weight: 600;
  border-bottom: 2px solid #D90429;
}

.review-columns {
  display: flex;
  border: 1px solid #E6E7E8;
  border-radius: var(--border-radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.left-column {
  flex: 1;
  background-color: #FFFAF1;
  border-right: 1px solid #E6E7E8;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.review-columns>div {
  padding: 24px;
}

.rating-item-wrap {
  border-top: 1px solid #E6E7E8;
  margin-top: 16px;
  padding-top: 16px;
}

.overall-rating {
  color: var(--bodyText);
  font-size: 36px;
  font-weight: 700;
  line-height: 132%;
  letter-spacing: -0.25px;
  margin-bottom: 5px;
}

.client_reviews {
  margin-top: 36px;
}

.rating-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.rating-item strong {
  color: var(--bodyText);
  font-size: 14px;
  line-height: 147%;
}

.rating-item .star-label {
  padding-left: 4px;
  line-height: 147%;
}

.rating-item img {
  max-width: 17px;
}

.rating-item strong {
  font-weight: 700;
}

.review-date span {
  color: var(--bodyText);
  font-size: 14px;
  line-height: 147%;
}

.review-date img {
  margin-right: 5px;
  max-width: 12px;
}

.para_btn {
  color: var(--primary-color);
  line-height: 1.35;
  border-bottom: 2px dotted var(--primary-color);
  display: inline-block;
  cursor: pointer;
}

.review-date {
  font-size: 12px;
  margin-top: 10px;
}

.middle-column {
  flex: 2;
}

.middle-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-card-head {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
}

.ques_wrapper p {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  margin: 8px 0 0;
}

.hidden {
  display: none;
}

.right-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.right-column {
  flex: 1;
  border-left: 1px solid #ccc;
  padding-left: 15px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
}

.service-tags span {
  color: var(--bodyText);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 8px;
  display: inline-block;
  background: #F3F3F4;
  border-radius: 4px;
}

.reviewer-name span {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
}

.reviewer-title {
  color: var(--bodyText);
  font-size: 12px;
  font-weight: 500;
  line-height: 147%;
  margin-top: 5px;
}

.verified {
  color: #2ecc71;
  font-size: 14px;
}

.reviewer-name img {
  margin-left: 4px;
}

.recommend {
  background: #EEF8F4;
  border-radius: 4px;
  color: var(--bodyText);
  padding: 8px;
  margin-top: 16px;
  width: 100%;
  cursor: pointer;
}

.recommend span,
.approval-pending span {
  padding-left: 8px;
  font-size: 12px;
}

.approval-pending {
  background: #fff;
  border-radius: 4px;
  color: var(--bodyText);
  padding: 8px;
  margin-top: 50px;
  width: 100%;
  cursor: pointer;
}


.show-more-review {
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 36px auto;
}

.show-more-review-txt {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
  border-bottom: 2px dotted var(--primary-color);
}

.shown-all .more-review-icon {
  transform: translate(0px, -3px) rotate(180deg);
}

#pending .left-column {
  background-color: #F3F6FF;
}

.question_wrap {
  margin: 36px 0 24px;
}

.answer {
  color: #83868E;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  margin-top: 4px;
}

/* .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
} */
/* .select2-container--default .select2-selection--single .select2-selection__placeholder {
  position: relative;
  top: 3px;
} */
.floating_label .error {
  padding: 0;
  height: 4px;
  display: inline-block;
}

.mb {
  margin-bottom: 36px;
}

.mt {
  margin-top: 36px;
}

.preview_email {
  margin: 24px 0 36px;
}

.preview_email a {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.chip_container {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
  gap: 5px;
  cursor: text;
  width: 100%;
  border-bottom: 1px solid var(--grayText);
}

.chip_container input {
  flex: 1;
  padding: 0;
  margin-top: 5px;
  border: none;
  height: 22px;
}

.chip_container input:focus,
.email_chips .floated.floated_no_focus {
  border: none;
}

.typing.chip_container {
  border-bottom: 1px solid #52bd94;
}

.email_chip {
  color: #151517;
  padding: 5px 8px;
  font-size: 14px;
  font-weight: 600;
  background-color: #FFFAF1;
  border: 1px solid #FFDFA6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chip_container div {
  display: inline-flex;
  width: 100%;
}

.chip_container.active div {
  width: auto !important;
}

.email_chip .remove_chip {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  width: 14px;
  height: 14px;
  cursor: pointer;
  /* background: #83868E; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

}

.chip_list_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  /* border-bottom: 1px solid var(--grayText); */
  padding-bottom: 7px;
}

.active .chip_list_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  /* border-bottom: 1px solid var(--grayText); */
  padding-bottom: 7px;
}

.email_chips .active .floated+.floating_label,
.email_chips .active .floated+em+.floating_label {
  top: -20px;
}

.chip_container .clear_text {
  display: none !important;
}

.text_caption {
  color: #83868E;
  font-size: 12px;
  font-weight: 700;
  line-height: 142%;
  margin-top: 8px;
}



.review-landing-banner {
  background-color: var(--bodyText);
  padding: 48px 0;
}

.heading1 {
  color: #FFF;
  font-size: 46px;
  font-weight: 800;
  line-height: 120.81%;
  letter-spacing: -0.25px;
}

.sbhead {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  margin-top: 10px;
}

/* Star rating */
.good {
  background: #EBF0FF;
  color: #3366FF;
  border: 1px solid #3366FF;
}

.poor {
  background: #F8E3DA;
  color: #EE6E43;
  border: 1px solid #EE6E43;
}

.excellent {
  background: #DCF2EA;
  color: #52BD94;
  border: 1px solid #52BD94;
}

.disappointing {
  background: #F9DADA;
  color: #D14343;
  border: 1px solid #D14343;
}

.average {
  background: rgb(255 252 230);
  color: rgb(197 193 21);
  border: 1px solid rgb(197 193 21);
}

.stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  cursor: pointer;
}

.stars input {
  display: none;
}

.stars label {
  font-size: 30px;
  line-height: 1;
  color: #E6E7E8;
  transition: color 0.3s;
  cursor: pointer;
}

.stars input:checked~label {
  color: #E6E7E8;
}

.stars label:hover,
.stars label:hover~label,
.stars input:checked+label,
.stars input:checked+label~label {
  color: #F7C94F;
}

.rating-label {
  display: inline-block;
  margin-left: 24px;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.rating_list {
  margin-bottom: 36px;
}

.rating_list .form_title_wrap {
  margin-bottom: 20px;
}


/* Star rating ends */

.select2-selection__rendered li:not(:has(input)) {
  display: none;
}

.default-selected .select2-selection__rendered li:not(:has(input)) {
  display: block;
}

.form__select .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--grayText) !important
}

.all_selected_items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.selected-item {
  color: var(--bodyText);
  padding: 8px 16px;
  border: 1px solid var(--bodyText);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.custom-search-wrapper {
  padding: 10px 15px;
  position: relative;
}

.custom-dropdown-search {
  padding: 8px 30px 8px 8px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd !important;
  border-radius: 4px;
}

.clear-search {
  background: url(../../images/vendor/vendor-panel/close-modal2.svg) no-repeat no-repeat;
  background-position: center 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.multiselect-search-icon {
  background: url(../../images/vendor/vendor-panel/search-filter.svg) no-repeat no-repeat;
  background-position: center 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.remove-item {
  cursor: pointer;
  margin-left: 5px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  height: 12px;
}

/* .select2-selection__rendered:before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  display: inline-block;
  border-top: solid 6px #010101;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
  cursor: pointer;
} */


.multiselect-wrapper .form__select .select2-search {
  display: block;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  outline: 0;
  border: none;
  border-bottom: 1px solid var(--bodyText);
  border-radius: 0;
  cursor: pointer;
}


.select2-container--default .select2-selection--multiple {
  outline: 0;
  border: none;
  border-bottom: 1px solid var(--grayText);
  border-radius: 0;
  cursor: pointer;
}

.select2-results__option {
  padding-right: 20px;
  vertical-align: middle;
  position: relative;
}

.select2-results__option:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 5px;
  height: 18px;
  width: 18px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background-color: #fff;
  margin-left: 15px;
  vertical-align: middle;
}

.select2-results__option[aria-selected="true"]:before {
  content: "";
  background-color: #d90429;
  border: 1px solid #d90429 !important;
  border: 0;
  display: inline-block;
}

.select2-results__option[aria-selected="true"]:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 12px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-radius: 0;
  background-color: transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.select2-container {
  z-index: 9;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 2px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #e4e4e4;
  border-radius: 12px;
}

.disabled_input .select2-search__field {
  caret-color: #fff;
}

.select2-container .select2-search--inline {
  float: none !important;
  height: 100%;
  position: relative;
}

.select2-container .select2-search--inline:before,
.select2-selection--single .select2-selection__rendered:before {
  position: absolute;
  content: "";
  right: 0;
  top: 48%;
  transform: translateY(-48%);
  width: 0;
  display: inline-block;
  border-top: solid 6px #151517;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
}

.select2-container--open .select2-selection--single .select2-selection__rendered:before {
  transform: rotate(180deg);
  /* border-top: solid 6px var(--primary-color); */
}

.select2-container--default .select2-search--inline .select2-search__field {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  cursor: pointer !important;
}

.multiselect-wrapper .non_floating_label {
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 9;
  color: #83868E;
  font-weight: 500;
}

.vendor_custom_select+.select2-container+.select2-container .select2-results__option:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 15px;
  width: 15px;
  right: 10px;
  border: 2px solid #cdcfd2;
  border-radius: 50%;
  background-color: #fff;
  vertical-align: middle;
}

.vendor_custom_select+.select2-container+.select2-container .select2-results__option[aria-selected="true"]:after {
  position: absolute;
  content: "";
  right: 9px;
  top: 6px;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  background-color: #fff;
  height: 9px;
  width: 9px;
}

.vendor_custom_select+.select2-container .select2-selection__arrow {
  display: none;
}

.radio-group {
  display: flex;
  gap: 40px;
  align-items: center;
  font-family: sans-serif;
}

.radio-option {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #111;
  cursor: pointer;
  margin-top: 24px;
}

.radio-option input[type="radio"] {
  appearance: none;
  height: 15px;
  width: 15px;
  border: 2px solid #cdcfd2;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 7px;
  height: 7px;
  border: 4px solid var(--primary-color);
  background-color: #fff;
  border-radius: 50%;
}


.verification_wrap {
  height: calc(100vh - 100px);
  position: relative;
  margin-top: 90px;
}

.msg_card {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.msg_card .form__title {
  margin: 24px 0 12px;
}

.msg_card_para {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
}

.support_txt {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
}

.contact_support {
  font-weight: 700;
  border-bottom: 2px dotted var(--bodyText);
}

.contact_support:hover {
  color: var(--bodyText);
  border-bottom: 2px dotted transparent
}


/* Asim css start */
.image_uploaded {
  border: 1px solid #f5c0c9;
}

.primary_btn.error_btn {
  background: #f5c0c9;
  cursor: not-allowed;
}

.ck-editor__editable {
  height: 150px;
}

.ck-editor__editable li,
.ck-editor__editable ol,
.ck-editor__editable ul {
  list-style-type: inherit !important;
  padding: 0 30px !important;
}

.ck.ck-toolbar {
  border-radius: 6px 6px 0 0 !important;
}

.ck-rounded-corners .ck.ck-editor__main>.ck-editor__editable,
.ck.ck-editor__main>.ck-editor__editable.ck-rounded-corners {
  border-radius: 0 0 6px 6px !important;
}

.ck-editor__editable::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 4px;
}

.ck-editor__editable::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 12px;
}

.ck-editor+span {
  color: #83868e !important;
  padding-top: 8px;
  font-size: 10px !important;
  font-weight: 500;
}

.ck.ck-toolbar .ck.ck-toolbar__separator {
  display: none;
}

.datepicker-dropdown {
  background: #fff !important;
}

.datepicker_form_row .dropdown-menu,
.datepicker2_form_row .dropdown-menu {
  transform: none !important;
  left: 0 !important;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
}

.select2-search__field::placeholder {
  font-size: 14px;
  color: var(--grayText);
}

.select2-search__field::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--grayText);
}

.select2-search__field::-moz-placeholder {
  font-size: 14px;
  color: var(--grayText);
}

.select2-search__field:-ms-input-placeholder {
  font-size: 14px;
  color: var(--grayText);
}

.select2-search__field:-moz-placeholder {
  font-size: 14px;
  color: var(--grayText);
}

.reset_logo_btn {
  background-color: transparent;
  position: absolute;
  top: 2px;
  right: 2px;
}

.certificate_preview_file {
  padding: 0 5px;
}

.certificate_file_name {
  display: block;
  overflow-wrap: anywhere;
  font-size: 12px;
  padding: 10px 0 0;
}

.team-card-details {
  gap: 12px;
}

.team_admin_txt {
  background: #000;
  padding: 5px 12px;
  color: #fff;
  border-radius: 26px;
  font-size: 12px;
}

.star-rating {
  direction: rtl;
  font-size: 30px;
  unicode-bidi: bidi-override;
  display: inline-block;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  color: #ddd;
  cursor: pointer;
}

.star-rating input[type="radio"]:checked~label {
  color: gold;
}

.star-rating label:hover,
.star-rating label:hover~label {
  color: gold;
}

.form__select .floating_label.multiselectopenlabel {
  top: -15px;
}

.multiselect-wrapper {
  margin-top: 8px;
}

.company-tagline {
  display: block;
  color: #030303;
  font-size: 12px;
  font-weight: 500;
  line-height: 142%;
  opacity: 0.5;
  padding-top: 2px;
}

/* Asim css end */


/* fixing issues */
.select2-container--open .select2-dropdown--above {
  border-bottom: 1px solid #aaa;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  transform: translateY(-14px);
}

/* fixing issues ends*/



.nominate-banner img {
  max-width: 100%;
}

.nominate-banner a {
  display: block;
}

.profile-tab-detail,
.ranking_card {
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
}

.vendor-profile-detail.dashboard-main {
  background-color: #fffaf1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-status {
  padding: 24px;
  width: 320px;
  border-radius: var(--border-radius);
  background-color: #fffaf1;
  text-align: center;
}

.status_head {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  margin: 24px 0 8px;
}

.status_caption {
  color: #83868E;
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
}

.profile-tab {
  width: calc(100% - 320px);
  padding-left: 24px;
}

.status-progress {
  position: relative;
  width: 83px;
  height: 83px;
  margin: 0 auto;
}

.status_count {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 700;
  line-height: 147%;
}

.profile-tab .tab {
  color: #83868E;
  padding: 5px 6px;
  position: relative;
}

.profile-tab .tab:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--primary-color);
  left: 0;
  bottom: -2px;
  opacity: 0;
}

.profile-tab .tabs {
  gap: 24px;
  padding: 0;
}

.profile-tab .tab.active {
  font-weight: 700;
  border-bottom: none;
  color: var(--pending-color);
}

.profile-tab .tab.active:after {
  opacity: 1;
}

.profile-tab .tab-content {
  padding: 24px 0;
}

.profile-text {
  font-size: 14px;
  line-height: 147%;
  margin-bottom: 24px;
}

.profile-card-inner img {
  max-width: 100%;
  border-radius: 12px 12px 0 0;
  height: 198px;
  vertical-align: middle;
  transform: scale(1.004);
}

.profile-card-inner .pr_text {
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  padding: 15px;
  min-height: 146px;
}

.profile-card-inner {
  border-radius: 12px;
  background-color: #fff;
  overflow: hidden;
}

.pr_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_title {
  margin: 0 0 15px;
}

.card_title .h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primaryText);
}

.profile_card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.profile-card-inner>a {
  display: block;
}

.card_title p {
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  color: var(--bodyText);
  margin: 8px 0 24px;
}

.ml {
  margin-left: 16px;
}

.ranking_hd_panel {
  border-bottom: 1px solid var(--bodyText);
  padding: 0 24px 24px;
}

.ranking_head {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 800;
  line-height: 160%;
}

.ranking_card {
  margin-top: 16px;
}

.ranking_list {
  border-bottom: 1px dashed #DADBDD;
  padding: 24px;
}

.ranking_list:last-child {
  border: none;
}

.ranking_title,
.ranking_status span {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}

.ranking_title {
  border-bottom: 1px solid #fff;
}

.ranking_title:hover {
  border-bottom: 1px solid var(--bodyText);
  color: var(--bodyText);
}

.ranking_status span {
  padding-left: 16px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 22px;
  margin: 5px 4px;
  height: 6px;
  background: #FFDFA6;
}

.nominate-slider.owl-theme .owl-dots .owl-dot.active span,
.nominate-slider.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--bodyText);
}



.vi_header {
  padding-bottom: 36px;
}

.btn_wrapper {
  gap: 8px;
}

.card_bg {
  padding: 36px 24px;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: 8px 8px 0 0;
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.table-container thead {
  background-color: #000;
}

.table-container thead th {
  padding: 12px 24px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 147%;
  text-transform: uppercase;
  width: 25%;
}

.table-container tbody td {
  padding: 12px 16px;
}

.table-container tbody tr {
  background-color: #fff;
}

.table-container tbody tr:nth-child(even) {
  background-color: #F3F3F4;
}

.table-container a {
  color: var(--bodyText);
  border-bottom: 2px dotted var(--bodyText);
}

.table-container a:hover {
  border-bottom: 2px dotted transparent;
}

.lead_generation {
  background-color: #0F5156;
  border-radius: 0 0 12px 12px;
  padding: 36px 24px;
}

.inactive_lead_generation {
  background-color: #F3F3F4;
  border-radius: 0 0 12px 12px;
  padding: 36px 24px;
}

.form_subhead_lw {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  margin-bottom: 16px;
}

.inactive_lead_generation .lead_card {
  background-color: #FFFFFF;
}

.lead_card {
  background-color: #D3F5F7;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.lead_card_grid .primary_btn {
  display: inline-flex;
  width: max-content;
}

.lead_card_head {
  color: var(--bodyText);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}

.lead_card_subhd {
  color: var(--bodyText);
  font-size: 14px;
  font-weight: 500;
  line-height: 147%;
  margin: 4px 0 24px;
}

.lead_card_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
}

.wht {
  color: #fff;
}

.lead_generation .form_subhead {
  font-weight: 500;
}

.lead-icon {
  margin-bottom: 12px;
  display: block;
}

.audience-insights-cta {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 9;
  transform: translate(-50%, -50%);
  width: 100%;
  border-top: 2px solid rgba(217, 4, 41, 0.00);
  border-bottom: 2px solid rgba(217, 4, 41, 0.00);
  background: #FDF2F4;
  padding: 36px 24px;
}

.insight-cta-inner .dialog_para {
  max-width: 460px;
  margin: 4px auto 24px;
}

.audience-insights-cta:before,
.audience-insights-cta:after {
  background: radial-gradient(ellipse at center, #d00629 0%, rgba(255, 0, 43, 0.2) 60%, transparent 70%);
  position: absolute;
  content: "";
  height: 3px;
  width: 100%;
  left: 0;
  right: 0;
}

.audience-insights-cta:before {
  top: -2px;
}

.audience-insights-cta:after {
  bottom: -2px;
}

.loading td,
.loading td a {
  position: relative;
  color: transparent;
  border-bottom: none;
}

.loading td:before {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #E6E7E8;
  border-radius: 4px;
  pointer-events: none;
  width: 120px;
  height: 12px;
}

.loading tbody tr:nth-child(even) td:before {
  background-color: #DADBDD;
}

.table-container .loading tbody tr:nth-child(even) {
  background-color: #F3F3F4;
}


.form_group_row .select2-dropdown {
  z-index: 9;
  width: 100% !important;
}

.ck-content p {
  line-break: anywhere;
  word-wrap: break-word;
}

.form_sec_left {
  min-height: 500px;
}

.form_sec_right {
  overflow: hidden;
}



.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: var(--primary-color) !important;
}


.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-image: linear-gradient(to bottom, #d90429, #d90429);
}



.vendor-main#add_new_certificate_panel,
#all_success_stories,
#all_press_releases,
#all_interviews {
  border: none;
}

.no-bottom-border {
  border: none;
}

.table-container .pagination-sec{
  padding-bottom: 0;
}

@media screen and (max-width: 1899px) {
  .form_main {
    padding: 25px;
    width: 520px;
  }

  .borderTop {
    max-height: 435px;
  }

  #service-slider-wrap.borderTop {
    max-height: 518px;
  }
}

@media screen and (max-width: 1680px) {
  .borderTop {
    max-height: 445px;
  }

  .form_main {
    width: 480px;
  }

  .right_img_caption {
    font-size: 36px;
  }

  .tab_btn {
    font-size: 16px;
    padding: 10px 32px;
  }

  .floating_input,
  .form__row .select2-container .select2-selection--single {
    height: 38px;
  }

  .right_img_caption {
    font-size: 34px;
  }

  .unable_signup {
    top: 15px;
    right: 15px;
  }

  .form_tab {
    padding: 10px 0 22px;
  }

  .or-seperator {
    margin: 22px 0 15px;
  }

  .line_gap {
    margin-bottom: 25px;
  }

  .floated+.floating_label,
  .floated+em+.floating_label {
    top: -15%;
  }

  .mb0 {
    margin-bottom: 0;
  }

  .clear_text {
    top: 10px;
  }

  .form_search:before {
    top: 12px;
  }

  .form__row {
    grid-column-gap: 20px;
  }

  .vendor-sidebar {
    width: 275px;
  }

  .vendor-profile-detail {
    width: calc(100% - 275px);
  }

  .verification-badge span {
    font-size: 11px;
  }

  .company-name {
    font-size: 16px;
  }

  .sidebar {
    width: 215px;
  }

  .content-area {
    width: calc(100% - 215px);
  }

  .note-text {
    font-size: 13px;
  }

  .form__title {
    font-size: 20px;
  }

  .upload_right .logo_info {
    font-size: 13px;
  }

  .upload_right .logo_description {
    font-size: 11px;
  }

  .country-name {
    font-size: 16px;
  }

  .badge {
    font-size: 11px;
  }

  .card-details p {
    font-size: 13px;
  }

  .vendor-prfile-wrap .back_btn {
    font-size: 12px;
  }

  .team-management {
    margin-top: 60px;
  }

  .card-main_hd {
    font-size: 16px;
  }

  .card-grid {
    margin: 80px 40px;
  }

  .review-card {
    gap: 28px;
  }

  .vendor-main {
    min-height: 550px;
  }

  .head3 {
    font-size: 16px;
  }

  .heading1 {
    font-size: 32px;
  }

  .sbhead,
  .status_caption {
    font-size: 13px;
  }

  .profile-status {
    width: 280px;
  }

  .profile-tab {
    width: calc(100% - 280px);
  }

  .status_head {
    font-size: 16px;
  }

  .card_title p {
    font-size: 13px;
  }

  .profile-tab .tabs {
    gap: 16px;
  }

  .card_title .h4 {
    font-size: 16px;
  }

  .table-container table,
  .table-container thead th {
    font-size: 12px;
  }

}

@media screen and (max-width: 1550px) {
  .borderTop {
    max-height: 510px;
  }

  .card-grid {
    margin: 80px 0;
  }

  .tab-button {
    font-size: 12px;
  }

  .review-card-head,
  .ques_wrapper p,
  .answer {
    font-size: 13px;
  }

  .recommend span,
  .approval-pending span {
    font-size: 11px;
  }

  .profile-tab .tab {
    font-size: 12px;
  }

  .ranking_title,
  .ranking_status span {
    font-size: 16px;
  }


}

@media screen and (max-width: 1440px) {
  .mb0 {
    margin-bottom: 0;
  }

  .form_main {
    padding: 20px 25px;
  }

  .tab_btn {
    font-size: 14px;
    padding: 10px 32px;
  }

  .floating_input,
  .form__row .select2-container .select2-selection--single {
    height: 36px;
  }

  .right_img_caption {
    font-size: 32px;
  }

  .line_gap {
    margin-bottom: 20px;
  }

  .policy_info,
  .signup_info,
  .forgot_password,
  .form_text,
  .unable_signup {
    font-size: 12px;
  }

  .unable_signup {
    top: 10px;
    right: 10px;
  }

  .form_tab {
    padding: 10px 0 22px;
  }

  .or-seperator {
    margin: 22px 0 15px;
  }

  .profile_subtext,
  .primary_link {
    font-size: 12px;
  }

  .img_caption {
    font-size: 18px;
  }

  .google_text {
    font-size: 16px;
  }

  .sidebar-nav-txt {
    font-size: 13px;
  }

  .sidebar-list-nav a {
    font-size: 12px;
  }

  .form__title {
    font-size: 18px;
  }

  .floating_input,
  .floating_label,
  .dot_ln_btn,
  .form__row .select2-selection__placeholder,
  .form__row .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
  }

  .leadership_panel {
    min-height: 550px;
  }

  .card_flx {
    padding: 0 70px 0 45px;
  }

  .icon-location {
    top: 3px;
  }

  .card-actions {
    gap: 18px;
  }

  .vendor-main {
    min-height: 520px;
  }

  .card-grid {
    gap: 20px;
  }

  .primary_btn,
  .secondry_btn,
  .card_title p {
    font-size: 12px;
  }

  .primary_btn img,
  .secondry_btn img {
    margin-right: 6px;
    transform: scale(.9);
  }

  .review-columns>div {
    padding: 20px 15px;
  }

  .rating-item strong,
  .review-date span {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {

  .onboarding_wrap,
  .onboarding_form_bg {
    flex-direction: column;
  }

  .right_img_caption {
    font-size: 18px;
    line-height: 130%;
    padding: 50px 15px 20px;
  }

  .onboarding_img_bg {
    display: none;
  }

  .onboarding_wrap {
    margin-top: 59px;
  }

  .onboarding_form_bg {
    width: 100%;
    height: auto;
  }

  .tab_btn {
    font-size: 12px;
    padding: 10px 12px;
  }

  .form_main {
    width: 100%;
    margin: 0 15px;
    padding: 20px 15px;
  }

  .profile_box {
    padding: 10px 5px 10px 10px;
  }

  .profile_img {
    padding: 15px;
  }

  .profile_head {
    font-size: 12px;
    line-height: 130%;
    padding-bottom: 0;
  }

  .profile_box .profile_list:not(:last-child) {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .profile_status {
    padding: 1px 5px;
    margin-left: 10px;
    font-size: 10px;
  }

  .profile_text .dp_flx {
    padding-bottom: 6px;
  }

  .password_has_text .eye_icon {
    right: 22px;
  }

  .modal_container {
    width: calc(100% - 30px) !important;
  }

  .otp_input_list {
    gap: 10px;
  }

  .auth_modal,
  .left_form {
    padding: 20px;
  }

  .fill_form,
  .back_btn {
    font-size: 14px;
  }

  .back_btn {
    margin-bottom: 24px;
  }

  .otp_input {
    width: 36px;
  }

  .right_graphic {
    display: none;
  }

  .left_form {
    width: 100%;
  }

  .dialog_head {
    font-size: 18px;
  }

  .modal_logo {
    width: 42px;
    height: 42px;
    margin: 0 auto 20px;
  }

  .main__wrapper {
    margin: 45px 0 15px;
  }

  .heading1 {
    font-size: 32px;
  }

  .step_num {
    font-size: 11px;
    width: 20px;
    height: 20px;
    margin-left: 0;
  }

  .formStep:not(:last-child):after {
    width: 16px;
    height: 10px;
    right: 2px;
  }

  .formStep {
    padding-right: 22px;
  }

  .step_head {
    font-size: 12px;
    margin-left: 5px;
  }

  .multistep_progress {
    top: 45px;
  }

  .form__title {
    font-size: 20px;
    line-height: 142%;
    margin-bottom: 10px;
    display: block;
  }

  .stars label {
    font-size: 24px;
  }

  .stars {
    gap: 2px
  }

  .rating-label {
    margin-left: 20px;
  }
  .rating_list:last-child {
    margin-bottom: 0;
  }
  .form__row.col1 {
    margin-top: 20px;
  }
  .d-block .form_col {
    width: 100%;
  }
  .remove-item {
    height: 10px;
  }
  .selected-item {
    padding: 8px 10px;
  }
  .radio-option {
    margin-top: 15px;
  }

  .vendor-prfile-wrap .back_btn,
  .form_section_main .back_btn {
    font-size: 12px;
  }
  .col-grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .form__row {
    grid-row-gap: 30px
  }
}