@import url('https://fonts.cdnfonts.com/css/outfit?styles=138058,138054,170154,138062,138055,138057,138059,138060,138061,138056');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  list-style-type: none;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  color: #1d1e1c;
}

input[type="radio"],
input[type="checkbox"],
input[type="file"]{
  display: none;
}

textarea{
  resize: none;
}

body{
  background: #fffff6;
}

.wrapper {
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 16px;
}

.header{
  padding: 57px 0 82px;
}

.header__logo{
  flex-grow: 1;
  text-align: center;
}

.header__content{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.btn-help{
  position: fixed;
  top: 58px;
  right: 130px;
  border: 2px solid #1d1e1c;
  border-radius: 60px;
  padding: 25px 36px;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  background: #bcff33;
  transition: .3s;
}

.btn-help:hover{
  background: #dcff94;
}

.form__container {
  max-width: 800px;
  width: 100%;
}

.form__title{
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.form__text{
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 16px;
}

.form-section{
  margin: 44px 0;
}

.form-section__title{
  display: inline-block;
  font-weight: 600;
  font-size: 24px;
  background: #bcff33;
  padding: 0 4px;
  margin-bottom: 16px;
}

.form-group{
  position: relative;
  margin-bottom: 24px;
}

.form-group__label{
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}

.form-group__input{
  width: 100%;
  border: 1px solid rgba(29, 30, 28, 0.16);
  border-radius: 12px;
  background: #fff;
  padding: 19px 20px 20px;
  transition: .3s;
  font-weight: 300;
  font-size: 18px;
}

.form-group__input:focus{
  border: 1px solid rgba(29, 30, 28, 0.5);
}

.form-group__input.ready{
  background: #fff url("../img/check-input.svg") no-repeat 97% center;
  transition: 0s;
}

.form-group__input.error{
  border: 1px solid #c12121;
}

.form-group__input::placeholder{
  font-weight: 300;
  font-size: 18px;
  color: rgba(29, 30, 28, 0.2);
}

.choices{
  margin-bottom: 0;
}

.choices__inner{
  border: 1px solid rgba(29, 30, 28, 0.16);
  border-radius: 12px;
  background: #fff;
  padding: 18px 20px;
  font-weight: 300;
  font-size: 18px;
}

.choices[data-type*=select-one] .choices__inner{
  padding: 15px 20px 16px;
}

.choices__list--dropdown .choices__item--selectable:after{
  display: none;
}

.choices__list--dropdown .choices__item{
  padding: 20px;
  font-weight: 300;
  font-size: 18px;
}

.choices__list--dropdown .choices__item:not(:last-child){
  border-bottom: 1px solid rgba(29, 30, 28, 0.16);
}

.choices[data-type*=select-one]:after{
  background: url("../img/arrow-down.svg") no-repeat center;
  width: 32px;
  height: 32px;
  right: 20px;
  top: 30%;
  border: none;
}

.choices.is-open.is-focused .choices__inner{
  border-radius: 12px 12px 0 0;
}

.choices[data-type*=select-one] .choices__button{
  display: none;
}

.is-focused .choices__inner, .is-open .choices__inner,
.is-open .choices__list--dropdown{
  border-color: rgba(29, 30, 28, 0.16);
}

.choices.active .choices__inner{
 background: rgba(158, 218, 35, 0.3);
}

.choices__inner.error{
  border: 1px solid #c12121;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted{
  background: rgba(158, 218, 35, 0.3);
}

.choices__list--dropdown .is-selected.choices__item--selectable{
  background: rgba(158, 218, 35, 0.3);
}

.is-open .choices__inner{
  border-radius: 12px 12px 0 0;
}

.choices[data-type*=select-one].is-open:after{
  transform: rotate(180deg);
  top: 35%;
}

.form-group__label span{
  color: #c12121;
}

.input-date{
  background: #fff url("../img/arrow-down.svg") no-repeat 97% center;
  transition: 0s;
}

.input-date:focus{
  background: #fff url("../img/arrow-up.svg") no-repeat 97% center;
}

.input-date.ready{
  background: #fff url("../img/check-input.svg") no-repeat 97% center;
}

.col .input-date{
  background-position: 91%;
}

.air-datepicker-cell.-selected-{

  color: #1d1e1c;
}

.air-datepicker-cell{
  font-weight: 300;
  font-size: 18px;
}

.air-datepicker-cell.-selected-.-current-{

  color: #1d1e1c;
  border-radius: 50px;
}

.form-group-inner{
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.col{
  width: 50%;
  flex-grow: 1;
}

.input-radio-label{
  display: block;
  width: 100%;
  border: 1px solid rgba(29, 30, 28, 0.16);
  border-radius: 12px;
  background: #fff;
  transition: .3s;
  text-align: center;
  padding: 20px 20px 21px;
  cursor: pointer;
}

.input-radio-custom:checked + label{
  border: 1px solid rgba(29, 30, 28, 0.16);
  background: rgba(158, 218, 35, 0.3);
}

.col-3{
  max-width: 33%;
}

.form-group__description{
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 12px;
}

.form-group__label--title{
  margin-bottom: 4px;
}

.marketing-info,
.marketing-info__tab,
.additional-costs-sum,
.debt-other,
.info-libraries-app,
.info-copyright-app,
.info-registered-app,
.info-legal-disputes,
.info-technical-debt{
  display: none;
}

.btn{
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  font-weight: 500;
  font-size: 18px;
  transition: .3s;
  padding: 17px 20px 16px 20px;
  border: 1px solid #1d1e1c;
  background: #fff;
  cursor: pointer;
  border-radius: 100px;
}

.btn:hover{
  background: #bcff33;
}

.btn-add-select-month{
  margin: 12px 0 24px;
}

.custom-select-inner--ppSubscription{
  margin-bottom: 12px;
}

.monetization-subscriptions,
.choices__input--cloned{
  display: none;
}

.choices__list--multiple .choices__item.choices__placeholder button{
  display: none;
}

.choices__list--multiple{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.choices__list--multiple .choices__item{
  margin: 0;
  background:  #bcff33;
  border-color: #1d1e1c;
  color: #1d1e1c;
}

.choices__list--multiple .choices__item.is-highlighted{
  background:  #bcff33;
  border-color: #1d1e1c;
}

.choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button{
  background-image: url("../img/cros-select.svg");
  border-color: #1d1e1c;
}

.email-example{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.email-example__el{
  font-weight: 400;
  font-size: 14px;
  color: #343434;
  border-radius: 6px;
  padding: 10px 12px;
  background: #f2f2e5;
  margin-top: 12px;
  cursor: pointer;
  transition: .3s;
}

.email-example__el:hover{
  background: #bcff33;
}

.form-group--file{
  margin: 12px 0 48px;
}

.file-upload{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 28px 0;
  border: 1px dashed rgba(29, 30, 28, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: .3s;
}

.file-upload__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 44px;
  gap: 4px;
  border: 1px solid #1d1e1c;
  border-radius: 24px;
  background: #fff;
  transition: .3s;
}

.file-upload:hover .file-upload__btn{
  background: #bcff33;
}

.file-upload__text{
  font-weight: 300;
  font-size: 18px;
}

.file-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.file-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(29, 30, 28, 0.16);
  border-radius: 12px;
  padding: 20px;
  font-weight: 300;
  font-size: 18px;
}

.delete-icon{
  display: flex;
  cursor: pointer;
}

.delete-icon:hover path{
  stroke-opacity: 1;
}

.file-upload.dragover{
  border: 1px solid rgba(29, 30, 28, 0.16);
}

.label-checkbox{
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 14px;
  padding-left: 36px;
  cursor: pointer;
}

.label-checkbox:before{
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid rgba(29, 30, 28, 0.3);
  border-radius: 6px;
  transition: .3s;
  left: 0;
  top: 50%;
  transform: translate(0 , -50%);
}

.label-checkbox:after{
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/check.svg") no-repeat center;
  left: 0;
  top: 50%;
  transform: translate(0 , -50%);
  transition: .3s;
  opacity: 0;
}

.custom-checkbox:checked + label:before{
  background: #bcff33;
  border-color: #bcff33;
}

.custom-checkbox:checked + label:after{
  opacity: 1;
}

.btn-submit{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  padding: 27px 0;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #fff;
  border-radius: 60px;
  background: #1d1e1c;
  transition: .3s;
  cursor: pointer;
  margin-top: 48px;
}

.btn-submit:hover{
  background: #bcff33;
  color: #1d1e1c;
}

.btn-submit:hover path{
  fill: #1d1e1c;
}

.footer{
  padding: 48px 0;
  border-top: 1px solid rgba(29, 30, 28, 0.15);
  margin-top: 66px;
}

.footer__content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy{
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(29, 30, 28, 0.4);
}

.footer-privacy{
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(29, 30, 28, 0.4);
  transition: .3s;
}

.form-text p{
  font-weight: 300;
  font-size: 14px;
  color: #000;
}

p.strong{
  font-weight: 600;
  font-size: 18px;
}

.form-text p:not(:last-child){
  margin-bottom: 12px;
}

.wrong-item{
  font-weight: 300;
  font-size: 12px;
  color: #c12121;
  margin-top: 6px;
}

@media (max-width: 1360px) {
  .header__content{
    justify-content: space-between;
    gap: 22px;
  }

  .header__logo{
    width: 100%;
    text-align: left;
  }

  .btn-help{
    position: static;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0 22px;
  }

  .header__logo svg{
    width: 138px;
    height: 44px;
  }

  .btn-help{
    font-size: 15px;
    padding: 11px 13px;
    border: 1px solid;
  }

  .form__title{
    font-size: 44px;
  }

  .form-group-inner{
    flex-wrap: wrap;
  }

  .col , .col-3{
    width: 100%;
    max-width: 100%;
  }

  .col .input-date {
    background-position: 97%;
  }
  .file-upload__text{
    display: none;
  }

  .footer__content{
   flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .footer-copy{
    line-height: 143%;
  }
}

.popup{
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: .3s;
}

.popup.active{
  opacity: 1;
  z-index: 1;
}

.popup-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 48px 60px;
  background: #fffff6;
}

.popup-content--form{
  max-width: 600px;
}

.popup__i{
  margin-bottom: 32px;
}

.popup__title{
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin-bottom: 17px;
}

.popup__text{
  font-weight: 300;
  font-size: 32px;
  text-align: center;
  color: #000;
  margin-bottom: 42px;
}

.popup__btn{
  width: 100%;
  border-radius: 60px;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #fff;
  padding: 24px;
  transition: .3s;
  cursor: pointer;
  background: #1d1e1c;
}

.popup__btn:hover{
  color: #1d1e1c;
  background: #bcff33;
}

@media (max-width: 768px) {
  .popup-content{
    max-width: 343px;
    padding: 24px;
  }

  .popup__i svg{
    width: 74px;
    height: 74px;
  }

  .popup__title{
    font-size: 22px;
  }

  .popup__text{
    font-size: 18px;
  }
}

textarea.form-group__input{
  height: 128px;
}








