

@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: local('Zen Kaku Gothic New Medium'), local('Zen-Kaku-Gothic-New-Medium'),
        url('/fonts/ZenKakuGothicNew-Medium.woff2') format('woff2'),
        url('/fonts/ZenKakuGothicNew-Medium.woff') format('woff'),
        url('/fonts/ZenKakuGothicNew-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }

/***************************************************************************
                           1. CSS RESET
***************************************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button
{
    margin: 0;
    padding: 0;
    border: 0;
    outline: none !important;
    vertical-align: top;
    line-height: 1.5em;
    background: transparent;
    font-weight: normal;
}

ol, ul {
    list-style:none;
}
a, span {
    vertical-align:inherit;
    line-height: inherit;
    font-weight: inherit;
}
b, strong {
    font-weight: bold;
}
i, dfn {
    font-style: italic;
}

img {
    max-width: 100%;
}



/***************************************************************************
                           2. VARIABLES
***************************************************************************/

/* 2.1 GRADIENTS */






















/* 2.2 CSS3 TRANSITIONS */






/***************************************************************************
                           3. GLOBAL THEME STYLES
***************************************************************************/

/* hiding placeholder text on focus in webkit, thanks to http://www.kolodvor.net/2012/03/23/webkit-placeholder-attribute-behavior */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}



/* clearfix - nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}



/* utility classes: hidden, float left, float right, etc. */
.hidden,
.visuallyhidden {
    display: none;
}
 
.left {
    float: left;
}
.right {
    float: right;
}



/* fancybox styles */
#fancybox-wrap {
    padding: 0 !important;
}
#fancybox-content {
    width: 100% !important;
    text-align: center;
}

#fancybox-title {
    left: 50% !important;
}
#fancybox-title #fancybox-title-float-wrap {
    margin: 0 0 0 -50% !important;
}



/* addthis styles */
.addthis_toolbox {
    margin: 15px 0 0 0;
    border-top: 1px solid #f80100;
}
.addthis_toolbox > a {
    margin: 15px 15px 0 0 !important;
    padding: 0 !important;
}



/* jquery.formstyler styles for selects */
.jq-selectbox {
    display: block;
    z-index: 1000 !important;
    cursor: pointer;
}

.jq-selectbox__select-text {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.jq-selectbox__trigger i {
    position: absolute;
    top: 0;
    right: 0;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}
.jq-selectbox__dropdown {
    width: 100%;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.jq-selectbox.opened .jq-selectbox__trigger i {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
    }



/* misc */
#at15s {
    z-index: 999 !important;
}

#habla_window_div {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    }























/* add to cart message */
.cart_popup {
    width: 100%;
    height: 86px;
    font-size: 25px;
    line-height: 85px;
    color: #fff;
    text-align: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,.7);
    display: none;  
/*      top: 74px !important; */
}



/* 3.1 HOVERS */
.hover__1 {
    overflow: hidden;
    position: relative;
}

.hover__1:before,
.hover__1:after {
    content: '';
    width: 100%;
    height: 50%;
    display: block;
    background: rgba(0,0,0,.2);
    position: absolute;
    left: 0;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__1:before {
    top: -100%;
}
.hover__1:after {
    bottom: -100%;
}

.hover__1:hover:before {
    top: 0;
}
.hover__1:hover:after {
    bottom: 0;
}



.hover__2 {
    overflow: hidden;
    position: relative;
}

.hover__2:before,
.hover__2:after {
    content: '';
    width: 50%;
    height: 100%;
    display: block;
    background: rgba(0,0,0,.2);
    position: absolute;
    top: 0;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__2:before {
    left: -100%;
}
.hover__2:after {
    right: -100%;
}

.hover__2:hover:before {
    left: 0;
}
.hover__2:hover:after {
    right: 0;
}



.hover__3 {
    overflow: hidden;
    position: relative;
}

.hover__3:before {
       content: '';
    margin-left: -115px;
    width: 100%;
    border: 8px transparent;
    
    height: 0;
    display: block;
    background: rgb(190 119 204 / 31%);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    
}

.hover__3:hover:before {
    height: 100%;
    top: 0px;
}



.hover__4 {
    overflow: hidden;
    position: relative;
}

.hover__4:before {
    content: '';
    width: 0;
    height: 100%;
    display: block;
    background: rgba(0,0,0,.2);
    position: absolute;
    left: 50%;
    top: 0;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__4:hover:before {
    width: 100%;
    left: 0;
}



.hover__5 {
    overflow: hidden;
    position: relative;
}

.hover__5:before {
    content: '';
    width: 200%;
    height: 200%;
    display: block;
    position: absolute;
    left: -50%;
    top: -50%;
    -webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
            box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    
}

.hover__5:hover:before {
    -webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
            box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
    }



.hover__6 {
    overflow: hidden;
    position: relative;
}

.hover__6:before,
.hover__6:after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0,0,0,.1);
    position: absolute;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}

.hover__6:before {
    left: -100%;
    top: -100%;
}
.hover__6:after {
    right: -100%;
    bottom: -100%;
}

.hover__6:hover:before {
    left: 0;
    top: 0;
}
.hover__6:hover:after {
    right: 0;
    bottom: 0;
}



.hover__7 {
    overflow: hidden;
    position: relative;
}

.hover__7:before {
    content: '';
    width: 200%;
    height: 200%;
    display: block;
    position: absolute;
    left: -50%;
    top: -50%;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
            box-shadow: inset 0 0 0 0 rgba(0,0,0,.2);
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    
}

.hover__7:hover:before {
    -webkit-box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
            box-shadow: inset 0 0 0 300px rgba(0,0,0,.2);
    }





















.hover__8 {
    overflow: hidden;
    position: relative;
}

/*.hover__8:before {
    content: '';
    width: 200%;
    height: 200%;
    display: block;
    position: absolute;
    left: -50%;
    top: -50%;
    -webkit-border-radius: 50px;
       -moz-border-radius: 50px;
            border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 300px rgba(84,108,168,.2);
            box-shadow: inset 0 0 0 300px rgba(84,108,168,.2);
    -webkit-transform: scale(.001);
       -moz-transform: scale(.001);
        -ms-transform: scale(.001);
         -o-transform: scale(.001);
            transform: scale(.001);
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    
}

.hover__8:hover:before {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    }


*/
/***************************************************************************
                           4. TYPOGRAPHY
***************************************************************************/




body {
    font-family: Manrope;
    font-size: 14px;
    color: #302d30; 
    background: #f80100;
}
 


/* 4.1 HEADINGS */



.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
    margin: 0;
    padding: 0;
    font: 22px Manrope;
    color: #ee0000;
    /*text-transform: uppercase;*/
}
.column_center h2 {
    text-align: center; 
}
.column_center h2,
.column_center h3,
.column_center h4 {
    font-size: 15px;
}

.column_center h5,
.column_center h6 {
    font-size: 13px;
}

.column_center .page_heading {
    margin: 20px 0 0 0;
    padding: 0 0 5px 0;
}
.column_center .page_heading a {
    float: right;
}
.column_center .page_heading.h2_left {
    text-align: left; 
}
.column_center .page_heading .new a {
    font-size: 15px;
}


/* 4.2 PARAGRAPHS & LISTS */
p {
    margin: 19px 0;
    padding: 0;
    font-size: 13px;
    font-weight: 300;
    font-family: Manrope;
    letter-spacing: 0;
}
.column_center ul {
    list-style-type: Disc;
/*    list-style-position: inside;*/
    font-family: Manrope;
    margin: 0 0 0 10px;
    font-size: 14px;
    color:#8f6a74;
}
.column_center ol {
    list-style-type: decimal;
    list-style-position: inside;
}



/* 4.3 LINKS */
a {
    color: #f80100;
    text-decoration: none;
}
a:hover, a:focus {
    color: #ee0000 !important;
}



/* 4.4 PRODUCT ATTRIBUTES (name, description, price) */


.product_name {
    font-weight: 600;
    font-size: 13px;
    font-family: Manrope;
    color: #000000;
}


.product_name a {
    font-weight: 500;
    text-transform: uppercase;
    color: #536ba7;
    
-webkit-transition: .3s ease-in-out;
       -moz-transition: .3s ease-in-out;
        -ms-transition: .3s ease-in-out;
         -o-transition: .3s ease-in-out;
            transition: .3s ease-in-out;
    
}
.product_name a:hover {
    color: #f80100;
}



.product_desc {
    font-size: 14px;
    color: #7b88a8;
}


.money {
    color: #536ba7;
}
.compare-at-price {
    text-decoration: line-through;
}
.money.new {
    color: #f80100; 
}


/* 4.5 RTE */
.rte {
    margin-top: 15px;
    margin-bottom: 15px;
    color: inherit;
    /*display: flex;    */
    /*flex-wrap: wrap;*/
}

.rte a {
    color: inherit;
    /*text-decoration: underline;*/
}
.rte a:hover {
    text-decoration: underline;
}

.rte h1 {
    font-size: 21px;
    font-weight: 400;
/*    margin-left: 3px;*/
}

.rte h2, .column_center h2, h2 {
    font-size: 20px;
    text-transform: none;
    font-weight: 300;
    color: #f80100;
    letter-spacing: 1px;
    line-height: 25px;
    font-weight: 500;
}


.column_center h2 span {
    border-bottom: 3px solid #d7e0f5;
    padding-bottom: 4px;
}

.marked {
  font-size: 28px !important;
        background: rgba(236, 133, 168, 0.15);
    padding: 20px !important;
    text-align: center;
    border-radius: 10px;

}

.rte h3 {
    font-size: 18px;
}
.rte h4 {
    font-size: 14px;
}
.rte h5 {
    font-size: 13px;
}
.rte h6 {
    font-size: 12px;
}

.rte img {

/*    */


}


.ctlg {
    cursor: pointer;
}

.caticon {
    display: none;
    float: left;
    width: 20px;
    height: 25px;
   /*  background: url(/i/caticon.png) 0 4px no-repeat; */
    -webkit-background-size: 30px;
    background-size: 20px;
    margin-right: 20px;
}

h1, h2, h3, h4, h5, h6 {
/*    font-family: Roboto Condensed; */
font-family: Manrope;
}

.title1 {
    /* font-family: 'Pattaya', cursive; */
    font-size: 18px;    
    line-height: 22px;
    color: #F9F9F8;
    /*text-shadow: 1px 1px 6px #000;*/
/*    min-height: 75px;*/
}
h2 + .title1 {
    margin-top: 14px; 
}


.text1 {
    font-size: 18px;
    font-weight: 300;
    color: #302d30;
    letter-spacing: 2px;
    padding-top: 2px;
    padding-bottom: 16px;
    line-height: 22px;
}

.socn {
    width: 18px;
    margin-right: 10px;
    filter: invert(100%);
}

.banners { 

}

.inban {
    width: 48%;
    display: block;
    float: left;

}


.inban:nth-child(odd) {
margin-right: 10px;
}

/***************************************************************************
                           5. FORMS & COMPONENTS
***************************************************************************/

/* 5.1 FORMS */
label {
    font-weight: bold;
    font-size: 14px;
}

select,
select.form-control,
textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
    padding: 6px;
    border:1px solid #f80100;
    font: normal 13px 'Manrope';
    color: #7b88a8;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    box-shadow: none;
    /*background: #f80100;*/
    margin: 0 0 5px 0;
    color: #0e2c9f;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
    height: 34px;
    line-height: 18px;
    padding-top:7px;
    padding-bottom: 7px;
    -webkit-appearance: none;
}


select,
select.form-control {
    padding: 8px 3px;
    width: 100%;
}

textarea,
textarea.form-control {
    min-width: 100%;
    max-width: 100%;
}


.taxi,
.international,
.delivery,
.novaposhta {
    display: none;
}

.form-control:focus {
    border-color: #aaa;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
    }


.form-group {
    vertical-align: top !important;
    margin-top: 15px;
    margin-bottom: 0;
}
.form-group span {
    vertical-align: baseline; 
}

.form-horizontal label {
    padding-top: 0 !important;
    text-align: right;
    line-height: 34px;
}
.form-horizontal select {
    width: 100%;
}

.action_bottom span.note {
    margin-left: 5px;
}
.action_bottom span.note a {
    margin-left: 5px;
}



/* 5.2 ALERTS */
.alert {
    margin: 15px 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    }

.alert > p,
.alert > ul,
.alert > ol {
    list-style-type: none;
    margin: 0;
}

.alert > p + p,
.alert > ul + ul {
    margin: 10px 0 0 0;
}


/* 5.3 BUTTONS */
.btn,
.btn a,
.btn-info,
.btn-primary {

    border: 0px !important;
    position: relative;
    display: inline-block;
    /* border-radius: 50px; */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-size: 13px;
    line-height: 33px;
    text-decoration: none !important;
    padding: 11px 12px 11px;
    color: #ffffff !important;
    background: #ee0000;
    font-weight: 300;
    box-shadow: 1px 2px 2px #743c7fdb;
    margin-top: -2px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;

}

.noneactive {
    display: none !important;
}

.product2 {
    position: relative; 
}
.product2 .product_links3 span {
    font-size: 12px;
    display: inline-block;
    padding-top: 7px;
}


