.feedback {
  background-color: #ff7d00;
}
.feedback__input,
.feedback__textarea {
  background-color: #ff7d00;
}
.feedback__input:focus,
.feedback__textarea:focus {
  background-color: rgba(179, 138, 95, 0.6);
  border-color: rgba(0, 0, 0, 0.1);
}
.feedback__input::-webkit-input-placeholder,
.feedback__textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__input:-ms-input-placeholder,
.feedback__textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__input::-ms-input-placeholder,
.feedback__textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__input::placeholder,
.feedback__textarea::placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__more {
  margin-top: 2rem;
}
.feedback__more-area {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.feedback__textarea {
  min-height: 100%;
}
.feedback__group {
  margin-top: 1rem;
}
.feedback__group:first-child {
  margin-top: 0;
}
.feedback__button {
  width: 100%;
}

/*-- Битрикс-лиды через pop-up-форму -- */
.b24-form input.b24-form-control,
.b24-form textarea.b24-form-control {
  display: block;
  width: 100%;
  border: 2px solid transparent;
  line-height: 1.4;
  background-color: #e5e5e5;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  border-radius: 0;
  height: auto;
}
.b24-form textarea.b24-form-control {
  height: 8rem;
}
@media (min-width: 1400px) {
  .b24-form input.b24-form-control,
  .b24-form textarea.b24-form-control {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }
}

.b24-form .b24-form-wrapper {
  max-width: 100%;
}
.b24-form .b24-form-padding-side {
  padding: 0;
}
.b24-form .b24-form-control-string .b24-form-control-label,
.b24-form .b24-form-control-list .b24-form-control-label,
.b24-form .b24-form-control-text .b24-form-control-label {
  padding-left: 18px;
  opacity: 1;
}
.b24-form .b24-form-control-select-label,
.b24-form .b24-form-control:focus + .b24-form-control-label,
.b24-form .b24-form-control-not-empty + .b24-form-control-label {
  top: 0px;
  opacity: 0;
}

button.b24-form-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  background-color: #000000;
}
button.b24-form-btn:hover:after {
  -webkit-animation: button-after 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation: button-after 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
button.b24-form-btn {
  font-family: "Zrobym", sans-serif;
  -webkit-transition: 0.25s cubic-bezier(0.5, 0, 0, 1);
  transition: 0.25s cubic-bezier(0.5, 0, 0, 1);
}
button.b24-form-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #000000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px #000000 solid;
  background-color: transparent;
  -webkit-animation: button-text 0.001s linear forwards;
  animation: button-text 0.001s linear forwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  cursor: pointer;
  padding: 12px 32px;
  line-height: 1.4;
  height: auto;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 rgb(0 0 0);
  box-shadow: 0 0 0 rgb(0 0 0);
}
button.b24-form-btn:hover {
  background-color: transparent;
}
@media (min-width: 1400px) {
  button.b24-form-btn {
    padding: 1.2vw 3vw;
  }
}

/*--табы 1 вариант
.tabs {
	display: flex;
	flex-direction: column;
}
.tabs__links {
	display: flex;
	justify-content: space-around;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	order: 0;
	white-space: nowrap;
	background-color: #080808;
}
.tabs__links>a {
	display: inline-block;
    text-decoration: none;
	
	font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: transparent;
    -webkit-animation: button-text 0.001s linear forwards;
    animation: button-text 0.001s linear forwards;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
    cursor: pointer;
    padding: 12px 12px 14px 12px;
    line-height: 1.4;
	
    text-align: center;
	border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
	color: #fff;
	width: 100%;
}
@media (min-width: 1400px){
	.tabs__links>a {
		padding: 1.2vw 0.1vw;
	}
}
.tabs__links>a:hover {
	background-color: #080808;
}
.tabs>#piter:target~.tabs__links>a[href="#piter"],
.tabs>#moskau:target~.tabs__links>a[href="#moskau"],
.tabs>#world:target~.tabs__links>a[href="#world"] {
	background-color: #fff;
	color:#080808;
	cursor: default;
	border-top: 2px solid #080808;
    border-left: 2px solid #080808;
    border-right: 2px solid #080808;
}
.tabs>div:not(.tabs__links) {
	display: none;
	order: 1;
}
.tabs>div:target {
	display: block;
}
табы--*/

