

/* Start:/local/components/hobbit2017/Orange/templates/.default/style.css?17810948353424*/
.orange_header {
    display: flex;
    flex-direction: column;
}
.orange_header .banner {
    width: 1280px;
    height: 320px;
    border-radius: 50px;
    background-image: url("/local/components/hobbit2017/Orange/templates/.default/./pics/desctop_header.jpg");
    margin: 30px 0;
}


.orange_header .menu {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.orange_header .menu .oneItem {
    background-color: #E97815;
    box-shadow: 3px 3px 4px rgba(233, 120, 21, 0.3);
    border-radius: 40px;
    height: 75px;
    position: relative;
}
.discount1 {
    position: absolute;
    top: -15px;
    right: -18px;
    background: #50378C;
    transform: rotate(-3.8deg);
    padding: 5px 7px;
    border-radius: 15px;
    color: white;
    font-size: 10px;
    text-transform: uppercase;

}
.discount2 {
    position: absolute;
    color: white;
    font-weight: 700;
    font-size: 21px;
    top:0;
    right: -13px;
    background-image: url("/local/components/hobbit2017/Orange/templates/.default/./pics/arrow_fon_desctop.svg");
    background-size: 100% 100%;
    border-radius: 10px;
    width: 88px;
    height: 37px;
    padding: 7px 0 0 17px;
    transform: rotate(-3.8deg);

}

.discount2 .do {
    display: none;
}


.orange_header .menu .oneItem .oneItemValue {
    padding: 0 22px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orange_header .menu .oneItem .oneItemValue .pic{
    margin-right: 22px;
}
.orange_header .menu .oneItem .oneItemValue .title {
    color: white;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1000px) {
    .orange_header {
        display: flex;
        flex-direction: column-reverse;
    }
    .orange_header .banner {
        width: 270px;
        height: 91px;
        border-radius: 17px;
        background-image: url("/local/components/hobbit2017/Orange/templates/.default/./pics/mobile_header.jpg");
        margin: 10px auto 10px auto;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .orange_header .menu {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 5px 0;
        padding: 0 5px;
    }
    .orange_header .menu .oneItem {
        border-radius: 7px;
        height: auto;
        margin: 8px 5px;
        padding: 0!important;
    }

    .orange_header .menu .oneItem .oneItemValue {
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .orange_header .menu .oneItem .oneItemValue .pic{
        display: none;
    }

    .orange_header .menu .oneItem .oneItemValue .title {
        color: white;
        font-size: 9px;
        line-height: 11px;
        flex-direction: row;
        justify-content: center;
    }
    .discount1 {
        display: none;
    }

    .discount2 {
        font-weight: 700;
        font-size: 6px;
        line-height: 6px;
        top:-8px;
        right: -2px;
        background-image: url("/local/components/hobbit2017/Orange/templates/.default/./pics/arrow_fon_mobile.svg");
        background-size: 100% 100%;
        border-radius: 3px;
        width: 40px;
        height: 14px;
        padding: 3px 0 0 6px;
        display: flex;


    }
    .discount2 .do {
        display: block;
    }
    .discount2 .val {
        margin-left: 5px;
    }

}
/* End */


/* Start:/local/templates/Desctop_2022/components/mobile2021/catalog/.default/style.css?17810948353915*/
.catalog_value {
    background: #FFFFFF;
    box-shadow: 1.00148px -5.00739px 15.0222px rgba(0, 0, 0, 0.15);
    border-radius: 35px;
    margin-top: 15px;
    padding: 15px 20px;
}

.catalog_block {
    display: flex;
    flex-wrap: wrap;
}


.catalog_block .catalog_item {
    width: calc(25% - 10px);
    margin-left: 10px;
    margin-top: 20px;
    min-height: 240px;
    box-shadow: 6.27746px 6.27746px 8.36995px rgba(233, 120, 21, 0.3);
    border-radius: 35px;
    background: #FFFBEB;
    margin-bottom: 20px;
    padding: 20px;

}

.catalog_block .catalog_item:nth-child(2n) {
    background: #F7FFED;
}
.catalog_block .catalog_item .picture {
    position: relative;
    padding: 10px;
    width: 100%;
    height: 250px;
    text-align: center;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}
.catalog_block .catalog_item .picture img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 25px;
}
.catalog_block .catalog_item  .item_info {
    padding: 10px;
    background: #FFFBEB;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: calc(100% - 250px);
}
.catalog_block .catalog_item:nth-child(2n) .item_info {
    background: #F7FFED;
}
.price_block span.base_price {
    font-weight: bold;
    font-size: 20px;
    color: #E97815;
}
.price_block span.old_price {
    padding-left: 10px;
    font-weight: 500;
    font-size: 14px;
    text-decoration-line: line-through;
    color: #A2A2A2;
}
.catalog_block .catalog_item  .item_info .item_title {
    margin: 10px 0;
    color: #333333;
    font-weight: 500;
    font-size: 14px;
    overflow: hidden;
    flex: 1 0 auto;
}
.catalog_block .catalog_item  .item_info .buttons_block {
    padding: 10px 0 10px 0;
    flex: 0 0 auto;
}

.catalog_block .catalog_item  .item_info .buttons_block .heart {
    height: 28px;
    width: 28px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-size: 100% 100%;
    float: left;
}
.catalog_block .catalog_item  .item_info .buttons_block .heart.in_favorite {
    background-image: url("/local/templates/mobile2021/img/svg_pics/heart_full.svg");
}
.catalog_block .catalog_item  .item_info .buttons_block .not_in_favorite {
    background-image: url("/local/templates/mobile2021/img/svg_pics/heart_pust.svg");
}
.catalog_block .catalog_item  .item_info .buttons_block .heart img {
    height: 25px;
}

.catalog_block .catalog_item  .item_info .buttons_block .cart_button {
    float: right;
    width: auto;
}

.shield_value {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 10px;
    top: 10px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 18px;
    color: white;
    font-weight: bold;
}
.catalog_shield {
    position: absolute;
    left: 10px;
    top: 10px;
    transform: rotate(135deg);
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
.discount_shield {
    background: #8CC443;
}
.info_shield {
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 5px;
    padding: 5px;
    color: white;
    background: #FDCD06;


}
.title_shapka {
    padding: 1rem;
    width: 100%;
    background: #FFFFFF;
    color: #E97815;
    font-size: 2rem;
    line-height: 115%;
    overflow: auto;
}
.title_shapka h3 {
    overflow: auto;
}
#show_more_loader {
    display: none;
    padding: 20px 0;
    width: 100%;
}
#show_more_loader .flexbox {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hits_block {
    padding-bottom: 20px;
    background-color: #F7F7F7;
}
.loader {
    text-align: center;
}
/* End */


/* Start:/local/components/mobile2021/contact_block/templates/.default/style.css?1781094835876*/
.contact_block {
    display: block;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: center;
    min-height: calc(100vh - 443px);

}

.contact_block a {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.contact_block .one_contact {
    background: #FFFBEB;
    box-shadow: 3px 3px 4px rgba(233, 120, 21, 0.3);
    border-radius: 10px;
    padding: 20px 0;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.contact_block .one_contact .picture {
    width: 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact_block .one_contact .info {
    text-align: left;
}
.contact_block .one_contact .picture img {
    width: 40px;
}
/* End */
/* /local/components/hobbit2017/Orange/templates/.default/style.css?17810948353424 */
/* /local/templates/Desctop_2022/components/mobile2021/catalog/.default/style.css?17810948353915 */
/* /local/components/mobile2021/contact_block/templates/.default/style.css?1781094835876 */
