@charset "UTF-8";

body {
    line-height: 21px;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #777;
    background-color: #fff;
    background-attachment: fixed;
}

a {
    color: #333;
    text-decoration: none !important;
}

a,
button {
    -webkit-transition: color .7s ease, border-color .7s ease, background-color .7s ease;
    transition: color .7s ease, border-color .7s ease, background-color .7s ease;
}

a:hover {
    color: #0186c8;
    text-decoration: none;
}

a:hover,
button:hover {
    -webkit-transition: color .1s ease, border-color .1s ease, background-color .1s ease;
    transition: color .1s ease, border-color .1s ease, background-color .1s ease;
}

::-moz-selection {
    background: #0186c8;
    color: #fff;
}

::selection {
    background: #0186c8;
    color: #fff;
}

::-moz-selection {
    background: #0186c8;
    color: #fff;
}

input::-moz-placeholder {
    color: #b2b2b2;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #b2b2b2;
}

[placeholder]:focus::-webkit-input-placeholder {
    text-indent: 10em;
    color: transparent;
}

.d-block {
    display: block;
}


/* ------------------------------------------------

        2. General classes

------------------------------------------------ */

.align_center {
    text-align: center;
}

.align_left {
    text-align: left;
}

.align_right {
    text-align: right;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

img.alignleft {
    margin: 0 20px 15px 0;
}

img.alignright {
    margin: 0 0 15px 20px;
}

img.aligncenter {
    margin-bottom: 15px;
}

.wrapper {
    overflow: hidden;
}

.wide_layout {
    overflow-x: hidden;
    background: #fff;
    margin: auto;
}

.wide_layout {
    width: 100%;
}

.section_offset {
    position: relative;
}

.section_offset:not(:last-child) {
    margin-bottom: 40px;
}

.section_offset.menu_slider {
    margin-bottom: 30px !important;
}

[class*="page_wrapper"] {
    background: #f8f8f8;
}

.page_wrapper {
    padding: 40px 0 60px;
}

.page_wrapper.main_wrapper {
    padding-top: 30px;
}

.secondary_page_wrapper {
    padding: 10px 0 60px;
}

.thumbnail {
    display: block;
    overflow: hidden;
}

.thumbnail img {
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.thumbnail:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.theme_box {
    position: relative;
    padding: 20px 19px;
    border: 1px solid #eaeaea;
    background-color: #fff;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.theme_box:not(:last-child) {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.theme_box + .theme_box:not(:last-child) {
    border-top-width: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.theme_box + .theme_box:last-child {
    border-top-width: 0;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.top_box,
.bottom_box {
    padding: 15px 19px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.bottom_box {
    border-top: none;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.top_box {
    border-bottom: none;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.dropdown {
    visibility: hidden;
}


/*firefox only*/

.dropdown.visible {
    z-index: 105;
}

.dropdown.children > .animated_item,
.dropdown:not(.children) .animated_item {
    -webkit-transform-origin: 50% 0 0;
    transform-origin: 50% 0 0;

    -webkit-transform: rotate3d(0, 1, 0, 90deg);
    transform: rotate3d(0, 1, 0, 90deg);

    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;

    -webkit-backface-visibility: hidden;
}

.dropdown.children.active > .animated_item,
.dropdown:not(.children).active .animated_item {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
}

.on_the_sides {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.on_the_sides > [class*="_side"] {
    display: table-cell;
    vertical-align: middle;
}

.on_the_sides > .left_side {
    width: 50%;
}

header.on_the_sides > .left_side {
    width: 80%;
}

.on_the_sides > .right_side {
    text-align: right;
}

.on_the_sides > .right_side > * {
    display: inline-block;
    text-align: left;
}

.v_centered > * {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.on_the_sides h1,
.on_the_sides h2,
.on_the_sides h3,
.on_the_sides h4,
.on_the_sides h5,
.on_the_sides h6 {
    padding-top: 0;
    margin-bottom: 0;
}

.v_centered > *:not(:first-child) {
    margin-left: 10px;
}

.v_baseline > * {
    display: inline-block;
    vertical-align: baseline;
}

.v_baseline > *:not(:first-child) {
    margin-left: 8px;
}

.relative {
    position: relative;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.transparent {
    opacity: 0;
}

.invisible {
    opacity: 0;
    visibility: hidden;
}

.visible {
    opacity: 1;
    visibility: visible;
}


/* ------------------------------------------------

        3. Basic elements

------------------------------------------------ */


/* --------------------------------------------
            3.1 Typography
    -------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    display: block;
    color: #333;
    font-weight: inherit;
    line-height: 1em;
    margin-bottom: 14px;
}

h1,
.h1 {
    font-size: 30px;
}

h2,
.h2 {
    font-size: 24px;
}

h3,
.h3 {
    font-size: 22px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: 16px;
}

h6,
.h6 {
    font-size: 14px;
}

p:not(:last-of-type):not(.subcaption) {
    margin-bottom: 15px;
}

p:last-of-type + [class*="button"]:last-child {
    margin-top: 15px;
}

small {
    font-size: 12px;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.bold {
    font-weight: 600;
}

.sub {
    color: #777;
}

mark {
    display: inline-block;
    padding: 0 2px;
    color: #fff;
    background: #018bc8;
}

[class*="dropcap"]::first-letter {
    float: left;
    font-weight: 900;
    margin-right: 10px;
}


/* firefox fix */

/* acnchor style */

blockquote {
    position: relative;
    padding: 19px 20px;
    background-color: #fff;
    border: 1px solid #eaeaea;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

blockquote::before {
    content: "";
    display: block;
    width: 41px;
    height: 33px;
    background: url("../images/quotes.png") no-repeat;
    position: absolute;
    top: 13px;
    right: 13px;
}

blockquote.type_2 {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 19px 18px 33px;
    line-height: 24px;
}

blockquote.type_2::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 18px;
    bottom: 18px;
    display: block;
    width: 3px;
    background: #018bc8;
}

blockquote .author_info {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    padding-right: 50px;
}

blockquote:not(.type_2) .author_info {
    margin-bottom: 4px;
}

blockquote.type_2 .author_info {
    margin-top: 7px;
}

/* Breadcrumbs */

.breadcrumbs_container {
    margin-bottom: 43px;
}

.breadcrumbs > li {
    display: inline-block;
}

.breadcrumbs > li:not(:last-child)::after {
    content: "/";
    display: inline-block;
    margin: 0 4px;
}

.subcaption {
    margin-bottom: 10px;
}

.page_title {
    font-size: 30px;
    margin-bottom: 27px;
}

.icon_link > i[class|="icon"] {
    color: #777;
    font-size: 19px;
    display: inline-block;
    margin-right: 5px;
}

hr {
    border-color: #eaeaea;
}

hr:not([class]) {
    margin: 0;
}

hr.type_2 {
    border-color: #777;
}


/* --------------------------------------------
            3.2 Buttons
    -------------------------------------------- */

.icon_btn,
.theme_button,
.button_grey,
.button_blue,
.def_icon_btn,
.button_dark_grey,
.wishlist_button,
.compare_button {
    font-size: 14px;
    line-height: 21px !important;
    text-align: center;
    display: inline-block;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.product-link-medium {
    font-size: 18px;
    line-height: 20px;
}


/* sizes */

.theme_button,
.button_grey,
.button_blue,
.button_dark_grey {
    padding: 8px 15px;
}

.mini_btn {
    font-size: 13px;
    padding: 4px 10px 3px;
}

.middle_btn,
.middle_btn.button_is_check {
    padding: 8px 12px;
    font-size: 16px;
}

.big_btn {
    padding: 11px 20px;
    font-size: 16px;
    font-weight: 600;
}

.icon_btn,
.def_icon_btn {
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 13px;
}

.icon_btn.middle_btn,
.def_icon_btn.middle_btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.icon_btn.big_btn,
.def_icon_btn.big_btn {
    width: 43px;
    height: 43px;
    font-size: 20px;
}

/* colors */

.theme_button {
    background: #fff;
    color: #0699da !important;
    border: 1px solid #0699da !important;
}

.theme_button:hover {
    color: #fff !important;
    background: #4ac4fa !important;
    border-color: #4ac4fa !important;
}

.button_grey {
    color: #018bc8;
    background: #f8f8f8;
}

.button_grey_2 {
    color: #333;
    background: #f8f8f8;
}

.button_blue,
.button_blue:visited,
.theme_button:hover,
.theme_button:focus,
.button_grey_2:hover,
.button_grey_2:focus {
    color: #fff !important;
    background: #4ac4fa;
    border-color: #4ac4fa;
}

.button_dark_grey {
    background: #777;
    color: #fff;
}

.button_grey:hover,
.button_grey:focus,
.button_grey.active,
.button_blue:hover,
.button_blue:focus {
    color: #fff;
    background: #018bc8;
}

.button_blue[data-add-product-to-cart-icon],
.button_blue[data-add-product-to-cart-icon]:visited,
.button_dark_blue {
    color: #fff;
    background: #018bc8;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #018bc8;
    padding: 7px !important;
}

.button_blue[data-add-product-to-cart-icon]:hover,
.button_blue[data-add-product-to-cart-icon]:focus {
    height: 38px !important;
    line-height: 22px !important;
    background: #fff;
    /*padding: 7px 12px 8px;*/
}

.button_blue[data-add-product-to-cart-icon]:hover::before,
.button_blue[data-add-product-to-cart-icon]:focus::before {
    color: #018bc8 !important;
}

.button_dark_blue:hover,
.button_dark_blue:focus {
    color: #fff;
    background: #4ac4fa;
}

.button_dark_grey:hover,
.button_dark_grey:focus {
    color: #fff;
    background: #333;
}

.link_blue {
    color: #fff !important;
    background: #4ac4fa !important;
}

li:hover > .link_blue,
.link_blue:hover {
    color: #fff !important;
    background: #018bc8 !important;
}


/* icon's in buttons */

.middle_btn i[class|="icon"] {
    font-size: 18px;
}
.social_facebook i[class|="icon"],
.social_instagram i[class|="icon"] {
    font-size: 24px;
}

.big_btn i[class|="icon"] {
    font-size: 24px;
}

.icon_btn i[class|="icon"] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
}

.def_icon_btn::after,
.def_icon_btn::before,
.icon_btn i[class|="icon"]::after,
.icon_btn i[class|="icon"]::before {
    display: inline-block;
    vertical-align: middle;
}

.def_icon_btn::before,
.icon_btn i[class|="icon"]::after {
    content: "";
    /*height: 100%;*/
}

.theme_button:not(.icon_btn) > [class|="icon"],
.button_grey:not(.icon_btn) > [class|="icon"],
.button_blue:not(.icon_btn) > [class|="icon"],
.button_dark_grey:not(.icon_btn) > [class|="icon"] {
    display: inline-block;
    height: 1px;
    margin-right: 7px;
}

.def_icon_btn::after {
    /*font-family: 'fontello', sans-serif;*/
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.buttons_row > [class*="button"] {
    float: left;
    height: 38px;
}

.buttons_row > [class*="button"]:not(:last-child) {
    margin-right: 5px;
}

.buttons_col > li:not(:first-child) {
    margin-top: 5px;
}

form .def_icon_btn {
    font-size: 24px;
}

#open_shopping_cart {
    position: relative;
    padding: 5px 10px 9px 65px;
    border: 1px solid #eaeaea;
    margin-left: 15px;
    line-height: 18px;
    text-align: left;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

#open_shopping_cart > * {
    display: block;
    font-weight: bold;
    line-height: 15px;
}

.shopping_cart .title,
#open_shopping_cart .title {
    font-size: 13px;
    color: #b2b2b2;
}

#open_shopping_cart .title::after {
    font-size: 9px;
}

#open_shopping_cart .total_price {
    font-size: 18px;
    color: #333;
}

#open_shopping_cart::before {
    /*font-family: 'fontello', sans-serif;*/
    /*content: '\eb77';*/
    color: #4ac4fa;
    font-size: 42px;
    /*line-height: 42px;*/
    position: absolute;
    left: 18px;
    top: 50%;
    /*margin-top: -22px;*/
    transform: translateY(-50%);

    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*content: "\f11c";*/
    content: "\f126";
}

.compare_button[data-amount]::after,
.wishlist_button[data-amount]::after,
#open_shopping_cart[data-amount]::after {
    content: attr(data-amount);
}

.compare_button::after,
.wishlist_button::after,
#open_shopping_cart::after {
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 41px;
    color: #333;
    font-size: 13px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

#open_shopping_cart.active,
#open_shopping_cart.active::after {
    background-color: #0186c8;
    border-color: #0186c8;
}

#open_shopping_cart.active *,
#open_shopping_cart.active::after,
#open_shopping_cart.active::before {
    color: #fff;
}

.close {
    position: absolute;
    top: 2px;
    right: 0;
    cursor: pointer;
}

.close::before {
    /*content: '\ee3e';*/
    /*font-family: 'fontello', sans-serif;*/
    color: inherit;
    font-size: 16px;

    -webkit-transition: color .4s ease;
    transition: color .4s ease;
}

.close:hover::before {
    color: #333;
}


/* social buttons */

.social_btns > li {
    float: left;
    margin: 0 4px 4px 0;
}

a[class*="social_"],
button[class*="social_"] {
    color: #fff;
}

.social_facebook {
    background-color: #39599f;
}

.social_instagram {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.social_tiktok {
    background-color: #000;
}

.social_skype {
    background-color: #00aff0;
}

/* product buttons */

.add_to_wishlist::after {
    /*content: '\eb0c';*/
}

.add_to_compare::after {
    /*content: '\e82d';*/
}

#back_to_top {
    position: fixed;
    bottom: 50px;
    left: 50px;
    font-size: 28px;
    z-index: 120;
}

#back_to_top::after {
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /*content: "\eaba";*/
    content: "\f128";
}

.open_menu {
    color: #b2b2b2;
    font-size: 23px;
}

[class*="toggle_menu"] {
    display: none;
    border: 1px solid #eaeaea;
    width: 100%;
    height: 50px;
    text-align: center;
    color: #b2b2b2;
    font-size: 23px;
    z-index: 2;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.open_menu.active,
[class*="toggle_menu"].active,
.compare_button:hover,
.wish_button:hover,
.wishlist_button:hover,
.compare_button:hover::after,
.wishlist_button:hover::after {
    color: #fff;
    border-color: #018bc8;
    background-color: #018bc8;
}

/*!!! COULD NOT FIND USAGE OF THIS CLASS IN THE WHOLE PROJECT !!!*/
.open_menu::before {
    /*content: '\eb1a';*/
    /*font-family: 'fontello', sans-serif;*/
}

[class*="toggle_menu"]::before {
    /*font-family: 'fontello', sans-serif;*/
    /*content: "\eed2";*/
    font-family: 'flaticon_knopka', sans-serif;
    content: "\f127";
}

.compare_button,
.wishlist_button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #eaeaea;
    position: relative;
    color: #4ac4fa;
}

.new-style_header-item .header_square_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #eaeaea;
    position: relative;
    color: #4ac4fa !important;
    padding: 0 !important;
    margin-right: 0;
    border-radius: 3px;
}

.new-style_header-item .header_square_button[data-large-desctop-menu-btn] {
    min-width: 115px;
    font-size: 16px;
}

.new-style_header-item .header_square_button.button_blue_b2b {
    display: flex;
    min-width: 85px;
    font-size: 16px;
    margin-right: 8px;
}

.new-style_header-item .header_square_button[data-large-desctop-menu-btn]:not(:hover),
.new-style_header-item .header_square_button.button_blue_b2b {
    color: #fff !important;
    background-color: #4ac4fa;
}

.new-style_header-item .header_square_button:hover {
    color: #fff !important;
    border-color: #018bc8;
    background-color: #018bc8;
}

.new-style_header-item .header_square_button i {
    font-size: 22px;
    color: inherit !important;
    padding: 0 !important;
}

.compare_button::after,
.wishlist_button::after {
    /*left: 47%;*/
    left: 50%;

    -webkit-transition: inherit;
    transition: inherit;
}

.compare_button[data-amount]::before,
.wishlist_button[data-amount]::before {
    /*margin-left: -2px;*/
    margin-left: 0;
}

.compare_button::before,
.wishlist_button::before {
    /*font-family: 'fontello', sans-serif;*/
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    margin-top: -11px;
}

.compare_button::before,
.wishlist_button::before,
.add_to_wishlist::before {
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.compare_button::before {
    /*content: '\e82d';*/
    font-size: 23px;
}

.wishlist_button::before,
.add_to_wishlist::before {
    /*content: '\ebaa';*/
    content: "\f10d";
    font-size: 26px;
}

/* Not required stylesheets (may be removed). Start*/

/* Not required stylesheets (may be removed). End */


/* --------------------------------------------
            3.3 Forms
    -------------------------------------------- */

form:not(:last-child) {
    margin-bottom: 2px;
}

input:not([type="submit"]),
textarea,
.active_option {
    border: 1px solid #eaeaea;
    padding: 8px 10px 8px 12px;
    height: 38px;
    width: 100%;
    background-color: #fff;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.active_option {
    color: #b2b2b2;
}

textarea {
    resize: none;
    height: auto;
    display: block;
}

select {
    width: 100%;
    cursor: pointer;
    padding: 5px;
    border: 1px solid #eaeaea;
    padding: 7px 8px;
    background-color: #fff;
}

label {
    display: inline-block;
    cursor: pointer;
}

.required::after {
    content: "*";
    color: #ff0000;
    display: inline-block;
    margin-left: 4px;
}

input[type="radio"],
input[type="checkbox"] {
    display: none;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
    position: relative;
    width: auto !important;
    margin: 0 17px 0 0 !important;
    padding-left: 32px;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[type="radio"] + label::before,
input[type="checkbox"] + label::before {
    content: "";
    display: block;
    text-align: center;
    /*font-family: 'fontello';*/
    font-family: 'flaticon_knopka';
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    color: inherit;
    background: #fff;
    /*border: 1px solid #eaeaea;*/
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

input[type="checkbox"] + label::before {
    font-size: 12px;
}

input[type="radio"] + label::before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

input[type="radio"] + label:empty {
    width: 22px !important;
    padding-left: 0;
    margin: 0 !important;
}

input[type="checkbox"]:checked + label::before {
    /*content: '\ebb1';*/
    content: '\f111';
}

input[type="radio"]:checked + label::before {
    /*content: '\edb9';*/
    content: '\f11d';
}

form:not(.type_2) label {
    float: left;
    width: 136px;
}

form:not(.type_2) label[for] {
    margin-top: 7px;
}

form:not(.type_2) .form_el {
    float: left;
    width: calc(100% - 136px);
}



form input:not([type="submit"]).error {
    border-color: #ff0000;
}

form.type_2 label {
    margin-bottom: 5px;
}

.custom_select {
    min-width: 100px;
    position: relative;
    background-color: #fff;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sort_select {
    width: 150px;
    margin-right: 10px;
}

.active_option {
    position: relative;
    cursor: pointer;
}

.active_option.active {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.active_option::after {
    position: absolute;
    /*right: 15px;*/
    right: 5px;
    /*font-size: 13px !important;*/
    margin-top: 1px;
}

.options_list {
    color: #b2b2b2;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: -1px;
}

.open_select + .dropdown.active > li:first-child > a {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

.options_list > li:not(:first-child) > a {
    border-top: none;
}

.options_list > li > a {
    display: block;
    padding: 8px 13px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.options_list > li > a:hover {
    color: #fff;
    background-color: #4ac4fa;
    border-color: #4ac4fa !important;
}

.options_list > li:last-child > a {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.ui-slider {
    height: 7px;
    background: #f8f8f8;
    border: 1px solid #eaeaea;
    max-width: 220px;
}

.ui-slider .ui-slider-handle {
    display: block;
    width: 19px;
    height: 19px;
    background: #fff;
    border: 1px solid #eaeaea;
    cursor: pointer;
    top: -7px;
}

.ui-slider .ui-slider-handle::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background: #b2b2b2;
    position: absolute;
    top: 4px;
    left: 4px;
}

.ui-slider .ui-slider-handle,
.ui-slider .ui-slider-handle::before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.range {
    margin-bottom: 15px;
}

.range > * {
    display: inline;
}

.checkboxes_list {
    color: #333;
}

legend,
.checkboxes_list > li:not(:last-child),
form > ul > li:not(:last-child) {
    margin-bottom: 10px;
}

form li:last-child > [class|="col"] > [class*="button"]:only-child {
    margin-top: 10px;
}

.min {
    width: 120px;
}

.search {
    text-align: left;
}

.search {
    color: #b2b2b2;
}

.search > * {
    height: 44px !important;
    border-top: 2px solid #4ac4fa !important;
    border-bottom: 2px solid #4ac4fa !important;
}

.newsletter > input,
.search > *:first-child {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.search > *:first-child {
    border-right: 1px solid #4ac4fa;
    border-left: 2px solid #4ac4fa;
}

.newsletter > button,
.search > *:last-child {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.search > *:last-child {
    border-right: 2px solid #4ac4fa;
}

.search .def_icon_btn {
    width: 50px;
    height: 44px;
}

.search > button::after {
    /*content: '\ee2e';*/
    content: "\f105";
}

.search > button:hover {
    border-color: #0186c8 !important;
}

.search input {
    width: calc(100% - 235px);
    padding: 9px 13px;
    font-size: 16px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.newsletter > input[type="email"] {
    width: calc(100% - 42px);
}

.newsletter > input[type="email"]:first-child {
    border-right: none;
}

.newsletter > input[type="email"]:last-child {
    border-left: none;
}

.newsletter > button,
.newsletter > input[type="email"] {
    height: 38px !important;
    float: left;
}

.newsletter button {
    width: 42px;
}

.qty > * {
    border: 1px solid #eaeaea !important;
    float: left;
    height: 38px;
    text-align: center;
}

.qty > *:first-child {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.qty > *:last-child {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.qty > input[type="text"] {
    width: calc(100% - 76px);
    border-left: none;
    border-right: none;
    padding-left: 5px;
    padding-right: 5px;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.qty button {
    width: 38px;
    padding: 0;
    color: inherit;
    font-size: 16px;
}

/* --------------------------------------------
            3.4 Lists
    -------------------------------------------- */

[class*="list_type_"] {
    overflow: hidden;
}

[class*="list_type_"]:not(:last-child) {
    margin-bottom: 18px;
}

[class*="list_type_"] > li:not(:last-child) {
    margin-bottom: 3px;
}

[class*="list_type_"]:not(.links) > li,
[class*="list_type_"].links > li > a {
    position: relative;
    padding-left: 18px;
}

[class*="list_type_"].links > li > a::before,
[class*="list_type_"]:not(.links) > li::before {
    /*font-family: 'fontello', sans-serif;*/
    font-family: 'flaticon_knopka', sans-serif;
}

[class*="list_type_"].links > li > a::before,
[class*="list_type_"]:not(.links) > li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #b2b2b2;

    -webkit-transition: background-color .7s ease, color .7s ease;
    transition: background-color .7s ease, color .7s ease;
}

[class*="list_type_"].links > li > a:hover::before {
    color: #018bc8;

    -webkit-transition: background-color .1s ease, color .1s ease;
    transition: background-color .1s ease, color .1s ease;
}

.list_type_2:not(.links) > li::before,
.list_type_2.links > li > a::before {
    /*content: "\ebb1";*/
    content: "\f111";
}

.topbar > li,
.bottombar > li {
    display: inline-block;
    text-align: left;
}

.topbar li {
    position: relative;
}

.bottombar > li:not(:last-child)::after {
    color: #c8c8c8;
    content: "|";
    display: inline-block;
    margin: 0 4px;
}

.topbar > li:not(:last-child)::after {
    color: #c8c8c8;
    content: "|";
    display: inline-block;
    margin: 0 8px;
}


/* sidebar menu list */

.list_of_links li a {
    display: block;
    padding: 7px 0 9px;
    border-bottom: 1px solid #eaeaea;
}

.list_of_links li:last-child a {
    border-bottom: none;
}

.search .categories_list {
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    margin-top: 2px;
}

.search .categories_list li:first-child a {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.categories_list {
    position: relative;
    text-align: left;
}

.categories_list li a {
    display: block;
    padding: 9px 13px 8px;
    background: #fff;
    position: relative;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-right-color: #4ac4fa;
    border-left-color: #4ac4fa;
    border-bottom-color: #eaeaea;
}

.categories_list li:last-child a {
    border-bottom-color: #4ac4fa;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.site_settings li:not(:first-child) a::after,
.categories_list li:not(:first-child) a::after,
.options_list > li:not(:first-child) > a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 101;
    top: -1px;
    height: 1px;
    background: #4ac4fa;

    -webkit-transition: opacity .7s ease;
    transition: opacity .7s ease;
}

.site_settings li:hover a::after,
.categories_list li:hover a::after,
.options_list > li:hover > a::after {
    opacity: 1;

    -webkit-transition: opacity .05s ease;
    transition: opacity .05s ease;
}

.categories_list li:hover a {
    color: #fff;
    background: #4ac4fa;
    border-color: #4ac4fa;
}

.all {
    color: #018bc8;
}

[class*="c_info_"]:not(ul) {
    padding-left: 24px;
    position: relative;
    margin-top: 15px;
}

[class*="c_info_"]:not(ul)::after {
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    /*line-height: 1;*/
    line-height: 20px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    color: #4ac4fa;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 1px;
}

.c_info_location::after {
    /*content: "\eb70";*/
    content: "\f101";
}

.c_info_phone::after {
    /*content: "\ee7f";*/
    content: "\f102";
}

.c_info_mail::after {
    /*content: "\ee30";*/
    content: "\f103";
}

.c_info_schedule::after {
    /*content: "\ee8d";*/
    content: "\f12f";
}

/* --------------------------------------------
        3.5 Tooltips
    -------------------------------------------- */

.tooltip_container {
    position: relative;
    z-index: 101;
}

.tooltip_container .tooltip {
    position: absolute;
    display: block;
    background: #777;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    padding: 2px 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-border-radius: 3px;
    border-radius: 3px;

    -webkit-transition: -webkit-transform .4s ease, opacity .4s ease, visibility .4s ease;
    -webkit-transition: opacity .4s ease, visibility .4s ease, -webkit-transform .4s ease;
    transition: opacity .4s ease, visibility .4s ease, -webkit-transform .4s ease;
    transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
    transition: transform .4s ease, opacity .4s ease, visibility .4s ease, -webkit-transform .4s ease;
}

.tooltip_container:hover {
    z-index: 102;
}

.tooltip_container:hover .tooltip {
    opacity: 1;
    visibility: visible;

    -webkit-transition: -webkit-transform .2s ease, opacity .2s ease, visibility .2s ease;
    -webkit-transition: opacity .2s ease, visibility .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, visibility .2s ease, -webkit-transform .2s ease;
    transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
    transition: transform .2s ease, opacity .2s ease, visibility .2s ease, -webkit-transform .2s ease;
}

.tooltip_container .tooltip::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
}

.tooltip_container .tooltip.top,
.tooltip_container .tooltip.bottom {
    left: 50%;
    bottom: 100%;
    margin-bottom: 11px;

    -webkit-transform: translateX(-85%) skewX(30deg);
    transform: translateX(-85%) skewX(30deg);
}

.tooltip_container .tooltip.right {
    left: 100%;
    top: 50%;
    margin-left: 11px;

    -webkit-transform: translate(30%, -50%) skewX(-30deg);
    transform: translate(30%, -50%) skewX(-30deg);
}

.tooltip_container .tooltip.left {
    right: 100%;
    margin-right: 11px;
    top: 50%;

    -webkit-transform: translate(-30%, -50%) skewX(30deg);
    transform: translate(-30%, -50%) skewX(30deg);
}

.tooltip_container .tooltip.bottom {
    top: 100%;
    bottom: auto;
    margin-top: 11px;
}

.tooltip_container:hover .tooltip.top,
.tooltip_container:hover .tooltip.bottom {
    -webkit-transform: translateX(-50%) skewX(0deg);
    transform: translateX(-50%) skewX(0deg);
}

.tooltip_container:hover .tooltip.left,
.tooltip_container:hover .tooltip.right {
    -webkit-transform: translate(0%, -50%) skewX(0deg);
    transform: translate(0%, -50%) skewX(0deg);
}

.tooltip.top::before {
    top: 100%;
    left: 50%;
    margin: -1px 0 0 -9px;
    border-left: 9px solid transparent;
    border-top: 7px solid #777;
    border-right: 9px solid transparent;
}

.tooltip.right::before {
    top: 50%;
    right: 100%;
    margin: -9px -1px 0 0;
    border-top: 9px solid transparent;
    border-right: 7px solid #777;
    border-bottom: 9px solid transparent;
}

.tooltip.left::before {
    top: 50%;
    left: 100%;
    margin: -9px 0 0 -1px;
    border-top: 9px solid transparent;
    border-left: 7px solid #777;
    border-bottom: 9px solid transparent;
}

.tooltip.bottom::before {
    bottom: 100%;
    left: 50%;
    margin: 0 0 -1px -9px;
    border-left: 9px solid transparent;
    border-bottom: 7px solid #777;
    border-right: 9px solid transparent;
}


/*webkit only*/

@media only screen and (-webkit-min-device-pixel-ratio: 0) {

    .table_layout:not(.list_view) {
        width: calc(100% + 1px);
    }

    .table_layout:not(.list_view) {
        width: 100%;
    }
}


/* --------------------------------------------
        3.6 Tables
    -------------------------------------------- */

.table_wrap {
    overflow: hidden;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.table_wrap:not(:last-child) {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.top_box + .table_wrap:last-child {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.top_box + .table_wrap:not(:last-child) {
    -webkit-border-radius: 0;
    border-radius: 0;
}

table {
    width: 100%;
    table-layout: fixed;
}

table th,
table td {
    border: 1px solid #eaeaea;
    padding: 14px 19px;
}

table td {
    background: #fff;
}

table th {
    font-weight: 600;
    line-height: 18px;
    background: #f8f8f8;
}

table th:first-child,
table td:first-child {
    border-left: none;
}

table th:last-child,
table td:last-child {
    border-right: none;
}

table > *:first-child > tr:first-child th,
table > *:first-child > tr:first-child td {
    border-top: none;
    vertical-align: middle;
    text-align: center;
}

table > *:last-child > tr:last-child th,
table > *:last-child > tr:last-child td {
    border-bottom-width: 0;
    vertical-align: middle;
}

tfoot {
    font-size: 16px;
    font-weight: 600;
}

table .product_title {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 6px;
}

th.product_image_col,
.row_title_col {
    width: 132px;
}

td.product_image_col {
    text-align: center;
}

.product_title_col {
    width: 35.35%;
}

.product_qty_col {
    width: 140px;
}

.product_actions_col {
    width: 68px;
}

.product_price_col {
    width: 105px;
}

.sc_product_info {
    font-size: 13px;
    line-height: 16px;
}

.total,
.subtotal {
    font-size: 16px;
    font-weight: 600;
}

.total {
    color: #018bc8;
}

/* order review table */

.order_review .product_title_col {
    width: 61.40%;
}

.order_review .product_sku_col,
.order_review .product_qty_col,
.order_review .product_price_col {
    width: 130px;
}

.order_review .product_total_col {
    width: 150px;
}

.order_review .product_qty_col {
    width: 80px;
}

.order_review .product_image_col {
    width: 110px;
}

.order_review tbody td {
    height: 120px;
}

.order_review tfoot {
    font-size: inherit;
}


/* wishlist table */

.wishlist_table s {
    display: block;
}

.order_review tbody td,
.orders_table td,
.wishlist_table td,
.shopping_cart_table td {
    padding-top: 19px;
    padding-bottom: 19px;
    vertical-align: middle;
}


/* orders table */

.orders_table .ship_col,
.orders_table .product_action_col {
    width: 175px;
}

.orders_table .order_number_col,
.order_table th {
    width: 141px;
}


/* ------------------------------------------------

        4. Header

------------------------------------------------ */

#header {
    width: inherit;
}

.top_part {
    padding-top: 8px;
    padding-bottom: 8px;
}
.top_part .topbar li button {
    color: #333;
}
.top_part .topbar .phone-number a {
    color: #3fbffc;
    font-weight: 600;
    font-size: 14px;
}
.logo {
    display: inline-block;
    position: relative;
}

.logo:after {
    content: "®";
    position: absolute;
    top: -4px;
    right: -9px;
    height: 10px;
    width: 10px;
    display: block;
    pointer-events: none;
    color: #059ad8 !important;
}

#header .topbar,
.top_part p {
    font-size: 13px;
}

#header .topbar .submenu li {
    -webkit-box-shadow: 0 7px 8px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 7px 8px 0 rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, .2);
}

.bottom_part {
    padding-top: 29px;
    padding-bottom: 32px;
    width: inherit;
}

.call_us > * {
    display: inline-block;
}

.call_us span {
    font-size: 20px;
    vertical-align: bottom;
}

.call_us b {
    font-size: 16px;
    color: #0186c8;
    vertical-align: 0;
}

.account_bar > li {
    float: left;
}

.account_bar > li:not(:first-child) {
    margin-left: 4px;
}

.search_category {
    width: 185px;
    position: relative;
    z-index: 117;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.open_categories {
    padding: 10px 30px 10px 13px;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.open_categories::after {
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 16px;
    font-size: 13px;
    color: #b2b2b2;
}


/* --------------------------------------------
            4.1 Change currency & language
    -------------------------------------------- */

.site_settings {
    font-size: 13px;
    cursor: pointer;
    margin-left: 15px;
    color: #333;
    position: relative;
    z-index: 122;
}

.site_settings img {
    vertical-align: middle;
    margin-top: -2px;
}

.site_settings .current {
    position: relative;
}

.active_option::after,
.site_settings .current::after,
.open_categories::after,
#open_shopping_cart .title::after {
    /*font-family: 'fontello', sans-serif;*/
    font-family: 'flaticon_knopka', sans-serif;
    display: inline-block;
    margin-left: 8px;
    /*content: '\e8c8';*/
    content: '\f129';
    /*font-size: 10px;*/
    font-size: 20px;
}

.site_setting_list {
    position: absolute;
    top: 100%;
    right: -40%;
    text-align: left;
}

.site_setting_list.language {
    right: -14px;
    width: 125px;
}

.site_setting_list > li:not(:first-child) > a {
    border-top: none;
}

.site_setting_list > li:first-child > a {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.site_setting_list a {
    display: block;
    padding: 3px 10px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.site_setting_list > li:last-child > a {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.site_setting_list a.current,
.site_setting_list a:hover {
    background: #4ac4fa;
    color: #fff;
    border-color: #4ac4fa;
}

.contacts-list a:hover {
    background: #4ac4fa;
    color: #fff !important;
    border-color: #4ac4fa;
}


/* --------------------------------------------
            4.2 Shopping cart
    -------------------------------------------- */

.shopping_cart {
    position: absolute;
    top: 100%;
    right: -40%;
    width: 263px;
    margin-top: 2px;
}

.shopping_cart .title + * {
    margin-top: 8px;
}

.shopping_cart .animated_item:not(:last-child) {
    border-bottom: none;
}

.shopping_cart .animated_item:first-child {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.shopping_cart .animated_item {
    background: #fff;
    padding: 12px 19px 13px;
    border: 1px solid #eaeaea;
}

.shopping_cart .animated_item:last-child {
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.sc_product {
    position: relative;
    padding: 2px 25px 0 0;
    font-size: 13px;
    line-height: 16px;
}

.product_name {
    display: block;
    margin-bottom: 5px;
}

.sc_product .product_thumb {
    display: block;
    float: left;
    margin-right: 10px;
}

.total_info {
    font-size: 13px;
}

.total_info li {
    margin: 1px 0;
}

.total_info [class*="price"] {
    display: inline-block;
    width: 65px;
}

.total_info .total {
    color: #333;
    text-align: right;
}

/* --------------------------------------------
            4.3 Main navigation
    -------------------------------------------- */

#main_navigation_wrap {
    width: inherit;
    position: relative;
    background-color: #fff;
    z-index: 125;
}

#main_navigation_wrap::after,
#main_navigation_wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    border-top: 1px solid #eaeaea;
}

#main_navigation_wrap::after {
    top: 0;
}

#main_navigation_wrap::before {
    bottom: 0;
}

[data-add-product-to-cart] i {
    margin-right: 5px;
    font-size: 20px;
}

button.middle_btn.button_white:before {
    /*content: "\f00c";*/
    content: "\f111";
    /*margin-right: 5px;*/
    display: inline-block;
    /*font: normal normal normal 14px/1 FontAwesome;*/
    font: normal normal normal 14px/1 flaticon_knopka;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;

    vertical-align: middle;
}

.qty_container button.middle_btn.button_blue,
.qty_container ~ button.middle_btn.button_blue,
.qty_container button.middle_btn.button_dark_blue,
.qty_container ~ button.middle_btn.button_dark_blue {
    padding: 7px 10px 8px;
}

.qty_container button.middle_btn.button_blue[data-add-product-to-cart],
.qty_container ~ button.middle_btn.button_blue[data-add-product-to-cart],
.qty_container button.middle_btn.button_dark_blue[data-add-product-to-cart],
.qty_container ~ button.middle_btn.button_dark_blue[data-add-product-to-cart]
[data-add-product-to-cart] {
    padding-right: 12px;
}

[data-add-product-to-cart]:before {
    margin-right: 7px;
}

.qty_container button.middle_btn.button_blue:not([data-add-product-to-cart]),
.qty_container ~ button.middle_btn.button_blue:not([data-add-product-to-cart]),
.qty_container button.middle_btn.button_dark_blue:not([data-add-product-to-cart]),
.qty_container ~ button.middle_btn.button_dark_blue:not([data-add-product-to-cart]) {
    width: 42px;
}

.qty_container button.middle_btn.button_blue:before,
.qty_container ~ button.middle_btn.button_blue:before,
.qty_container button.middle_btn.button_dark_blue:before,
.qty_container ~ button.middle_btn.button_dark_blue:before {
    /*content: '\eb77';*/
    display: inline-block;
    /*font: normal normal normal 14px/1 FontAwesome;*/
    /*font-family: 'fontello', sans-serif;*/
    font-size: 22px;
    text-rendering: auto;
    /*-webkit-font-smoothing: antialiased;*/
    color: #fff;


    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*content: "\f11c";*/
    content: "\f126";
}



.full_width_nav {
    display: table;
    width: 100%;
    position: relative;
    z-index: 102;
    z-index: 124;
}

.full_width_nav.active {
    z-index: 1003;
}

.full_width_nav > ul {
    display: table-row;
}

.full_width_nav > ul > li {
    display: table-cell;
    vertical-align: middle;
    /*border-left: 1px solid #42a5d6;*/
    /*border-right: 1px solid #42a5d6;*/
    /*background-color: #0186c8;*/
    position: relative;
    background-clip: padding-box;
    width: 100%;

    -webkit-transition: border-color .7s ease, background-color .7s ease;
    transition: border-color .7s ease, background-color .7s ease;
}

.full_width_nav > ul > li.show_on_large_desctop {
    width: 75%;
}

.main_navigation > ul > li > a {
    display: block;
    font-size: 15px;
    padding: 16px 30px 17px 15px;
    position: relative;
    color: #fff;
}

.main_navigation:not(.full_width_nav) > ul > li {
    float: left;
}

.main_navigation > ul li {
    position: relative;
}

.main_navigation:not(.full_width_nav) > ul > li > a {
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 16px 18px 17px;
}


/* main theme submenu */

.theme_menu > li {
    position: relative;
}

.theme_menu > li > a {
    position: relative;
    display: block;
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 14px 40px 13px 19px;
}

.cabinet-container > .theme_menu > li.current > a {
    background-color: #0186c8;
    color: #fff;
}

.cabinet-container > .theme_menu > li:hover > a {
    background-color: #4ac4fa;
    color: #fff;
}

.theme_menu .all_hidden > li > a {
    border-top: none;
}

.theme_menu > li:not(:first-child) > a {
    border-top-width: 0;
}

.theme_menu > li:first-child > a {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.theme_menu > li:last-child > a {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.theme_menu > li > a::before {
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    border-width: 1px 0 0 0;
    border-color: #018bc8;
    border-style: solid;
    opacity: 0;

    -webkit-transition: opacity .7s ease;
    transition: opacity .7s ease;
}

.theme_menu > li:not(:first-child) > a::before {
    content: "";
}

.theme_menu > li:hover > a,
.theme_menu > .current > a,
.theme_menu > .tablet_active > a,
.theme_menu > .mobile_active > a {
    color: #007237;
}

/* submenu */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
}

.submenu .submenu {
    top: -1px;
    left: 100%;
    min-width: 200px;
    margin-left: -1px;
}

.submenu > .has_submenu:not(:first-child) > .submenu > li:first-child > a {
    padding-top: 12px;
}

.submenu > .has_submenu:first-child > .submenu {
    top: 0;
}

.submenu .submenu > li:first-child > a {
    -webkit-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
}

/*.has_submenu > a::after,*/
.has_megamenu > a::after {
    /*content: "\eda4";*/
    content: "\f12a";
    right: 18px;
    /*font-family: 'fontello', sans-serif;*/
    font-family: 'flaticon_knopka', sans-serif;
    position: absolute;
    top: 50%;
    color: #b2b2b2;
    margin-top: -10px;
}

.has_submenu .has_submenu > a {
    padding-right: 40px;
}


/* submenu in main navigation */

.main_navigation > ul > .has_submenu > a {
    /*padding-right: 30px !important;*/
}

.main_navigation > ul > .has_submenu > .submenu > li:first-child > a,
.main_navigation > ul > .has_submenu > .submenu > li:first-child .submenu > li:first-child > a {
    border-top-width: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.topbar > .has_submenu > a::after,
/*.main_navigation > ul > .has_submenu > a::after,*/
.main_navigation > ul > .has_megamenu > a::after {
    display: inline-block;
    margin-left: 8px;
    /*content: "\f0d7";*/
    content: "\f129";
    /*font: normal normal normal 14px/22px FontAwesome;*/
    font: normal normal normal 22px/22px flaticon_knopka;
    color: #000;
    font-size: 11px;
    display: none;
}

.topbar > .has_submenu:hover > a::after,
.main_navigation > ul > .has_submenu:hover > a::after,
.main_navigation > ul > .has_megamenu:hover > a::after,
.topbar > .current > a::after,
.main_navigation > ul > .current > a::after,
.topbar > .tablet_active > a::after,
.main_navigation > ul > .tablet_active > a::after,
.topbar > .mobile_active > a::after,
.main_navigation > ul > .mobile_active > a::after {
    color: #fff;
}

.main_navigation > ul > li .has_submenu:not(:first-child) > .submenu > li:first-child > a {
    border-top-width: 1px;
    padding-bottom: 9px;
    -webkit-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
}


/* submenu in tobar */

.topbar .has_submenu .has_submenu > a::after {
    right: 7px;
}

.topbar > .has_submenu:hover > a,
.topbar > .has_submenu:hover > a::after,
.topbar > .tablet_active > a,
.topbar > .tablet_active > a::after,
.topbar > .mobile_active > a,
.topbar > .mobile_active > a::after {
    color: #018bc8;
}

.topbar > li > .submenu {
    left: 0;
    left: -8px;
    padding-top: 9px;
}

.topbar .submenu {
    min-width: 175px !important;
}

.topbar .contacts-list.submenu {
    min-width: 177px !important;
}


.topbar > li .submenu a {
    padding: 8px 7px 8px 10px !important;
}

.topbar .submenu > li:hover > a,
.topbar .submenu > .current > a,
.topbar .submenu > .tablet_active > a,
.topbar .submenu > .mobile_active > a {
    color: #fff;
    background-color: #4ac4fa !important;
    border-color: #4ac4fa !important;
}

.topbar .submenu > li > a::before {
    border-color: #4ac4fa;
}

.topbar > .has_submenu > a {
    position: relative;
    padding-right: 12px;
    padding-left: 10px;
}

.topbar > .has_submenu > a::after {
    right: -10px;
    right: 0;
    color: #333;
}

.topbar > .has_submenu > a {
    padding-right: 0;
}
.topbar > .has_submenu > a::after {
    display: inline-block;
    position: absolute;
    /*margin-left: 8px;*/
    /*content: "\f0d7";*/
    content: "\f129";
    /*font: normal normal normal 14px/22px FontAwesome;*/
    font: normal normal normal 22px/22px flaticon_knopka;
    /*color: #000;*/
    font-size: 16px;

    top: auto;
    bottom: -3px;
    right: -11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    color: #b2b2b2;
    margin: 0 !important;
    height: 16px;
    width: 16px;
}

.topbar .submenu > .has_submenu:first-child > .submenu {
    top: 0;
}

.main_navigation > ul > .current > a,
.main_navigation .mobile_active > a,
.main_navigation .tablet_active > a,
.main_navigation:not(.full_width_nav) > ul > li:hover > a {
    color: #fff !important;
    background: #018bc8 !important;
    border-color: #018bc8 !important;
}

.full_width_nav > ul > li > .submenu {
    margin-top: 1px;
}

.full_width_nav > ul > li:hover,
.full_width_nav > ul > .current,
.full_width_nav > ul > li.tablet_active,
.full_width_nav > ul > li.mobile_active {
    background: #4ac4fa;

    -webkit-transition: border-color .1s ease, background-color .1s ease;
    transition: border-color .1s ease, background-color .1s ease;
}


.full_width_nav > ul > li:hover > a,
.full_width_nav > ul > .current > a,
.full_width_nav > ul > li.tablet_active > a,
.full_width_nav > ul > li.mobile_active > a {
    color: #f5f5f5;

    -webkit-transition-duration: .1s;
    transition-duration: .1s;
}

.show_on_large_desctop .full_width_nav > ul > li > a.active img,
.show_on_large_desctop .full_width_nav > ul > li > a.active svg,
.full_width_nav > ul > li:hover > a img,
.full_width_nav > ul > li:hover > a svg,
.full_width_nav > ul > .current > a img,
.full_width_nav > ul > .current > a svg,
.full_width_nav > ul > li.tablet_active > a img,
.full_width_nav > ul > li.tablet_active > a svg,
.full_width_nav > ul > li.mobile_active > a img,
.full_width_nav > ul > li.mobile_active > a svg {
    transition: .3s ease;
    filter: brightness(0) invert(1);
}

.full_width_nav > ul > li:not(:first-child),
.main_navigation:not(.full_width_nav) > ul > li:not(:first-child) > a {
    border-left-width: 0;
}

.full_width_nav > ul > li:last-child {
    width: 1%;
    white-space: nowrap;
}

.mega_menu,
.topbar .submenu,
.main_navigation .submenu {
    opacity: 0;
    visibility: hidden;

    -webkit-transition: -webkit-transform .4s ease, opacity .4s ease, visibility .4s ease;
    -webkit-transition: opacity .4s ease, visibility .4s ease, -webkit-transform .4s ease;
    transition: opacity .4s ease, visibility .4s ease, -webkit-transform .4s ease;
    transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
    transition: transform .4s ease, opacity .4s ease, visibility .4s ease, -webkit-transform .4s ease;

    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}

.cats .mega_menu {
    top: -1px;
    left: 100%;
    margin-left: -1px;
    -webkit-border-radius: 0 3px 3px 3px;
    border-radius: 0 3px 3px 3px;

    -webkit-backface-visibility: hidden;
}

.main_navigation .mega_menu {
    top: 100%;
    left: 0;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;

    -webkit-backface-visibility: hidden;
}

.md_no-touch .main_navigation.active .has_megamenu:hover > .mega_menu.active,
.md_touch .tablet_active > .mega_menu.active,
.md_no-touch .has_submenu:hover > .submenu,
.md_touch .tablet_active > .submenu {
    opacity: 1;
    visibility: visible;
    z-index: 126;

    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: none;
    transition: none;
}

#header > .left_menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.menu-open {
    padding-right: 17px;
    overflow: hidden;
}

.menu-open .mega_menu {
    max-height: calc(100vh - 178px);
    overflow: auto;
}

@media only screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 1200px) {
    .mega_menu,
    .topbar .submenu,
    .main_navigation .submenu {
        -webkit-transition-property: -webkit-transform;
        -webkit-transition-timing-function: ease;
        -webkit-transition-duration: 0.5s;
        -webkit-transition-property: all;
        transition-property: all;
        transition-timing-function: ease;
        transition-duration: 0.5s;
    }

    a,
    .full_width_nav > ul > li {
        -webkit-transition-property: all;
        -webkit-transition-timing-function: ease;
        -webkit-transition-duration: 0.7s;
        transition-property: all;
        transition-timing-function: ease;
        transition-duration: 0.7s;
    }

    .full_width_nav > ul > li:hover,
    .full_width_nav > ul > .current,
    .full_width_nav > ul > li.tablet_active,
    .full_width_nav > ul > li.mobile_active,
    .full_width_nav > ul > li:hover > a,
    .full_width_nav > ul > .current > a,
    .full_width_nav > ul > li.tablet_active > a,
    .full_width_nav > ul > li.mobile_active > a {
        -webkit-transition-property: all;
        -webkit-transition-timing-function: ease;
        -webkit-transition-duration: 0.1s;
        transition-property: all;
        transition-timing-function: ease;
        transition-duration: 0.1s;
    }
}


/* --------------------------------------------
                4.3.1 Mega menu
        -------------------------------------------- */

.mega_menu {
    border: 1px solid #eaeaea;
    background: #fff;
    position: absolute;
    padding: 14px 20px;
    z-index: 101;
    white-space: nowrap;
}

.main_navigation > ul > .has_megamenu {
    position: static;
    vertical-align: middle;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.full_width_nav .mega_menu {
    width: 100% !important;
    border-top-width: 0;
}

.mega_menu.type_2,
.mega_menu.type_3 {
    width: 880px;
    padding: 23px 20px 13px;
}

.mega_menu.type_3 {
    overflow: hidden;
    padding: 23px 20px;
}

.mega_menu.type_4 {
    padding: 23px 20px 30px;
}

.mega_menu.type_2 img {
    margin-top: 5px;
}

.mega_menu.type_2 h1,
.mega_menu.type_2 h2,
.mega_menu.type_2 h3,
.mega_menu.type_2 h4,
.mega_menu.type_2 h5,
.mega_menu.type_2 h6,
.mega_menu.type_4 h1,
.mega_menu.type_4 h2,
.mega_menu.type_4 h3,
.mega_menu.type_4 h4,
.mega_menu.type_4 h5,
.mega_menu.type_4 h6,
.mega_menu.type_4 .h6, .mega_menu.type_2 .h6 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 8px;
}

.mega_menu .h6 {
    font-size: 14px;
    color: #333;
    font-weight: inherit;
    line-height: 1em;
}

.mega_menu .mega_menu_item {
    display: inline-block;
    white-space: normal;
}

.mega_menu_item hr {
    margin: 18px 0 15px;
}

.mega_menu .list_of_links > li > a {
    border: none;
    padding: 5px 10px;
}

.mega_menu .list_of_links > li > a:hover {
    background-color: #f8f8f8;
}

.mega_menu.type_3 .mega_menu_item {
    display: block;
    margin-left: 0 !important;
}

.mega_menu.type_3 .mega_menu_item:first-child {
    float: left;
    margin-top: -8px;
}

.mega_menu.type_3 .mega_menu_item:first-child + .mega_menu_item {
    overflow: hidden;
    padding-left: 15px;
}

.full_width_nav .mega_menu.type_4 {
    padding-bottom: 20px;
}

.full_width_nav .mega_menu.type_4 .mega_menu_item {
    display: block;
    float: left;
}

/* --------------------------------------------
                4.3.2 Sticky menu
        -------------------------------------------- */

#main_navigation_wrap.sticky {
    position: fixed;
    top: 0;
    z-index: 123;
}

/* --------------------------------------------
                4.3.3 Sticky header
        -------------------------------------------- */

/* --------------------------------------------
            4.4 Header type 2
    -------------------------------------------- */

#header.type_2 .topbar {
    margin-bottom: 15px;
}

#header.type_2 #open_shopping_cart,
#header.type_4 #open_shopping_cart,
#header.type_5 #open_shopping_cart,
#header.type_6 #open_shopping_cart {
    margin: 0;
}

#header.type_2 .site_settings {
    margin-bottom: 8px;
}


/* --------------------------------------------
            4.5 Header type 4
    -------------------------------------------- */

#header.type_4 .bottom_part {
    padding: 20px 0;
}

#header.type_4 .topbar > .has_submenu > .submenu {
    left: auto;
    right: 0;
}

#header.type_4 .topbar > .has_submenu > .submenu .submenu {
    left: auto;
    right: 100%;
    margin: 0 -1px 0 0;
}

#header.type_4 .submenu .submenu > li:first-child > a {
    -webkit-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
}


/* --------------------------------------------
            4.6 Header type 5
    -------------------------------------------- */


/* --------------------------------------------
            4.7 Header type 6
    -------------------------------------------- */

#header.type_6 .top_part {
    background: #f8f8f8;
}

#header.type_6 .call_us:only-child {
    margin-top: 20px;
}

#header.type_6 .main_header_row {
    display: table;
    width: 100%;
}

#header.type_6 .main_header_row > * {
    display: table-cell;
    float: none;
    vertical-align: middle;
}


/* ------------------------------------------------

        5. Widgets & Shortcodes

------------------------------------------------ */


/* --------------------------------------------
            5.1 Infoblocks
    -------------------------------------------- */

.infoblock.type_1 {
    line-height: 18px;
    padding: 25px 21px 24px 67px;
}

.infoblock.type_1 i {
    display: block;
    font-size: 30px;
}

.infoblock.type_2 {
    text-align: center;
    padding: 11px 15px;
}

.infoblock.type_2 > p {
    font-size: 14px;
    line-height: 12px;
}

.infoblock.type_2 .caption {
    padding: 0 5px;
    margin-bottom: 5px;
}

.infoblock.type_2 [class*="button"] {
    margin-top: 15px;

    -webkit-transition: color .7s ease, background-color .7s ease;
    transition: color .7s ease, background-color .7s ease;
}

.infoblock.type_2:hover [class*="button"] {
    background: #018bc8;

    -webkit-transition: color .1s ease, background-color .1s ease;
    transition: color .1s ease, background-color .1s ease;
}

.infoblock.type_2 i {
    display: block;
    font-size: 40px;
    margin: 0 0 10px;
}

.infoblock.type_3 {
    padding: 30px 20px 25px;
}

.infoblock.type_3 i[class|="icon"] {
    float: left;
    margin-right: 20px;
    font-size: 48px;
}

.infoblock.type_3 i[class|="icon"]::before {
    margin-left: 0;
    margin-right: 0;
}

.infoblock.type_3 .caption {
    overflow: hidden;
    padding-top: 5px;
    margin-bottom: 12px;
    line-height: 20px;
}

.product_infoblocks .infoblock.type_2 .caption {
    padding: 15px 5px 15px;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 20px;
}

.product_infoblocks .infoblock.type_2 i {
    font-size: 50px;
    margin: 0;
    padding: 12px 10px 10px;
}

.product_infoblocks .infoblock.type_2 > p {
    font-size: 14px;
    line-height: 16px;
}

.infoblock .caption {
    color: #018bc8;
    text-transform: uppercase;
}

.infoblock a,
.infoblock p,
.infoblock .caption,
.infoblock i {
    -webkit-transition: color .7s ease;
    transition: color .7s ease;
}

.infoblock p {
    font-size: 12px;
}

.infoblock {
    display: block;
    background: #efefef;
    position: relative;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: color .7s ease, background-color .7s ease;
    transition: color .7s ease, background-color .7s ease;
}

.infoblock i {
    color: #018bc8;
}

.infoblock .caption {
    font-weight: 600;
    padding: 15px 5px 0;
    display: block;
    line-height: 18px;
}

.mega_menu.menu_slider .infoblock {
    margin-bottom: 15px;
}

.menu_slider .infoblock:not(:last-child) {
    margin-bottom: 11px;
}

.menu_slider .infoblock {
    padding: 15px
}

.menu_slider .infoblock i {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    float: left;
    padding-right: 8px;
}

.menu_slider .infoblock .infoblock_btn {
    width: 100%;
    margin: 0 auto;
}

.menu_slider .infoblock button {
    -webkit-transition: all .5s ease !important;
    transition: all .5s ease !important;
}

.menu_slider .infoblock:hover button {
    -webkit-transition: all 0s ease !important;
    transition: all 0s ease !important;
}

.menu_slider .infoblock .infoblock_btn button.button_dark_blue {
    border: 2px solid #018bc8;
    color: #018bc8;
    background: #ffffff;
    overflow: hidden;
    margin-top: 13px;

}

.menu_slider .infoblock:hover .infoblock_btn button.button_dark_blue {
    border: 2px solid #FFF;
    color: #fff;
    background: #4ac4fa
}
.menu_slider .infoblock:hover .infoblock_btn button.button_dark_blue i {
    color: #fff;
}

/* --------------------------------------------
            5.2 Product items
    -------------------------------------------- */

.product_item {
    position: relative;
    padding: 19px;
    background: #fff;
    border: 1px solid #eaeaea;
    background-clip: padding-box;
}

s {
    font-weight: 400;
    color: #b2b2b2;
}

.product_item .countdown {
    margin-bottom: 14px;
}

.product_item .description {
    line-height: 18px;
}

.product_item .product_info {
    margin-top: 7px;
    white-space: nowrap;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.product_info .product_price:only-child {
    float: none;
}

.product_item .image_wrap {
    text-align: center;
}

.product_price {
    font-size: 16px;
    color: #018bc8;
}

.product_item .bottombar {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.bottombar.mobile_hidden_block + .description_section {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_item .product_info + [class*="button"] {
    margin-top: 17px;
}

.product_item .topbar {
    font-size: 13px;
}

.product_item .rating_and_review .topbar a {
    white-space: nowrap;
}

/* Product actions (default type) */

.actions_wrap {
    position: absolute;
}

.product_item:not(.type_3) .actions_wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;

    -webkit-transition: opacity .7s ease;
    transition: opacity .7s ease;

    z-index: 1;
}

.actions_wrap > .centered_buttons {
    width: 67%;
    margin: auto;
    display: inline-block;
    vertical-align: middle;
}

.actions_wrap > .centered_buttons > [class*="button"]:not(:first-child) {
    margin-top: 5px;
}

.actions_wrap::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.product_item:not(.type_3) .actions_wrap .add_to_compare,
.product_item:not(.type_3) .actions_wrap .add_to_wishlist {
    position: absolute;
    bottom: 21px;
}

.product_item:not(.type_3) .actions_wrap .add_to_wishlist {
    left: 23px;
}

.product_item:not(.type_3) .actions_wrap .add_to_compare {
    right: 23px;
}

.product_item:hover .actions_wrap {
    opacity: 1;

    -webkit-transition: opacity .1s ease;
    transition: opacity .1s ease;
}


/* Labels */

[class*="label_"] {
    position: absolute;
    /*top: 24px;*/
    /*left: 24px;*/
    top: 20px;
    left: 20px;
    padding: 6px 7px 5px;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    line-height: 14px;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 0 3px 3px 3px;
    border-radius: 0 3px 3px 3px;
}

[class*="label_"] {
    position: absolute;
    /*top: 24px;*/
    /*left: 24px;*/
    top: 20px;
    left: 20px;
    padding: 6px 7px 5px;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    line-height: 14px;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: 0 3px 3px 3px;
    border-radius: 0 3px 3px 3px;
}

[class*="label_"] + [class*="label_"] {
    top: calc(20px*2 + 7px);
}

[class*="label_"] + [class*="label_"] + [class*="label_"] {
    top: calc(20px*3 + 7px*2);
}

[class*="label_"] + [class*="label_"] + [class*="label_"] + [class*="label_"] {
    top: calc(20px*4 + 7px*3);
}

[class*="label_"] + [class*="label_"] + [class*="label_"] + [class*="label_"] + [class*="label_"] {
    top: calc(20px*5 + 7px*4);
}

.label_offer {
    background: #ff4557;
}

/* Rating */

.pags::after,
.social_btns::after,
.account_bar::after,
.theme_box::after,
form > ul > li:after,
.rating::after,
.buttons_row::after,
.comment > article::after {
    content: "";
    display: block;
    clear: both;
}

.product_info .rating {
    margin-top: 3px;
}

.rating li {
    float: left;
    width: 14px;
    height: 14px;
    /*color: #fccd36;*/
    color: darkorange;
    cursor: pointer;
    position: relative;
    z-index: 1;
    line-height: 13px;
}

.rating li::after,
.rating li::before {
    /*font-family: 'fontello', sans-serif;*/
    font-family: 'flaticon_knopka', sans-serif;
    position: absolute;
    left: 0;
}

.rating li::before {
    /*content: "\eb0f";*/
    content: "\f11e";
    z-index: 101;
    font-size: 13px;
}
.rating li:not(.active)::before {
    font-weight: 700;
}

.rating li::after {
    /*content: "\e8a9";*/
    content: "\f11f";
    font-size: 12px;
    opacity: 0;
    z-index: 102;
}

.rating .active::after {
    opacity: 1;
}


/* arrivals main product */

/* product items in table layout */

.table_layout.list_view_products .product_item .description,
.table_layout.list_view_products .product_item .actions_wrap [class*="button_"]:not(.quick_view) {
    display: none;
}

.table_layout.list_view .product_item {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.table_layout.list_view_products .product_item > * {
    display: table-cell;
}

.table_layout.list_view_products .product_item .image_wrap {
    width: 246px;
    margin: 0;
    padding: 0;
}

.table_layout.list_view_products .product_item [class*="label_"] {
    top: 4px;
    left: 4px;
}

.table_layout.list_view_products .product_item .product_title {
    font-size: 18px;
    line-height: 22px;
    display: block;
    margin-bottom: 4px;
}

/* --------------------------------------------
                5.2.1 Product item type 2
        -------------------------------------------- */

.product_item.type_2 {
    padding-bottom: 75px;
}

.product_item.type_2 .buttons_row {
    position: absolute;
    bottom: 20px;
}

.product_item.type_2 .buttons_row .add_to_wishlist,
.product_item.type_2 .buttons_row .add_to_compare {
    opacity: 0;

    -webkit-transition: background-color .7s ease, color .7s ease, opacity .7s ease;
    transition: background-color .7s ease, color .7s ease, opacity .7s ease;
}

.product_item.type_2:hover .buttons_row .add_to_wishlist,
.product_item.type_2:hover .buttons_row .add_to_compare {
    opacity: 1;

    -webkit-transition: background-color .7s ease, color .7s ease, opacity .1s ease;
    transition: background-color .7s ease, color .7s ease, opacity .1s ease;
}

.product_item.type_2:hover .buttons_row .add_to_wishlist:hover,
.product_item.type_2:hover .buttons_row .add_to_compare:hover {
    -webkit-transition: background-color .1s ease, color .1s ease, opacity .1s ease;
    transition: background-color .1s ease, color .1s ease, opacity .1s ease;
}


/* --------------------------------------------
                5.2.2 Product item type 3
        -------------------------------------------- */

.product_item.type_3 .image_wrap {
    overflow: hidden;
}

.product_item.type_3 .actions_wrap {
    left: 1px;
    right: 1px;
    bottom: 0;
    background-color: #fff;
    padding: 3px 19px 13px;

    -webkit-transition: -webkit-transform .7s ease;
    transition: -webkit-transform .7s ease;
    transition: transform .7s ease;
    transition: transform .7s ease, -webkit-transform .7s ease;

    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.product_item.type_3 .actions_wrap [class*="button"] {
    margin: 3px;
}

.product_item.type_3:hover .actions_wrap {
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease;

    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}


/* --------------------------------------------
                5.2.3 Single product
        -------------------------------------------- */

.single_product {
    max-width: 360px;
    float: left;
    margin-right: 30px;
}

.single_product_description {
    position: relative;
    overflow: hidden;
}

.image_preview_container {
    margin-bottom: 10px;
    position: relative;

    -webkit-backface-visibility: hidden;
}

.image_preview_container * {
    -webkit-backface-visibility: hidden;
}

.open_qv {
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 109;
}

.open_qv i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_product_description .topbar {
    font-size: 13px;
}

.single_product_description .v_centered > *:not(:first-child) {
    margin-left: 8px;
}

.single_product_description h3 {
    margin-bottom: 5px;
}

table.product_info {
    width: auto;
    table-layout: auto;
    margin-bottom: 9px;
}

table.product_info * {
    text-align: left;
}

table.product_info td {
    border: none;
    padding: 0 0 3px;
    background: transparent;
}

table.product_info tr:last-child td {
    padding-bottom: 0;
}

table.product_info td:first-child {
    padding-right: 10px;
}

.description_section {
    /*margin-bottom: 14px;*/
}

.description_section_2:not(:last-child) {
    margin-bottom: 10px;
}

.single_product_description hr {
    margin: 0 0 15px;
}

.single_product_description .buttons_row {
    margin-top: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.single_product .product_preview {
    margin-bottom: 20px;
}

.single_product_description .product_price {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 15px;
}

[class*="description_section"] .title {
    min-width: 30px;
}

.product_price_table {
    border: none;
}

.product_price_table td {
    border-color: #f8f8f8;
    border-width: 2px;
    padding-top: 12px;
    padding-bottom: 13px;
}

.product_price_table .price {
    padding-top: 2px;
    font-size: 20px;
    font-weight: 600;
}

.special_price {
    color: #018bc8;
}

.old_price {
    color: #b2b2b2;
}

.save {
    color: #ff4557;
}

.product_price_table tfoot {
    font-size: 13px;
    font-weight: 400;
}

.product_price_table tfoot td {
    padding: 6px 10px;
}

.product_price_table .countdown_title {
    margin-right: 7px;
}

.hurry_message {
    padding: 5px 0;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.hurry_message > span {
    color: #ff4557;
}

.theme_box .image_preview_container [class*="label_"] {
    top: 5px;
    left: 5px;
}

.theme_box .product_price_table td {
    background: #f8f8f8;
    border-color: #fff;
}

/* --------------------------------------------
            5.3 Countdown
    -------------------------------------------- */

.countdown {
    color: #ff4557;
}

.countdown .countdown-section {
    display: block;
    float: left;
}

.countdown .countdown-row {
    overflow: hidden;
}

.countdown:not(.simple) {
    text-align: center;
}

.countdown:not(.simple) .countdown-row {
    display: inline-block;
}

.countdown:not(.simple) .countdown-section:not(:last-child) {
    margin-right: 2px;
}

.countdown:not(.simple) .countdown-section {
    width: 35px;
}

.countdown:not(.simple) .countdown-amount {
    display: block;
    font-weight: 700;
    background: #f8f8f8;
    padding: 1px 0;
    margin-bottom: 1px;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.countdown:not(.simple) .countdown-period {
    display: block;
    font-size: 10px;
    line-height: 16px;
    background: #f8f8f8;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.countdown.simple {
    display: inline-block;
    font-size: 13px;
}

.countdown.simple .countdown-row {
    display: block;
}

.countdown.simple .countdown-amount {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-right: 2px;
}

.countdown.simple .countdown-section:not(:last-child) {
    margin-right: 8px;
}


/* --------------------------------------------
            5.4 Tabs & Tour sections
    -------------------------------------------- */

.ts_nav,
.tabs_nav {
    position: relative;
    z-index: 101;
}

.tabs_nav {
    margin-right: 65px;
}

.ts_nav {
    width: 196px;
    float: left;
}

.ts_containers_wrap,
.tab_containers_wrap {
    position: relative;
    z-index: 100;
}

.tab_containers_wrap {
    top: -1px;

    overflow: hidden;
}

.product_item .description_section.v_centered {
    margin-top: 10px !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.product_item .description_section.v_centered .qty_container ~ [data-add-product-to-cart-icon] {
    margin-left: auto;
}


.novelty_section .tab_containers_wrap .product-list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    position: relative;

    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    overflow-x: auto;
}

.novelty_section .tab_containers_wrap .product_list_container:after {
    top: 0;
    border: 1px solid #eaeaea;
    left: 0;
    right: 0;
    bottom: 69px;
    position: absolute;
    content: "";
    pointer-events: none;
}

.tab_containers_wrap .product-list .product_item {
    display: block;
    min-width: calc(100%/6);
    width: 260px;
    /*overflow: hidden;*/
}

.tab_containers_wrap .product-list .product_item:hover {
    z-index: 1;
}

.tab_containers_wrap .product-list .product_item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-color: transparent;
    pointer-events: none;
    transition: .3s ease;
    opacity: 0;
}

.tab_containers_wrap .product-list .product_item:hover::after {
    border: 1px solid #bbb;
    -webkit-box-shadow: 2px 3px 5px #dedede;
    box-shadow: 2px 3px 5px #dedede;
    transition: .1s ease;
    opacity: 1;
    z-index: 1;
}

.novelty_section .tab_containers_wrap .product-list .product_item:not(:last-child) {
    border-right-width: 0;
}

.novelty_section .novelty_container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.novelty_section .tags_container {
    height: calc(100% - 52px);
    position: relative;
    margin-top: -1px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;

}

.novelty_section .novetly-list-title {
    padding: 15px 20px 14px 20px;
    background-color: #009AE0;
    color: #fff;
    position: relative;

    font-size: 14px;
    height: 52px;
    width: 100%;
    text-align: left;
    border: 1px solid #eaeaea;
    background-color: #fff;
    letter-spacing: 1px;
    color: #018bc8;
    font-weight: 600;

    -webkit-border-radius: 3px 3px 0 0;

    border-radius: 3px 3px 0 0;
}

.novelty_section .tags_container .tags_cloud {
    margin-left: 0;
}

.novelty_section .tags_container .tags_cloud li {
    float: none;
    margin: 0 0 8px 0;
}

.novelty_section .tags_container .tags_cloud li.sea_all {
    position: absolute;
    bottom: 15px;
    left: 19px;
    right: 19px;
    margin: 0;
}

.novelty_section .tags_container .tags_cloud li.sea_all a {
    height: 38px;
}

.novelty_section .tags_container .tags_cloud li a {
    display: block;
    padding: 8px 15px;
    text-align: left;
}

.novelty_section .tags_container .tags_cloud li a.active {
    color: #fff;
    background: #018bc8;
    border-color: #018bc8;
}

.novelty_section .tags_container .tags_cloud li a:hover {
    color: #fff;
    background: #4ac4fa;
    border-color: #4ac4fa;
}

.ts_containers_wrap {
    left: -1px;
    overflow: hidden;
}

.ts_containers_wrap,
.tab_containers_wrap {
    -webkit-transition: height .4s ease;
    transition: height .4s ease;
}

.tabs .tab_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    -webkit-transition: opacity .7s ease, visibility .7s ease;
    transition: opacity .7s ease, visibility .7s ease;
}

.tabs:not(.products) .tab_container {
    padding: 19px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 0 3px 3px 3px;
    border-radius: 0 3px 3px 3px;
}

.tab_container .owl-item.first > * {
    -webkit-border-top-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.ts_nav > li > a,
.tabs_nav > li > a {
    padding: 14px 17px 15px;
    display: block;
    background: #fff;
    border: 1px solid #eaeaea;
}

.tabs_nav.theme_menu > li > a {
    padding: 11px 40px 10px 19px !important;
}

.tabs_nav.theme_menu > li > a::before {
    right: 0;
}

.ts_nav > li:not(:last-child) {
    margin-bottom: 5px;
}

.ts_nav > li > a {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.tabs:not([class*="type"]) .tabs_nav li:not(:last-child),
.tabs.type_2 .tabs_nav li:not(:last-child) {
    margin-right: 5px;
}

.tabs:not([class*="type"]) .tabs_nav li,
.tabs.type_2 .tabs_nav li {
    float: left;
}

.tabs:not([class*="type"]) .tabs_nav > li > a {
    font-size: 22px;
}

.tabs.type_2 .tabs_nav > li > a {
    font-size: 16px;
    padding: 9px 17px 10px;
}

.tabs.type_2 .tabs_nav > li > a {
    font-size: 14px;
}

.tabs.many_tabs .tabs_nav > li > a {
    padding-left: 8px;
    padding-right: 8px;
}

.ts_nav > li.active > a,
.ts_nav > li:hover > a,
.tabs_nav > li.active > a,
.tabs_nav > li:hover > a {
    color: #fff;
    background: #0186c8;
    border-color: #0186c8;
}

.tabs:not(.type_3) .tabs_nav li a {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.tabs.type_3 {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.tabs.type_3 .tabs_nav {
    width: 228px;
    position: relative;
}

.tabs.type_3 .tabs_nav::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-width: 0 0 1px 1px;
    border-style: solid;
    border-color: #eaeaea;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.tabs.type_3 .tabs_nav,
.tabs.type_3 .tab_containers_wrap {
    display: table-cell;
}

.tabs.type_3 .tab_containers_wrap {
    top: 0;
}

.tabs.type_3 .tabs_nav li:not(.has_counter) a {
    border-right-width: 0;
}

.tabs.type_3 .tabs_nav li:first-child a {
    -webkit-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
}

.tabs.type_3 .tabs_nav li:last-child a {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.tabs.type_3 .image_wrap {
    padding-bottom: 13px;
}

.tabs.type_3 .tab_containers_wrap .tab_container .owl-item.first > * {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* --------------------------------------------
            5.5 Twitter feed
    -------------------------------------------- */


/* --------------------------------------------
            5.6 Alert boxes
    -------------------------------------------- */

.error {
    color: #ff0000;
}

/* --------------------------------------------
            5.7 Accordions and Toggles
    -------------------------------------------- */

/* --------------------------------------------
            5.8 Pagination
    -------------------------------------------- */

.pags > li {
    float: left;
}

.pags > li:first-child > a {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.pags > li:first-child > a::before,
.pags > li:last-child > a::before {
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    display: inline-block;
    position: relative;
    top: -1px;
    font-size: 22px;
}

.pags > li:first-child > a::before {
    /*content: '\eab8';*/
    content: "\f12b";
}

.pags > li:last-child > a::before {
    /*content: '\eab9';*/
    content: "\f12a";
}

.pags > li:last-child > a {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.pags > li:not(:last-child) > a {
    border-right: none;
}

.pags > li > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    border: 1px solid #eaeaea;
    background: #fff;
}

.pags > li:not(:last-child) > a::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -1px;
    top: -1px;
    bottom: -1px;
    display: block;
    width: 1px;
    background: #4ac4fa;
    opacity: 0;

    -webkit-transition: opacity .7s ease;
    transition: opacity .7s ease;
}

.pags > li.active:not(:last-child) > a::after,
.pags > li:not(:last-child) > a:hover::after {
    opacity: 1;

    -webkit-transition: opacity .1s ease;
    transition: opacity .1s ease;
}

.pags > li.active > a,
.pags > li > a:hover {
    color: #fff;
    background: #4ac4fa;
    border-color: #4ac4fa;
}

/* --------------------------------------------
            5.9 Progress bars
    -------------------------------------------- */

/* --------------------------------------------
            5.10 Lightbox
    -------------------------------------------- */

/* --------------------------------------------
            5.11 Call to actions
    -------------------------------------------- */
/* --------------------------------------------
            5.12 Pricing tables
    -------------------------------------------- */

/* ------------------------------------------------

        6. Carousels

------------------------------------------------ */


/* --------------------------------------------
            6.1 Navigation buttons
    -------------------------------------------- */

.owl-nav {
    position: absolute;
    overflow: hidden;
    bottom: 100%;
    right: 0;
    margin-bottom: 11px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    display: block;
    float: left;
    width: 30px;
    height: 30px;
    font-size: 13px;
    color: #333;
    border: 1px solid #eaeaea;
    background: #fff;
    text-align: center;

    -webkit-transition: color .7s ease, background-color .7s ease, border-color .7s ease;
    transition: color .7s ease, background-color .7s ease, border-color .7s ease;
}

.owl-nav .owl-prev {
    border-right-width: 0;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.owl-nav .owl-next {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.owl-nav > [class^="owl"]:hover {
    color: #fff;
    background: #4ac4fa;
    border-color: #4ac4fa;

    -webkit-transition: color .1s ease, background-color .1s ease, border-color .1s ease;
    transition: color .1s ease, background-color .1s ease, border-color .1s ease;
}

.owl-nav > [class^="owl"]::before {
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.owl-nav > [class^="owl"]::after {
    content: "";
    height: 100%;
}

.owl-nav > [class^="owl"]::before,
.owl-nav > [class^="owl"]::after {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
}

.owl-nav .owl-prev::before {
    content: "\f12b";
}

.owl-nav .owl-next::before {
    content: "\f12a";
}

.thumbnails_carousel .owl-nav {
    position: static;
}

.thumbnails_carousel .owl-next,
.thumbnails_carousel .owl-prev {
    position: absolute;
    top: 50%;
    z-index: 101;
    margin-top: -15px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.thumbnails_carousel .owl-prev {
    left: -50px;
    border-right-width: 1px;
}

.thumbnails_carousel .owl-next {
    right: -50px;
}

.brands_carousel {
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.brands_carousel.owl-carousel .owl-stage-outer {
    background-color: transparent;
}

.brands_carousel .infoblock {
    background-color: #fff;
    border: 1px solid #eaeaea !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.brands_carousel .infoblock:hover b {
    color: #4ac4fa;
}

.brands_carousel .infoblock .caption {
    margin: 0;
    padding: 0 !important;
}

.brands_carousel .owl-item a {
    border: 1px solid rgb(239, 239, 239);
    min-height: 80px;
}

.offset_title {
    padding-right: 75px;
}

.product_preview {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
}

.product_preview [class*="_prev"],
.product_preview [class*="_next"] {
    position: absolute;
    top: 50%;
    margin-top: -15px;
}

.product_preview [class*="_prev"] {
    left: 0;
}

.product_preview [class*="_next"] {
    right: 0;
}

[data-large-image] {
    cursor: pointer;
}

.owl_carousel .entry {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.owl_carousel .owl-item > * {
    background-clip: border-box;
}

.owl_carousel .owl-item:not(.first) > * {
    border-left-color: transparent;
}

.owl_carousel:last-child .owl-item.first > * {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.owl_carousel:last-child .owl-item.last > * {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.owl_carousel:not(:last-child) .owl-item.first > * {
    -webkit-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
}

.owl_carousel:not(:last-child) .owl-item.last > * {
    -webkit-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
}

/* ------------------------------------------------

        7. Modal windows

------------------------------------------------ */

.modal_container {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    overflow: auto;
}

.modal_window {
    position: relative;
    width: 790px;
    margin: 20px auto;
    padding: 15px 20px;
    background: #fff;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    z-index: 2000;
}

.modal_container .btn_close {
    z-index: 1;
}

button.btn_close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    border: 0;
}

.btn_close:focus {
    outline: none;
}

.btn_close {
    width: 22px;
    height: 22px;
    font-weight: 100;
    line-height: 1;
    color: #000;
    filter: alpha(opacity=40);
    opacity: .4;
    position: absolute;
    display: block;
    top: 10px;
    right: 15px;
    cursor: pointer;
    background: none;
}

.btn_close:focus,
.btn_close:hover {
    filter: alpha(opacity=70);
    opacity: .7;
}

.btn_close span {
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    background: #5e5f5f;
    width: 100%;
    height: 2px;
}

.btn_close span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

.btn_close span:nth-child(2) {
    transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
}

.in_stock {
    color: #54bd45;
}


/* ------------------------------------------------

        8. Main

------------------------------------------------ */

/* 404 page */

/* cookies & old ie alert message */

/* layout */

.table_layout {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.table_row {
    display: table-row;
}

.table_cell {
    display: table-cell;
    position: relative;
    z-index: 102;
    padding: 19px;
}

#products_container .table_cell {
    display: block;
    width: calc(100% / 3);
    float: left;
}


.table_cell::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    z-index: -1;
}

.table_cell:not(:last-child)::after {
    border-bottom: none
}

/* top left corner */

.table_row:first-child > .table_cell:first-child::after {
    -webkit-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
}

.table_layout:last-child .table_row:only-child > .table_cell:first-child::after {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}


/* bottom right corner */

.table_layout:last-child .table_row:last-child > .table_cell:last-child::after {
    -webkit-border-radius: 0 0 3px 0;
    border-radius: 0 0 3px 0;
}

.table_layout:last-child .table_row:only-child > .table_cell:last-child::after {
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}


/* top right corner */

.table_layout:not(:last-child) > .table_row:first-child > .table_cell:last-child::after,
.table_row:first-child:not(:only-child) > .table_cell:last-child::after {
    -webkit-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
}


/* bottom left corner */

.table_layout:last-child .table_row:last-child:not(:only-child) > .table_cell:first-child::after {
    -webkit-border-radius: 0 0 0 3px;
    border-radius: 0 0 0 3px;
}

.table_row:not(:last-child) > .table_cell::after {
    border-bottom-width: 0;
}

.table_cell:not(:first-child)::after {
    border-left-width: 0;
}


/* list_view */

.list_view,
.list_view .table_row,
.list_view .table_cell {
    display: block;
}

.list_view .table_cell:empty {
    display: none;
}

.list_view .table_cell::after {
    border-left-width: 1px;
}

.list_view .table_row:last-child > .table_cell:not(:last-child)::after {
    border-bottom-width: 0;
}


/* top left and right corners */

.table_layout.list_view .table_row:first-child > .table_cell:first-child::after {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}


/* bottom left and right corners */

.list_view:last-child .table_row:last-child > .table_cell:last-child::after {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.list_view .table_row:not(:only-child):first-child > .table_cell:last-child::after,
.list_view .table_row:not(:only-child):last-child > .table_cell:first-child::after,
.theme_box + .table_layout .table_row:first-child > .table_cell:first-child::after,
.theme_box + .table_layout .table_row:first-child > .table_cell:last-child::after,
.top_box + .table_layout .table_row:first-child > .table_cell:first-child::after,
.top_box + .table_layout .table_row:first-child > .table_cell:last-child::after {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.top_box + .table_layout:last-child:not(.list_view) .table_row:only-child > .table_cell:first-child::after {
    -webkit-border-radius: 0 0 0 3px;
    border-radius: 0 0 0 3px;
}

.top_box + .table_layout:last-child:not(.list_view) .table_row:only-child > .table_cell:last-child::after {
    -webkit-border-radius: 0 0 3px 0;
    border-radius: 0 0 3px 0;
}

.theme_box + .table_layout:not(.list_view) .table_row:first-child > .table_cell::after,
.theme_box + .table_layout.list_view .table_row:first-child > .table_cell:first-child::after {
    border-top-width: 0;
}

.table_layout .product_item,
.table_layout .entry,
.table_layout blockquote {
    position: static;
    background: transparent;
    border: none;
    padding: 0;
}

.table_layout blockquote.type_2 {
    padding-left: 13px;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .table_layout {
        border-collapse: collapse;
    }

    .table_cell {
        border: 1px solid #eaeaea;
        background-color: #fff;
        background-clip: padding-box;
    }

    .table_cell::after {
        display: none !important;
    }

    .table_layout.list_view .table_row > .table_cell {
        border-bottom-width: 0 !important;
    }

    .table_layout.list_view .table_row:last-child > .table_cell:last-child {
        border-bottom-width: 1px !important;
    }

    aside .owl-stage-outer {
        width: calc(100% + 1px);
    }
}

/* ------------------------------------------------

        9. Blog

------------------------------------------------ */

.entry {
    overflow: hidden;
    position: relative;
    padding: 19px;
    background: #fff;
    color: inherit !important;
    border: 1px solid #eaeaea;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.entry:not(:last-child) {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.entry_image {
    display: block;
    margin-bottom: 17px;
}

.entry_image img {
    width: 100%;
}

.entry_title {
    line-height: 18px;
    margin-bottom: 7px;
    transition: color .2s;
    -webkit-transition: color .2s;
}

.entry:hover .entry_title {
    color: #018bc8;
}

.entry_thumb {
    display: block;
    float: left;
    margin-right: 15px;
}

.entry_meta {
    overflow: hidden;
    font-size: 13px;
    line-height: 18px;
    color: #b2b2b2;
    margin-bottom: 10px;
}

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

.entry_meta .rating {
    display: inline-block;
    vertical-align: baseline;
    margin: 0 2px;
}

.entry_meta span {
    display: inline-block;
    white-space: nowrap;
}

.entry_meta span:not(:last-child) {
    margin-right: 5px;
}

/* single */

.entry.single .entry_title {
    position: absolute;
    right: -9999px;
}

.entry.single .entry_meta {
    margin-bottom: 15px;
}

.list_of_entries > li:not(:last-child) .entry {
    border-bottom: none;
}

.list_of_entries .entry,
.list_of_entries.grid_view .entry,
.top_box + .list_of_entries > li:first-child .entry {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.list_of_entries > li:first-child .entry {
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.list_of_entries:last-child > li:last-child .entry {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.comments {
    color: #b2b2b2;
}

.comments:hover {
    color: #018bc8;
}


/* list view */
.list_of_entries.list_view .entry {
    color: inherit !important;
}

.list_of_entries.list_view .entry_title {
    color: #333;
    margin-top: 4px;
    -webkit-transition: color .1s ease, border-color .1s ease, background-color .1s ease;
    transition: color .1s ease, border-color .1s ease, background-color .1s ease;
}

.list_of_entries.list_view .entry_title:hover {
    color: #0186c8;
}

.list_of_entries.list_view .entry_image {
    float: left;
    margin: 0 20px 5px 0;
}

.list_of_entries.list_view .entry_meta [class*="align"] {
    float: none;
}

/* grid view*/

.list_of_entries.grid_view {
    position: relative;
    overflow: hidden;
}

.list_of_entries.grid_view > li {
    position: relative;
}

.list_of_entries.grid_view > li:nth-child(2n) .entry {
    border-left-width: 0;
}

.list_of_entries.grid_view::before,
.md_flexbox .list_of_entries.grid_view > li::before {
    content: "";
    display: block;
    background: #fff;
    border: 1px solid #eaeaea;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.list_of_entries.grid_view .entry_meta > [class*="align"] {
    float: none;
    display: inline;
}

.list_of_entries.grid_view .entry_meta span:last-child {
    margin-right: 8px;
}


/* for browser that supports flexbox model */

.md_flexbox .list_of_entries.grid_view {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.md_flexbox .list_of_entries.grid_view > li {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
}

.md_flexbox .list_of_entries.grid_view > li:nth-child(2n)::before {
    border-left-width: 0;
}

.md_flexbox .list_of_entries.grid_view > li::before {
    bottom: -1px;
}


@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

    .md_flexbox .list_of_entries.grid_view > li {
        width: 50%;
    }
}


/* for browser that doesn't support flexbox model */

.md_no-flexbox .list_of_entries.grid_view::after {
    content: "";
    display: block;
    border-left: 1px solid #eaeaea;
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
}

.md_no-flexbox .list_of_entries.grid_view > li {
    float: left;
    width: 50%;
}

.md_no-flexbox .list_of_entries.grid_view > li::after {
    content: "";
    display: block;
    border-top: 1px solid #eaeaea;
    width: 200%;
    left: 0;
    position: absolute;
    top: 0;
}

.md_no-flexbox .list_of_entries.grid_view > li:nth-child(2n+1) {
    clear: left;
}

.md_no-flexbox .list_of_entries.grid_view > li:nth-child(2n+1) .entry {
    border-right-width: 0;
}

.comment > article {
    position: relative;
    padding: 19px;
}

/* ------------------------------------------------

        10. Shop

------------------------------------------------ */

.manufacturer .thumbnail {
    margin-bottom: 15px;
}

/* ------------------------------------------------

        11. Product pages

------------------------------------------------ */

.specifications > li:not(:first-child) {
    border-top: 1px solid #eaeaea;
}

.specifications > li > span {
    display: inline-block;
    width: 175px;
}

.specifications > li {
    padding: 8px 0;
}

.reviews > li:first-child,
.specifications > li:first-child {
    padding-top: 0;
}

.specifications > li:last-child {
    padding-bottom: 0;
}

.reviews {
    margin-bottom: 15px;
}

.reviews > li {
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.review-rates {
    float: left;
    font-size: 13px;
    padding: 2px 35px 0 0;
}

.review-rates > li {
    margin-bottom: 2px;
}

.review-rates .name {
    width: 42px;
}

.review-body {
    overflow: hidden;
    border-left: 1px solid #eaeaea;
    padding: 5px 0 4px 20px;
}

.review-meta {
    font-size: 13px;
    color: #b2b2b2;
    margin-bottom: 10px;
}

.review-meta h5 {
    margin-bottom: 0;
}

/* ------------------------------------------------

        12. Sliders

------------------------------------------------ */

.tparrows.default {
    color: #fff;
    background: rgba(51, 51, 51, .5);
    background: rgba(51, 51, 51, .8);
    text-align: center;
    -webkit-border-radius: 3px;
    border-radius: 3px;

    -webkit-transition: background-color .4s ease, opacity .4s linear !important;
    transition: background-color .4s ease, opacity .4s linear !important;
}

.tparrows.default:hover {
    background: rgba(51, 51, 51, 1);
}

.tparrows.default::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.tparrows.default::before {
    display: inline-block;
    vertical-align: middle;
    /*font-family: 'fontello', sans-serif;*/
    font-family: 'flaticon_knopka', sans-serif;
    /*font-size: 28px;*/
    font-size: 30px;
    margin-top: -1px;
}

.tp-rightarrow.default::before {
    /*content: "\efbf";*/
    content: "\f12a";
}

.tp-leftarrow.default::before {
    /*content: "\efbe";*/
    content: "\f12b";
}


/* --------------------------------------------
                12.1 Royal Slider
    -------------------------------------------- */

/* --------------------------------------------
                12.2 Revolution Slider
    -------------------------------------------- */

.revolution_slider {
    width: 100%;
    position: relative;
    padding: 0;
    z-index: 100;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.rev_slider li {
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.rev_slider {
    width: 100%;
    position: relative;
}

.tparrows.default * {
    display: none;
}

/* --------------------------------------------
                12.3 Layer Slider
    -------------------------------------------- */

/* ------------------------------------------------

        13. Sidebar

------------------------------------------------ */

aside h3 {
    padding-top: 8px;
}

aside .section_offset:not(:last-child) {
    margin-bottom: 33px;
}

aside .middle_btn:not([class*="icon_btn"]) {
    padding-left: 17px;
    padding-right: 17px;
}

/* --------------------------------------------
                13.1 Widgets
    -------------------------------------------- */

aside .infoblock:not(:last-child) {
    margin-bottom: 10px;
}


/* --------------------------------------------
                    13.1.1 Tags cloud
        -------------------------------------------- */

.tags_container {
    background-color: #fff;
    border: 1px solid #eaeaea;
    padding: 19px 19px 16px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.tags_cloud {
    overflow: hidden;
    margin-left: -3px;
}

.tags_cloud > li {
    float: left;
    margin: 0 0 4px 4px;
}

.tags_cloud > li [class*="button"] {
    padding-left: 10px;
    padding-right: 10px;
}


/* --------------------------------------------
                    13.1.2 Product list
        -------------------------------------------- */

/* --------------------------------------------
                    13.1.3 Recent Comments
        -------------------------------------------- */

/* ------------------------------------------------

        14. Footer

------------------------------------------------ */

#footer h4 {
    margin-bottom: 18px;
}

#footer .widget + .widget {
    margin-top: 40px;
}

#footer .widget .list_of_links > li:first-child > a,
#footer .widget .list_of_entries > li:first-child {
    padding-top: 0;
}

.footer_section {
    padding-top: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dedede;
}

.footer_section_2 {
    padding-top: 20px;
    padding-bottom: 15px;
}

#footer .streamlined_title {
    margin-bottom: 15px;
}

.streamlined {
    display: table;
    width: 100%;
}

.streamlined > * {
    display: table-cell;
}

.streamlined > *:first-child {
    padding: 9px 20px 0 0;
    min-width: 100px;
}

.streamlined_type_2 > *:first-child {
    padding: 9px 20px 0 0;
    float: left;
}

.streamlined_type_2 > *:last-child {
    overflow: hidden;
}

#footer .list_of_entries li {
    padding: 19px 0;
    border-bottom: 1px solid #eaeaea;
}

#footer .list_of_entries .entry {
    background: transparent;
    padding: 0;
    border: none;
}

#footer .list_of_entries li:last-child {
    padding-bottom: 8px;
    border-bottom: none;
}

#footer .list_of_entries .entry_title {
    margin-top: 2px;
    font-weight: 600;
}

/* ------------------------------------------------

        15. Media queries

------------------------------------------------ */

.tabs_nav.theme_menu > li > a {
    padding: 14px 40px 13px 19px !important;
}

.menu_slider .infoblock {
    border: 1px solid #ddd;
}

@media only screen and (max-width: 1199px) {

    .modal_window {
        width: 735px;
    }

    .product_price {
        font-size: 14px;
    }

    #header:not(.type_6) .main_header_row {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;

        -webkit-box-align: center;

        -webkit-align-items: center;

        align-items: center;
    }

    .mega_menu.type_2,
    .mega_menu.type_3 {
        width: 730px;
    }

    .mega_menu.type_2 .mega_menu_item:not(:last-child) {
        display: block;
        float: left;
    }

    .mega_menu.type_2 .mega_menu_item:last-child {
        display: block;
        overflow: hidden;
    }

    .infoblock.type_2 .caption {
        padding-left: 10px;
        padding-right: 10px;
    }

    .main_navigation:not(.full_width_nav) > ul > li > a {
        padding-left: 7px;
        padding-right: 7px;
    }

    .tabs_nav > li > a {
        padding-left: 13px;
        padding-right: 13px;
    }

    .tabs.type_2 .tabs_nav a,
    .tabs.many_tabs .tabs_nav > li > a {
        font-size: 14px;
    }

    /* entries */
    aside .entry {
        text-align: center;
    }

    aside .entry_title,
    aside .entry_meta {
        text-align: left;
    }

    aside .entry_thumb {
        float: none;
        display: inline-block;
        margin-bottom: 10px;
    }

    .order_review .product_title_col {
        width: 50%;
    }

    .wishlist_table .product_title_col {
        width: 27%;
    }

    .orders_table .ship_col,
    .orders_table .product_action_col,
    .orders_table .order_number_col {
        width: auto;
    }

    .product_price_table tbody td {
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
    }

    .zoomContainer {
        visibility: hidden !important;
    }

    .table_layout.list_view .product_item .image_wrap {
        width: 190px;
    }

    .main_navigation > ul > li > .submenu {
        min-width: 0;
        width: 205px;
    }

    .main_navigation > ul > li > .submenu .submenu {
        min-width: 0;
        width: 165px;
    }

    .product_item.type_2 {
        padding-bottom: 125px;
    }

    .product_item.type_2 .buttons_row {
        width: 130px;
    }

    .product_item.type_2 .buttons_row .add_to_wishlist,
    .product_item.type_2 .buttons_row .add_to_compare {
        opacity: 1;
    }

    .product_item.type_2 .buttons_row > [class*="button"] {
        margin-bottom: 5px;
    }

    .on_the_sides {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .on_the_sides > [class*="_side"] {
        display: block;
        width: auto;
    }

    .modal_window .on_the_sides > [class*="_side"] {
        display: table-cell;
    }

    .modal_window .on_the_sides > .left_side {
        width: 50%;
    }

    #header.type_5 .main_navigation .submenu .submenu {
        left: auto;
        right: 100%;
        margin: 0 -1px 0 0;
    }

    #header.type_5 .main_navigation .submenu .submenu > li:first-child > a {
        -webkit-border-radius: 3px 0 0 0;
        border-radius: 3px 0 0 0;
    }

    .menu_slider .infoblock:not(:last-child) {
        margin-bottom: 4px;
    }

    .menu_slider .infoblock.type_2 .caption {
        padding: 0;
    }

    .menu_slider .infoblock {
        padding: 10px;
    }

    .menu_slider .infoblock p {
        line-height: normal;
    }

    .menu_slider .infoblock.type_2 h4 {
        font-size: 14px;
    }

    .menu_slider .infoblock .infoblock_btn button.button_dark_blue {
        margin-top: 5px;
    }

    .product_infoblocks .infoblock.type_2 i {
        font-size: 50px;
        margin: 0;
        padding: 5px;
    }

    .product_infoblocks .infoblock.type_2 .caption {
        padding: 15px 5px 15px;
        margin-bottom: 0;
        line-height: 21px;
    }

    .product_infoblocks .infoblock.type_2 > p {
        margin-bottom: 10px;
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 0) and (min-width: 1200px) {
    .search input {
        width: 315px;
    }
}

@media screen and (min--moz-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0) and (min-width: 1200px) {
    b,
    strong {
        font-weight: 500;
    }
}

@media only screen and (max-width: 991px) {

    .search_category {
        width: 137px;
    }

    .search input {
        width: calc(100% - 187px);
    }

    #open_shopping_cart {
        margin-top: 5px;
    }

    .countdown:not(.simple) .countdown-section {
        width: 27px;
    }

    .streamlined .streamlined_title {
        float: none;
        margin-top: 0;
        margin-right: 0;
    }

    [class*="streamlined"],
    [class*="streamlined"] > * {
        display: block;
        float: none !important;
    }

    [class*="streamlined"] > .streamlined_title {
        padding-top: 0;
    }

    .mega_menu,
    .mega_menu[class*="type"],
    .main_navigation .submenu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100%;
        -webkit-border-radius: 0 !important;
        border-radius: 0 !important;

        -webkit-transition: none !important;
        transition: none !important;

        -webkit-transform: none !important;
        transform: none !important;
    }

    .main_navigation .submenu {
        width: 100% !important;
        margin-left: 0 !important;
        display: none;
    }

    .main_navigation .has_submenu .has_submenu > a::after {
        /*content: '\e8c8';*/
        content: '\f12a';
        font-size: 11px;
    }

    .tabs .tabs_nav > li > a,
    .tabs.type_2 .tabs_nav > li > a {
        padding-left: 3px;
        padding-right: 3px;
    }

    .tabs:not([class*="type"]) .tabs_nav > li > a {
        font-size: 18px;
    }

    .tabs_nav {
        margin-right: 70px;
    }

    .ts_nav {
        width: 145px;
    }

    .md_flexbox .infoblocks_wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-align-content: flex-start;
        align-content: flex-start;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .md_flexbox .infoblocks_wrap > li {
        -webkit-flex-basis: 32.33%;
        flex-basis: 32.33%;
    }

    .md_no-flexbox .infoblocks_wrap > li {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .infoblock.type_3 {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* tabs */
    .tabs.many_tabs .tabs_nav {
        margin-bottom: 11px;
    }

    .tabs.many_tabs .tabs_nav li {
        float: none !important;
        margin: 0 !important;
    }

    .tabs.many_tabs .tabs_nav li a {
        padding: 7px 15px;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    .tabs.many_tabs .tabs_nav li:first-child a {
        -webkit-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }

    .tabs.many_tabs .tabs_nav li:last-child a {
        -webkit-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
    }

    /* shop tables */
    .product_title_col {
        width: 20%;
    }

    th.product_image_col {
        width: 110px;
    }

    .order_review .product_title_col {
        width: 42%;
    }

    .buttons_row:not(.layout_type) > [class*="button"] {
        margin-bottom: 5px;
    }

    /* single product */
    .single_product {
        margin: 0 auto 20px;
        float: none;
        max-width: 100%;
    }

    .cats {
        margin-bottom: 40px;
    }

    .mega_menu .mega_menu_item {
        display: block;
        width: 100%;
        float: none !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .mega_menu .mega_menu_item:not(:last-child) {
        margin-bottom: 10px;
    }

    .mega_menu .list_of_links {
        width: 100% !important;
    }

    [data-animation].animated {
        opacity: 1;
        -webkit-animation: none;
        animation: none;
    }

    .main_navigation .mega_menu {
        left: 0 !important;
        width: 100% !important;
    }

    .toggle_menu,
    .full_width_nav > ul,
    .full_width_nav > ul > li {
        display: block;
    }

    .main_navigation,
    header .left_menu {
        display: none;
    }

    .full_width_nav > ul > li {
        width: 100% !important;
        white-space: normal !important;
    }

    .main_navigation > ul > li:not(:first-child) {
        border-left-width: 1px;
        border-top-width: 0;
    }

    .main_navigation:not(.full_width_nav) {
        position: absolute;
        width: 100%;
        z-index: 105;
    }

    .main_navigation:not(.full_width_nav) > ul > li {
        float: none;
    }

    .main_navigation:not(.full_width_nav) > ul > li > a {
        border-top-width: 0 !important;
    }

    .main_navigation > ul > li:not(:first-child),
    .main_navigation:not(.full_width_nav) > ul > li:not(:first-child) > a {
        border-left-width: 1px;
    }

    .main_navigation .submenu:not(.cats) > li > a {
        padding-left: 30px !important;
    }

    .main_navigation .submenu:not(.cats) .submenu > li > a {
        padding-left: 40px !important;
    }

    .sort_select {
        width: 100px;
    }

    #header.type_5 .main_navigation .submenu .submenu > li:first-child > a {
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    .product_infoblocks .infoblock.type_2 i {
        font-size: 50px;
        margin: 0;
        padding: 12px 10px 10px;
    }

    .product_infoblocks .infoblock.type_2 .caption {
        padding: 15px 5px 15px;
        margin-bottom: 5px;
        font-size: 22px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {

    .col-sm-6:first-child,
    .col-sm-6:nth-child(2) {
        margin-top: 0;
    }

    .col-sm-6:nth-child(2n+1) {
        clear: left;
    }

    .list_of_entries.list_view .entry_image {
        width: 200px;
    }

    .page_wrapper [class|="col"]:not([class|="col-sm"]):not(:last-child) {
        margin-bottom: 10px;
    }

    .wishlist_table th,
    .wishlist_table td {
        padding-left: 8px;
        padding-right: 8px;
    }

    .wishlist_table .product_title_col {
        width: 110px;
    }

    .wishlist_table .product_image_col {
        width: 85px;
    }

    .wishlist_table .product_price_col {
        width: 70px;
    }

    .wishlist_table .product_qty_col {
        width: 108px;
    }

    .orders_table th,
    .orders_table td {
        word-break: break-all;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
    }

    .orders_table .order_total_col {
        width: 62px;
    }

    .order_review th,
    td {
        padding-left: 15px;
        padding-right: 15px;
    }

    .order_review .product_total_col {
        width: 120px;
    }

    .order_review .product_qty_col {
        width: 85px;
    }

    .order_review .product_sku_col {
        width: 70px;
    }

    .col-sm-8 .table_layout.list_view .product_item .image_wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .col-sm-8 .table_layout.list_view .product_item > *:not(.description),
    .col-sm-9 .table_layout.list_view .product_item > *:not(.description) {
        display: block;
        padding: 0;
    }

    .col-sm-8 .table_layout.list_view .product_item > *:not(:last-child),
    .col-sm-9 .table_layout.list_view .product_item > *:not(:last-child) {
        margin-bottom: 15px;
    }

    .col-sm-8 .table_layout:not(.list_view) .product_item .add_to_compare,
    .col-sm-8 .table_layout:not(.list_view) .product_item .add_to_wishlist,
    .col-sm-9 .table_layout:not(.list_view) .product_item .add_to_compare,
    .col-sm-9 .table_layout:not(.list_view) .product_item .add_to_wishlist {
        display: none;
    }

    .col-sm-8 .table_layout:not(.list_view) .product_item .quick_view,
    .col-sm-9 .table_layout:not(.list_view) .product_item .quick_view {
        font-size: inherit;
        padding: 5px 15px;
    }

    .col-sm-8 .table_layout:not(.list_view) .product_item [class*="label_"],
    .col-sm-9 .table_layout:not(.list_view) .product_item [class*="label_"] {
        top: 8px;
        left: 8px;
    }

    .col-sm-8 .table_layout:not(.list_view) .product_item .actions_wrap > .centered_buttons,
    .col-sm-9 .table_layout:not(.list_view) .product_item .actions_wrap > .centered_buttons {
        width: 80%;
    }
}

@media only screen and (max-width: 767px) {

    .page_title {
        font-size: 24px;
    }

    .modal_window {
        width: calc(100% - 40px) !important;
        margin: 20px;
    }

    .forgot-password-popup .modal_window,
    .notification-popup .modal_window,
    .confirmation-popup .modal_window,
    .login-popup .modal_window,
    .register-popup .modal_window {
        width: 360px !important;
        margin: 10px auto 0;
    }

    .tb_toggle_menu {
        width: 60px;
        margin: 10px auto;
        display: block;
    }

    #header .topbar > li {
        display: block;
        margin: 3px 0 0;
        text-align: center;
    }

    #header .topbar > li:not(:last-child)::after {
        display: none;
    }

    #header .topbar .submenu {
        text-align: left;
    }

    .topbar .submenu:not(.cats) > li > a {
        padding-left: 15px !important;
    }

    .topbar .submenu:not(.cats) .submenu > li > a {
        padding-left: 25px !important;
    }

    .topbar .has_submenu .has_submenu > a::after {
        /*content: '\e8c8';*/
        content: '\f12a';
        font-size: 11px;
    }

    /* layout */

    [class*="page_wrapper"] .row [class*="col-"]:not(:first-child),
    #footer .row [class*="col-"]:not(:first-child) {
        margin-top: 40px;
    }

    /* tables */
    .table_type_1 > thead {
        display: none;
    }

    .table_type_1 > * td {
        border-top: none;
    }

    .table_type_1 tr {
        display: block;
    }

    .table_type_1 th,
    .table_type_1 td[data-title] {
        display: block;
        width: 100%;
    }

    .table_type_1 td[data-title]::before {
        position: absolute;
        padding: 14px 19px;
        display: block;
        left: 0;
        top: 0;
        height: 100%;
        width: 45%;
        background: #f8f8f8;
        border-right: 1px solid #eaeaea;
    }

    .table_type_1 > *:last-child > tr:last-child td:not(:last-child) {
        border-bottom-width: 1px;
    }

    .order_review tbody td {
        height: auto;
    }

    /* forms */
    form:not(.type_2) label {
        width: 88px;
    }

    form:not(.type_2) .form_el {
        width: calc(100% - 88px);
    }

    [class*="page_wrapper"] form .row [class*="col-"]:not(:first-child) {
        margin-top: 10px;
    }

    /* infoblocks */
    .md_flexbox .infoblocks_wrap > li {
        margin-right: 0;
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
    }

    /* tabs */
    .tabs .tabs_nav {
        margin-bottom: 11px;
    }

    .tabs .tabs_nav > li {
        float: none !important;
        margin: 0 !important;
        width: 100%;
    }

    .tabs .tabs_nav > li > a {
        padding: 5px 12px !important;
        -webkit-border-radius: 0 !important;
        border-radius: 0 !important;
    }

    .tabs_nav.theme_menu > li > a {
        padding: 7px 30px 7px 10px !important;
    }

    .tabs .tabs_nav > li > a {
        border: 1px solid #eaeaea;
        border-bottom: none;
    }

    .tabs .tabs_nav > li:last-child > a {
        border-bottom: 1px solid #eaeaea;
    }

    .tabs .tabs_nav > li:first-child > a {
        -webkit-border-radius: 3px 3px 0 0 !important;
        border-radius: 3px 3px 0 0 !important;
    }

    .tabs .tabs_nav > li:last-child > a {
        -webkit-border-radius: 0 0 3px 3px !important;
        border-radius: 0 0 3px 3px !important;
    }

    .tabs.type_3 .tabs_nav {
        width: auto;
    }

    .tabs.type_3 .tabs_nav li a,
    .tabs.type_3 .tabs_nav li:not(.has_counter) a {
        border-right-width: 1px;
    }

    .tabs.type_3 .tabs_nav::before,
    .tabs.type_3 .tabs_nav li a::before {
        display: none;
    }

    .tabs.type_3 .tabs_nav,
    .tabs.type_3 .tab_containers_wrap {
        display: block;
    }

    .owl_carousel .owl-item.first > * {
        -webkit-border-top-left-radius: 3px !important;
        border-top-left-radius: 3px !important;
    }

    .owl_carousel:last-child .owl-item.first > * {
        -webkit-border-bottom-left-radius: 3px !important;
        border-bottom-left-radius: 3px !important;
    }

    /* entries */
    aside .entry {
        text-align: left;
    }

    aside .entry_thumb {
        float: left;
        margin-bottom: 0;
    }

    .layout_type {
        display: none !important;
    }

    .md_flexbox .list_of_entries.grid_view {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .md_flexbox .list_of_entries.grid_view > li {
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
    }

    .list_of_entries.list_view .entry_image {
        float: none;
        margin: 0 0 15px;
    }

    .md_no-flexbox .list_of_entries.grid_view > li {
        float: none;
        width: 100%;
    }

    .list_of_entries.grid_view .entry_meta > [class*="align"] {
        display: block;
    }

    .list_of_entries.grid_view > li:nth-child(2n) .entry {
        border-left-width: 1px;
    }

    .md_no-flexbox .list_of_entries.grid_view > li:nth-child(2n+1) .entry {
        border-right-width: 1px;
    }

    .md_no-flexbox .list_of_entries.grid_view::after,
    .md_no-flexbox .list_of_entries.grid_view > li::after {
        display: none;
    }

    /* shop tables */
    td.product_image_col {
        text-align: left;
    }

    /* Grid & View layout */
    .table_layout,
    .table_row,
    .table_cell {
        display: block;
    }

    .table_cell:not(:first-child)::after {
        border-left-width: 1px;
    }

    .table_row:last-child > .table_cell:not(:last-child)::after {
        border-bottom-width: 0;
    }

    .table_row:first-child > .table_cell:first-child::after {
        -webkit-border-radius: 3px 3px 0 0 !important;
        border-radius: 3px 3px 0 0 !important;
    }

    .table_layout:last-child .table_row:last-child > .table_cell:last-child::after {
        -webkit-border-radius: 0 0 3px 3px !important;
        border-radius: 0 0 3px 3px !important;
    }

    .top_box + .table_layout .table_row:first-child > .table_cell:first-child::after,
    .table_row:first-child:not(:only-child) > .table_cell:last-child::after,
    .table_row:last-child:not(:only-child) > .table_cell:first-child::after {
        -webkit-border-radius: 0 !important;
        border-radius: 0 !important;
    }

    .theme_box + .table_layout:not(.list_view) .table_row:first-child > .table_cell:not(:first-child)::after {
        border-top-width: 1px;
    }

    .manufacturer {
        text-align: center;
    }

    .table_layout.list_view .product_item .image_wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .table_layout.list_view .product_item > *:not(.description) {
        display: block;
        padding: 0;
    }

    .table_layout.list_view .product_item > *:not(:last-child) {
        margin-bottom: 15px;
    }

    .product_item {
        max-width: 100%;
    }

    #header {
        text-align: center;
    }

    #header:not(.type_6) .main_header_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .site_settings {
        float: none;
        display: inline-block;
        margin: 10px 10px 0;
    }

    #header.type_4 .topbar {
        text-align: center;
    }

    .quick_view {
        display: none;
    }

    .main_navigation {
        text-align: left;
    }

    #header.type_4 .call_us:only-child {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    #header.type_6 .main_header_row,
    #header.type_6 .main_header_row > * {
        display: block;
    }

    .wishlist_button,
    .compare_button {
        width: 56px !important;
    }

    #open_shopping_cart {
        width: auto !important;
    }

    #header.type_5 .search_category {
        z-index: 106;
    }

    .entry_meta [class*="align"] {
        float: none;
    }

    .on_the_sides {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
    }

    .on_the_sides,
    .on_the_sides > [class*="_side"] {
        text-align: left;
    }

    .on_the_sides > .v_centered > *:not(.toggle-container) {
        display: block;
    }

    .v_centered > .toggle-label ~ .v_centered {
        padding-top: 10px;
    }

    .on_the_sides > .right_side,
    .on_the_sides > .v_centered > *:not(:first-child) {
        margin: 10px 0 0 !important;
    }
}

@media only screen and (max-width: 480px) {

    .page_title {
        font-size: 20px;
    }

    .modal_window {
        width: calc(100% - 10px) !important;
        margin: 5px;
    }

    img[class*="align"] {
        float: none;
        margin: 0 0 15px;
    }

    .review-rates {
        float: none;
        padding: 0 0 15px;
    }

    .review-body {
        border-left: none;
        border-top: 1px solid rgba(234, 234, 234, .5);
        padding-top: 15px;
        padding-left: 0;
    }

}

/* ------------------------------------------------

        16. Retina Ready

------------------------------------------------ */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
    blockquote::before {
        background-image: url("../images/quotes@2x.png");
        -webkit-background-size: 41px 33px;
        background-size: 41px 33px;
    }
}

.full_btn {
    width: 100%;
}

.wide_layout {
    overflow: inherit;
}

.page_wrapper {
    overflow-y: hidden;
}

.bottom_part {
    padding: 30px 0;
    padding: 20px 0;
}

.open_menu {
    padding: 10px 20px;
}

/*!!! COULD NOT FIND USAGE OF THIS CLASS IN THE WHOLE PROJECT !!!*/
.open_menu::before {
    /*content: '\f0c9';*/
    padding-right: 7px;
    color: #fff;
    display: inline-block;
    /*font: normal normal normal 14px/1 FontAwesome;*/
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.site_settings {
    margin-left: 0;
    padding-right: 5px;
}

.site_setting_list a {
    padding: 2px 5px;
}

.site_setting_list.language {
    width: 75px;
}

.site_settings li img {
    padding: 0 5px;
}

.cart_bar .open_button {
    border: 1px solid #eaeaea;
    height: 44px;
}

#open_shopping_cart .total_price {
    font-size: 14px;
}

#open_shopping_cart {
    margin-left: 10px;
}

.account_bar {
    float: left;
}

.cart_bar {
    float: right;
}

.left_menu {
    z-index: 1001;
    /*background-color: #0186c8;*/
}

.slider {
    z-index: 1;
}

#open_shopping_cart::before {
    font-size: 30px;
    left: 10px;
}


.shopping_cart {
    right: 15px;
    margin-top: 10px;
}

.mega_menu .list_of_links li > a {
    padding-left: 20px;
    color: #0186c8;
    min-height: 19px;
}

.mega_menu .mega_menu_item {
    width: calc((100% - 20px) / 5);
}

.mega_menu .mega_menu_item h6 a {
    font-size: 15px;
    color: #444;
    color: #0186c8;
}

.mega_menu .mega_menu_item .list_of_links {
    min-height: 20px;
}

.mega_menu .mega_menu_item .list_of_links li {
    position: relative;
}

.mega_menu .mega_menu_item .list_of_links li:before {
    /*content: "\f0da";*/
    content: "\f12a";
    display: inline-block;
    /*font: normal normal normal 14px/1 FontAwesome;*/
    font: normal normal normal 22px/1 flaticon_knopka;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    /*left: 10px;*/
    left: 6px;
    top: 6px;

    font-size: 16px;
    line-height: 18px;
}


.mega_menu .mega_menu_item h6:hover a {
    color: #000;
}

.mega_menu .mega_menu_item h6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px dotted #888;
    opacity: 0;
}

.mega_menu .mega_menu_item h6:hover::after {
    opacity: 1;
}

.mega_menu.type_2 {
    min-height: 275px;
}

.mega_menu .mega_menu_item .list_of_links {
    padding-bottom: 12px;
}

.sticky {
    padding: 10px 0;
}

.shopping_cart {
    max-height: 80vh;
    overflow-x: auto;
    width: 280px;
}

.shopping_cart .product_thumb {
    margin-top: 0 !important;
    width: 60px;
}

.shopping_cart .product_thumb img {
    padding: 0;
}

#main_navigation_wrap .product_thumb img {
    width: 60px;
}

#header .site_settings .current::after {
    position: absolute;
    right: -18px;
}

#header .header-phone .current::after {
    -webkit-transform: rotate(-0);
    transform: rotate(0);
    font-size: 15px;
    color: #4ac4fa;

    position: absolute;
    top: auto;
    bottom: -2px;
    right: -3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    color: #b2b2b2;
    margin: 0 !important;
    height: 16px;
    width: 16px;
    display: inline-block;
    content: "\f129";
    font: normal normal normal 22px / 22px flaticon_knopka;
    font-size: 16px;
    color: #333;
}

#header .header-phone:hover .current::after {
    display: none;
}

button.open_menu {
    padding: 11px 20px;
}

.left_menu button.open_menu.active {
    font-size: 18px;
    width: 100%;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #018bc8;
    background-color: #018bc8;
    color: #fff;

    -webkit-border-radius: 3px 3px 0 0;

    border-radius: 3px 3px 0 0;
}

.left_menu button.open_menu {
    font-size: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid #018bc8;
    background-color: #018bc8;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;

    -webkit-border-radius: 3px;

    border-radius: 3px;
}

.secondary_page_wrapper .left_menu button.open_menu.active {
    -webkit-border-radius: 3px 0 0 0;
    border-radius: 3px 0 0 0;
}

.secondary_page_wrapper .left_menu button.open_menu {
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.category_page .open_menu.active + ul {
    height: 0;
}

.category_page .open_menu.active + ul {
    height: auto;
}

.theme_menu > li:first-child > a {
    -webkit-border-radius: 0;
    border-radius: 0;
}

.shopping_cart .result_cart .animated_item:last-child {
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    padding: 10px;
    text-align: center;
}

.result_cart {
    bottom: 0;
    left: 0;
    right: 0;
}

.product_item .description .description-title {
    margin: 0 auto;
}

.top-left-sidebar {
    border: 1px solid #007237;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin: -1px;
}

.price-list-title {
    padding: 15px 20px 14px 20px;
    background-color: #007237;
    color: #fff;
    position: relative;

    font-size: 14px;
    height: 52px;
    width: 100%;
    text-align: left;
    border: 1px solid #eaeaea;
    background-color: #007237;
    letter-spacing: 1px;
    color: #fff;

    -webkit-border-radius: 3px 3px 0 0;

    border-radius: 3px 3px 0 0;
}

.price-list-title img,
.price-list-title i {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 3px;
}

.price-list {
    margin-top: -1px
}

.price-list .price-list-item {
    position: relative;
}

.price-list .price-list-item a {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

    padding: 16px 40px 15px 20px
}

.price-list .price-list-item i {
    position: absolute;
    top: calc(50% - 10px);
    right: 13px;
    color: #B4B4B4;

    -webkit-transition: all .5s ease;

    transition: all .5s ease;
}

.price-list .price-list-item a:hover i {
    color: #007237;
}

.all_product_item p a {
    font-size: 14px;
    font-weight: 600;
}

.owl-carousel .owl-item .all_product_item img {
    width: 100px;
    margin: 0 auto;
}

.owl-carousel .owl-item .all_product_item {
    padding-top: 25%;
}

.theme_menu > li {
    line-height: 16px;
}

main .offset_title {
    margin-top: 10px;
}

.mega_menu .list_of_links li .all {
    color: #fdc67d;
}

.mega_menu .list_of_links li .all b {
    border-bottom: 1px dotted #fdc67d;
    text-decoration: none !important;
}

.mega_menu .list_of_links li .all {
    text-decoration: none;
}

.mega_menu .list_of_links li .all:hover b {
    color: #0186c8;
    border-bottom: 1px solid #0186c8;
}

.mega_menu .list_of_links > li > a:hover {
    text-decoration: underline;
}

.all_hidden {
    display: none;
}

.theme_menu .all_hidden > li.has_megamenu {
    position: relative;
    line-height: 16px;
    padding: 14px 40px 13px 19px !important;
    border: 1px solid #eaeaea;
    border-top: none;
    background: #fff;
}

.visible {
    display: block;
}

aside h3 {
    padding-top: 0;
}

legend,
.checkboxes_list > .all_hidden > li,
form > ul > .all_hidden > li {
    margin-bottom: 10px;
}

.mega_menu .menu_img {
    width: 250px;
}

.mega_menu .menu_img img {
    height: 200px;
    margin-top: calc(50% - 100px);
}


.thumb_img {
    width: 80px;
    height: 80px;
}

.list_of_links .all_hidden li a {
    border: none;
}

.list_of_links .has_submenu > a::after {
    content: "";
}

.feedback_rates > li {
    margin-bottom: 2px;
    float: left;
    padding-right: 50px;
    margin: 5px auto 10px;
}

.feedback_rates .name {
    font-size: 14px;
    font-weight: 600;
}

.feedback_rates .subcaption {
    font-size: 12px;
}

.feedback_rates .rating li {
    margin-right: 4px;
}

.feedback_rates .rating li::after,
.feedback_rates .rating li::before {
    font-size: 16px;
}

[class*="description_section"] .title {
    min-width: 70px;
}


input:not([type="submit"]),
textarea,
.active_option {
    height: auto;
    min-height: 38px;
}

.active_option::after {
    top: 25%;
}

/*.fa-phone {*/
.flaticon-phone {
    color: #4ac4fa;
    font-size: 16px;
    padding-right: 10px;
}

/*.call_us > span:hover .fa-phone {*/
.call_us > span:hover .flaticon-phone {
    color: #018bc8;
}

.call_us {
    cursor: pointer;
}

.qty button {
    background-color: #f8f8f8;
}

/*.fa-1x {*/
/*    font-size: 1em;*/
/*    padding-top: 3px;*/
/*    color: #989494;*/
/*}*/

.sort_select {
    width: 180px;
}

.product_price_table .price {
    font-size: 18px;
}

.product_price_table table th,
.product_price_table table td {
    padding: 12px 14px;
}

.product_page .description .qty {
    display: none;
}

.btn-choice {
    margin-top: 10px;
    display: inline-block;
}

.btn-choice .pull-right {
    margin-left: 3px;
}

.breadcrumbs_container {
    margin-bottom: 27px;
}

.breadcrumbs_container {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size: 0.9em;
    color: #9f9f9f;
}

.breadcrumbs_container a {
    color: #777;
}

.breadcrumbs_container a:hover {
    color: #0186c8;
}

.profile_wrapper .breadcrumbs_container {
    margin-bottom: 10px;
}

.infoblock.type_2 h4 {
    font-size: 15px;
    font-weight: 100;
}

.product_page aside .section_offset:not(:last-child) {
    margin-bottom: 15px;
}

.description .product_info_full,
.description .list_btn-choice,
.product_number {
    display: none;
}

.rating_and_review .rating {
    /*margin-left: 10%;*/
}

.rating_and_review .rating::after {
    clear: none;
}

.rating_and_review ul {
    width: 40%;
    float: left;
    margin: 0 auto;
}

.description_section {
    /*margin-bottom: 10px;*/
}

.product_item .qty {
    display: block;
    white-space: nowrap;
}

.category_page .product_item .product_info,
.category_page .product_item .qty {
    /*width: 50%;*/
    /*float: left;*/
    /*margin-bottom: 15px;*/
}

.category_page .product_item .qty {
    display: inline-flex;
    padding-left: 15px;
}

.category_page .product_item .qty button,
.category_page .product_item .qty > input[type="text"] {
    width: 28px;
    min-height: 28px;
    height: 28px
}


/* - - - - - list_min - - - - - */
.list_min .description .btn-choice:not(.list_btn-choice) > button,
.list_min .image_wrap .actions_wrap,
.list_min .rating_and_review {
    display: none !important;
}

.list_min .product_item .description button.theme_button,
.list_min .description .list_btn-choice,
.list_min .product_info_full,
.list_min .product_number {
    display: block;
}

.list_min .btn-choice {
    margin-top: 0;
}

.list_min .table_cell {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
}

.list_min .table_cell:not(:first-child)::after {
    border-left-width: 1px;
}

.list_min .product_item .description .description-title a {
    width: 240px;
    height: 70px;
    display: table-cell;
    vertical-align: middle;
    line-height: 16px;
    padding-left: 20px;
    text-align: left;
}

.list_min .product_item .image_wrap {
    margin-top: 0;
    padding: 15px 20px;
    height: 60px;
    margin: 0;
}

.list_min .product_item .product_number,
.list_min .product_item .product_info,
.list_min .product_item .qty,
.list_min .product_item .product_info_full {
    margin-top: 17px;
}

.product_item .list_btn-choice {
    margin-top: 12px;
}

.list_min .product_price {
    line-height: 25px;
    padding-left: 0;
    padding-right: 0;
    width: 100px;
    text-align: center;
}

.list_min .product_number {
    float: left;
    padding-top: 5px;
}

.list_min .product_item .product_info,
.list_min .product_item .product_info_full {
    width: auto;
}

.list_min .product_item .description .qty {
    padding-left: 0;
    float: left;
    display: block;
    width: auto;
}

.list_min .product_item .description .description-title {
    width: 240px;
}

.list_min .product_item .description,
.list_min .product_item .description .description-title,
.list_min .product_item .description .product_info,
.list_min .table_cell,
.list_min .image_wrap,
.list_min .image_wrap .product_price,
.list_min .description .list_btn-choice,
.list_min .image_wrap + div,
.list_min .product_info {
    float: left;
}

.list_min .description .list_btn-choice {
    position: absolute;
    right: 20px;
}

.list_min .image_wrap img {
    padding: 1px;
}

.list_min .product_item .description .description-title {
    min-height: 38px;
    text-align: left;
    padding-top: 5px;

}

.list_min .description .list_btn-choice button {
    height: 38px;
    width: 38px;
}

.list_min .description .list_btn-choice button.button_white:hover {
    color: #018bc8 !important;
    background: #fff !important;
    border: 1px solid #018bc8;
}

.list_min .description .list_btn-choice button:before {
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    content: "\f126";

    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.list_min .description .list_btn-choice button.button_white:before {
    font-family: flaticon_knopka, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    content: "\f111";
    /*margin-left: -11px;*/
    font-size: 22px;
    color: #4ac4fa;
    -webkit-transition: color .7s ease;
    transition: color .7s ease;
}
.list_min .description .list_btn-choice button.button_white:hover:before {
    color: #018bc8;
    -webkit-transition: color .1s ease;
    transition: color .1s ease;
}

.list_min .qty > input[type="text"] {
    width: calc(100% - 40px);
}

.list_min .qty button {
    width: 20px;
}

.list_min .min {
    width: 80px;
}

#products_container.list_min .table_cell {
    width: 100%;
}


/* - - - - - End list_min - - - - - */


/* - - - - - feedback_block - - - - - */

.feedback_block p {
    font-size: 16px;
}


/* - - - - - End feedback_block - - - - - */

.product_page .left_menu {
    position: absolute;
}

/*.breadcrumbs .fa-home {*/
.breadcrumbs .flaticon-home {
    /*padding-left: 10px;*/
}

.pags > li > a.active_pagination {
    background: #018bc8;
    border: 1px solid #018bc8;
    color: #fff;
    cursor: default;
}

.pags > li > a.active_pagination:hover {
    border: 1px solid #018bc8;
    background: #018bc8;
}

.pags > li > a.no_hover_pagination {
    cursor: default;
}
.pags > li > a.no_hover_pagination:before {
    color: #ccc;
}

.pags > li > a.no_hover_pagination:hover {
    color: #333;
    border: 1px solid #eaeaea;
    background: #fff;
}

/* - - - - - - registration - - - - - - - */

/* - - - - - - /registration - - - - - - - */

.checkboxes_list li {
    position: relative;
}

.checkboxes_list li a span {
    position: absolute;
    right: -15px;
    top: 0;
    font-size: 0.9em;
    color: green;
}

ul.theme_menu.cats {
    height: 0;
    visibility: hidden;
}

ul.theme_menu.cats.active.visible {
    visibility: visible;
    height: auto;
}

header .bg_fon {
    z-index: 125;
}

header .bg_fon.active {
    z-index: 1003;
}

.bg_fon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}

.bg_fon_product {
    z-index: 1999;
    display: block;
}

.col-sm-3.left_menu {
    z-index: 1000;
}

#main_navigation_wrap.sticky {
    z-index: 1001;
}

.bg_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 25;
    opacity: 0.5;
    display: none;
}

/*.remove_product i {*/
    /*line-height: 30px;*/
/*}*/

.order_btn {
    margin-top: 25px;
    padding: 10px;
}

.billing_full_info ul li {
    margin-bottom: 2px;
}

.icon_btn {
    cursor: pointer;
}

.opc-column-right h1,
.opc-column-right .h1 {
    float: left;
}

.order-products-table {
    border: 1px solid #eaeaea;
}

.order-products-table thead th {
    background: #4ac4fa;
    color: #fff;
    letter-spacing: 1px;
}

.order-products-table thead th.action span {
    display: none;
}

.order-products-table thead th.action:before {
    display: inline-block;
    /*font: normal normal normal 14px/1 FontAwesome;*/
    font: normal normal normal 22px/1 flaticon_knopka;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*content: "\f085";*/
    /*content: "\f013";*/
    content: "\f109";
}

.order-products-table tr {
    vertical-align: middle;
}

th.action {
    width: 70px;
}

th.number {
    width: 100px;
}

table .a-center {
    text-align: center;
}

.review-price,
.all-price {
    width: 110px;
}

.review-thumnail {
    width: 100px;
}

.btn-choice a {
    padding-right: 5px;
}
.btn-choice a.add_to_wishlist {
    margin-right: 3px;
}

main .category_page .table_layout:not(.list_min) .product_item .add_to_wishlist,
.carousel_in_tabs .product_item .add_to_wishlist,
.tab_containers_wrap .product_item .add_to_wishlist,
.product_list_container .product_item .add_to_wishlist {
    margin: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    color: #4ac4fa !important;
    background-color: transparent !important;
}

main .category_page .table_layout:not(.list_min) .product_item .add_to_wishlist.button_white,
main .category_page .table_layout:not(.list_min) .product_item .add_to_wishlist:hover,
.btn-choice a.add_to_wishlist:hover,
.btn-choice a.add_to_wishlist.active:hover,
.product_item .add_to_wishlist.button_white {
    color: #018bc8 !important;
}

.half_btn {
    width: calc(50% - 5px / 2);
}

form.type_2 label {
    min-width: 90%;
}

.checkboxes_list input[type="checkbox"] + label {
    min-width: auto;
    width: 90% !important;
}

span.count_filter {
    position: absolute;
    right: -35px;
    top: 0;
    min-width: 30px;
    cursor: default;
    /*text-align: center;*/
    text-align: right;
    font-size: 1em;
}

/*span.count_filter:before {*/
/*    content: "("*/
/*}*/

/*span.count_filter:after {*/
/*    content: ")"*/
/*}*/


/* - - - - animation on infoblock button BEGIN - - - -  */
.mega_menu.menu_slider .infoblock .infoblock_btn button {
    -webkit-animation: none !important;
    animation: none !important;
}

.menu_slider .infoblock:nth-child(1) .infoblock_btn button {
    -webkit-animation: shake1 9s infinite 1s ease-out;
    animation: shake1 9s infinite 1s ease-out;
}

.menu_slider .infoblock:nth-child(2) .infoblock_btn button {
    -webkit-animation: shake1 9s infinite 4s ease-out;
    animation: shake1 9s infinite 4s ease-out;
}

.menu_slider .infoblock:nth-child(3) .infoblock_btn button {
    -webkit-animation: shake1 9s infinite 7s ease-out;
    animation: shake1 9s infinite 7s ease-out;
}

.menu_slider .infoblock .infoblock_btn button .pulse {
    background-color: #0186c8;
    opacity: 0.3;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    height: 10vh;
    width: 10vh;
    position: absolute;
    left: 50%;
    opacity: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.menu_slider .infoblock:nth-child(1) .infoblock_btn button .pulse {
    -webkit-animation: pulse1 9s infinite 1s linear;
    animation: pulse1 9s infinite 1s linear;
}

.menu_slider .infoblock:nth-child(2) .infoblock_btn button .pulse {
    -webkit-animation: pulse1 9s infinite 4s linear;
    animation: pulse1 9s infinite 4s linear;
}

.menu_slider .infoblock:nth-child(3) .infoblock_btn button .pulse {
    -webkit-animation: pulse1 9s infinite 7s linear;
    animation: pulse1 9s infinite 7s linear;
}

@-webkit-keyframes shake1 {
    0%, 10%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    2%, 6% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    4%, 8% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
}

@keyframes shake1 {
    0%, 10%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    2%, 6% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    4%, 8% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
}

@-webkit-keyframes pulse1 {
    0%, 10.01% {
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        background-color: rgba(74, 196, 250, 0.3);
    }

    5% {
        opacity: 1;
    }


    10% {
        -webkit-transform: translate(-50%, -50%) scale(3);
        transform: translate(-50%, -50%) scale(3);
        opacity: 0.2;
        background-color: rgba(74, 196, 250, 0.5);
    }
}

@keyframes pulse1 {
    0%, 10.01% {
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        background-color: rgba(74, 196, 250, 0.3);
    }

    5% {
        opacity: 1;
    }

    10% {
        -webkit-transform: translate(-50%, -50%) scale(3);
        transform: translate(-50%, -50%) scale(3);
        opacity: 0.2;
        background-color: rgba(74, 196, 250, 0.5);
    }
}

/* - - - - animation on infoblock button END - - - -  */
.billing_full_info .notice {
    text-align: left;
    font-size: 11px;
    line-height: 12px;
    margin: 4px 0 12px 0;
    color: #b90909;
}

.opt-links + .page_wrapper {
    padding-top: 12px !important;
}

.opt-links {
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.opt-links a {
    min-width: 355px;
    margin: 0 8px;
    font-weight: bold;
    padding: 7px 10px;
    font-size: 17px;
}

.opt-links-registration.opt-links a {
    min-width: 55px;
    margin: 0 4px;
    font-size: 15px;
}

@media (max-width: 991px) {
    .opt-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .opt-links a {
        min-width: calc(100%/2 - 15px/2);
        margin: 0;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .opt-links a {
        font-size: 12px;
        padding-left: 0;
        padding-right: 0;
    }
}

.loading {
    position: relative;
}

.loading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.7;
    z-index: 1;
}

.loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: auto;
    width: 32px;
    height: 32px;
    background-image: url(/images/loading-blue.gif);
    background-size: contain;
}

#checkout-review-table th, #checkout-review-table td {
    padding: 10px 7px;
}

#checkout-review-table .number {
    width: 135px;
}

.wendy_billing.fixed {
    position: fixed;
    top: 77px;
    bottom: 0;
    background: #f8f8f8;
    width: 268px;
    z-index: 99;
}

[data-auth-block].new-style_header-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-left: 0 !important;
}

[data-auth-block].new-style_header-item .topbar {
    margin-left: 4px;
}

@media (min-width: 600px) {
    .mobile_top_left_menu .wishlist_button {
        display: none;
    }
}
@media (min-width: 992px) {
    .show_on_large_desctop {
        display: block;
    }

    .hide_on_large_desktop {
        display: none !important;
    }

    #header:not(.type_6) .bottom_part .main_header_row {
        display: flex !important;
    }

    .logo-container {
        display: flex;
        align-items: center;
        justify-content: start;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-cont>nav {
        margin-left: 0 !important;
    }

    .header-phone.new-style_header-item {
         margin-top: 0;
        padding-right: 0;
        position: relative;
    }

    #header .header-phone .current::after {
        /*top: auto;
        bottom: 0;
        right: -5px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        color: #b2b2b2;
        margin: 0 !important;
        height: 13px;
        width: 13px;
        display: inline-block;
        margin-left: 8px;
        content: "\f0d7";
        font: normal normal normal 14px / 22px FontAwesome;
        font-size: 11px;
        color: #333;*/
    }

    .search {
        margin-bottom: 0 !important;
    }

    .search-box-container .search-box-loader {
        right: 50% !important;
    }

    [data-auth-block].new-style_header-item .topbar {
        display: flex;
    }

    [data-auth-block].new-style_header-item .topbar > li {
        /*margin-left: 4px;*/
    }

    [data-auth-block].new-style_header-item .topbar > li:not(:last-child)::after {
        display: none;
    }

    [data-auth-block].new-style_header-item .topbar>.has_submenu>a::after {
        /*right: -5px;*/
        right: -3px;
    }

    .show_on_large_desctop .topbar:not(:first-child) {
        margin-left: 4px;
    }

    .topbar .has_submenu {
        z-index: 102;
    }

    header .bg_fon.active {
        z-index: 125;
    }



    .header-container .search-box-container {
        width: 100%;
        margin-left: 8px;
        margin-right: 4px;
    }

    .header-container .search,
    .header-container .cart_bar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .header-container .search input {
        width: 100%;
    }

    .full_width_nav > ul > li > a {
        display: flex;
        flex-direction: row;
    }

    .full_width_nav > ul > li > a img,
    .full_width_nav > ul > li > a svg {
        width: 35px;
        height: auto;
        transition: .1s ease;
    }

    .show_on_large_desctop.left_menu .full_width_nav > ul > li > a img,
    .show_on_large_desctop.left_menu .full_width_nav > ul > li > a svg {
        width: 20px;
        margin-right: 10px;
    }

    .full_width_nav > ul > li > a svg image {
        width: inherit;
        height: inherit;
        transition: .1s ease;
    }

    .left_menu:not(.show_on_large_desctop) .full_width_nav > ul > li > a {
        flex-direction: column;
        /*padding: 12px 14px;*/
    }

    .left_menu:not(.show_on_large_desctop) .full_width_nav > ul > li > a img,
    .left_menu:not(.show_on_large_desctop) .full_width_nav > ul > li > a svg {
        display: flex;
        flex-direction: column;
        width: 32px;
        padding: 0 0 10px;
    }

    .show_on_large_desctop .full_width_nav>ul {
        flex-direction: column;
        position: relative;
        background: #fff;
        border-radius: 3px;
        width: 300px;
    }

    .show_on_large_desctop .full_width_nav>ul.active {
        width: auto;
    }

    .show_on_large_desctop .main_navigation > ul > .has_megamenu > a,
    .show_on_large_desctop .main_navigation > ul > .has_submenu > a {
        position: relative;
        width: 280px;
        color: #333;
        border-radius: 3px 0 0 3px;
        background: #fff;
    }

    .show_on_large_desctop .main_navigation > ul > .has_megamenu > a,
    .show_on_large_desctop .main_navigation > ul > .has_submenu > a {
        padding: 8px 12px;
    }

    .show_on_large_desctop .full_width_nav > ul > li {
        background: transparent;
        border: none;
        color: #333;
        padding: 0 10px 0 10px;
    }

    .show_on_large_desctop .full_width_nav > ul > li:first-child {
        padding-top: 10px;
    }

    .show_on_large_desctop .full_width_nav > ul > li:last-child {
        padding-bottom: 10px;
    }

    .show_on_large_desctop .full_width_nav > ul > li:hover,
    .show_on_large_desctop .full_width_nav > ul > .current,
    .show_on_large_desctop .full_width_nav > ul > li.tablet_active,
    .show_on_large_desctop .full_width_nav > ul > li.mobile_active {
        background: none;
    }

    .show_on_large_desctop .full_width_nav > ul > li > a:hover,
    .show_on_large_desctop .full_width_nav > ul > li > a.active {
        background: #0186c8;
        color: #fff !important;
    }

    .show_on_large_desctop .main_navigation > ul > .has_megamenu > a::after {
        color: #333;
    }

    .show_on_large_desctop.left_menu {
        display: none;
        position: fixed;
        top: 115px;
        left: -7px;
        width: 100%;
        z-index: 1004;
        background: transparent;
        pointer-events: none;
    }

    .show_on_large_desctop.left_menu .mobile_top_left_menu,
    .show_on_large_desctop.left_menu .mobile_page_menu-title,
    .show_on_large_desctop.left_menu > .theme_menu ,
    .show_on_large_desctop.left_menu .mobile_page_menu {
        display: none !important;
    }

    .top_part.sticky ~ .show_on_large_desctop.left_menu {
        top: 115px;
    }

    .show_on_large_desctop.left_menu .full_width_nav * {
        pointer-events: auto;
    }

    .show_on_large_desctop .full_width_nav:before {
        content: "";
        position: absolute;
        top: -16px;
        /*left: 255px;*/
        left: 274px;
        width: 18px;
        height: 18px;
        /*z-index: 999999;*/
        border: 9px solid;
        border-color: transparent transparent #fff;
        pointer-events: none;
    }

    .bg_fon.active {
        cursor: pointer;
    }

    .menu-open {
        overflow: hidden;
        padding-right: 17px;
    }

    .show_on_large_desctop .main_navigation > ul > li.has_megamenu > a::after {
        display: block;
        border-style: solid;
        border-width: 0 1.5px 1.5px 0;
        border-color: #333;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        right: 15px;
        content: "";
        width: 8px;
        height: 8px;
        transition: .3s ease;
    }

    .show_on_large_desctop .main_navigation > ul > li.has_megamenu > a.active::after {
        border-color: #fff;
    }

    .show_on_large_desctop .main_navigation .mega_menu {
        display: none;
        position: absolute;
        top: -20px;
        left: 290px;
        padding: 30px 25px 25px 15px;
        background: #fff;
        max-width: calc(100% - 290px) !important;
        /*height: calc(100% + 21px);*/
        /*height: -webkit-fill-available;*/
        /*max-height: calc(100% + 2px);*/
        /*max-height: 100%;*/
        overflow: hidden;
        overflow-y: auto;
        transition: .3s ease;
        border-radius: 0 3px 3px 0;

        /*min-height: calc(100% - 21px);*/
        min-height: calc(100vh - 171px);
        max-height: calc(100vh - 171px);
        height: calc(100vh - 150px);
    }
    .show_on_large_desctop .main_navigation .mega_menu.active {
        opacity: 1;
        visibility: visible;
    }

    .left_menu:not(.show_on_large_desctop) .full_width_nav > ul > li.has_submenu a {
        align-items: center;
        justify-content: center;
    }

    .left_menu:not(.show_on_large_desctop) .full_width_nav > ul > li.has_megamenu + li.has_submenu {
        margin-left: auto;
        /*border-left: 1px solid #42a5d6 !important;*/
    }

    .menu-open .top_part {
        pointer-events: none;
    }

}

@media (min-width: 1600px) {
    .left_menu:not(.show_on_large_desctop) .full_width_nav > ul > li > a img,
    .left_menu:not(.show_on_large_desctop) .full_width_nav > ul > li > a svg {
        width: 40px;
    }

    .show_on_large_desctop .full_width_nav:before {
        /*left: 200px;*/
    }

    .subcategories_in_tabs .product_item {
        max-width: calc((100% - 8px * 16) / 9) !important;
        width: calc((100% - 8px * 16) / 9) !important;
    }

    .show_on_large_desctop.left_menu .full_width_nav > ul > li > a img,
    .show_on_large_desctop.left_menu .full_width_nav > ul > li > a svg {
        width: 24px;
    }

    .show_on_large_desctop .main_navigation > ul > .has_megamenu > a,
    .show_on_large_desctop .main_navigation > ul > .has_submenu > a {
        padding: 13px 12px;
    }
}

@media (max-width: 1599.98px) {
    [data-auth-block] .topbar > li > .submenu,
    .header-phone .submenu {
        left: auto;
        right: 0;
    }
}

@media (max-width: 1199.98px) {
    body {
        overflow-x: hidden;
    }
    .tab_containers_wrap .product-list .product_item {
        min-width: calc(100%/4);
    }

    .topbar > li > .submenu,
    .header-phone .submenu {
        left: auto;
        right: 0;
    }
}
@media (max-width: 991.98px) {
    .show_on_large_desctop {
        display: none !important;
    }

    .header_square_button i {
        font-size: 18px;
        color: inherit !important;
    }

    .search_button_open::after,
    .compare_button::before,
    .wishlist_button::before {
        font-size: 22px;
        color: inherit !important;
    }

    .header-container .cart_bar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

@media (max-width: 767.98px) {
    .tab_containers_wrap .product-list .product_item {
        min-width: calc(100vw/2.8);
        width: auto;
    }
}

@media only screen and (max-width: 575px) {
    .novelty_section .tab_containers_wrap .product-list .product_item {
        min-width: 180px;
    }
    .search_button_open::after,
    .compare_button::before,
    .wishlist_button::before {
        font-size: 26px;
    }
}

@media only screen and (max-width: 420px) {
    .novelty_section .tab_containers_wrap .product-list .product_item {
        min-width: calc(100vw/1.85);
    }
}


body *::-webkit-scrollbar {
    width: .5em;
    height: .45em;
}

body *::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px #eaeaea;
}

body *::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    border-radius: 3px;
}