/*-- табы 2 вариант --*/
.tabs {
  font-size: 0;
  width: 100%;
}
.tabs > input[type="radio"] {
  display: none;
}
.tabs > div {
  /* скрыть контент по умолчанию */
  display: none;
}
/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
#piter:checked ~ #piter,
#moskau:checked ~ #moskau,
#world:checked ~ #world {
  display: block;
  font-size: 0.9rem;
}
.tabs > label {
  display: inline-block;
  text-decoration: none;

  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-animation: button-text 0.001s linear forwards;
  animation: button-text 0.001s linear forwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  cursor: pointer;
  padding: 12px 0 14px 0;
  line-height: 1.4;

  text-align: center;

  color: #1b1b1b;
  width: 33.333%;

  vertical-align: middle;
  user-select: none;
  background-color: #f5f5f5;
  border: 2px solid #e0e0e0;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 2px;
}
@media (min-width: 1400px) {
  .tabs > label {
    padding: 1.2vw 0.1vw;
  }
}
@media (max-width: 960px) {
  .tabs > label {
    height: 54px;
  }
}
@media (max-width: 720px) {
  .tabs > label {
    font-size: 0.56rem;
    letter-spacing: -0.03em;
  }
}
.tabs > label:not(:first-of-type) {
  border-left: none;
}
.tabs > input[type="radio"]:checked + label {
  background-color: #fff;
  border-bottom: 2px solid #fff;
  color: #1b1b1b;
}
/*-- табы --*/

/*-- индивидуальности форм --*/
.modal.feedback .b24-form-field-email {
  display: none;
}
.modal.feedback .b24-form-field-file {
  display: none;
}
.b24-form-control-file .b24-form-control-label {
  display: none;
}
.b24-form-control-label {
  font-size: 0.9rem;
  font-weight: 300;
}
#modal-feedback2.modal.feedback .b24-form-field-email,
#modal-feedback2.modal.feedback .b24-form-field-file {
  display: block;
}
/*-- индивидуальности форм --*/

/*-- стили и работа footer-форм --*/
#form-feedback .tabs {
  font-size: 0;
  width: 100%;
}
#form-feedback .tabs > input[type="radio"] {
  display: none;
}
#form-feedback .tabs > div {
  display: none;
}
/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
#form-feedback #f_piter:checked ~ #f_piter,
#form-feedback #f_moskau:checked ~ #f_moskau,
#form-feedback #f_world:checked ~ #f_world {
  display: block;
  font-size: 0.9rem;
}
#form-feedback .tabs > label {
  display: inline-block;
  text-decoration: none;

  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-animation: button-text 0.001s linear forwards;
  animation: button-text 0.001s linear forwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  cursor: pointer;
  padding: 12px 0 14px 0;
  line-height: 1.4;

  text-align: center;

  color: #1b1b1b;
  width: 33.333%;

  vertical-align: middle;
  user-select: none;
  background-color: rgba(179, 138, 95, 0.6);
  border: 2px solid #ff7d00;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 2px;
}
@media (min-width: 1400px) {
  #form-feedback .tabs > label {
    padding: 1.2vw 0.1vw;
  }
}
@media (max-width: 960px) {
  #form-feedback .tabs > label {
    height: 54px;
  }
}
@media (max-width: 720px) {
  #form-feedback .tabs > label {
    font-size: 0.56rem;
    letter-spacing: -0.03em;
  }
}
#form-feedback .tabs > label:not(:first-of-type) {
  border-left: none;
}
#form-feedback .tabs > input[type="radio"]:checked + label {
  background-color: transparent;
  /*border-bottom: 2px solid transparent;*/
  color: #1b1b1b;
}
#form-feedback .tabs > input[type="radio"]#f_piter:checked + label {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
}
#form-feedback .tabs > input[type="radio"]#f_moskau:checked + label {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
}
#form-feedback .tabs > input[type="radio"]#f_world:checked + label {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
}
#form-feedback .b24-form-wrapper {
  background: transparent;
}
#form-feedback .b24-form-wrapper.b24-form-border-bottom {
  border-bottom: 0 none;
}
#form-feedback .b24-form-field-file {
  border-radius: 0;
  border: 0 none;
  padding: 0;
  background: transparent !important;
}
#form-feedback .b24-form input.b24-form-control,
#form-feedback .b24-form textarea.b24-form-control {
  background-color: #ff7d00;
  border: 1px solid black;
}
#form-feedback .b24-form input.b24-form-control:focus,
#form-feedback .b24-form textarea.b24-form-control:focus {
  background-color: rgba(179, 138, 95, 0.6);
  border-color: rgba(0, 0, 0, 0.1);
}

.b24-form-wrapper .b24-form-control-file .b24-form-control {
  margin: 0 10px 0 0;
  border: 2px solid #000;
  line-height: 1.4;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  border-radius: 0;
  font-size: 0.9rem;
}
.b24-form-wrapper .b24-form-control-file .b24-form-control-file-item {
  border: 0 none;
  border-radius: 0;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .b24-form-wrapper .b24-form-control-file .b24-form-control {
    padding-top: 1vw !important;
    padding-bottom: 1vw !important;
    padding-left: 40px !important;
    padding-right: 20px !important;
  }
  .b24-form-control-file .b24-form-control:before {
    left: 25.5px;
  }
  .b24-form-control-file .b24-form-control:after {
    left: 21px;
  }
}
.b24-form-wrapper .b24-form-sign {
  display: none !important;
}
/*-- стили и работа footer-форм --*/