.product2 .product_links3 {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100px;
    background: #ee0000;
    height: 60px;
/*    border-radius: 8px;*/
    border: 1px solid #f80100;
    line-height: 22px;
    padding-top: 9px;
    font-size: 25px;
    bottom: -95px;
    color: #fff;
    /*text-shadow: 1px 1px 1px #00000054;
    box-shadow: 1px 1px 9px #f80100;*/
    right: 10px;
    z-index: 10;
}




.product .product_links {
    display: inline-block;
    text-align: center;
    position: absolute;
    /* width: 70px; */
    /* height: 90px; */
    background: #fff;
    border-radius: 5px;
    border: 1px solid #c2c2c2;
    line-height: 22px;
    /* padding-top: 13px; */
    padding: 10px;
    font-size: 26px;
    top: -80px;
    color: #000000;
    right: 10px;
    z-index: 10;
    font-weight: 600;
}


.product .product_links_old:before {
    content: '';
    display: block;
    width: 84px;
    position: absolute;
    top: 31px;
    left: -11px;
    height: 1px;
    background: #e1b7f4;
    transform: rotate(312deg);
}


.product .product_links_old {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
     border-radius: 5px; 
    border: 1px solid #eee;
    line-height: 22px;
    padding-top: 16px;
    font-size: 20px; 
    bottom: 307px;
    color: #e1b7f4;
    right: 20px;
}

.product2 .product_links2 {
    display: inline-block;
    text-align: center;
    position: absolute;
    /* width: 70px; */
    /* height: 70px; */
    background: #fff;
    border-radius: 5px;
    border: 1px solid #eee;
    line-height: 22px;
    /* padding-top: 16px; */
    padding: 10px 20px 0px 20px;
    font-size: 26px;
    bottom: 150px;
    color: #000;
    right: 165px;
    z-index: 1000;
}

.product2 .product_links_old:before {
    content: '';
    display: block;
    width: 69px;
    position: absolute;
    top: 34px;
    height: 1px;
    background: #f80100;
    transform: rotate(323deg);
}

.product2 .product_links2 span {
    font-size: 12px;
    display: block;
}
.product2 .product_links_old span {
    font-size: 12px;
    display: block;
}

.product2 .product_links_old {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 35px;
    border: 1px solid #eee;
    line-height: 22px;
    padding-top: 16px;
    font-size: 20px;
    bottom: 200px;
    color: #703b7a;
    right: 10px;
}

.btn a {
    padding: 0 !important;
    border: none !important;
}

.btn-cart {
    background: #536ba7;
}

.btn:hover,
.btn:hover a,
.btn-info:hover,
.btn-primary:hover {
    background: #7f7d7d;
    color: #ffffff !important;
}
.btn-cart:hover {
    background: #f80100;
}
.btn:focus {
    color: #ffffff;
}


/***************************************************************************
                           6. GLOBAL PAGE LAYOUT
***************************************************************************/

html, body {
    height: 100%;
}

#wrapper {
    
    background-color: #ffffff;
    
}

#wrapper2 {
    overflow: hidden;
}

.container {
    padding: 0;
}

#main {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.template-index #main {
    margin-top: 6px;
}

#main_content,
.column .widget {
    margin-bottom: 34px !important;
}



/***************************************************************************
                           7. SIDEBAR CONFIGURATION
***************************************************************************/

/* NO SIDEBAR */
.sidebar_none {
}


/* LEFT SIDEBAR */
.sidebar_left {
}
.sidebar_left .column_center {
    width: 100%;
}
.sidebar_left .column_center #main_content {
    margin: 0 0 0 25%;
}
.sidebar_left .column_left {
    margin-left: -97%;
}


/* RIGHT SIDEBAR */
.sidebar_right {
}


/* BOTH SIDEBARS */
.sidebar_both {
}
.sidebar_both .column_center {
    width: 100%;
}
.sidebar_both .column_center #main_content {
    margin: 0 25%;
}
.sidebar_both .column_left {
    margin-left: -100%;
}
.sidebar_both .column_right {
    margin-left: -25%;
}


/* NOSIDEBAR PAGES */
.sidebar_off .column_center #main_content {
    margin: 0;
}



/***************************************************************************
                           8. MAIN PAGE
***************************************************************************/

/* 8.1 HEADER */
header {
/*    padding-bottom: 27px; */
}
.header_top {
    background: #000;
}


.header_user {
    float: left;
    padding-top: 19px;
}
.header_user li {
    position: relative;
    display: inline-block;
    padding: 3px 0px 0px;
    margin-right: 33px;
}
.header_user li + li {
    padding-left: 31px; 
}
.header_user li + li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    height: 10px;
    width: 0;
    border-left: 3px solid #ee0000;
}
.header_user li a {
    position: relative;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2.9px;
    padding-bottom: 26px;
    display: inline-block;
    font-family: Manrope;
}
.header_user li a i {
    margin: 0 5px 0 0;
    line-height: 1.5em;
    vertical-align: baseline;
}

.header_user li a:after {
    position: absolute;
    height: 2px;
    bottom: 20px;
    left: 0;
    width: 0px;
    right: auto;
    content: '';
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    background: #ffffff;
}




.header_user li a:hover:after {
    display: block;
    width: 100%;
}


.header_top-right a:after {
    position: absolute;
    height: 7px;
    bottom: 0;
    left: 0;
    width: 0px;
    right: auto;
    content: '';
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
    background: #ffffff;   
}

.header_top-right a:hover:after {
    display: block;
    width: 100%;
}



.header_top-right a {
    position: relative;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2.9px;
    padding-bottom: 26px;
    display: inline-block;
    font-family: Manrope;
}


.header_search {
    /*float: right;*/
    margin-top: 15px;
}
.header_search form {
    /*background: #f80100;*/

    position: relative;
    width: 270px;
    float: left;
    margin: 3px 60px 0 0;
    padding-right: 32px;
    border-radius: 5px;
   border: 1px solid #f9e3fd;
}


::-webkit-input-placeholder {color:#f8e6e2;}
::-moz-placeholder          {color:#f8e6e2;}/* Firefox 19+ */
:-moz-placeholder           {color:#f8e6e2;}/* Firefox 18- */
:-ms-input-placeholder      {color:#f8e6e2;}


.header_search #search-field {
    background: transparent;
    border: 0px;
    width: 100%;
    height: 30px;
    color: #ffffff;
    padding: 11px 10px 3px 10px;
}

.phonestop {
margin-left: 40%;
}


.topphones {
    line-height: 19px;
    margin-top: -13px;
    margin-right: 20px;
}

.topphones a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}



.phoneline .viber ,.phoneline .wa , .phoneline .tg  {
/*-webkit-transform: scale(.8);
   -moz-transform: scale(.8);
    -ms-transform: scale(.8);
     -o-transform: scale(.8);
        transform: scale(.8);
*/        margin-bottom: 5px;
}


.phoneline i:hover {
    
    box-shadow: 1px 1px 36px #ee0000;
}

.descriptor {
    bottom: -7px;
}

.phoneline {
    color: #fff;
    height: 24px;
    font-size: 19px;
    margin-top: -4px;
    padding: 10px;
    display: flex;
    width: 300px;
    justify-content: space-around;
}


.saf div {
    display: none;
}

.saf div a{
color: #fff;
}
.saf div {
    position: absolute;
    top: 10px;
    z-index: 10;
    background: #9e77b2;
    padding: 10px;
    border: 1px solid #fce5f4;
    box-shadow: 1px 1px 31px #f80100;
}
.saf:hover div {
    display: block;
}

.icoks {
width: 30px;
height: 30px;
display: inline-block;
background:url('/i/mob.png');

background-position: -2px 0px
}


.viber{
    width: 28px;
    height: 30px;
    display: inline-block;
    background: url(/i/vvt.png) no-repeat;
    -webkit-background-size: 100px 30px;
    background-size: 89px 30px;
    margin-right: 10px;
}


.wa{
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(/i/vvt.png) -59px 0px no-repeat;
    -webkit-background-size: 100px 30px;
    background-size: 89px 30px;
    margin-right: 8px;
}


.instlogo{ 
width: 30px;
    height: 30px;
    display: inline-block;
    background: url(/i/ilogo.png)  no-repeat;    
    background-size: 30px 30px;
}




.tg{
width: 29px;
    height: 30px;
    display: inline-block;
    background: url(/i/vvt.png) -29px 0px no-repeat;
    -webkit-background-size: 100px 30px;
    background-size: 89px 30px;
     margin-right: 10px;
}



.icolife {
width: 30px;
height: 30px;
display: inline-block;
background:url('/i/mob.png');

background-position: -32px 0px
}

.icovf {
width: 30px;
height: 30px;
display: inline-block;
background:url('/i/mob.png');
background-position: 28px 0px
}



.icoks2 {
width: 30px;
height: 30px;
display: inline-block;
background:url('/i/mob2.png');

background-position: -2px 0px
}

.icolife2 {
width: 30px;
height: 30px;
display: inline-block;
background:url('/i/mob2.png');
background-position: 26px 0px;
}

.header_search #search-submit {
    position: absolute;
    right: 0;
    bottom: 4px;
    top: 0;
    vertical-align: middle;
    line-height: 36px;
    font-size: 13px;
    color: #ffffff;
    width: 30px;
    text-align: left;
}
.header_search #search-submit i {
    vertical-align: middle; 
}
.header_search #search-submit:hover i {
    color: #a3b9ef;
}

.header_search  UL LI{
    display: block;
    float: left;
    margin-right: 20px;
    color:#fff;

    }

/*.custom_showcase__2:hover {
    box-shadow: 1px 1px 14px #ee0000;
    border: 4px solid #fff;
}
*/


    .call {
        position: fixed;
        right: 10px;
        bottom: 10px;
        background: url(../i/call.png) no-repeat;
        width: 120px;
        height: 120px;
        z-index: 100;
    }

.header_top-right  {
    float: right;
    /* padding-top: 22px; */
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2.9px;
    /* padding-bottom: 26px; */
    display: inline-block;
    /* font-family: Manrope', serif; */
    margin-top: -10px;
}


