textarea {
  resize: none;
}
.products-api-wrapper {
  width: 95%;
  max-width: 1520px;
  margin: 25px auto auto auto;
}

.products-api-content {
  display: flex;
  justify-content: space-between;
}

.products-api-content-left {
  width: 56.25%;
  max-width: 855px;
}

.product-api-descr {
  width: 100%;
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
  color: #000;
  margin-bottom: 35px;
}

.prodcts-api-left-bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.product-api-search-form {
  width: 48.5%;
  max-width: 415px;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.product-api-textarea {
  height: 400px;
  width: 100%;
  box-sizing: border-box;
  padding-left: 10px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 5px;
  border: 1px solid #000;
  padding: 10px 10px 70px 10px;
}

.product-api-results {
  width: 48.5%;
  max-width: 415px;
}

.product-api-result {
  margin-bottom: 6px;
}

.product-result-title {
  width: 100%;
  position: relative;
  height: 26px;
  font-size: 11px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  padding-left: 18px;
  background-color: #000;
  box-sizing: border-box;
  letter-spacing: 1.1;
}

.product-result-title::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 8px;
  z-index: 1;
  background: url('../images/bottom-right-arrow.svg') no-repeat center
    center/100%;
  top: 9px;
  right: 10px;
}

.product-result-title.rotate-icon::after {
  transform: rotate(180deg);
}

.product-result-info {
  width: 100%;
  height: 340px;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #f6f6f6;
  padding: 14px 18px 14px 18px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  box-sizing: border-box;
  display: none;
  scrollbar-width: thin;
}

.product-result-info::-webkit-scrollbar {
  position: absolute;
  width: 5px;
  height: 0;
}

.product-result-info-webkit-scrollbar-thumb {
  position: absolute;
  background-color: #e3e4e8;
  border-radius: 0.25rem;
}
.product-result-info.show {
  display: block;
}

.product-result-info div {
  text-transform: capitalize;
}

.product-result-info div:not(:first-child) {
  margin-top: 10px;
}

.products-api-form {
  width: 33%;
  position: relative;
  max-width: 503px;
  border: 1px solid #000;
}

.buttons-wrap {
  display: flex;
  justify-content: flex-end;
  margin-right: 0;
}

.submit-button {
  height: 26px;
  line-height: 26px;
  padding: 0 34px;
  box-sizing: border-box;
  background-color: #000;
  border: none;
  outline: none;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
}

.clear-button {
  height: 26px;
  line-height: 26px;
  padding: 0 34px;
  box-sizing: border-box;
  background-color: #fff;
  border: none;
  outline: none;
  font-size: 11px;
  font-weight: 900;
  color: #000;
}

.send-button {
  position: absolute;
  right: 0;
  height: 36px;
  line-height: 36px;
  padding: 0 34px;
  box-sizing: border-box;
  background-color: #000;
  border: none;
  outline: none;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  bottom: -44px;
}

.products-api-form-title,
.api-success-title {
  width: 100%;
  height: 35px;
  position: relative;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  line-height: 35px;
  font-size: 14px;
  font-weight: 900;
  padding-left: 55px;
}

.products-api-form-title::after,
.api-success-title::after {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  z-index: 1;
  background: url('../images/form-title-icon.svg') no-repeat center center/100%;
  top: 9px;
  left: 22px;
}

.product-api-form-container {
  padding: 23px 0 65px 0;
  background-color: #f6f6f6;
  height: calc(100% - 35px);
  box-sizing: border-box;
}

.inputs-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: 22px;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.input-wrapper.first-input-wrapper {
  margin-right: 22px;
}

.label {
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
  color: #878787;
  margin-bottom: 5px;
}

.form-input {
  width: 220px;
  height: 26px;
  border: 1px solid black;
  padding: 4px 7px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 18px;
  color: #000;
}

.error-message {
  display: none;
  color: #ff4c4c;
  font-size: 11px;
  line-height: 15px;
  font-weight: 700;
  margin-top: 5px;
}

.error-message.show {
  display: block !important;
}

.textarea-container {
  width: calc(100% - 42px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin-right: 20px;
  margin-left: 22px;
}

.textarea-input {
  width: 100%;
  height: 168px;
  border: 1px solid black;
  padding: 4px 7px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 18px;
  color: #000;
}

.g-recaptcha {
  margin-top: 16px;
  margin-left: 22px;
}

.about-our-users-descr {
  font-size: 13px;
  line-height: 18px;
  color: #000;
  font-style: italic;
  font-weight: 500;
  margin-top: 14px;
  margin-left: 22px;
}

.footer-1-wrapper {
  width: 95%;
  margin: auto;
  max-width: 1724px;
  box-sizing: border-box;
}

@media only screen and (min-width: 993px) {
  .footer-1-wrapper {
    border-right: 1px solid #c5c5c5;
    border-left: 1px solid #c5c5c5;
  }
}

.footer-1-wrapper .footer-1 {
  width: 100%;
  margin-bottom: 0;
  padding-top: 70px;
  padding-bottom: 50px;
}

.main-title {
  font-size: 25px;
  color: #000;
  font-weight: 700;
  margin-bottom: 55px;
  position: relative;
}

.main-title::after {
  position: absolute;
  width: 100px;
  height: 3px;
  content: '';
  left: 0;
  bottom: -42px;
  background-color: #000;
}

.content-heading {
  font-size: 15px;
  line-height: 25px;
  color: #000;
  font-weight: 700;
}

.content-item {
  font-size: 15px;
  line-height: 25px;
  color: #000;
}

.text-bold {
  font-weight: 700;
}

.content-item a {
  text-decoration: none;
  color: #000;
}

.modal-layer {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
  height: 100%;
}

.modal-layer.hide {
  display: none;
}

.api-success-wrap {
  width: 90%;
  margin: auto;
  position: relative;
  max-width: 502px;
  box-sizing: border-box;
  border: 1px solid #000;
}

.api-success-wrap.hide {
  display: none;
}

.api-success-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
  padding-top: 133px;
  padding-bottom: 175px;
}

.api-success-image {
  width: 100px;
}

.api-success-descr {
  width: 80%;
  max-width: 306px;
  margin: 20px auto auto auto;
  font-size: 15px;
  line-height: 25px;
  color: #000;
  font-weight: 400;
  text-align: center;
}

.api-close-modal {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 106px;
  height: 36px;
  line-height: 36px;
  background-color: #000;
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

@media only screen and (max-width: 992px) {
  .content-heading,
  .content-item {
    font-size: 13px;
  }

  .main-title {
    font-size: 15px;
  }

  .footer-1-wrapper .footer-1 {
    padding-top: 0;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 1200px) {
  .products-api-content {
    flex-direction: column;
    align-items: center;
  }

  .products-api-content-left {
    width: 100%;
  }

  .products-api-form {
    margin-top: 17px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .prodcts-api-left-bottom {
    flex-direction: column;
    align-items: center;
  }

  .product-api-search-form {
    width: 100%;
    max-width: 503px;
  }

  .product-api-results {
    width: 100%;
    max-width: 503px;
  }
}

.recaptcha {
  margin-top: 10px;
  margin-left: 22px;
}
