/* @font-face {
  font-family: "Montserrat";
  src: url("/src/assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/src/assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/src/assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
*/

.btn-dropdown{
  border: none !important;
  min-width: auto !important;
}

.btn-dropdown::after{
  content: none !important;
}

.v-input, .v-textarea {
  text-align: left;
  width: 100%;
}
.v-input__content, .v-textarea__content {
  position: relative;
}
.v-input__content_phone{
  position: relative;
  display: flex;
  border: 1px solid #848484;
  border-radius: 6px;
}
.v-input__content_phone .v-input__input{
  border: none;
}
.v-input__label, .v-textarea__label {
  display: block;
  margin-bottom: 7px;
  color: #423F3F;
  font-size: 14px;
  font-weight: 400;
}
.v-input__input, .v-textarea__input {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #848484;
  background: rgba(249, 99, 2, 0);
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .v-input__input, .v-textarea__input {
    font-size: 13px;
    padding: 11px 17px;
  }
}
.v-input__input:active, .v-input__input:focus, .v-textarea__input:active, .v-textarea__input:focus {
  outline: none;
  border-color: #F96302;
}
.v-input__icon-box, .v-textarea__icon-box {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-input__icon, .v-textarea__icon {
  width: 10px;
  height: 10px;
}
.v-input__icon_success, .v-textarea__icon_success {
  fill: none;
  stroke: #80CB90;
}
.v-input__icon_error, .v-textarea__icon_error {
  fill: none;
  stroke: #FF0000;
}
.v-input__message, .v-textarea__message {
  margin-top: 5px;
  display: none;
  color: #FF0000;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .v-input__message_error, .v-textarea__message_error {
    font-size: 12px;
  }
}
.v-input_success .v-input__input, .v-textarea_success .v-input__input {
  border-color: #80CB90;
}
.v-input_success .v-input__icon-box, .v-textarea_success .v-input__icon-box {
  background: rgba(128, 203, 144, 0.2);
}
.v-input_error .v-input__input, .v-textarea_error .v-input__input {
  border-color: #FC0000;
}
.v-input_error .v-input__icon-box, .v-textarea_error .v-input__icon-box {
  background: rgba(255, 0, 0, 0.11);
}

.input-phone-controls {
  position: absolute;
  left: 16px;
  display: flex;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
}

.v-button {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
}
.v-button:disabled {
  background-color: #848484;
  cursor: not-allowed;
}
.v-button_primary {
  background-color: #F96302;
  color: #fff;
  border-radius: 12px;
}
.v-button_primary:hover:not(:disabled) {
  box-shadow: 0px 8px 15px 0px rgba(249, 99, 2, 0.4), 0px 1px 0px 0px #C95205;
}
.v-button_primary:disabled {
  background-color: #848484;
  cursor: not-allowed;
}
.v-button_outline {
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid #090909;
  background: rgba(255, 255, 255, 0);
  color: #090909;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .v-button_outline {
    font-size: 13px;
  }
}
.v-button__icon {
  margin-left: 26px;
}

