

/* Start:/css/new_styles.css?177714462012037*/
.dark-bg {
    background-color: #3d3d54;
    overflow: hidden;
}

.wrapper {
    width: 100%;
}

.max_width_wrapper {
    width: 100%;
    max-width: 1408px;
    margin: 0 auto;
}

.header_wrapper {
    position: relative;
    z-index: 600;
    background-color: #fff;
}

header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.logo_col {
    margin: auto auto auto 0;
}

.logo_col img {
    display: block;
}

.menu_col {
    flex-flow: column nowrap;
    justify-content: center;
}

.menu_col ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
}

.menu_col ul li {
    display: inline-block;
    margin: 0 20px;
}

.menu_col ul li a {
    text-decoration: none;
    color: #000;
}

.menu_col ul li a:hover {

}

.phone_col {
    flex-flow: column nowrap;
    justify-content: center;
}

.phone_col a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    margin: auto 0 auto 15px;
}

.phone_col a:hover {

}

.burger_col {
    padding: 0 10px;
    position: relative;
}

.burger_col.show_menu span:nth-child(1){
    transform: rotate(45deg);
    top: 4px;
}

.burger_col.show_menu span:nth-child(2){
    display: none;
}

.burger_col.show_menu span:nth-child(3){
    transform: rotate(-45deg);
    bottom: 4px;
}

.burger_col span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #3d3d54;
    margin: 3px 0;
    position: relative;
    transition: all .3s;
}

.mobile_menu {
    flex-flow: column;
    justify-content: center;
    position: absolute;
    top: -100vh;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 500;
    width: 100%;
    background-color: #fff;
    transition: all .3s;
}

.mobile_menu.active {
    top: 0;
    left: 0;
    right: 0;
    transition: all .3s;
}