.header_cart {
    display: inline-block;
    padding: 0px 62px 0px 36px;
}
.header_cart a {
    vertical-align: baseline;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
}
.header_cart a i {
    font-size: 26px;
    line-height: 22px;
    display: inline-block;
    color: #ffffff;
    padding-right: 9px;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.header_cart a b {
    line-height: inherit;
    vertical-align: inherit;
    font-weight: normal;
    color: #a3b9ef;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.header_cart a span {
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.header_cart a span.count {
    padding: 0 4px;
}
.header_cart a:hover i,
.header_cart a:hover span {
    color: #a3b9ef;
}
.header_cart a:hover b {
    color: #ffffff;
}


.header_currency {
    display: inline-block;
}
.header_currency .jq-selectbox {
    width: 60px;
}
.header_currency .jq-selectbox__select {
    height: 25px;
    padding: 0 0px 0 21px;
}
.header_currency .jq-selectbox__select-text {
    line-height: 21px;
    font-size: 14px;    
    color: #ffffff;
    letter-spacing: 1px;
}
.header_currency .jq-selectbox__trigger i {
    left: -1px;
    top: 4px;
    font-size: 15px;
    color: #ffffff;
}
.jq-selectbox__trigger i {
    right: auto;
}

.header_currency .jq-selectbox__dropdown {
    width: 100% !important;
    top: 24px !important;
}
.header_currency .jq-selectbox__dropdown ul {
    -webkit-box-shadow: 1px 1px 1px 0px rgba(126,148,204,0.75);
    -moz-box-shadow: 1px 1px 1px 0px rgba(126,148,204,0.75);
    box-shadow: 1px 1px 1px 0px rgba(126,148,204,0.75);
    background: #ffffff;
    border: 1px solid #f80100;
    border-radius: 10px;
    padding: 10px 0px;
}
.header_currency .jq-selectbox__dropdown ul li {
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    color: #f80100;
    text-align: center;
}

.header_currency .jq-selectbox__dropdown ul li:hover,
.header_currency .jq-selectbox__dropdown ul li.sel {
    color: #ffffff;
    background: #eaacc0;
}


.dop h2{
margin-bottom: 10px;
}

.dop li{
font-size: 14px;
}

.dop {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    margin-top: 110px;
}

.dop a {
    float: right;
    border-bottom: 1px solid #000;
    margin-top: 10px;
}

.spoiler {
margin-top: 10px;
position: relative;
}

.spoiler p , .hidecontent p {
    margin: 0;
}

.hidecontent {
    display: none;
    margin-top: 10px;
    text-align: left;
}

.hidemoretext { 
    display: inline-block !important;
    color:#967e79;
}

.relativepos {
    position: relative;
}

.more {
    display: inline-block;
    border-bottom: 1px solid #000;
    margin-top: 1px;
    cursor: pointer;
}
.more:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 18px;
    pointer-events: none;
    background: linear-gradient( 
180deg, hsla(0, 0%, 100%, 0), #fffdfe);
    opacity: 1;
    transition: all .3s ease;
}
.more.up:before {
    content: "";
    display: none !important;
}


.threedots {
    display: inline-block;
    width: 30px;
    height: 21px;
    background: url(/i/more2.svg) no-repeat;
    -webkit-background-size: 30px;
    background-size: 10px;
    background-position: 5px 12px;
}

.dop i.deliver{  
  display: inline-block;
  margin-right: 5px;
  width: 25px;
  height: 25px;
filter: invert(54%) sepia(3%) saturate(2079%) hue-rotate(319deg) brightness(97%) contrast(84%);
  background: url('/i/shipping.png') no-repeat;
  background-size: 25px  
}

.dop i.payme{  
  display: inline-block;
  margin-right: 5px; 
  width: 25px;
  height: 25px;
filter: invert(54%) sepia(3%) saturate(2079%) hue-rotate(319deg) brightness(97%) contrast(84%);
  background: url('/i/wallet.png') no-repeat;
  background-size: 21px  
}



.sizertable {
    background: #ffffff;
    box-shadow: 1px 1px 11px #f801000f;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
    margin: 0px auto 20px;
    border-color: #eee;
    font-size: 12px;
}


.sizertable span.noned:before{
    display: none !important;
}

.sizertable span.widthp:before{
    content: '';
    display: block;
    float: left;
    margin-right: 3px;
    width: 15px;
    height: 15px; 
    background: url('/i/width.png') no-repeat;
    filter: invert(54%) sepia(3%) saturate(2079%) hue-rotate(319deg) brightness(97%) contrast(84%);
    background-size: 15px;
}

.sizertable span.heightp:before{
    content: '';
    display: block;
    float: left;
    margin-right: 3px;
    width: 15px;
    height: 15px;
    background: url('/i/height.png') 2px 2px no-repeat;
    filter: invert(54%) sepia(3%) saturate(2079%) hue-rotate(319deg) brightness(97%) contrast(84%);
    background-size: 12px;
}

.sizertable span.depthp:before{
    content: '';
    display: block;
    float: left;
    margin-right: 5px;
    width: 15px;
    height: 15px;
    background: url('/i/size.png') no-repeat;
    filter: invert(54%) sepia(3%) saturate(2079%) hue-rotate(319deg) brightness(97%) contrast(84%);
    background-size: 15px;
}


 
.sizertable span{
  padding: 0px 15px;
  border-right: 1px solid;
  border-color: #f1eeef;
}

.sizertable span:last-child{
 border-right: 0px;
    }

.preview-dvd {
    background: url(/i/hit2.png) no-repeat;
    background-size: 50px 50px;
    z-index: 10;
    display: block;
    height: 50px;
    width: 50px;
    position: absolute;
    left: 6px;
}
.izm {
    text-transform: lowercase;
    margin: 7px 0 0 0;
    font-weight: 700;
}


.oldprice {
  position: relative;
  font-size: 20px;                                          
}
.oldprice:before {
  position: absolute; 
  content: "";
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid;
  border-color: inherit;

  -webkit-transform:rotate(-5deg);
  -moz-transform:rotate(-5deg);
  -ms-transform:rotate(-5deg);
  -o-transform:rotate(-5deg);
  transform:rotate(-5deg);
}

.label-product {
    background: url(/i/skidka.png) no-repeat;
    background-size: 50px 50px;
    z-index: 10;
    display: block;
    height: 50px;
    width: 50px;
    right: 20px;
    top: 8px;
    padding: 7px 0 0 14px;
    color: #fff;
    position: absolute;
} 

.top_shadow {
    position: relative;
    z-index: 0; 
}
.top_shadow .inside_top {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 84px;
/*    background: #fce5f4;*/
    z-index: 0;
}
.top_shadow .inside_grad {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eaabc0+0,f2ceda+32,f5ddea+59,ffffff+100 */







    z-index: 0;
}
.template-index .top_shadow .inside_grad { 
    height: 676px;
}
.top_shadow + div {
    position: relative;
    z-index: 1;
}


#logo {
    text-align: center;
    margin-top: 11px;
}
#logo a {
    width:100%;
    position: relative;
    display: inline-block;
/*    font-family: 'Pattaya', cursive;*/
    color: #6f5775;
    padding-bottom: 12px;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
/*#logo a:before {
    position: absolute;
    height: 3px;
    bottom: 0;
    left: 0;
    content: '';
    background: #ffffff; 
    width: 100%;
}
*/


.popup {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 15px;
    /* background: linear-gradient(to right, rgb(91 91 91) 0%,rgb(169 155 155) 100%); */
    /* height: 296px; */
    background: #8e4141;
    width: 80%;
    padding: 20px 20px 30px 20px;
    /* border-radius: 7px; */
    border: 1px solid #e5e5e55c;
    z-index: 100;
    box-shadow: 1px 1px 250px #000;
    transition: all 1.5s ease-out;
}


.backgroundpurple {
    content: '';
        width: 100%;
    height: 100%;
    background: #42362e73;
    position: absolute;
    display: block;
    z-index: 100;
}

.popup p {
    font-size: 16px;
    text-align: center;
}


.callback p {
    font-size: 16px;
    text-align: center;
}

.valid {
    height: 40px;
    width: 40px;
    /* background: #fff; */
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 5px;
    filter: invert(1);
}



#Layer_2 {
    margin:7px;
}

.bottom-popup {
    width: 100%;
/*    background: #cf94d1;*/
    -webkit-border-bottom-right-radius: 7px;
    -webkit-border-bottom-left-radius: 7px;
    -moz-border-radius-bottomright: 7px;
    -moz-border-radius-bottomleft: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    /*margin-top: 32px;*/
    padding: 10px 0 10px 0;

}

a.start4  {
    width: 200px !important;
    display: inline-block !important;
    margin-right: 10px !important;
    margin-bottom: 10px !important;
}


a.start, a.start2, a.start3, a.start4 {
    margin: 0 auto;
    /* border-radius: 40px; */
    background: #000000;
    padding: 6px 20px 6px 20px;
    /* font-family: 'helvetica'; */
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 176px;
    font-size: 14px;
    /* float: right; */
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    text-align: center;
    cursor: pointer;
    border: 1px solid;
}


a.start:hover,a.start2:hover, a.start3:hover, a.start4:hover {
    border-radius:5px;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    color: #481f5e !important;
}
#Layer_1 {
    float:right;
    margin:10px;
}


td.active{

/*    background: #9e77b2;*/
  background: linear-gradient(to right, rgb(244 173 243) 0%,rgb(130 214 249) 100%);
    color: #fff;

}

.offer:before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    /* margin-left: -40px; */
    background: url('/i/goal.png') no-repeat;
    background-size: 25px;
    filter: invert(54%) sepia(12%) saturate(1283%) hue-rotate(228deg) brightness(125%) contrast(89%);
    position: absolute;
    left: 50%;
    margin-top: -49px;
    margin-left: -15px;
}


.offer {
    margin: 45px 0 20px 0;
    padding: 13px 10px;
    border: 1px solid #ee0000;
    text-align: center;
    display: none;
}


#logo b {
    font-size: 72px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 72px;
    position: relative;
}
#logo b:before {
    position: absolute;
    top: 3px;
    left: 0;
    overflow: hidden;
    padding: 10px 0;
    width: 0;
    color: #f80100;
    content: attr(data-hover);
    -webkit-transition: width .5s ease-in-out;
    -moz-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out;
    text-align: left;
}
#logo a:hover b:before {
    width: 105%; 
}

.found_categs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style-type: none !important;
    margin-left: 0 !important;
    
}
 
.found_categs li{
 margin-right: 10px;
 border-bottom: 1px dashed; 
}
#logo span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-family: Roboto Condensed;
    letter-spacing: 8px;
    margin-top: -5px;
    position: relative;
    padding-left:10px;
}
#logo a:hover {
    color: #f6afab;
}

#logo a:after {
    position: absolute;
    height: 1px;
    bottom: -3px;
    left: 0;
    content: '';
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    background: #e5aaa4;
    width: 0;
    background: #020202;
}

#logo a:hover:after {
    width: 100%;
}


#logo img {
    width: 400px;
    margin-bottom: 5px;
}

@keyframes mymove {
    from {opcaity: 0;}
    to {opacity: 1}
}

/* 8.2 NAVIGATION */

.hey #navigation {
    background: #f80100;
    animation: mymove 0.5s 1;
}

.nclient {
    min-height: 220px !important;
}

.fblogo:hover {
/*background: url('/i/fblogoh.png') no-repeat;*/
/*background-size: 50px 50px;*/
}

.instalogo:hover {
/* background: url('/i/instalogoh.png') no-repeat;
background-size: 50px 50px; */
}

.vklogo:hover {
background: url('/i/vklogoh.png') no-repeat;
background-size: 50px 50px;
}

.fblogo {
    width: 30px;
    height: 30px;
    display: block;
    background: url('/i/fblogo.png') no-repeat;
    background-size: 25px 25px;
    margin-top: 10px;
}

.inslogo{
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(/i/instalogo.png) 0px 0px no-repeat;
    -webkit-background-size: 100px 30px;
    background-size: 30px;
}

.fbmylogo{
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(/i/fblogo.png) 0px 0px no-repeat;
    -webkit-background-size: 100px 30px;
    background-size: 30px;
}



.instalogo {
    width: 25px;
    height: 25px;
    display: block;
    background: url('/i/instalogo.png') no-repeat;
    background-size: 25px 25px;
    margin-top: 10px;
}

.vklogo {
    width: 50px;
    height: 50px;
    display: block;
    background: url('/i/vklogo.png') no-repeat;
    background-size: 50px 50px;
}

.hey a {
    color:#fff !important;
}

.hey li:hover a, .hey li.active a{
    color:#79188c !important;
}

.company {
    color:#d6638a;
    border-bottom: none !important;
}

#navigation {
    position: relative;
    z-index: 99 !important;
    height: 75px;
    transition: all 1s;
}


#navigation .nav_wr {
    text-align: center;
    border-top: 1px solid #f80100;  
}


#navigation nav {
    position: relative;
    z-index: 9;
    display: inline-block;
}

#navigation.isStuck {
    width: 100%;
    left: 0;
    top: 0;
    background: #647bb4;
}
.sf-menu li {
    position: relative;
}

/*================================>> 1 Level <<========================================*/

.sf-menu > li {
    float: left;
    margin: 12px 0px 9px;
    padding: 0 2px;
    height: 47px;
}
.sf-menu > li + li {
/*    border-left: 1px solid #aca7a3;*/
}
.sf-menu > li > a {
    font-family: Manrope;
    display: inline-block;
    padding: 12px 20px 15px;
    text-transform: uppercase;
    border-radius: 40px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2px;
    font-weight: 900;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    color: #000000;
}

.sf-menu > li.active > a,
.sf-menu > li:hover > a {
    color: #e5aaa4;
/*    border-bottom: 1px solid;*/
    border-radius: 0;

}



/*================================>> 2 Level <<========================================*/


.sf-menu ul {
    display: none;
    min-width: 180px !important;
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 100;
    
    padding: 10px 0px;
    background: #ffffff;
    -webkit-box-shadow: 1px 1px 15px 0px rgba(126,148,204,0.75);
    -moz-box-shadow: 1px 1px 15px 0px rgba(126,148,204,0.75);
    box-shadow: 1px 1px 15px 0px rgba(126,148,204,0.75);
    border: 1px solid #f80100;
}
.sf-menu ul li a {
    display: block;
    padding: 10px;
    color: #f80100;
    text-transform: uppercase;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}

.sf-menu ul > li a:hover,
.sf-menu ul > li.active a {
    background: #a3b9ef;
    color: #ffffff;
}

.lbar a {
    display: inline !important;
    font-size: 10px;
    text-shadow: 1px 1px 1px #0000003b;
    padding-right: 10px;
}

.optovi {
    background: #f7f7f7;    
    padding: 20px !important;
    box-shadow: 1px 1px 3px #00000021;
}

.optovi h4 {
    font-weight: 700;
}

.optovi ul li:nth-child(odd) { 
    background: #ffffff6b;
}

.optovi li span{
    font-weight: 600;
    float: right;
}

.optovi ul{
    margin: 0;
}
.optovi li{
    list-style-type: none;    
    font-size: 14px;
}

/* =================================================================
   HELP MENU
   ================================================================= */