.v-radio__button {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #F2F2F2;
  color: #939393;
  font-size: 17px;
  font-weight: 400;
  border: 1px solid #F2F2F2;
  padding: 14px 36px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .v-radio__button {
    font-size: 13px;
    padding: 13px 26px;
  }
}
.v-radio__button:hover {
  color: #383838;
  background-color: #fff;
  border: 1px solid #CBCBCB;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}
.v-radio__icon {
  fill: none;
  stroke: #030303;
  width: 12px;
  height: 8px;
  margin-right: 8px;
  opacity: 0;
  margin-left: -10px;
}
.v-radio__input {
  display: none;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.v-radio__input:checked + .v-radio__button {
  background: rgba(249, 99, 2, 0.1);
  box-shadow: 0px 2px 0px 0px #FFE0CE;
}
.v-radio__input:checked + .v-radio__button .v-radio__icon {
  opacity: 1;
}

.input-phone {
  position: relative;
}
.input-phone__main {
  display: flex;
  align-items: center;
}
.input-phone__dropdown {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  padding-left: 10px;
}
.input-phone__dropdown-icon {
  width: 10px;
  height: 5px;
  margin-left: 8px;
}
.input-phone__phone-code {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .input-phone__phone-code {
    font-size: 13px;
  }
}
.input-phone .v-input__input {
  width: 100%;
  padding-left: 130px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .input-phone .v-input__input {
    font-size: 13px;
  }
}
.input-phone__flag {
  width: 25px;
  height: 15px;
  max-width: none;
}
.input-phone__list {
  position: absolute;
  top: 100%;
  z-index: 2;
  border-radius: 6px;
  border: 1px solid #FF661C;
  background: #FFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  max-height: 350px;
  width: 100%;
  display: none;
}
.input-phone .v-input__message {
  position: absolute;
}

.v-phone {
  display: flex;
  align-items: center;
  padding: 11px;
  font-weight: 400;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}
.v-phone:hover {
  background-color: #F2F2F2;
}
.v-phone__country-info {
  display: flex;
  align-items: center;
  /* width: 110px; */
}
.v-phone__country-name {
  text-align: left;
}
.v-phone__flag {
  width: 25px;
  height: 14px;
  margin-right: 15px;
}

.search {
  position: relative;
}
.search__input {
  padding: 18px 40px 18px 16px;
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .search__input {
    font-size: 13px;
  }
}
.search__input:focus {
  outline: none;
}
.search__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.form-back-call {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}
.form-back-call__left img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .form-back-call__left {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .form-back-call__body {
    display: block;
  }
}
.form-back-call__title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .form-back-call__title {
    font-size: 18px;
  }
}
.form-back-call__description {
  color: #848484;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .form-back-call__description {
    font-size: 13px;
  }
}
.form-back-call__field {
  width: 100%;
  margin-bottom: 24px;
}

.form-back-call__field.required .v-input__label::after{
  content: '*';
}

.form-back-call__field.error .v-input__message{
  display: block;
}

.form-back-call__field.error .v-input__input{
  border-color: #FF0000;
}

.form-back-call__field.error .v-input__content_phone{
  border-color: #FF0000;
}

.form-back-call__field-name {
  margin-bottom: 14px;
  color: #848484;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form-back-call__field-name {
    font-size: 13px;
  }
}
.form-back-call__field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-back-call__field .v-input__input {
  width: 100%;
}
.form-back-call__field .v-textarea__input {
  width: 100%;
}
.form-back-call__button-send {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.v-checkbox {
  display: flex;
  align-items: center;
}
.v-checkbox__input {
  display: none;
  width: 1;
  height: 1px;
  opacity: 0;
}
.v-checkbox__input:checked + .v-checkbox__checkbox {
  border: 1px solid #F96302;
  background: #F96302;
}
.v-checkbox__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(40, 40, 39, 0.2);
  background: rgba(217, 217, 217, 0);
  margin-right: 8px;
}
.v-checkbox__text {
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  color: #848484;
  margin: 0;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .v-checkbox__text {
    font-size: 13px;
  }
}
.v-checkbox__text a {
  color: #848484;
  text-decoration: underline;
}
.v-checkbox__text a:hover {
  color: #F96302;
}
.v-checkbox__icon {
  fill: none;
  stroke: #fff;
  width: 12px;
  height: 8px;
  stroke-width: 2px;
}

.success-response__circle {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: 4px solid #F96302;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.success-response__icon {
  width: 42px;
  height: 42px;
  stroke: #F96302;
  fill: none;
}
.success-response__title {
  color: #F96302;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .success-response__title {
    font-size: 18px;
  }
}
.success-response__top {
  padding: 45px 0;
}
.success-response__bottom {
  padding: 35px 0;
}
.success-response__description {
  color: #111010;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .success-response__description {
    font-size: 13px;
  }
}
.success-response__button {
  margin: 0 auto;
  margin-top: 28px;
}

.social {
  margin-top: 20px;
}
.social .hidden-icon {
  opacity: 0;
}
.social__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #F6F7FC;
  transition: all 0.4s ease;
}
.social__link:not(:last-child) {
  margin-right: 10px;
}
.social__link:hover {
  box-shadow: 0px 5px 10px 0px #CDD0DF;
}
.social__icon {
  width: 24px;
  height: 24px;
}

.recaptcha-box {
  display: flex;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */
