/* COLORS
#252525 - black
#EB5757 - red
#ffffff - white
#EDEDED - lines
#F9C621 - yellow
#27AE60 - green
#DCDCDC - grey
#666666 - dark grey
#2D9CDB - blue
#64C0E8 - light blue - hit
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
main {
    display: block;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
/* end normalize */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img {
    vertical-align: bottom;
}
p {
    margin: 0 0 10px;
}
* {
    box-sizing: border-box;
}
a {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

body {
    background: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
}
.container {
    width: 1110px;
    float: left;
    left: 50%;
    position: relative;
    margin: 0 0 0 -555px;
}
.popup_layout {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    left: 0;
    top: 0;
    display: none;
    z-index: 9999;
}
.popup {
    background: white;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    /*top: 50%;
    transform: translateY(-50%);*/
    padding: 50px;
    margin: 50px auto;
}
.popup .close_popup {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.popup .close_popup .line {
    width: 20px;
    height: 2px;
    background: #EB5757;
    position: absolute;
    top: 10px;
    left: 0;
}
.popup .close_popup .line:first-child {
    transform: rotate(45deg);
}
.popup .close_popup .line:last-child {
    transform: rotate(135deg);
}
/*.popup .close_popup:hover .line {
    background: #EB5757;
}*/
.popup_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}
.popup .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #252525;
    width: 100%;
    margin: -10px 0 36px;
}
.popup .input_wrapper,
form .input_wrapper {
    width: 100%;
    margin-top: 24px;
    position: relative;
}
.popup .input_wrapper input,
form .input_wrapper input {
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    height: 46px;
    font-size: 14px;
    color: #252525;
    line-height: 44px;
    padding: 0 12px;
    outline: none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.popup .input_wrapper textarea,
form .input_wrapper textarea {
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    height: 160px;
    font-size: 14px;
    color: #252525;
    line-height: 21px;
    padding: 12px;
    outline: none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    resize: none;
}
.popup .input_wrapper label,
form .input_wrapper label {
    position: absolute;
    top: -8px;
    padding: 0 5px;
    left: 7px;
    background: white;
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    line-height: 14px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.popup .input_wrapper:hover input,
.popup .input_wrapper input:focus,
form .input_wrapper:hover input,
form .input_wrapper input:focus,
.popup .input_wrapper:hover textarea,
.popup .input_wrapper textarea:focus,
form .input_wrapper:hover textarea,
form .input_wrapper textarea:focus {
    border: 1px solid #F9C621;
}
.popup .input_wrapper input:focus + label,
form .input_wrapper input:focus + label,
.popup .input_wrapper textarea:focus + label,
form .input_wrapper textarea:focus + label {
    color: #F9C621;
}
.popup .btn_popup,
form .btn_popup,
.buttons .btn_popup {
    width: 100%;
    text-align: center;
    background: #F9C621;
    border: 2px solid #F9C621;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    height: 46px;
    line-height: 42px;
    cursor: pointer;
    margin-top: 24px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
}
.popup .btn_popup:hover,
form .btn_popup:hover,
.buttons .btn_popup:hover {
    background: transparent;
    color: #F9C621;
}
.popup .label_error,
form .label_error {
    font-size: 12px;
    line-height: 12px;
    text-align: right;
    margin: 3px 0 0;
    color: #EB5757;
    font-weight: 600;
    display: none;
}
.popup .error_input input,
form .error_input input,
.popup .error_input textarea,
form .error_input textarea {
    border: 1px solid #EB5757 !important;
}
.popup .error_input label,
form .error_input label {
    color: #EB5757 !important;
}
.popup .error_input .label_error,
form .error_input .label_error {
    display: block;
}
.popup_callback {
    max-width: 380px;
}
.popup_available,
.popup_track {
    max-width: 400px;
}
.popup_success {
    max-width: 380px;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

header {
    width: 100%;
    float: left;
}
.top_header {
    width: 100%;
    float: left;
    height: 32px;
    background: #252525;
    z-index: 3;
    position: relative;
}
#langmark {
    padding: 4px 0;
}
#langmark,
#langmark ul,
#langmark li {
    float: left;
}
#langmark a {
    color: white;
    opacity: 0.6;
    font-size: 12px;
    line-height: 24px;
    text-decoration: none;
    padding: 0 5px;
}
#langmark li + li a {
    border-left: 1px solid rgba(255,255,255,0.6);
}
#langmark li.active a,
#langmark li a:hover {
    opacity: 1;
}
#langmark li.active a {
    font-weight: bold;
}
header .info_wrapper {
    padding: 4px 0;
    margin: 0 0 0 34px;
}
header .info_wrapper,
header .info_wrapper ul,
header .info_wrapper li {
    float: left;
}
header .info_wrapper a {
    color: white;
    opacity: 0.6;
    font-size: 12px;
    line-height: 24px;
    text-decoration: none;
}
header .info_wrapper li + li {
    margin: 0 0 0 23px;
}
header .info_wrapper li a.active,
header .info_wrapper li a:hover {
    opacity: 1;
    color: #F9C621;
}
header .account_wrapper {
    float: right;
    padding: 4px 0;
}
header .account_wrapper i,
header .account_wrapper ul,
header .account_wrapper li {
    float: left;
}
header .account_wrapper a {
    color: white;
    opacity: 0.6;
    font-size: 12px;
    line-height: 24px;
    text-decoration: none;
}
header .account_wrapper li a.active,
header .account_wrapper li a:hover {
    opacity: 1;
    color: #F9C621;
}
header .account_wrapper li + li {
    margin: 0 0 0 14px;
    position: relative;
}
header .account_wrapper li + li:before {
    content: '/';
    position: absolute;
    top: 1px;
    left: -9px;
    color: white;
    opacity: 0.6;
    font-size: 12px;
    line-height: 24px;
}
header .account_wrapper i {
    color: white;
    opacity: 0.6;
    font-size: 12px;
    line-height: 24px;
    margin: 0 6px 0 0;
}
header .dropdown_wrapper {
    float: right;
    color: white;
    font-size: 12px;
    line-height: 24px;
    background: #252525;
    position: relative;
    margin: 0 19px 0 0;
    cursor: default;
}
header .view_dropdown {
    opacity: 0.6;
    padding: 4px 10px;
}
header .hidden_dropdown {
    padding: 0 10px 4px;
    position: absolute;
    top: 32px;
    background: #252525;
    display: none;
    left: 0;
    width: 100%;
    min-width: 130px;
    z-index: 2;
}
header .hidden_dropdown span {
    opacity: 0.6;
    display: block;
    white-space: pre-line;
}
header .dropdown_wrapper .fa-clock,
header .dropdown_wrapper .fa-map-marker-alt {
    margin: 0 6px 0 0;
}
header .dropdown_wrapper .arrow {
    margin: 0 0 0 3px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
header .dropdown_open .view_dropdown {
    opacity: 1;
    color: #F9C621;
}
header .dropdown_open .view_dropdown .arrow {
    transform: rotate(-180deg);
}
header .dropdown_open .hidden_dropdown {
    display: block;
}
header .center_header {
    width: 100%;
    float: left;
    height: 90px;
    background: white;
}
header .center_header .container {
    height: 90px;
}
header #logo {
    width: 148px;
    height: 55px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -27px 0 0 -74px;
}
header #logo img {
    max-width: 100%;
}
header .bottom_header {
    position: relative;
    width: 100%;
    float: left;
    height: 50px;
    background: white;
    border-top: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
    z-index: 1;
}
#search {
    width: 214px;
    height: 36px;
    float: left;
    position: relative;
    margin: 27px 0 0;
}
#search input {
    border: 1px solid #EDEDED;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    float: left;
    padding: 0 35px 0 12px;
    line-height: 34px;
    outline: none;
    font-size: 13px;
}
#search input:focus,
#search input:hover {
    border: 1px solid #F9C621;
}
#search .search_btn {
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 1px;
    right: 1px;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border-radius: 0 5px 5px 0;
}
#search .search_btn:hover {
    background: #EDEDED;
}
#search img {
    vertical-align: middle;
}
#header_phones {
    float: right;
    margin: 16px 20px 0 0;
    width: 183px;
    position: relative;
    padding: 10px 0 10px 38px;
    background: white;
    z-index: 2;
}
#header_phones img {
    position: absolute;
    top: 8px;
    left: 9px;
}
#header_phones .phones {
    float: left;
    position: relative;
    height: 14px;
    overflow: hidden;
    margin-bottom: 6px;
}
#header_phones .phones a {
    color: #252525;
    text-decoration: none;
    font-size: 14px;
    line-height: 14px;
    display: block;
}
#header_phones .phones a:hover {
    color: #F9C621;
}
#header_phones .phones a + a {
    margin-top: 8px;
}
#header_phones .open_callback_form {
    float: left;
    font-size: 14px;
    color: #F9C621;
    line-height: 18px;
    cursor: pointer;
}
#header_phones .arrow {
    position: absolute;
    font-size: 12px;
    top: 10px;
    right: 9px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.header_phones_open {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}