i[class^="flaticon-"].fi-3x, i[class*=" flaticon-"].fi-3x {
    font-size: 34px;
}

.w-100 {
    width: 100%;
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-mobile-catalog-btn] * {
    font-size: 16px;
}
[data-submenu-open-link] * {
    pointer-events: none;
}
/*
.mobile_left_menu.only_catalog .mobile_page_menu-title:nth-child(4) {
    display: none;
}

.mobile_left_menu.only_catalog .mobile_top_left_menu > ul:not(:last-child),
.mobile_left_menu.only_catalog ul.mobile_page_menu:last-child {
    display: none !important;
}

.mobile_left_menu.only_catalog .mobile_top_left_menu > ul:last-child {
    position: absolute;
    top: 15px;
    right: 15px;
}

.mobile_left_menu.only_catalog .mobile_top_left_menu {
    padding: 0;
    border: none !important;
}*/

.top-notification {
    position: relative;
    top: 0;
    opacity: 1;
    z-index: 99;
    width: 100%;
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 4px 0;
}
.top-notification p {
    margin: 0!important;
}
@media(max-width: 991px) {
    .top-notification p {
        margin: 0 0 5px 0!important;
        font-size: 12px;
        line-height: 1.2;
    }
    .top-notification p:last-child {
        margin: 0!important;
    }
}

.flex {display:flex}
.flex.space-between{justify-content: space-between}
.flex.gap5{gap:5px}
.flex.gap10{gap:10px}
.flex.gap15{gap:15px}