

/* Start:/actions/assets/style.css?17738302165548*/
.stocks-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stock-item {
    padding: 35px 45px;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    min-height: 280px;
    line-height: 1;
    position: relative;
    transition: 0.3s;
}

/*.stock-item::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    display: block;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    opacity: 0;*/
/*    transition: 0.3s;*/
/*}*/

/*.stock-item:hover::after {*/
/*    opacity: 1;*/
/*}*/

.stock-item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
}

.stock-item:nth-child(1),
.stock-item:nth-child(2) {
    gap: 25px;
    align-items: start;
}

.stock-item:hover,
.stock-item:focus,
.stock-item:visited {
    color: #000;
    text-decoration: none;
}

.stock-item:first-child {
    grid-column: span 2;
}

.stock-item__title {
    font-size: 34px;
    line-height: 1;
}

.stock-item__title span {
    text-transform: uppercase;
    font-weight: bold;
}

.stock-item__title-2 {
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

.stock-item__desc {
    font-size: 17px;
}

.stock-item__link-btn {
    width: 210px;
    height: 50px;
    background: #905793;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.stock-item__link {
    font-size: 14px;
    color: #905793;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.stock-item__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #905793;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.stock-item__sale {
    width: 230px;
    height: 156px;
    background: url('/actions/file/img/sale-bg.svg') no-repeat center center / contain;
    font-size: 24px;
    color: #fff;
    padding-top: 70px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stock-item__sale span {
    font-size: 54px;
    font-weight: bold;
}

.stocks-main {
    background: url('/actions/file/img/main.png') no-repeat left center / cover;
    padding: 80px 0 50px;
    margin: -51px 0 30px;
}

.stocks-main__title {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 25px;
}

.stocks-main__subtitle {
    color: #5b5b5b;
    font-size: 17px;
    margin-bottom: 50px;
}

.stocks-features {
    display: flex;
    align-items: center;
    gap: 25px;
}

.stocks-feature {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stocks-feature__name {
    color: #404040;
    font-size: 14px;
    font-weight: bold;
}

.stocks-features__line {
    height: 40px;
    width: 1px;
    background: #e0e0df;
}

#h1-pages {
    display: none;
}

.stocks-feature svg {
    flex-shrink: 0;
}

@media (max-width: 1600px) {
    .stock-item__sale {
        right: 45px;
        left: unset;
        transform: translate(0, -50%);
    }
}

@media (max-width: 1280px) {
    .stocks-main {
        margin-bottom: 15px;
    }

    .stocks-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stocks-features {
        gap: 15px;
    }

    .mailing_form_block {
        flex-wrap: wrap;
        gap: 10px;
    }

    .mailing_form_block .m_info {
        flex: 1;
    }

    .mailing_form_block .m_form_content {
        width: 100%!important;
    }

    .mailing_form_block .m_icon {
        width: auto!important;
    }
}

@media (max-width: 980px) {
    .stock-item {
        padding: 20px;
    }

    .stock-item__title {
        font-size: 24px;
    }

    .stock-item__title-2 {
        font-size: 22px;
    }

    .stock-item__sale {
        width: 180px;
    }

    .stock-item__sale span {
        font-size: 34px;
    }

    .stocks-features__line {
        display: none;
    }

    .stocks-main__title {
        font-size: 36px;
    }
}

@media (max-width: 900px) {
    .stocks-list {
        grid-template-columns: 1fr;
    }

    .stock-item {
        padding: 35px 45px;
    }

    .stock-item:first-child {
        grid-column: unset;
    }

    .stock-item__sale {
        width: 150px;
    }
}

@media (max-width: 560px) {
    .stocks-main {
        background: none;
    }

    .stocks-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .stock-item__sale {
        padding: 20px 0 0 0;
        width: 100px;
        height: 60px;
        font-size: 18px;
        top: 40%;
        right: 30px;
    }

    .stock-item__sale span {
        font-size: 24px;
    }

    .stocks-main__title {
        font-size: 30px;
    }

    .stocks-main__subtitle {
        margin-bottom: 30px;
    }

    .stocks-main {
        padding-bottom: 30px;
    }
}

@media (max-width: 400px) {
    .stock-item {
        padding: 30px 20px;
    }

    .mailing_form_block .m_title {
        font-size: 16px!important;
    }

    .mailing_form_block .m_sendbutton {
        font-size: 12px!important;
    }

    .mailing_form_block .m_sendbutton {
        width: auto!important;
    }

    .mailing_form_block .m_input_block input {
        font-size: 12px!important;
    }
}

/* End */


/* Start:/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/style.css?17738290119627*/
.delivery-items {
    display: flex;
    gap: 24px;
}

.delivery-item {
    flex: 1;
    background: #ededed;
    border-bottom: 2px solid #c4a5c5;
    padding: 30px;
    cursor: pointer;
}

.delivery-item__logo {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #e19ad4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.delivery-item__logo img {
    display: block;
}

.delivery-item__logo .img-hovered {
    display: none;
}

.delivery-item.active img {
    display: none;
}

.delivery-item.active img.img-hovered {
    display: block;
}

/*.delivery-item__logo img {*/
/*    transform: scale(0.67);*/
/*}*/

.delivery-item__title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.25;
}

.delivery-item__advantages {
    font-size: 14px;
    list-style: none;
    padding: 0;
}

.delivery-item__advantages span {
    font-size: 16px;
    font-weight: bold;
    color: #905793;
}

.delivery-item__advantages li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.delivery-item__advantages li:last-child {
    margin-bottom: 0;
}

.delivery-item__advantages li::before {
    content: '';
    display: block;
    width: 18px;
    height: 14px;
    position: absolute;
    top: 5px;
    left: 0;
    mask: url('/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/check.svg') no-repeat center;
    -webkit-mask: url('/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/check.svg') no-repeat center;
    background-color: #905793;
}

.delivery-item__button {
    font-size: 15px;
    color: #905793;
    background: #fff;
    width: 216px;
    height: 46px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 23px;
    margin: 20px auto 0;
    cursor: pointer;
}

.delivery-item:hover, .delivery-item.active {
    background: #905793;
    color: #fff;
}

.delivery-item:hover .delivery-item__advantages span,
.delivery-item.active .delivery-item__advantages span {
    color: #fff;
}

.delivery-item:hover .delivery-item__advantages li::before,
.delivery-item.active .delivery-item__advantages li::before {
    background-color: #fff;
}

.delivery-points {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #905793;
}

.delivery-point {
    background: #ededed;
    flex: 1;
    padding: 60px 10px 20px 4%;
    position: relative;
    border-top: 1px solid #ededed;
    border-left: 1px solid #ededed;
    /*border-right: 1px solid #fff;*/
    box-sizing: border-box;
}

.delivery-point:first-child {
    padding-top: 0;
}

.delivery-point::after {
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    top: -1px;
    right: -1px;
    height: calc(100% + 1px);
    width: 1px;
    z-index: 1;
}

/*.delivery-point::before {*/
/*    content: '';*/
/*    display: block;*/
/*    position: absolute;*/
/*    background: #fff;*/
/*    top: -1px;*/
/*    right: -1px;*/
/*    height: calc(100% + 1px);*/
/*    width: 1px;*/
/*    z-index: 1;*/
/*}*/

.delivery-point:hover {
    border-top-color: #905793;
    border-left-color: #905793;
    z-index: 1;
    background: #905793;
    color: #fff;
}

.delivery-point:hover::after {
    background: #905793;
}

.delivery-point:hover .delivery-point__title,
.delivery-point:hover .delivery-point__time {
    color: #fff;
}

.delivery-description__title {
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.delivery-point__title {
    font-size: 14px;
    font-weight: bold;
    color: #905793;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.delivery-point__title::before {
    content: url('/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/map-mark.png');
    display: block;
    position: absolute;
    left: 0;
    top: -8px;
}

.delivery-point:hover .delivery-point__title::before {
    content: url('/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/map-mark-white.png');
}

.delivery-point__time {
    font-size: 14px;
    font-weight: bold;
    color: #905793;
    line-height: 1.7;
}

.delivery-point__address, .delivery-point__contacts {
    line-height: 1.7;
}

.delivery-description {
    margin-top: 25px;
}

.delivery-services {
    display: flex;
    border-bottom: 1px solid #9c6b9f;
}

.delivery-service {
    height: 72px;
    flex: 1;
    border-top: 1px solid #ededed;
    border-left: 1px solid #ededed;
    box-sizing: border-box;
    position: relative;
    background: #ededed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-service::after {
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    top: -1px;
    right: -1px;
    height: calc(100% + 1px);
    width: 1px;
    z-index: 1;
}

.delivery-service:hover {
    border-top-color: #905793;
    border-left-color: #905793;
    z-index: 1;
    background: #f5f5f5;
}

.delivery-service:hover::after {
    background: #905793;
}

.delivery-service img {
    max-width: 80%;
}

.delivery-description__item {
    display: none;
}

.delivery-description__item.active {
    display: block;
}

.delivery-description__caption {
    font-size: 14px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
}

.delivery-description__caption::before {
    content: url(/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/check.svg);
    display: block;
    width: 18px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
}

.sdek-pickup {
    margin-top: 50px;
    border-bottom: 1px solid #905793;
    padding-bottom: 12px;
}

.delivery-h2 {
    font-size: 18px;
    text-transform: uppercase;
    color: #905793;
    margin: 35px 0 20px;
}

.sdek-pickup__title {
    padding-left: 30px;
    position: relative;
}

.sdek-pickup__title::before {
    content: '';
    display: block;
    width: 23px;
    height: 12px;
    background: url('/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/car_icon.png') no-repeat center center / contain;
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
}

.sdek-pickup__title span {
    font-weight: bold;
}

.sdek-pickup__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdek-pickup__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 14px;
}

.sdek-pickup__list li::before {
    content: url(/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/check.svg);
    display: block;
    width: 18px;
    height: 14px;
    position: absolute;
    top: 0;
    left: 0;
}

.sdek-pickup__list span {
    font-weight: bold;
    color: #905793;
}

.sdek-pickup__link {
    font-size: 14px;
    color: #905793;
    padding: 0 0 0 30px;
}

.select-delivery-btn {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    width: 174px;
    height: 42px;
    border: 1px solid #905792;
    color: #ab76ae;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 32px auto 0;
    cursor: pointer;
}

.select-delivery-btn:hover,
.select-delivery-btn.active {
    background: #905792;
    color: #fff;
}

.delivery-rules {
    margin-top: 60px;
}

.delivery-rules-list {
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.delivery-rules-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.delivery-rules-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 7px;
    left: 0;
    background: url(/bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/images/plus_icon.png) no-repeat center center / contain;
}

.delivery-description .maps-wrap {
    margin-bottom: 0;
}

.delivery-rules-info {
    color: #905793;
    margin-top: 30px;
    padding-left: 20px;
    font-size: 14px;
}

@media (max-width: 1600px) {
    .delivery-point__address br {
        display: none;
    }

    .delivery-point {
        padding: 60px 30px 20px 30px;
    }
}

@media (max-width: 1480px) {
    .delivery-item__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .delivery-item__title br {
        display: none;
    }

    .delivery-item {
        padding: 30px 15px;
    }

    .delivery-item__advantages span {
        font-size: 14px;
    }
}

@media (max-width: 1240px) {
    .delivery-point {
        padding: 60px 15px 20px 15px;
    }
}

@media (max-width: 1180px) {
    .delivery-points {
        flex-wrap: wrap;
    }

    .delivery-point {
        width: 50%;
        flex: unset;
        padding: 60px 30px 20px 30px;
    }

    .delivery-point:nth-child(1), .delivery-point:nth-child(2) {
        border-bottom: 1px solid #fff;
    }

    .delivery-point:nth-child(1):hover, .delivery-point:nth-child(2):hover {
        border-bottom-color: #905793;
    }

    .delivery-items {
        flex-wrap: wrap;
    }

    .delivery-item {
        width: calc(50% - 12px);
        flex: unset;
    }
}

@media (max-width: 1180px) {
    .delivery-items {
        flex-direction: column;
    }

    .delivery-item {
        width: 100%;
        padding: 30px;
    }

    .delivery-item__head {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .delivery-item__logo {
        margin: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }

    .delivery-item__logo img {
        transform: scale(0.5);
    }

    .delivery-item__title {
        margin: 0;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .delivery-items {
        margin-top: 20px;
    }
}

@media (max-width: 500px) {
    .delivery-point {
        width: 100%;
        padding: 30px 30px 20px;
    }

    .delivery-point:nth-child(3) {
        border-bottom: 1px solid #fff;
    }
}
/* End */
/* /actions/assets/style.css?17738302165548 */
/* /bitrix/templates/mosoboi_ad/components/bitrix/news/actions_redesign/bitrix/news.list/.default/style.css?17738290119627 */