.header_phones_open .arrow {
    transform: rotate(-180deg);
    color: #F9C621;
}
.header_phones_open .phones {
    height: auto !important;
}
.main_nav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.main_nav li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
}
.main_nav a {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 48px;
    font-weight: 500;
    text-transform: uppercase;
    color: #252525;
    text-decoration: none;
    padding: 0 12px;
}
.main_nav li:hover > a {
    background: #F9C621;
    color: white;
}
.main_nav_children {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: none;
    z-index: 1;
}
.main_nav li:hover .main_nav_children {
    display: block;
}
.main_nav > li:last-child a {
    color: #EB5757;
}
.main_nav_children:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 9.5px 0 9.5px;
    border-color: #f9c721 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 -10px;
}
.main_nav_children a {
    line-height: 28px;
    text-align: left;
    text-transform: none;
    white-space: nowrap;
}
.main_nav_children li:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
    background: #DCDCDC;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.main_nav_children li:hover a {
    background: transparent;
    color: #F9C621;
}
.main_nav_children li:hover:before {
    background: #F9C621;
}
#content {
    width: 100%;
    float: left;
}
.common-home .banner_wrapper {
    margin: 24px 0 0;
    height: 430px;
}
.banner_wrapper {
    width: 100%;
    float: left;
}
.banner_wrapper .item {
    position: absolute;
}
.banner_wrapper .item img {
    width: 100%;
    height: 100%;
}
.common-home .banner_wrapper .item_1 {
    width: 250px;
    height: 180px;
    left: 0;
    top: 0;
}
.common-home .banner_wrapper .item_2 {
    width: 250px;
    height: 250px;
    left: 0;
    top: 180px;
}
.common-home .banner_wrapper .item_3 {
    width: 610px;
    height: 430px;
    left: 250px;
    top: 0;
}
.common-home .banner_wrapper .item_4 {
    width: 250px;
    height: 250px;
    left: 860px;
    top: 0;
}
.common-home .banner_wrapper .item_5 {
    width: 250px;
    height: 180px;
    left: 860px;
    top: 250px;
}
.html_wrapper {
    width: 100%;
    float: left;
}
.common-home .html_wrapper .item {
    width: 20%;
    float: left;
    padding: 0 12px 15px;
    position: relative;
    text-align: center;
    line-height: 18px;
    font-size: 13px;
    background: white;
}
.common-home .html_wrapper .item .img_wrapper {
    width: 100%;
    float: left;
    height: 95px;
    line-height: 95px;
}
.common-home .html_wrapper .item .text {
    width: 100%;
    float: left;
}
.common-home .html_wrapper .item img {
    vertical-align: middle;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.common-home .html_wrapper .item:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #F9C621;
    opacity: 0.1;
    border-radius: 50%;
}
.common-home .html_wrapper .item:first-child:before {
    left: 121px;
    top: 20px;
}
.common-home .html_wrapper .item:nth-child(2):before {
    left: 70px;
    top: 46px;
}
.common-home .html_wrapper .item:nth-child(3):before {
    left: 70px;
    top: 20px;
}
.common-home .html_wrapper .item:nth-child(4):before {
    left: 60px;
    top: 49px;
}
.common-home .html_wrapper .item:nth-child(5):before {
    left: 66px;
    top: 17px;
}
.right_section_main {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50px;
    background: #252525;
    z-index: 10;
}
.right_section_main .section_cart_wrapper {
    height: 32vh;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.right_section_main .section_icons {
    width: 100%;
    position: relative;
}
.right_section_main .section_to_top_wrapper {
    position: absolute;
    bottom: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    left: 0;
    height: 88px;
    width: 100%;
}
.right_section_main .section_right {
    height: 50px;
    width: 100%;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    top: 0;
    left: 0;
    display: block;
}
.right_section_main .section_right .section_right_hover {
    position: absolute;
    top: 0;
    transform: translateX(50px);
    background: #252525;
    height: 50px;
    color: white;
    line-height: 50px;
    font-size: 13px;
    padding: 0 12px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    z-index: -1;
    white-space: nowrap;
}
.right_section_main .section_right .section_right_hover:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9.5px 0 9.5px 12px;
    border-color: transparent transparent transparent #252525;
    top: 50%;
    margin: -10px 0 0;
    right: -10px;
}
.right_section_main .section_right:hover .section_right_hover {
    transform: translateX(-100%);
    z-index: 0;
}
.right_section_main .section_cart {
    background: #252525 url(/image/icons/i_cart.png) center center no-repeat;
    top: inherit;
    bottom: 4vh;
    position: absolute;
}
.right_section_main .section_cart:hover {
    background: #F9C621 url(/image/icons/i_cart_hover.png) center center no-repeat;
}
.right_section_main .section_wishlist {
    background: #252525 url(/image/icons/i_wishlist.png) center center no-repeat;
    margin: 4vh 0 0;
}
.right_section_main .section_wishlist:hover {
    background: #F9C621 url(/image/icons/i_wishlist_hover.png) center center no-repeat;
}
.right_section_main .section_track_price {
    background: #252525 url(/image/icons/i_track_price.png) center center no-repeat;
}
.right_section_main .section_track_price:hover {
    background: #F9C621 url(/image/icons/i_track_price_hover.png) center center no-repeat;
}
.right_section_main .section_compare {
    background: #252525 url(/image/icons/i_compare.png) center center no-repeat;
}
.right_section_main .section_compare:hover {
    background: #F9C621 url(/image/icons/i_compare_hover.png) center center no-repeat;
}
.right_section_main .section_message {
    background: #252525 url(/image/icons/i_message.png) center center no-repeat;
    position: fixed;
    width: 50px;
    top: inherit;
    right: 0;
    left: inherit;
    bottom: 120px;
}
.right_section_main .section_message:hover {
    background: #F9C621 url(/image/icons/i_message_hover.png) center center no-repeat;
}
.right_section_main .section_to_top {
    background: #252525 url(/image/icons/i_to_top.png) center center no-repeat;
    top: 50%;
    margin: -25px 0 0;
}
.right_section_main .section_to_top:hover {
    background: #F9C621 url(/image/icons/i_to_top_hover.png) center center no-repeat;
}
.breadcrumb_wrapper {
    width: 100%;
    float: left;
    margin: 12px 0 0;
}
.breadcrumb {
    width: 100%;
    float: left;
}
.breadcrumb li {
    float: left;
    margin: 0 13px 0 0;
    position: relative;
}
.breadcrumb li + li:before {
    position: absolute;
    content: '\\';
    top: -2px;
    left: -8px;
    line-height: 18px;
    font-size: 12px;
    color: #DCDCDC;
}
.breadcrumb a {
    text-decoration: none;
    display: block;
}
.breadcrumb span {
    line-height: 12px;
    font-size: 12px;
    color: #666666;
    display: block;
}
.breadcrumb li:last-child span {
    font-weight: 500;
}
h1 {
    font-weight: 600;
    line-height: 24px;
    font-size: 24px;
    color: #252525;
    margin: 24px 0;
}
.small_description {
    line-height: 21px;
    font-size: 14px;
    width: 100%;
    float: left;
    margin: 0 0 36px;
}
.products {
    width: 825px;
    float: right;
}
.product_small_card {
    width: 255px !important;
    float: left;
    margin: 0 30px 30px 0;
    position: relative;
    height: 432px;
}
.product_small_card:nth-child(3n) {
    margin-right: 0;
}
.product_small_card .product_top {
    display: block;
    width: 100%;
    float: right;
    height: 272px;
    position: relative;
    outline: none;
}
.product_small_card .product_img {
    width: 175px;
    float: right;
}
.product_small_card .product_img img {
    max-width: 100%;
}
.product_small_card .product_name {
    width: 225px;
    display: block;
    font-size: 14px;
    line-height: 21px;
    color: #252525;
    height: 42px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
}
.product_small_card .product_colors {
    position: absolute;
    top: 0;
    padding: 15px 0 0;
    left: 15px;
    width: 40px;
    height: 235px;
    overflow: hidden;
}
.product_small_card .product_colors img {
    margin-bottom: 5px;
    opacity: 0.4;
}
.product_small_card .product_price {
    width: 225px;
    float: right;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    color: #252525;
    margin: 5px 0 0;
}
.product_small_card .view_price {
    float: left;
}
.product_small_card .view_price_old {
    float: left;
    margin-left: 10px;
    font-size: 14px;
    color: #666666;
    position: relative;
    padding: 0 1px;
}
.product_small_card .view_price_old:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #EB5757;
}
.product_small_card .product_price_old {
    color: #EB5757;
}
.product_small_card .product_btns {
    width: 225px;
    float: right;
    margin: 18px 0 0;
}
.product_small_card .product_add_to_cart_btn {
    width: 100px;
    height: 40px;
    float: left;
    background: #F9C621;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #F9C621;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.product_small_card .product_add_to_cart_btn:hover {
    background: transparent;
    color: #F9C621;
}
.product_small_card .product_add_to_cart_btn .add_to_cart_icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 6px;
    background: url(/image/icons/i_cart1.png) center center no-repeat;
    position: relative;
    top: 3px;
}
.product_small_card .product_add_to_cart_btn:hover .add_to_cart_icon {
    background: url(/image/icons/i_cart1_hover.png) center center no-repeat;
}
.product_small_card .product_small_card_inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: white;
}
.product_small_card:hover .product_small_card_inner {
    width: 311px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
.product_small_card:hover .product_img {
    width: 225px;
}
.product_small_card:hover .product_colors {
    height: 280px;
    overflow: initial;
}
.product_small_card .product_plus_variant {
    width: 40px;
    height: 40px;
    margin: 5px 0 0;
    font-size: 7px;
    color: #2D9CDB;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    padding: 5px 0 0;
    display: block;
    text-decoration: none;
}
.product_small_card .product_plus_variant span {
    font-size: 14px;
}
.product_small_card .product_add_to_track_btn,
.product_small_card .product_add_compare_btn,
.product_small_card .product_add_wishlist_btn,
.product_small_card .product_remove_to_track_btn,
.product_small_card .product_remove_compare_btn,
.product_small_card .product_remove_wishlist_btn {
    float: right;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: none;
}
.product_small_card .product_add_to_track_btn {
    background: url(/image/icons/i_track_price1.png) center center no-repeat;
}
.product_small_card .product_add_to_track_btn:hover,
.product_small_card .product_remove_to_track_btn {
    background: url(/image/icons/i_track_price1_hover.png) center center no-repeat;
}
.product_small_card .product_add_compare_btn {
    background: url(/image/icons/i_compare1.png) center center no-repeat;
}
.product_small_card .product_add_compare_btn:hover,
.product_small_card .product_remove_compare_btn {
    background: url(/image/icons/i_compare1_hover.png) center center no-repeat;
}
.product_small_card .product_add_wishlist_btn {
    background: url(/image/icons/i_wishlist1.png) center center no-repeat;
}
.product_small_card .product_add_wishlist_btn:hover,
.product_small_card .product_remove_wishlist_btn {
    background: url(/image/icons/i_wishlist1_hover.png) center center no-repeat;
}
.product_small_card .product_add_to_track_btn span,
.product_small_card .product_add_compare_btn span,
.product_small_card .product_add_wishlist_btn span,
.product_small_card .product_remove_to_track_btn span,
.product_small_card .product_remove_compare_btn span,
.product_small_card .product_remove_wishlist_btn span {
    position: absolute;
    height: 24px;
    padding: 0 6px;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #252525;
    color: white;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    display: none;
}
.product_small_card .product_add_to_track_btn:hover span,
.product_small_card .product_add_compare_btn:hover span,
.product_small_card .product_add_wishlist_btn:hover span,
.product_small_card .product_remove_to_track_btn:hover span,
.product_small_card .product_remove_compare_btn:hover span,
.product_small_card .product_remove_wishlist_btn:hover span {
    display: block;
}
.product_small_card .product_colors .product_img_color_wrapper {
    position: relative;
    cursor: pointer;
}
.product_small_card .product_colors .product_img_color_wrapper span {
    position: absolute;
    height: 24px;
    padding: 0 6px;
    top: -16px;
    left: 30px;
    background: #252525;
    color: white;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    display: none;
}
.product_small_card .product_colors .product_img_color_wrapper:hover span {
    display: block;
}
.product_small_card .product_colors .product_img_color_wrapper.active img {
    opacity: 1;
}
.product_small_card .product_colors .product_img_color_wrapper:hover img {
    opacity: 1;
}
.product_small_card .product_label {
    position: absolute;
    top: 0;
    right: 0;
    height: 21px;
    line-height: 21px;
    z-index: 1;
    padding: 0 6px;
    font-size: 10px;
    color: white;
    font-weight: bold;
}
.product_small_card:hover {
    z-index: 2;
}
.product_small_card .product_label_new {
    background: #27AE60;
}
.product_small_card .product_label_stock,
.product_small_card .product_label_discount {
    background: #EB5757;
}
.product_small_card .product_label_hit {
    background: #64C0E8;
}
.product_small_card .product_available {
    width: 225px;
    float: right;
    margin: 4px 0 0;
}
.product_small_card .product_available .available {
    font-size: 12px;
    font-weight: bold;
    float: left;
    line-height: 16px;
}
.product_small_card .product_available .showroom {
    float: right;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    color: #666666;
    border-bottom: 1px solid #F9C621;
}
.product_small_card .product_available .stock1 {
    color: #27AE60;
}
.product_small_card .product_available .stock2 {
    color: #EB5757;
}
.product_small_card .product_available .stock3 {
    color: #666666;
}
.product_small_card .product_available_report_btn {
    width: 100px;
    float: left;
    font-size: 12px;
    font-weight: bold;
    color: #F9C621;
    line-height: 14px;
    padding: 8px 0 0;
    cursor: pointer;
}
#column-left {
    width: 255px;
    float: left;
}
.description {
    width: 100%;
    float: left;
    margin: 15px 0 0;
    line-height: 21px;
    font-size: 14px;
}
.description h2 {
    margin: 24px 0 12px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}
