.supplier-portal-header {
  display: flex;
  width: 100%;
  margin-top: 20px;
  background: #ecf3fb;
  justify-content: space-between;
  align-items: center;
  padding: 0 132px;
  border-radius: 20px;
  box-sizing: border-box;
}
.supplier-portal-header__text {
  font-size: 32px;
  color: #344b6f;
  font-weight: 700;
  margin-top: 48px;
  line-height: normal;
}
.supplier-portal-text {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-top: 40px;
  margin-bottom: 60px;
}
.supplier-portal-steps {
  margin-bottom: 60px;
}
.supplier-portal-steps__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 48px;
}
.supplier-portal-steps__wrapper {
  display: flex;
  justify-content: space-between;
}
.supplier-portal-steps__item {
  width: 280px;
  text-align: center;
}
.supplier-portal-steps__number {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 20px;
  background: #0069AB;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 100px;
}
.supplier-portal-steps__text {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.supplier-portal-hint {
  border-radius: 20px;
  background: #ecf3f9;
  padding: 15px 30px;
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
  box-sizing: border-box;
}
.supplier-portal-hint__text {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}
.supplier-portal-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border: 1px solid #0069ab;
  border-radius: 20px;
  margin-bottom: 60px;
}
.supplier-portal-example__text {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.supplier-portal-example__tag {
  color: #ff8400;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  padding: 12px 16px;
  max-width: 300px;
  text-align: center;
  border: 2px solid #ff8400;
  display: inline-block;
  border-radius: 10px;
  box-sizing: border-box;
}
.supplier-portal-advantages {
  margin-bottom: 60px;
}
.supplier-portal-advantages__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 40px;
}
.supplier-portal-advantages__wrapper {
  display: flex;
  justify-content: space-between;
}
.supplier-portal-advantages__item {
  width: 220px;
  text-align: center;
}
.supplier-portal-advantages__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}
.supplier-portal-advantages__icon img {
  width: 100%;
  height: 100%;
}
.supplier-portal-advantages__text {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.supplier-portal-text-2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 60px;
}
.supplier-portal-send {
  border-radius: 20px;
  background: #ffeedb;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.supplier-portal-send__text {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.supplier-portal-send__button {
  border-radius: 10px;
  background: #ff8400;
  height: 60px;
  width: 328px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.supplier-portal-send__button span {
  margin-right: 14px;
}
.supplier-portal-download {
  display: flex;
  text-decoration: none;
  color: #000;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid #0069ab;
  gap: 20px;
  height: 80px;
  margin-bottom: 100px;
  font-size: 18px;
  line-height: 24px;
}
.supplier-portal-download__text {
  font-weight: 500;
}
.supplier-portal-download__link {
  text-decoration: underline;
  color: #0069AB;
  font-weight: 600;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: .3s all ease-out;
}
.modal.opened {
  opacity: 1;
  visibility: visible;
}
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.30);
}
.modal-window {
  border-radius: 10px;
  position: relative;
  padding: 30px;
  width: 600px;
}
.modal-form-consult .modal-window {
  background: #ecf3f9;
  padding: 30px;
}
.modal-success .modal-window {
  background: #fff;
  padding: 40px;
}
.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.modal-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 32px;
  text-align: center;
}
.modal-form-label {
  display: block;
  margin-bottom: 20px;
}
.modal-form-label-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #686b74;
  margin-bottom: 8px;
}
.modal-form-label-text span {
  color: #EB5757;
}
.modal-form-input {
  width: 100%;
  height: 42px;
  border-radius: 5px;
  background: #fff;
  border: none;
  padding: 0 14px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
}
.modal-form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}
.modal-form-textarea {
  width: 100%;
  height: 88px;
  border-radius: 5px;
  background: #fff;
  border: none;
  padding: 12px 14px;
  box-sizing: border-box;
  outline: none;
  font-size: 14px;
  font-family: Montserrat;
  resize: none;
}
.modal-form-textarea:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}
.modal-submit-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.modal-submit {
  padding: 14px 24px;
  border-radius: 4px;
  background: #0069ab;
  color: #fff;
  border: 0;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  font-family: Montserrat;
  font-weight: 600;
}
.modal-submit--width {
  width: 180px;
  text-align: center;
}
.modal-bottom-text {
  color: #686b74;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
}
.modal-bottom-text a {
  color: #0069ab;
  text-decoration: none;
}
.modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-wrapper-img {
  margin-bottom: 32px;
}
.modal-wrapper-title-success {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.modal-wrapper-text-success {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  margin-bottom: 20px;
}
.modal-success .modal-submit-wrapper {
  margin-bottom: 0;
}
.popup_content--supplier_portal_form {
  background: #ecf3f9 !important;
}
.feedback__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
}