.help-menu {
  cursor: pointer;
  position: fixed;
  right: 0;
  width: 60px;
  z-index: 100;
  transition: all .3s ease-in;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.help-menu-count {
  font-size: 0.8125em;
  font-weight: 700;
  line-height: 18px;
  color: #fff;
  background-color: #f80100;
  padding: 0 5px;
  height: 18px;
  min-width: 18px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 105;
}

.help-menu li:first-child [class^="help-menu-icon"] {
  border-radius: 3px 0 0 0;
}

.help-menu li:last-child [class^="help-menu-icon"] {
  border-radius: 0 0 0 3px;
}

.help-menu a {
  position: relative;
  display: block;
}

.help-menu-hint {
    position: absolute;
    background-color: #f78283;
    padding: 0px 7px 0 10px;
    left: 100px;
    color: #fff;
    height: 50px;
    min-width: 110px;
    border-radius: 2px;
    font-size: 18px;
    /* font-style: italic; */
    text-align: center;
    top: 6px;
    padding-top: 12px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.25s linear;
    white-space: nowrap;
}


[class^="help-menu-icon"] {
  position: relative;
  z-index: 101;
}

[class^="help-menu-icon"]:hover + .help-menu-hint {
  right: 78px;
  opacity: 1;
  left: auto;
}

.help-menu-icon1 {
  background: url(../ico/helpup.svg) 10px 10px no-repeat  rgb(130 214 249 / 85%);
  background-size: 40px 40px;
  border-bottom: 1px solid #f0d0c3;
  height: 60px;

  width: 60px;
}

.help-menu-icon1:hover, .help-menu-icon1.hover {
  background: url(../ico/helpup.svg)  10px 10px  no-repeat #edb1f3;
  background-size: 40px 40px;
}
 
.help-menu-icon3 {
    background: url(../ico/helpcart.png) 10px 10px no-repeat  rgb(19 173 237 / 85%);
    background-size: 40px 40px;
    border-bottom: 1px solid #f0d0c3;
    height: 60px;
    width: 60px;
}


.help-menu-icon3:hover, .help-menu-icon1.hover {
  background: url(../ico/helpcart.png)  10px 10px  no-repeat #edb1f3;
  background-size: 40px 40px; 
}


.help-menu-icon4 {
    background: url(../ico/helpphone.svg) 10px 10px no-repeat  rgb(238 0 0);
    background-size: 40px 40px;
    border-bottom: 1px solid #f0d0c3;
    height: 60px;
    width: 60px;
    transform: rotate(270deg); 
}


.help-menu-icon4:hover, .help-menu-icon1.hover {
  background: url(../ico/helpphone.svg)  10px 10px  no-repeat #000000;
  background-size: 40px 40px;
}


.help-menu-icon5 {
  background: url(../ico/viber.png) 10px 10px no-repeat  rgb(130 214 249 / 85%);
  background-size: 40px 40px;
  border-bottom: 1px solid #f0d0c3;
  height: 60px;

  width: 60px;
}


.add2cart {
    display: none;
    position: absolute;
    top: 47px;
    color: #f80100;
    left: 10%;
    letter-spacing: 0;
    border-bottom: 2px solid;
    border-top: 2px solid;
    z-index: 20;
    background: #fff;
    line-height: 20px;
    box-shadow: 6px 5px 5px -1px #8080808f;
}

.help-menu-icon5:hover, .help-menu-icon1.hover {
  background: url(../ico/viber.png)  10px 10px  no-repeat #f80100;
  background-size: 40px 40px;
}



.help-menu-icon6 {
  background: url(../ico/whatsapp.svg) 10px 10px no-repeat  rgba(236, 133, 168, 0.66);
  background-size: 40px 40px;
  border-bottom: 1px solid #f0d0c3;
  height: 60px;

  width: 60px;
}

.help-menu-icon6:hover, .help-menu-icon1.hover {
  background: url(../ico/whatsapp.svg)  10px 10px  no-repeat #f80100;
  background-size: 40px 40px;
}


.help-menu-icon7 {
  background: url(../ico/tg.svg) 10px 10px no-repeat  rgba(236, 133, 168, 0.66);
  background-size: 40px 40px;
  border-bottom: 1px solid #f0d0c3;
  height: 60px;

  width: 60px;
}


.help-menu-icon8 {
  background: url(../ico/english.png) 10px 10px no-repeat  rgba(236, 133, 168, 0.66);
  background-size: 40px 40px;
  border-bottom: 1px solid #f0d0c3;
  height: 60px;
  width: 60px; 
}

.help-menu-icon9 {
  background: url(../ico/rus.png) 10px 10px no-repeat  rgba(236, 133, 168, 0.66);
  background-size: 40px 40px;
  border-bottom: 1px solid #f0d0c3;
  height: 60px;
  width: 60px;
}

 
.help-menu-icon10 {
  background: url(../ico/ua.png) 10px 10px no-repeat  rgba(236, 133, 168, 0.66);
  background-size: 40px 40px;
  border-bottom: 1px solid #f0d0c3;
  height: 60px;
  width: 60px;
}



.help-menu-icon7:hover, .help-menu-icon1.hover {
  background: url(../ico/tg.svg)  10px 10px  no-repeat #f80100;
  background-size: 40px 40px;
}

/*.help-menu-icon3 {
  background: url(../images/help-icon3.png) no-repeat  rgba(236, 133, 168, 0.66);
  background-size: 100%;
  border-bottom: 1px solid #555555;
  height: 60px;
  width: 60px;
}

.help-menu-icon3:hover, .help-menu-icon3.hover {
  background: url(../images/help-icon3.png) no-repeat #f80100;
  background-size: 100%;
}*/


.plusone {
    display: none;
    
    float: left;
    margin-right: 5px;
    cursor: pointer;
/*    display: inline-block;*/
    width: 23px;
    height: 20px;
    background: url('/i/arrdown.png') no-repeat;
    background-size: 19px;
    background-position: 2px 1px;
    filter: invert(36%) sepia(95%) saturate(197%) hue-rotate(-48deg) brightness(103%) contrast(381%);
}

.minusik {    
    display: none;
     float: left;
    margin-right: 5px;
    cursor: pointer;
/*    display: inline-block;*/
    width: 23px;
    height: 20px;
    background: url('/i/minusik.png') no-repeat !important;    
    background-size: 19px !important;
     background-position: 2px 1px !important;
   filter: invert(36%) sepia(95%) saturate(197%) hue-rotate(-48deg) brightness(103%) contrast(381%);
    
}

.tovo {
    height: 40px;
}



.help-menu .help-drop-block {
  min-width: 374px;
      background-color: rgba(29, 55, 130, 0.86);
  padding: 28px 31px 28px 31px;
  position: absolute;
  top: 7px;
  right: 71px;
  z-index: 103;
  display: none;
}

.help-menu .help-drop-block:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  content: '';
  height: 0;
  position: absolute;
  right: -8px;
  top: 14px;
  bottom: auto;
}

.help-menu .help-drop-block.center {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.help-menu .help-drop-block.center:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  content: '';
  height: 0;
  position: absolute;
  right: -8px;
  top: calc(50% - 8px);
}

.help-menu .help-drop-block.top {
  top: 7px;
}

.help-menu .help-drop-block.top:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  content: '';
  height: 0;
  position: absolute;
  right: -8px;
  top: 14px;
  bottom: auto;
}

.help-menu .help-drop-block.bottom {
  bottom: 7px;
  top: auto;
}

.help-menu .help-drop-block.bottom:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
      border-left: 8px solid rgb(123, 126, 175);
  content: '';
  height: 0;
  position: absolute;
  right: -8px;
  top: auto;
  bottom: 14px;
}


.owl-item .item img{
/*    border-radius: 15px;*/
}

.help-menu .help-drop-block .close-block {
  text-decoration: none;
  width: 24px;
  height: 22px;
  background: url("../images/x2/close-popup.png") 50% 50%/24px 22px no-repeat;
  display: block;
  top: 32px;
  right: 30px;
  position: absolute;
  text-indent: -9999px;
}

.help-menu .help-drop-block h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

.help-menu .help-drop-block .help-title {
  font-size: 15px;
  line-height: 15px;
  
  color: #fff;
  font-weight: 400;
  display: block;
  margin-bottom: 16px;
}

.help-menu .help-drop-block .help-line {
  margin: 0 0 20px;
  position: relative;
}

.help-menu .help-drop-block .help-line:last-child {
  margin-bottom: 0;
}

.help-menu .help-drop-block .help-line .field, .help-menu .help-drop-block .help-line input, .help-menu .help-drop-block .help-line textarea {
  width: 340px;
  background-color: #f8f8f8;
  border: 1px solid;
  border-color: #926a36;
  height: 44px;
  padding: 0 20px;
  font-family: "Open Sans";
  font-size: 16px;
  color: #333;
}

.help-menu .help-drop-block .help-line .field:-ms-input-placeholder, .help-menu .help-drop-block .help-line input:-ms-input-placeholder, .help-menu .help-drop-block .help-line textarea:-ms-input-placeholder {
  color: #fff;
}

.help-menu .help-drop-block .help-line .field::-moz-placeholder, .help-menu .help-drop-block .help-line input::-moz-placeholder, .help-menu .help-drop-block .help-line textarea::-moz-placeholder {
  color: #fff;
}

.help-menu .help-drop-block .help-line .field::-webkit-input-placeholder, .help-menu .help-drop-block .help-line input::-webkit-input-placeholder, .help-menu .help-drop-block .help-line textarea::-webkit-input-placeholder {
  color: #fff;
}

.help-menu .help-drop-block .help-line .field::placeholder, .help-menu .help-drop-block .help-line input::placeholder, .help-menu .help-drop-block .help-line textarea::placeholder {
  color: #fff;
}

.help-menu .help-drop-block .help-line .field:focus, .help-menu .help-drop-block .help-line input:focus, .help-menu .help-drop-block .help-line textarea:focus {
  background-color: #fef3e5 !important;
}

.help-menu .help-drop-block .help-line input {
  height: 44px;
}

.help-menu .help-drop-block .help-line textarea {
  height: 120px;
  padding: 8px 19px;
  resize: none;
}

.help-menu .help-drop-block .help-line .button-submit {
  display: inline-block;
  width: 340px;
  height: 54px;
  line-height: 54px;
      background-color: #f80100;
    
    border: 1px solid #f80100;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  transition: all .5s ease;
}

.help-menu .help-drop-block .help-line .button-submit:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #926a36;
}

.help-menu .help-drop-block .help-line button:hover .button-submit {
  background-color: #fff;
  border: 1px solid #fff;
  color: #926a36;
}

.help-menu .help-drop-block#write-us {
  min-width: 444px;
}

.help-menu .help-drop-block#call {
  min-width: 444px;
}






/* 8.4 SHOWCASE */


.custom_showcase {
    position: relative;
    border: 2px #000000 solid;
    overflow: hidden;
    /* border-radius: 10px; */
    height: 260px;
    transition-property: transform;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

.custom_showcase a {
    display: inline-block; 
}
.custom_showcase .inside {
    position: absolute;
}
.custom_showcase .wrapper {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
    opacity: 0;
    background: transparent;
}

.quantity-block {  
  font-size: 20px;
  display: inline-block;
  padding: 9px 0 0 0;
}
.quantity-arrow-minus,
.quantity-arrow-plus {
  cursor: pointer;
  font-size: 20px;
  padding: 5px 12px 5px 6px;
  width: 20px;
  box-sizing: border-box;
  border-radius: 4px;
  outline: none;
}
.quantity-num {
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 4px;
  outline: none;
  width: 45px;
  text-align: center;
}

.buybar {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-evenly;
}

 
.gamma i{
 display: inline-block;
    /* float: left; */
    margin-right: 10px;
    width: 25px;
    height: 25px;
    background: url(/i/colors.svg) 0 0 no-repeat;
    -webkit-background-size: 20px; 
    background-size: 20px;


}

.gamma {
    width: 100%;
    text-align: center;
    /* background: #be77cc; */
    color: #f80100 !important;
    border-bottom: 1px solid #f80100;
    /*  */
    padding: 5px 0 0 0 !important;
    /* text-shadow: 1px 1px 1px #00000057; */
}


.prhead {
    position: absolute;
}

.button_consultmargin {    
    margin: -33px auto 20px auto !important;
}


.button_consult {
    width: 255px;
    text-align: center;
    border: 1px solid #000000;
    color: #f80100 !important;
    font-size: 18px;
    padding: 5px 0 5px 22px !important;
    /* text-shadow: 1px 1px 1px #00000057; */
    /* margin: -33px auto 20px auto; */
    margin: 65px auto 44px;
    cursor: pointer;
    background: url(/i/chat-icon2.png) 5px 5px no-repeat;
    filter: brightness(19%);
    background-size: 25px;
}



.button_consult:hover {
    color: #fff !important;
    background: #f80100;
    filter: brightness(118%);
}

.button_consult2:after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('/i/ocb.png') 0px 6px no-repeat;
    background-size: 25px;
    filter: brightness(100);
}


.button_consult2 {
    border: 0px !important;
    position: relative;
    display: inline-block;
    /* border-radius: 50px; */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    /* border-radius: 50px; */
    line-height: 19px;
    text-decoration: none !important;
    padding: 3px 5px 12px 10px;
    /* color: #82d6f9!important; */
    border-bottom: 1px solid #000;
    /* background: #82d6f9; */
    font-weight: 600;
    /* box-shadow: 1px 2px 2px #aa928f; */
    margin-top: -2px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}


.button_consult2:hover {
    color: #000 !important;
/*    background: #e1b7f4;*/
    cursor: pointer;
}

.custom_showcase__2 .wrapper {
    
            /*background: url(../i/custom_showcase2-hover_img.jpg?8036570669701542646) 0 0 no-repeat;*/
            background: #e1d0e4;
    background-size: cover;
    

}

.aua {
    position: absolute;
    width: 70px !important; 
}


.aua2 {
    position: absolute;
    width: 36px !important;
    margin-top: -13px;
    left: 2px;
}
 