.description img {
    max-width: 100%;
    height: auto !important;
}
.featured_wrapper {
    width: 100%;
    float: left;
    margin: 50px 0 0;
    position: relative;
}
.slick-current .product_small_card:hover .product_small_card_inner {
    width: 100%;
}
.slick-current .product_small_card:hover .product_img {
    width: 175px;
}
.slick-current .product_small_card:hover .product_colors .product_plus_variant {
    display: none;
}
.slick-active .product_small_card .product_add_compare_btn span,
.slick-active .product_small_card .product_remove_compare_btn span {
    left: -100%;
}
h2 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    margin: 0 0 30px;
}
.slick-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
}
.slick-next {
    top: 40%;
    right: -25px;
    background: white url(/image/icons/i_slick_next.png) center center no-repeat;
}
.slick-next:hover {
    background: white url(/image/icons/i_slick_next_hover.png) center center no-repeat;
}
.slick-prev {
    top: 40%;
    left: -25px;
    background: white url(/image/icons/i_slick_prev.png) center center no-repeat;
}
.slick-prev:hover {
    background: white url(/image/icons/i_slick_prev_hover.png) center center no-repeat;
}
.slick-list {
    padding: 0 0 0 10px;
}
.manufacturer_wrapper {
    width: 100%;
    float: left;
    background: white;
}
.manufacturer_wrapper a {
    display: block;
    height: 150px;
    line-height: 150px;
    text-align: center;
    width: 20%;
    float: left;
    background: white;
    position: relative;
}
.manufacturer_wrapper a:hover {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 1;
}
.manufacturer_wrapper img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}
.home_manufacturer_wrapper {
    margin: 50px 0 0;
    width: 100%;
    float: left;
}
.product_page_left {
    background: white;
    float: left;
    width: 555px !important;
    height: 467px;
    padding: 15px;
}
.product_page_left_sticky_wrapper {
    float: left;
}
.product_page_top {
    width: 100%;
    float: left;
    position: relative;
}
.product_page_right {
    width: 540px;
    float: right;
}
.product_page_block {
    width: 100%;
    float: left;
    padding: 10px 15px;
    background: white;
    margin: 0 0 10px;
}
.product_page_name_wrapper h1 {
    font-size: 22px;
    font-weight: normal;
    line-height: 33px;
    margin: 0 0 3px;
}
.page_content {
    width: 100%;
    float: left;
    margin: 12px 0 0;
}
.product_page_review_wrapper {
    font-size: 12px;
    line-height: 12px;
    color: #2D9CDB;
    float: left;
    text-decoration: none;
}
.product_page_review_wrapper .viewed_rating {
    color: #FEE24D;
}
.product_page_review_wrapper .hidden_rating {
    color: #E8E8E8;
}
.product_page_review_wrapper .rating_text {
    margin: 0 0 0 6px;
}
.product_page_article_wrapper {
    font-size: 12px;
    line-height: 12px;
    color: #666666;
    float: right;
}
.product_page_block_title {
    font-weight: 600;
    line-height: 13px;
    font-size: 13px;
}
.product_page_price_wrapper .view_price {
    height: 44px;
    background: rgba(249, 198, 33, 0.2);
    border-radius: 5px;
    padding: 0 10px;
    font-weight: 500;
    font-size: 28px;
    line-height: 44px;
    color: #EB5757;
    float: left;
    clear: left;
}
.product_page_price_wrapper .view_price_old {
    color: #666666;
    float: left;
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 3px 10px;
    padding: 0 5px;
    position: relative;
}
.product_page_price_wrapper .view_price_old:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #EB5757;
}
.product_page_quantity_wrapper {
    height: 44px;
    float: left;
    position: absolute;
    background: white;
    margin: 0;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    border: 1px solid #EDEDED;
    border-radius: 5px;
}
.product_page_quantity_minus_btn,
.product_page_quantity_plus_btn {
    width: 40px;
    float: left;
    text-align: center;
    line-height: 42px;
    cursor: pointer;
    font-size: 22px;
}
.product_page_quantity_minus_btn {
    border-right: 1px solid #EDEDED;
}
.product_page_quantity_plus_btn {
    border-left: 1px solid #EDEDED;
}
.product_page_quantity_wrapper input {
    width: 50px;
    float: left;
    display: block;
    border: none;
    height: 42px;
    line-height: 42px;
    padding: 0 3px;
    text-align: center;
    font-size: 14px;
    color: black;
    outline: none;
}
.product_page_add_to_cart_btn {
    min-width: 140px;
    text-align: center;
    height: 44px;
    float: right;
    padding: 0 18px;
    background: #F9C621;
    border-radius: 5px;
    line-height: 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: white;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border: 2px solid #F9C621;
}
.product_page_add_to_cart_btn .add_to_cart_icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 6px;
    background: url(/image/icons/i_cart1.png) center center no-repeat;
    position: relative;
    top: 5px;
}
.product_page_add_to_cart_btn:hover {
    background: transparent;
    color: #F9C621;
}
.product_page_add_to_cart_btn:hover .add_to_cart_icon {
    background: url(/image/icons/i_cart1_hover.png) center center no-repeat;
}
.product_page_available {
    margin: 10px 0 0 10px;
    font-size: 12px;
    font-weight: bold;
    float: left;
    line-height: 16px;
    clear: left;
}
.product_page_showroom {
    float: left;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    color: #666666;
    border-bottom: 1px solid #F9C621;
    margin: 10px 0 0 20px;
}
.product_page_available.stock1 {
    color: #27AE60;
}
.product_page_available.stock2 {
    color: #EB5757;
}
.product_page_available.stock3 {
    color: #666666;
}
.product_page_manufacturer_wrapper {
    display: block;
    text-decoration: none;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.product_page_manufacturer_img_wrapper {
    display: block;
    float: left;
}
.product_page_manufacturer_img_wrapper img {
    max-width: 100px;
    max-height: 100px;
    margin: 0 12px 0 0;
}
.product_page_manufacturer_title {
    display: block;
    float: left;
    font-size: 12px;
    color: #666666;
    line-height: 20px;
}
.product_page_manufacturer_text {
    font-size: 13px;
    float: left;
    display: block;
    clear: left;
    font-weight: 600;
    color: #252525;
}
.product_page_manufacturer_right {
    float: left;
    display: block;
}
.product_page_manufacturer_wrapper:hover {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}
.product_page_delivery_text,
.product_page_payment_text {
    font-size: 13px;
    line-height: 18px;
    margin: 8px 0;
}
.product_page_color_wrapper .form-group {
    float: left;
    width: 100%;
    margin: 8px 0 0;
}
.product_page_color_wrapper .form-group > div {
    float: left;
    width: 100%;
}
.product_page_color_wrapper .radio {
    float: left;
}
.product_page_color_wrapper .radio label {
    display: block;
    float: left;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.product_page_color_wrapper .color_name {
    position: absolute;
    display: none;
    height: 24px;
    background: #252525;
    font-size: 12px;
    color: white;
    line-height: 24px;
    padding: 0 6px;
    font-weight: 500;
    top: -16px;
    left: 32px;
    z-index: 1;
    white-space: nowrap;
}
.product_page_color_wrapper .radio label:hover .color_name  {
    display: block;
}
.product_page_color_wrapper input {
    display: none;
}
.product_page_color_wrapper img {
    border: 2px solid transparent;
}
.product_page_color_wrapper input:checked + img {
    border: 2px solid #F9C621;
}
.product_page_main_img {
    width: 437px;
    height: 437px;
    float: right;
    position: relative;
    cursor: pointer;
    line-height: 437px;
    text-align: center;
}
.product_page_main_img img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.product_page_main_img .img_zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
    opacity: 0.2;
    display: none;
}
.product_page_main_img:hover .img_zoom {
    display: block;
}
.product_page_bottom {
    width: 100%;
    float: left;
    margin: 30px 0 0;
}
.product_page_bottom_left {
    width: 730px;
    float: left;
}
.product_page_bottom_right {
    width: 350px;
    float: right;
}
.product_page_tab_header {
    width: 100%;
    background: white;
    display: block;
    float: left;
}
.product_page_tab_header li {
    cursor: pointer;
    text-align: center;
    height: 56px;
    line-height: 56px;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    display: block;
    float: left;
    padding: 0 16px;
}
.product_page_tab_header li.active {
    background: #F9C621;
    color: white;
}
.product_page_desc_wrapper,
.product_page_characteristic_wrapper,
.product_page_images_wrapper {
    width: 100%;
    float: left;
    padding: 15px;
    background: white;
    line-height: 21px;
    font-size: 13px;
    margin: 10px 0 0;
}
#product h2 {
    font-weight: 600;
    line-height: 22px;
    font-size: 18px;
    color: #252525;
    margin: 0 0 12px;
}
.product_page_desc_wrapper ul {
    list-style-type: disc;
    padding: 0 0 0 40px;
    margin: 0 0 1em;
}
.product_page_characteristic_wrapper table td {
    border: 1px solid #EDEDED;
    font-size: 13px;
    color: #252525;
    padding: 0 12px;
    height: 42px;
    line-height: 42px;
    min-width: 300px;
}
.product_page_characteristic_wrapper table tr td:first-child {
    color: #666666;
    min-width: 200px;
}
.product_page_images_wrapper a {
    float: left;
    margin: 0 10px 10px 0;
    cursor: pointer;
    display: block;
}
.product_page_images_wrapper a:nth-child(5n+1) {
    margin-right: 0;
}
.product_page_images_wrapper a img {
    max-width: 100%;
}
#search .search_results {
    clear: both;
    margin-top: 34px;
    padding: 0px;
    position: absolute;
    border: 1px solid #EEEEEE;
    -webkit-border-radius: 0px 0px 5px 5px;
    -moz-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
    -webkit-box-shadow: 0px 2px 2px #DDDDDD;
    -moz-box-shadow: 0px 2px 2px #DDDDDD;
    box-shadow: 0px 2px 2px #DDDDDD;
    background: #FFFFFF;
    display: none;
    z-index: 999;
}
#search .search_results table {
    border-collapse: collapse;
    width: 100%;
}
#search .search_results .active {
    background: rgba(249, 198, 33, 0.7);
    cursor: pointer;
}
#search .search_results table td {
    font-size: 10px;
    font-weight: normal;
    color: #000000;
    vertical-align: middle;
    padding: 5px 5px;
    border-bottom: 1px solid #EEEEEE;
}
#search .search_results .price {
    color: #F00000;
    text-decoration: line-through;
}
#cart {
    float: right;
    width: 66px;
    height: 90px;
    position: relative;
}
#cart:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}
#cart .cart_icon {
    width: 26px;
    height: 26px;
    background: url(/image/icons/i_cart_top.png) center center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -13px 0 0 -13px;
}
#cart:hover .cart_icon {
    background: url(/image/icons/i_cart_top_hover.png) center center no-repeat;
}
#cart .cart_count_product {
    background: #F9C621;
    border-radius: 5px;
    width: 20px;
    height: 15px;
    font-size: 12px;
    line-height: 15px;
    color: white;
    text-align: center;
    font-weight: 600;
    position: absolute;
    top: 29px;
    left: 38px;
    display: none;
}
.hidden_cart {
    width: 670px;
    background: white;
    padding: 30px;
    position: absolute;
    z-index: 10;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
    top: 90px;
    right: 0;
    display: none;
}
#cart:hover .hidden_cart,
#cart.view_hidden .hidden_cart {
    display: block;
}
#cart .cart_empty {
    text-align: right;
}
#cart .hidden_cart_title {
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    color: #252525;
    margin: 0 0 20px;
}
#cart .cart_products {
    width: 100%;
    float: left;
}
#cart .cart_product {
    width: 100%;
    float: left;
    padding: 15px 0;
    border-bottom: 1px solid #EDEDED;
    position: relative;
}
#cart .cart_product_image_wrapper {
    float: left;
    display: block;
    margin: 0 15px 0 0;
}
#cart .cart_product_name {
    font-size: 14px;
    color: #252525;
    line-height: 18px;
    display: block;
    float: left;
    text-decoration: none;
}
#cart .cart_product_articul {
    float: left;
    clear: left;
    font-size: 10px;
    color: #666666;
    line-height: 16px;
}
#cart .cart_product_right {
    float: left;
    width: 480px;
}
#cart .cart_product_details {
    float: left;
    width: 100%;
    position: relative;
    margin: 10px 0 0;
}
#cart .cart_product_price {
    font-size: 14px;
    color: #252525;
    width: 22%;
    float: left;
    margin: 16px 0 0;
}
#cart .cart_product_available {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    line-height: 10px;
    left: 0;
    top: 36px;
}
#cart .cart_product_available.stock1 {
    color: #27AE60;
}
#cart .cart_product_available.stock2 {
    color: #EB5757;
}
#cart .cart_product_available.stock3 {
    color: #666666;
}
#cart .cart_product_color {
    width: 33%;
    float: left;
    z-index: 2;
    position: relative;
}
#cart .cart_product_qt_wrapper {
    width: 25%;
    float: right;
}
#cart .cart_product_sum_wrapper {
    width: 20%;
    float: right;
}
#cart .cart_product_remove {
    position: absolute;
    top: -40px;
    right: -22px;
    cursor: pointer;
}
#cart .cart_product_section_title {
    font-size: 10px;
    font-weight: 500;
    color: #666666;
    line-height: 10px;
}
#cart .cart_product_sum {
    font-size: 14px;
    color: #252525;
    font-weight: bold;
    margin: 13px 0 0;
}
#cart .cart_product_qt_wrapper_inner {
    border: 1px solid #EDEDED;
    border-radius: 5px;
    height: 32px;
    margin: 6px 0 0;
    width: 89px;
    float: left;
}
#cart .cart_product_quantity_minus_btn {
    width: 25%;
    cursor: pointer;
    float: left;
    height: 30px;
    border-right: 1px solid #EDEDED;
    line-height: 30px;
    text-align: center;
}
#cart .cart_product_quantity_plus_btn {
    width: 25%;
    cursor: pointer;
    float: right;
    height: 30px;
    border-left: 1px solid #EDEDED;
    line-height: 30px;
    text-align: center;
}
#cart .cart_product_quantity_minus_btn:hover,
#cart .cart_product_quantity_plus_btn:hover {
    background: #EDEDED;
}
#cart .cart_product_qt_wrapper_input {
    width: 50%;
    float: left;
    text-align: center;
    font-size: 12px;
    color: #000000;
    line-height: 30px;
}
#cart .cart_product_color_select {
    border: 1px solid #EDEDED;
    position: relative;
    height: 32px;
    border-radius: 5px;
    margin: 6px 0 0;
    width: 126px;
    float: left;
    font-size: 12px;
    line-height: 30px;
    color: black;
    padding: 0 16px 0 6px;
    white-space: nowrap;
}
#cart .cart_product_color_select img {
    vertical-align: middle;
}
#cart .cart_product_color_select .arrow {
    position: absolute;
    top: 9px;
    right: 6px;
}
#cart .select_color_item_selected {
    overflow: hidden;
    cursor: pointer;
}
#cart .cart_product_color_select_hidden {
    border: 1px solid #EDEDED;
    position: absolute;
    top: 30px;
    left: 0;
    /*width: 100%;*/
    border-radius: 5px;
    background: white;
    line-height: 20px;
    display: none;
    z-index: 1;
}
#cart .cart_product_color_select_hidden .select_color_item {
    padding: 2px 6px;
    cursor: pointer;
}
#cart .cart_product_color_select_hidden .select_color_item:hover,
#cart .cart_product_color_select_hidden .select_color_item.active {
    background: #EDEDED;
}
#loader_form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
}
#loader_form img {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    position: absolute;
    margin: -125px 0 0 -125px;
}
#cart .cart_total_row {
    width: 100%;
    float: left;
}
#cart .cart_delivery {
    width: 336px;
    float: left;
    margin: 30px 0 0;
    line-height: 18px;
    font-size: 13px;
    color: #666666;
}
#cart .cart_delivery strong {
    font-weight: 600;
}
#cart .cart_total {
    width: 114px;
    float: right;
    margin: 30px 0 0;
}
#cart .cart_total_title {
    width: 100%;
    float: left;
    font-size: 10px;
    font-weight: 500;
    color: #666666;
    line-height: 10px;
}
#cart .cart_total_text {
    width: 100%;
    float: left;
    color: #252525;
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    margin: 3px 0 0;
}
.right_section_main .section_number {
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 39px;
    width: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    display: none;
}
.right_section_main .section_right:hover .section_number {
    color: white;
}
.popup_alert_content a {
    color: #2D9CDB;
    text-decoration: none;
    border-bottom: 1px solid #2D9CDB;
}
.popup_alert_content a:hover {
    border-bottom: 1px solid transparent;
}
.right_section_main .section_cart_active {
    background: #252525 url(/image/icons/i_cart_active.png) center center no-repeat;
}
.right_section_main .section_compare_active {
    background: #252525 url(/image/icons/i_compare_active.png) center center no-repeat;
}
.right_section_main .section_wishlist_active {
    background: #252525 url(/image/icons/i_wishlist_active.png) center center no-repeat;
}
.right_section_main .section_tracklist_active {
    background: #252525 url(/image/icons/i_track_price_active.png) center center no-repeat;
}
.product_page_add_wishlist_btn,
.product_page_add_compare_btn,
.product_page_add_tracklist_btn,
.product_page_remove_wishlist_btn,
.product_page_remove_compare_btn,
.product_page_remove_tracklist_btn {
    width: 33.3%;
    float: left;
    font-size: 12px;
    line-height: 15px;
    color: #252525;
    cursor: pointer;
    display: none;
}
.product_page_add_compare_btn,
.product_page_remove_compare_btn {
    padding: 0 0 0 20px;
}
.product_page_remove_wishlist_btn,
.product_page_remove_compare_btn,
.product_page_remove_tracklist_btn {
    color: #666666;
}
.product_page_add_wishlist_btn span,
.product_page_add_compare_btn span,
.product_page_add_tracklist_btn span,
.product_page_remove_wishlist_btn span,
.product_page_remove_compare_btn span,
.product_page_remove_tracklist_btn span {
    float: left;
    display: block;
}
.product_page_add_tracklist_btn span,
.product_page_remove_tracklist_btn span {
    margin: 7px 0 0;
}
.product_page_add_compare_img,
.product_page_remove_compare_img,
.product_page_add_wishlist_img,
.product_page_remove_wishlist_img,
.product_page_add_tracklist_img,
.product_page_remove_tracklist_img {
    width: 26px;
    height: 26px;
    float: left;
    margin: 0 12px 0 0;
}
.product_page_add_compare_img {
    background: url(/image/icons/i_product_page_compare.png) center center no-repeat;
}
.product_page_remove_compare_img {
    background: url(/image/icons/i_product_page_compare_active.png) center center no-repeat;
}
.product_page_add_wishlist_img {
    background: url(/image/icons/i_product_page_wishlist.png) center center no-repeat;
}
.product_page_remove_wishlist_img {
    background: url(/image/icons/i_product_page_wishlist_active.png) center center no-repeat;
}
.product_page_add_tracklist_img {
    background: url(/image/icons/i_product_page_tracklist.png) center center no-repeat;
}
.product_page_remove_tracklist_img {
    background: url(/image/icons/i_product_page_tracklist_active.png) center center no-repeat;
}
#column-right {
    width: 255px;
    float: right;
}
.account_login_right {
    width: 825px;
    float: left;
}
.list-group-account {
    width: 100%;
    float: left;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    background-color: #fff;
}
.list-group-account a {
    padding: 0 12px;
    width: 100%;
    float: left;
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-decoration: none;
    color: #252525;
    background: white;
    border-bottom: 1px solid #EDEDED;
}
.list-group-account-title {
    font-size: 20px;
    margin: 0;
    padding: 5px 12px;
    border-bottom: 1px solid #EDEDED;
}
.list-group-account a:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.list-group-account a:last-child {
    border: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.list-group-account a:hover {
    background: #EDEDED;
}
.account_login_item,
.register_item,
.account_account_item,
.account_edit_item,
.account_wishlist_item {
    background: white;
    width: 100%;
    float: left;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding: 30px;
    font-size: 14px;
}
.account_login_item p {
    line-height: 1.5;
}
.account_login_item h2,
.register_item h2,
.account_account_item h2,
.account_edit_item h2,
.account_wishlist_item h2 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}
.account_forgot_link,
.account_continue_link {
    color: #2D9CDB;
    border-bottom: 1px solid #2D9CDB;
    text-decoration: none;
    font-size: 14px;
    display: block;
    float: left;
    margin: 5px 0 0 0;
}
.account_forgot_link:hover,
.account_continue_link:hover {
    border-bottom: 1px solid transparent;
}
.btn_login,
.btn_register,
.btn_success,
.btn_account_edit_back,
.btn_account_edit {
    width: auto !important;
    float: right;
    clear: both;
    padding: 0 30px;
}
.btn_account_edit_back {
    float: left;
    background: #EB5757 !important;
    border: 2px solid #EB5757 !important;
}
.btn_account_edit_back:hover {
    background: transparent !important;
    color: #EB5757 !important;
}
.alert {
    width: 100%;
    float: left;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    margin: 0 0 15px;
}
.alert-danger {
    color: #EB5757;
}
.alert-success {
    color: #27AE60;
}
.account_login_item + .account_login_item,
.register_item + .register_item,
.account_account_item + .account_account_item,
.account_edit_item + .account_edit_item,
.account_wishlist_item + .account_wishlist_item {
    margin-top: 30px;
}
.text_account_already {
    font-size: 14px;
    line-height: 21px;
}
.text_account_already a,
.agree_link,
.small_description a,
.account_account_item a {
    color: #2D9CDB;
    border-bottom: 1px solid #2D9CDB;
    text-decoration: none;
    font-size: 14px;
}
.text_account_already a:hover,
.agree_link:hover,
.small_description a:hover,
.account_account_item a:hover {
    border-bottom: 1px solid transparent;
}
.register_h1 {
    margin-top: 0;
}
input#agree_account {
    display: none;
}
input#agree_account + label {
    display: block;
    position: relative;
    cursor: pointer;
}
input#agree_account + label:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 50%;
    margin-top: 2px;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_checkbox_not_checked.png) center center no-repeat;
}
input#agree_account:checked + label:before {
    background: url(/image/icons/i_checkbox_checked.png) center center no-repeat;
}
.register_item_buttons {
    padding: 30px 30px 30px 55px;
}
input[name="newsletter"] {
    display: none;
}
input[name="newsletter"] + label {
    display: block;
    position: relative;
    cursor: pointer;
}
input[name="newsletter"] + label:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 50%;
    margin-top: 2px;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_radio_not_checked.png) center center no-repeat;
}
input[name="newsletter"]:checked + label:before {
    background: url(/image/icons/i_radio_checked.png) center center no-repeat;
}
.register_item_newsletter p {
    padding-left: 25px;
}
.register_item .label_error {
    display: block;
}
.buttons {
    width: 100%;
    float: left;
}
.small_description_success {
    margin-bottom: 0;
}
.buttons .pull-left {
    float: left;
    width: 50%;
}
.buttons .pull-right {
    float: right;
    width: 50%;
}
.table_productlist {
    width: 100%;
    float: left;
}
.table_productlist td,
.table_productlist th {
    border: 1px solid #EDEDED;
    font-size: 14px;
    color: #252525;
    padding: 0 12px;
    height: 42px;
    line-height: 42px;
}
.table_productlist a {
    color: #2D9CDB;
    border-bottom: 1px solid #2D9CDB;
    text-decoration: none;
}
.btn_remove {
    color: #EB5757 !important;
    border-bottom: 1px solid #EB5757 !important;
}
.form_konfidential {
    color: #666;
    font-size: 10px;
    line-height: 15px;
    margin: 10px 0 0;
    text-align: center;
}
.form_konfidential a {
    color: #2D9CDB;
    text-decoration: none;
    border-bottom: 1px solid #2D9CDB;
}
.btn_open_review {
    text-align: center;
    background: #F9C621;
    border: 2px solid #F9C621;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    height: 46px;
    line-height: 42px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
    padding: 0 30px;
    float: left;
}
.btn_open_review:hover {
    color: #F9C621;
    background: transparent;
}
.popup_review {
    max-width: 600px;
    float: left;
    left: 50%;
    margin-left: -300px;
}
.popup_review .stars {
    width: 80%;
    float: left;
    margin: 0 10%;
}
.popup_review .stars .star {
    width: 20%;
    float: left;
    text-align: center;
    cursor: pointer;
}
.popup_review_content {
    width: 100%;
    float: left;
}
.popup_review .star .viewed,
.popup_review .star .hidden {
    font-size: 40px;
}
.popup_review .star .viewed {
    color: #EDEDED;
}
.popup_review .star .hidden {
    color: #F9C621;
    display: none;
}
.popup_review .star span {
    font-size: 11px;
    color: #666666;
    line-height: 11px;
    margin: 8px 0 0;
}
.popup_review .star_active .viewed {
    display: none;
}
.popup_review .star_active .hidden {
    display: block;
}
.popup_review .star_active span {
    color: #252525;
}
.popup_review .input_wrapper {
    float: left;
}
.popup_review .btn_popup_review {
    float: left;
    width: auto;
    padding: 0 30px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.popup_review .form_konfidential {
    float: left;
    width: 100%;
}
.popup_review_photo_item {
    width: 70px;
    height: 70px;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding: 7px;
    text-align: center;
    line-height: 60px;
    float: left;
    position: relative;
    margin-right: 12px;
}
.popup_review_photo_add {
    cursor: pointer;
}
.popup_review_photo_add:hover {
    border: 1px solid #F9C621;
}
.popup_review_photos {
    float: left;
}
.popup_review_photo_add img {
    float: left;
    margin: 0 0 4px 12px;
}
.popup_review_photo_add span {
    font-size: 10px;
    line-height: 10px;
    color: #666666;
    float: left;
}
.input_wrapper_review_photo .label_error {
    width: 100%;
    float: right;
    text-align: left;
}
.popup_review .stars .label_error {
    width: 100%;
    float: right;
}
.popup_review_photo_item img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}
.popup_review_photo_item .fas {
    position: absolute;
    top: -8px;
    right: -6px;
    color: #EB5757;
    cursor: pointer;
}
.table_compare {
    width: 100%;
    float: left;
}
.table_compare td {
    border: 1px solid #EDEDED;
    font-size: 13px;
    color: #252525;
    padding: 0 12px;
    height: 42px;
    line-height: 19px;
    background: white;
}
.table_compare a {
    color: #2D9CDB;
    text-decoration: none;
    border-bottom: 1px solid #2D9CDB;
}
.table_compare .hidden_rating {
    color: #EDEDED;
}
.table_compare .viewed_rating {
    color: #F9C621;
}
.btn_to_cart_compare {
    text-align: center;
    background: #F9C621;
    border: 2px solid #F9C621;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    height: 36px;
    line-height: 32px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
    margin: 3px auto 0;
    width: 120px;
}
.btn_to_cart_compare:hover {
    background: transparent;
    color: #F9C621;
}
.btn_remove_compare {
    text-align: center;
    background: #EB5757;
    border: 2px solid #EB5757 !important;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white !important;
    height: 36px;
    line-height: 32px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
    margin: 3px auto 0;
    width: 120px;
}
.btn_remove_compare:hover {
    background: transparent;
    color: #EB5757 !important;
}
.compare_empty_p {
    font-size: 14px;
}
.product_small_card .product_rating {
    width: 225px;
    float: right;
    margin: 8px 0 0;
}
.product_small_card .product_rating_stars {
    float: left;
}
.product_small_card .product_rating_text {
    float: left;
    font-size: 12px;
    color: #2D9CDB;
    line-height: 20px;
    margin: 0 0 0 6px;
}
.product_small_card .viewed_rating {
    color: #F9C621;
}
.product_small_card .hidden_rating {
    color: #EDEDED;
}
.empty_product .product_colors,
.empty_product .product_img,
.empty_product .product_label {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
    -webkit-backface-visibility: hidden;
    opacity: .6;
}
header .bottom_header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
.news_module_wrapper {
    margin: 50px 0 0;
    width: 100%;
    float: left;
}
.news_list {
    width: 100%;
    float: left;
}
.news_module_wrapper .news_module_items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.news_module_wrapper .news_module_items .news_item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 350px;
    flex-wrap: wrap;
    background: white;
    align-self: flex-start;
}
.news_list .news_item {
    width: 350px;
    float: left;
    margin-bottom: 30px;
    background: white;
}
.news_list .news_item:nth-child(3n-1) {
    margin-left: 30px;
    margin-right: 30px;
}
.news_list .news_item:nth-child(3n+1) {
    clear: left;
}
.news_module_wrapper .news_module_items .news_item .caption,
.news_list .news_item .caption {
    padding: 15px;
}
.news_module_wrapper .news_module_items .news_item .caption h4,
.news_list .news_item .caption h4 {
    font-weight: bold;
    line-height: 16px;
    font-size: 14px;
    margin: 0 0 15px;
    height: 32px;
    overflow: hidden;
}
.news_module_wrapper .news_module_items .news_item .caption h4 a,
.news_list .news_item .caption h4 a {
    text-decoration: none;
    color: #252525;
}
.news_module_wrapper .news_module_items .news_item .caption p,
.news_list .news_item .caption p {
    line-height: 18px;
    font-size: 13px;
    color: #252525;
    margin: 0 0 20px;
}
.news_module_wrapper .news_posted,
.news_list .news_posted {
    font-size: 12px;
    line-height: 12px;
    color: #666666;
}
.news_module_wrapper .all_news_link,
.news_list .all_news_link {
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
    color: #252525;
    position: absolute;
    top: 6px;
    right: 0;
}
.news_page_posted {
    font-size: 14px;
    line-height: 14px;
    color: #666666;
    float: left;
    margin: 50px 0 0;
}
.news_page_viewed {
    font-size: 14px;
    line-height: 14px;
    color: #252525;
    float: right;
    margin: 50px 0 0;
}
.pagination_wrapper {
    width: 100%;
    float: left;
    text-align: center;
}
.pagination {
    display: inline-block;
    background: white;
    border: 1px solid #EDEDED;
}
.pagination li {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-right: 1px solid #EDEDED;
    font-size: 14px;
}
.pagination li:last-child {
    border-right: none;
}
.pagination li.active,
.pagination a:hover {
    background: #F9C621;
    color: white;
}
.pagination a {
    display: block;
    color: #252525;
    text-decoration: none;
    font-size: 14px;
}
.home_htmlblock_wrapper {
    margin: 20px 0 0;
    width: 100%;
    float: left;
}
.home_htmlblock {
    background: white;
    padding: 15px;
    width: 100%;
    float: left;
}
.home_htmlblock h2 {
    margin-bottom: 0;
}
.home_htmlblock_description_hidden {
    margin: 0;
    display: none;
}
.btn_open_hidden_html {
    text-align: center;
    background: #F9C621;
    border: 2px solid #F9C621;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    height: 46px;
    line-height: 42px;
    cursor: pointer;
    margin: 24px auto 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
    width: 160px;
    clear: both;
}
.btn_open_hidden_html:hover {
    background: transparent;
    color: #F9C621;
}
footer {
    width: 100%;
    float: left;
    background: #252525;
    margin: 50px 0 0;
    color: white;
    padding: 24px 0 15px;
}
footer .item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    width: 22%;
}
footer .item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 500;
    line-height: 21px;
    font-size: 13px;
    display: block;
}
footer .item a:hover {
    color: white;
}
footer .item .text {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    line-height: 21px;
    font-size: 13px;
    width: 100%;
}
footer .item .title {
    font-weight: bold;
    line-height: 18px;
    font-size: 14px;
    color: white;
    margin: 0 0 15px;
}
footer .item .text pre {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    line-height: 21px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    white-space: pre-line;
}
footer .items_wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
footer .open_popup,
footer .footer_open_map {
    color: #F9C621 !important;
    border-bottom: 1px solid #F9C621;
    font-weight: 500 !important;
    cursor: pointer;
    float: left;
    margin: 10px 0 0;
}
footer .footer_bottom {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
footer .site_create {
    font-weight: 500;
    line-height: 21px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    width: 100%;
}
footer .site_create a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 500;
    line-height: 21px;
    font-size: 12px;
    display: inline-block;
}
.contact_wrapper {
    width: 100%;
    float: left;
}
.contact_item {
    background: white;
    width: 100%;
    float: left;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding: 30px;
    font-size: 14px;
    line-height: 21px;
}
.contact_item h2 {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}
.contact_item + .contact_item {
    margin-top: 30px;
}
.contact_left {
    width: 48%;
    float: left;
}
.contact_right {
    width: 48%;
    float: right;
}
.btn_popup_feadback {
    width: 130px !important;
    margin: 24px auto 0;
}
address {
    font-style: normal;
}
.contact_item a {
    color: #2D9CDB;
    text-decoration: none;
    border-bottom: 1px solid #2D9CDB;
}
.contact_item pre {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    white-space: pre-line;
    line-height: 21px;
}
.btn_not_found {
    text-align: center;
    background: #F9C621;
    border: 2px solid #F9C621;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    height: 46px;
    line-height: 42px;
    cursor: pointer;
    margin: 24px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
    width: 160px;
    clear: both;
    float: right;
}
.btn_not_found:hover {
    background: transparent;
    color: #F9C621;
}
/*#footer_newsletter {
    position: relative;
    margin: 5px 0 0;
}
#footer_newsletter input {
    width: 100%;
    float: left;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 0 48px 0 8px;
    font-size: 12px;
}
#footer_newsletter .btn_footer_newsletter {
    background: #F9C621 url(/image/icons/i_newsletter.png) center center no-repeat;
    border-radius: 0px 5px 5px 0px;
    width: 40px;
    height: 36px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}*/
