/* WORKSHOP PAGE */

.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop__wrapper {
    background-color: #FFFFFF;
}

/* workshop__title--start */

.workshop__title {
    background-color: #161917;
    padding-top: 38px;
    padding-bottom: 46px;
}

.workshop-detail__title {
    padding-bottom: 36px;
}

.title__inner {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1210px;
    padding: 0 20px;
    position: relative;
}

.title__text {
    font-family: Gilroy;
    display: block;
    max-width: 280px;
    background-color: #ffffff;
    font-weight: 900;
    font-size: 30px;
    line-height: 45px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.sub-title__text {
    max-width: 480px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

/* workshop__title--end */

/* workshop__tablet-menu--start */

.workshop__tablet-menu {
    height: 50px;
    padding: 0 20px;
    display: none;
}

.tablet-menu__inner {
    padding: 15px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 780px;
    width: 100%;
}

.tablet-menu__inner:hover {
    cursor: pointer;
}

.tablet-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 8px;
    padding-top: 1px;
}

.tablet-menu-header__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #161917;
}

.tablet-menu-header__icon {
    position: relative;
    width: 17px;
    height: 2px;
    background: #000000;
    border-radius: 15px;
}

.tablet-menu-header__icon:before,
.tablet-menu-header__icon:after {
    content: "";
    height: 2px;
    right: 0;
    background: #000000;
    border-radius: 15px;
}

.tablet-menu-header__icon:before {
    position: absolute;
    width: 23px;
    top: -5px;
}

.tablet-menu-header__icon:after {
    position: absolute;
    width: 12px;
    top: 5px;
}

/* workshop__tablet-menu--end */

/* CONTENT - workshop__inner--start */

.workshop__inner {
    margin: 0 auto;
    max-width: 1210px;
    padding: 20px 20px 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.workshop-detail__inner {
    padding: 28px 20px 40px;
}

.workshop__workshop-menu {
    max-width: 270px;
    width: 100%;
}

.workshop__workshop-menu .workshop-menu__dropdown {
    display: none;
}

.workshop-menu__title {
    display: none;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #161917;
}

.workshop-menu__list {
    display: flex;
    flex-direction: column;
}

.workshop-menu__item {
    font-weight: 400;
    font-size: 16px;
    color: #161917;
    height: 49px;
    display: flex;
    align-items: center;
    position: relative;
    line-height: 19px;
    padding-left: 0px;
    padding-right: 9px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.workshop-menu__item.current {
    font-weight: 500;
    cursor: pointer;
}

.workshop-menu__item.current .workshop-menu__icon {
    opacity: 0.8;
}

.workshop-menu__item.current:after {
    content: url("/local/templates/reds_new/images/workshop/arrow-right-active.svg");
}

.workshop-menu__name {
    padding-left: 45px;
}

.workshop-menu__icon {
    opacity: 0.3;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
}

.tablet-menu__content .workshop-menu__icon {
    left: 25px;
}

.workshop-menu__list li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.workshop-menu__item:hover {
    font-weight: 500;
    cursor: pointer;
}

.workshop-menu__item:hover .workshop-menu__icon {
    opacity: 0.8;
}

.workshop-menu__item:hover:before {
    opacity: 1;
}

.workshop-menu__item:after {
    content: url("/local/templates/reds_new/images/workshop/arrow-right.svg");
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
}

.workshop-menu__item:hover:after {
    content: url("/local/templates/reds_new/images/workshop/arrow-right-active.svg");
}

/* workshop__detail--start */

.workshop__detail {
    max-width: 870px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* .workshop-breadcrumb--start */

.workshop-breadcrumb {
    width: 100%;
    margin-bottom: 20px;
}

.workshop-breadcrumb__inner {
    white-space: nowrap; /* Запрещаем перенос строк */
    overflow: hidden; /* Обрезаем все, что не помещается в область */
    text-overflow: ellipsis; /* Добавляем многоточие */
}

.workshop-breadcrumb__list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #C4C4C4;
}

.workshop-breadcrumb__item {
    padding-right: 17px;
    position: relative;
}

.workshop-breadcrumb__item:not(:last-child):hover {
    color: #161917;
    cursor: pointer;
}

.workshop-breadcrumb__item:after {
    position: absolute;
    content: "";
    height: 18px;
    width: 1px;
    background-color: #C4C4C4;
    right: 8px;
    top: 0;
}

.workshop-breadcrumb .workshop-breadcrumb__item:last-child:after {
    display: none;
}

/* .workshop-breadcrumb--end */

/* .workshop-detail__card--start */

.workshop-detail__card {
    padding: 40px 50px 48px 40px;
    background-image: url("/local/templates/reds_new/images/workshop/audit-card-back.png");
    background-repeat: no-repeat repeat;
    background-position: center;
}

.workshop-card__title {
    text-transform: none;
    display: block;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #161917;
    margin-bottom: 16px;
}

.color--white {
    color: #FFFFFF !important;
    padding: 0px 3px 2px 5px;
}

.background--red {
    background-color: #E0202D;
}

.bold {
    font-weight: 800;
}

.workshop__article p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #161917;
}

.workshop__article p .w600 {
    font-weight: 600;
}

.workshop__article p .red {
    color: #FFFFFF;
    padding: 2px 6px;
    /*margin-left: -6px;*/
    background-color: #E0202D;
    font-weight: 600;
}

.workshop__article p .red-inner {
    color: #FFFFFF;
    padding: 1px 6px;
    background-color: #E0202D;
    font-weight: 600;
}

.workshop__article p:not(:last-child) {
    margin-bottom: 23px;
}

.workshop__article p.ul_title {
    margin-bottom: 0px;
}

.workshop-detail__text-block .workshop__article p:not(:last-child) {
    margin-bottom: 25px;
}

.articles__content__wrapper a {
    color: #FF1A29;
    display: inline;

    line-height: 1;
    font-weight: 400;
    transition: .3s all ease-in-out;
    border-bottom: 1px solid #FF1A29;
}

.articles__content__wrapper a:hover {
    border-bottom: 1px solid transparent;
}


.workshop__article ul {
    /*margin-top: 17px;*/
}

.workshop__article ul li {
    padding-left: 16px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

.workshop__article i {
    font-style: italic;
}

.workshop__article ul li {
    padding-left: 17px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

.workshop__article ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 30px;
    background-color: #E0202D;
}

.workshop-card__text {
    margin-bottom: 28px;
}

/* workshop-card__pricing--start */

.workshop-card__pricing {
    margin-bottom: 34px;
}

.workshop-pricing__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.workshop-pricing__price {
    display: flex;
    flex-direction: row;
    max-width: 490px;
    width: 100%;
}

.workshop-price__list {
    display: flex;
    flex-direction: column;
}

.workshop-price__icon--mobile {
    display: none;
}

.price-item__title {
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #161917;
}

.price-item__text {
    font-weight: bold;
    font-size: 18px;
    line-height: 23px;
    color: #161917;
}

.price-item__text--big-padding {
    padding: 2px 5px 4px 5px;
    margin-bottom: -2px;
}

.price-item__text--big {
    font-size: 23px;
}

.workshop-price__icon {
    margin-right: 20px;
}

.workshop-price__icon--time {
    margin-right: 12px;
}

.price-item__inner {
    display: flex;
    align-items: center;
}

.price-item__text {
    margin-left: 3px;
}

.price-item__hint {
    margin-left: 16px;
}

.price-item__hint:hover {
    cursor: pointer;
}

.workshop-price__item {
    display: flex;
    flex-direction: row;
}

.workshop-price__item:first-child {
    margin-bottom: 4px;
}

.price-item__inner--time {
    display: flex;
    flex-direction: column;
}

.price-item__text--days {
    width: 100%;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}

.price-item__text--red {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #E0202D;
}

/* workshop-card__pricing--end */

.workshop-button__inner {
    position: relative;
}

.workshop-hint {
    display: none;
    overflow: hidden;
    position: absolute;
    top: -19px;
    left: 105px;
    max-width: 554px;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
}

#workshop-hint__close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.6;
}

#workshop-hint__close:hover {
    cursor: pointer;
    opacity: 1;
}

