.layout {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: normal;
    color: #2f2f2f;
}
.layout__viewport {
    width: 100%;
    min-height: 100%;
    min-height: 100vh;
}
.layout__page {
    position: relative;
    width: 100%;
    min-width: 320px;
    padding-top: 70px;
    background-color: #ffffff;
}

.container {
    max-width: 100%;
    min-width: 320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.container .container {
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    position: static;
}

.content {
    line-height: 1.2;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    background-color: #ffffff;
    border-bottom: 1px solid #dfdfdf;
}
.header_fixed {
    position: fixed;
}
.header__panel {
    display: block;
    height: 20px;
    line-height: 20px;
    padding: 0 20px;
    font-size: 10px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    overflow: hidden;
    background-color: #4d4d4d;
}
.header__content {
    position: relative;
    padding: 0 20px;
    line-height: 50px;
    text-align: center;
}
.header__logo {
    display: inline-block;
    vertical-align: middle;
}
.header__menu,
.header__search,
.header__personal,
.header__cart {
    position: absolute;
    top: 10px;
    line-height: normal;
}
.header__menu {
    left: 12px;
}
.header__search {
    left: 42px;
}
.header__personal {
    right: 42px;
}
.header__cart {
    right: 12px;
}

.footer {
    background-color: #2f2f2f;
    color: #ffffff;
}
.footer__content {
    padding: 50px 0 40px;
}
.footer__subscribe {
    margin: 0 auto 20px;
    max-width: 400px;
}
.footer__social {
    margin-bottom: 25px;
}
.footer__menu {
    margin-bottom: 40px;
}
.footer__link {
    margin-bottom: 10px;
    text-align: center;
    font-size: 12px;
}
.footer__copyrights {
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
}

.body {
    max-width: 1024px;
    margin: 0 auto;
}
.body__content {
    padding-bottom: 20px;
}
.layout__page_inner .body__content {
    padding-top: 30px;
}
.body__title {
    padding-top: 30px;
}
.body__title h1,
.body__title .h1 {
    margin: 0;
}
.body__title_hidden {
    display: none;
}

.side {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.side__content {
    position: relative;
    padding-top: 30px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.98);
    width: 100%;
    min-height: 100vh;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    -webkit-transition: transform .4s, opacity .4s;
    -moz-transition: transform .4s, opacity .4s;
    transition: transform .4s, opacity .4s;
}
.layout_sided .side__content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.side__close {
    display: block;
    background-color: rgba(0, 0, 0, 0);
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 10;
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: underline;
}

.logo {
    display: block;
    max-width: 100%;
}
.logo__image {
    display: block;
    max-width: 100%;
    height: auto;
}

.top-menu__open {
    display: block;
    background-color: rgba(0, 0, 0, 0);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.top-menu .top-menu__content {
    display: none;
}
.top-menu__content {
    position: relative;
    padding: 0 7px;
}

.menu__items {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu__item {
    display: block;
    position: relative;
}
.menu__link {
    display: block;
    padding: 20px 40px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 1px solid #d7d7d7;
}
.menu__link:hover {
    color: #b75f5f;
}
.menu__link_active {
    color: #b75f5f;
    text-decoration: underline;
}
.menu__toggle {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 8px;
    right: 0;
    z-index: 10;
}
.menu__toggle .icon_minus {
    display: none;
}
.menu__item_opened .menu__toggle .icon_minus {
    display: inline-block;
}
.menu__item_opened .menu__toggle .icon_plus {
    display: none;
}
.menu__item .menu__items {
    display: none;
}
.menu__item_opened .menu__items {
    display: block;
}
.menu__item .menu__items .menu__link {
    color: #b75f5f;
}

.bottom-menu {
    text-align: center;
}
.bottom-menu__group {
    margin-top: 20px;
}
.bottom-menu__group:first-child {
    margin-top: 0;
}
.bottom-menu__title {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.bottom-menu__items {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.bottom-menu__item {
    display: block;
    margin-top: 5px;
}
.bottom-menu__item:first-child {
    margin-top: 0;
}
.bottom-menu__link {
    font-size: 12px;
}
.bottom-menu__link:hover,
.bottom-menu__link_active {
    text-decoration: underline;
}

.personal__open {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: rgba(0, 0, 0, 0);
}
.personal .personal__content {
    display: none;
}

.search__open {
    display: block;
    background-color: rgba(0, 0, 0, 0);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.search .search__content {
    display: none;
}
.search__content {
    position: relative;
    padding: 30px 20px 20px;
    color: #000000;
}
.search__title {
    max-width: 160px;
    margin: 0 auto 12px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
}
.search__form {
    display: block;
    position: relative;
    padding-right: 45px;
}
.search__btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background: #2f2f2f;
    width: 45px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}
.search__btn:hover,
.search__btn:active {
    background-color: #b75f5f;
}
.search__control {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    background-color: transparent;
    margin: 0;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #2f2f2f;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: normal;
    color: #000000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.search__control::-webkit-input-placeholder {
    color: #8d8d8d;
}
.search__control:-moz-placeholder {
    color: #8d8d8d;
    opacity: 1;
}
.search__control::-moz-placeholder {
    color: #8d8d8d;
    opacity: 1;
}
.search__control:-ms-input-placeholder {
    color: #8d8d8d;
}

.cart__link {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: rgba(0, 0, 0, 0);
}

.subscribe {
    min-height: 85px;
}
.subscribe__title {
    margin-bottom: 15px;
    font-size: 11px;
    text-align: center;
}
.subscribe__fieldset {
    position: relative;
    padding-right: 105px;
    margin-bottom: 14px;
}
.subscribe__btn {
    width: 105px;
    position: absolute;
    top: 0;
    right: 0;
}
.subscribe .error {
    text-align: center;
}

.social {
    white-space: nowrap;
    font-size: 0;
    text-align: center;
}
.social__item {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
    width: 44px;
    height: 44px;
    background: 50% 50% no-repeat;
    background-size: contain;
}
.social__item_icon_fb {
   background-image: url('../images/social/fb.svg');
}
.social__item_icon_inst {
   background-image: url('../images/social/inst.svg');
}
.social__item_icon_tw {
   background-image: url('../images/social/tw.svg');
}
.social__item_icon_pt {
   background-image: url('../images/social/pt.svg');
}

.pages {
    display: block;
}
.pages__items {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    white-space: nowrap;
    text-align: center;
}
.pages__item {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}
.pages__item:first-child {
    margin-left: 0;
}
.pages__link {
    display: block;
    padding: 0 5px;
    text-align: center;
    font-size: 18px;
    color: #000000;
    font-weight: 300;
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}
.pages__link_active,
.pages__link:hover {
    color: #4C88B3;
}
.pages__link_prev,
.pages__link_next {
    font-size: 30px;
    color: #cccccc;
}
.pages__link_prev:before {
    font-family: 'Ionicons';
    content: '\f3d5';

}
.pages__link_next:before {
    font-family: 'Ionicons';
    content: '\f3d6';
}

.nav-ajax {
    max-width: 200px;
    margin: 20px auto 0;
}
.nav-ajax__btn {
    width: 100%;
}
.nav-ajax_loading .nav-ajax__btn {
    display: none;
}
.nav-ajax__progress {
    display: none;
    padding: 0 20px;
    height: 35px;
    line-height: 33px;
    color: #9a9a9a;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
}
.nav-ajax_loading .nav-ajax__progress {
    display: block;
}

.toggle {
    border-bottom: 1px solid #d7d7d7;
}
.toggle__item {
    border-bottom: 1px solid #d7d7d7;
}
.toggle__item:last-child {
    margin-bottom: -1px;
}
.toggle__title {
    display: block;
    position: relative;
    padding: 20px 40px 20px 0;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}
.toggle__item + .toggle__item .toggle__title {
    margin-top: 0;
}
.toggle__title:hover {
    color: #b75f5f;
}
.toggle__item_error .toggle__title {
    color: #b75f5f;
}
.toggle__icon {
    display: block;
    width: 10px;
    height: 10px;
    text-align: center;
    line-height: 10px;
    position: absolute;
    top: 23px;
    right: 0;
}
.toggle .icon_minus {
    display: none;
}
.toggle_opened > .toggle__title .icon_plus,
.toggle__item_opened > .toggle__title .icon_plus {
    display: none;
}
.toggle_opened > .toggle__title .icon_minus,
.toggle__item_opened > .toggle__title .icon_minus {
    display: inline-block;
}
.toggle__content {
    display: none;
    padding-bottom: 20px;
}
.toggle_opened > .toggle__content,
.toggle__item_opened > .toggle__content {
    display: block;
}
.toggle__indexed {
    counter-reset: item;
}
.toggle_indexed .toggle__item {
    counter-increment: item;
}
.toggle_indexed .toggle__title {
    padding-left: 50px;
}
.toggle_indexed .toggle__title:before {
    content: counter(item);
    display: block;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    background-color: #e5e5e5;
    font-size: 12px;
    color: #2f2f2f;
    position: absolute;
    top: 0;
    left: 0;
}
.toggle_indexed .toggle__item_error .toggle__title:before {
    background-color: #b75f5f;
    color: #ffffff;
}

.banners {
    margin-bottom: 30px;
}
.banners__link {
    display: block;
    position: relative;
    padding-top: 81.25%;
    background: 50% 50% no-repeat;
    background-size: cover;
}
.banners__inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.banners__link:hover .button:not(.button_link) {
    background-color: #b75f5f;
    border-color: #b75f5f;
}
.banners__link:hover .button_link .icon {
    transform: translateX(5px);
}
.banners__content {
    padding: 20px;
}
.banners__description {
    color: #2f2f2f;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.banners__item_color_light .banners__description {
    color: #ffffff;
}
.banners__description .medium {
    font-size: 18px;
}
.banners__description .large {
    font-size: 30px;
}
.banners__description + .button {
    margin-top: 15px;
}
.banners__item_align_bottom .banners__content {
    position: absolute;
    top: 64%;
    left: 0;
    right: 0;
    text-align: center;
}
.banners__item_align_center .banners__content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
}
.banners__item_align_left .banners__content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: left;
    transform: translateY(-50%);
}

.elements__item {
    margin-bottom: 25px;
}
.catalog_view_table .elements__item {
    width: 50%;
}

.item {
    max-width: 600px;
    margin: 0 auto;
}
.item__cover {
    display: block;
    padding-top: 120%;
    margin-bottom: 25px;
    background-color: #f9f9f9;
}
/*.item__cover img {
    display: block;
    max-width: 100%;
    height: auto;
}*/
.item__cover_empty {
    background: #f9f9f9 50% 50% no-repeat url('../images/no_photo.png');
}
.item__content {
    text-align: center;
}
.item__title {
    display: block;
}
.item__price {
    margin-top: 10px;
}

.form__btn {
    margin-top: 30px;
}
.form__btn .button {
    width: 100%;
}
.form__link {
    margin-top: 25px;
    text-align: center;
}
.form__link a {
    font-size: 14px;
    color: #b75f5f;
    text-transform: uppercase;
}

.agreement {
    margin-top: 15px;
    font-size: 14px;
}
.agreement a {
    text-decoration: underline;
}
.agreement a:hover {
    text-decoration: none;
}

.catalog__controls {
    margin-bottom: 25px;
}
.catalog__btn {
    display: block;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #dfdfdf;
    font-size: 10px;
    color: #000000;
    text-transform: uppercase;
}
.catalog__btn .icon {
    margin-top: -2px;
    margin-right: 2px;
}
.catalog__filter {
    display: none;
}
.catalog__linked {
    margin-top: 30px;
}

.filter {
    padding: 30px 20px;
}
.filter__group {
    margin-bottom: 25px;
}
.filter__title {
    margin-bottom: 15px;
    font-size: 12px;
    text-transform: uppercase;
}
.filter__item {
    margin-top: 10px;
}
.filter__item:first-child {
    margin-top: 0;
}
.filter__controls .button {
    width: 100%;
}

.element__gallery {
    margin: 0 -20px 25px;
    overflow: hidden;
}
.element__gallery .swiper-slide {
    width: 100%;
}
.element__gallery img {
    display: block;
    width: 100%;
    height: auto;
}
.element__gallery .swiper-scrollbar {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
}
.element__gallery .swiper-scrollbar-drag {
    background-color: #2f2f2f;
    border-radius: 0;
}
.element__price {
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
}
.element__quantity {
    margin-bottom: 20px;
}
.element__basket .button {
    width: 100%;
}
.element__content {
    margin-bottom: 30px;
}
.element__description .toggle__content {
    font-size: 14px;
}

.basket-special__accent {
    margin-bottom: 15px;
    color: #b75f5f;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
}

.offers__items {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}
.offers__item {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}
.offers__link {
    display: block;
    height: 35px;
    padding: 0 10px;
    min-width: 35px;
    text-align: center;
    line-height: 33px;
    border: 1px solid transparent;
    font-size: 14px;
    color: #e9a3a3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}
.offers__link_active,
.offers__link.active {
    border-color: #000000;
    color: #b75f5f;
    text-decoration: none;
}

.quantity {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0 40px;
    width: 115px;
    height: 35px;
}
.quantity_sm {
    width: 85px;
    height: 25px;
    padding: 0 30px;
}
.quantity__value {
    display: block;
    background-color: #ffffff;
    border: 1px solid #000000;
    text-align: center;
    height: 35px;
    line-height: 35px;
    width: 100%;
    padding: 0 5px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #2f2f2f;
    font-weight: normal;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.quantity_sm .quantity__value {
    height: 25px;
    line-height: 25px;
}
.quantity__button {
    display: block;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    width: 40px;
    height: 35px;
    position: absolute;
    top: 0;
    line-height: 35px;
    cursor: pointer;
    -webkit-appearance: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.quantity_sm .quantity__button {
    width: 30px;
    height: 25px;
    line-height: 25px;
}
.quantity__button_plus {
    right: 0;
    text-align: right;
}
.quantity__button_minus {
    left: 0;
    text-align: left;
}
.quantity__button_disabled {
    cursor: default;
    opacity: 0.8;
}

.avatar {
    display: block;
    margin: 0 auto;
    width: 170px;
    height: 170px;
    background: #f1f1f1 50% 50% no-repeat;
    background-size: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.avatar_sm {
    width: 45px;
    height: 45px;
}
.avatar_empty {
    background-image: url('../images/no_photo.png') !important;
    background-size: 80%;
}
.avatar_default {
    background-image: url('../images/avatar/1.jpg') !important;
}

.profile__avatar {
    max-width: 170px;
    margin: 0 auto 25px;
}
.profile__edit {
    margin-top: 15px;
    font-size: 12px;
    color: #b75f5f;
    font-style: italic;
}
.profile__avatar .profile__edit {
    text-align: center;
}
.profile__info {
    margin-bottom: 25px;
}
.profile__password {
    border-top: 1px solid #d7d7d7;
}
.profile__info .profile__form {
    display: none;
}
.profile__info_editable .profile__form {
    display: block;
}
.profile__info_editable .profile__view {
    display: none;
}
.profile div.control {
    padding: 0;
    line-height: 35px;
}
.profile__side {
    display: none;
}

.avatar-select {
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 320px;
}
.avatar-select__title {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
}
.avatar-select__gallery {
    margin-bottom: 20px;
}
.avatar-select__gallery .swiper-button-prev {
    left: 0;
    color: #d7d7d7;
}
.avatar-select__gallery .swiper-button-next {
    right: 0;
    color: #d7d7d7;
}
.avatar-select__upload {
    width: 170px;
    margin: 0 auto 20px;
}
.avatar-select__btn {
    margin-top: 25px;
}
.avatar-select__btn .button {
    width: 100%;
}

.faq .toggle {
    border-top: 1px solid #d7d7d7;
}
.faq__item {
    margin-top: 20px;
}
.faq__item:first-child {
    margin-top: 0;
}
.faq__title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #b75f5f;
}
.faq__description {
    font-size: 14px;
}
.faq__description a {
    text-decoration: underline;
}
.faq__description a:hover {
    text-decoration: none;
}

.basket__item {
    border-top: 1px solid #d7d7d7;
    padding: 30px 0 35px;
}
.basket__picture {
    position: relative;
    z-index: 1;
    padding: 0;
    width: 75px;
}
.basket__cover {
    display: block;
}
.basket__cover_empty {
    padding-top: 120%;
    background: #f9f9f9 50% 50% no-repeat url('../images/no_photo.png');
    background-size: 80%;
}
.basket__cover img {
    display: block;
    width: 100%;
    height: auto;
}
.basket__content {
    width: 100%;
    position: relative;
    padding-right: 0;
    padding-left: 95px;
    margin-left: -75px;
}
.basket__title {
    display: block;
    margin-right: 30px;
    margin-bottom: 15px;
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
}
.basket__props {
    margin-bottom: 15px;
}
.basket__prop {
    margin-top: 3px;
    font-size: 12px;
    color: #4d4d4d;
}
.basket__prop:first-child {
    margin-top: 0;
}
.basket__price {
    font-size: 14px;
    line-height: 25px;
    white-space: nowrap;
}
.basket__remove {
    display: block;
    background-color: rgba(0, 0, 0, 0);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    top: -8px;
    right: -8px;
}
.basket__total {
    height: 60px;
    line-height: 60px;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    white-space: nowrap;
    font-size: 14px;
    text-transform: uppercase;
}
.basket__promo {
    position: relative;
    padding-right: 100px;
}
.basket__promo .button {
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
}
.basket__btn {
    margin-top: 40px;
}
.basket__btn .button {
    width: 100%;
}
.basket__coupons {
    margin-top: 20px;
}

.coupons__item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 280px;
    padding-right: 40px;
    position: relative;
    height: 30px;
    line-height: 30px;
}
.coupons__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.coupons__remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    line-height: 30px;
}
.coupons__item_danger {
    color: #b75f5f;
}
.coupons__item_success {
    color: #95c11f;
}

.blog__item {
    margin-bottom: 30px;
}

.blog-item {
    max-width: 600px;
    margin: 0 auto;
}
.blog-item__cover {
    display: block;
    margin-bottom: 20px;
}
.blog-item__cover img {
    display: block;
    width: 100%;
    height: auto;
}
.blog-item__cover_empty {
    padding-top: 80%;
    background: #f9f9f9 50% 50% no-repeat url('../images/no_photo.png');
}
.blog-item__title {
    display: block;
    text-transform: uppercase;
}
.blog-item__date {
    margin-top: 10px;
    font-size: 12px;
    color: #9a9a9a;
    text-transform: uppercase;
}
.blog-item__description {
    margin-top: 10px;
    font-size: 14px;
}

.blog-detail__content {
    border-bottom: 1px solid #d7d7d7;
    font-size: 14px;
}
.blog-detail__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.blog-detail__auth {
    padding: 20px 0;
    font-size: 14px;
    text-align: center;
}

.post .button {
    width: 100%;
}

.comments__item {
    margin-top: 30px;
}
.comments__item:first-child {
    margin-top: 0;
}

.comment-item__header {
    height: 45px;
    position: relative;
    padding-left: 60px;
    padding-top: 5px;
}
.comment-item__avatar {
    position: absolute;
    top: 0;
    left: 0;
}
.comment-item__author {
    font-size: 14px;
    font-weight: bold;
}
.comment-item__date {
    margin-top: 5px;
    font-size: 12px;
    color: #9a9a9a;
}
.comment-item__content {
    margin-top: 15px;
    font-size: 14px;
}
.comment-item__photo {
    margin-top: 15px;
}
.comment-item__photo a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 10px;
}
.comment-item__photo img {
    display: block;
    height: 80px;
    width: auto;
}

.post-form {
    margin-bottom: 35px;
    border-top: 1px solid #d7d7d7;
}

.file {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 10px 0;
    position: relative;
    width: 80px;
}
.file__cover {
    display: block;
    width: 100%;
    padding-top: 100%;
    background: #f9f9f9 50% 50% no-repeat;
    background-size: cover;
}
.file__remove {
    display: block;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffffff;
}

.order__summary {
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.7;
}
.order__form {
    margin-top: 20px;
    border-top: 1px solid #d7d7d7;
}
.order__items {
    display: table;
    width: 100%;
    font-size: 12px;
    color: #4d4d4d;
}
.order__item {
    display: table-row;
}
.order__col {
    display: table-cell;
    vertical-align: top;
    padding-top: 5px;
    padding-right: 10px;
}
.order__item:first-child .order__col {
    padding-top: 0;
}
.order__col:last-child {
    width: 1%;
    padding-right: 0;
    white-space: nowrap;
    text-align: right;
}
.order__btn {
    margin-top: 40px;
}
.order__btn .button {
    width: 100%;
}
.order__error {
    margin-top: 15px;
}
.order__next {
    margin-top: 15px;
}

.orders__item {
    margin-bottom: 30px;
}

.order-item {
    font-size: 14px;
}
.order-item__title {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}
.order-item__items {
    display: table;
    width: 100%;
    font-size: 12px;
    color: #4d4d4d;
}
.order-item__item {
    display: table-row;
}
.order-item__col {
    display: table-cell;
    vertical-align: top;
    padding-top: 5px;
    padding-right: 10px;
}
.order-item__item:first-child .order-item__col {
    padding-top: 0;
}
.order-item__col:last-child {
    width: 1%;
    padding-right: 0;
    white-space: nowrap;
    text-align: right;
}
.order-item__date {
    margin-top: 15px;
    font-size: 12px;
    color: #9a9a9a;
    text-transform: uppercase;
}
.order-item__btn {
    margin-top: 20px;
}
.order-item__btn .button {
    width: 100%;
    margin-top: 10px;
}
.order-item__btn .button:first-child {
    margin-top: 0;
}

.basket-success .button {
    width: 100%;
}

.artists__item {
    margin-bottom: 30px;
}

.artists-item {
    max-width: 600px;
    margin: 0 auto;
}
.artists-item__cover {
    display: block;
    margin-bottom: 20px;
}
.artists-item__cover img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.artists-item__title {
    display: block;
    text-transform: uppercase;
    text-align: center;
}
.artists-item__description {
    margin-top: 10px;
    font-size: 14px;
}

.artists-detail__catalog {
    margin-top: 30px;
}

.ya-share2 {
    text-align: center;
}
.ya-share2__badge {
    background: none !important;
}
.ya-share2__icon {
    width: 44px !important;
    height: 44px !important;
}
.ya-share2__icon:active {
    box-shadow: none !important;
}
.ya-share2__item_service_facebook .ya-share2__icon {
    background-image: url('../images/social/fb.svg') !important;
}
.ya-share2__item_service_twitter .ya-share2__icon {
    background-image: url('../images/social/tw.svg') !important;
}
.ya-share2__item_service_pinterest .ya-share2__icon {
    background-image: url('../images/social/pt.svg') !important;
}