.footer_copyright {
    /*position: absolute;*/
    font-weight: 500;
    line-height: 21px;
    font-size: 12px;
    /*right: 0;*/
    /*bottom: 0;*/
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
}
#ocfilter-mobile {
    width: 100%;
    float: left;
}
#ocfilter-mobile .navbar-header {
    width: 100%;
    float: left;
    background: #EDEDED;
    height: 42px;
    text-align: center;
    font-weight: bold;
    line-height: 42px;
    font-size: 16px;
    color: #252525;
}
#ocfilter {
    width: 100%;
    float: left;
    background: white;
    padding: 11px 15px;
}
.selected-options {
    color: #252525 !important;
    font-size: 13px;
    line-height: 13px;
    padding: 0 0 10px !important;
    border-bottom: 1px solid #EDEDED;
}
.selected-options .ocfilter-option {
    background-color: white !important;
    padding: 0 !important;
}
.selected-options .ocfilter-option button {
    padding: 3px 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    outline: none;
}
.selected-options .ocfilter-option button:hover {
    background: #EDEDED;
}
.selected-options .ocfilter-option button .fa {
    color: #EB5757;
}
.reset_all_ocfilter {
    color: #EB5757;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    margin: 7px 0 0;
}
.selected-options .ocfilter-option span {
    font-weight: 500;
}
#ocfilter .list-group-item {
    border-bottom: 1px solid #EDEDED;
    padding: 10px 0;
    width: 100%;
    float: left;
}
#ocfilter .list-group-item:last-child {
    border-bottom: none;
}
.ocfilter-option-popover {
    display: none !important;
}
#ocfilter .form-group {
    float: left;
}
#ocfilter input.input-sm {
    width: 77px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    padding: 0 9px;
    outline: none;
    font-size: 13px;
    line-height: 30px;
    color: #252525;
}
#ocfilter .form-group:first-child input.input-sm {
    border-radius: 5px 0px 0px 5px;
}
#ocfilter .form-group-center {
    margin: 0 4px;
    color: #666666;
    font-size: 14px;
    line-height: 32px;
}
.ocfilter-option .option-values {
    width: 100%;
    float: left;
}
.noUi-connect {
    background: #F9C621 !important;
    box-shadow: none !important;
}
.noUi-horizontal {
    height: 4px !important;
    box-shadow: none !important;
}
.noUi-pips-horizontal {
    display: none !important;
}
#ocfilter .scale {
    margin-top: 19px;
    margin-left: 4px !important;
    margin-right: 4px !important;
    margin-bottom: 15px !important;
}
.noUi-target {
    border: none !important;
    border-radius: 0 !important;
}
.noUi-horizontal .noUi-handle {
    width: 8px !important;
    height: 16px !important;
    left: -4px !important;
    border: none !important;
    background: #F9C621 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
}
.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
    display: none;
}
.ocfilter_btn_approve_range {
    float: right;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid #EDEDED;
    width: 46px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    font-size: 13px;
    color: #252525;
}
.ocfilter_btn_approve_range:hover {
    background: #EDEDED;
}
.ocfilter-option .option-name {
    font-weight: bold !important;
    line-height: 16px !important;
    font-size: 14px !important;
    color: #252525 !important;
}
.ocfilter-option .option-values input[type="radio"],
.ocfilter-option .option-values input[type="checkbox"] {
    display: none;
}
.ocfilter-option .option-values label {
    padding-left: 29px;
    position: relative;
}
.ocfilter-option label a {
    font-size: 13px;
    color: #252525 !important;
    line-height: 14px;
    position: relative;
}
.ocfilter-option .option-values label input[type="radio"] + a:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 2px;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_radio_not_checked.png) center center no-repeat;
}
.ocfilter-option .option-values label.selected input[type="radio"] + a:before {
    background: url(/image/icons/i_radio_checked.png) center center no-repeat;
}
.ocfilter-option .option-values label input[type="checkbox"] + a:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 2px;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_checkbox_not_checked.png) center center no-repeat;
}
.ocfilter-option .option-values label.selected input[type="checkbox"] + a:before {
    background: url(/image/icons/i_checkbox_checked.png) center center no-repeat;
}
.products_sort {
    width: 825px;
    float: right;
    margin: 0 0 20px;
}
.products_sort label {
    line-height: 42px;
    font-size: 13px;
    color: #666666;
    display: block;
    float: left;
    margin: 0 12px 0 0;
}
.products_sort_select {
    float: left;
    height: 42px;
    border: 1px solid #EDEDED;
    background: white;
    position: relative;
    border-radius: 5px;
}
.products_sort_select select {
    width: 100%;
    height: 40px;
    padding: 0 32px 0 12px;
    background: transparent;
    border: 0;
    appearance: none;            /* remove arrow        */
    -webkit-appearance: none;    /* remove arrow Chrome */
    -moz-appearance: none;       /* remove arrow FF     */
    outline: none;
    line-height: 40px;
    font-size: 13px;
    color: #252525;
    cursor: pointer;
}
.products_sort_select select::-ms-expand{
    display: none;             /* remove arrow IE     */
}
.products_sort_select .arrow_sort {
    color: #252525;
    position: absolute;
    right: 12px;
    top: 13px;
}
.ocfilter-option .option-values-select {
    height: 32px;
    border: 1px solid #EDEDED;
    background: white;
    position: relative;
    border-radius: 5px;
    float: left;
}
.ocfilter-option .option-values-select select {
    box-shadow: none;
    width: 100%;
    height: 30px;
    padding: 0 32px 0 12px;
    background: transparent;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    line-height: 30px;
    font-size: 13px;
    color: #252525;
    cursor: pointer;
}
.ocfilter-option .option-values-select .arrow_ocfilter_select {
    color: #252525;
    position: absolute;
    right: 12px;
    top: 9px;
}
.all_review_wrapper {
    width: 100%;
    float: left;
    margin: 50px 0 0;
}
.all_review_wrapper .review_items {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.all_review_wrapper .review_item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 255px;
    background: white;
    padding: 15px;
    flex-wrap: wrap;
    /*align-self: flex-start;*/
}
.all_review_wrapper .review_item .review_name {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    color: #252525;
    margin: 0 0 6px;
}
.all_review_wrapper .review_item .review_product {
    /*height: 36px;
    overflow: hidden;*/
    width: 100%;
    margin: 0 0 2px;
}
.all_review_wrapper .review_item .review_product a {
    font-size: 13px;
    line-height: 18px;
    color: #2D9CDB;
    text-decoration: none;
}
.all_review_wrapper .review_item .fa-star {
    font-size: 12px;
}
.all_review_wrapper .review_item .hidden_rating .fa-star {
    color: #E8E8E8;
}
.all_review_wrapper .review_item .viewed_rating .fa-star {
    color: #FEE24D;
}
.all_review_wrapper .review_item .review_rating {
    width: 100%;
}
.all_review_wrapper .review_item .review_text {
    line-height: 18px;
    font-size: 13px;
    color: #666666;
}
.common-home .html_wrapper .item:hover .img_wrapper img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.product_page_reviews {
    width: 100%;
    float: left;
    margin: 20px 0 0;
}
.product_page_reviews .review_item {
    width: 100%;
    float: left;
    border-top: 1px solid #EDEDED;
    padding: 15px 0;
}
.product_page_reviews .review_item:last-child {
    padding-bottom: 0;
}
.product_page_reviews .review_name {
    float: left;
    font-weight: 600;
    line-height: 14px;
    font-size: 14px;
    color: #252525;
}
.product_page_reviews .review_rating {
    float: left;
    margin: 0 0 0 12px;
    line-height: 12px;
}
.product_page_reviews .review_rating .fa-star {
    font-size: 12px;
}
.product_page_reviews .review_rating .hidden_rating .fa-star {
    color: #E8E8E8;
}
.product_page_reviews .review_rating .viewed_rating .fa-star {
    color: #FEE24D;
}
.product_page_reviews .review_date {
    float: right;
    color: #666666;
    font-size: 12px;
    line-height: 12px;
}
.product_page_reviews .review_text {
    width: 100%;
    float: left;
    margin: 15px 0 0;
    line-height: 18px;
    font-size: 13px;
    color: #252525;
}
.product_page_reviews .review_advantages,
.product_page_reviews .review_limitations {
    line-height: 18px;
    font-size: 13px;
    color: #252525;
    margin: 5px 0 0;
    width: 100%;
    float: left;
}
.product_page_reviews .review_advantages span,
.product_page_reviews .review_limitations span {
    font-weight: 600;
}
.all_review_wrapper .review_item .review_text a {
    color: #2D9CDB;
    text-decoration: none;
    border-bottom: 1px solid #2D9CDB;
}
.slick-list {
    padding: 0 !important;
}
.product_page_main_images {
    width: 78px;
    float: left;
    position: relative;
}
.product_page_left .product_images {
    height: 437px;
    overflow: hidden;
}
.product_page_main_images .product_image + .product_image {
    margin-top: 10px;
}
.product_page_main_images .product_image {
    cursor: pointer;
    border: 2px solid transparent;
}
.product_page_main_images .product_image_active {
    border: 2px solid #F9C621;
}
.product_page_main_images img {
    max-width: 100%;
}
.fancybox_product_images {
    display: none;
}
.scroll_product_image {
    position: absolute;
    bottom: 0;
    height: 18px;
    width: 100%;
    left: 0;
    text-align: center;
    background: #DCDCDC;
    opacity: 0.5;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    display: none;
    z-index: 1;
}
.scroll_product_image_up {
    position: absolute;
    top: 0;
    height: 18px;
    width: 100%;
    left: 0;
    text-align: center;
    background: #DCDCDC;
    opacity: 0.5;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    display: none;
    /*z-index: 1;*/
}
.scroll_product_image:hover,
.scroll_product_image_up:hover {
    opacity: 1;
}
.popup_option {
    width: 700px;
    float: left;
    left: 50%;
    margin-left: -350px;
}
.open_option_form {
    float: left;
    font-size: 12px;
    color: #2D9CDB;
    border-bottom: 1px dashed #2D9CDB;
    line-height: 15px;
    margin: 13px 0 0 8px;
    cursor: pointer;
}
.popup_option_content .radio {
    width: 25%;
    text-align: center;
    float: left;
}
.popup_option_content .radio:nth-child(4n+1) {
    clear: left;
}
.popup_option_content .radio input {
    display: none;
}
.popup_option_content .radio span {
    display: block;
}
.popup_option_content .radio label {
    width: 100%;
    display: block;
    float: left;
    cursor: pointer;
    border-right: 2px solid #EDEDED;
    border-top: 2px solid #EDEDED;
    position: relative;
}
.popup_option_content .radio .color_price {
    height: 30px;
    background: rgba(249, 198, 33, 0.2);
    border-radius: 5px;
    padding: 0 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #EB5757;
    width: 100%;
}
.popup_option_content .radio .color_name {
    font-weight: 500;
    margin: 10px 0;
    height: 26px;
    overflow: hidden;
    font-size: 13px;
    line-height: 13px;
}
.popup_option_content {
    border-left: 2px solid #EDEDED;
    border-bottom: 2px solid #EDEDED;
    width: 100%;
    float: left;
}
.popup_option_content .radio .active_label {
    z-index: 1;
}
.popup_option_content .radio .active_label:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border: 2px solid #F9C621;
}
.fancybox-thumbs__list a:before {
    border: 2px solid #EB5757;
}
.fancybox-progress {
    background: #EB5757;
}
.product_page_present_title {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #EB5757;
    width: 100%;
    float: left;
    margin: 0 0 10px;
}
.product_page_present_open_desc {
    display: inline-block;
    color: #2D9CDB;
    font-size: 12px;
    margin: 0 0 0 10px;
    line-height: 15px;
    border-bottom: 1px dashed #2D9CDB;
    cursor: pointer;
    font-weight: normal;
}
.popup_present {
    width: 60%;
}
.product_page_present_products {
    float: left;
}
.product_page_present_products a {
    float: left;
}
.product_page_present_plus_product {
    float: left;
    font-size: 24px;
    margin: 0 16px;
    color: #2D9CDB;
    line-height: 60px;
}
#clockdiv {
    float: left;
    margin: 0 0 0 40px;
}
#clockdiv .stock_last {
    font-size: 12px;
    line-height: 18px;
    color: #252525;
    text-align: center;
}
#clockdiv .clock > div {
    float: left;
    width: 42px;
}
#clockdiv .clock_item_number {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    color: #252525;
    width: 100%;
    float: left;
}
#clockdiv .clock_item_name {
    font-size: 10px;
    text-align: center;
    color: #252525;
    width: 100%;
    float: left;
}
#clockdiv .clock > div.clock_delimeter {
    width: auto;
    font-size: 18px;
    line-height: 27px;
    color: #252525;
    font-weight: 500;
}
.present_one .product_page_present_title {
    width: auto;
    margin-left: 12px;
}
.present_one .clock {
    float: left;
}
.present_one #clockdiv {
    margin-left: 12px;
}
.present_one #clockdiv .stock_last {
    float: left;
    margin: 4px 0 0;
}
.product_list_present {
    position: absolute;
    z-index: 1;
    right: 11px;
    top: 33px;
}
.product_page_option_select_wrapper {
    height: 32px;
    border: 1px solid #EDEDED;
    background: white;
    position: relative;
    border-radius: 5px;
    float: left;
}
.arrow_product_page_select {
    color: #252525;
    position: absolute;
    right: 12px;
    top: 7px;
}
.product_page_option_select_wrapper select {
    box-shadow: none;
    width: 100%;
    height: 30px;
    padding: 0 32px 0 12px;
    background: transparent;
    border: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    line-height: 30px;
    font-size: 13px;
    color: #252525;
    cursor: pointer;
}
.product_page_option_wrapper .form-group {
    width: 100%;
    float: left;
    margin: 10px 0 0;
}
.product_page_option_wrapper .form-group label {
    float: left;
    font-size: 13px;
    line-height: 32px;
    color: #666666;
    margin: 0 8px 0 0;
}
.all_select_arrow {
    cursor: pointer;
}
.all_select_wrapper:before {
    content: "\f107";
    color: #252525;
    position: absolute;
    right: 12px;
    top: 7px;
    cursor: pointer;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.all_select_wrapper select {
    position: relative;
}
.products_sort_select:before {
    top: 12px;
}
.required_asterisk {
    color: #EB5757;
}
.product_page_price_wrapper {
    position: relative;
}
.product_page_quantity_plus_btn:hover,
.product_page_quantity_minus_btn:hover {
    background: #EDEDED;
}
.product_page_link_more {
    float: left;
    font-size: 12px;
    color: #2D9CDB;
    border-bottom: 1px dashed #2D9CDB;
    line-height: 15px;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
}
.slick_wrapper_set {
    background: white;
    width: 100%;
    float: left;
    margin: 0 0 30px;
    padding: 15px;
}
.set_item_title {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #EB5757;
    width: 100%;
    float: left;
}
.set_item_left_product,
.set_item_plus,
.set_item_right_product,
.set_item_ravno {
    float: left;
    position: relative;
}
.set_item_image_wrapper {
    width: 110px;
    height: 110px;
    line-height: 110px;
    float: left;
    display: block;
}
.set_item_image_wrapper img {
    max-width: 100%;
    max-height: 110px;
    vertical-align: middle;
}
.set_item_left_product {
    margin: 0 0 0 80px;
}
.set_item_left_title {
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    color: #666666;
    margin: 16px 0 6px 122px;
}
.set_item_product {
    font-size: 14px;
    color: #252525;
    float: left;
    width: 160px;
    white-space: pre-line;
    margin: 8px 0 0 12px;
    display: block;
    text-decoration: none;
    max-height: 48px;
    overflow: hidden;
}
.set_item_price {
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    color: #252525;
    margin: 60px 0 0 122px;
    width: 160px;
}
.set_item_plus {
    color: #2D9CDB;
    font-size: 34px;
    margin: 55px 24px 0;
}
.set_item_right_product .set_item_image_wrapper {
    margin-top: 34px;
}
.set_item_right_product .set_item_product {
    margin-top: 42px;
    outline: none;
}
.set_item_old_price,
.set_item_buy_price_old{
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    color: #666666;
    padding: 0 2px;
    /* margin: 71px 0 0 122px; */
    left: 122px;
    width: 70px;
    white-space: nowrap;
    position: absolute;
    text-align: center;
    top: 75px;
}
.set_item_buy_price_old {
    position: relative;
    margin: 10px auto 0;
    top: auto;
    left: auto;
}
.set_item_old_price:before,
.set_item_buy_price_old:before {
    content: '';
    position: absolute;
    background: #EB5757;
    width: 100%;
    height: 2px;
    left: 0;
    top: 8px;
}
.set_item_new_price {
    position: absolute;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    /* margin: 74px 0 0 122px; */
    left: 122px;
    width: 160px;
    color: #EB5757;
    top: 95px;
}
.set_item_buy_wrapper {
    float: right;
    width: 211px;
    height: 147px;
    border-radius: 5px;
    border: 1px solid #EDEDED;
    text-align: center;
    margin: 16px 70px 0 0;
}
.set_item_buy_price {
    font-weight: 500;
    font-size: 24px;
    line-height: 44px;
    color: #252525;
    height: 44px;
    background: rgba(249, 198, 33, 0.2);
    border-radius: 5px;
    display: inline-block;
    padding: 0 10px;
    margin: 10px 0 0;
}
.product_page_add_to_cart_set_btn {
    height: 40px;
    background: #F9C621;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    line-height: 36px;
    color: white;
    text-align: center;
    display: inline-block;
    padding: 0 10px;
    cursor: pointer;
    margin: 15px 0 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border: 2px solid #F9C621;
}
.product_page_add_to_cart_set_btn .add_to_cart_icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 6px;
    background: url(/image/icons/i_cart1.png) center center no-repeat;
    position: relative;
    top: 5px;
}
.product_page_add_to_cart_set_btn:hover {
    background: white;
    color: #F9C621;
}
.product_page_add_to_cart_set_btn:hover .add_to_cart_icon {
    background: url(/image/icons/i_cart1_hover.png) center center no-repeat;
}
.slick_wrapper_set .slick-dots {
    text-align: center;
    margin: 10px 0 0;
}
.slick_wrapper_set .slick-dots li {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #EDEDED;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
}
.slick_wrapper_set .slick-dots li.slick-active {
    background: #F9C621;
}
.slick_wrapper_set .slick-dots li button {
    display: none;
}
.set_item_ravno {
    color: #DCDCDC;
    font-size: 34px;
    margin: 55px 24px 0;
}
.ocfilter .all_select_wrapper:not(.option-values-select):before {
    display: none;
}
#cart .cart_total_text + .cart_total_title {
    margin-top: 10px;
}
.product_page_small_card {
    width: 100%;
    background: white;
    padding: 18px 30px;
    float: left;
}
.product_page_small_card_title {
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: #666666;
    width: 100%;
    float: left;
    margin: 3px 0 30px;
}
.product_page_small_card_img_wrapper {
    width: 200px;
    height: 200px;
    float: left;
    left: 50%;
    position: relative;
    margin: 0 0 0 -100px;
}
.product_page_small_card_img_wrapper img {
    vertical-align: middle;
    line-height: 200px;
    max-width: 100%;
    max-height: 100%;
}
.product_page_small_card_name {
    width: 100%;
    float: left;
    font-size: 14px;
    line-height: 21px;
    color: #252525;
    margin: 21px 0 24px;
}
.product_page_small_card_price {
    width: 100%;
    float: left;
}
.product_page_small_card_price .view_price_old {
    display: none;
}
.product_page_small_card_price .view_price {
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    color: #252525;
    margin: 0 0 6px;
}
.product_page_small_card_available {
    float: left;
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
}
.product_page_small_card_available.stock1 {
    color: #27AE60;
}
.product_page_small_card_available.stock2 {
    color: #EB5757;
}
.product_page_small_card_available.stock3 {
    color: #666666;
}
.product_page_small_card_showroom {
    float: right;
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
    color: #666666;
    border-bottom: 1px solid #F9C621;;
}
.product_page_small_card_btns {
    width: 100%;
    float: left;
    margin: 12px 0;
}
.product_page_small_card_add_to_cart_btn {
    width: 100px;
    height: 40px;
    float: left;
    background: #F9C621;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #F9C621;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.product_page_small_card_add_to_cart_btn .add_to_cart_icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 6px;
    background: url(/image/icons/i_cart1.png) center center no-repeat;
    position: relative;
    top: 3px;
}
.product_page_small_card_add_to_cart_btn:hover {
    background: transparent;
    color: #F9C621;
}
.product_page_small_card_add_to_cart_btn:hover .add_to_cart_icon {
    background: url(/image/icons/i_cart1_hover.png) center center no-repeat;
}
.product_page_small_card_add_tracklist_btn,
.product_page_small_card_add_compare_btn,
.product_page_small_card_add_wishlist_btn,
.product_page_small_card_remove_tracklist_btn,
.product_page_small_card_remove_compare_btn,
.product_page_small_card_remove_wishlist_btn {
    float: right;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: none;
}
.product_page_small_card_add_tracklist_btn {
    background: url(/image/icons/i_track_price1.png) center center no-repeat;
}
.product_page_small_card_add_tracklist_btn:hover,
.product_page_small_card_remove_tracklist_btn {
    background: url(/image/icons/i_track_price1_hover.png) center center no-repeat;
}
.product_page_small_card_add_compare_btn {
    background: url(/image/icons/i_compare1.png) center center no-repeat;
}
.product_page_small_card_add_compare_btn:hover,
.product_page_small_card_remove_compare_btn {
    background: url(/image/icons/i_compare1_hover.png) center center no-repeat;
}
.product_page_small_card_add_wishlist_btn {
    background: url(/image/icons/i_wishlist1.png) center center no-repeat;
}
.product_page_small_card_add_wishlist_btn:hover,
.product_page_small_card_remove_wishlist_btn {
    background: url(/image/icons/i_wishlist1_hover.png) center center no-repeat;
}
/*.product_page_small_card_add_tracklist_btn span,
.product_page_small_card_add_compare_btn span,
.product_page_small_card_add_wishlist_btn span,
.product_page_small_card_remove_tracklist_btn span,
.product_page_small_card_remove_compare_btn span,
.product_page_small_card_remove_wishlist_btn span {
    position: absolute;
    height: 24px;
    padding: 0 6px;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #252525;
    color: white;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
    display: none;
}
.product_page_small_card_add_tracklist_btn:hover span,
.product_page_small_card_add_compare_btn:hover span,
.product_page_small_card_add_wishlist_btn:hover span,
.product_page_small_card_remove_tracklist_btn:hover span,
.product_page_small_card_remove_compare_btn:hover span,
.product_page_small_card_remove_wishlist_btn:hover span {
    display: block;
}*/
.product_page_small_card_add_tracklist_btn,
.product_page_small_card_remove_tracklist_btn {
    margin: 0 19px;
}
.product_page_desc_wrapper img {
    max-width: 100%;
    height: auto !important;
}
.product_page_review_photos {
    width: 100%;
    float: left;
}
.product_page_review_photos a {
    display: block;
    width: 60px;
    height: 60px;
    float: left;
}
.product_page_review_photos img {
    max-width: 100%;
}
.product_page_review_photos a:nth-child(5n+1) {
    margin-right: 10px;
}
.product_related_card {
    width: 144px !important;
    margin: 0 33px 0 0;
}
.product_related_card .product_top {
    font-size: 13px;
    line-height: 19px;
    color: #252525;
    text-decoration: none;
    outline: none;
    margin: 0;
    max-width: 100%;
}
.product_related_card .product_name {
    margin: 6px 0 8px;
    display: block;
}
.product_related_card .hidden_rating {
    color: #EDEDED;
}
.product_related_card .viewed_rating {
    color: #F9C621;
}
.product_related_card .product_rating_stars {
    float: left;
}
.product_related_card .product_rating_text {
    float: left;
    font-size: 12px;
    color: #2D9CDB;
    line-height: 20px;
    margin: 0 0 0 6px;
}
.product_related_card .product_price {
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    color: #252525;
    float: left;
    margin: 10px 0 0;
    width: 100%;
}
.product_related_card .slick-next,
.product_related_card .slick-prev {
    top: 27%;
}
.product_page_grayscale  {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
    -webkit-transition: all .6s ease;
    -webkit-backface-visibility: hidden;
    opacity: .6;
}
.product_page_available_report_btn {
    float: left;
    font-size: 16px;
    font-weight: bold;
    color: #F9C621;
    line-height: 14px;
    padding: 14px 0 0 30px;
    cursor: pointer;
}
.products_search {
    width: 100%;
}
.products_search .product_small_card:nth-child(3n) {
    margin-right: 30px; 
}
.products_search .product_small_card:nth-child(4n) {
    margin-right: 0; 
}
.products_sort_search {
    width: 100%;
}
.manuf_cat_title {
    width: 100%;
    float: left;
    background: #EDEDED;
    height: 42px;
    text-align: center;
    font-weight: bold;
    line-height: 42px;
    font-size: 16px;
    color: #252525;
}
.manuf_cat_list {
    width: 100%;
    float: left;
    background: white;
}
.manuf_cat_list a {
    display: block;
    width: 100%;
    float: left;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 13px;
    color: #252525;
    text-decoration: none;
    outline: none;
    border-bottom: 1px solid #EDEDED;
}
.manuf_cat_list a:last-child {
    border: none;
}
.manuf_cat_list a:hover {
    background: #f7f7f7;
}
.cart_product_present {
    font-size: 12px;
    line-height: 12px;
    color: #EB5757;
    margin: 10px 0 0;
    float: left;
}
.cart_page_table {
    background: white;
    width: 100%;
}
.cart_page_table thead th {
    text-align: center;
    font-weight: normal;
    height: 40px;
    line-height: 40px;
    padding: 0 3px;
    font-size: 14px;
    color: #252525;
    border: 1px solid #EDEDED;
    background: #fbfbfb;
}
.cart_page_table td {
    line-height: 18px;
    padding: 0 3px;
    font-size: 14px;
    color: #252525;
    border: 1px solid #EDEDED;
}
.text-center {
    text-align: center;
}
.cart_page_product_link {
    color: #252525;
    text-decoration: none;
    outline: none;
    font-size: 14px;
}
.cart_page_table .cart_page_product_link_td {
    font-size: 10px;
}
.cart_page_table .cart_product_color_select {
    border: 1px solid #EDEDED;
    position: relative;
    height: 32px;
    border-radius: 5px;
    margin: 6px 0 0;
    width: 100%;
    font-size: 12px;
    line-height: 30px;
    color: black;
    padding: 0 16px 0 6px;
    white-space: nowrap;
}
.cart_page_table .cart_product_color_select img {
    vertical-align: middle;
}
.cart_page_table .cart_product_color_select .arrow {
    position: absolute;
    top: 9px;
    right: 6px;
}
.cart_page_table .select_color_item_selected {
    overflow: hidden;
    cursor: pointer;
}
.cart_page_table .cart_product_color_select_hidden {
    border: 1px solid #EDEDED;
    position: absolute;
    top: 30px;
    left: 0;
    /*width: 100%;*/
    border-radius: 5px;
    background: white;
    line-height: 20px;
    display: none;
    z-index: 1;
}
.cart_page_table .cart_product_color_select_hidden .select_color_item {
    padding: 2px 6px;
    cursor: pointer;
}
.cart_page_table .cart_product_color_select_hidden .select_color_item:hover,
.cart_page_table .cart_product_color_select_hidden .select_color_item.active {
    background: #EDEDED;
}
.cart_page_table .cart_product_qt_wrapper_inner {
    border: 1px solid #EDEDED;
    border-radius: 5px;
    height: 32px;
    margin: 6px auto 0;
    width: 89px;
}
.cart_page_table .cart_product_quantity_minus_btn {
    width: 25%;
    cursor: pointer;
    float: left;
    height: 30px;
    border-right: 1px solid #EDEDED;
    line-height: 30px;
    text-align: center;
}
.cart_page_table .cart_product_quantity_plus_btn {
    width: 25%;
    cursor: pointer;
    float: right;
    height: 30px;
    border-left: 1px solid #EDEDED;
    line-height: 30px;
    text-align: center;
}
.cart_page_table .cart_product_quantity_minus_btn:hover,
.cart_page_table .cart_product_quantity_plus_btn:hover {
    background: #EDEDED;
}
.cart_page_table .cart_product_qt_wrapper_input {
    width: 50%;
    float: left;
    text-align: center;
    font-size: 12px;
    color: #000000;
    line-height: 30px;
    height: 30px;
    border: none;
    outline: none;
}
.cart_page_update_btn {
    text-align: center;
    background: #F9C621;
    border: 2px solid #F9C621;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    height: 26px;
    line-height: 22px;
    cursor: pointer;
    margin-top: 4px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
}
.cart_page_update_btn:hover {
    background: transparent;
    color: #F9C621;
}
.cart_page_remove_btn {
    cursor: pointer;
    text-align: center;
}
.cart_page_remove_btn .fa {
    color: #EB5757;
}
.cart_page_modules h2 {
    font-size: 20px;
    line-height: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.cart_page_modules p {
    font-size: 13px;
    line-height: 21px;
}
.cart_page_accordion .panel-heading {
    display: none;
}
.cart_page_table_total td {
    padding: 5px 3px;
}
.cart_page_table_total {
    margin: 15px 0 0;
    float: left;
}
.cart_page_accordion label {
    font-size: 13px;
    line-height: 21px;
}
.cart_page_accordion .input-group input {
    float: left;
    border: 1px solid #EDEDED;
    border-radius: 5px;
    height: 46px;
    font-size: 14px;
    color: #252525;
    line-height: 44px;
    padding: 0 12px;
    outline: none;
}
.cart_page_accordion input[type="button"] {
    text-align: center;
    border: 2px solid #F9C621;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    height: 44px;
    line-height: 40px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    outline: none;
    display: block;
    text-decoration: none;
    padding: 0 20px;
    margin-left: 15px;
    background: transparent;
    color: #F9C621;
}
.cart_page_present {
    color: #EB5757;
}
.cart_page_buttons .pull-left,
.cart_page_buttons .pull-right,
.cart_page_buttons a {
    width: auto;
}
.cart_page_buttons a {
    padding: 0 30px;
}
input[name="register"] {
    display: none;
}
input[name="register"] + label {
    display: block;
    position: relative;
    cursor: pointer;
}
input[name="register"] + label:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 50%;
    margin-top: 2px;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_radio_not_checked.png) center center no-repeat;
}
input[name="register"]:checked + label:before {
    background: url(/image/icons/i_radio_checked.png) center center no-repeat;
}
.register_item_newsletter p {
    padding-left: 25px;
}
.form-group-radio input[type="radio"] {
    display: none;
}
.form-group-radio input[type="radio"] + label {
    display: block;
    position: relative;
    cursor: pointer;
}
.form-group-radio input[type="radio"] + label:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 50%;
    margin-top: 2px;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_radio_not_checked.png) center center no-repeat;
}
.form-group-radio input[type="radio"]:checked + label:before {
    background: url(/image/icons/i_radio_checked.png) center center no-repeat;
}
.form-group-radio p {
    padding-left: 25px;
}
.header_cart_checkout_btn {
    display: block;
    float: left;
    clear: left;
    height: 34px;
    padding: 0 18px;
    background: #F9C621;
    border-radius: 5px;
    line-height: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    color: white;
    border: 2px solid #F9C621;
    text-decoration: none;
    margin: 15px 0 0;
}
.header_cart_checkout_btn:hover {
    background: transparent;
    color: #F9C621;
}
.main_banner_top {
    width: 100%;
    float: left;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    text-decoration: none;
    padding: 14px 15px;
    line-height: 20px;
    z-index: 11;
    position: relative;
}
.tracklist_desc {
    float: left;
    margin: 15px 0 0;
    text-align: center;
    width: 100%;
    color: #EB5757;
}
.container_compare {
    overflow: auto;
}
.register_item_shipping .form-group-radio input[type="radio"] + label:before,
.register_item_payments .form-group-radio input[type="radio"] + label:before,
.checkout_item_newsletter .form-group input[type="radio"] + label:before {
    top: 0;
}
.table_order_list tbody tr:hover {
    background: #EDEDED;
}
.table_order_info {
    margin-bottom: 30px;
}
.table_order_info th {
    background: #f9f9f9;
}
.table_order_info td {
    line-height: 21px;
}