#workshop-hint__close::after,
#workshop-hint__close::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: #000000;
}

#workshop-hint__close::after {
    transform: translateY(-50%) rotate(45deg);
}

#workshop-hint__close::before {
    transform: translateY(-50%) rotate(-45deg);
}

.workshop-hint--active {
    display: block;
}

.workshop-hint__inner {
    padding: 37px 46px 18px;
    background-image: url("/local/templates/reds_new/images/workshop/bg-order.jpg");
    background-repeat: no-repeat repeat;
    background-position: center;
}

.workshop-hint__inner .text-block__title {
    color: #1E1E1E;
}

.workshop-hint__inner .text-block__title .red {
    background-color: #E0202D;
    padding: 1px 4px;
    color: #ffffff;
}

.workshop-hint-underline {
    display: block;
    width: 62px;
    height: 2px;
    background: #000000;
}

.workshop-hint__main {
    margin-top: 10px;
}

.workshop-hint__text {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #1E1E1E;
}

.workshop-hint__text p .red {
    background-color: #E0202D;
    padding: 2px 4px;
    color: #ffffff;
    font-weight: 600;
}

.workshop-hint__text .mb {
    margin-bottom: 9px;
}

.workshop-hint__include-services {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 18px 0 14px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.workshop-hint__list {
    width: 50%;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.workshop-hint__item:not(:last-child) {
    margin-bottom: 7px;
}

.workshop-hint__footer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 18px;
    justify-content: space-between;
}

.workshop-hint-footer__text {
    width: calc(100% - 190px);
    font-weight: 500;
    font-size: 16px;
    line-height: 39px;
    color: #000000;
    display: flex;
    justify-content: space-between;
}

.workshop-hint-footer__button {
    width: 170px;
}

.workshop-hint-button {
    width: 170px;
    height: 39px;
    background: #E0202D;
    box-shadow: 0px 4px 29px #E0202D;
    border-radius: 50px;
    border: 0;
}

.workshop-hint-button:hover {
    box-shadow: 0px 4px 15px #E0202D;
    cursor: pointer;
}

.workshop-button-hint__text {
    font-family: Arkhip;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.workshop-button {
    max-width: 210px;
    outline: none;
    width: 100%;
    background: transparent;
    display: block;
    height: 45px;
    border-radius: 30px;
    border: 2px solid #E0202D;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop-button:hover {
    background: #e0202d;
    cursor: pointer;
    -webkit-box-shadow: 0px 5px 29px 5px rgba(224, 32, 45, .40);
    box-shadow: 0px 5px 29px 5px rgba(224, 32, 45, .40);
}

.workshop-button:active {
    -webkit-box-shadow: 0px 1px 29px 1px rgba(224, 32, 45, .40);
    box-shadow: 0px 1px 29px 1px rgba(224, 32, 45, .40);
}

.workshop-button:hover .workshop-button__text {
    color: #FFFFFF;
}

.workshop-button__text {
    font-family: Arkhip;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #E0202D;
}


/* workshop-detail__text-block--start */

.text-block__inner--w690 {
    max-width: 690px;
}

.weight--600 {
    font-weight: 600;
}

.text-block__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #161917;
    margin-bottom: 15px;
}

.workshop-detail__text-block--first {
    padding: 40px 0 45px;
}

.workshop-detail__text-block--second {
    padding: 40px 0 45px;
}

/* workshop-detail__text-block--end */


/* workshop-detail__factors--start */

.workshop-detail__factors {
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
}

.workshop-detail__factors,
.workshop-factors__title {
    background-image: url("/local/templates/reds_new/images/workshop/bg-factors.png");
    background-repeat: no-repeat repeat;
    background-position: center;
}

.workshop-factors__red-line {
    width: 100%;
    height: 57px;
    border-bottom: 3px solid #E0202D;
    position: relative;
}

.workshop-factors__title {
    position: absolute;
    top: 43px;
    left: 33px;
    padding-left: 15px;
    max-width: 463px;
    width: auto;
}

.factors-title__inner h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.factors-title__line {
    width: 59px;
    height: 2px;
    background-color: #FFFFFF;
}

.workshop-factors__inner {
    padding: 54px 47px 42px;
}

.workshop-factors__subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
}

.workshop-factors__subtitle .color--white {
    padding: 0;
}

.workshop-factors__list ul li {
    padding-left: 17px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
}

.workshop-factors__list ul {
    margin-top: 17px;
}

.workshop-factors__list ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 30px;
    background-color: #E0202D;
}

/* workshop-detail__factors--end */

/* workshop-detail__order--start */

