html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    color: #4c4c4c;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    background-color: #fff;
}

* {
    outline: none;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a {
    text-decoration: none;
    color: #4c4c4c;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

p {
    margin-top: 0;
}

.sec {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
}

.container {
    display: inline-block;
    width: 1130px;
    text-align: left;
}

.row {
    display: inline-block;
    float: left;
    width: 100%;
}

.row_fantom {
    display: none;
}

.fright {
    float: right;
}

.fleft {
    float: left;
}

img.fleft {
    margin-right: 20px;
    margin-bottom: 20px;
}

.relative {
    position: relative;
}

.mtop40 {
    margin-top: 40px;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mright0 {
    margin-right: 0 !important;
}

.upcase {
    text-transform: uppercase;
}

.inner_title,
.page_title {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 50px 0;
    background: url(img/dashed.png) repeat-x 0 63%;
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
}

.page_title {
    margin: 10px 0 50px 0;
    text-align: left;
}

.inner_title span,
.page_title span {
    display: inline-block;
    padding: 0 75px;
    background-color: #fff;
}

.page_title span {
    padding: 0;
    padding-right: 35px;
}

input[type="text"],
input[type="email"],
input[type="password"]   {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
}

.input_text {
    display: inline-block;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    font-size: 16px;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

.input_text:focus {
    border-color: #786f80;
}

.radio_lbl {
    display: inline-block;
    color: #94949e;
    cursor: pointer;
}

.radio_lbl::after {
    display: inline-block;
    content: "\f1db";
    margin-left: 5px;
    font-family: 'FontAwesome';
    color: #cdcdcd;
    vertical-align: top;
}

.radio {
    display: none;
}

.radio:checked + .radio_lbl::after {
    content: "\f05d";
    color: #555
}

.ch_box_lbl {
    display: inline-block;
    cursor: pointer;
}

.ch_box {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

select::-ms-expand {
    display: none; /* for IE*/
}

.select_field {
    padding-right: 20px;
    background: #fff url(img/arrow_select.png) no-repeat right center;
}

.sqr {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(img/ch_box.png) no-repeat center left;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

.ch_box:checked + .sqr {
    background: url(img/ch_box_checked.png) no-repeat center left;
}

.sqr + label {
    display: inline-block;
    cursor: pointer;
}

.sqr_radio {
    background: url(img/i_radio.png) no-repeat center left;
}

.ch_box:checked + .sqr_radio {
    background: url(img/i_radio_checked.png) no-repeat center left;
}

.align_right {
    text-align: right;
}
.tbold {
    font-weight: 700;
}

.text_grey {
    color: #9d9d9d;
}

.text_red {
    display: inline-block;
    color: #f53a3a;
}

.bg_white {
    background-color: #fff;
}

.bg_yellow {
    background-color: #f5d237;
}

.bg_green {
    background-color: #9ac555;
}

.bg_blue {
    background-color: #6e92ac;
}

.bg_red {
    background-color: #f12249;
}

.bg_turquoise {
    background-color: #9abab4;
}

.error {
    border-color: #ff0000;
}

.err_message {
    display: inline-block;
    float: left;
    margin-top: 10px;
    color: #ff0000;
}

/* HEADER */
.header_sec {
    /*margin-top: 45px;*/
}

.header_sec.sticky {
    position: fixed;
    top: 0;
    left: 0;
    /*height: 70px;
    padding-top: 10px;
    border: 1px solid #dedede;*/
    background-color: #efefef;
    box-shadow:  0px 0px 11px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.header_sec.sticky .container {
    height: 100%;
}

.header_sec .container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
}

.logo {
    display: inline-block;
    float: left;
    margin-top: 20px;
}

.header_sec.sticky .logo {
    width: 15%;
    margin-top: 0;
}

.topbar_box {
    display: inline-block;
    float: left;
    width: 100%;
    min-height: 55px;
    padding: 15px 0 0;
    background-color: #efefef;
    border-bottom: 1px solid #dedede;
    z-index: 1001;
}

.topbar {
    display: inline-block;
    float: left;
    width: 100%;
    text-align: center;
}

.topbar .fantom {
    display: none;
}

.topbar.mobile {
    display: none;
}

.topbar .item {
    position: relative;
    display: inline-block;
    /*padding: 0 30px;*/
    font-size: 16px;
    text-align: center;
}

.topbar .item.center {
    max-width: 55%;
}

.topbar .social_link {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 5px;
    vertical-align: middle;
}

.topbar .social_link img {
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.topbar .social_link:hover img {
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

/*.topbar .item::before {
        display: inline-block;
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 1px;
        height: 40px;
        background-color: #cbcbcb;
}*/

.topbar .item:last-child {
    padding-right: 0;
}

.topbar_lang {
    display: inline-block;
    padding-left: 25px;
    color: #a4a4a4;
    vertical-align: top;
}

.topbar_lang.current {
    background: url(img/arrow_double.png) no-repeat 0 50%;
    color: #4c4c4c;
}

.topbar_lang:hover {
    color: #4c4c4c;
}

.topbar span {
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
}

.topbar_phone,
.topbar_mail {
    display: inline-block;
    vertical-align: top;
}

.topbar_mail:hover {
    text-decoration: underline;
}

.topbar_phone {
    font-family: 'Crimson Text', serif;
    font-size: 25px;
    font-weight: 400;

}

.header_search {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-top: 57px;
    text-align: right;
    clear: right;
}

.header_sec.sticky .header_search {
    margin-top: 0;
}

.header_sec .header_search form {
    position: relative;
    width: 50%;
    margin: 0 auto;
}

.header_search .input_text {
    width: 100%;
    padding-right: 40px;
}

.btn_search {
    position: absolute;
    display: inline-block;
    top: 5px;
    right: 2px;
    width: 40px;
    height: 30px;
    background: #fff url(img/i_search.png) no-repeat center center;
    border: none;
    vertical-align: middle;
}

.mini_cart {
    position: relative;
    display: inline-block;
    float: right;
    width: 100px;
    height: 40px;
    margin-left: 20px;
    padding-left: 50px;
    background: url(img/mini_cart.png) no-repeat 0 100%;
    font-size: 16px;
    text-align: left;
}

.mini_cart div {
    display: inline-block;
    margin-top: 22px;
}

.mini_cart:hover {
    background: url(img/mini_cart_orange.png) no-repeat 0 100%;
    color: #f95707;
}

/*.btn_open_search {
    display: none;
    float: right;
    margin-top: 10px;
    font-size: 26px;
    color: #786f80;
    cursor: pointer;
}

.btn_open_search:hover {
    color: #f95707;
}*/


/* TOPMENU */
.topmenu_sec {
    margin-top: 30px;
    margin-bottom: 30px;
}

.topmenu {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.topmenu > li {
    position: relative;
    display: inline-block;
    float: left;
}

.topmenu > li::after {
    position: absolute;
    display: inline-block;
    content: '';
    top: 50%;
    right: 0;
    width: 1px;
    height: 12px;
    margin-top: -6px;
    background: url(img/grey_line.png) no-repeat center center;
}

.topmenu > li:last-child::after {
    display: none;
}

.topmenu > li a {
    position: relative;
    display: inline-block;
    float: left;
    height: 35px;
    line-height: 35px;
    padding: 0 25px;
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}

.topmenu > li > a.has_submenu {
    padding-right: 78px;
    background: url(img/arrow_down.png) no-repeat 77% 50%;
}

.topmenu > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #786f80;
    z-index: -1;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.topmenu > li:hover > a::after,
.topmenu > li.current > a::after  {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    box-shadow: 0px 0px 10px #fff;
}

.topmenu > li:hover > a,
.topmenu > li.current > a  {
    color: #fff;
}


.submenu_lvl_2 {
    position: absolute;
    display: inline-block;
    list-style: none;
    top: 200%;
    left: 0;
    width: 300px;
    margin: 0;
    padding: 0;
    text-align: left;
    background-color: #786f80;
    border-top: 5px solid #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    z-index: 1000;
}

.submenu_lvl_2 > li {
    display: inline-block;
    float: left;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.submenu_lvl_2 > li:last-child {
    border-bottom: none;
}

.submenu_lvl_2 > li a {
    width: 100%;
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    text-align: left;
    text-transform: none;
    color: #fff;
}

.submenu_lvl_2 > li a:hover {
    background-color: #90859a;
}

.topmenu > li:hover .submenu_lvl_2 {
    top: 100%;
    opacity: 1;
    visibility: visible;
}



/* BANNER */
.banner_sec .container {
    background-color: #e0ddd5;
}

.banner_sec .mobile_banner_box {
    display: none;
    background-color: transparent;
}

.banner_left_part {
    position: relative;
    display: inline-block;
    float: left;
    width: 780px;
    height: 390px;
    line-height: 390px;
    border-right: 25px solid #fff;
}

.banner_right_part {
    position: relative;
    display: inline-block;
    float: left;
    width: 350px;
    height: 390px;
    padding: 35px 45px;
}

.banner_left_part img,
.banner_right_part img {
    vertical-align: middle
}
/* MOBILE BANNER */
.mobile_banner_box .banner_left_part {
    height: auto;
    line-height: normal;
    padding-bottom: 33%;
}

.mobile_banner_box .banner_right_part {
    height: auto;
    padding: 0;
    padding-bottom: 33%;
    text-align: center;
}

.mobile_banner_box .banner_mobile_only {
    display: none;
    float: left;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.mobile_banner_box .banner_left_part img,
.mobile_banner_box .banner_right_part img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


.banner_right_part .title {
    display: inline-block;
    float: left;
    width: 100%;
    font-family: 'Crimson Text', serif;
}

.banner_right_part .title.medium {
    font-size: 44px;
}

.banner_right_part .title.big {
    font-size: 126px;
    line-height: 126px;
}

.banner_right_part .title.small {
    font-size: 16px;
}

.banner_right_part .info {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 40px;
}

/* PRODUCT LIST */
.index_prod_list,
.prod_list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.index_prod_list .prod_item,
.prod_list .prod_item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    width: 22%;
    margin-right: 45px;
    margin-bottom: 50px;
    padding-bottom: 55px;
    text-align: center;
}

/*.label_sale {
    position: absolute;
    display: inline-block;
    top: -20px;
    right: -20px;
    width: 74px;
    height: 74px;
    line-height: 74px;
    background: url(img/promo_icon.svg) no-repeat top left;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    z-index: 50;
}*/

.label_sale {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    padding: 5px 5px 3px 5px;
    background-color: #f53a3a;
    font-size: 16px;
    color: #fff;
    text-align: center;
    z-index: 50;
}

.prod_list .prod_item {
    width: 30%;
    float: none;
    margin-right: 40px;
    vertical-align: top;
}

.index_prod_list .prod_item:nth-child(4n+4),
.prod_list .prod_item:nth-child(3n+3) {
    margin-right: 0;
}


.prod_img {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 320px;
    line-height: 320px;
    margin-bottom: 10px;
    text-align: center;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.prod_img img {
    vertical-align: middle;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.prodlist_big_pics .prod_img {
    padding-bottom: 135%;
    height: auto;
    line-height: normal;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

/*.prod_img:hover img {
        /*transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        box-shadow: 0 0 10px rgba(0, 0, 0, .5)
        -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
}*/

.prod_img:hover {
    /*transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5)*/
    /*-webkit-transform: rotate(-5deg);
-moz-transform: rotate(-5deg);
-o-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);*/
}

.prod_title {
    display: inline-block;
    float: left;
    width: 100%;
    height: 60px;
    margin-top: 20px;
    font-size: 26px;
    line-height: 30px;
    overflow: hidden;
}

.prod_title:hover {
    color: #f95707;
}

.prod_desc {
    display: none;
    float: left;
    width: 100%;
    height: 25px;
    margin-top: 10px;
    overflow: hidden;
}

.prod_price_box {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

.prod_price_box .price {
    display: inline-block;
    vertical-align: top;
}

.prod_price_box .old_price {
    display: inline-block;
    margin-right: 10px;
    color: #9d9d9d;
    text-decoration: line-through;
    vertical-align: top;
}

.prod_price_box .price .value{
    display: inline-block;
    color: #f95707;
    font-weight: 700;
}

.prod_price_box .old_price .value {
    font-weight: 700;
}

.prod_item .btn_add_cart {
    position: absolute;
    display: inline-block;
    bottom: 0;
    padding: 10px 20px 6px 20px;
    margin-top: 10px;
    background-color: transparent;
    border: 3px solid #786f80;
    color: #786f80;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

/*.prod_item .btn_add_cart::after {
    position: absolute;
    display: inline-block;
    content: '';
    top: 50%;
    left: 100%;
    width: 25px;
    height: 1px;
    background-color: #fff;
}*/

.prod_item .btn_add_cart:hover {
    background-color: #786f80;
    color: #fff;
}

/*prodlist_rating_score .prod_item {
    border-bottom: none;
}

.prodlist_rating_score .prod_item .btn_add_cart {
    position: static;
    float: left;
    margin-top: 20px;
}

.prodlist_rating_score .prod_item .btn_add_cart::after {
    display: none;
}

.prod_item .lipscore_rating {
    display: inline-block;
    float: right;
    margin-top: 25px;
}*/


.prod_item .lipscore_rating {
    position: absolute;
    display: inline-block;
    left: 50%;
    bottom: -20px;
    margin-left: -67px;
    line-height: normal;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .35);
    z-index: 1;
}

.prod_item .lipscore_rating svg:first-of-type {
    margin-left: 15px;
}

.prod_item .lipscore_rating svg:nth-of-type(5) {
    margin-right: 15px;
}

.paging {
    display: inline-block;
    float: left;
    width: 100%;
    font-size: 18px;
}

.paging a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 5px;
    margin-bottom: 10px;
    background-color: #786f80;
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.paging a.current,
.paging a:hover {
    background-color: #f12249;
}

.prodlist_filters_box {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 40px;
    z-index: 51;
}

.prodlist_filter {
    display: inline-block;
    float: left;
    width: 49%;
    max-width: 200px;
    margin-right: 2%;
    margin-top: 10px;
    font-size: 16px;
}

.prodlist_filter:last-child {
    margin-right: 0;
}

.prodlist_filter.simulation_select .current_option {
    height: 40px;
}

.prodlist_filter.simulation_select .all_options {
    width: 100%;
    height: auto;
    max-height: 200px;
    left: 0;
}

.prodlist_filter.simulation_select .ch_box_lbl {
    width: calc(100% - 35px);
}

.prodlist_filter.simulation_select .sqr_checked {
    display: none;
    background: url(img/ch_box_checked.png) no-repeat center left;
}

.prodlist_filter.simulation_select .foption_name {
    width: calc(100% - 35px);
}

.prodlist_filter.simulation_select .count {
    display: inline-block;
    float: right;
    font-size: 14px;
}

.prodlist_filter .btn_clear_filter {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 5px 0;
}

.prodlist_filter .btn_clear_filter .fa {
    margin-right: 5px;
}

/* FOOTER */
.footer_sec {
    margin-top: 60px;
}

.footer_sec .container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    font-size: 16px;
    line-height: 26px;
}

.footer_item {
    display: inline-block;
    max-width: 22%;
    margin-right: 30px;
    margin-bottom: 40px;
    vertical-align: top;
}

.footer_item:nth-child(4n+4) {
    max-width: 32%;
    margin-right: 0;
}

.footer_cell {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.footer_cell:last-child {
    margin-bottom: 0;
}

.footer_cell .img_row {
    display: inline-block;
    width: 100%;
    text-align: left;
}

.footer_cell img {
    vertical-align: middle;
    margin-right: 10px;
}

.footer_cell img:last-child {
    margin-right: 0;
}

.footer_title {
    margin: 0;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

.footer_cell .footer_title {
    margin-bottom: 10px;
}

.footer_menu {
    display: inline-block;
}

.footer_menu a {
    display: inline-block;
    float: left;
    padding-left: 20px;
    background: url(img/arrow_right.png) no-repeat 0px 7px;
}

.footer_menu a:hover {
    background: url(img/arrow_right_orange.png) no-repeat 5px 7px;
    color: #f95707;
}

.footer_item .big_text {
    font-size: 20px;
}

.footer_item .small_text {
    font-size: 16px;
}

.footer_phone {
    margin-top: 20px;
    font-size: 38px;
    line-height: 48px;
    font-weight: 400;
}

.footer_social_link {
    display: inline-block;
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.footer_social_link img {
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}

.footer_social_link:hover img {
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.subscribe_form_box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 40px;
    padding: 40px;
    background-color: #efefef;
}

.subscribe_form_box .left {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    padding-right: 45px;
}

.subscribe_form_box h3 {
    margin: 0 0 10px 0;
    font-size: 26px;
    line-height: 36px;
    font-weight: 300;
}

.subscribe_form_box .info {
    font-size: 15px;
    line-height: 25px;
}

.subscribe_form {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.subscribe_form .flex_row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
}

.subscribe_field {
    width: 100%;
    height: 55px;
    margin-right: 25px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    font-size: 19px;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.subscribe_field:focus {
    border-color: #786f80;
}

.btn_subscribe {
    display: inline-block;
    float: left;
    width: 145px;
    height: 55px;
    line-height: 55px;
    background-color: #cac3b1;
    border: none;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.btn_subscribe:hover {
    background-color: #786f80;
}

.copyrights .container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: baseline;
    align-items: baseline;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 25px;
    background: url(img/dashed.png) repeat-x top left;
    font-size: 16px;
    line-height: 26px;
}

.to_nddesign {
    margin-top: 10px;
}

.to_nddesign img {
    vertical-align: middle;
}

.to_nddesign span {
    margin-right: 30px;
    vertical-align: middle;
}

/* PRODUCT LIST PAGE */
.page_location {
    display: none;
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page_location li {
    display: inline-block;
    float: left;
    color: #808080;
    font-weight: 400;
}

.page_location .lbl {
    margin-right: 5px;
}

.page_location li a {
    display: inline-block;
    color: #808080;
}

.page_location li:last-child a {
    text-transform: uppercase;
}

.page_location li a::after {
    content: '>';
    margin-left: 5px;
    margin-right: 5px;
}

.page_location li:last-child a::after {
    display: none;
}

.page_location a:hover {
    color: #f95707;
}

.prodlist_left {
    position: relative;
    display: inline-block;
    float: left;
    width: 23%;
    margin-right: 4%;
}

.prodlist_right {
    display: inline-block;
    float: left;
    width: 73%;
}

.prodlist_banner {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.prodlist_banner img,
.two_banners img {
    vertical-align: top;
}

.two_banners {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.two_banners a {
    width: 49%;
    margin-bottom: 20px;
}

.prodlist_banner a,
.two_banners a {
    display: inline-block;
}

.prodlist_banner a:hover,
.two_banners a:hover {
    opacity: .87;
}

.noBg {
    background: none !important;
}

.prodlist_right .inner_text {
    margin: 15px 0;
    font-size: 16px;
}

.prodlist_left.active {
    left: 0;
}

.prodlist_left.active .title  {
    padding-right: 50px;
    font-size: 23px;
}

.btn_close_filters {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    border-radius: 50%;
    background: #000;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.btn_open_filters {
    display: none;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    margin-bottom: 10px;
    border: 1px solid #cfcfcf;
    background-color: #fff;
    font-size: 18px;
    text-align: center;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    cursor: pointer;
    z-index: 900;
}

.btn_open_filters span {
    display: inline-block;
}

/*.btn_open_filters.active {
        left: 220px;
        background-color: #f95707;
}*/

.filter_btn_box {
    display: inline-block;
    float: left;
    width: 100%;
    border: 1px solid #e6e6e6;
}

.filter_btn_box span,
.btn_remove_filter {
    display: inline-block;
    float: left;
    padding: 13px 8px;
    text-align: center;
}

.filter_btn_box span {
    width: 40%;
    font-size: 18px;
    color: #4c4c4c;
}

.btn_remove_filter {
    width: 60%;
    font-size: 16px;
    color: #7f7f7f;
    background-color: #e6e6e6;
}

.btn_remove_filter .fa {
    margin-left: 5px;
    color: #f53a3a;
}

.btn_remove_filter:hover{
    color: #fff;
    background-color: #f53a3a;
}

.btn_remove_filter:hover .fa {
    color: #fff;
}

.filter_options_box {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

.filter_options_box::after {
    display: inline-block;
    content: '';
    width: 100%;
    height: 1px;
    margin-top: 30px;
    background: url(img/dashed.png) repeat-x top left;
}

.filter_options_box .title {
    display: inline-block;
    float: left;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 400;
}

.filter_options_box .sqr_checked {
    display: none;
    background: url(img/ch_box_checked.png) no-repeat center left;
}

.filter_options_box .ch_box:checked + .sqr {
    display: none;
}

.filter_options_box .ch_box:checked + .sqr + .sqr_checked {
    display: inline-block;
}

.filter_menu {
    display: inline-block;
    float: left;
    width: 100%;
}

.filter_menu a {
    display: inline-block;
    float: left;
    width: 100%;
    padding-left: 20px;
    font-size: 16px;
    background: url(img/arrow_right.png) no-repeat 0px 7px;
}

.filter_menu_row:hover > a {
    background: url(img/arrow_right_orange.png) no-repeat 5px 7px;
    color: #f95707;
}

.filter_menu_row {
    display: inline-block;
    float: left;
    width: 100%;
}

.submenu_filter_menu {
    display: inline-block;
    float: left;
    width: 100%;
    padding-left: 15px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.submenu_filter_menu a {
    font-size: 15px;
}

.submenu_filter_menu a {
    background: url(img/arrow_right.png) no-repeat 5px 7px;
}

.submenu_filter_menu a:hover {
    background: url(img/arrow_right_orange.png) no-repeat 10px 7px;
    color: #f95707;
}

/*.filter_menu_row:hover .submenu_filter_menu {
    display: inline-block;
}*/

.color {
    display: inline-block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

.option_row:hover .sqr,
.option_row:hover .color  {
    margin-right: 5px;
}

.option_row:hover .foption_name {
    color: #f95707;
}

.menu_colors .color .fa {
    display: none;
    color: #fff;
    font-size: 14px;
}

.color.bg_white .fa {
    color: #b6b4b0;
}

.color.bg_white {
    border: 1px solid #b6b4b0;
}

.menu_colors .ch_box:checked + .color .fa {
    display: inline-block;
}

.color_choose {
    position: relative;
}

.outofstock .color_name {
    text-decoration: line-through;
}

.color_choose .color {
    position: relative;
    display: inline-block;
    float: left !important;
    width: auto !important;
    max-width: 30px;
}

.color_choose.current a.color:after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 17px;
    color: #000;
}

.img_box a {
    display: inline-block;
}

.img_box a img {
    vertical-align: top;
}

.img_box a:before,
.color_choose .color:before {
    content: '';
    position: absolute;
    word-spacing: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    visibility: hidden;
}

.img_box a:after {
    content: '\f002';
    font-family: 'FontAwesome';
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    font-size: 13px;
    color: #fff;
    margin-left: -6px;
    transform: translateY(-50%);
    visibility: hidden;
}

.img_box a:hover:before,
.img_box a:hover:after {
    visibility: visible;
}

.default_color_box .img_box a img {
    max-height: 30px;
}

.color_choose .color_name {
    width: calc(100% - 38px) !important;
}

.color_choose .color_name:hover {
    transform: translateX(-3px);
}

.filter_options_box .count {
    display: inline-block;
    float: right;
    font-size: 14px;
}

.menu_options {
    display: inline-block;
    float: left;
    width: 100%;
}

.menu_options .option_row {
    margin-bottom: 10px;
}

.menu_options .option_row:last-child {
    margin-bottom: 0;
}

.foption_name {
    display: inline-block;
    vertical-align: middle;
}

.prise_slider_box {
    display: inline-block;
    float: left;
    width: 100%;
}

#amount {
    border: none;
    font-weight: 700;
}

.prodlist_right .filters_form {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 40px;
    z-index: 51;
}

.prodlist_right .filters_form.flex {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #f6f6f6;
    padding: 10px;
    padding-top: 0;
}

.prodlist_right .filter_options_box {
    width: 49%;
    max-width: 200px;
    margin-right: 2%;
}

.prodlist_right .filter_options_box:last-child {
    margin-right: 0;
}

.prodlist_right .filter_options_box::after {
    display: none;
}

.prodlist_right .filter_options_box .select_field {
    width: 100%;
}

.prodlist_right .filter_options_box .current_option {
    height: 40px;
}

.prodlist_right .filter_options_box .simulation_select .all_options {
    width: 100%;
    height: auto;
    max-height: 200px;
    top: 39px;
    left: 0
}

.prodlist_right .count_selected_filters {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    margin-left: 5px;
    padding: 0 5px;
    background-color: #786f80;
    font-size: 14px;
    color: #fff;
}

.prodlist_right .filter_options_box .ch_box_lbl {
    width: calc(100% - 35px);
}

.prodlist_right .filter_options_box .foption_name {
    width: calc(100% - 35px);
}



/* PRODUCT PAGE */
.prod_left_col {
    position: relative;
    display: inline-block;
    float: left;
    width: 39%;
    margin-right: 3%;
    margin-top: 30px;
}

.prod_right_col {
    display: inline-block;
    float: left;
    width: 58%;
    margin-top: 30px;
}

.prod_title_mobile {
    display: none;
    float: left;
    width: 100%;
    margin: 20px 0 0 0;
    font-size: 26px;
    line-height: 30px;
    font-weight: 300;
}

.to_category {
    display: none;
    float: left;
    width: 100%;
    margin-top: 5px;
    text-decoration: underline;
}

.to_category:hover {
    color: #f95707;
    text-decoration: none;
}

.main_img {
    display: inline-block;
    float: left;
    width: 100%;
    /*padding: 75px 105px;*/
    border: 1px solid #c8c8c8;
}

.prod_left_col a {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    line-height: 0;
    text-align: center;
    overflow: hidden;
}

.prod_left_col img {
    vertical-align: middle;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.mask {
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 70px;
    background-color: rgba(0, 0, 0, .5);
    font-size: 30px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.thumbs_box a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/*.main_img .mask span,
.thumbs_box .mask span {
    position: absolute;
    display: inline-block;
    width: 22px;
    height: 22px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: url(img/i_search_white.png) center no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out 0.2s;
    -ms-transition: opacity 0.4s ease-in-out 0.2s;
    -moz-transition: opacity 0.4s ease-in-out 0.2s;
    -o-transition: opacity 0.4s ease-in-out 0.2s;
    transition: opacity 0.4s ease-in-out 0.2s;
}*/

.main_img a:hover .mask,
.thumbs_box a:hover .mask {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

/*.main_img:hover .mask span,
.thumbs_box:hover .mask span {
    opacity: 1;
}*/

.thumbs_box {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.thumb {
    display: inline-block;
    float: left;
    width: 22%;
    margin-right: 4%;
    margin-bottom: 17px;
    text-align: center;
    border: 1px solid #c8c8c8;
}

.thumb:nth-child(4n+4) {
    margin-right: 0;
}

.prod_right_col .prod_title {
    display: inline-block;
    float: left;
    width: 100%;
    height: auto;
    margin: 0;
    font-size: 26px;
    line-height: 30px;
    font-weight: 300;
}

.prod_right_col .prod_lipscore_rating_box {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 10px 0;
}

.reviews_sec {
    display: inline-block;
}

.reviews_sec .container {
    margin: 40px 0 75px 0;
}

.reviews_sec .lipscore_review_list_box {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 11px rgb(0 0 0 / 20%);
}

#lipscore-rating .lipscore-rating-review-link {
    display: none;
}

.stock_row {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 20px 0;
}

.stock_row span {
    display: inline-block;
    float: left;
    margin-right: 20px;
    padding-right: 20px;
    background: url(img/grey_line.png) no-repeat right center;
    text-transform: uppercase;

}

.stock_row span:last-child {
    background: none;
    margin-right: 0;
}

.prod_info {
    display: inline-block;
    float: left;
    width: 100%;
    font-size: 16px;
}

.prod_right_col .prod_price_box {
    margin: 10px 0 40px 0;
    font-size: 26px;
}

.lbl_qty {
    display: inline-block;
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
}

.default_color_box {
    display: inline-block;
    float: left;
    margin-right: 20px;
    width: 60px;
    font-size: 16px;
}

.default_color_box span {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.default_color_box .img_box {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.to_standart_color {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    color: #f95707;
    font-weight: 400;
    text-decoration: underline;
}

.to_standart_color:hover {
    text-decoration: none;
}

.prod_options_rows {
    display: inline-block;
    float: left;
    width: 100%;
}

.select_box {
    display: inline-block;
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    font-size: 16px;
}

.prod_options_rows .select_box{
    margin-bottom: 5px;
}

.select_box.color_qty {
    width: 100%;
    margin-right: 0;
}

.select_box .lbl {
    margin-bottom: 5px;
    text-transform: capitalize;
}

.simulation_select {
    /*position: relative;*/
    display: inline-block;
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    /*z-index: 999;*/
}

.box_width220 {
    width: 220px;
    max-width: 220px;
}

.simulation_select.choose_color {
    width: 220px;
}

.simulation_select label.current_option {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 0 20px 0 10px;
    background: url(img/arrow_down.png) no-repeat 95% 50%;
    border: 1px solid #c8c8c8;
}

.simulation_select .all_options a.mobile_all_options_close {
    display: none;
}

.simulation_select input {
    display: none;
}

.simulation_select .all_options {
    position: absolute;
    display: inline-block;
    top: 39px;
    left: -1px;
    /*width: 205px;*/
    width: 220px;
    height: 200px;
    padding: 10px;
    line-height: normal;
    border: 1px solid #c8c8c8;
    border-top: none;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    z-index: 1;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

.simulation_select .all_options a {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.simulation_select .all_options a:last-child {
    margin-bottom: 0;
}

.simulation_select input:checked + label {
    border-color: #786f80;
}

.simulation_select input:checked + label >.all_options {
    opacity: 1;
    visibility: visible;
}

.choose_color .color {
    display: inline-block;
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 8px;
    margin-top: 5px;
    vertical-align: middle;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

.all_options .color {
    margin-top: 0;
    line-height: normal;
}

.choose_color .color img {
    vertical-align: middle;
}

.choose_color .color.bg_white {
    border: 1px solid #b6b4b0;
}

.all_options a:hover .color {
    margin-right: 5px;
}

.choose_color .color_name {
    display: inline-block;
    float: left;
    width: calc(100% - 40px);
    height: 40px;
    vertical-align: middle;
    overflow: hidden;
}

.select_field.qty {
    width: 145px;
}

.chboxes_holder {
    display: inline-block;
    float: left;
    width: 100%;
}

.input_qty_box {
    display: inline-block;
    float: left;
    width: 107px;
    padding: 9px 0;
    border: 1px solid #cfcfcf;
}

/* Chrome, Safari, Edge, Opera */
.input_qty::-webkit-outer-spin-button,
.input_qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.input_qty {
    -moz-appearance: textfield;
}

.input_qty {
    float: left;
    width: 45px;
    height: 20px;
    border: none;
    text-align: center;
}

.btn_change_qty {
    display: inline-block;
    float: left;
    width: 30px;
    height: 20px;
    line-height: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.btn_change_qty.minus {
    border-right: 1px solid #cfcfcf;
}

.btn_change_qty.plus {
    border-left: 1px solid #cfcfcf;
}

/* PRODUCT RECOMMENDED ACCESSORIES */
.prod_accessories {
    font-size: 14px;
    line-height: 18px;
}

.prod_accessories .lbl {
    margin-bottom: 15px;
}

.prod_accessories .ch_box_lbl {
    margin-bottom: 10px;
}

.prod_accessories .sqr,
.prod_accessories .foption_name {
    vertical-align: top;
}

.prod_accessories .sqr {
    margin-top: 3px;
}

.prod_accessories .price {
    color: #f95707;
    font-weight: 400;
}


.prod_right_col .btn_add_cart {
    display: inline-block;
    padding: 13px 25px 11px 25px;
    margin-top: 15px;
    border: 0;
    text-align: center;
    background-color: #786f80;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

.prod_right_col .btn_add_cart:hover {
    background-color: #f12249;
}

.social {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 20px;
}

.social .lbl {
    display: inline-block;
    float: left;
    margin-right: 40px;
    font-size: 16px;
    color: #339af9;
}

.social_item {
    display: inline-block;
    float: left;
    margin-right: 5px;
}

/* COLORS LIST*/
.colors_list_sec {
    margin-bottom: 20px;
}

.colors_list_sec .container {
    border-top: 1px solid #c8c8c8;
}

.colors_list_sec .title {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 10px 0 20px 0;
    font-size: 16px;
    color: #9d9d9d;
    font-weight: 400;
    text-transform: uppercase;
}

.colors_box {
    display: inline-block;
    float: left;
    width: 100%;
}

.color_item {
    position: relative;
    display: inline-block;
    float: left;
    width: 9%;
    margin-bottom: 17px;
    margin-right: 1%;
    text-align: center;
    cursor: pointer;
}

.color_item .box {
    display: flex;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.color_item .badge_sold_out {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
    background-color: #f12249;
    color: #fff;
    z-index: 1;
}

.color_item:nth-child(10n+10) {
    margin-right: 0;
}

.color_item .img_box {
    position: relative;
    display: inline-block;
    float: left;
    width: 100%;
    height: 100px;
    line-height: 100px;
    border: 1px solid #c8c8c8;
    overflow: hidden;
}

.color_item.current .img_box {
    border-color: #f95707;
}

.color_item img {
    display: inline-block;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.color_item:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.color_item .color_name {
    display: inline-block;
    float: left;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* TABS */
.prod_tabs_box {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

.tabs_nav {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
}

.tabs_nav li {
    position: relative;
    display: inline-block;
    float: left;
}

.tabs_nav li a {
    display: inline-block;
    float: left;
    min-width: 180px;
    height: 70px;
    line-height: 70px;
    padding: 0 20px;
    border-right: 1px solid #c8c8c8;
    color: #8f8f8f;
    text-align: center;
}

.tabs_nav li.current a,
.tabs_nav li a:hover {
    background-color: #e6e6e6;
    color: #111;
}

.tabs_nav li.current::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #d8d8d8;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    z-index: -1;
}

.tabs_holder {
    display: inline-block;
    float: left;
    width: 100%;
    padding-top: 40px;
}

.tab {
    display: inline-block;
    float: left;
    width: 100%;
}

/* FANCY */
.fancybox-inner {
    border:none !important;
    margin-left: 0 !important;
}

#fancybox-thumbs ul li a {
    border: none !important;
}

a.fancybox-close {
    top: 0 !important;
    right: 0 !important;
    background: rgba(0,0,0, .5) url(img/btn_close.png) no-repeat 50% 50% !important;
    width: 40px !important;
    height: 40px !important;
}

a.fancybox-nav span {
    width: 34px !important;
    height: 67px !important;
}

a.fancybox-next span {
    right: 20px !important;
    background: url(img/arrow_right_big.png) !important;
}

a.fancybox-prev span {
    left: 20px !important;
    background: url(img/arrow_left_big.png) !important;
}

#fancybox-thumbs ul li img {
    margin-top: 0 !important;
}

/* RANGE SLIDER */
#price_slider {
    display: inline-block;
    float: left;
    width: 100%;
}

.ui-widget.ui-widget-content {
    height: 14px;
    border: 1px solid #e6e6e6 !important;
    border-radius: 14px;
    background-color: #e6e6e6;
}

.ui-slider-horizontal .ui-slider-range {
    background-color: #786f80;
    border-radius: 14px;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    top: 0 !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 12px;
    border: 1px solid #786f80 !important;
    background: #fff !important;
}

.ui-slider-horizontal .ui-slider-handle {
    margin-left: -12px !important
}

.ui-slider .ui-slider-handle:nth-child(2)  {
    margin-left: 0px !important
}

/* MOBILE MENU BTN */
.btn_mobile_menu_box {
    display: inline-block;
    width: 100%;
}

.btn_mobile_menu_box span {
    display: inline-block;
    margin-top: 25px;
}

.btn_mobile_menu {
    display: none;
    float: right;
    line-height: 20px;
    padding: 10px 8px;
    margin-top: 25px;
    margin-right: 10px;
    background-color: #f12249;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .5) inset;
    clear: right;
    z-index: 1000;
}

.btn_mobile_menu span {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    vertical-align: middle;
}

.btn_mobile_menu img {
    vertical-align: middle;
}

/* LOGIN PAGE */
.w100 {
    width: 100% !important;
}

.left_col {
    display: inline-block;
    float: left;
    width: 35%;
    margin-right: 5%;
}

.right_col {
    display: inline-block;
    float: left;
    width: 60%;
}

.inner_text {
    display: inline-block;
    float: left;
    width: 100%;
    font-size: 18px;
}

.input_row {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.input_row .input_text {
    width: 48%;
    margin-right: 2%;
}

.input_row .input_text:last-child {
    margin-right: 0;
}

.btn_sub,
.button {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 26px 6px 26px;
    border: none;
    background-color: #786f80;
    text-align: center;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn_sub:hover,
.button:hover {
    background-color: #f12249;
}

.button-o {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 26px 4px 26px;
    border: none;
    background: none;
    border: 2px solid #786f80;
    text-align: center;
    color: #786f80;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button-o:hover {
    background-color: #786f80;
    color: #fff;
}

.btn_sub.red,
.button.red {
    background-color: #f12249;
}

.btn_sub.red:hover,
.button.red:hover {
    background-color: #d02343;
}

.button.green {
    background-color: #20cc6c;
}

.button.green:hover {
    background-color: #1ca95a;
}

.forget_pass {
    display: inline-block;
    text-decoration: underline;
    margin-right: 10px;
    font-weight: 400;
}

.forget_pass:hover {
    text-decoration: none;
}

.password_static {
    width: 49.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.password_static strong {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 600;
}

.edit_password {
    margin-left: 20px;
}

/* CART */
.cart_table {
    width: 100%;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400;
}

.cart_table th {
    padding: 10px 15px;
    background-color: #786f80;
    color: #fff;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.cart_table th:last-child {
    border-right: 15px solid #786f80;
}

.cart_table td {
    width: 200px;
    padding: 10px 15px;
    /*background-color: #fff;*/
    border-bottom: 15px solid #786f80;
    text-align: center;
    vertical-align: middle;
}

.cart_prod_row {
    background-color: #fff;
}

td.cart_prod_img {
    padding: 0;
    background-color: #786f80;
}

.cart_prod_img a {
    display: inline-block;
    width: 100%;
    height: 150px;
    line-height: 150px;
    padding: 0 15px;
    vertical-align: middle;
    overflow: hidden;
}

.cart_prod_img a img {
    vertical-align: middle;
}

td.cart_name_box {
    width: 450px;
    text-align: left;
}

.cart_table .prod_title {
    height: auto;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
}

.cart_change_qty_box {
    display: inline-block;
    width: 110px;
}

.cart_change_qty {
    display: inline-block;
    text-decoration: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: -5px;
    margin-right: -5px;
    background-color: #333;
    color: #fff !important;
    text-align: center;
    vertical-align: top;
}

.cart_change_qty:hover {
    background-color: #4c4c4c;
}

.cart_prod_qty {
    width: 50px;
    height: 30px;
    text-align: center;
}

.cart_table .prod_price_box {
    margin-top: 0;
}

.cart_table .td_relative {
    position: relative;
}

.cart_table .pdf_price {
    position: absolute;
    left: 0;
    bottom: 10px;
}
.cart_table .old_price {
    margin-right: 0;
}

.cart_table .promo_price {
    color: #f95707;
}

td.cart_remove {
    width: 15px;
    border-right: 15px solid #786f80;
    vertical-align: top;
}

.cart_remove_box {
    position: relative;
    display: inline-block;
    width: 15px;
}

.btn_remove_prod {
    position: absolute;
    display: inline-block;
    font-size: 18px;
    top: -20px;
    right: -10px;
}

.btn_remove_prod:hover {
    color: #f53a3a;
}

.holder_cell {
    display: table;
    width: 100%;
    margin-bottom: 40px;
}

.cart_left_col {
    display: inline-block;
    float: left;
    width: 70%;
    margin-right: 2%;
    padding: 15px;
    background-color: #786f80;
    font-size: 16px;
    font-weight: 400;
    vertical-align: top;
}

.cart_left_col .input_text {
    color: #4c4c4c;
}

.cart_right_col {
    position: relative;
    display: inline-block;
    float: left;
    width: 28%;
    padding: 15px;
    background-color: #786f80;
    vertical-align: top;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.holder_cell .cart_left_col,
.holder_cell .cart_right_col {
    display: table-cell;
    float: none;
}

.holder_cell .cart_left_col {
    border-right: 10px solid #fff;
}

.holder_cell .cart_right_col {
    padding-bottom: 60px;
}

.cart_options_box {
    display: inline-block;
    float: left;
    width: 70%;
    margin-right: 3%;
}

.cart_heading {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.white_box {
    display: inline-block;
    float: left;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    color: #4c4c4c;
}

.cart_option_item {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.cart_option_img {
    display: inline-block;
    float: left;
    width: 25%;
    margin-right: 3%;
    height: 40px;
    line-height: 40px;
}

.cart_option_info {
    display: inline-block;
    float: left;
    width: 72%;
}

.cart_option_info .lbl {
    display: inline-block;
    width: 85%;
    cursor: pointer;
    vertical-align: top;
}

.cart_option_info .lbl span {
    display: inline-block;
    float: left;
    width: 100%;
}

.small_text {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 18px;
}

.white_box .small_text {
    margin-bottom: 0;
}

.ch_box:checked + .sqr + .lbl .option_title {
    color: #f95707;
}

.payment_lng_row {
    margin-bottom: 20px;
}

.payment_lng_row .cart_option_item {
    margin-bottom: 0;
}

.lbl_payment_lng {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    margin-right: 20px;
    line-height: 24px;
    vertical-align: middle;
}

.payment_lng {
    display: inline-block;
    margin-right: 20px;
    margin-top: 10px;
    text-align: left;
    vertical-align: middle;
}

.payment_lng:hover,
.payment_lng.active {
    color: #f95707;
}

.payment_lng:before,
.payment_lng.active:before {
    display: inline-block;
    margin-right: 5px;
    font-family: 'FontAwesome';
    font-size: 20px;
}

.payment_lng:before {
    content: "\f10c";
}

.payment_lng.active:before {
    content: "\f05d";
}


.discount_code_box {
    display: inline-block;
    float: left;
    width: 27%;
    max-width: 210px;
    padding: 10px 0;
    background-color: #90859a;
}

.discount_code_box .input_text {
    float: left;
    width: 100%;
    height: 25px;
    border: none;
    color: #4c4c4c;
}

.btn_sub_discount {
    display: inline-block;
    float: right;
    height: 25px;
    line-height: 25px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 10px;
    border: none;
    border: 1px solid #333;
    font-size: 14px;
    color: #333;
    background: none;
    text-align: center;
    text-transform: uppercase;
}

.btn_sub_discount:hover {
    background-color: #333;
    color: #fff;
}

.cart_right_col .row {
    margin-bottom: 5px;
}

.cart_right_col .fright {
    text-transform: none;
}

.total_row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    border-top: 3px solid #333;
    padding: 7px 10px;
}

.total_row::before {
    position: absolute;
    display: inline-block;
    content: '';
    top: -13px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #fff;
}

/* CART FOR MOBILE DEVICES */
.mobile_cart_box {
    display: none;
    float: left;
    width: 100%;
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #c8c8c8;
    font-weight: 400;
}

.mobile_cart_box .prod_item {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.mobile_cart_box .prod_photo {
    display: inline-block;
    float: left;
    width: 30%;
    text-align: center;
}

.mobile_cart_box .prod_photo img {
    vertical-align: middle;
}

.mobile_cart_box .prod_info {
    position: relative;
    display: inline-block;
    float: left;
    width: 70%;
    padding-left: 20px;
}

.mobile_cart_box .btn_remove_prod {
    top: -10px;
    right: -10px;
    color: #fff;
}

.mobile_cart_box .prod_title {
    margin-top: 0;
    margin-bottom: 0;
    height: auto;
    font-size: 18px;
}

.mobile_cart_box .prod_info .row {
    margin-bottom: 5px;
}

.mobile_cart_box .prod_info span {
    display: inline-block;
    float: left;
    margin-right: 10px;
}

.mobile_cart_box .prod_desc {
    font-size: 15px;
}

.mobile_cart_box .prod_desc a {
    font-size: 15px !important;
    color: #fff;
    text-decoration: underline;
}

.mobile_cart_box .input_text {
    width: 100px;
    height: 30px;
    margin-right: 10px;
    color: #4c4c4c;
}

.mobile_cart_box .old_price,
.mobile_cart_box .price {
    color: #111;
}

.mobile_cart_box .promo_price {
    color: #9abab4;
}

.mobile_cart_box .btn_remove_prod{
    color: #111;
}

.mobile_cart_box .footer_info {
    display: inline-block;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
}

/* POPUP */
.popup {
    position: fixed;
    display: none;
    left: 50%;
    top: 50%;
    width: 500px;
    max-height: 80%;
    padding: 30px;
    background-color: #786f80;
    font-size: 16px;
    color: #fff;
    overflow: auto;
    z-index: 1006;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);

}

.overlay {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .6;
    z-index: 1005;
}

.btn_close_popup {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 5px;
    font-size: 18px;
    cursor: pointer;
}

.btn_close_popup:hover {
    color: #3c3c3c;
}

.popup_title {
    display: inline-block;
    float: left;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    font-size: 22px;
    text-align: center;
}

.popup_info {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 15px;
}

.popup .btns_holder {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.popup .btn{
    display: inline-block;
    padding: 13px 25px 11px 25px;
    margin-top: 10px;
    margin-right: 10px;
    text-align: center;
    background-color: #cac3b1;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.15s ease-out;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
}

.popup .btn_to_cart {
    background-color: #b6a5bf;
}

.popup .btn:hover {
    background-color: #a2a099;
}

.popup .btn_to_cart:hover {
    background-color: #907498;
}

/* PROFILE PAGE */
.orders_table {
    width: 100%;
}

.orders_table th {
    padding: 20px 10px;
    background-color: #efefef;
    border-top: 1px solid #dedede;
    font-size: 16px;
    text-align: center;
}

.orders_table td {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 20px 10px;
    vertical-align: middle;
    text-align: center;
}

.orders_table th:first-child,
.orders_table td:first-child{
    border-left: 1px solid #dedede;
}

.orders_table th:last-child,
.orders_table td:last-child{
    border-right: 1px solid #dedede;
}

.orders_table a:hover {
    text-decoration: underline;
}

.orders_table .status {
    text-transform: uppercase;
}

/* FOR MOBILE */
/*.mobile_header_btns_holder {
    display: none;
    float: left;
    width: 100%;
    height: 70px;
    line-height: normal;
    margin-bottom: 20px;
    background-color: #786f80;
    border-bottom: 1px solid #615967;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    z-index: 1000;
}*/

/*.header_sec.sticky .mobile_header_btns_holder {
    padding-top: 10px;
}

.header_sec.sticky .mobile_header_btns_holder span {
    display: none;
}*/

/*.mobile_header_btns {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.mobile_header_btns a {
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    vertical-align: middle;
}

.mobile_header_btns a .fa {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 5px;
}

.mobile_header_btns a span {
    display: inline-block;
    width: 100%;
}

.mobile_header_btns a.current {
    color: #fff;
}

.mobile_header_info {
    display: none;
    float: right;
    width: calc(100% - 130px);
    width: -webkit-calc(100% - 130px);
    width: -moz-calc(100% - 130px);
    padding-left: 10px;
    text-align: right;
}

.mobile_header_info .row {
    margin-bottom: 5px;
}

.mobile_header_info .info {
    font-size: 18px;
}

.mobile_header_info .fa {
    margin-right: 5px;
    color: #025cab;
}

.mobile_header_btns_holder .search_form {
    position: absolute;
    display: none;
    float: left;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    padding: 20px;
    background-color: #786f80;
    z-index: 50;
}

.mobile_header_btns_holder .search_form .input_text {
    width: 100%;
    border: none;
}

.mobile_header_btns_holder .btn_search {
    top: 25px;
    right: 20px;
    opacity: 1;
} */

.mobile_btns {
    display: inline-block;
    float: left;
    width: 100%;
    margin-top: 7%;
    text-align: right;
}

.mobile_btns .btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 26px;
    text-align: center;
}

.mobile_header {
    display: none;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #dedede;
}

.mobile_header .btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-right: 1px solid #dedede;
    font-size: 26px;
}

.mobile_header .search_form {
    position: relative;
    width: 100%;
}

.mobile_header .search_form .input_text {
    width: 100%;
    height: 50px;
    border: none;
}

.mobile_header .search_form .btn_search {
    top: 10px;
}

/* CART NEW STYLES */
.ch_box_switcher_holder {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.ch_box_switcher_holder .txt {
    display: inline-block;
}

.ch_box_switcher_holder input {
    display: none;
}

.ch_box_switcher_holder .lbl_switcher {
    position: relative;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: 55px;
    height: 25px;
    margin-right: 10px;
    border-radius: 15px;
    background-color: #ccc;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ch_box_switcher_holder .switcher {
    display: inline-block;
    position: absolute;
    width: 19px;
    height: 19px;
    top: 3px;
    right: 32px;
    border-radius: 19px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.ch_box_switcher_holder input:checked + .lbl_switcher {
    background-color: #e30e24;
}

.ch_box_switcher_holder input:checked + .lbl_switcher .switcher {
    right: 4px;
}

#cartF {
    float: left;
    width: 100%;
}

.cart_heading {
    font-weight: 700;
}

.cart_heading i {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #786f80;
    color: #fff;
    text-align: center;
    line-height: 26px;
    font-style: normal;
    font-weight: 400;
}

.cart_table {
    margin-bottom: 10px;
}

.cart_totals_row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    color: #4c4c4c;
    text-align: center;
}

.cart_totals_row > .fleft {
    width: calc(100% - 300px);
    max-width: 500px;
    text-align: left;
}

.cart_totals_row > .fright {
    width: 270px;
    font-size: 19px;
}

.cart_totals_row .cart_center {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 300px;
    padding: 0 20px;
    text-align: left;
}

.cart_table th {
    background-color: #fff;
    color: #4c4c4c;
    border-bottom: 1px solid #4c4c4c;
}

.cart_table td {
    border-bottom: 1px solid #4c4c4c;
}

td.cart_prod_img {
    background: none;
}

td.cart_remove,
.cart_table th:last-child {
    border-right: none;
}

td.cart_remove {
    vertical-align: middle;
}

.btn_remove_prod {
    position: static;
}

.discount_code_box {
    width: 100%;
    max-width: 100%;
    background: none;
}

.discount_code_box .ib {
    width: 100%;
}

.discount_code_box .input_text {
    width: 70%;
    height: 40px;
    border: 1px solid #4c4c4c;
}

.discount_code_box .btn_sub_discount {
    margin-top: 0;
    height: 40px;
    width: 29%;
}

.ib {
    display: inline-block;
}

.cart_left_col {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 30px;
    background: #fff;
    box-shadow:  0px 0px 11px rgba(0, 0, 0, 0.2);
}

.cart_left_col .cart_heading {
    color: #4c4c4c;
}

.cart_option_item {
    border: 1px solid #4c4c4c;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
}

.cart_option_item.noBorder {
    border: none;
    margin-bottom: 0;
    padding: 0;
}

.cart_options_box {
    width: 100%;
    margin-right: 0;
}

.cart_option_img {
    width: 100px;
}

.fieldset {
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #f6f6f6;
}

.cart_left_col .inner_text {
    color: #4c4c4c;
}

.postcode_inputs {
    display: inline-block;
    max-width: 600px;
}

.centered {
    text-align: center;
}

.giftcard_box {
    display: none;
}

.show_giftcard_field {
    text-decoration: underline;
}

.show_giftcard_field:hover {
    text-decoration: none;
}

.password_row {
    display: none;
    width: 100%;
    justify-content: space-between;
}

.password_row .button-o {
    flex-shrink: 0;
}

#fancybox-thumbs ul li.fancybox-thumb-active {
    padding: 3px !important;
    opacity: .5;
}

/*CART PRODLIST*/
.cart_prodlist_box {
    display: inline-block;
    float: left;
    width: 100%;
}

.cart_prodlist_box.mobile_visible {
    display: none;
}

.cart_prodlist_box .title {
    display: inline-block;
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 10px;
    background-color: #786f80;
    font-weight: 400;
    color: #fff;
    text-align: center;
}


/* UNDER CONSTRUCTION */
.under_construction {
    width: 100%;
    height: 100vh;
    background-color: #efefef;
}

.under_construction_wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 0 10px;
    text-align: center;
}

.under_construction_info {
    margin-top: 50px;
    font-size: 30px;
    line-height: 50px;
}

.mobile600 {
    display: none;
}

.btn_filters_new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    width: 100%;
    max-width: 150px;
    text-align: left;
}

.btn_filters_new .fa {
    color: #fff;
    display: inline-block;
    margin-top: -3px;
    font-size: 20px;
}

.catalog_filters_box {
    display: none;
    position: absolute;
    z-index: 1010;
    top: 100%;
    right: -35px;
    width: calc(100vw + 70px);
    max-width: 1200px;
    background: rgba(255,255,255, .95);
    border: 1px solid #7d7484;
}

.catalog_filters_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f2f2;
    border-bottom: 1px solid #7d7484;
}

.apply_filters {
    font-weight: 400;
    font-size: 18px;
}

.reset_filters {
    background: none;
    border: none;
    color: #7d7484;
    text-decoration: underline;
    font-size: 18px;
}

.close_catalog_filters {
    display: inline-block;
    font-size: 18px;
    padding: 5px 10px;
    margin-right: 35px;
}

.catalog_filters_columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 14px 35px;
    color: #7d7484;
}

.catalog_filters_column {
    width: 100%;
    margin-right: 3px;
}

.catalog_filters_column h3 {
    text-transform: uppercase;
    border-bottom: 3px solid #7d7484;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
    padding-bottom: 4px;
}

.catalog_filter_menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.catalog_filter_menu li {
    position: relative;
}

.catalog_submenu_arrow {
    display: none;
}

.ch_filter {
    display: none;
}

.ch_filter + label {
    display: block;
    font-weight: 300;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 7px;
}
.gramBrand {
    display: block;
    font-weight: 300;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 7px;
}

.ch_filter + label:before {
    content: '';
    display: inline-block;
    float: left;
    width: 16px;
    height: 16px;
    border: 1px solid #7d7484;
    margin-top: 2px;
    margin-right: 7px;
}

.ch_filter:checked + label:before {
    background-color: #7d7484;
}

.catalog_filters_submenu {
    margin: 10px 0;
    margin-top: 5px;
    padding: 0;
    padding-left: 13px;
    list-style: none;
}

.ch_subfilter {
    display: none;
}

.ch_subfilter + label {
    display: block;
    font-weight: 300;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 0px;
}

.ch_subfilter + label:before {
    content: '';
    display: inline-block;
    float: left;
    width: 10px;
    height: 10px;
    border: 1px solid #7d7484;
    border-radius: 50%;
    margin-top: 4px;
    margin-right: 7px;
}

.ch_subfilter:checked + label:before {
    background-color: #7d7484;
}

/* NEW PRODUCT PAGE WITH "DOWNLOAD" BUTTON */

.prod_download_box {
    margin-top: -10px;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}

.button_download {
    font-size: 16px;
    font-weight: 300;
    padding: 13px 25px 11px 25px;
}

.button_download .fa {
    font-size: 21px;
    margin-right: 20px;
}

#download_modal {
    padding: 0 !important;
    cursor: default !important;
}

.download_modal_box {
    background-color: #f6f6f6;
    padding: 30px;
    text-align: center;
    max-width: 500px;
}

.download_modal_box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
}

.download_login_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.download_login_box .ip_cell {
    width: 48%;
    margin-bottom: 15px;
}

.ip_cell.have_icon {
    position: relative;
}

.ip_cell.have_icon .fa {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 21px;
    color: #ccc;
}

.download_login_box .input_text {
    width: 100%;
    margin-bottom: 0;
    text-align: left;
}

.download_login_box .ip_cell a {
    text-decoration: underline;
}

.download_login_box .ip_cell a:hover {
    text-decoration: none;
}

/* // NEW PRODUCT PAGE WITH "DOWNLOAD" BUTTON */

/* NEW INTRO PAGE */

.home_intro_title {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    color: #af9f92;
    letter-spacing: 0.05em;
    text-align: center;
}

.home_flags_box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.home_flag {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(50% - 5px);
    text-align: center;
    padding: 30px;
    color: inherit;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

.home_flag strong {
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 20px;
}

.home_flag img {
    max-height: 200px;
    margin-bottom: 20px;
}

.home_flag span {
    font-weight: 300;
    font-size: 26px;
}

.home_subscribe_box {
    display: flex;
    background-color: #f0f0f0;
    align-items: center;
    padding: 20px 40px;
}

.home_subscribe_left {
    flex-shrink: 0;
    width: 300px;
    font-size: 16px;
    padding-right: 40px;
}

.home_subscribe_left h3 {
    font-weight: 300;
    margin: 0;
    margin-bottom: 5px;
    font-size: 26px;
    line-height: 100%;
}

.home_subscribe_right {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.home_subscribe_right .input_text {
    width: 100%;
    margin-right: 20px;
    font-size: 18px;
    height: 50px;
}

.home_subscribe_right .button {
    flex-shrink: 0;
    background-color: #cac5b1;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    height: 50px;
}

/* // NEW INTRO PAGE */










/* RESPONSIVE */

@media(max-width: 1130px) {
    .container {
        width: 100%;
        padding-left: 2%;
        padding-right: 2%;
    }

    .banner_sec .container {
        padding-left: 0;
        padding-right: 0;
    }

    .topmenu > li a {
        padding: 0 10px;
    }

    .banner_left_part {
        width: 70%;
    }

    .banner_right_part {
        width: 30%;
    }

    .banner_right_part .title.big {
        font-size: 100px;
        line-height: 110px;
    }

    .index_prod_list .prod_item {
        width: 23%;
        margin-right: 2%;
    }

    .prod_title {
        font-size: 22px;
    }

    .prod_list .prod_item {
        width: 32%;
        margin-right: 2%;
    }


    .select_box {
        width: 48%;
        max-width: 200px;
        margin-right: 2%;
    }

    .select_box:nth-child(2n+2) {
        margin-right: 0
    }

    .select_field,
    .select_field.qty,
    .simulation_select,
    .simulation_select.choose_color,
    .simulation_select .all_options {
        width: 100%;
    }

    .select_box.color_qty {
        max-width: none;
    }

    .box_width220 {
        width: calc(100% - 120px);
    }


    .select_box.color_qty .simulation_select.choose_color .all_options {
        width: 100%;
    }


}

@media(max-width: 1024px) {
    .header_sec.sticky .logo {
        width: 18%;
    }

    .banner_right_part .title.big {
        font-size: 90px;
        line-height: 100px;
    }

    .banner_right_part .info {
        margin-top: 25px;
    }

    .footer_sec  {
        margin-top: 40px;
    }

    .footer_title {
        margin-bottom: 20px;
    }

    .footer_cell {
        margin-bottom: 20px;
    }

    .prod_title {
        font-size: 20px;
    }

    .prodlist_left {
        width: 30%;
    }

    .prodlist_right {
        width: 66%;
    }

    /*.main_img {
            padding: 20px;
    }*/

    .cart_right_col {
        font-size: 14px;
    }

    .cart_table {
        display: none;
    }

    .mobile_cart_box {
        display: inline-block;
    }

    .cart_totals_row {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    /*.cart_totals_row > .fleft {
        width: 100%;
        max-width: none;
    }

    .cart_totals_row > .fleft form {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .discount_code_box {
        float: none;
        max-width: 500px;
        margin: 0 auto;
    }*/

    .cart_totals_row > .fleft {
        margin-left: 10%;
    }

    .cart_totals_row .cart_center {
        width: 100%;
        padding: 0;
        padding-left: 10%;
        margin: 20px 0;
        -webkit-justify-content: flex-start;
        justify-content: flex-start
    }

    .cart_totals_row > .fright {
        width: 100%;
    }

    .banner_sec .mobile {
        display: none;
    }

    .banner_sec .mobile_banner_box {
        display: inline-block;
    }

    /*.banner_left_part  {
            width: 100%;
            border: none;
            box-shadow: 0px 1px 3px rgba(0, 0, 0, .2);
    }

    .banner_right_part {
            width: 100%;
            /*height: auto;
    }*/


    .mobile_banner_box .banner_left_part {
        width: 70%;
    }

    .mobile_banner_box .banner_right_part {
        width: 30%;
        margin-top: 0;
    }

    .topbar .item.center {
        max-width: 48%;
    }

    .color_item {
        width: 12%;
        margin-right: 2%;
    }


    .color_item:nth-child(10n+10) {
        margin-right: 2%;
    }

}

@media(max-width: 960px) {

}

@media(max-width: 900px) {
    /* .header_sec .container,
     .topbar.mobile_hidden {
         display: none;
     }

     .header_sec.sticky .logo {
         width: 28%;
         max-width: 170px;
     }
     .mobile_header_btns_holder,
     .topbar.mobile {
         display: inline-block;
     }

     .topbar.mobile .logo {
         text-align: left;
     }

     .topbar.mobile .logo,
     .topbar.mobile .right_part{
         float: left;
         width: 50%;
         margin-top: 0;
     }

     .topbar.mobile .item {
         width: 100%;
         padding-left: 10px;
         text-align: right;
     }

     .topbar.mobile .item.center {
         max-width: none;
     }

     .topbar.mobile span {
         margin-right: 0;
     }

     .topbar .fantom {
         display: block;
     }

     .topmenu_sec {
             display: none;
     }*/

    /*.btn_mobile_menu {
            display: inline-block;
    }

    .btn_mobile_menu.fixed {
            position: fixed;
            top: 70px;
            right: 2%;
    }*/


    /*.topbar .item.center {
       width: 100%;
       max-width: none;
       margin-top: 10px;
   }*/

    /*.banner_right_part {
            padding: 25px 20px;
    }*/

    .topmenu > li a {
        padding: 0 8px;
        font-size: 15px;
    }

    .footer_item,
    .footer_item:nth-child(4n+4) {
        max-width: none;
    }

    .cart_option_info {
        width: 100%;
    }

    .cart_option_info .lbl {
        width: calc(100% - 40px);
    }
}

@media(max-width: 850px) {
    .topmenu > li a {
        font-size: 14px;
    }
}

@media(max-width: 800px) {
    .header_sec .container,
    .topbar.mobile_hidden {
        display: none;
    }

    .mobile_header {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .mobile_header_btns_holder,
    .topbar.mobile {
        display: inline-block;
    }

    .topbar.mobile .logo,
    .topbar.mobile .right_part {
        float: left;
        margin-top: 0;
    }

    .topbar.mobile .logo {
        width: 55%;
        text-align: left;
    }

    .topbar.mobile .right_part {
        width: 45%;
    }

    .topbar.mobile .item {
        width: 100%;
        padding-left: 10px;
        text-align: right;
    }

    .topbar.mobile .item.center {
        max-width: none;
    }

    .topbar.mobile span {
        margin-right: 0;
        margin-top: 5px;
    }

    .topbar .social_link {
        vertical-align: baseline;
    }

    .topbar .fantom {
        display: block;
    }

    .topmenu_sec {
        display: none;
    }

    .sec_mobile_fixed {
        margin-bottom: 20px;
    }

    .sec_mobile_fixed * {
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out;
    }

    .sec_mobile_fixed.sticky {
        position: fixed;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;;
        flex-direction: row-reverse;
        padding-bottom: 15px;
        background-color: #efefef;
        border-bottom: 1px solid #dedede;
        z-index: 1001;
    }

    .sec_mobile_fixed.sticky .topbar_box,
    .sec_mobile_fixed.sticky .header_sec {
        padding-top: 15px;
    }

    .sec_mobile_fixed.sticky .topbar_box {
        width: auto;
        min-width: 140px;
        border-bottom: none;
    }

    .sec_mobile_fixed.sticky .header_sec {
        margin-bottom: 0;
    }

    .sec_mobile_fixed.sticky .logo {
        display: none;
    }

    .sec_mobile_fixed.sticky .topbar .right_part,
    .sec_mobile_fixed.sticky .mini_cart {
        width: auto;
    }

    .sec_mobile_fixed.sticky .mobile_btns {
        margin-top: 0;
    }

    .sec_mobile_fixed.sticky .mini_cart {
        min-width: 100px;
    }

    .sec_mobile_fixed.sticky .mobile_header {
        border-bottom: none;
    }

    .sec_mobile_fixed.sticky .mobile_header .btn {
        border-right: none;
    }

    .sec_mobile_fixed.sticky .search_form {
        border: 1px solid #dedede
    }

    .inner_title span {
        padding: 0 20px;

    }

    .index_prod_list .prod_item {
        width: 31%;
    }

    .index_prod_list .prod_item:nth-child(4n+4) {
        margin-right: 2%;
    }

    .prod_list .prod_item {
        width: 48%;
    }

    .prod_list .prod_item:nth-child(3n+3) {
        margin-right: 2%;
    }

    .filter_btn_box span {
        display: none;
    }

    .btn_remove_filter {
        width: 100%;
    }

    .tabs_nav li {
        width: 50%;
    }

    .tabs_nav li a {
        width: 100%;
        margin-top: -1px;
        border-top: 1px solid #c8c8c8;
    }

    .tabs_nav li:nth-child(2n+2) a {
        border-right: none;
    }

    .tabs_nav li.current::after {
        display: none;
    }

    .left_col,
    .right_col {
        width: 100%;
    }

    .login_form .input_row.mobile {
        width: 48%;
        margin-right: 2%;
    }

    .login_form .input_row.mobile:nth-child(2) {
        margin-right: 0;
    }

    .cart_left_col,
    .cart_right_col  {
        width: 100%;
        margin-right: 0;
    }

    .cart_right_col {
        font-size: 16px;
    }

    .holder_cell {
        display: inline-block;
        float: left;
        width: 100%;
    }

    .holder_cell .cart_left_col {
        display: inline-block;
        float: left;
        width: 100%;
        border-right: none;
    }

    .holder_cell .cart_right_col {
        display: inline-block;
        float: left;
        width: 100%;
        margin-top: 40px;
    }

    .cart_options_box {
        width: 100%;
    }

    .discount_code_box {
        width: 100%;
        margin-top: 20px;
    }

    .discount_code_box .input_text {
        width: 70%;
    }

    .btn_sub_discount {
        margin-top: 0;
        width: 30%;
    }

    .mobile_banner_box .banner_mobile_only {
        display: inline-block;
    }

    .subscribe_form_box {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
    }

    .home_subscribe_box {
        flex-direction: column;
    }

    .home_subscribe_left,
    .home_subscribe_right {
        max-width: 500px;
        text-align: center;
    }

    .home_subscribe_left {
        margin-bottom: 15px;
    }


}

@media(max-width: 700px) {
    .prod_left_col {
        width: 100%;
        margin-right: 0;
        margin-top: 20px;
    }

    .prod_right_col {
        width: 100%;
        margin-top: 10px;
    }

    .prod_title_mobile {
        display: inline-block;
    }

    .prod_right_col .prod_title {
        display: none;
    }

    .footer_item {
        width: 48%;
        margin-right: 2%;
    }

    .footer_item:nth-child(2n+2) {
        margin-right: 0;
    }

    .color_item {
        width: 18%;
    }

    .cart_totals_row > .fleft {
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
    }

    .discount_code_box {
        margin-top: 0;
        margin-bottom: 0px;
    }

    .discount_code_box .ib {
        max-width: 500px;
    }

    .two_banners a {
        width: 100%;
    }

    .show_giftcard_field {
        display: inline-block;
    }

    .cart_totals_row > .fright {
        width: 100%;
    }

    .mCSB_inside > .mCSB_container {
        margin-right: 0 !important;
    }

    .color_choose {
        display: flex;
        align-items: stretch;
        padding: 10px 20px;
    }

    .color_choose:nth-child(even) {
        background-color: #f6f6f6;
    }

    .simulation_select .all_options a.mobile_all_options_close {
        position: fixed;
        top: 10px;
        right: 20px;
        width: 30px;
        height: 30px;
        display: inline-block;
        line-height: 26px;
        border-radius: 50%;
        background: #000;
        font-weight: 700;
        font-size: 20px;
        color: #fff;
        text-align: center;
        cursor: pointer;
        z-index: 10;
    }

    .simulation_select .all_options {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        line-height: normal;
        border: 1px solid #c8c8c8;
        border-top: none;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
        z-index: 1100;
        transition: all 0.15s ease-out;
        -webkit-transition: all 0.15s ease-out;
        -moz-transition: all 0.15s ease-out;
        -o-transition: all 0.15s ease-out;
    }

    .simulation_select .all_options a {
        width: 100%;
        height: 96px;
        margin-bottom: 0;
    }

    .simulation_select .all_options a.color {
        flex-shrink: 0;
        margin-top: 0;
        margin-bottom: 0;
        width: 96px;
        max-width: 100%;
        height: 96px;
        line-height: normal;
    }

    .simulation_select .all_options a.color_name {
        display: flex;
        align-items: center;
    }

    .prodlist_right .filter_options_box .simulation_select .all_options {
        position: absolute;
        width: 100%;
        top: 39px;
        left: 0;
        height: auto;
        max-height: 200px;
        padding: 10px
    }

    .prodlist_right .filter_options_box .mCSB_inside > .mCSB_container {
        margin-right: 30px !important;
    }

    .prodlist_right .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
        margin-right: 0 !important;
    }


}

@media(max-width: 600px) {
    .topbar.mobile .item {
        font-size: 15px;
    }

    .topbar.mobile .topbar_phone {
        font-size: 18px;
    }

    .topbar .social_link {
        vertical-align: middle;
    }

    .index_prod_list .prod_item {
        width: 49%;
    }

    .index_prod_list .prod_item:nth-child(2n+2) {
        margin-right: 0;
    }

    .prodlist_left {
        width: 40%;
    }

    .prodlist_right {
        width: 56%;
    }

    /*.color_item {
            width: 30%;
            margin-right: 2%;
    }


    .color_item:nth-child(10n+10) {
            margin-right: 2%;
    }*/


    .row_fantom {
        display: block;
    }

    .header_sec.sticky .row_fantom {
        display: none;
    }

    .default_color_box {
        margin-right: 10px;
        width: 45px;
    }

    .default_color_box + .select_box {
        width: calc(100% - 60px);
    }

    .select_box {
        max-width: 190px;
    }

    .lbl.pleft20 {
        padding-left: 20px;
    }

    .discount_code_box .ib {
        width: 100%;
    }

    .password_static {
        width: 100%;
    }

    .btn_open_filters,
    .btn_close_filters {
        display: inline-block;
    }

    .prodlist_left {
        position: fixed;
        top: 0;
        left: -220px;
        width: 220px;
        height: 100%;
        padding: 10px;
        background-color: #fff;
        overflow-y: scroll;
        transition: all 0.2s ease;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        z-index: 1002;
    }

    .prodlist_left.active {
        box-shadow: 0px 0px 10px #000;
    }

    .prodlist_right {
        width: 100%;
    }


    .cart_prodlist_box.mobile_visible {
        display: inline-block;
    }

    .cart_prodlist_box.pc_visible {
        display: none;
    }

    .mobile_cart_box {
        padding: 10px;
    }

    .mobile_cart_box .prod_info {
        padding-left: 10px;
    }

    .subscribe_field  {
        height: 45px;
        margin-right: 10px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .btn_subscribe {
        height: 45px;
        line-height: 45px;
    }

    .mobile600 {
        display: block;
    }

    .catalog_filters_box {
        position: fixed;
        width: 100%;
        max-width: 320px;
        top: 0;
        bottom: 0;
        right: 0;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        background-color: #f2f2f2;
    }

    .catalog_filters_header {
        order: 2;
        width: 100%;
        flex-shrink: 0;
        display: block;
        text-align: center;
    }

    .catalog_filters_header div {
        width: 100%;
    }

    .catalog_filters_header .apply_filters,
    .catalog_filters_header .reset_filters {
        width: 100%;
        height: 40px;
    }

    .close_catalog_filters {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 30px;
        background-color: #f6f6f6;
        text-align: right;
        margin-right: 0;
        font-size: 0;
        color: transparent;
        padding-right: 14px
    }

    .close_catalog_filters .fa {
        color: #786f80;
        font-size: 18px;
    }

    .catalog_filters_columns {
        flex-direction: column;
        justify-content: initial;
        order: 1;
        height: 100%;
        padding: 15px;
        padding-top: 40px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .catalog_filters_column {
        width: 100%;
    }
    /*
        .catalog_filter_menu {
            display: none;
        }
    */
    .catalog_filters_column h3 {
        position: relative;
    }

    .catalog_filters_column h3:after {
        content: '\f0d7';
        font-family: 'FontAwesome';
        position: absolute;
        top: 0;
        right: 10px;
    }

    .catalog_filters_column h3.opened:after {
        transform: rotate(180deg);
    }
    /*
        .catalog_filters_submenu {
            display: none;
        }
    */
    .mobile600 .btn_open_filters  {
        margin-bottom: 0;
    }

    .catalog_submenu_arrow {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        width: 24px;
        height: 24px;
        text-align: center;
        line-height: 24px;
        background-color: #f6f6f6;
        font-size: 20px;
    }

    .catalog_filter_menu li.opened .catalog_submenu_arrow {
        transform: rotate(180deg);
        background-color: #786f80;
        color: #fff;
    }

    .catalog_filter_menu li.opened .catalog_filters_submenu {
        display: block;
    }





}

@media(max-width: 570px) {
    .topbar {
        width: 100%;
        float: left;
        text-align: right;
    }

    .to_category {
        display: inline-block;
    }

    .mobile_banner_box .banner_left_part,
    .mobile_banner_box .banner_right_part {
        padding-bottom: 0;
    }

    .mobile_banner_box .banner_left_part,
    .mobile_banner_box .banner_right_part {
        width: 100%;
    }

    .mobile_banner_box .banner_left_part {
        border-right: none;
    }

    .mobile_banner_box .banner_right_part {
        margin-top: 20px;
    }

    .mobile_banner_box .banner_left_part img,
    .mobile_banner_box .banner_right_part img {
        position: relative;
    }

    .popup {
        width: 90%;
    }

    .home_flag {
        padding: 15px;
    }

    .home_flag strong,
    .home_flag span {
        font-size: 18px;
    }

}

@media (max-width: 480px) {
    .header_search .input_text {
        width: 180px;
    }

    .header_sec.sticky .header_search {
        width: auto;
        float: right;
        text-align: right;
    }

    .header_sec.sticky .header_search form {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 0 3px rgba(0, 0, 0, .5);
        z-index: 1001;
    }

    .header_sec.sticky .header_search .input_text {
        width: 100%;
    }

    .header_sec.sticky .mini_cart {
        width: 100px;
        margin-left: 20px;
    }

    /*.header_sec.sticky .btn_open_search {
        display: inline-block;
    }*/

    .orders_table {
        display: inline-block;
        overflow: auto;
    }

    .color_item {
        width: 30%;
        margin-right: 2%;
    }

    .btn_filters_new {
        max-width: 100%;
        width: 100%;
    }

    .prodlist_right .filter_options_box {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

    .home_subscribe_right {
        flex-direction: column;
    }

    .home_subscribe_right .input_text,
    .home_subscribe_right .button {
        width: 100%;
        text-align: center;
    }

    .home_subscribe_right .input_text {
        margin-bottom: 10px;
    }

}

@media(max-width: 450px) {
    .header_search {
        width: 100%;
        float: left;
        text-align: left;
    }
    .header_sec.sticky .logo {
        width: 47%;
    }
}
@media(max-width: 420px) {


    .row_fantom {
        display: none;
    }

    .logo {
        width: 100%;
    }

    /*.topbar .item {
            padding: 0 18px;
    }*/

    .inner_title,
    .page_title {
        background: none;
    }

    .footer_item {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .footer_cell .img_row {
        text-align: center;
    }

    .footer_social_link {
        float: none;
    }

    .copyrights .container {
        -webkit-justify-content: center;
        justify-content: center;
    }

    .tabs_nav li {
        width: 100%;
    }

    .tabs_nav li a {
        border-right: none;
    }

    .input_row .input_text {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .input_row .input_text:last-child {
        margin-bottom: 0;
    }

    .login_form .input_row.mobile {
        width: 100%;
        margin-right: 0;
    }

    .lbl_payment_lng {
        width: 100%;
    }

    /*select_box {
        width: 100%;
        margin-right: 0;
    }

    .simulation_select,
    .select_field.qty,
    .simulation_select .all_options {
        width: 100%;
    }*/


    .foption_name {
        width: calc(100% - 40px);
    }

    .password_row {
        flex-wrap: wrap;
    }

    .password_row .button-o {
        width: 100%;
        margin-left: 0;
    }

    .password_static {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .password_static .button-o {
        flex-shrink: 0;
    }

    .simulation_select .all_options a.color {
        width: 60px;
        height: 60px;
    }

    .simulation_select .all_options a {
        height: 60px;
    }

    .color_choose.current a.color:after {
        font-size: 27px;
    }

    .download_login_box .ip_cell {
        width: 100%;
    }
}