

/* Start:/reviews/style.css?16652244252930*/
.reviews{
  display: grid;
  width: 100%;
  justify-content: start;
  align-items: start;
  justify-items: start;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-columns: 50%;
  grid-auto-flow: row dense;
  margin-bottom: 92px;
}
.reviews-elem{
  grid-column: span 1;
  padding: 36px 40px 40px 40px;
  background: #FFFFFF;
  box-shadow: 0px 22px 31px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
}
.reviews-elem-date{
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.03em;
  font-family: 'PT Sans';
  color: #949191;
}
.reviews-elem-title{
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  color: #000000;
}
.reviews-elem-text{
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #565656;
  margin-top: 12px;
}
.reviews-elem-more{
  cursor: pointer;
  display: flex;
  gap: 7px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  margin-top: 32px;
}
.reviews-elem-more-ico{
  height: 12px;
  width: 12px;
  min-height: 12px;
  min-width: 12px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('/reviews/./svg/Vector 3.svg');
}
.reviews-elem-more-text{
  color: #F58220;
  font-family: 'PT Sans';
}
.reviews-elem[status='active'] .reviews-elem-more-ico{
  transform: rotate(0deg);
}
.reviews-elem[status='active'] .reviews-elem-more-text {}
.reviews-elem[status='active'] .reviews-elem-more-text:before {
  content: attr(active);
}
.reviews-elem[status='noactive'] .reviews-elem-text{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
}
.reviews-elem[status='noactive'] .reviews-elem-more-ico {
  transform: rotate(180deg);
}
.reviews-elem[status='noactive'] .reviews-elem-more-text {}
.reviews-elem[status='noactive'] .reviews-elem-more-text:before {
  content: attr(noactive);
}

.reviews-more{
  background: #FEFEFE;
  border: 1px solid #F58220;
  border-radius: 5px;
  text-align: center;
  padding: 13px;
  width: calc(100% - 26px);
  grid-column: span 2;
  cursor: pointer;
  font-family: 'PT Sans';
}
.reviews-more:hover{
  background-color: #F58220;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .reviews {
    gap: 18px;
  }
}
@media screen and (max-width: 600px) {
  .reviews{
    gap: 15px;
  }
  .reviews-elem{
    grid-column: span 2;
  }
}
/* End */


/* Start:/reviews/form.css?16653553074330*/
.form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 38px;
  margin-bottom: 30px;
}

.form h2 {
  text-transform: uppercase;
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 126.97%;
}

.form-main {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 47px;
}

.form-main-inputs {
  display: grid;
  width: 100%;
  height: 100%;
  justify-content: start;
  align-items: stretch;
  justify-items: start;
  gap: 33px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-columns: 50%;
}

.form-main-inputs-elem {
  display: grid;
  width: 100%;
  justify-content: start;
  align-items: start;
  justify-items: start;
  gap: 15px 17px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-columns: 50%;
  grid-column: span 1;
  height: 100%;
}

.form-main-inputs-elem-inputs {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.form-main-inputs-elem-inputs[big] {
  grid-column: span 2;
}



.form-main-inputs-elem-inputs>div {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 105.47%;
  color: #8D8D8D;
  pointer-events: none;
  user-select: none;
}

.form-main-inputs-elem-inputs[required]>div:after {
  content: '*';
  color: #F48221;
}

.form-main-inputs-elem-inputs>input,
.form-main-inputs-elem-inputs>textarea {
  background: #FAFAFA;
  border: 1px solid #E6E6E6;
  border-radius: 3px;
  width: calc(100% - 26px);
  font-family: 'PT Sans';
  padding: 11px 13px 14px 13px;
  height: 100%;
  resize: none;
}

.form-main-inputs-elem-inputs>input::placeholder,
.form-main-inputs-elem-inputs>textarea::placeholder {
  color: #DFDFDF;
}

.form-main-inputs-elem-inputs>input:focus,
.form-main-inputs-elem-inputs>textarea:focus {
  border-color: #F48221;
}

.form-main-bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 11px;
}

.form-main-bottom-text {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 126.97%;
}

.form-main-bottom-text a {
  color: #F48221;
  text-decoration: none;
}

.form-main-bottom-text a:hover {
  text-decoration: underline;
}

.form-main-bottom-btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}

.form-main-bottom-btn button {
  background: #F48221;
  border-radius: 5px;
  padding: 9px 46px;
  font-family: 'PT Sans';
  text-align: center;
  color: #fff;
  border: none;
}

.form-main-bottom-btn button:hover {
  background: #ed7815;
}

.form-main-bottom-btn button:active {
  background: #d96a0c;
}

.form-main-inputs-elem-inputs[error] input,
.form-main-inputs-elem-inputs[error] textarea{
  animation: error_form 0.75s linear;
  border-color: red;
}
.form-main-inputs-elem-inputs[error] div{
  animation: error_form_2 0.75s linear;
  color: red;
}
@keyframes error_form {
  0%{
    border-color: red;
  }
  20%{
    border-color: #E6E6E6;
  }
  40%{
    border-color: red;
  }
  60%{
    border-color: #E6E6E6;
  }
  80%{
    border-color: red;
  }
  100%{
    border-color: red;
  }
}
@keyframes error_form_2 {
  0% {
    color: red;
  }

  20% {
    color: #8D8D8D;
  }

  40% {
    color: red;
  }

  60% {
    color: #8D8D8D;
  }

  80% {
    color: red;
  }

  100% {
    color: red;
  }
}

@media screen and (max-width: 768px) {
  .form-main-inputs-elem{
    grid-column: span 2;
  }
}

@media screen and (max-width: 500px) {
  .form-main-inputs-elem-inputs{
    grid-column: span 2;
  }
  .form-main-inputs{
    gap: 15px;
  }
}

.popup_windows{
  position: fixed;
  z-index: 999;
  le
}
/* End */


/* Start:/reviews/popup.css?16654822411723*/
.popup_reviews{
    display: none;
    font-family: 'Arial';
    font-style: normal;
}

.popup_overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1111;
    left: 0px;
    top: 0px;
    background: rgba(0, 0, 0, 0.5);
}

.popup_content{
    width: 388px;
    height: 204px;
    overflow: auto;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    background: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.popup_text > span{
    font-weight: 700;
    font-size: 32px;
    line-height: 105.47%;
    color: #333333;
}

.popup_text > p{
    font-weight: 400;
    font-size: 14px;
    line-height: 126.97%;
    text-align: center;
    color: #000000;
}

.popup_btn a{
    font-weight: 400;
    font-size: 14px;
    line-height: 126.97%;
    text-decoration: none;
    border-radius: 5px;
}
.popup_btn a:hover{
    text-decoration: none;
}




.popup_btn a:first-child{
    background: #F48221;
    color: #FFFFFF;
    padding: 10px 40px;
    margin-right: 20px;
}

.popup_btn a:last-child{
    border: 1px solid #F48221;
    color: #F48221;
    padding: 10px 40px;
    border: 1px solid #F48221;
}

@media (max-width: 320px) {

    .popup_content {
        width: 300px;
    }

    .popup_btn{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .popup_btn a:first-child {
        padding: 10px 90px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .popup_btn a:last-child {
        padding: 10px 82px;
    }
}
/* End */
/* /reviews/style.css?16652244252930 */
/* /reviews/form.css?16653553074330 */
/* /reviews/popup.css?16654822411723 */