.aua3 {
    position: absolute;
    width: 32px !important;
    margin-top: -11px;
    left: 2px;
    display: none;
    
}



.custom_showcase__2 img {
    width: 100%;
    border-radius: 0;
    transition: all 0.6s;

    /*filter: brightness(0.8);*/
}
.custom_showcase__3 img {
    border-radius: 0px 0px 10px 0px;
    width: 100%;
}
.custom_showcase__3 .wrapper {
    
        background: url(../i/custom_showcase3-hover_img.jpg?8036570669701542646) 0 0;
    
    border-radius: 0px 0px 10px 0px;
}
.custom_showcase__2 a:hover .wrapper,
.custom_showcase__3 a:hover .wrapper {
    opacity: 1;
}



.custom_showcase .inside {
    position: absolute;
    top: 0;
}
.custom_showcase__1 a,
.custom_showcase__2 a,
.custom_showcase__3 a{ 
    display: block; 
}
.custom_showcase__1 .inside {
    right: 5%;
    width: 47%;
    width: 281px;
    top: 9.9%;
}
.custom_showcase__5 .inside {
    left: 5%;
    width: 47%;
    width: 281px;
    top: 9.9%;
}

.custom_showcase__1 img {
    display: block;
    border-radius: 10px 0px 0px 10px;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
    width: 100%;
}

