/* backgrounds */
/* fonts */
/* borders colors */
/* other */
@import '../fonts/PTSansWeb/ptsans.css';
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: 'PT Sans';
}
html,
body {
  background-color: #fff;
  height: 100%;
  font-family: 'PT Sans';
  line-height: 1em;
  font-size: 14px;
}
a {
  color: #303030;
  text-decoration: underline;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
h1 {
  font-weight: normal;
}
/* skelet */
.wr {
  max-width: 1180px;
  min-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
}
.wr_over-off {
  overflow: visible;
}
.center {
  display: flex;
  justify-content: center;
}
.capsula {
  background-color: #f4f3f0;
  position: relative;
  min-height: 100%;
}
header {
  width: 100%;
  height: 80px;
  background-color: #fff;
}
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 250px;
  background-color: #292929;
}
.middle {
  padding-bottom: 250px;
  /*
    &__submap {
        position: relative;
        z-index: 1;
    }
    &__bigmap {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }*/
}
.middle_full-v {
  padding-bottom: 0;
}
.middle__colmn {
  display: flex;
  justify-content: space-between;
}
.middle__colmn .middle__content {
  flex-basis: calc(100% -  280px  - 23px);
}
.middle__sidebar {
  flex-basis: 280px;
  flex-shrink: 0;
}
.middle__gallery {
  height: 380px;
  background: #f4f3f0 url("../images/bg_first.jpg") no-repeat scroll center center / cover;
}
.middle__right {
  float: right;
}
.middle__content_trans {
  height: 30px;
}
.middle__tape-component {
  position: relative;
}
.section {
  /* white section  */
  overflow: auto;
}
.section-white {
  background-color: #fff;
}
.section-black {
  background-color: #292929;
}
/* buttons */
.button {
  display: block;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
}
.button_small {
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
}
.button_yellow {
  background-color: #ffe170;
  color: #303030;
}
.button_dark {
  background-color: #292929;
  color: #fff;
}
.button_grey {
  background-color: #ebebeb;
  color: #303030;
}
.button_white {
  background-color: #fff;
  border: 1px solid #c2c2c2;
}
.button_arrow {
  background-image: url("../images/arrow_right.png");
  background-position: center right 20px;
  background-repeat: no-repeat;
}
.button_arrow-left {
  background-image: url("../images/arrow_left_big.png");
  background-position: center left 20px;
  background-repeat: no-repeat;
}
.button_hmar {
  padding: 0 30px;
}
.button_rc {
  width: 280px;
}
.button_220 {
  width: 220px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f4f3f0 url("../images/arrow_down.png") no-repeat scroll right 20px center;
  overflow: hidden;
  border: 1px solid #c2c2c2;
  outline: none;
  font-size: 14px;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  padding: 0 20px;
}
select::-ms-expand {
  display: none;
}
input,
.input {
  outline: none;
  background: #f4f3f0;
  border: 1px solid #c2c2c2;
  padding: 0 20px;
  width: calc(100% - 2 * 21px);
  font-size: 14px;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
}
input_small,
.input_small {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  width: calc(100% - 2 * 11px);
}
input_small_sel,
.input_small_sel {
  height: 32px;
  line-height: 32px;
}
textarea {
  outline: none;
  background: #f4f3f0;
  border: 1px solid #c2c2c2;
  padding: 0 20px;
  width: calc(100% - 2 * 21px);
  font-size: 14px;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 20px;
  line-height: 1.3em;
  height: 130px;
  width: 100%;
}
textarea_small {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  width: calc(100% - 2 * 11px);
}
textarea_small_sel {
  height: 32px;
  line-height: 32px;
}
.checkbox {
  cursor: default;
  height: 27px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.checkbox__box {
  background-color: #f4f3f0;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  height: 25px;
  width: 25px;
  margin-right: 10px;
}
.checkbox_check .checkbox__box {
  border: 0;
  background: #ffe170 url("../images/check.png") no-repeat scroll 7px center;
  height: 27px;
  width: 27px;
}
.pt20 {
  padding-top: 20px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mar30 {
  margin: 30px 0;
}
.radius {
  border-radius: 5px;
}
.radius_big {
  border-radius: 5px;
}
.circle {
  border-radius: 50%;
}
.has-error {
  border: 1px solid red;
}
.result_error {
  color: red;
}
.result_ok {
  color: green;
}
.resf {
  color: red;
}
.imgf {
  display: none;
}
.progress-bar {
  margin: 5px 0 5px;
  padding: 2px 0 2px;
  background-color: #f9f7a2;
  width: 0%;
  text-align: center;
}
.progress-tape {
  padding: 0;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.preloader {
  width: 150px;
  height: 150px;
}
/* universal blocks */
.star {
  /* star sprite */
  background: url("../images/stars_sprite.png") no-repeat scroll 0 0;
  height: 21px;
  width: 101px;
}
.star_0 {
  background-position: 0  0;
}
.star_1 {
  background-position: 0 -21px;
}
.star_2 {
  background-position: 0 -42px;
}
.star_3 {
  background-position: 0 -63px;
}
.star_4 {
  background-position: 0 -84px;
}
.star_5 {
  background-position: 0 -105px;
}
.eform {
  /* search and follow form */
  overflow: auto;
  display: flex;
  height: 100px;
  justify-content: space-between;
  align-items: center;
}
.eform__right {
  flex-basis: 220px;
  flex-shrink: 0;
  margin-left: 20px;
}
.eform__right button {
  width: 100%;
}
.eform_no-height {
  height: auto;
}
.eform__left {
  border-radius: 5px;
  background-color: #f4f3f0;
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.eform__left > select,
.eform__left > input {
  border: 0;
  padding-left: 10px;
}
.eform__label {
  flex-shrink: 0;
  flex-basis: 60px;
  color: #303030;
  font-weight: bold;
  font-size: 14px;
  text-align: right;
}
.eform__label_two {
  flex-basis: 90px;
}
.eform__sel {
  flex-basis: 145px;
  flex-shrink: 0;
}
.eform__input {
  width: 100%;
}
.eform_ex .eform__input {
  border-radius: 0;
  border-right: 1px solid #acacac;
}
.bonus {
  /* adv bonus frame */
  padding: 30px;
  background-color: #292929;
  color: #fff;
  border-radius: 5px;
  line-height: 1.1em;
}
.bonus_first {
  height: 240px;
}
.bonus__desc {
  margin-top: 15px;
}
.bonus__rate {
  margin-top: 15px;
}
.bonus__rate span {
  color: #9a9a9a;
}
.bonus__button {
  margin-top: 20px;
}
.title {
  /* universal title */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 22px;
}
.title h1 {
  border-left: 4px solid #d0a70f;
  padding-left: 18px;
  font-size: 22px;
  line-height: 22px;
}
.title h1 span {
  color: #999;
}
.title_start {
  justify-content: flex-start;
}
.title__star {
  margin-left: 20px;
}
.title__all {
  padding-right: 20px;
  background: url("../images/arrow_right.png") no-repeat bottom right;
}
.title__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.title__melem {
  border-right: 1px solid #949494;
  padding: 0 20px;
}
.title__mtxt {
  display: block;
  font-size: 14px;
  color: #949494;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px dashed #949494;
}
.title__melem_item .title__mtxt {
  color: #303030;
  border-bottom: none;
}
.title__button {
  padding-left: 20px;
  width: 220px;
}
.title__icon-act {
  cursor: pointer;
  width: 30px;
  text-align: center;
}
.clist {
  /* list with circle avatars */
  overflow: auto;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-around;
}
.clist__elem {
  width: 255px;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
}
.clist__img {
  display: block;
}
.clist__img img {
  border-radius: 50px;
}
.clist__title {
  font-size: 18px;
  line-height: 1.1em;
  padding-top: 20px;
}
.clist__desc {
  overflow-y: hidden;
  height: 50px;
  line-height: 1.2em;
  padding-top: 16px;
}
.clist__name {
  padding-top: 20px;
}
.clist__rating {
  padding-top: 20px;
}
.clist__rating div {
  margin: 0 auto;
}
.clist__date {
  padding-top: 12px;
  font-size: 13px;
  color: #9a9a9a;
}
.card {
  overflow: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card__elem {
  width: 278px;
  border: 1px solid #d8d8d8;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  text-decoration: none;
}
.card__img {
  display: block;
  width: 278px;
  height: 180px;
}
.card__img img {
  width: 278px;
  height: 180px;
  border-bottom: 1px solid #d8d8d8;
}
.card__content {
  padding: 30px;
}
.card__title {
  font-size: 18px;
  line-height: 1.1em;
}
.card__desc {
  height: 51px;
  line-height: 1.2em;
  overflow-y: hidden;
  padding-top: 16px;
}
.card__bottom {
  overflow: auto;
  padding-top: 20px;
}
.card__rating {
  float: left;
}
.card__counter {
  color: #999;
  height: 20px;
  line-height: 20px;
  vertical-align: 20px;
  float: right;
  text-align: right;
  padding-right: 30px;
  background: url('../images/comment.png') no-repeat center right;
}
.sep {
  height: 0px;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #fff;
}
.framed {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px;
}
.umenu {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px;
  padding: 30px 0;
}
.umenu__avatar {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 25px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
}
.umenu__avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}
.umenu__name {
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}
.umenu__status {
  text-align: center;
  color: #999;
  margin-bottom: 35px;
}
.umenu__elem {
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.umenu__elem > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #d6d6d6;
  height: 50px;
  margin: 0 30px;
}
.umenu__elem_active {
  background-color: #292929;
  color: #fff;
}
.umenu__elem_active > div {
  border: 0;
}
.umenu__icon {
  width: 40px;
}
.umenu__txt {
  font-size: 15px;
}
.stat {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px;
}
.stat__title {
  font-size: 18px;
}
.stat__label {
  line-height: 1.4em;
  color: #999;
}
.stat__val {
  font-size: 16px;
}
.form {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px;
}
.form_reg,
.form_login,
.form_restore-access,
.form_feedback {
  box-sizing: border-box;
  width: 340px;
}
.form__columns {
  display: flex;
}
.form__f_linkc {
  text-align: center;
  color: #949494;
}
.form__f_linkc a {
  color: #949494;
}
.form__f span {
  color: #949494;
}
.form__f_column {
  display: flex;
  justify-content: space-between;
}
.form__f_map {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  height: 350px;
}
.form__f_hide {
  display: none;
}
.form__msel {
  display: flex;
  justify-content: space-between;
}
.form__mul {
  font-size: 18px;
  color: #303030;
  cursor: pointer;
  border-bottom: 1px dashed #949494;
  padding: 5px;
}
.form__mul_sel {
  background-color: #ffe170;
  border-bottom: 0;
}
.ugallery {
  display: flex;
  flex-wrap: wrap;
}
.ugallery_first {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #c2c2c2;
}
.ugallery__elm {
  border-radius: 5px;
  height: 45px;
  width: 45px;
  margin-right: 10px;
  margin-top: 10px;
  border: 1px solid #d6d6d6;
  background-color: #f4f3f0;
}
.ugallery__elm:last-child {
  margin-right: 0;
}
.ugallery__elm_def {
  background: #f4f3f0 url("../images/img_def.gif") no-repeat scroll center center;
}
.ugallery__elm_add {
  margin-right: 0;
  cursor: pointer;
  background: #f4f3f0 url("../images/img_add.gif") no-repeat scroll center center;
}
.ugallery__elm_sel {
  border: 2px solid #292929;
}
.ugallery__img {
  border-radius: 5px;
  display: block;
  height: 45px;
  width: 45px;
}
.ugallery__img_open {
  cursor: pointer;
}
.ugallery_big .ugallery__img,
.ugallery_big .ugallery__elm {
  height: 100px;
  width: 100px;
}
.ugallery__act {
  cursor: pointer;
}
.ugallery__cap {
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
  top: -97px;
  float: right;
  margin-left: 3px;
  margin-right: 2px;
  background-size: 17px 17px;
}
.ugallery__cap_delete {
  background: url("../images/img_delete.gif") no-repeat scroll center center;
}
.ugallery__cap_rotate {
  background: url("../images/img_rotate.gif") no-repeat scroll center center;
}
.ugallery__cap_unrotate {
  background: url("../images/img_unrotate.gif") no-repeat scroll center center;
}
.ugallery__cap_open {
  background: url("../images/img_open.gif") no-repeat scroll center center;
}
.bstars {
  display: flex;
}
.bstars__star {
  cursor: pointer;
  width: 35px;
  height: 35px;
  margin-right: 6px;
  background: url("../images/bstar_off.png") no-repeat scroll 0 0;
}
.bstars__star_on {
  background: url("../images/bstar.png") no-repeat scroll 0 0;
}
.social__label {
  text-align: center;
  color: #949494;
}
.social__label a {
  color: #949494;
}
.social__caps {
  margin: 0 auto;
  overflow: auto;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.social__soc {
  margin: 0 10px;
  height: 55px;
  width: 55px;
  background: url("../images/sprite_social.png") no-repeat scroll 0 0;
}
.social__soc_fb {
  background-position: 0  0;
}
.social__soc_twitter {
  background-position: -75px 0;
}
.social__soc_gplus {
  background-position: -150px 0;
}
.social__soc_vk {
  background-position: -225px 0;
}
.justform {
  background: url("../images/bg_bigest.jpg") no-repeat scroll center center / cover;
  height: calc(100vh -  80px );
  display: table;
  width: 100%;
}
.justform__frame {
  display: table-cell;
  vertical-align: middle;
}
.justform__frame .form {
  margin: auto;
}
.filter {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px;
  padding: 0 30px;
}
.filter__section {
  padding: 30px 0 10px 0;
  border-bottom: 1px solid #c2c2c2;
}
.filter__section:last-child {
  border-bottom: 0;
}
.filter__title {
  cursor: pointer;
  font-size: 18px;
  padding-bottom: 10px;
  background: url("../images/arrow_down.png") no-repeat scroll right top 5px;
}
.filter__title_roll {
  background: url("../images/arrow_left.png") no-repeat scroll right top 5px;
}
.filter__f {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 27px;
}
.filter__count {
  color: #949494;
}
.filter__input {
  width: 60px;
  flex-shrink: 0;
}
.filter__input-one {
  width: 160px;
  flex-shrink: 0;
}
.head-list-elem__head {
  overflow: visible;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.head-list-elem__title {
  font-size: 18px;
  font-weight: bolder;
  order: 1;
  line-height: 1.1em;
  /*white-space:nowrap;*/
}
.head-list-elem__rating {
  order: 2;
  flex-shrink: 0;
  flex-basis: 101px;
  margin-left: 10px;
}
.list {
  overflow: visible;
}
.list__elem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  background-color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}
.list__elem:last-child {
  margin-bottom: 0;
}
.list__img {
  flex-shrink: 0;
  flex-basis: 230px;
  width: 230px;
  height: 150px;
  border-right: 1px solid #d8d8d8;
}
.list__img img {
  width: 230px;
  height: 150px;
  border-radius: 5px 0 0 5px;
}
.list__content {
  flex-basis: 100%;
  padding: 30px 20px 20px 30px;
}
.list__head {
  overflow: visible;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.list__title {
  font-size: 18px;
  font-weight: bolder;
  order: 1;
  line-height: 1.1em;
  /*white-space:nowrap;*/
}
.list__rating {
  order: 2;
  flex-shrink: 0;
  flex-basis: 101px;
  margin-left: 10px;
}
.list__desc {
  line-height: 1.3em;
  height: 50px;
  overflow-y: hidden;
  padding-top: 10px;
}
.list__counter {
  float: right;
  height: 20px;
  line-height: 20px;
  vertical-align: 20px;
  text-align: right;
  padding-right: 25px;
  background: url('../images/comment.png') no-repeat center right;
}
.list_small .list__content {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_small .list__img {
  flex-basis: 90px;
  width: 90px;
  height: 60px;
}
.list_small .list__img img {
  width: 90px;
  height: 60px;
}
.list_small .list__elem {
  height: 60px;
}
.list_small .list__link {
  height: 1.2em;
  color: #949494;
  border-bottom: 1px dashed #949494;
  cursor: pointer;
}
.avlist__elem {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  /* &:last-child {	margin-bottom: 0; } */
}
.avlist__avatar {
  flex-basis: 100px;
  flex-shrink: 0;
}
.avlist__avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.avlist__content {
  display: flex;
  justify-content: space-between;
  flex-basis: 100%;
  align-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  background-color: #fff;
  padding: 20px 30px;
}
.avlist__content_angle {
  position: relative;
}
.avlist__content_angle::before,
.avlist__content_angle::after {
  content: '';
  position: absolute;
  /* Абсолютное позиционирование */
  left: -18px;
  top: 30px;
  border: 8px solid transparent;
  border-right: 10px solid #d8d8d8;
}
.avlist__content_angle::after {
  left: -16px;
  border-right: 10px solid #fff;
}
.avlist__head {
  overflow: visible;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.avlist__title {
  font-size: 18px;
  font-weight: bolder;
  order: 1;
  line-height: 1.1em;
  /*white-space:nowrap;*/
}
.avlist__rating {
  order: 2;
  flex-shrink: 0;
  flex-basis: 101px;
  margin-left: 10px;
}
.avlist__inf {
  flex-basis: 100%;
}
.avlist__desc {
  line-height: 1.3em;
  padding-top: 10px;
  font-size: 15px;
}
.avlist__date {
  padding-top: 10px;
  color: #9a9a9a;
}
.avlist__vote {
  margin-left: 40px;
  flex-shrink: 0;
}
.avlist__button {
  display: flex;
  justify-content: flex-end;
}
.avlist__act {
  cursor: pointer;
  order: 3;
  flex-basis: 30px;
  text-align: center;
}
.vote {
  display: flex;
  align-items: center;
}
.vote .hand {
  height: 14px;
  width: 14px;
  cursor: pointer;
}
.vote__bad {
  height: 14px;
  width: 14px;
  cursor: pointer;
  background: url("../images/hand_bad.png") no-repeat scroll 0 0;
  margin-right: 20px;
}
.vote__good {
  height: 14px;
  width: 14px;
  cursor: pointer;
  background: url("../images/hand_good.png") no-repeat scroll 0 0;
  margin-left: 20px;
}
.vote__val {
  font-weight: bold;
  color: #78a560;
}
.vote__val_bad {
  color: #c14e43;
}
.pager {
  height: 32px;
  overflow: hidden;
  display: flex;
}
.pager__page {
  padding-left: 10px;
  padding-right: 10px;
  min-width: 30px;
  margin-right: 10px;
}
.pager__page_arrow {
  font-size: 18px;
}
.gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 380px;
}
.gallery__view,
.gallery__img {
  width: 830px;
  height: 340px;
  border-radius: 5px;
}
.gallery__view {
  position: relative;
  overflow: hidden;
  border: 1px solid #747474;
}
.gallery__bottom {
  overflow: hidden;
  width: 830px;
  position: absolute;
  bottom: 0;
  height: 85px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
}
.gallery__preview {
  height: 65px;
  width: 100px;
  margin-left: 10px;
  border: 1px solid #747474;
  cursor: pointer;
}
.gallery__preview_active {
  border: 2px solid #fff;
}
.gallery__map {
  width: 330px;
  height: 340px;
  border-radius: 5px;
  border: 1px solid #747474;
}
.gallery__map-frame {
  width: 330px;
  height: 340px;
  border-radius: 5px;
}
.frame {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px;
}
.frame__column {
  display: flex;
  justify-content: space-between;
}
.frame__content {
  flex-basis: 100%;
  border-right: 1px solid #c2c2c2;
  padding-right: 30px;
}
.frame__sidebar {
  flex-shrink: 0;
  flex-basis: 280px;
  padding-left: 30px;
}
.frame__info {
  padding-bottom: 10px;
  border-bottom: 1px solid #c2c2c2;
}
.frame__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.frame__iform {
  position: relative;
  left: -30px;
  background-color: #f4f3f0;
  width: 100%;
  padding: 30px;
}
.frame__iform_angle {
  position: relative;
}
.frame__iform_angle::after {
  content: '';
  position: absolute;
  /* Абсолютное позиционирование */
  right: 160px;
  top: -20px;
  border: 10px solid transparent;
  border-bottom: 10px solid #f4f3f0;
}
.sauthor {
  display: flex;
  align-items: center;
}
.sauthor > div,
.sauthor > img {
  margin-left: 10px;
}
.sauthor > div:first-child,
.sauthor > img:first-child {
  margin-left: 0;
}
.sauthor__label {
  color: #999;
}
.sauthor__avatar {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}
.info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 1.2em;
  margin-bottom: 20px;
  font-size: 15px;
}
.info__label {
  margin-right: 10px;
  color: #999;
}
.info__desc {
  color: #303030;
}
.advert {
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  padding: 30px;
  height: 140px;
  line-height: 140px;
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #d8d8d8;
  background-color: #f4f3f0;
  padding: 0;
}
.bigmap {
  position: relative;
}
.bigmap__map {
  width: 100%;
  height: 900px;
  overflow-y: visible;
  z-index: 0;
}
.bigmap__filter {
  width: 280px;
  position: absolute;
  top: 30px;
  left: 0px;
  z-index: 1;
}
.bigmap__button {
  width: 220px;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 1;
}
/* header */
.header {
  height: 80px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
}
.header__city {
  margin-top: 5px;
  margin-left: 30px;
}
.city span {
  font-weight: normal;
  color: #949494;
}
.city__sel {
  cursor: pointer;
  border-bottom: 1px dashed #949494;
}
.city__container {
  position: absolute;
}
.city__frame {
  display: none;
  position: relative;
  top: -35px;
  left: -20px;
  z-index: 100;
  width: 240px;
}
.city:hover .city__frame {
  display: block;
}
.menu {
  display: flex;
  height: 20px;
  line-height: 20px;
}
.menu__elm {
  cursor: pointer;
  padding: 0 20px;
  border-right: 1px solid #c2c2c2;
}
.menu__elm:last-child {
  border-right: 0;
  padding-right: 0;
}
.menu__title {
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
}
.menu__drop {
  margin-left: 8px;
  margin-bottom: 2px;
}
.menu__lang {
  margin-top: -5px;
}
.menu__container {
  position: absolute;
}
.menu__frame {
  display: none;
  position: relative;
  top: -41px;
  left: -20px;
  z-index: 100;
}
.menu__elm_dropdown .menu__title {
  padding-right: 20px;
  background: url('../images/arrow_down.png') no-repeat center right;
}
.menu__elm_dropdown:hover .menu__frame {
  display: block;
}
.dropbox {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: 80vh;
}
.dropbox__title {
  display: block;
  border-bottom: 1px solid #c2c2c2;
  padding: 20px;
}
.dropbox__title_borderoff {
  border-bottom: none;
}
.dropbox__elm {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-decoration: none;
  white-space: nowrap;
}
.dropbox__elm:hover {
  background-color: #ffe170;
}
.dropbox__elm:last-child {
  border-radius: 0 0 5px 5px;
}
/* Sections on first page */
.finfo {
  /* first info */
  height: 500px;
  background: #f4f3f0 url("../images/bg_first.jpg") no-repeat scroll center center / cover;
  min-width: 1050px;
  color: #fff;
}
.finfo__text {
  margin: auto;
  padding-top: 110px;
  position: relative;
  text-align: center;
  width: 797px;
}
.finfo__title {
  font-size: 50px;
  line-height: 1em;
  text-transform: uppercase;
  font-weight: bolder;
}
.finfo__desc {
  padding-top: 40px;
  line-height: 1.2em;
  font-size: 18px;
}
.finfo__search {
  margin-top: 80px;
}
.finfo__search_inner {
  border-radius: 5px;
  background-color: #292929;
  padding: 0 27px;
  max-width: 1126px;
  min-width: 996px;
  margin: 0 auto;
  margin-top: 80px;
}
.f-rub {
  /* rubrics on first page */
  overflow: auto;
  padding-top: 35px;
}
.f-rub__head {
  height: 40px;
}
.f-rub__title {
  overflow: visible;
  border-bottom: 1px solid #acacac;
}
.f-rub__title div {
  text-align: center;
  background-color: #fff;
  margin: 0 auto;
  width: 580px;
  margin-bottom: -1px;
  position: relative;
  font-size: 22px;
}
.f-rub__desc {
  text-align: center;
  margin-top: 12px;
  color: #949494;
}
.f-rub__elements {
  padding: 0;
  margin: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 460px;
  align-content: space-between;
}
.f-rub__elem {
  margin-right: 0;
  padding-right: 0;
  width: 280px;
  flex-basis: 140px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bolder;
}
.f-rub__elem_drive {
  background-image: url("../images/drive.jpg");
}
.f-rub__elem_lodging {
  background-image: url("../images/lodging.jpg");
}
.f-rub__elem_kids {
  background-image: url("../images/kids.jpg");
}
.f-rub__elem_eat {
  background-image: url("../images/eat_drink.jpg");
}
.f-rub__elem_look {
  background-image: url("../images/look.jpg");
}
.f-rub__elem_listen {
  background-image: url("../images/listen.jpg");
}
.f-rub__elem_relax {
  background-image: url("../images/relax.jpg");
}
.f-rub__elem_activities {
  background-image: url("../images/activities.jpg");
}
.f-rub__elem_shopping {
  background-image: url("../images/shopping.jpg");
}
.f-rub__elem_club {
  background: url("../images/club.jpg");
}
.f-rub__elem_bonus {
  flex-basis: 300px;
}
.f-rub__name {
  padding-top: 47px;
  font-size: 28px;
  text-align: center;
  text-shadow: 1px 0 1px black;
  color: #fff;
}
.f-rub__stat {
  padding-top: 15px;
  color: #d8d8d8;
  text-align: center;
  text-shadow: 1px 0 2px black;
  text-shadow: 1px 0 1px black;
}
.f-com {
  overflow: auto;
  padding-top: 35px;
}
.f-adv {
  padding-top: 40px;
  padding-bottom: 5px;
}
.f-adv img {
  width: 1180px;
}
.f-card-section {
  overflow: auto;
  padding-top: 30px;
  padding-bottom: 20px;
}
.fapp {
  background: url('../images/iphone.jpg');
  color: #fff;
  padding-left: 65px;
  height: 460px;
}
.fapp__title {
  padding-top: 75px;
  font-size: 40px;
  line-height: 1.2em;
  text-transform: uppercase;
}
.fapp__desc {
  padding-top: 30px;
  width: 448px;
  font-size: 18px;
  line-height: 1.2em;
}
.fapp__buttons {
  overflow: auto;
  padding-top: 35px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  width: 420px;
}
.fapp__buttons a {
  flex-basis: 200px;
  line-height: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: block;
  background: url('../images/shadow_button.png');
}
.footer {
  background-color: #292929;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
  height: 170px;
}
.footer__elem {
  color: #fff;
  padding-left: 37px;
  border-left: 1px solid #3c3c3c ;
}
.footer__border {
  border-left: 1px solid #000;
}
.footer__border:first-child,
.footer__border:first-child .footer__elem {
  padding-left: 0;
  border-left: 0;
}
.fof {
  width: 525px;
}
.fof__title {
  font-size: 18px;
}
.fof__desc {
  margin-top: 40px;
  padding-left: 82px;
  line-height: 1.2em;
  background: url('../images/mail.png') no-repeat scroll top left;
  min-height: 50px;
}
.fof__form {
  margin-top: 7px;
}
.fof a {
  color: #fff;
}
.fos {
  width: 220px;
  height: 170px;
}
.fos__title {
  font-size: 18px;
}
.fos__elems {
  margin-top: 35px;
}
.fos__elem {
  margin-top: 20px;
  vertical-align: middle;
  display: flex;
  align-items: center;
  height: 20px;
}
.fos__elem:first-child {
  margin-top: 0;
}
.fos__soc {
  background: url("../images/sprite_social_follow.png") no-repeat scroll 0 0;
  height: 20px;
  width: 21px;
}
.fos__soc_fb {
  background-position: 0  0;
}
.fos__soc_vk {
  background-position: -21px 0;
}
.fos__soc_twitter {
  background-position: -42px 0;
}
.fos__soc_instagram {
  background-position: -63px 0;
}
.fos__link {
  line-height: 20px;
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
}
.fos__link_alone {
  margin-left: 41px;
}
.fot {
  width: 219px;
  height: 170px;
}
.fot a {
  color: #fff;
}
.fot__links {
  height: 128px;
}
.fot__copyright {
  color: #9a9a9a;
}
.fot__legal {
  font-size: 12px;
  color: #9a9a9a;
}