.workshop-detail__order {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.workshop-detail__order:after,
.workshop-detail__order:before {
    z-index: 0;
    position: absolute;
    content: url("/local/templates/reds_new/images/workshop/order-paint.png");
    width: 215px;
    height: auto;
}

.workshop-detail__order:after {
    top: -51px;
    right: -84px;
}

.workshop-detail__order:before {
    bottom: -55px;
    left: -49px;
}

.workshop-order__inner {
    padding: 37px 50px 29px;
    background-image: url("/local/templates/reds_new/images/workshop/bg-order.jpg");
    background-repeat: no-repeat repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

.workshop-order__title {
    margin-left: -5px;
    padding-bottom: 5px;
}

.workshop-order__title .text-block__title {
    text-transform: lowercase;
}

.workshop-order__title span {
    text-transform: capitalize;
}

.workshop-order__line {
    width: 62px;
    height: 2px;
    background-color: #000000;
}

.workshop-order__form-inner {
    padding: 27px 10px 33px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.form-description__list {
    width: 100%;
    height: 100%;
    max-height: 215px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-description__item {
    height: 35px;
    display: flex;
    align-items: center;
    align-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #161917;
    padding-left: 57px;
    position: relative;
}

.form-description__item:before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
}

.form-description__item--order:before {
    content: url("/local/templates/reds_new/images/workshop/application.svg");
}

.form-description__item--task:before {
    content: url("/local/templates/reds_new/images/workshop/speech-bubble.svg");
}

.form-description__item--pay:before {
    content: url("/local/templates/reds_new/images/workshop/credit-cards-payment.svg");
}

.form-description__item--result:before {
    content: url("/local/templates/reds_new/images/workshop/contract.svg");
}

.form-field__button {
    min-height: 45px !important;
    height: 45px;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 19px;
    -webkit-box-shadow: 0px 0px 18px 5px rgba(224, 32, 45, .40);
    box-shadow: 0px 0px 18px 5px rgba(224, 32, 45, .40);
}

.workshop-detail__order .color--white {
    padding: 0 3px;
}

.form-description__item .color--white {
    margin-left: 1px;
    font-weight: 600;
    padding: 0px 2px;
}

.form-description__number {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #161917;
    margin-right: 8px;
}

.form-description__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #161917;

}

/* workshop-order__form */

.workshop-order__form {
    max-width: 285px;
}

.workshop-order__form .form__field input {
    background-color: #E7E8E7;
    opacity: 1;
    height: 40px;
}

.workshop-order__form .form__field label,
.workshop-order__form .form__field input {
    font-weight: 300;
    font-size: 12px;
    line-height: 19px;
    color: #161917;
    opacity: 0.8;
}

.form__field label {
    left: 16px !important;
}

.workshop-order__form .form__field label:after {
    content: "";
}

.workshop-order__form .form__field {
    margin-bottom: 15px;
}

.order-price__list {
    display: flex;
    flex-direction: row;
    max-width: 315px;
    justify-content: space-between;
}

.workshop-order__price {
    margin-top: 30px;
    padding-left: 10px;
}

.order-price__item {
    font-weight: 400;
    color: #161917;
    display: flex;
    flex-direction: column;
}

.order-price__for {
    font-size: 14px;
    line-height: 16px;
}

.order-price__value {
    font-size: 18px;
    line-height: 21px;
}

.workshop-order__form .policy {
    margin-top: 25px;
}

.workshop-order__form .policy label {
    color: #161917;
}

.workshop-order__form .policy label a {
    color: #e0202d;
    border-bottom: 1px solid #e0202d;
}

.workshop-order__form .policy label a:hover {
    border-color: transparent;
}

.workshop-order__form .policy .s-checkbox {
    width: 15px;
    height: 15px;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    margin-right: 11px;
}

.workshop-order__form .policy .icon-check_white {
    background-image: url('/local/templates/reds_new/images/check_new_red.svg');
    background-position: -4px 2px;
    background-repeat: no-repeat;
    top: -3px;
    left: 0;
}

/* workshop-detail__order--end */

/* workshop-detail__other--start */

.workshop-detail__other {
    margin-top: 40px;
}

.workshop-other__list {
    display: block;
}

.workshop-other__item {
    margin-right: 30px;
    outline: none;
}

.workshop-other__inner {
    padding-top: 86px;
    position: relative;
}

.workshop-other__title {
    position: absolute;
    top: 0;
    left: 0;
}

.workshop-other__item {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    max-width: 270px;
    width: 100%;
}

.workshop-other__item:hover {
    cursor: pointer;
}

.workshop-other__item:hover .other-item__title {
    border-bottom-color: #E0202D;
}

.other-item__inner {
    padding: 17px 20px 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.other-item__title {
    height: 74px;
    border-bottom: 2px solid #E2BC79;
}

.other-item__title a h2 {
    max-height: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.other-item__description {
    height: 112px;
    margin: 17px 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #161917;
    overflow: hidden;
    text-overflow: ellipsis;
}

.other-item__price,
.other-item__time {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.other-item__price {
    margin-bottom: 24px;
}

.item-price__value {
    height: 32px;
    font-size: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.other-item__time {
    margin-bottom: 34px;
}

.other-item__price .text-block__title,
.other-item__time .text-block__title {
    margin: 0;
}

.item-price__for,
.item-time__for {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #AAAAAA;
}

.item-time__value {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
}

.other-item__button {
    display: flex;
    height: 50px;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 2px solid #E2BC79;
}

.workshop-other__item .other-item__button:hover {
    background-color: #E0202D;
    box-shadow: 0px 4px 16px #E0202D;
    border: 2px solid #E0202D;
}

.workshop-other__item .other-item__button:hover .other-button__text {
    color: #FFFFFF;
}

.other-button__text {
    font-family: Gilroy;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #E2BC79;
}

.slick-list {
    margin: -15px;
    padding: 15px;
}

.workshop-slider__prev,
.workshop-slider__next {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: -71px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #161917;
    border-radius: 5px;
}

.workshop-slider__prev {
    right: 50px;
}

.workshop-slider__next {
    right: 0;
}

.workshop-slider__prev--arrow,
.workshop-slider__next--arrow {
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 15px;
}

.workshop-slider__prev--arrow {
    background-image: url("/local/templates/reds_new/images/workshop/workshop_popular_arrow.svg");
}

.workshop-slider__next--arrow {
    background-image: url("/local/templates/reds_new/images/workshop/workshop_popular_next.svg");
}

.other-item__mobile-button {
    display: none;
}

/* workshop-detail__other--end */

h1.workshop__block-title {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 37px;
    color: #161917;
    text-transform: lowercase;
    margin-bottom: 30px;
}

h2.workshop__block-title {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 800;
    /*font-size: 30px;
    line-height: 37px;*/
    font-size: 26px;
    line-height: 31px;
    color: #161917;
    text-transform: lowercase;
    margin-bottom: 30px;
}

.workshop__block-title:first-letter{
    text-transform: uppercase;
}

.workshop-indicators__hint {
    display: flex;
    justify-content: flex-end;
    padding: 30px 114px 30px 0;
    overflow: hidden;
}

.indicators-hint__content {
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    width: 550px;
    max-width: 100%;
    padding: 15px 46px 11px 26px;
}

.indicators-hint__line {
    position: relative;
    padding: 0 5px;
    height: 20px;
}

.indicators-hint__line::after {
    content: "";
    position: absolute;
    left: 10px;
    top: calc(50% - 2px);
    width: 1000px;
    height: 4px;
    background-color: #FF1A29;
}

.indicators-image__inner img {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.indicators-image__caption {
    font-style: italic;
}

.indicators-cards__inner {
    padding-top: 70px;
    padding-bottom: 15px;
}

.horizontal-scroll__container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
}

/* Width */
.horizontal-scroll__container::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.custom-track::-webkit-scrollbar {
    height: 10px;
}

/* Track */
.custom-track::-webkit-scrollbar-track {
    background: #F2F2F2;
}

/* Handle */
.custom-track::-webkit-scrollbar-thumb {
    background: #E2BC7966;
}

/* Handle on hover */
.custom-track::-webkit-scrollbar-thumb:hover {
    background: #E2BC79;
}

.indicators-cards__list {
    margin: -15px;
    padding: 15px;
    width: calc(100% + 30px);
}

.indicators-cards__item {
    min-width: 270px;
    width: 270px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.indicators-cards__item:not(:last-child) {
    margin-right: 30px;
}

.cards-item__inner {
    padding: 20px 20px 35px 20px;
    justify-content: space-between;
    height: 100%;
}

.cards-item__title {
    overflow-x: hidden;
    flex-wrap: nowrap;
    padding-bottom: 30px;
}

.cards-item__word {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #161917;
    padding-bottom: 15px;
    text-overflow: ellipsis;
}

.cards-item__word--underline {
    border-bottom: 2px solid #E2BC79;
}

.cards-item__list {
    padding-bottom: 35px;
}

.cards-item__list li {
    position: relative;
    font-weight: normal;
    color: #000000;
    padding-left: 19px;
}

.cards-item__list li:not(:last-child) {
    margin-bottom: 10px;
}

.cards-item__list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    background: #E2BC79;
    border-radius: 50%;
}

.cards-item__bottom {
    justify-content: space-between;
}

.cards-item-price__value {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}

.cards-item-price__subtitle {
    line-height: 16px;
}

.cards-item__button {
    width: 150px;
    height: 45px;
    border: 2px solid #E2BC79;
    box-sizing: border-box;
    border-radius: 30px;
    background: transparent;
    color: #E2BC79;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}

.cards-item__button:hover {
    background: #E2BC79;
    box-shadow: 0px 0px 25px rgba(226, 188, 121, 0.4);
    color: #FFFFFF;
    cursor: pointer;
}

.detail-stages__item:first-child {
    border-top: 1px solid #E5E5E5;
}

.detail-stages__item {
    border-bottom: 1px solid #E5E5E5;
}

.detail-stages__item.active:first-child {
    border-top: 1px solid transparent;
}

.detail-stages__item.active .stages-item__head {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.stages-item__head {
    background: #FFFFFF;
    position: relative;
    padding: 15px 67px 16px;
}

.stages-item__head:hover {
    cursor: pointer;
}

.stages-item__head::after {
    content: url("/local/templates/reds_new/images/workshop/stages-arrow.svg");
    position: absolute;
    right: 40px;
    top: calc(50% - 10px);
}

.detail-stages__item.active .stages-item__head::after {
    content: url("/local/templates/reds_new/images/workshop/stages-arrow-active.svg");
}

.stages-item__content {
    display: none;
    padding: 30px 67px 35px;
}

.detail-stages__item.active .stages-item__content {
    display: block;
}

.stages-item-head__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}

.stages-item-head__number {
    position: absolute;
    top: 50%;
    left: 26px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #FF1A29;
    transform: translateY(-50%);
}

.workshop-images__list img {
    margin-top: 30px;
    margin-right: 45px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.workshop-rates__table {
    min-width: 870px;
    width: 870px;
}

.rates-table__title {
    text-align: left;
    padding: 23px 20px 44px 20px;
}

.rates-table__title-text {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #161917;
}

.rates-table__title-text span {
    padding-bottom: 10px;
    border-bottom: 1px solid transparent;
}

.rates-table__title-text span:first-child {
    border-color: #E0202D;
}

.rates-table__line-title {
    width: 214px;
    padding: 17px 0 17px 20px;
}

.rates-table__line-title span {
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
}

.rates-table__line-value {
    vertical-align: middle;
}

.rates-table__line-value span {
    margin: 0 auto;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 25px;
    height: 25px;
}

.unmarked {
    background-image: url("/local/templates/reds_new/images/workshop/unmarked.svg");
}

.marked {
    background-image: url("/local/templates/reds_new/images/workshop/marked.svg");
}

tr.rates-table__title-list,
tr.rates-table__buttons {
    background-color: #FFFFFF !important;
}

.workshop-rates__table tr:nth-child(odd),
.rates-table__title-list &gt; th:nth-child(odd) {
    background-color: #F2F2F2;
}

.rates-table__button {
    padding: 30px 0;
}

.rates-table__button &gt; button {
    margin: 0 auto;
    width: 160px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #E2BC79;
    border-radius: 30px;

    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E2BC79;
}

.rates-table__button &gt; button:hover {
    cursor: pointer;
    background: #E2BC79;
    box-shadow: 0px 0px 25px rgba(226, 188, 121, 0.4);
    color: #FFFFFF;
}

.workshop-rates__text-block {
    padding-top: 30px;
}

.workshop-rates__block-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    padding-left: 23px;
    position: relative;
    margin-bottom: 10px;
}

.workshop-rates__block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    background-color: #E0202D;
    border-radius: 50%;
}

.workshop-rates__block-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

.workshop-rates__block-content p:not(:last-child) {
    margin-bottom: 10px;
}

.workshop-images__list {
    padding: 15px;
    margin: -15px;
    width: calc(100% + 15px);
}

.workshop-detail__blocks &gt; .workshop-block__wrapper {
    padding: 36px 0;
}

.workshop-detail__blocks &gt; .workshop-block__wrapper:first-child {
    padding-top: 0;
}

/* workshop__detail--end */

/* CONTENT - workshop__inner--end */

/* Детальная услуги */

.container__service_detail .w600 {
    font-weight: 600;
}

.service_detail--infoblock {
    background-image: url(/local/templates/reds_new/images/circles.png);
    background-blend-mode: overlay;
    background-repeat: no-repeat;  
    background-position: 255px 195px;  
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 30px 40px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.service_detail--infoblock--wrap {
    background: linear-gradient(59.9deg, #4A4AFC -2.77%, #C953E7 78.95%);
}

.service_detail--infoblock h1 {
    text-transform: none;
    font-weight: 800;
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 20px;
}

.service__evaluation {
    display: flex;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(259,259,259,0.1);
    margin-bottom: 30px;
    margin-top: 26px;
}

.service__evaluation--block {
    display: flex;
}

.service__evaluation--block:first-child {
	margin-right: 104px;
}

.service__evaluation--img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: rgba(259,259,259,0.1);
    margin-right: 10px;
}

.service__detail--btn {
    background: #E2BC79;
    border-radius: 5px;
    width: 230px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.service__detail--btn:hover {
	opacity: 80%;
}

.service__detail--btn:active {
	opacity: 100%;
}

span.evaluation--info_value {
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
}

.service__evaluation--info span span {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	color: #E2BC79;
	padding-left: 2px;
}

.service__evaluation--info img {
	position: relative;
    top: 5px;
    left: 2px;
}

.service__evaluation--block:nth-child(2) .evaluation--info_value {
    line-height: 32px;
}

.container__service_detail h2 {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 31px;
    color: #161917;
    margin-bottom: 20px;
    margin-top: 50px;
}

.container__service_detail blockquote {
    border-radius: 5px;
    background: rgba(0,0,0,0.03);
    padding: 15px 60px 15px 80px;
    margin-bottom: 20px;
    position: relative;
    font-size: 16px;
    line-height: 22px;
    font-family: "Gilroy";
}

.container__service_detail blockquote img {
	position: absolute;
	top: 18px;
    left: 29px;
}

.container__service_detail p {
	font-family: "Gilroy";
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	color: #161917;
	margin-bottom: 21px;
}

.service_detail--infoblock p {
	margin-bottom: 17px;
	color: #FFFFFF;
}

.container__service_detail h4 {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #161917;
    margin-bottom: 20px;
}

.container__service_detail ul {
	margin-bottom: -10px;
}

.container__service_detail ul li {
    position: relative;
    padding-left: 56px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 10px;
}

.container__service_detail ul li:before {
    position: absolute;
    top: 7px;
    left: 31px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: '';
    background: #cc3a2b;
}

.service_detail--form {
    background: linear-gradient(60.49deg, #4A4AFC -2.77%, #C953E7 78.95%);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 30px 50px 40px 50px;
    margin-top: 50px;
}

.service_detail--form h2 {
	color: #FFFFFF;
	margin-top: 0;
}

.service__form--evaluation {
    border-radius: 5px;
    display: inline-block;
    background: rgba(259,259,259,0.1);
    margin-right: 7px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: rgba(259,259,259,0.7);
    height: 50px;
    padding: 15px 35px 15px 20px;
    margin-bottom: 30px;
}

.service__form--evaluation span {
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: rgba(259,259,259,1);
}

.service_detail--form label {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: rgba(259,259,259,0.7);
    display: block;
    margin-bottom: 10px;
}

.service_detail--form input {
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 5px;
    background: transparent;
    height: 50px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    width: 360px;
    padding: 17px 15px;
}

.service_detail--form input::-webkit-input-placeholder {color:#ffffff;}
.service_detail--form input::-moz-placeholder          {color:#ffffff;}/* Firefox 19+ */
.service_detail--form input:-moz-placeholder           {color:#ffffff;}/* Firefox 18- */
.service_detail--form input:-ms-input-placeholder      {color:#ffffff;}

.service_detail--form_input {
    width: 360px;
    display: inline-block;
    margin-bottom: 20px;
}

.service_detail--form_input:nth-child(5) {
	margin-right: 46px;
}

.service_detail--form textarea {
    width: 100%;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 5px;
    min-height: 95px;
    padding: 17px 15px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
    margin-bottom: 27px;
    background: transparent;
}

.service_detail--form textarea::-webkit-input-placeholder {color:#ffffff;}
.service_detail--form textarea::-moz-placeholder          {color:#ffffff;}/* Firefox 19+ */
.service_detail--form textarea:-moz-placeholder           {color:#ffffff;}/* Firefox 18- */
.service_detail--form textarea:-ms-input-placeholder      {color:#ffffff;}

button.service__form--btn {
    background: #E2BC79;
    border-radius: 5px;
    width: 335px;
    height: 55px;
    border: 0;
    outline: 0;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-right: 30px;
    float: left;
    cursor: pointer;
}

button.service__form--btn:hover {
	opacity: 80%;
}

button.service__form--btn:active {
	opacity: 100%;
}

.service_detail--form .policy {
	margin-top: 12px;
}

.service_detail--form .policy .s-checkbox {
    width: 15px;
    height: 15px;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 2px;
    margin-right: 10px;
}

.service_detail--form .policy .s-checkbox input {
    width: auto;
    height: auto;
}

.service_detail--form .policy .icon-check_white {
    background-image: url(/local/templates/reds_new/images/workshop/стрелка.svg);
    background-position: 0px 3px;
    background-repeat: no-repeat;
    width: 35px;
    height: 27px;
}

.service_detail--form  .policy label {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}

.service_detail--form .policy label a {
    cursor: pointer;
}

.service_detail--form .policy label a:hover {
    border-bottom: 1px solid transparent;
}

/* Детальная услуги - end */

/* ADAPTIVE--start */

@media only screen and (max-width: 1199px) {

    .workshop-order__price {
        margin-top: 28px;
        padding-left: 0px;
    }

    .workshop-order__form-inner {
        padding: 27px 0px 33px;
    }


    .workshop-detail__other {
        margin-top: 70px;
    }

    .workshop__article p.mb9:not(:last-child) {
        margin-bottom: 9px !important;
    }

    .workshop-card__pricing {
        margin-bottom: 27px;
    }

    .workshop-price__item:first-child {
        margin-bottom: 6px;
    }

    .workshop-card__text {
        padding-top: 2px;
        margin-bottom: 30px;
    }

    .workshop__workshop-menu,
    .workshop-breadcrumb {
        display: none;
    }

    .workshop__tablet-menu {
        display: none;
        /*display: block;*/
    }

    .workshop__title {
        padding-bottom: 54px;
    }

    .workshop__inner,
    .title__inner {
        max-width: 820px;
    }

    .slick-list {
        margin: -15px 0 -15px -15px;
        padding: 15px 0 15px 15px;
    }

    .workshop-detail__card {
        padding: 40px 50px 32px 40px;
    }

    .workshop-detail__text-block--first {
        padding: 45px 0 45px;
    }

    .workshop-detail__text-block--second {
        padding: 40px 0 45px;
    }

    .workshop-order__inner {
        padding: 37px 40px 30px;
    }

    .workshop-pricing__inner {
        justify-content: space-between;
    }

    .workshop-pricing__price,
    .workshop-pricing__time {
        width: auto;
    }

    .workshop-pricing__time {
        width: 29%;
    }

    .item-time  span:nth-child(2) {
        display: inline-block;
    }

    /* Детальная услуги */

    .service_detail--infoblock {
	    padding: 30px;
        background-position: 267px 198px;
	}

	.service_detail--infoblock p {
	    margin-bottom: 22px;
	}

	.container__service_detail blockquote {
	    padding: 15px 30px 15px 80px;
	}

	.container__service_detail ul li {
	    padding-left: 53px;
	}

	.service_detail--form {
	    padding: 30px 50px 40px 40px;
	}

	.service_detail--form_input,
	.service_detail--form input {
	    width: 320px;
	}

	button.service__form--btn {
	    margin-right: 19px;
	}

	.service_detail--form .policy .s-checkbox {
	    float: left;
	    margin-bottom: 20px;
	}

	.service_detail--form .policy {
	    margin-top: 2px;
	}

	.service_detail--form {
	    padding: 30px 50px 35px 40px;
	}

    /* Детальная услуги - end */

}

@media only screen and (max-width: 767px) {
    .workshop-pricing__inner {
        flex-direction: column;
        justify-content: space-between;
    }

    .workshop-pricing__price {
        margin-bottom: 10px;
    }

    .workshop-order__form-description {
        max-width: 60%;
    }

    .workshop-order__form {
        max-width: 40%;
        width: 100%;
    }

    .workshop-order__form .row button {
        width: 100%;
    }

    .workshop-other__title {
        max-width: 70%;
    }

    .workshop__block-title {
        font-size: 24px;
        line-height: 29px;
    }

    .workshop-indicators__hint {
        padding: 30px 30px 30px 0;
        overflow: visible;
    }

    .indicators-hint__content {
        padding: 15px 24px 15px 20px;
    }

    .stages-item__content {
        padding: 30px 0px 35px 26px;
    }

    .workshop-images__list {
        padding: 15px 0px 15px 15px;
        margin: -15px 0px -15px -15px;
        width: calc(100% + 35px);
    }

    .rates-table__line-title {
        width: 203px;
    }

    .rates-table__line-title span {
        font-size: 14px;
        line-height: 16px;
    }

    .workshop-detail__blocks &gt; .workshop-block__wrapper {
        padding: 26px 0;
    }
}

@media only screen and (max-width: 660px) {
    .workshop-order__form-description {
        max-width: 100%;
        order: 1;
        margin-top: 26px;
        height: 220px;
    }

    .workshop-order__form {
        max-width: 100%;
        order: 0;
        width: 100%;
    }

    .workshop-order__form-inner {
        flex-direction: column;
    }
}

@media only screen and (max-width: 600px) {
    .slick-list {
        margin: -15px 0 -15px;
        padding: 15px 0 15px;
    }

    .workshop-factors__title {
        max-width: 300px;
        padding: 0 0 0 5px;
        left: 15px;
    }

    .workshop__article p .red {
        padding: 3px 5px 3px 6px;
        margin-left: -3px;
    }

    .workshop-detail__factors,
    .workshop-factors__title {
        background-image: none;
        background-color: #161917;
    }

    .workshop-factors__inner {
        padding: 80px 62px 42px;
    }

    .workshop-other__inner {
        padding-top: 115px;
    }

    .workshop-slider__prev, .workshop-slider__next {
        top: -100px;
    }

    .workshop-factors__inner {
        padding: 80px 10px 42px 20px;
    }

    .workshop-detail__factors {
        margin: 0 -20px;
    }
}

@media only screen and (max-width: 510px) {
    .workshop-price__icon--desktop,
    .text--desktop,
    .workshop-other__title {
        display: none;
    }

    .workshop-price__icon--mobile {
        display: block;
    }

    .workshop-price__list .workshop-price__item {
        position: relative;
        padding-bottom: 30px;
    }

    .workshop-price__list .workshop-price__item:after {
        content: "";
        position: absolute;
        width: 20px;
        height: 1px;
        left: 0;
        bottom: 15px;
        background: #000000;
    }

    .workshop-detail__card {
        padding: 20px 20px 25px;
        margin: 0 -20px;
        background: #F7F7F7;
    }

    .workshop__inner {
        padding: 20px;
    }

    .workshop__tablet-menu {
        background: linear-gradient(to bottom, #161917 60%, #F7F7F7 40%);
    }

    .workshop-detail__text-block--first {
        padding: 25px 0 30px;
    }

    .workshop-factors__red-line {
        height: 41px;
    }

    .workshop-factors__title {
        top: 25px;
    }

    .workshop-detail__text-block--second {
        padding: 35px 0 35px;
    }

    .workshop-order__inner {
        padding: 20px 20px 25px;
    }

    .workshop-order__form-inner {
        padding: 20px 0px 27px;
    }

    .form-description__item {
        display: block;
        align-items: flex-start;
    }

    .order-price__list {
        max-width: 330px;
        margin: 0;
        max-width: 100%;
    }

    .order-price__item {
        color: #000000 !important;
    }

    .workshop-other__inner {
        padding-top: 0px;
    }

    .workshop__inner {
        flex-direction: column;
    }

    .workshop__workshop-menu {
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        order: 1;
    }

    .workshop__detail {
        order: 0;
    }

    .workshop-menu__list {
        width: 100%;
    }

    .workshop-menu__title {
        display: block;
        padding-bottom: 15px;
    }

    .workshop-other__item {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .other-item__price,
    .other-item__time {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .other-item__price {
        margin: 22px 0 20px;
    }

    .item-price__value {
        order: 1;
        line-height: 26px;
    }

    .item-price__for {
        order: 0;
    }

    .other-item__time {
        margin-bottom: 0;
    }

    .item-time__for {
        display: none;
    }

    .other-item__button,
    .other-item__description {
        display: none;
    }

    .other-item__description {
        height: auto;
        margin: 0;
        padding-top: 15px;
        padding-bottom: 8px !important;
    }

    .other-item__title .text-block__title {
        margin-bottom: 19px;
        flex-direction: row;
    }

    .other-item__title .text-block__title span {
        width: fit-content;
    }

    .other-item__inner {
        padding: 17px 15px 25px;
    }

    .item-time__value {
        border: 1.5px solid #E2BC79;
        box-sizing: border-box;
        border-radius: 50px;
        height: 35px;
        max-width: 130px;
        width: 100%;
        line-height: 30px;
        text-align: center;
        font-family: Arkhip;
        font-weight: 400;
        font-size: 14px;
        color: #E2BC79;
    }

    .other-item__mobile-button {
        display: flex;
        border: 1.5px solid #161917;
        box-sizing: border-box;
        border-radius: 50px;
        max-width: 155px;
        width: 100%;
        height: 35px;
        justify-content: center;
        align-items: center;
    }

    .mobile-button__text {
        padding-right: 17px;
        position: relative;
        font-family: Arkhip;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: #161917;
    }

    .mobile-button__text:after {
        position: absolute;
        content: url("/local/templates/reds_new/images/workshop/arrow-down.svg");
        top: 0;
        right: 0;
    }

    .mobile-button--hide {
        display: none;
        max-width: 130px;
        margin: 0 auto;
    }

    .mobile-button-text--hide:after {
        transform: rotateZ(180deg);
        top: 2px;
    }

    .other-item__time {
        height: 35px;
    }

    .other--active {
        display: flex;
    }

    .other--hidden {
        display: none;
    }

    .other-item__button {
        margin: 25px 0 36px 0;
    }

    .price-item__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-item__text {
        margin: 5px 0 0 0;
    }

    .form-description__item--result {
        flex-direction: column;
    }

    .form-description__item--result .color--white {
        margin-left: 2px;
        display: block;
        max-width: fit-content;
    }
}

.price-item__hint-inner {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 365px) {
    .other-item__mobile-button {
        max-width: 125px;
    }

    .other-item__inner {
        padding: 17px 10px 25px;
    }

    .workshop__inner {
        padding: 20px 15px;
    }

}

@media only screen and (max-width: 1199px) {

    .other-item__time {
        margin-bottom: 30px;
    }

    .other-item__description {
        padding-bottom: 24px;
    }

    .text-block__title {
        margin-bottom: 21px;
    }

    .menu-active {
        display: block !important;
    }

    .workshop-menu__dropdown {
        display: none;
    }

    .tablet-menu__content {
        display: none;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 540px;
        padding: 0 20px;
        z-index: 2002;
    }

    .workshop__title .workshop-menu__dropdown {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 540px;
        padding: 0 20px;
        z-index: 2002;
    }

    .background--white {
        background-color: #FFFFFF;
    }

    .workshop-dropdown__title,
    .workshop-menu__list,
    .workshop-menu__close-button {
        background: #FFFFFF;
        width: 100%;
    }

    .workshop-menu__close-button:hover {
        cursor: pointer;
    }

    .workshop__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(38, 38, 38, 0.6);
        z-index: 2000;
    }

    .workshop-dropdown__title {
        text-align: center;
        font-weight: 600;
        font-size: 24px;
        line-height: 53px;
        color: #161917;
    }

    .tablet-menu__content .workshop-menu__list li .workshop-menu__item {
        padding: 0 34px 0 25px;
    }

    .tablet-menu__content .workshop-menu__list li .workshop-menu__item:after {
        right: 25px;
    }

    .workshop-dropdown__item,
    .workshop-menu__close-button {
        height: 50px;
        line-height: 50px;
        font-weight: 400;
        font-size: 16px;
        color: #161917;
        padding-left: 56px;
    }

    .workshop-menu__close-button {
        padding: 0;
        text-align: center;
    }

    .workshop-menu__close-button {
        margin-top: 10px;
        font-weight: 600;
    }

    .workshop-dropdown__item:hover {
        font-weight: 500;
        cursor: pointer;
    }

    .workshop-dropdown__back-button {
        padding-left: 46px;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .workshop-dropdown__back-button:before {
        content: url(/local/templates/reds_new/images/workshop/arrow-right-active.svg);
        position: absolute;
        top: 0;
        left: 20px;
        transform: rotateY(180deg);
    }
}

@media only screen and (max-width: 375px) {

    .workshop-order__form .form__field label, .workshop-order__form .form__field input {
        font-weight: 400;
        font-size: 16px;
    }

    .workshop-order__form .form__field label, .workshop-order__form .form__field input:focus {
        font-weight: 400;
        font-size: 13px;
    }

    .tablet-menu__content .workshop-menu__list li .workshop-menu__item {
        padding: 0 26px 0 15px;
    }

    .tablet-menu__content .workshop-menu__list li .workshop-menu__item:after {
        right: 20px;
    }

    .workshop-dropdown__item,
    .workshop-menu__close-button {
        padding-left: 46px;
    }

    .workshop-dropdown__back-button {
        padding-left: 36px;
    }

    .workshop-dropdown__back-button:before {
        left: 15px;
    }

    .workshop-menu__close-button {
        padding: 0;
        text-align: center;
    }
}

/* ADAPTIVE--end */


/* WORKSHOP-LIST--START */

.workshop-list__sub-title {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.workshop-list__sub-title:not(:last-child) {
    margin-bottom: 20px;
}

.workshop-list__sub-title--w700 {
    max-width: 700px;
}

.workshop-list__sub-title--w835 {
    max-width: 835px;
}

.workshop-list__title {
    max-width: 466px;
    margin-bottom: 20px;
}

.workshop__services-title {
    padding-bottom: 11px;
}

.workshop__services-list {
    position: relative;
    background-color: #FFFFFF;
}

.workshop__services-list:before,
.workshop__services-list:after {
    z-index: 0;
    position: absolute;
    content: url("/local/templates/reds_new/images/workshop/paint-big.png");
    width: 208px;
    height: auto;
}

.workshop__services-list:before {
    top: -28px;
    left: -112px;
}

.workshop__services-list:after {
    bottom: -50px;
    right: -15px;
}

.services-list__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.empty-services-list__inner {
    position: relative;
    z-index: 1;
    min-height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
}

.workshop__services-list.empty {
    width: 100%;
    height: 340px;
}

.workshop__services-list.empty:after,
.workshop__services-list.empty:before {
    display: none;
}

.services-list__item {
    max-width: 270px;
    width: 100%;
    background: #FFFFFF;
    margin-bottom: 30px;
    border: 3px solid transparent !important;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 19px 5px 24px 17px;
    min-height: 205px;
    border-radius: 5px;
}

.services-list__item:hover {
    border: 3px solid #E2BC79 !important;
    background: url('../images/workshop/workshop__arrow.svg') no-repeat left 16px bottom 16px;
}

.services-list__item.is-empty {
    min-height: 0;
    height: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0px;
}

.services-item__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services-list__item:hover .services-item__title {
    color: #E2BC79;
}

picture .workshop__banner {
    margin-bottom: 50px;
}

.workshop__index .workshop__block-title {
    margin-bottom: 20px;
}

.services-item__title {
    width: 171px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #161917;
}

.services-item__icon {
    width: 50px;
    height: 50px;
    margin-right: 16px;
}

.services-item__content a, .services-item__link {
    min-height: 42px;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.services-item__text {
    overflow: hidden;
    position: relative;
    padding-top: 18px;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: #000000;
    overflow: hidden;
    max-height: 90px;
}

.services-item__text li {
    padding-left: 13px;
    position: relative
}

.services-item__text li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #E0202D;
    top: 5px;
    left: 0;
    border-radius: 50%;
}

.services-item__text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 20px;
    height: 0.1875em;
    background-color: rgba(226, 188, 121, 0.8);
}

.services-item__button {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(226, 188, 121, 0.8);
    padding-top: 16px;
}

.services-item__button-text {
    position: relative;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    color: #000000;
    padding-right: 15px;
    transition: all 0.2s ease-in;
}

.services-item__button-text:active {
    font-size: 0.78125em;
}

.services-item__button-text:after {
    content: url("/local/templates/reds_new/images/workshop/arrow-right-active.svg");
    position: absolute;
    top: 2px;
    right: 0;
}

.workshop-list__title--red {
    color: #000000 !important;
    padding: 0;
    background-color: #FFFFFF;
}

.workshop-list__popular {
    padding-top: 28px;
}

.workshop-popular__item {
    width: 100%;
    max-width: 270px;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.workshop-popular__item .popular-item__img img {
    height: 100%;
}

.workshop-popular__item--empty {
    box-shadow: none;
    height: 0;
    margin-right: 0;
    margin-bottom: 0 !important;
}

.workshop__services-list .workshop-popular__item:not(:nth-child(3n)), .workshop-popular__item:not(:last-child) {
    margin-right: 30px;
}

.popular-item__inner {
    padding: 17px 20px 30px;
    max-height: 332px;
    min-height: 240px;
}

.popular-item__title {
    height: 41px;
    border-bottom: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #000000;
}

.popular-item__title a h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    height: 42px;
    max-height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-item__description {
    height: 48px;
    margin: 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-item__price {
    height: 29px;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    bottom: 70px;
    width: 230px;
}

.workshop-popular__item.discont .workshop-list__popular .item-price__value {
    color: red;
}

.populat-item--discount {
    position: absolute;
    top: 10px; 
    left: 10px;
    width: 55px;
    height: 22px;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    background: url('../images/workshop/discount.png') no-repeat left center;
    padding: 2px 13px;
    display: none;
}


.popular-item__price .item-price__value {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
}

.popular-item__price .marketplace__content__item__price__old {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    margin-left: 14px;
    position: absolute;
    right: 0;
    display: none;
}

.workshop-popular__item.discont .popular-item__price .marketplace__content__item__price__old,
.workshop-popular__item.discont .populat-item--discount {
    display: inline-block;
}

.popular-item__price .item-price__value span {
    font-size: 27px;
    line-height: 21px;
}

.popular-item__time {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
    height: auto;
    min-height: 30px;
    justify-content: center;
    background: url('../images/workshop/populat_time.svg') no-repeat left center;
}

.item-time {
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #AAAAAA;
}

.time_period {
    font-weight: bold;
}

.popular-item__button {
    margin: 0 auto;
    display: flex;
    height: 40px;
    width: 100%;
    max-width: 230px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #E2BC79;
    position: absolute;
    bottom: 20px;
}

.popular-item__button .other-button__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #E2BC79;
}

.workshop-popular__item .popular-item__button:hover {
    background-color: #E2BC79;
    box-shadow: none;
    border: none;
}

.popular-item__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #000000;
}

.workshop-popular__item .popular-item__button:hover .other-button__text {
    color: #FFFFFF;
}

.workshop-popular__item:hover .popular-item__title {
    border-bottom-color: #E0202D;
}

.workshop-popular__title {
    margin-bottom: 37px;
}

.workshop-list-slider__prev, .workshop-list-slider__next {
    top: -50px;
}

.workshop-list__popular .item-price__value {
    font-size: 24px;
}

.workshop-list-slider__prev:hover,
.workshop-list-slider__next:hover {
    cursor: pointer;
}

.services-item__button-text:hover {
    cursor: pointer;
    font-weight: 600;
}

/* FIX : START */

.blog__wrapper {
    background: #fff;
    position: relative;
    width: 100%;
}

.workshop__banner {
    width: 100%;
}


services-item__content &gt; a {
    white-space: nowrap;
}

.workshop__services-list:before, .workshop__services-list:after {
    display: none;
}

.services-item__text:before {
    display: none;
}

.services-item__text {
    padding-top: 0px;
    margin-top: 18px;
    font-family: Gilroy;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    padding-bottom: 0;
    max-height: 80px;
    padding-right: 10px;
}

.services-item__button {
    display: none;
}

.popular-item__img {
    width: 100%;
    max-height: 160px;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.popular-item__img img {
    height: inherit;
}

.popular-item {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.popular-item__title {
    padding-bottom: 0px;
    height: auto;
    margin-bottom: 20px;
}

.item-time {
    padding-left: 26px;
    font-family: Gilroy;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
    height: 100%;
    display: block;
}

.workshop-list__popular .item-price__value {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #161917;
}

.workshop-popular__list {
    display: flex;
    overflow: hidden;
}

.workshop-popular__list.slick-slider {
    overflow: visible;
}

.workshop-popular__item {
    min-width: 270px;
}

.workshop__innerlist {
    margin-bottom: 50px;
}

.workshop-popular__list .slick-list {
    padding: 15px;
    margin: -15px;
}

/* Заголовок Н1 */
.workshop__index h1 {
    font-family: Gilroy;
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 37px;
    /* identical to box height */
    color: #161917;
    margin-bottom: 30px;
    text-transform: unset;
}

.workshop-list__popular h1 {
    text-transform: none;
    font-size: 26px;
    line-height: 31px;
}

button {
    outline: 0 !important;
}

/* FIX : END */

@media only screen and (max-width: 1199px) {

    .workshop__index h1 {
        font-size: 30px;
        line-height: 37px;
    }

    .workshop-list__popular h1 {
        text-transform: none;
        font-size: 26px;
        line-height: 31px;
    }

    .workshop-popular__item {
        max-width: 250px;
        min-width: 250px;
    }

    .workshop-list__popular {
        padding-top: 20px;
    }

    .workshop-popular__list .slick-list {
        margin: -15px;
        padding: 15px;
    }

    .workshop__services-list .workshop-popular__item:not(:nth-child(3n)), .workshop-popular__item:not(:last-child) {
        margin-right: 15px;
    }

    .workshop-list__sub-title--red {
        color: #FFFFFF !important;
        padding: 0px 3px 2px 5px;
        background-color: #E0202D;
    }

    .workshop-list__sub-title {
        font-weight: 600;
    }

    .workshop__services-title {
        padding-bottom: 14px;
    }

    .services-list__item {
        padding: 22px 7px 27px 12px;
        max-width: 250px;
        width: 250px;
    }

    .services-item__icon {
        width: 40px;
        height: 40px;
        margin-right: 16px;
    }

    .services-item__text {
        padding-right: 0;
    }

    .popular-item__inner {
        padding: 17px 15px 30px;
        min-height: 240px;
    }

    .popular-item__title {
        margin-bottom: 19px;
    }

    .popular-item__price {
        width: 220px;
        bottom: 69px;
    }

    .popular-item__button {
        max-width: 220px;
        bottom: 18px;
    }

}

@media only screen and (max-width: 767px) {

    .workshop__innerlist{
        margin-bottom: 30px;
    }

    picture .workshop__banner {
        margin-bottom: 20px;
    }
    .workshop__index h1 {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 20px;
    }

    .services-list__item {
        max-width: calc(50% - 10px);
    }

    .workshop__services-list:after {
        display: none;
    }

    .workshop-pricing__time {
        width: auto;
    }

    .workshop__index .workshop__block-title {
        margin-bottom: 15px;
    }

    .workshop-list__popular {
        padding-top: 30px;
    }

    .popular-item__inner {
        padding: 20px 10px 40px;
        max-height: 332px;
    }

    .workshop-popular__inner {
        padding-bottom: 30px;
    }

    .workshop-popular__list .slick-list {
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .workshop-popular__item {
        width: 80%;
        margin: 0 auto !important;
        max-width: 100%;
        margin-bottom: 20px !important;
    }

    .workshop-popular__item .popular-item__img img {
        height: 100%;
        width: 100%;
        height: auto;
    }

    .workshop__services-list .workshop-popular__item:not(:nth-child(3n)), .workshop-popular__item:not(:last-child) {
        margin-right: 0;
    }

    .workshop-popular__item:not(:nth-child(2n)) {
        margin-right: 15px;
    }

    .workshop-hint {
        overflow: visible;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% + 20px);
        max-width: 355px;
    }

    .workshop-hint__inner {
        padding: 25px 25px 45px;
        background-image: none;
    }

    .workshop-hint .red {
        color: inherit !important;
        font-weight: inherit !important;
        background: transparent !important;
        padding: 0 !important;
    }


    .workshop-hint-underline {
        display: none;
    }

    .workshop-hint__include-services {
        padding: 10px 0 10px;
        border-bottom: 0;
    }

    .workshop-hint__text &gt; p:first-child {
        margin-bottom: 20px;
    }

    .workshop-hint__text &gt; p:last-child {
        font-family: Gilroy;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        color: #161917;
    }

    .text-block__title {
        font-family: Gilroy;
        font-weight: 800;
        font-size: 24px;
        line-height: 29px;
        color: #161917;
    }

    .form-description__number {
        display: none;
    }

    .workshop-hint__item:not(:last-child) {
        margin-bottom: 15px;
    }

    .workshop-hint__list {
        font-size: 14px;
        line-height: 20px;
        color: #161917
    }

    .workshop-hint__item {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .workshop-hint__item img {
        margin-right: 7px;
    }

    .workshop-hint__list:first-child {
        width: 60%;
    }

    .workshop-hint__list:last-child {
        width: 40%;
    }

    #workshop-hint__close {
        top: -34px;
        right: 10px;
    }

    .workshop-hint__text {
        font-family: Gilroy;
        font-weight: normal;
        font-size: 14px;
        line-height: 20px;
        color: #161917;
    }

    .workshop-hint__footer {
        flex-direction: column;
        margin-top: 30px;
    }

    .workshop-hint-footer__text {
        width: 100%;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        color: #161917;
        margin-bottom: 30px;
    }

    .workshop-hint-footer__button {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .workshop-hint-button {
        width: 100%;
        max-width: 305px;
        height: 45px;
        border: 0;
        background: #E2BC79;
        box-shadow: 0px 2px 15px rgba(226, 188, 121, 0.4);
        border-radius: 30px;
    }

    .workshop-hint-footer__text &gt; span:first-child {
        border: 1px solid #E2BC79;
        box-sizing: border-box;
        border-radius: 20px;
        padding: 4px 15px 6px;
        font-family: Gilroy;
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        color: #E2BC79;
    }

    .workshop-hint-footer__text &gt; span:last-child &gt; span {
        line-height: 30px;
        font-size: 18px;
        font-weight: 800;
    }

    .workshop-hint-button:hover {
        box-shadow: 0px 4px 15px #E2BC79;
        cursor: pointer;
    }

    .workshop-list__popular h1 {
        font-size: 20px;
        line-height: 24px;
    }

    .popular-item__img {
        max-height: 150px;
    }

    .popular-item__title {
        margin-bottom: 16px;
    }

    .popular-item__button {
        max-width: 210px;
    }

    .popular-item__inner {
        position: relative;
        max-height: 332px;
        padding: 17px 18px 40px !important;
        min-height: 231px;
    }

    .popular-item__time {
        padding-bottom: 0 !important; 
    }

    .workshop__index .popular-item__button {
        height: 40px !important;
        bottom: 18px;
    }

    .workshop-list__popular .item-price__value {
        font-size: 16px;
        line-height: 19px;
    }

    .popular-item__price {
        width: 210px;
        bottom: 75px;
    }

    .popular-item__price .item-price__value span {
        font-size: 21px;
    }

    .workshop-popular__list .workshop-popular__item {
        margin-right: 20px !important;
    }

    /* Детальная услуги */

    .service_detail--infoblock--wrap {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .service_detail--infoblock {
	    padding: 20px 20px 48px 20px;
	    margin-bottom: 30px;
	    border-radius: 0;
        background-position: 12% 99%;
        background-size: 200%;
	}

	.service_detail--infoblock h1 {
	    font-size: 24px;
	    line-height: 29px;
	    margin-bottom: 15px;
	}

	.service_detail--infoblock p {
	    margin-bottom: 16px;
	}

	.service__evaluation {
	    margin-top: 20px;
	    flex-wrap: wrap;
	    padding-bottom: 15px;
	    margin-bottom: 21px;
	}

	.service__evaluation--block:first-child {
	    margin-right: 0;
	    margin-bottom: 20px;
	    width: 100%;
	}

	.container__service_detail h2 {
	    font-size: 20px;
	    line-height: 24px;
	    margin-top: 30px;
	}

	.container__service_detail blockquote {
	    padding: 15px 17px 15px 41px;
	}

	.container__service_detail blockquote img {
	    left: 12px;
	    width: 19px;
	}

	.container__service_detail h4 {
	    font-size: 16px;
	    line-height: 19px;
	}

	.container__service_detail ul li {
	    padding-left: 17px;
	}

	.container__service_detail ul li:before {
	    top: 6px;
	    left: 0px;
	}

	.container__service_detail p {
	    margin-bottom: 16px;
	}

	.service_detail--form {
	    padding: 30px 20px;
	    padding-bottom: 5px;
	    width: calc(100% + 40px);
	    margin-left: -20px;
	    margin-top: 28px;
	    border-radius: 0;
	    margin-bottom: 30px;
	}

	.service_detail--form h2 {
	    margin-top: 0;
	    font-size: 24px;
	    line-height: 29px;
	}

	.service__form--evaluation {
	    margin-right: 0;
	    margin-bottom: 10px;
	    width: 100%;
	    padding: 15px 15px 15px 20px;
	}

	.service__form--evaluation:nth-child(4) {
		margin-bottom: 21px;
	}

	.service__form--evaluation span {
	    font-size: 16px;
	}

	.service_detail--form_input, 
	.service_detail--form input {
	    width: 100%;
	}

	button.service__form--btn {
	    margin-right: 0;
	    margin-bottom: 19px;
	    width: 100%;
	    float: none;
	}

    /* Детальная услуги - end */


}

@media only screen and (max-width: 510px) {

    .popular-item__inner {
        padding: 10px 10px 20px;
        max-height: 332px;
    }

    .popular-item__title a h2 {
        font-size: 14px;
        line-height: 17px;
        max-height: 34px;
    }

    .popular-item__title {
        padding-bottom: 10px;
        height: 42px;
        margin-bottom: 16px;
    }

    .item-price__value {
        height: 32px;
        font-size: 16px;
        line-height: 19px;
    }

    .popular-item__price {
        height: 19px;
        margin-bottom: 8px;
    }

    .popular-item__img {
        height: auto;
    }

    .item-time {
        font-size: 12px;
        line-height: 14px;
        padding-top: 4px;
    }

    .popular-item__time {
        padding-bottom: 19px;
    }

    .other-button__text {
        font-size: 14px;
        line-height: 17px;
    }

    .popular-item__button {
        height: 35px;
    }

    .workshop-price__list,
    .workshop-price__item,
    .price-item__hint-inner {
        width: 100%;
    }

    .price-item__hint-inner {
        justify-content: space-between;
    }

    .price-item__hint img {
        width: 40px;
        height: 40px;
    }

    .workshop-button {
        max-width: 100%;
    }

    .price-item__inner {
        width: calc(100% - 55px);
    }

    .workshop-detail__other {
        margin-top: 25px;
    }

    .other-item__time {
        margin-bottom: 0;
    }

    .workshop__services-title {
        margin-top: 30px;
    }

    .title_text--desktop {
        display: none;
    }

    .workshop-list__title {
        max-width: 280px;
    }

    .workshop-list-slider__prev,
    .workshop-list-slider__next {
        top: 360px;
    }

    .workshop-slider__prev {
        left: 0;
    }

    .workshop-slider__next {
        left: 85px;
    }


    .popular-item__button {
        display: flex;
    }

    /*.services-list__inner {
        flex-direction: column;
    }

    .services-list__item {
        max-width: 100%;
        min-height: auto;
    }*/
    .workshop-detail__inner .workshop__workshop-menu {
        display: block;
    }

    .workshop__workshop-menu {
        display: none;
    }

    .workshop-list__sub-title--red {
        background: none;
        padding: 0;
        font-weight: 600;
    }

    .sub-title__text {
        font-weight: 400;
    }

}

/* WORKSHOP-LIST--END */

.blog-comment-fields .bx-editor-iframe {
     padding-top: 0;
     padding-left: 0;
}

.blog-comment-fields .bx-editor-iframe body {
    height: 100%;
    box-sizing: border-box;
    padding: 0 !important;
}