.custom_showcase__5 img {
    display: block;
    border-radius: 10px;
    -webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    
    width: 100%;
}
.custom_showcase__1 a:hover img {
    opacity: .7;
}
.custom_showcase__1 h2 {
    font-weight: 400;
    letter-spacing: 5px;
}
.custom_showcase__1 .title1 {
    display: inline-block;
    padding-bottom: 9px;
}
.custom_showcase__1 .title1 span {
    position: relative;
    padding-right: 15px;
    display: block;
    float:left;
}
.custom_showcase__1 .title1 span:after {
    content: "";
    position: absolute;
    left: 4px;
    right: 80px;
    bottom: -7px;
    border-bottom: 3px solid #536ba7;
}
.custom_showcase__1 p {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fd2599;
    margin-right: 10px;
}
.custom_showcase__1 .btn {
    margin-top: 2px;
    position: relative;
    display: inline-block;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 12px 22px 15px 32px;
    color: #ffffff;
    background: #536ba7;
    font-weight: 300;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.custom_showcase__1 .btn i {
    padding-left: 9px;
    padding-top: 3px;
    font-size: 16px;
}
.custom_showcase__1 .btn:hover {
    background: #f80100;
}
.custom_showcase__1,
.custom_showcase__2,
.custom_showcase__3 {
    float: left;
    /* width: 47%; */
        width: 390px;
}
.custom_showcase__1 {
    width: 51.25%;
}

.custom_showcase__5 {
    width: 100% !important;
}



.custom_showcase__2 a:before {
    content: '';
    display: block;
    background: #000;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1000;


}
    
.custom_showcase__2 .inside,
.custom_showcase__3 .inside {
    /*padding-left: 60px;*/
top: 125px;
    width: 440px;
    width: 100%;
}
.custom_showcase__2 .title1,
.custom_showcase__3 .title1 {
    color: #ffffff;
    width: 100%;
    background: #e1b7f4e0;
    padding: 10px 0 0 10px;
    position: relative;
}


.title1>span {
    position: relative;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 600;
    padding: 0 0 0px 0;
    color: #000000;
    text-transform: uppercase;
    font-size: 15px;
    min-height: 50px;
    /* text-shadow: 1px 1px 1px #0000005e; */
    /* background: linear-gradient(to right, rgb(244 173 243) 0%,rgb(130 214 249) 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}

.custom_showcase__2 h2 {
    color: #ffffff;
    padding-left: 37px;
    letter-spacing: 3px;
    margin-top: -1px;
}
.custom_showcase__2 h2 span {
    display: block;
    font-weight: 300;
}
.custom_showcase__3 .inside {
    top: 77px;
}   
.custom_showcase__3 .title1 {
    line-height: 54px;  
}
.custom_showcase__3 h2 {
    margin: 6px 0px 0px 4px; 
    color: #ffffff;
    letter-spacing: 5px;
}
.custom_showcase__2 a:hover *,
.custom_showcase__3 a:hover * {
    color: #fff1ef;
/*        text-shadow: none;*/

}

.custom_showcase__4 .title1 {
    padding-top: 263px;
    color: #f80100;
}
.custom_showcase__4 .title1 .color5 {
    color: #f3b812;
}
.custom_showcase__4 {
    position: relative;
    text-align: center; 
    
        background: url(../i/custom_showcase4_img.png?8036570669701542646) center 15% no-repeat;
    
}
.custom_showcase__11 {
    position: relative;
    text-align: center; 
    
        /*background: url(../i/custom_showcase111_img.jpg) center 15% no-repeat;*/
        /*padding: 20px;*/
        border:0px;
            height: 100%;
    
}

.twoblockinrow {
    display: flex;
    flex-wrap: wrap;
    margin: 50px 0;
}

.twoblockinrow div{
 width: 50%;

    display: table-cell;
    vertical-align: middle;
}


.aboutimg {
    width: 400px;
}


/* Убираем стандартные маркеры и отступы списка */
ul.whywe2 {
    list-style-type: none;
    padding: 0;
    margin: 0;
    
    /* Создаем сетку */
    display: grid;
    /* Автоматическое заполнение колонок (мин. ширина 250px) */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px; /* Расстояние между карточками */
}

/* Стили самой карточки (элемент списка) */
li.icona1 {
    background-color: #ffffff; /* Белый фон */
    border-radius: 16px;       /* Скругление углов как на фото */
    
    /* Мягкая тень */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    
    /* Легкая обводка для четкости (опционально) */
    border: 1px solid #f0f0f0;

    /* Центрирование картинки внутри карточки */
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 180px; /* Фиксированная высота карточки */
    padding: 20px; /* Внутренний отступ */
    box-sizing: border-box;
    
    /* Плавная анимация при наведении */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Эффект при наведении мыши (карточка немного всплывает) */
li.icona1:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Стили для картинки, чтобы она не вылезала и сохраняла пропорции */
li.icona1 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Картинка вписывается полностью */
    filter: grayscale(0%); /* Если нужно ч/б по умолчанию, поставьте 100% */
}


.himek:before {
    display: block;
    content: '';
    width: 13px;
    height: 13px;  
    margin-right: 5px;
    background-image: linear-gradient(to bottom, #ff0100, #ee0707, #dd0c0d, #cc1011, #bb1313);
    border-radius: 10px;
    float: left;
    margin-top: 7px;
}

.whywe2 li:before{
 display: inline-block;
    /* float: left; */
    width: 20px;    
    content: '';
    margin-right: 5px;
        height: 25px;
    display: table-cell;
    float: left;;    
}

.whywe2 li.icona1:before{
background: none !important;
}




.whywe {
    text-align: left;
/*    display: flex;*/
    margin: 20px auto;
    flex-wrap: wrap;
    justify-content: center;
    padding-left:20px;
}

.whywe li {
    padding: 5px 0 0 0px;
    font-size: 15px;
    /* margin-bottom: 10px; */
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 400;
    margin: 0 20px 10px 0;
}


.whywe li:before{
 display: inline-block;
    /* float: left; */
    width: 20px;    
    content: '';
    margin-right: 5px;
        height: 25px;
    display: table-cell;
    float: left;;    
}

.whywe li.icona1:before{
background:  url('/i/rose.png') 0 0 no-repeat;
-webkit-background-size: 20px 20px;
background-size: 20px 20px;
}

.whywe li.icona2:before{
background:  url('/i/lprice.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}

.whywe li.icona3:before{
background:  url('/i/florist.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}

.whywe li.icona4:before{
background:  url('/i/modern.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}
.whywe li.icona5:before{
background:  url('/i/intime.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}
.whywe li.icona6:before{
background:  url('/i/discount.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}

.whywe li.icona7:before{
background:  url('/i/nal.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}

.whywe li.icona8:before{
background:  url('/i/foren.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}
.whywe li.icona9:before{
background:  url('/i/fresh.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}

.whywe li.icona10:before{
background:  url('/i/call.png') 0 0 no-repeat;
-webkit-background-size: 30px 30px;
background-size: 30px 30px;
}

.title1 {
    position: relative;
}

.formrg2 {
    padding: 19px !important;
    border: 1px solid #fff !important;
    color: #fff!important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    box-shadow: none;
    /* background: #f80100; */
    margin: 0 0 5px 0;
    color: #0e2c9f;
    font-size: 20px !important;
}


.popuptitle {

    text-align: center;
    width: 100%;
    display: block;
    font-size: 20px;
    margin-top: 20px;
    line-height: 28px;

}

.title2 {
    /*background: #ffffffbf;*/
    padding: 5px;
/*    text-shadow: 1px 1px 1px #0000005e;*/
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 5px;
    font-size: 12px;
    position: relative;
    right: 10px;
    bottom: 0px;
}

 
.filterblock ul li a:hover {
    color:#fff !important;
}

.filterblock ul li:hover a{
    text-decoration: none;
    color:#fff;
}

.filterblock ul li:hover {
background: #94dcfa;
color:#fff;
}

.filterblock ul li.active  {
background: #94dcfa;
color:#fff;
}

.filterblock ul li {
    /* border-radius: 5px; */
    border-left: 3px solid #ee0000;
    padding: 6px 4px 3px 4px;
    line-height: 6px;
    margin-bottom: 6px;
    margin-right: 6px;
}
.filterblock ul{
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: start !important;
    list-style-type: none !important;
    margin: 0px !important;
}


.filterblock {
    clear: both;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.proditem {
    width: 50%;
    float: left;
} 
.proditem {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 20px;
    padding: 0 20px 0 10px;
    text-align: center;
}
.proditem:hover {
  box-shadow: 0 0 15px 3px rgba(255, 0, 0, 0.5);
  transform: translateY(-3px);
}
.title2 i{
 margin-top: 3px;
}

.title2 strong{
font-weight: 500;
}

.title1.bord {
    padding-bottom:15px;
    overflow: hidden;
}

.title1 .wrap {
    position: relative;
    padding: 0 8px;
}
.title1.bord + .text1 {
    margin-top: -16px;
    position: relative;
    font-family: Oranienbaum;
    font-style: italic;
}
.title1 .wrap:before,
.title1 .wrap:after {
    content: "";
    position: absolute;
    bottom: 27px;
    right: auto;
    left: 0px;
    margin-left: -211px;
    width: 211px;
    height: 1px;
    background: #f80100;
}
.title1 .wrap:after {
    right: 0;
    left: auto;
    margin-right: -211px;
}

.custom_showcase__4 .btn {
    margin-bottom: 35px;
    padding: 14px 36px 13px;
}
.custom_showcase__4 .btn:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -34px;
    content: "";
    width: 1px;
    height: 20px;
    background: #f80100;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.custom_showcase__4 .btn:hover:after {
    background: #f80100;
  
}

.custom_bottom {
    padding-top: 44px;
    display: block;
    
    /*background: url(../i/custom_bottom_1_img.jpg?8036570669701542646) center bottom no-repeat;*/
    
    text-align: center;
    background-color: #d39bde;
    padding-bottom: 48px;
}
.custom_bottom * {
    color: #ffffff;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.custom_bottom .text1 {
    padding-top: 7px;
    padding-bottom: 7px;
    letter-spacing: 1px;
}
.custom_bottom p {
    margin: 0px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}
.custom_bottom .title1 {
    line-height: 69px; 
}
.custom_bottom .title1 .wrap:before, 
.custom_bottom .title1 .wrap:after {
    background: #ffffff;  
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
/* .custom_bottom:hover .title1 .wrap:before, 
.custom_bottom:hover .title1 .wrap:after {
    background: #f80100;
    box-shadow: 1px 1px #ffffff;
}
.custom_bottom:hover * {
    color: #f80100;    
    text-shadow: 1px 1px #ffffff;
} */

/* 8.5 MAIN PRODUCT LISTING */
.product_listing_main {
    margin-top: 50px; 
}
/*.product .product_img a {
    display: block;
    padding: 0px;
}*/


.product .product_img {
    position: relative;
    margin: 20px 0 0 0;
    min-height: 225px; 
}



.widget_content {
    width: 100%;
} 


.widget_content .owl-item img {
    display: block;
    width: 200px !important;
}

/*Start messengers*/
.containerm {
    width: 100%;
    position: relative;
    display: flex;
    z-index: 100000000;
    align-items: center;
    justify-content: center;
    background-color: #263238;

}

.messenger {
    display: block;
    position: fixed;
    right: 0;
    bottom: 90px;
    width: 260px;
    height: 60px;
    z-index: 100;

}

.vibersm:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/i/vibersm.png) 0 0 no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    margin-right: 4px;
    filter: invert(100%) sepia(2%) saturate(7457%) hue-rotate(290deg) brightness(102%) contrast(111%);

}

.telegasm:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/i/telegs.png) 0 0 no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    margin-right: 4px;
    filter: invert(100%) sepia(2%) saturate(7457%) hue-rotate(290deg) brightness(102%) contrast(111%);


}

.wasm:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/i/wasm.png) 0 0 no-repeat;
    -webkit-background-size: 20px;
    background-size: 20px;
    margin-right: 4px;
    filter: invert(100%) sepia(2%) saturate(7457%) hue-rotate(290deg) brightness(102%) contrast(111%);


}

.messenger-btn:before {
    content: '';
    display: block;
    width: 22px;
    height: 22px; 
    background: url(/i/chat-icon.png) 0 0 no-repeat;
    -webkit-background-size: 22px;
    background-size: 22px;
    position: absolute;
    top: 0px;
/*    filter: invert(100%);*/
    right: 50%;
    transform: translate(10px, 10px);

}



.messenger-btn {
    padding: 14px;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 20px 0 0 20px;
    background: #ee00007d;
    /* background: linear-gradient(to right, rgb(244 173 243 / 67%) 0%,rgb(130 214 249) 100%); */
    /* background: -webkit-linear-gradient(top,  #0c8fd6 0%,#2989d8 50%,#286ab3 100%); */
    /* background: linear-gradient(to bottom,  #0c8fd6 0%,#2989d8 50%,#286ab3 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c8fd6', endColorstr='#286ab3',GradientType=0 );
    border: 0px solid #aa928f !important;
    color: #000;
    position: absolute;
    text-align: center;
    right: 0px;
    top: 0;
    cursor: pointer;
    z-index: 2;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 13px;
    padding: 35px 0 0 0;
    font-weight: 700;
}

.messenger-btn img {
    width: 32px;
    height: 32px;
}

.messenger-links {
    position: absolute;
    left: 0px;
    top: 30px;
    width: 245px;
    transform: scale(0);
    transform-origin: 100% 50%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 0;

}

.messenger-links.show {
    left: 10px;
    transform: scale(1);
}

.messenger-links a {
    width: 40px;
    margin-left: 4px;
}

.messenger-links img {
    max-width: 40px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.messenger-links a:hover img {
    transform: scale(1.1);
    text-decoration: none;
}


.messangers {
    display: none !important;
}






.product .product_img a img {
    width: 80%;
    border-radius: 10px;
    /*max-height: 260px;*/
    margin: 0 auto;
    display: block;
    /* width: 200px; */
}


.product .product_info {
    text-align: center;
    margin-top: 10px; 
    position: relative;
}
.product .product_img .sale {
    position: absolute;
    bottom: 42px;
    left: 50%;
    margin-left: -82px;
    display: inline-block;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 13px 62px 14px;
    font-weight: 300;
    background: #f80100;
    color: #ffffff;
    z-index: 100;
}

.product .product_links span {
    font-size: 12px;
/*    display: block;*/
}
.product .product_links_old span {
    font-size: 12px;
    display: block;
}
.product .product_name {
    min-height: 70px;
    padding: 15px 0 0 0;
}

.product .product_code {
    min-height: 20px;
    padding: 5px 0 0 0;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -40px;
}

.product .product_price {
    font-size: 20px;
    margin-top: 7px;
}
.product .product_price .compare-at-price {
    margin-left: 21px;
}

.product .product_links {
    margin-top: 12px;
}
.product .product_links form {
    display: block;
}
.product .product_links .btn  {
    margin-bottom: 9px; 
}
.product .product_links > .btn  {
    padding: 0px;
    background: none;
    color: #536ba7;
    font-size: 27px;
    line-height: 20px;
}
.product .product_links > .btn:hover {
    color: #f80100; 
}

.product_listing_related .product .product_info {
    margin-top: 25px;
}

/* 8.6 FOOTER */
footer {
    background: #7f7d7d;
    padding-top: 33px;
    position: relative;
    z-index: 1;
}



.footer_block {
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 20px;
}



.footer_block h2 {
 padding-top: 20px;
    color: #ffffff;
    letter-spacing: 2px;
    padding-bottom: 10px;
}
.footer_block h3 {
    color:  #ffffff;
}

.footer_block ul {
    margin-bottom: 10px;
}

.contentinfo { 
    font-size: 15px;
    text-transform: none;
}

.footer_block ul li {
    position: relative;
    padding-left: 16px;
    padding-bottom: 2px;
    text-align: left;
}
.footer_block ul li:before { 
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    content: "\f105";
    left: 0;
    top: 5px;
    color: #822d2d;
    font-size: 13px;
}
.footer_block ul li a {
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 1px;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.footer_block .socials li {
    padding-left: 0px;
    padding-bottom: 7px;
}

.footer_block ul li.active a,
.footer_block ul li a:hover {
    color: #ffffff;
}

.contacts_company {
    display: inline-block;
    padding-top: 3px; 
    text-transform: none;
}
.contacts_address {
    width: 83%; 
}
.contacts_phone span {
    display: block; 
    font-size: 36px;
    line-height: 36px;
    font-weight: 300;
    letter-spacing: 3.4px;
}
.contacts_email {
    margin-top: -8px; 
}
.contacts_email a {
    display: inline-block;
    margin-left: 5px;
    color: #ffffff; 
    text-decoration: underline;
}
.contacts_email a:hover {
    text-decoration: none;
}

.maintitle {
    z-index: 1;
    position: relative;
    font-size: 20px;
    color: #f80100;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    margin: 20px 0 15px 0;
}


footer .copyright {
    padding-top: 74px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 40px;
    text-align: center;
}
footer .copyright a {
    color: #ffffff;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
footer .copyright a:hover {
    color: #a3b9ef;
}



/***************************************************************************
                           9. COLLECTION PAGES
***************************************************************************/

/* 9.1 PAGES CONTENT */
ul.tags {
    margin: 10px 0 0 0;
    list-style-type: none;
}
ul.tags li {
    float: left;
    margin: 5px 5px 0 0;
}
ul.tags li a {
    display: block;
    padding: 5px 10px;
    border-radius: 10px;
    color: #ffffff;
    background: #f80100;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}

.product_h1 {
    position: absolute;
    /* top: -55px; */
    /* bottom: 240px; */
    /* left: 50%; */
    color: #ffffff !important;
    font-size: 16px;
    /* border-radius: 0 0 10px 10px; */
    width: 100%;
    /* width: 200px; */
    /* transform: translate(-50%, -50%); */
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    border-left: 5px solid #e00;
    background: #000;
    /* background: linear-gradient(to right, rgb(244 173 243 / 67%) 0%,rgb(130 214 249) 100%); */
    /* background: #46bced; */
    background: -moz-linear-gradient(left, #8a79b0 0%, #d7d3ff 44%, #cf9fc7 100%);
    /* background: -webkit-linear-gradient(left, #8a79b0 0%,#d7d3ff 44%,#cf9fc7 100%); */
    /* background: linear-gradient(to right, #8a79b0 0%,#d7d3ff 44%,#cf9fc7 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8a79b0', endColorstr='#cf9fc7',GradientType=1 );
    /* background: #e1b7f4e0; */
    padding: 10px 0 5px 0;
    text-shadow: 1px 1px 1px #00000085;
}
.pdescr img{
    margin:0px;
    border-radius: 10px;    
    width: 100%;    
}


.pdescr {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}


.twoinrow {
    display: flex;
    flex-wrap: wrap;    
    margin-top: 50px !important;
    margin-bottom: 100px !important;
}

.twoinrow img{
width: 50% !important;
}

.pdescr div {
    position: relative;
    width: 100%;
/*    margin-bottom: -30px;*/
}
.pdescr table caption{
    display: none;

}


.minimal:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url(/i/warning.png) no-repeat;
    -webkit-background-size: 30px;
    background-size: 30px;
    position: absolute;
    top: 23px;
    left: 17px;
}

.minimal {
 background: #f80100;
    border-radius: 0 20px 20px 0;
    padding: 20px 20px 20px 60px;
    margin-top: 20px;
    color: #000;
    display: none;
    position: relative;
    font-size: 12px;
}

}

.pdescr2 table {
font-family: Manrope;
font-size: 16px;
text-align: left;
border-collapse: collapse;

/*box-shadow: 0 0 0 4px #fcc7c7;*/
color: #0e2c75;
width:100% !important;
}
.pdescr2 th {
padding: 10px 8px;
background: white;
}
.pdescr2 table th:first-child {
border-top-left-radius: 20px;
}
.pdescr2 table th:last-child {
border-top-right-radius: 20px;
}
.pdescr2 table tr:last-child {
    border-bottom: 0px !important;
}
.pdescr2 tr {
    border-bottom: 1px solid #ee0000;
}

.pdescr2 td {
    padding: 6px;
    font-size: 11px;
    text-align: center;
}

.pdescr2 td span{

    font-size: 10px;
}




.pdescr2 table td:first-child {
border-bottom-left-radius: 20px;
}
.pdescr2 table td:last-child {
border-bottom-right-radius: 20px;
}




ul.tags li a:hover,
ul.tags li.active a {
    background: #f80100;
    color: #ffffff;
}

.collection_info {
    margin-top: 15px;
}
.collection_info .collection_img {
    text-align: center;
}
.collection_info .collection_desc .rte {
    margin: 0;
}



.sort_by {
    margin: 15px 0;
    padding: 10px 0;
    border: 1px solid #f80100;
    border-width: 1px 0;
    text-align: right;
}
.sort_by label {
    margin: 0 4px 0 0;
    line-height: 30px;
}
.sort_by select {
    width: auto !important;
    height: 30px;
    display: inline-block;
    padding: 5px 4px;
    cursor: pointer;
}

.partners IMG {
    border: 1px #f6deeb solid;
    border-radius: 10px;
    /* box-shadow: 0px 0px 2px 6px #f7e2ed, 0px 0px 0px 7px #fbf3f8; */
    width: 176px;
    background: #fff;
    box-shadow: 8px 6px 11px rgba(0,0,0,.2);
    padding: 10px;
    display: block;
    margin: 0 0 15px 0;
}

/* .partners IMG{
border: 1px #f6deeb solid;
    border-radius: 1px;
    box-shadow: 0px 0px 0px 6px #f7e2ed, 0px 0px 0px 7px #fbf3f8;
    width: 176px;
    padding: 10px;
    display: block;
} */

.partners span.title {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    color: #f80100;
    min-height: 70px;
}
.page-scope {
    padding: 10px 30px;
}

.contacts_company a {
    color: #fff;
}


.mcontacts i.cont1,.mcontacts i.cont2,.mcontacts i.cont3 {
   filter: invert(0);
    display: inline-block;
    height: 15px;
}


.mcontacts a{
    color: #0e2c75 !important;

}

i.cont1 {    
display: inline-block;
    width: 15px;
    height: 15px;
    background: url(/i/cont1.png) no-repeat;
    -webkit-background-size: 15px;
    background-size: 15px;
    filter: invert(1);
    margin-right: 3px;
}
i.cont2 {    
display: inline-block;
    width: 15px;
    height: 15px;
    background: url(/i/cont2.png) no-repeat;
    -webkit-background-size: 15px;
    background-size: 15px;
    filter: invert(1);
    margin-right: 3px;
}
i.cont3 {    
    display: inline-block;
    width: 15px;
    height: 20px;
    background: url(/i/cont3.png) 0px 2px no-repeat;
    -webkit-background-size: 15px;
    background-size: 15px;
    filter: invert(1);
    margin-right: 3px;
    float: left;
}

blockquote {
  background:rgba(255,255,255,.2);
/*  border-left: 3px solid rgba(236, 133, 168, 0.66);*/
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: none;
}

blockquote p {
  display: inline;
}

.testem  {
    -moz-column-gap: 1.5em;
    -webkit-column-gap: 1.5em;
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
}

.pdscrt caption {
    display: none;
}

.otziv {
    display: inline-block;
    background: #fff;
    padding: 1em;
    border-radius: 10px;
    margin: 0 0 1.5em;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 #ccc;
}

/* 9.2 BREADCRUMBS */
.breadcrumb {
    margin: 0 0 50px 0;
    -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
    border-radius: 40px;
/*    border: 1px solid #f80100;*/
    color: #ffffff;
    background: transparent;
}
.breadcrumb a {
    color: #876374;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}
.breadcrumb a:hover {
    color: #ffffff;
}


.breadcrumb span {
    color: #ee0000;
}
/* 9.3 COLLECTION LISTING */
.collection_listing .collection {
    margin: 30px 0 0 0;
}



/* 9.4 PAGINATION */


#pagination {
    display: inline-block;
    overflow: hidden;
    margin: 30px 0 0 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    }
#pagination span {
    display: block;
    float: left;
}
#pagination span ~ span {
    border-left: 1px solid #ffffff;
}

#pagination span a,
#pagination span.deco,
#pagination span.current {
    display: block;
    padding: 4px 14px;
    border-radius: 10px;
    color: #ffffff;
    background: #f80100;
    margin-right: 4px;
    
-webkit-transition: .5s ease-in-out;
       -moz-transition: .5s ease-in-out;
        -ms-transition: .5s ease-in-out;
         -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
    ;
}

#pagination span a:hover,
#pagination span.current {
    background: #f80100;
    color: #ffffff;
}
#pagination span.current {
    cursor: default;
}


.burger {
    display: none;
}


/***************************************************************************
                           10. SIDEBAR WIDGETS
***************************************************************************/

.column .widget h3.widget_header {
    margin: 0;
    padding: 5px 0 4px 0;
    font: 16px Manrope;
    background: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500 !important;
    letter-spacing: 0px;
    line-height: 1.4em;
    font-weight: 300;
    /* border: 2px solid #f80100; */
    /* border-radius: 5px; */
    border-left: 5px solid #e00;
    margin-bottom: 20px;
    text-align: center;
}


/* 10.1 LINKS LIST */
.column .widget ul.list {
    border-bottom: 1px solid #f80100;
    font-family: Manrope;
}


.skidki span strong{
    font-size: 30px;
    display: block;

}
.skidki span{
    
     position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}
.skidki {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    color:#fff;
}



.mainlist  {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}




.mainlist li span {
    position: absolute;
    top: -56px;
    /* left: 50%; */
    color: #000000 !important;
    line-height: 16px;
    background: linear-gradient(to right, rgb(0 0 0) 0%,rgb(73 6 6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    width: 100%;
    /* width: 200px; */
    /* transform: translate(-50%, -50%); */
    text-align: left;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* background: #e1b7f487; */
    padding: 10px 0 5px 0;
    /* text-shadow: 1px 1px 1px #00000085; */
}


.mainlist li {
    position: relative;
    margin: 50px 20px;
    list-style-type: none;
}


.mainlist li:hover {
    box-shadow: 10px 10px 10px #7305052e;
    border-radius: 30px;
}

.mainlist li a {
    border-left: 4px solid;
    box-shadow: 3px 1px 4px #37373752 !important;
    width: 300px !important;
    
}

.mainlist li.pos1 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml1.jpg');
    background-size: contain;
    box-shadow: 3px 1px 4px #f8010052;
    background-size: 104%;
    
}


.mainlist li.pos2 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml2.jpg');
    background-size: contain;
/*    */
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.posnull a {
    display: block;
    width: 200px;
    height: 215px;
    
    
    box-shadow: 3px 1px 4px #f8010052;
    background-size: 150%; 
}


.mainlist li.pos3 a {
display: block;
    width: 200px;
    height: 200px;
    background: url(/i/ml3.jpg) 0px -38px;
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    background-size: 150%;    
}


.mainlist li.pos4 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml4.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}


.mainlist li.pos5 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url(/i/ml5.jpg); 
    background-size: 102%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
    background-position: 0px -4px;
    
}


.mainlist li.pos6 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml6.jpg');
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}


.mainlist li.pos7 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url(/i/ml7.jpg);
    background-size: contain;
    box-shadow: 3px 1px 4px #f8010052;
    background-size: 104%;
    /* background-position: -215px 1px; */
}


.mainlist li.pos8 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url(/i/ml8.jpg);
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    background-size: 104%;
/*    background-position: -222px 0px;*/
}


.mainlist li.pos28 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url(/i/ml444.jpg);
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    background-size: 107%;
/*    background-position: -231px -3px;*/
}


.mainlist li.pos9 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml9.jpg');
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    background-size: 150%;
    
}


.mainlist li.pos10 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml10.jpg');
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}


.mainlist li.pos11 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml11.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}


.mainlist li.pos12 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ml12.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos13 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/aroma_main.jpg');
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}
.mainlist li.pos14 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/instr.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
     
}
.mainlist li.pos15 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/dobr.jpg');
    background-size: 115% ;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}
