.adqsc-error-msg:not(.adqs-active),
.adqsc-success-msg:not(.adqs-active) {
  display: none;
}
.adqs-form-field input[type="text"],
.adqs-form-field input[type="tel"],
.adqs-form-field input[type="email"],
.adqs-form-field select {
  max-width: 100%;
  width: 100% !important;
  padding: 5px 10px !important;
  border: 1px solid #ebecf1 !important;
  /* margin-bottom: 8px; */
  font-size: 16px;
  height: 42px;
}
.adqsc-error-msg,
.adqsc-success-msg {
  font-size: 14px;
  font-style: italic;
  padding: 10px;
  line-height: 1;
}
.adqsc-error-msg {
  color: #ff0000;
}
.adqsc-success-msg {
  color: #008000;
}
.adqs-claim-listing-btn-wrapper,
.adqs-claim-form-wrapper {
  position: relative;
}
.adqs-claim-form {
  position: absolute;
  top: 100%;
  width: 350px;
  right: 0;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  max-height: 380px;
  overflow-y: auto;
  margin-top: 52px;
  z-index: 99;
}
.adqs-claim-listing-btn-wrapper:not(.adqs-active) .adqs-claim-form-wrapper,
.adqs-claim-listing-btn-wrapper:not(.adqs-active) .adqs-claim-form {
  visibility: hidden;
  opacity: 0;
}

.adqs-claim-form-wrapper:before {
  content: "";
  border: 20px solid transparent;
  border-bottom-color: #d0deff;
  position: absolute;
  top: -35px;
  border-left-width: 12px;
  border-right-width: 12px;
  transition: all 0.3s ease-in-out;
  right: 20px;
}
.adqs-claim-form-wrapper > h3 {
  background: #d0deff;
  box-shadow: 0px 20px 96px rgba(0, 0, 0, 0.12);
  border-radius: 3px 3px 0px 0px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  padding: 15px 10px;
  margin: 0;
  width: 350px;
  position: absolute;
  right: 0;
  top: 100%;
}
.adqs-claim-form .adqs-form-field {
  padding: 12px;
}
.adqs-claim-form
  .adqs-form-field
  + .adqs-form-field:not(.adqs-claim-submit-wrapper) {
  padding-top: 0;
}
.adqs-claim-form label {
  color: #1f2023;
  font-weight: 600;
  margin-bottom: 2px;
}
.adqs-claim-form label .requred {
  color: #ff0000;
}
.adqs-claim-form input[type="file"] {
  padding: 1em;
  border: 2px dashed #e9e9e9;
  background-color: #fff;
  width: 100%;
}

.adqs-claim-form input[type="file"]::file-selector-button {
  padding: 5px 20px;
  border-width: 0;
  border-radius: 10px;
  background-color: #1e90ff;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  margin-right: 1em;
  font-size: 16px;
}
.adqs-claim-submit-wrapper button,
.adqs-claim-submit-wrapper a {
  padding: 3px 20px;
  background: #f7f7f7;
  border-radius: 5px;
  transition: all 0.03s ease-in;
  font-size: 16px;
}
.adqs-claim-submit-wrapper .adqs-claim-cancel {
  color: #ff0000;
}
.adqs-claim-submit-wrapper .adqs-claim-submit {
  background: #0062ff;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.adqs-claim-submit-wrapper :hover {
  opacity: 0.8;
}
.adqs-claim-submit-wrapper {
  display: flex;
  gap: 10px;
  border-top: 2px solid #f7f7f7;
  padding-top: 20px;
  margin-top: 5px;
}
.adqs-field-choose-paln a {
  font-size: 14px;
  color: var(--color-primary, #0062ff);
  padding: 0;
  line-height: 1;
  position: relative;
  top: -8px;
}
.adqs-field-choose-paln a i {
  font-size: 15px;
}
.adqs-claim-desc {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
  font-style: italic;
}
.adqs-loader-spinner {
  border: 0.1em solid currentcolor;
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: 1s loader_spinner linear infinite;
  width: 15px;
  height: 15px;
  display: none;
}

.adqs-claim-submit.adqs-ajax-loading .adqs-loader-spinner {
  display: inline-block;
}
@keyframes loader_spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
