@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
body {
  font-family: Roboto, sans-serif;
  letter-spacing: 0.2px;
  color: #777c88;
  font-size: 14px;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  background-color: #f6f6f6;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper::before {
  content: "";
  display: block;
  position: absolute;
  height: 260px;
  width: 200%;
  top: 0;
  left: -50%;
  border-radius: 50%;
  background: #3dc76f;
}
.wrapper::after {
  content: "";
  display: block;
  position: absolute;
  height: 100px;
  width: 100%;
  top: 0;
  left: 0;
  background: #3dc76f;
}

.container {
  max-width: 375px;
  margin: 0 auto;
  -webkit-box-flex: 0;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.content {
  padding: 31.5px 0 0 0;
}

.header {
  position: relative;
  z-index: 1;
}
.header__image {
  margin: 0 0 0 14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: url("../img/logo.jpg") center no-repeat;
  background-size: cover;
  display: inline-block;
}
.header__role {
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 85px;
}
.header__role p:first-child {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
}
.header__role p:nth-child(2) {
  font-size: 12px;
  opacity: 0.5;
  color: #fff;
}
.header__line {
  margin: 0 0 0 14px;
  padding-top: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 345.6px;
}
.header__text {
  margin: 3.5px 0 17px 9px;
  padding: 12px 5px 0 0;
  max-width: 345.6px;
  position: relative;
}
.header__text p:first-child {
  color: #fefefe;
  padding: 0 0 0 20px;
  margin: 0 0 16px 0;
  line-height: 16px;
}
.header__text p:first-child:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f83e56;
  display: inline-block;
  margin: 0 5px 0 0;
  position: absolute;
  left: 5px;
  top: 16px;
}
.header__text p:nth-child(2) {
  font-size: 12px;
  color: #fff;
  opacity: 0.5;
  padding: 0 0 0 5px;
}

.main {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 345.6px;
  margin: 0 auto;
}
.main__modal {
  -webkit-box-shadow: 0 0 11px 0 rgba(50, 50, 50, 0.16);
          box-shadow: 0 0 11px 0 rgba(50, 50, 50, 0.16);
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 22px 50px;
}
.main__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
  color: #3c4357;
}
.main__item {
  margin: 45px 0 25px 0;
}
.main__input {
  border-bottom: 1px solid #3dc76f;
  margin: 0 0 14px 0;
}
.main__input textarea {
  width: 100%;
  border: none;
  resize: none;
  font-size: 14px;
  color: #777c88;
  outline: 0;
  border-radius: 0;
  min-height: 28px;
  resize: none;
  overflow: hidden;
}
.main__buttons {
  margin: 25px 0;
}
.main__buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main__video {
  width: 60px;
  height: 60px;
  background: url("../img/camera.svg") center no-repeat;
  background-size: 40px 40px;
  overflow: hidden;
  border: 1px solid #3dc76f;
  border-radius: 5px;
  cursor: pointer;
}
.main__video input {
  font-size: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.main__send {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 200px;
          flex: 0 1 200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 5px 0 5px;
}
.main__send button {
  display: block;
  width: 100%;
  height: 56px;
  line-height: 56px;
  background: 0 0;
  border: none;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border-radius: 7px;
  font-size: 14px;
  letter-spacing: 0.5px;
  background-color: #3dc76f;
  -webkit-box-shadow: 0 2px 6px 0 rgba(50, 50, 50, 0.16);
          box-shadow: 0 2px 6px 0 rgba(50, 50, 50, 0.16);
}
.main__send button:hover {
  background-color: #00AF80;
}
.main__send button::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  -webkit-transform: translateY(2.5px);
          transform: translateY(2.5px);
  left: 16px;
  background-image: url("../img/send.svg");
}
.main__text {
  color: #8e929b;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 4px 0 0 0;
}
.main__text p {
  max-width: 200px;
}
.main__text p a {
  color: #8e929b;
  text-decoration: underline;
}

.item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.item__star {
  width: 55px;
}
.item__star path {
  cursor: pointer;
}
.item__star path.gray {
  fill: #e6e7ea;
}
.item__star path.red {
  fill: #3dc76f;
}
.item__text {
  color: #8e929b;
  text-align: center;
  margin: 4px 0 0 0;
  font-size: 12px;
}

.footer {
  width: 345.6px;
  margin: 0 auto;
  color: #8e929b;
  height: 80px;
  border-top: 1px solid #eaebec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__text a {
  display: block;
  color: #8e929b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__text span {
  font-size: 12px;
  text-decoration: underline;
  color: #8e929b;
}
.footer__text img {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  fill: #3dc76f;
  height: 12px;
  margin-left: 6px;
}