.mainlist li.pos16 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/drit.jpg');
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos17 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/pl1.jpg');
    background-size: 111%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos18 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/pl2.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos19 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/pl22.jpg');
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos20 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/sco.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos25 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/ffb2.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}
.mainlist li.pos26 a {
    display: block;
    width: 200px;
    height: 200px; 
    background: url('/i/ndec.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}


.mainlist li.pos21 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/sertif.jpg');
    background-size: contain;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}
.mainlist li.pos22 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/pos22.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}
.mainlist li.pos23 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/pos23.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos44 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/pos44.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}

.mainlist li.pos45 a {
    display: block;
    width: 200px;
    height: 200px;
    background: url('/i/pos45.jpg');
    background-size: 110%;
    
    box-shadow: 3px 1px 4px #f8010052;
    
}


/*.owl-carousel div {
    width: 30%;
}
*/

.skidkalev1:hover,.skidkalev2:hover,.skidkalev3:hover,.skidkalev4:hover,.skidkalev5:hover {
border: 3px solid #fff;
}

.skidkalev1 {
    cursor: pointer;
    
    width: 150px;
    height: 150px;
    background: #ee0000;
    font-size: 16px;
    position: relative;
    text-align: center;
}.skidkalev2 {
    cursor: pointer;
    
    width: 150px;
    height: 150px;
    background: #ee0000;
    font-size: 16px;
    position: relative;
    text-align: center;
}.skidkalev3 {
    cursor: pointer;
    
    width: 150px;
    height: 150px;
    background: #ee0000;
    font-size: 16px;
    position: relative;
    text-align: center;
}

.skidkalev4 {
    cursor: pointer;
    
    width: 150px;
    height: 150px;
    background: #ee0000;
    font-size: 16px;
    position: relative;
    text-align: center;
}
.skidkalev5 {
    cursor: pointer;
    
    width: 150px;
    height: 150px;
    background: #ee0000;
    font-size: 16px;
    position: relative;
    text-align: center;
}


.column .widget ul.nobd>li {
    /* background: url(/i/dots.png) no-repeat; */
    -webkit-background-size: 20px 18px;
    background-size: 20px 18px;
    padding: 0 0 0px 8px !important;
    border-left: 3px solid #ee0000;
    margin-bottom: 15px;
}

/*
.column .widget ul.nobd>li:first-child {
    background: url(/i/im1.png) no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;
    padding: 0 0 0 40px !important;
}


.column .widget ul.nobd>li:nth-child(2) {
    background: url(/i/im2.png) no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;
    padding: 0 0 0 40px !important;
}

.column .widget ul.list>li:nth-child(3) {
    background: url(/i/im4.png) no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;
    padding: 0 0 0 40px !important;
}

.column .widget ul.list>li:nth-child(5) {
    background: url(/i/im5.png) no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;
    padding: 0 0 0 40px !important;
}

.column .widget ul.list>li:nth-child(6) {
    background: url(/i/im6.png) no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;
    padding: 0 0 0 40px !important;
}

.column .widget ul.list>li:nth-child(4) {
    background: url(/i/im3.png) no-repeat;
    -webkit-background-size: 30px 30px;
    background-size: 30px 30px;
    padding: 0 0 0 40px !important;
    display: block;
    height: 60px;
}
*/

.widget ul.submenu {
    margin:15px 0 0 20px;
    

}

li.current a {
    font-weight: 700;

    }

.submenu li {
        border-top: none !important;
}

.nobd li {
     border-top: none !important;
     padding: 3px 0 0 5px !important;
}


.nobd i{
display: none;
}

.nobd ul.submenu i{
color:#f2aac4;
/*display: inline-block;*/
display: none;
}

.nobd {
        border-bottom: none !important;
}

ul.submenu li a {
    font-size: 12px !important;
    line-height: 14px;
    padding: 0 0 0 5px;
    color: #000000 !important;
}

.column .widget ul.list li {
    padding: 20px 0;
}
.column .widget ul.list li + li {
    border-top: 1px solid #f80100;
}


.column .widget ul.list li a {
color: #000000; 
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
}


.column .widget ul.list li.current a {
    font-weight: 900;
    background: #eee;
    padding: 5px;
}

.column .widget ul.list li a:hover {
color: #a86bb3;
     font-size: 15px;
    font-weight: 500;
    color: #000;
}


.column .widget ul.list li.active a,
.column .widget ul.list li a:hover {
    color: #f80100;
} 

 
/* 10.2 SIDEBAR PRODUCT LISTING */
.product_listing_sidebar .product {
    margin-top: 20px;
}
.product_listing_sidebar .product_name {
    min-height: 0px;
}
.product_listing_sidebar .product_links form {
    display: block;
}


/***************************************************************************
                           11. SEARCH RESULTS PAGE
***************************************************************************/

#searchresults {
    margin: 0;
}
#searchresults .search-form {
    margin: 25px 0 0 0;
    position: relative;
}
#searchresults .search-form input {
    width: 100%;
    float: left;
    padding: 0 34px 0 10px;
    color: #ffffff;
    background: #f80100;
    border-radius: 40px;
    box-shadow: 1px 1px 1px 1px rgba(126, 148, 204, 0.75), 1px 1px 1px 1px rgba(75, 97, 152, 0.75) inset;
    box-sizing: border-box;
    position: relative;
    height: 40px;
}
#searchresults .search-form button {
    position: absolute;
    width: 34px;
    height: 41px;
    margin: 0 0 0 -34px;
    right: 5px;
    top: 0px;
    background: none;
    border: none;
    font-size: 13px;
    color: #ffffff;
}
#searchresults .search-form input:focus {
    border: none !important; 
}
#searchresults .search-form button:hover {
    color: #f3b812;
}
#searchresults .search-form button i {
    line-height: 32px;
}

#searchresults h3 {
    margin: 0;
    padding: 0;
} 

#searchresults ol {
    list-style-type: none;
    padding: 25px 0 0 0;
    border-bottom: 1px solid #f80100;
}
#searchresults ol li {
    overflow: hidden;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #f80100;
}
#searchresults ol li .search-result_image {
    float: left;
    margin-right: 15px;
}
#searchresults ol li .search-result_container {
    padding: 15px 0 0 0;
}



/***************************************************************************
                           12. PRODUCT PAGE
***************************************************************************/


/* 12.1 PRODUCT IMAGES */
.product_img_big {
    max-height: 430px;
    overflow: hidden;
/*  border: 1px solid #f80100; */
}



.product_img_thumbs {
    max-height: 137px;
    padding: 12px 0 0 0;
}
.product_img_thumbs__list a {
    width: 107px !important;
    display: block;
}
.product_img_thumbs__list a img {
    width: 100%;
}



ul.product_img_big__list {
    margin: 0 !important;
}

.bx-wrapper {
    max-width: 345px !important;
}
.bx-pager {
    display: none !important;
}

.bx-wrapper .bx-controls-direction a {
    width: 30px;
    height: 0;
    display: block;
    overflow: hidden;
    margin: -15px 0 0 0;
    padding: 30px 0 0 0;
    position: absolute;
    top: 50%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABZlJREFUeNrsWu9LW1cYvt6oGbpGh424pdGudtCCcbpqv2wZ+9E5EDbNhsvwg/phdIpuf4Df3R+wgX7YKIID/aCt4NyEisKCQsGyCNMEDaHTJLRLuq5xpGaQufcN75EYjDnn3Jt82O4DD3i9OffNc8657znnfVKi8KEa+ArwIvAC0Aq00L04MAoMAR8Ad4F/KvoA47QCm4CXgXZgDd17DNwHBoC/An+h73EmSvLcfwl4DdhCQnmAwr3A+8CIpNBLwBvAt6mjeYAdvQpcBgZFBeP/ncR6yS+9B/QQjzjbYNyPgC7gFcm4fuAd4O3T4ppOaYBT9QNgN7BKw3TEts1AM416Ms/ncareBA4Dz2uIe54GqoJG/dlZgpnYdxT90Ah8DvjbGaJR7OdAt45xsbMrgduZok1Z00lvsQwN9Hxfjml8U2exDFfp+fdOE/wmTeNCAUf6KY10Jj6maVwoNFNGT3e2mpGNnUrh4aRYmdnYVYS4Lop1LPiabDa22WxmgY/XUyyGG7LZ2Gq1mgQ+foVipQVX0zorjImJiZadnZ1PBwYGbALNWiimldZZYYyNjdUFAgFHd3e3RaAZxrLiC90O/ExG7ODg4HX8OxgMxhobG28LNP8O+ALwKxmxo6Oj6Q7e2tpKNDU1+QSaj5bSdlFabDQajbvd7mXBR1ykbaK02FAolOzp6QkKPqJJFdgyniq2s7Pzx42Njbhg4Au0N5YW29HRsevz+ZKCcS+r9C4VUyw7FNiLLBZhVzNOPXmzcV9f36vsemVlJSgplu3oaniz8cjISB27XlhYeCIpNr2jw9TemWNPfQIHBwepSCQSg95tKCsrK4VkUQdILS4uPpQI/A/wRZ64iUTiyO/3J2A2VZvNZrW9vf358vLyI+jwvyTipjDgG7TRzguv13uQKbqtrc0mKRrPy+eI+Y8/fn8yU7TT6bRIiv7dRFsv7tOJTqLx6IgrBPf6rZNon0pHNyFMTk6Gh4eHl2G6pd8lh8MhepwLUaVCCPPz8/H+/v5gPB5P4XVra2uF4CMCJjpCvSYaHEd6c3MzbDKZktDrHsHmK5gWgO8Kn+5hpNfW1uKHh4ep3t7ePcHm0yW0zftCdD3WABzdb4BlwK8FSjhagcWAL1VKIF6lePBSzCjVoIoFjBVlp6X7lEgKjT2KxbBMNahCw0+xjo+HESq2FRoe5WQlM0gFt0LjDsU6sfDvUcGtsUBB7wKXcvR+BS2PhcD3uLDkKuKFqODWoHPQn4E/nVHE26XV4qrOcfHIegs3bLkEJ6nmVKLjSN8lsWftu7GquE1xm3Uc2VtUz1JyCWaifVRwwyWrSkOC+oGmMc9mH0Xfoy9oVeRr0/iKfEvTOJF907BacuA/Y6apyv8MxpTO+L/hHgrCcA8Vwz08jmu4hzqPtOEeCrmHgo5hJjS5h4KOYSbk3UN0CtExRBdCMriUe4hOITqG6EJIxk27h9hjDuBbvK3m5ubeq62ttWioSVvoPX4Z+Alvo9nZ2Ut2u92soSaNK8E2Cn6dzW8erK+vh10uV31lZaVZg+g/aAfl4C5Ira4edHV1VVksllINoh+h4PdFFvpIJJKE4HsaRf9NgrkL8bFYLLW0tPRUo+hnKPhDhdNq0VF0CQk+JxJXB9Eqt3uYDXQO0UFk1+gsCmRvbvcwG+gcooPIrtFZFMjeNdLHQ8zSbrc7nanRckHrJRwOy9qY3MAsPTQ0lM7UaLmg9RKNRlO87dU8taacYpkxzsSi3yTwiHh2rYlXLDPGmVj0mwQe8VjlqRLoLFahmPtFFovYF3YPmVOoQSwrEgi5h8wp1CAWEZD62dLMzMz1qampIGTlmOSrKPWzpfHxcdv09PQTj8eTkIw7ariHRYDhHhYhruEest433EOdYLiH2acYxXAPDfeQZ5013MNs/CvAAN+q3yxd1e4sAAAAAElFTkSuQmCC) !important;
    background-position: 0 0;
    background-repeat: no-repeat;
    }