@media (max-width: 1400px) {
  .supplier-portal-header {
    padding-left: 48px;
    padding-right: 0;
    overflow: hidden;
  }
  .supplier-portal-advantages__wrapper {
    flex-wrap: wrap;
  }
  .supplier-portal-advantages__item {
    width: 33.33%;
    padding-bottom: 40px;
  }
  .supplier-portal-advantages {
    margin-bottom: 20px;
  }
  .supplier-portal-advantages__text {
    max-width: 260px;
    margin: 0 auto;
  }
  .supplier-portal-example {
    flex-direction: column;
  }
  .supplier-portal-example__info {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .supplier-portal-steps__item {
    flex: 1;
    width: auto;
  }
  .supplier-portal-steps__wrapper {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .supplier-portal-steps__title {
    margin-bottom: 40px;
  }
  .supplier-portal-steps__number {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 32px;
  }
  .supplier-portal-advantages__icon {
    width: 80px;
    height: 80px;
  }
  .modal-window {
    overflow: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    max-height: calc(100% - 40px);
    height: max-content;
    box-sizing: border-box;
  }
  .modal {
    align-items: normal;
  }
  .supplier-portal-text {
    font-size: 18px;
  }
}

@media (max-width: 850px) {
  .supplier-portal-header {
    flex-direction: column;
  }
  .supplier-portal-header__logo {
    margin-top: 32px;
  }
  .supplier-portal-header__logo img {
    width: 220px;
  }
  .supplier-portal-header__text {
    font-size: 28px;
    margin-bottom: 32px;
    margin-top: 32px;
  }
  .supplier-portal-text {
    font-size: 16px;
  }
  .supplier-portal-steps__wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .supplier-portal-steps__item {
    display: flex;
    align-items: center;
  }
  .supplier-portal-steps__number {
    margin-right: 24px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .supplier-portal-steps__text {
    flex: 1;
    text-align: left;
    font-size: 14px;
  }
  .supplier-portal-hint__text {
    font-size: 14px;
  }
  .supplier-portal-example {
    padding: 32px;
  }
  .supplier-portal-example__text {
    margin-bottom: 32px;
  }
  .supplier-portal-advantages__wrapper {
    flex-direction: column;
  }
  .supplier-portal-advantages__item {
    width: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 32px;
  }
  .supplier-portal-advantages__text {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
  .supplier-portal-advantages__icon {
    flex-shrink: 0;
    margin-right: 24px;
    margin-bottom: 0;
  }
  .supplier-portal-advantages {
    margin-bottom: 28px;
  }
  .supplier-portal-text-2 {
    font-size: 20px;
  }
  .supplier-portal-send {
    flex-direction: column;
    padding: 24px;
  }
  .supplier-portal-send__text {
    font-size: 18px;
    text-align: center;
  }
  .supplier-portal-send__button {
    width: 100%;
  }
  .supplier-portal-download {
    font-size: 16px;
    padding: 0 24px;
  }
  .supplier-portal-example__img {
    max-width: 100%;
  }
  .supplier-portal-example__img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .supplier-portal-header__logo img {
    width: 180px;
  }
  .supplier-portal-header {
    padding: 0 32px;
  }
  .supplier-portal-header__text {
    font-size: 24px;
  }
  .supplier-portal-text {
    margin-top: 24px;
    font-size: 14px;
    margin-bottom: 48px;
  }
  .supplier-portal-steps__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .supplier-portal-steps__number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    margin-right: 16px;
  }
  .supplier-portal-steps__wrapper {
    gap: 24px;
  }
  .supplier-portal-steps__text br {
    display: none;
  }
  .supplier-portal-steps {
    margin-bottom: 48px;
  }
  .supplier-portal-hint {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 50px;
  }
  .supplier-portal-hint__icon {
    width: 32px;
    height: 32px;
  }
  .supplier-portal-hint__icon img {
    width: 100%;
    height: 100%;
  }
  .supplier-portal-example {
    padding: 25px 16px 0;
    margin-bottom: 48px;
  }
  .supplier-portal-example__text {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .supplier-portal-example__tag {
    font-size: 16px;
  }
  .supplier-portal-example__info {
    margin-bottom: 26px;
  }
  .supplier-portal-advantages__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .supplier-portal-advantages__icon {
    width: 60px;
    height: 60px;
    margin-right: 16px;
  }
  .supplier-portal-advantages__item {
    padding-bottom: 24px;
  }
  .supplier-portal-advantages__text {
    font-size: 14px;
  }
  .supplier-portal-advantages {
    margin-bottom: 24px;
  }
  .supplier-portal-text-2 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 48px;
  }
  .supplier-portal-send {
    padding: 16px;
    gap: 20px;
    margin-bottom: 24px;
  }
  .supplier-portal-send__button {
    font-size: 16px;
  }
  .supplier-portal-send__button img {
    width: 24px;
  }
  .supplier-portal-download {
    flex-direction: column;
    height: auto;
    padding: 20px;
    margin-bottom: 80px;
  }
  .supplier-portal-download__link {
    font-size: 20px;
    line-height: 24px;
  }
  .supplier-portal-download__text {
    font-size: 14px;
    text-align: center;
  }
  .supplier-portal-send__text {
    font-size: 16px;
  }
  .supplier-portal-header__img {
    margin-left: -32px;
    margin-right: -32px;
  }
}