.mobile_menu ul {
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.mobile_menu ul li {
    list-style: none;
    margin-bottom: 10px;
}

.mobile_menu ul li a {
    color: #3d3d54;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
}

@media (min-width: 320px) {
    .menu_col {
        display: none;
    }
    .phone_col {
        display: none;
    }
    header {
        padding: 15px 15px;
    }
    .logo_col img {
        width: 150px;
    }
    .burger_col {
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }
    .mobile_menu {
        display: flex;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .logo_col img {
        width: 200px;
    }
}

@media (min-width: 1024px) {

}

@media (min-width: 1280px) {
    .menu_col {
        display: flex;
    }
    .phone_col {
        display: flex;
    }
    header {
        padding: 30px 30px;


    }
    .logo_col img {
        width: 200px;
    }
    .burger_col {
        display: none;
    }
    .mobile_menu {
        display: none;
    }
}

@media (min-width: 1368px) {
    header {
        padding: 30px 0;
    }
}

#main_slider {
    position: relative;
}

.top_cats {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding-bottom: 100px;
}

.top_cats_title {
    display: block;
    text-transform: uppercase;
    color: #3d3d54;
    padding: 30px 0 15px 0;
}

.top_cats_title a {
    display: inline-block;
    position: relative;
    text-decoration: underline;
    color: #3d3d54;
}

.top_cats_inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.top_cats_col {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;

}

.top_cats_col a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.top_cats_inner .top_cats_col:nth-child(1) {
    background-image: url("/temp_images/cats/cat_1.png.webp");
}

.top_cats_inner .top_cats_col:nth-child(1):hover {
    background-image: url("/temp_images/cats/cat_1_1.png.webp");
}

.top_cats_inner .top_cats_col:nth-child(2) {
    background-image: url("/temp_images/cats/cat_2_2.png.webp");
}

.top_cats_inner .top_cats_col:nth-child(2):hover {
    background-image: url("/temp_images/cats/cat_2.png.webp");
}

.top_cats_inner .top_cats_col:nth-child(3) {
    background-image: url("/temp_images/cats/cat_3_3.png.webp");
}

.top_cats_inner .top_cats_col:nth-child(3):hover {
    background-image: url("/temp_images/cats/cat_3.png.webp");
}

.top_cats_inner .top_cats_col:nth-child(4) {
    background-image: url("/temp_images/cats/cat_4_4.png.webp");
}

.top_cats_inner .top_cats_col:nth-child(4):hover {
    background-image: url("/temp_images/cats/cat_4.png.webp");
}

@media (min-width: 320px) {
    .top_cats_title {
        display: none;
    }
    .top_cats_col {
        height: 300px;
    }
    .top_cats {
        padding: 0 15px;
        overflow-x: scroll;
    }
    .top_cats_col {
        width: calc(33% - 15px);
        margin-right: 15px;
    }
    .top_cats_inner {
        padding-top: 15px;
        padding-bottom: 15px;
        width: 250vw;
    }
    .top_cats_inner .top_cats_col:last-child {
        margin-right: 0;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .top_cats_col {
        height: 400px;
    }
    .top_cats_col {
        width: 75%;
        margin-right: 30px;
    }
    .top_cats_inner {
        padding-top: 30px;
        padding-bottom: 30px;
        width: 250vw;
    }
    .top_cats_inner .top_cats_col:last-child {
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .top_cats_col {
        height: 300px;
    }
    .top_cats {
        padding: 0 15px;
    }
    .top_cats_title {
        display: block;
        font-size: 20px;
    }
    .top_cats_col {
        width: calc(25% - 15px);
        margin-right: 0;
    }
    .top_cats_inner .top_cats_col:last-child {
        margin-right: 0;
    }
    .top_cats_inner {
        width: 100%;
    }
}

@media (min-width: 1280px) {

}

@media (min-width: 1368px) {
    .top_cats_col {
        height: 500px;
    }
    .top_cats {
        padding: 0;
        overflow-x: hidden;
    }
    .top_cats_title {
        display: block;
        font-size: 20px;
    }
}

.collection_wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
}

.collection_content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.collection_content_inner {
    margin: auto auto auto 0;
}

.collection_content_inner h3 {
    margin: 0 0 30px 0;
    color: #fff;
    font-size: 40px;
}

.collection_content_inner p {
    color: #fff;
    font-size: 30px;
    margin: 0 0 30px 0;
}

.collection_content_inner a {
    text-transform: uppercase;
    font-size: 20px;
    text-decoration: underline;
    color: #fff;
}

.collection_pic img {
    display: block;
    width: 100%;
}


@media (min-width: 320px) {
    .collection_wrapper:before {
        content: '';
        display: block;
        height: 300px;
        background-image: url("/temp_images/collection_before.jpg.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    .collection_wrapper {
        padding: 350px 0 50px 0;
    }

    .collection_content {
        width: 100%;
        margin-left: 0;
        padding: 0 30px;
    }

    .collection_pic {
        display: none;
    }
    .collection_content_inner p {
        display: none;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .collection_wrapper:before {
        content: '';
        display: block;
        height: 300px;
        background-image: url("/temp_images/collection_before.jpg.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    .collection_wrapper {
        padding: 350px 0 50px 0;
    }

    .collection_content {
        width: 100%;
        margin-left: 0;
        padding: 0 30px;
    }

    .collection_pic {
        display: none;
    }
    .collection_content_inner p {
        display: block;
    }
}

@media (min-width: 1024px) {
    .collection_wrapper:before {
        display: none;
    }
    .collection_wrapper {
        padding: 100px 0;
    }

    .collection_content {
        width: calc(70% - 60px);
        margin-left: 30px;
        padding: 0;
    }

    .collection_pic {
        width: calc(30% - 60px);
        margin-right: 30px;
        display: block;
    }
}

@media (min-width: 1280px) {

}

@media (min-width: 1368px) {

}


.form_wrapper_outer {
    display: flex;
}

.form_content h3 {
    margin: 0 0 30px 0;
    color: #3d3d54;
}

.form_content p {
    color: #3d3d54;
    font-size: 20px;
    margin: 0 0 30px 0;
}



@media (min-width: 320px) {
    .form_content {
        display: block;
        width: 100%;
    }

    .form_inner {
        display: block;
        width: 100%;
    }
    .form_wrapper_outer {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        padding: 30px 30px;
    }
    .form_content h3 {
        font-size: 30px;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    .form_wrapper_outer {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        padding: 30px 30px;
    }
    .form_content h3 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .form_wrapper_outer {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        padding: 50px 30px;
    }
    .form_content h3 {
        font-size: 30px;
    }
}

@media (min-width: 1280px) {
    .form_wrapper_outer {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        padding: 100px 0;
    }
    .form_content {
        display: block;
        width: calc(60% - 30px);
    }

    .form_inner {
        display: block;
        width: calc(40% - 30px);
    }
    .form_content h3 {
        font-size: 40px;
    }
}

@media (min-width: 1368px) {

}

footer {
    background-color: #3d3d54;
}

.footer_content {
    display: flex;
    justify-content: space-between;
}

.footer_content_left {
    display: flex;
    justify-content: flex-start;
}

.footer_content_right {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
}

.footer_content_menu ul {
    padding: 0;
    margin: 0 30px 0 0;
    display: flex;
    flex-flow: column nowrap;
}

.footer_content_menu ul li {
    list-style: none;
    margin-bottom: 5px;
}

.footer_content a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin: 3px;
}

.footer_content a:last-child {
    margin-bottom: 0;
}

.footer_content_menu {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}

@media (min-width: 320px) {
    footer {
        padding: 20px 15px;
    }
    .footer_content_left {
        flex-flow: row nowrap;
    }
    .footer_content {
        flex-flow: column nowrap;
    }
    .footer_content_right .footer_content_menu {
        margin: 10px auto auto 0;
        text-align: left;
    }
}

@media (min-width: 410px) {

}

@media (min-width: 640px) {
    footer {
        padding: 20px 30px;
    }
    .footer_content_left {
        flex-flow: row nowrap;
    }
    .footer_content {
        flex-flow: row nowrap;
    }
    .footer_content_right .footer_content_menu {
        margin: auto 0 0 auto;
        text-align: right;
    }
}

@media (min-width: 1024px) {

}

@media (min-width: 1280px) {
    footer {
        padding: 20px 30px;
    }
}

@media (min-width: 1400px) {
    footer {
        padding: 30px 0;
    }
}


.about_cover {

}

.about_cover img {
    display: block;
    width: 100%;
}
/* End */


/* Start:/local/templates/shop/template_styles.css?177714465826858*/
/*COMMON SART*/

.wishlist_btn {
    display: block;
    width: 60px;
    height: 60px;
    position: fixed;
    z-index: 900;
    right: 0;
    top: 300px;
    padding: 15px;
    -webkit-box-shadow: 0px 6px 20px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 6px 20px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 6px 20px 0px rgba(34, 60, 80, 0.2);
    transition: all .3s;
    background: #fff;
}

.wishlist_btn span.heart {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("/local/images/icons/favor.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.wishlist_btn span.count {
    display: block;
    position: absolute;
    top: 3px;
    left: 4px;
    color: #FF7979;
    font-weight: 700;
    font-size: 16px;
}

body, *, *:after, *:before {
    box-sizing: border-box;
}

body.dis_scroll {
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway';
    font-weight: normal;
    font-style: normal;
}

.numbers_style {
    font-family: 'HeliosCond';
    font-weight: normal;
    font-style: normal;
}

.bg_black {
    background-color: #252525;
}

.wrapper {
    width: 100%;
}

.max_width_wrapper {
    width: 100%;
    max-width: 1408px;
    margin: 0 auto;
}

.catalog_title_wrapper {
    padding: 30px 0;
}

.catalog_title_wrapper h1 {
    font-weight: 500;
    font-size: 36px;
    margin: 0;
}

.work_area {
    min-height: 1000px;
}

/*@media (min-width: 320px) {*/
/*    .max_width_wrapper {*/
/*        padding: 0 15px;*/
/*    }*/
/*}*/

/*@media (min-width: 410px) {*/
/*    .max_width_wrapper {*/
/*        padding: 0 15px;*/
/*    }*/
/*}*/

/*@media (min-width: 640px) {*/
/*    .max_width_wrapper {*/
/*        padding: 0 15px;*/
/*    }*/
/*}*/

/*@media (min-width: 1024px) {*/
/*    .max_width_wrapper {*/
/*        padding: 0 30px;*/
/*    }*/
/*}*/

/*@media (min-width: 1280px) {*/

/*}*/

/*@media (min-width: 1368px) {*/

/*}*/

/*COMMON END*/

/*HEADER START*/

/*#header_wrapper {*/
/*    position: relative;*/
/*    z-index: 400;*/
/*}*/

/*header {*/
/*    padding: 15px 0;*/
/*    display: flex;*/
/*    flex-flow: row nowrap;*/
/*    justify-content: space-between;*/
/*}*/

/*header a {*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*}*/

/*.menu_col {*/
/*    width: 70%;*/
/*    flex-flow: row nowrap;*/
/*}*/

/*.menu_col nav {*/
/*    margin: auto 0 auto 0;*/
/*    width: 100%;*/
/*}*/

/*.menu_col nav ul {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    display: flex;*/
/*    flex-flow: row nowrap;*/
/*    justify-content: space-around;*/
/*}*/

/*.menu_col nav ul li {*/
/*    list-style: none;*/
/*}*/

/*.menu_col nav ul li a {*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    text-transform: uppercase;*/
/*}*/

/*.menu_col nav ul li a:after {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -4px;*/
/*    background-color: #fff;*/
/*    transition: all .3s;*/
/*}*/

/*.menu_col nav ul li a.selected:after {*/
/*    width: 100%;*/
/*    transition: all .3s;*/
/*}*/

/*.menu_col nav ul li a:hover:after {*/
/*    width: 100%;*/
/*    transition: all .3s;*/
/*}*/

/*.menu_col nav ul li a:hover, .menu_col nav ul li a:active, .menu_col nav ul li a:focus {*/

/*}*/

/*.phone_col {*/
/*    flex-flow: row nowrap;*/
/*    justify-content: flex-end;*/
/*}*/

/*.phone_col a {*/
/*    display: inline-block;*/
/*    margin: auto 0 auto auto;*/
/*    position: relative;*/
/*}*/

/*.phone_col a:before {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    background-image: url("/local/images/icons/phone_bold.svg");*/
/*    background-repeat: no-repeat;*/
/*    background-position: center center;*/
/*    background-size: contain;*/
/*    position: absolute;*/
/*    left: -30px;*/
/*}*/

/*.burger_col {*/
/*    display: flex;*/
/*    flex-flow: column nowrap;*/
/*    justify-content: center;*/
/*}*/

/*@media (min-width: 320px) {*/
/*    .menu_col {*/
/*        display: none;*/
/*    }*/
/*    .menu_col nav ul li a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .phone_col {*/
/*        display: none;*/
/*    }*/
/*    .logo_col img {*/
/*        height: 35px;*/
/*    }*/
/*    .logo_col, .phone_col {*/
/*        width: 30%;*/
/*    }*/
/*    header {*/
/*        min-height: 70px;*/
/*    }*/
/*}*/

/*@media (min-width: 410px) {*/
/*    .menu_col {*/
/*        display: none;*/
/*    }*/
/*    .menu_col nav ul li a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .phone_col {*/
/*        display: none;*/
/*    }*/
/*    .logo_col img {*/
/*        height: 35px;*/
/*    }*/
/*    .logo_col, .phone_col {*/
/*        width: 30%;*/
/*    }*/
/*    header {*/
/*        min-height: 70px;*/
/*    }*/
/*}*/

/*@media (min-width: 640px) {*/
/*    .menu_col {*/
/*        display: flex;*/
/*    }*/
/*    .menu_col nav ul li a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .phone_col {*/
/*        display: none;*/
/*    }*/
/*    .logo_col img {*/
/*        height: 50px;*/
/*    }*/
/*    .logo_col, .phone_col {*/
/*        width: 20%;*/
/*    }*/
/*    .burger_col {*/
/*        display: none;*/
/*    }*/
/*    header {*/
/*        min-height: 70px;*/
/*    }*/
/*}*/

/*@media (min-width: 1024px) {*/
/*    .menu_col {*/
/*        display: flex;*/
/*    }*/
/*    .menu_col nav ul li a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .phone_col {*/
/*        display: flex;*/
/*    }*/
/*    .logo_col img {*/
/*        height: 70px;*/
/*    }*/
/*    .logo_col, .phone_col {*/
/*        width: 20%;*/
/*    }*/
/*}*/

/*@media (min-width: 1280px) {*/
/*    .menu_col nav ul li a {*/
/*        font-size: 15px;*/
/*    }*/
/*}*/

/*@media (min-width: 1368px) {*/

/*}*/

/*HEADER END*/

/*FOOTER START*/
/*footer {*/

/*}*/

/*.footer_inner {*/
/*    display: flex;*/
/*}*/

/*.footer_inner_col:first-child {*/
/*    display: flex;*/
/*}*/

/*.footer_inner_menu_col {*/

/*}*/

/*.footer_inner_menu_col ul {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    display: flex;*/
/*    flex-flow: column nowrap;*/
/*    justify-content: flex-start;*/
/*}*/

/*.footer_inner_menu_col ul li {*/
/*    list-style: none;*/
/*    display: block;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.footer_inner_menu_col ul li a {*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*}*/


/*.footer_inner_contacts_col {*/
/*    display: flex;*/
/*    flex-flow: column nowrap;*/
/*    justify-content: flex-start;*/
/*}*/

/*.footer_inner_contacts_row {*/
/*    display: flex;*/
/*    flex-flow: column nowrap;*/
/*    justify-content: flex-start;*/
/*}*/

/*.footer_inner_contacts_row:first-child {*/
/*    margin-bottom: 15px;*/
/*    padding-bottom: 15px;*/
/*    position: relative;*/
/*}*/

/*.footer_inner_contacts_row:first-child:after {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 1px;*/
/*    border-bottom: 1px dashed #fff;*/
/*    position: absolute;*/
/*    bottom: -2px;*/
/*    right: 0;*/
/*}*/

/*.footer_inner_contacts_row span {*/
/*    color: #fff;*/
/*}*/

/*.footer_inner_contacts_row a {*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    display: inline-block;*/
/*}*/

/*.footer_inner_contacts_row a:first-child {*/
/*    margin-bottom: 5px;*/
/*}*/

/*.footer_inner_contacts_row a:after {*/

/*}*/

/*.footer_inner_contacts_row a:hover:after {*/

/*}*/

/*@media (min-width: 320px) {*/
/*    .footer_inner {*/
/*        flex-flow: column nowrap;*/
/*        justify-content: space-between;*/
/*        padding: 15px 0;*/
/*    }*/
/*    .footer_inner_col {*/
/*        width: 100%;*/
/*    }*/
/*    .footer_inner_col:first-child {*/
/*        flex-flow: column nowrap;*/
/*        justify-content: flex-start;*/
/*        margin-bottom: 30px;*/
/*    }*/
/*    .footer_inner_menu_col:first-child {*/
/*        margin-right: 0;*/
/*    }*/
/*    .footer_inner_menu_col ul li a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .footer_inner_contacts_row span {*/
/*        font-size: 13px;*/
/*    }*/
/*    .footer_inner_contacts_row a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .footer_inner_menu_col ul {*/
/*        text-align: center;*/
/*    }*/
/*    .footer_inner_contacts_row {*/
/*        margin-left: auto;*/
/*        margin-right: auto;*/
/*        text-align: center;*/
/*    }*/
/*}*/

/*@media (min-width: 410px) {*/
/*    .footer_inner {*/
/*        flex-flow: row nowrap;*/
/*        justify-content: space-between;*/
/*        padding: 15px 0;*/
/*    }*/
/*    .footer_inner_col {*/
/*        width: 50%;*/
/*    }*/
/*    .footer_inner_col:first-child {*/
/*        flex-flow: column nowrap;*/
/*        justify-content: flex-start;*/
/*        margin-bottom: 0;*/
/*    }*/
/*    .footer_inner_menu_col:first-child {*/
/*        margin-right: 0;*/
/*    }*/
/*    .footer_inner_menu_col ul li a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .footer_inner_contacts_row span {*/
/*        font-size: 13px;*/
/*    }*/
/*    .footer_inner_contacts_row a {*/
/*        font-size: 13px;*/
/*    }*/
/*    .footer_inner_menu_col ul {*/
/*        text-align: left;*/
/*    }*/
/*    .footer_inner_contacts_row {*/
/*        margin-left: auto;*/
/*        margin-right: 0;*/
/*        text-align: right;*/
/*    }*/
/*}*/

/*@media (min-width: 640px) {*/
/*    .footer_inner {*/
/*        flex-flow: row nowrap;*/
/*        justify-content: space-between;*/
/*        padding: 30px 0;*/
/*    }*/
/*    .footer_inner_col {*/
/*        width: 50%;*/
/*    }*/
/*    .footer_inner_col:first-child {*/
/*        flex-flow: row nowrap;*/
/*        justify-content: flex-start;*/
/*    }*/
/*    .footer_inner_menu_col ul li:last-child {*/
/*        margin-bottom: 0;*/
/*    }*/
/*    .footer_inner_menu_col:first-child {*/
/*        margin-right: 60px;*/
/*    }*/
/*    .footer_inner_menu_col ul li a {*/
/*        font-size: 15px;*/
/*    }*/
/*    .footer_inner_contacts_row span {*/
/*        font-size: 15px;*/
/*    }*/
/*    .footer_inner_contacts_row a {*/
/*        font-size: 15px;*/
/*    }*/
/*}*/

/*@media (min-width: 1024px) {*/

/*}*/

/*@media (min-width: 1280px) {*/

/*}*/

/*@media (min-width: 1368px) {*/

/*}*/

/*FOOTER END*/

/*FLY MENU START*/

.fly_menu {
    display: flex;
    width: 100%;
    position: absolute;
    background-color: #fff;
    transition: all .5s;
    z-index: 300;
}

.fly_menu ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 0;
    margin: auto;
}

.fly_menu ul li {
    list-style: none;
    display: block;
    margin: 15px auto;
}

.fly_menu ul li a {
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: #252525;
    font-weight: 500;
}

.fly_menu ul li:last-child a {
    display: inline-block;
    position: relative;
    font-size: 14px;
}

.fly_menu ul li:last-child a:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-bottom: 1px dashed #252525;
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (min-width: 320px) {
    .fly_menu {
        height: calc(100vh - 70px);
    }
    .fly_menu {
        top: -100vh;
    }
    .fly_menu.show {
        top: 70px;
    }
}

@media (min-width: 410px) {
    .fly_menu {
        height: calc(100vh - 70px);
    }
    .fly_menu {
        top: -100vh;
    }
    .fly_menu.show {
        top: 70px;
    }
}

@media (min-width: 640px) {
    .fly_menu {
        height: calc(100vh - 85px);
        top: -100vh;
    }
    .fly_menu {
        top: -100vh;
    }
    .fly_menu.show {
        top: -100vh;
    }
}

@media (min-width: 1024px) {

}

@media (min-width: 1280px) {

}

@media (min-width: 1368px) {

}

/*FLY MENU END*/

/*SIMPLE TEXT START*/

.simple_text h1 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    position: relative;
    top: -12px;
    line-height: 1;
}

.simple_text h2 {
    margin: 0 0 10px 0;
    padding: 0;
    font-weight: 500;
}

.simple_text ul {
    margin: 0;
    padding: 15px 0 0 0;
}

.simple_text ul li {
    list-style: none;
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.simple_text ul li:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("/local/images/icons/romb.png.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -5px;
}

.simple_text ul li span {
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.simple_text ul li p {
    margin: 0 0 10px 0;
}

.simple_text ul li a {

}

.simple_text ul li a:hover {

}

@media (min-width: 320px) {
    .simple_text h1 {
        font-size: 20px;
    }
    .simple_text h2 {
        font-size: 18px;
    }
    .simple_text p {
        font-size: 14px;
    }
}

@media (min-width: 410px) {
    .simple_text h1 {
        font-size: 30px;
    }
    .simple_text h2 {
        font-size: 20px;
    }
    .simple_text p {
        font-size: 15px;
    }
}

@media (min-width: 640px) {
    .simple_text h1 {
        font-size: 40px;
    }
    .simple_text h2 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .simple_text p {
        font-size: 15px;
    }
}

@media (min-width: 1280px) {

}

@media (min-width: 1368px) {

}

/*SIMPLE TEXT END*/


/*QUESTION START*/

.questions_outer {
    background-image: url("/local/images/dark_wrapper.jpg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
}

.questions_inner {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    text-align: center;
}

.questions_row {

}

.questions_row h2 {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

.questions_sub_row {
    color: #fff;
    margin-bottom: 30px;
}

.questions_sub_row p {
    margin: 0 0 10px 0;
    font-weight: 300;
    text-transform: uppercase;
}

.questions_sub_row a {
    text-decoration: none;
    color: #fff;
}

.questions_under {
    display: flex;
    padding: 15px 0;
}

.questions_under_col {
    border: 3px solid #252525;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 15px;
}

.questions_under_col a {
    display: flex;
    width: 100%;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin: auto;
    color: #252525;
    text-decoration: none;
}

.questions_under_col a span {
    display: inline-block;
    font-weight: 500;
    margin: auto auto auto 2px;
}

.questions_under_col a img {
    display: inline-block;
    height: auto;
    margin: auto 2px auto auto;
}

@media (min-width: 320px) {
    .questions_row h2 {
        font-size: 20px;
    }
    .questions_sub_row p {
        font-size: 14px;
    }

    .questions_sub_row a {
        font-size: 16px;
    }
    .questions_under_col {
        width: 100%;
        margin-bottom: 15px;
    }
    .questions_under_col a span {
        font-size: 16px;
    }

    .questions_under_col a img {
        width: 20px;
    }
    .questions_under {
        flex-flow: column nowrap;
        justify-content: flex-start;
    }
}

@media (min-width: 410px) {
    .questions_row h2 {
        font-size: 25px;
    }
    .questions_sub_row p {
        font-size: 14px;
    }

    .questions_sub_row a {
        font-size: 18px;
    }
    .questions_under_col {
        width: 100%;
        margin-bottom: 15px;
    }
    .questions_under_col a span {
        font-size: 16px;
    }

    .questions_under_col a img {
        width: 20px;
    }
    .questions_under {
        flex-flow: column nowrap;
        justify-content: flex-start;
    }
}

@media (min-width: 640px) {
    .questions_row h2 {
        font-size: 30px;
    }
    .questions_sub_row p {
        font-size: 16px;
    }

    .questions_sub_row a {
        font-size: 20px;
    }
    .questions_under_col {
        width: 32%;
        margin-bottom: 0;
    }
    .questions_under_col a span {
        font-size: 16px;
    }

    .questions_under_col a img {
        width: 20px;
    }
    .questions_under {
        flex-flow: row nowrap;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .questions_row h2 {
        font-size: 30px;
    }
    .questions_under_col {
        width: 30%;
    }
    .questions_under_col a span {
        font-size: 20px;
    }

    .questions_under_col a img {
        width: 30px;
    }
}

@media (min-width: 1280px) {

}

@media (min-width: 1368px) {

}

/*QUESTION END*/


/*ASK FORM START*/

.fancybox-slide.fancybox-slide--current {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
}

.fancybox-slide.fancybox-slide--current:before {
    display: none;
}

.fancybox-slide.fancybox-slide--current > div {
    margin: auto;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.fancybox-button svg path {
    fill: #252525;
}

.ask_form_wrapper .error-msg {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 15px;
}

.ask_form_wrapper .error-msg .success_send {
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: #ffad00;
}

.ask_form_wrapper  ul.error-msg_ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.ask_form_wrapper  ul.error-msg_ul li  {
    display: block;
    list-style: none;
    margin-bottom: 5px;
    color: #e01f1b;
    padding: 0;
}

.ask_form_wrapper  ul.error-msg_ul li:before {
    content: '';
    display: none;
}

.ask_form_wrapper {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.error-msg {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 15px;
}

.error-msg .success_send {
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: #60c339;
}

.simple_text ul.error-msg_ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.simple_text ul.error-msg_ul li  {
    display: block;
    list-style: none;
    margin-bottom: 5px;
    color: #e01f1b;
    padding: 0;
}

.simple_text ul.error-msg_ul li:before {
    content: '';
    display: none;
}

.ask_form_wrapper_flex {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    background-color: #eceff1;
    margin-top: 0;
}

.ask_form_caption {
    display: block;
    text-align: center!important;
    font-size: 20px;
    color: #252525;
    text-transform: uppercase;
    font-weight: 500;
    margin: auto auto 30px auto;
}

.ask_form_wrapper_col {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 100%;
}

.ask_form_wrapper_row {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    background-color: #fff;
    margin-bottom: 15px;
    padding: 10px;
    width: calc(50% - 7.5px);
    text-align: left!important;
}

.ask_form_wrapper_row:last-child {
    padding: 0;
    height: 50px;
    margin-bottom: 0;
}

.ask_form_wrapper_row input {
    border: 0;
    box-shadow: none;
    outline: none;
    width: 100%;
}

.ask_form_wrapper_row textarea {
    border: 0;
    box-shadow: none;
    outline: none;
    width: 100%;
}

.ask_form_wrapper_row button {
    padding: 10px;
    border: 0;
    height: 50px;
    box-shadow: none;
    cursor: pointer;
    background-color:  #ffad00;
    color: #fff;
}

.ask_form_wrapper_row div:first-child {
    font-size: 14px;
    margin-bottom: 5px;
}

.ask_form_wrapper_row div:first-child span {
    color: #e01f1b;
}

.ask_form_wrapper_row div:last-child {
    font-size: 15px;
}

@media (min-width: 320px) {
    .ask_form_wrapper_flex {
        /*padding: 15px;*/
    }
    .ask_form_wrapper_row {
        width: 100%;
    }
}

@media (min-width: 410px) {
    .ask_form_wrapper_row {
        width: 100%;
    }
}

@media (min-width: 640px) {
    .ask_form_wrapper_row {
        width: 100%;
    }
}

@media (min-width: 1024px) {

}

@media (min-width: 1280px) {
    .ask_form_wrapper_flex {
        padding: 0;
    }
}

@media (min-width: 1368px) {

}
/*ASK FORM EDN*/

/*ORDER START*/

.order_form_wrapper {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.order_form_wrapper .error-msg {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 15px 18px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(239, 231, 222, 0.9);
}

.order_form_wrapper .error-msg .success_send {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #3d3d54;
}

.order_form_wrapper .error-msg_text,
.order_form_wrapper .error-msg_text * {
    color: #c34c3d !important;
    font-size: 14px;
    line-height: 1.45;
}

.order_form_wrapper ul.error-msg_ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.order_form_wrapper ul.error-msg_ul li {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    color: #c34c3d;
}

.order_form_wrapper ul.error-msg_ul li:before {
    content: '';
    display: none;
}

.order_form_wrapper_row .main-user-consent-request {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.order_form_wrapper_row .main-user-consent-request input {
    flex: 0 0 16px;
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin: 2px 0 0;
}

.order_form_wrapper_row .main-user-consent-request-announce-link {
    display: block;
    flex: 1 1 auto;
    width: auto;
    white-space: normal;
    color: #3d3d54;
    font-size: 13px;
    line-height: 1.45;
}

.order_form_wrapper_flex {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    margin-top: 0;
    padding: 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, #efe7de 0%, #e2d5c7 100%);
    box-shadow: 0 18px 45px rgba(61, 61, 84, 0.12);
}

.order_form_caption {
    display: block;
    margin: auto auto 24px auto;
    color: #3d3d54;
    text-align: center !important;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.order_form_wrapper_col {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: 100%;
}

.order_form_wrapper_col--head {
    margin-bottom: 6px;
}

.order_form_wrapper_row {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(61, 61, 84, 0.08);
    border-radius: 18px;
    background-color: #fff;
    box-shadow: 0 12px 24px rgba(61, 61, 84, 0.06);
    text-align: left !important;
}

.order_form_wrapper_row:nth-child(4),
.order_form_wrapper_row:last-child {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.order_form_wrapper_row:nth-child(4) {
    margin-bottom: 4px;
}

.order_form_wrapper_row:last-child {
    margin-bottom: 0;
}

.order_form_wrapper_row input {
    width: 100%;
    border: 0;
    box-shadow: none;
    outline: none;
    background: transparent;
    color: #252525;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.45;
}

.order_form_wrapper_row textarea {
    width: 100%;
    border: 0;
    box-shadow: none;
    outline: none;
    background: transparent;
}

.order_form_wrapper_row button {
    width: 100%;
    min-height: 56px;
    padding: 16px 22px;
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    cursor: pointer;
    background-color: #3d3d54;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.order_form_wrapper_row div:first-child {
    margin-bottom: 8px;
    color: #3d3d54;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.order_form_wrapper_row div:first-child span {
    color: #c34c3d;
}

.order_form_wrapper_row div:last-child {
    font-size: 15px;
}

#product {
    background-color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

@media (min-width: 320px) {
    .order_form_wrapper_flex {
        padding: 18px;
        border-radius: 24px;
    }
}

@media (min-width: 1280px) {
    .order_form_wrapper_flex {
        padding: 24px;
    }
}
/*ORDER END*/


/*CONTACTS START*/

.contacts_outer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    padding: 30px 0;
}

.contacts_title {
    text-align: center;
}

.contacts_title h1 {
    font-size: 36px;
    font-weight: 500;
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 1;
}

.contacts_flex {
    display: flex;
    background-color: #f5f3f1;
    padding: 30px 0;
    margin-bottom: 30px;
}

.contacts_flex_item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}

.contacts_flex_icon {
    margin: 0 auto 10px auto;
}

.contacts_flex_icon img {
    display: block;
    width: auto;
}

.contacts_flex_text {
    line-height: 1;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.contacts_flex_description {
    line-height: 1;
    font-weight: 300;
    text-align: center;
}

.contacts_map {

}

@media (min-width: 320px) {
    .contacts_flex_text {
        font-size: 20px;
    }

    .contacts_flex_description {
        font-size: 16px;
    }
    .contacts_flex {
        flex-flow: row wrap;
        justify-content: flex-start;
    }

    .contacts_flex_item {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (min-width: 410px) {
    .contacts_flex_text {
        font-size: 20px;
    }

    .contacts_flex_description {
        font-size: 16px;
    }
    .contacts_flex {
        flex-flow: row wrap;
        justify-content: flex-start;
    }

    .contacts_flex_item {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (min-width: 640px) {
    .contacts_flex_text {
        font-size: 20px;
    }

    .contacts_flex_description {
        font-size: 16px;
    }
    .contacts_flex {
        flex-flow: row nowrap;
        justify-content: space-around;
    }
    .contacts_flex_item {
        width: auto;
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .contacts_flex_text {
        font-size: 24px;
    }

    .contacts_flex_description {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {

}

@media (min-width: 1368px) {

}

/*CONTACTS END*/
/* End */
/* /css/new_styles.css?177714462012037 */
/* /local/templates/shop/template_styles.css?177714465826858 */