.bx-wrapper .bx-controls-direction a.disabled {
    display: none !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev {
    left: 10px;
    background-position: 0 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-prev:hover {
    background-position: -30px 0 !important;
}
.bx-wrapper .bx-controls-direction a.bx-next {
    right: 10px;
    background-position: 0 -30px !important;
}
.bx-wrapper .bx-controls-direction a.bx-next:hover {
    background-position: -30px -30px !important;
}



/* 12.2 PRODUCT INFO */
.product_wrap .product_name {
    margin: -2px 0 0 0;
    font-size: 20px;
}


.disabled {
    pointer-events: none;
    filter: opacity(.5);
}


.product_wrap .product-price {
    margin: 15px 0 0 0;
    padding: 0;
}
.product_wrap .product-price .money {
    margin: 0 5px 0 0;
    font-size: 26px;
}
#purchase label {
    display: inline-block;
    margin: 15px 10px 0 0;
    padding: 0 !important;
    line-height: 37px;
}
#purchase #quantity {
    width: 50px;
    height: 37px;
    display: inline-block;
    margin: 15px 10px 0 0;
    padding: 9px 0px 8px;
    outline: none;
    text-align: center;
}

#purchase .variants-wrapper {
    display: inline-block;
    margin: 15px 10px 0 0;
}
#purchase .variants-wrapper select {
    width: auto;
    height: 37px;
    max-width: 150px;
    padding: 9px 6px;
}

#purchase #add-to-cart {
    width: auto;
    height: 37px;
    line-height: 35px;
    margin: 15px 10px 0 0;
    padding: 12px 29px 11px;

}
#purchase #add-to-cart i {
    vertical-align: middle;
    margin: 0 5px 0 0;
    font-size: 15px;
    line-height: 1.5em;
    position: relative;
    top: -2px;
}


    
.product_wrap .product_details {
    margin: 15px 0 0 0;
    padding: 10px 0 15px 0;
    border: 1px solid #f80100;
    border-width: 1px 0;
}
.product_wrap .product_details > div {
    padding: 5px 0 0 0;
}
.product_wrap #product_description h4 {
    padding-bottom: 0;
    border: none;
    text-transform: none;
}



.product_image-additioanl a {
    width: 33%;
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    }



/* 12.3 PRODUCT PAGINATION */
.product_wrap .pagination__product {
    width: 100%;
    margin: 15px 0;
}
.product_wrap .pagination__product ul {
    list-style-type: none;
    margin: 0 !important;
    padding: 15px !important;
}
.product_wrap .pagination__product ul li.left-arrow {
    float: left;
}
.product_wrap .pagination__product ul li.right-arrow {
    float: right;
}



/* 12.4 RELATED PRODUCTS */
.widget_related_products h3 {
    margin: 50px 0 0 0;
    padding: 0 0 4px 0;
    font: 20px Roboto Condensed;
    color: #536ba7;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 4px;
    line-height: 1.4em;
    font-weight: 300;
}
.product_listing_related {
    margin-top: 25px; 
}
ul.product_listing_related {
    list-style-type: none;
}

.cartinput {
        width: 50px;
    border: 1px solid #f2adc4 !important;
    border-radius: 3px;
    padding: 3px;
}

.minus,.plus {
    background: #F28D8D;
    padding: 3px;
    color:#fff;
    width: 15px;
    height: 15px;
}

table.tbl td {
    padding: 10px;
    border: 1px solid #eee;
}

table.tbl th {
background: ##eea0bb;
  padding: 10px; 
  color: #78bbd8;
    }


.active1,.active2,.active3,.active4 {
    border-left: 1px solid #ee0000;
} 


.pdescrt table td:first-child {
    border-bottom-left-radius: 20px;
    font-weight: 700;
    color: #000;
}

.gradient {
        background: linear-gradient(to right, rgb(244 173 243 / 67%) 0%,rgb(130 214 249) 100%) !important;
}

    .itogo2 b{
        color:#e2b6f4;
    }
    .itogo2 {
        color:#82c0db;
    }

.tbl tr:nth-child(odd) {
   background-color: #fffbff;
}

/***************************************************************************
                           13. BLOG
***************************************************************************/

/* 13.1 POSTS LISTING */
#blog {
}

.blog-article {
    padding: 15px 20px;
}

.blog-article .rte img {
margin-top: 0 !important;
}

.article_header {
    padding: 15px 0;
    border-bottom: 1px solid #f80100;
}
.article_header .product_name {
    font-size: 20px;
}
.blog-article_meta-comments {
    float: right;
    padding: 7px 0 0 15px;
}

#mobile_menu {
    width: 100%;
    font-size: 16px;
}


.blog-article_date,
.blog-article_meta-tags {
    font-style: italic;
}

.blog-article_meta-tags a {
    text-decoration: underline;
}



/* 13.2 SINGLE POST */
.article_meta-comments {
    float: right;
    padding: 7px 0 0 15px;
}
.article_meta-tags a {
    text-decoration: underline;
}

.article_date,
.article_meta-tags,
.article_meta {
    font-style: italic;
}



#comments ul {
    list-style-type: none;
}

.comment-form #comment-author,
.comment-form #comment-email,
.comment-form #comment-body {
    width: 100%;
}

.comment-form #comment-body {
    min-height: 100px;
    margin-bottom: 15px;
}

.article_comments-form {
    padding-bottom: 10px;
    margin-top: 1em;
    padding-top: 10px;
}

.section-title {
    margin-bottom: 2px;
    padding-bottom: 8px;
}

.comment-form .row {
    margin-bottom: 1em;
}


/***************************************************************************
                           14. CUSTOMER PAGES
***************************************************************************/

/* 14.1 LOG IN */

/* 14.2 ACCOUNT */
.customer_account h2.page_heading {
    margin-bottom: 20px;
}

.customer_name {
    text-transform: none !important;
}
.customer_name .divider {
    margin: 0 7px;
}
.customer_name .email {
    color: #7b88a8;
}
.customer_name a {
    float: right;
}



/* 14.3 ADDRESSES */

.customer_addresses ul.customer_addresses_actions {
    list-style-type: none;
    margin: 15px 0;
}
.customer_addresses ul.customer_addresses_actions li a i {
    margin: 0 5px 0 0;
    line-height: inherit;
}

.customer_addresses .col-sm-offset-4 label {
    line-height: 1.6em;
}


.address_table .address_title {
    vertical-align: baseline;
}
.address_table .address_title .address_actions {
    vertical-align: baseline;
    float: right;
    margin: 0 0 0 15px;
    text-transform: none;
}
.address_table .address_title .address_actions span {
    vertical-align: baseline;
}


ul.address {
    list-style-type: none;
}



/* 14.4 ORDERS */
.order_date {
    margin: 15px 0 0 0;
}

#order_details {
    margin: 30px 0 0 0;
}



/***************************************************************************
                           15. CART PAGE
***************************************************************************/

/* 15.1 CART PRODUCTS */
.cart-list {
    overflow: hidden;
}

.cart-list > .row {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f80100;
}

.cart-list .item_image {
    text-align: center;
}
.cart-list .item_image a img {
    max-width: 100%;
}

.cart-list .product_name {
    margin-top: 15px;
}

.cart-list .item_remove {
    margin: 0 0 0 10px;
}
.cart-list .item_remove a {
    font-size: 20px;
    color: #fe2a2a;
}
.cart-list .item_remove a:hover {
    color: #f80100;
}

.cart-list .row h3.item_vendor {
    border-bottom: 1px solid #f80100;
    color: #888;
}

.cart-list .item_price {
    padding: 10px 0 0 0;
}
.cart-list .item_price .price {
    line-height: 37px;
}

.cart-list .item_price label {
    padding: 0;
    line-height: 37px;
}
.cart-list .item_price .input-small {
    width: 60px !important;
    height: 37px;
    display: inline-block;
    padding: 9px 5px 8px;
    text-align: center;
}

.cart-list .item_price .total {
    text-align: right;
}
.cart-list .item_price .total h3 {
    vertical-align: baseline;
    border: none;
}
.cart_subtotal h3 {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f80100;
}
.cart_subtotal h3 .money {
    float: right;
    font-size: inherit;
}

.cart_buttons {
    margin: 30px 0;
}
.cart_buttons span,
.cart_buttons a {
    vertical-align: middle;
}

.cart_instructions textarea {
    width: 100%;
}

#payment-methods {
    overflow: hidden;
}
#payment-methods ul {
    list-style-type:none;
    list-style-position: outside;
}
#payment-methods ul li {
    float:left;
    padding: 15px 15px 0 0;
}



/* 15.2 GUEST CHECKOUT */
#guest {
    padding: 30px 0 0 0;
}
#guest form {
    padding: 15px 0 0 0;
}



/***************************************************************************
                           16. CONTACTS PAGE
***************************************************************************/


.contact-scope iframe {
    width: 100%;
    margin: 15px 0;
    border: 1px solid #f80100;
}


.contact-form textarea {
    width: 100%;
}


.pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 1200px; /* можно убрать, если не нужно ограничение */
  margin: 0 auto;
}

.pyramid .row {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.pyramid img {
  width: 50%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pyramid .row img {
  flex: 1;
}

.pyramid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .pyramid .row {
    flex-wrap: wrap;
  }
}


.video-section {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  max-width: 900px;
  margin: 40px auto;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.video-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  border-bottom: 3px solid #e30613; /* фирменный красный */
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 25px !important;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(227, 6, 19, 0.3); /* мягкое красное свечение */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.video-wrapper iframe:hover {
  transform: scale(1.02);
}


.red-btn {
  display: inline-block;
  background-color: #e30613; /* фирменный красный XiMeK */
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(227, 6, 19, 0.25);
}

.red-btn:hover {
  background-color: #c50510;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(227, 6, 19, 0.35);
}

.red-btn:active {
  background-color: #a1040e;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


   .product_image-top {
  text-align: center; 
  margin-bottom: 25px;
}

.bx-next {
    display: none !important;
}

/* === Таблицы внутри описания товара === */
.pdscrt table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.pdscrt table th,
.pdscrt table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  line-height: 1.5;
}

.pdscrt table th {
    background: linear-gradient(135deg, #ee0000 0%, #f78282 100%);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
} 

.pdscrt table tr:nth-child(even) td {
  background: #fafafa;
}

.pdscrt table tr:hover td {
  background: #f3f6ff;
  transition: background 0.3s ease;
}

/* Адаптивность таблиц на мобильных */
@media (max-width: 768px) {
  .pdscrt table,
  .pdscrt table thead,
  .pdscrt table tbody,
  .pdscrt table th,
  .pdscrt table td,
  .pdscrt table tr {
    display: block;
  }

  .pdscrt table thead {
    display: none;
  }

  .pdscrt table tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
  }

  .pdscrt table td {
    border: none;


.product_img_big__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product_img_big__list li {
  display: inline-block;
  margin: 0 5px;
}

.product_img_big__list img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.product_img_thumbs {
  margin-top: 10px;
  text-align: center;
}

.product_img_thumbs__list a {
  display: inline-block;
  margin: 0 3px;
}

.product_img_thumbs__list img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.product_img_thumbs__list img:hover {
  border-color: #007bff;
}

.product_description-area {
  text-align: left;
}

.product_name h1 {
  margin-top: 15px;
  font-size: 28px;
  font-weight: 600;
}

