* {
    box-sizing: border-box;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  src: url('../fonts/OpenSans-ExtraBold.ttf') format('truetype');
}
html, body{
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0;
    min-height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    color: #000000;
    -webkit-text-size-adjust: 100%;
}
.feedback-wrapper {
    background: #eee;
    border-radius: 5px;
    width: 660px;
    max-width: 100%;
    padding: 25px;
    margin: 10px auto;
}
.feedback-wrapper h2 {
    margin: 0;
    text-align: center;
    font-size: 20px;
}
.feedback-stars {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.rating-total_stars {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin: 0 -2px;
    width: fit-content;
    list-style: none;
    padding: 0;
}
.rating-total_stars>li {
    width: 24px;
    height: 24px;
    margin: 0 2px;
}
.rating-total_stars > li a, 
.rating-total_stars > li > span {
    display: block;
    line-height: 0;
}
.rating-total_stars>li.scored a svg path, 
.rating-total_stars>li:hover a svg path, 
.rating-total_stars>li:hover~li a svg path {
    fill: #FA553F;
}
.feedback-info {
    margin-top: 50px;
}
.feedback-info p {
    margin: 0;
    text-align: center;
    font-weight: 600;
}
.left-review-title {
    font-size: 16px;
    font-weight: 700;
    margin-top: 40px;
    color: #FA553F;
}
.feedback-services {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.feedback-services a {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    background: #fff;
    border-radius: 5px;
    color: #000;
    font-weight: 700;
    transition: 0.3s all ease;
}
.feedback-services a div,
.feedback-services a span {
    transition: 0.3s all ease;
}
.feedback-services a:hover {
    box-shadow: -2px 2px 5px 0 rgba(0,0,0,0.3);
}
.feedback-services a.fb-yandex:hover span {
    color: #ee181f;
}
.feedback-services a.fb-google:hover span:first-child,
.feedback-services a.fb-google:hover span:nth-child(4) {
    color: #4285f4;
}
.feedback-services a.fb-google:hover span:nth-child(2),
.feedback-services a.fb-google:hover span:last-child {
    color: #ea4335;
}
.feedback-services a.fb-google:hover span:nth-child(3) {
    color: #fbbc05;
}
.feedback-services a.fb-google:hover span:nth-child(5) {
    color: #34a853;
}
.feedback-services a.fb-otzovik:hover {
    color: #ce2457;
}
.feedback-services a.fb-zoon:hover {
    color: #6339f5;
}
.feedback-services a.fb-2gis:hover span {
    color: #32a23a;
}
.workpace-field-wrap {
    position: relative;
    overflow: hidden;
}
.workplace-field {
    width: 2px;
    height: 2px;
    opacity: .05;
    border: none;
    position: absolute;
    left: -999px;
}
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}
.feedback-form textarea {
    padding: 10px;
    border-radius: 5px;
    outline: none;
}
.feedback-form textarea:focus {
    border-color: #000;
}
.feedback-form button {
    padding: 10px;
    background: #bd0312;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.25s all ease;
}
.feedback-form button:hover {
    opacity: 0.8;
}
@media (max-width: 560px) {
    body {
        background: #eee;
    }
    .feedback-wrapper {
        margin: 0 auto;
    }
    .feedback-wrapper h2 {
        font-size: 16px;
    }
    .feedback-info p {
        font-size: 12px;
    }
    .feedback-services {
        flex-wrap: wrap;
    }
}