.menu-toggle {
    position: relative;
    display: none;
    float: right;
    height: 50px;
    font-size: 22px;
    line-height: 50px;
    padding-right: 60px;
    margin-left: auto;
    cursor: pointer;
}
.menu-toggle:after {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background: url(../image/list-menu.png) no-repeat center;
}
.menu-toggle.on:after {
    background: url(../image/close-button.png) no-repeat center;
}
.sub-menu-toggle {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    font-size: 24px;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
}
.sub-menu-toggle:before {
    position: absolute;
    content: '+';
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
}
.sub-menu-toggle.on:before {
    content: '-';
}
.touch_header_phones {
    display: none;
}
.product_page_name_wrapper_mobile {
    display: none;
}
.cart_page_delivery {
    float: right;
    font-size: 13px;
    line-height: 21px;
    margin: 5px 0 0;
}
.colum_color_td {
    display: none;
}
.home_htmlblock h1 {
    margin: 0;
}
.product_page_available_report_btn,
.product_page_quantity_wrapper,
.product_page_add_to_cart_btn,
.product_page_small_card_btns {
    display: none;
}
.product_page_images_wrapper_top {
    padding: 15px;
    background: white;
    line-height: 21px;
    font-size: 13px;
    margin: 0 0 30px;
}
.product_page_images_wrapper_top a {
    float: left;
    margin: 0 10px 10px 0;
    cursor: pointer;
    display: block;
}
.product_page_images_wrapper_top a:nth-child(5n+1) {
    margin-right: 0;
}
.product_page_images_wrapper_top a img {
    max-width: 100%;
}
.product_related_card_top {
    width: 170px !important;
    margin: 0 46px 0 0;
}
.product_page_images_wrapper_top .slick-prev,
.product_page_images_wrapper_top .slick-next {
    top: 30%;
}
#accordion .panel {
    float: left;
    clear: left;
}
#accordion .panel + .panel {
    margin-top: 10px;
}
#accordion .panel + .panel label {
    margin-bottom: 10px;
    display: block;
}
.wf_hidden_options_btn {
    border: 1px solid #F9C621;
    background: white;
    font-size: 13px;
    color: #252525;
    outline: none;
    cursor: pointer;
    height: 32px;
    padding: 0 10px;
    border-radius: 5px;
    margin: 10px 0 0;
}
.wf_hidden_options_btn:hover {
    background: #EDEDED;
}
.wf_hidden_options_btn span {
    margin: 0 5px 0 0;
}
.wf_hidden_options_btn .span2 {
    display: inline-block;
}
.wf_hidden_options_btn .span1 {
    display: none;
}
.wf_hidden_options_btn .fa {
    transform: rotate(180deg);
}
.wf_hidden_options_btn.collapsed .span2 {
    display: none;
}
.wf_hidden_options_btn.collapsed .span1 {
    display: inline-block;
}
.wf_hidden_options_btn.collapsed .fa {
    transform: rotate(0deg);
}
#ocfilter-hidden-options.collapse {
    display: none;
}
#ocfilter-hidden-options.collapse.in {
    display: block;
}
.wf_collapse_more_options {
    display: none;
}
.wf_collapse_more_options.in {
    display: block;
}
.option-values p > a {
    color: #F9C621;
    border-bottom: 1px solid #F9C621;
    text-decoration: none;
}
.option-values p > a .fa {
    transform: rotate(180deg);
}
.option-values p > a .span2 {
    display: inline-block;
}
.option-values p > a .span1 {
    display: none;
}
.option-values p > a.collapsed .span2 {
    display: none;
}
.option-values p > a.collapsed .span1 {
    display: inline-block;
}
.option-values p > a.collapsed .fa {
    transform: rotate(0deg);
}
.webfun_product_page_option_check_wrapper input[type="checkbox"],
.webfun_product_page_option_check_wrapper input[type="radio"] {
    float: left;
    display: none;
    cursor: pointer;
}
.product_page_option_wrapper .webfun_product_page_option_check_wrapper label {
    line-height: 13px;
    position: relative;
    cursor: pointer;
}
.product_page_option_wrapper .webfun_product_page_option_check_wrapper p {
    float: left;
    padding-left: 25px;
    width: 100%;
}
.webfun_product_page_option_check_wrapper input[type="radio"] + label:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 0;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_radio_not_checked.png) center center no-repeat;
}
.webfun_product_page_option_check_wrapper input[type="checkbox"] + label:before {
    position: absolute;
    content: "";
    left: -25px;
    top: 0;
    width: 14px;
    height: 14px;
    background: url(/image/icons/i_checkbox_not_checked.png) center center no-repeat;
}
.webfun_product_page_option_check_wrapper input[type="radio"]:checked + label:before {
    background: url(/image/icons/i_radio_checked.png) center center no-repeat;
}
.webfun_product_page_option_check_wrapper input[type="checkbox"]:checked + label:before {
    background: url(/image/icons/i_checkbox_checked.png) center center no-repeat;
}
.description ul {
    list-style-type: disc;
    padding: 0 0 0 40px;
}
.description a {
    color: #2D9CDB;
}
.webfun_present_block_wrapper {
    width: 100%;
    float: left;
}
.wf_bank_transfer_explain {
    display: none;
    margin: 10px 0 0;
    white-space: pre-line;
    opacity: 0.8;
    line-height: 20px;
}
#addcredit-popup .container {
    width: 100%;
    float: none;
    left: 0;
    margin: 0;
}
.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 700px;
    margin: 20px auto;
}
.product_page_block #button-credit {
    float: right;
    clear: left;
    border: 2px solid #F9C621;
    padding: 0;
    text-align: center;
    height: 34px;
    line-height: 30px;
    padding: 0 11px;
    background: white;
    border-radius: 5px;
    font-size: 14px;
    color: #252525;
    cursor: pointer;
    margin: 6px 0 0;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.product_page_block #button-credit:hover {
    background: #F9C621;
    color: white;
}
.product_page_block #button-credit img {
    max-width: 20px !important;
    vertical-align: middle;
}
.product_page_quantity_wrapper_with_credit {
    bottom: 50px;
}
#addcredit-popup #privatbank .numeric-input {
    border: 1px solid #EDEDED;
    height: 34px;
    border-radius: 5px;
    width: 100px;
}
#addcredit-popup #privatbank .ui-slider .ui-slider-handle {
    height: 1.2em;
    top: -.6em;
}
#privat_type-button {
    min-width: 140px;
    text-align: center;
    height: 44px;
    /* float: right; */
    padding: 0 18px;
    background: #F9C621;
    border-radius: 5px;
    line-height: 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: white;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    border: 2px solid #F9C621;
}
#privat_type-button:hover {
    background: white;
    color: #F9C621;
}
.result-holder {
    background: transparent !important;
}
#addcredit-popup #privatbank .pr_info {
    font-size: 14px;
    line-height: 18px;
}
#addcredit-popup #privatbank .pr_info em {
    font-style: italic;
}
#privatbank_paymentparts_pp_checkout > .form-group {
    display: flex;
    padding: 0 0 0 25px;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}
.privatbank_paymentparts_pp_checkout_sum_payments_text {
    margin: 0 0 0 20px;
}
.privatbank_paymentparts_pp_checkout_sum_payments_value {
    font-weight: bold;
}
.btn_popup_cookie {
    width: 130px;
    height: 40px;
    /* float: left; */
    background: #F9C621;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #F9C621;
    -webkit-transition: all .2sease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2sease;
}
.btn_popup_cookie:hover {
    background: transparent;
    color: #F9C621;
}
.cookiealert {
    padding: 15px;
}
.cookiealert a {
    color: #F9C621 !important;
    border-bottom: 1px solid #F9C621;
    font-weight: 500 !important;
    cursor: pointer;
    margin: 10px 0 0;
    text-decoration: none !important;
}
.cookiealert p {
    line-height: 20px;
}
.main_nav_information_li {
    display: none !important;
}