/****************************************
*! RESET CSS
*****************************************/

/* ==========================================================================
1.0 RESET BROWSER
========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    padding: 0;
    border: 0
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
}

body {
    width: 100%;
    font: 400 .875em/1.75 sans-serif;
    color: #878787;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 14px;
}

ul {
    list-style: inside;
}

ol {
    list-style: inside decimal;
}

ul ul,
ol ol {
    padding-left: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

dl {
    margin: 0 0 1.75em;
}

dt {
    font-weight: 500;
}

dd {
    margin: 0 0 1.75em;
}

table,
th,
td {
    border: 1px solid #ddd;
    vertical-align: middle;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

th {
    border-width: 0 1px 1px 0;
    font-weight: 600;
}

td {
    border-width: 0 1px 1px 0;
}

th,
td {
    padding: 10px;
}

th p,
td p {
    margin: 0;
}

address {
    font-style: italic;
    margin: 0 0 1.75em;
}

b, strong {
    font-weight: bold;
}

code,
kbd,
tt,
var,
samp,
pre {
    font-family: Inconsolata, monospace;
}

pre {
    border: 1px solid #d1d1d1;
    font-size: 1rem;
    line-height: 1.3125;
    margin: 0 0 1.75em;
    max-width: 100%;
    overflow: auto;
    padding: 1.75em;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    background-color: #d1d1d1;
    padding: 0.125em 0.25em;
}

abbr,
acronym {
    border-bottom: 1px dotted #d1d1d1;
    cursor: help;
}

big {
    font-size: 125%;
}

/* ==========================================================================
   1.1 TYPOGRAPHY
   ========================================================================== */
a {
    color: #222;
    transition: all .3s;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: 0;
}

a:hover, a:active {
    color: #56cfe1;
}

em {
    font-style: italic;
}

strong {
    font-weight: 600;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

iframe {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0.65em 0 0.5em;
    line-height: 1.428;
    font-family: sans-serif;
    color: #222;
    letter-spacing: 0;
}

h1, .h1 {
    margin: 0;
    font-size: 2.6179em;
}

h2 {
    font-size: 2.0581em;
}

h3 {
    font-size: 1.618em;
}

h4 {
    font-size: 1.3em;
}

h5 {
    font-size: 1.2em;
}

h6 {
    font-size: 1.1em;
}

p {
    margin-bottom: 1.3em;
}

/* ==========================================================================
   1.2 FORM
   ========================================================================== */
input,
button,
textarea {
    transition: all .3s;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
}

input:focus,
button:focus,
textarea:focus {
    outline: 0;
    box-shadow: none;
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=number], input[type=date], input[type=tel], select, textarea {
    width: 100%;
    height: 40px;
    line-height: 18px;
    transition: border-color .5s;
    box-shadow: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:-webkit-autofill {
    border-color: #E6E6E6;
    -webkit-box-shadow: 0 0 0 1000px #FFF inset;
    -webkit-text-fill-color: #878787;
}

input:focus:-webkit-autofill {
    border-color: #D9D9D9;
}

input:not([type="submit"]):not([type="checkbox"]),
textarea,
select {
    border: 1px solid #ccc;
    font-size: 13px;
    outline: 0;
    padding: 0 15px;
    color: #878787;
    border-radius: 0;
    max-width: 100%;
}

input:not([type="submit"]):not([type="checkbox"]):focus,
textarea:focus {
    border-color: #222;
}

textarea {
    overflow: auto;
    padding: 10px 15px;
    min-height: 190px;
}

input[type="submit"],
button,
a.button {
    cursor: pointer;
    border: 2px solid #222;
    padding: 5px 25px;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    min-height: 40px
}

a.button {
    display: inline-block;
    background: transparent;
}

input[type="submit"]:hover,
button:hover,
a.button:hover {
    border-color: #56cfe1;
    background-color: #56cfe1;
    color: #fff;
}

button,
input[type="submit"] {
    -webkit-appearance: button;
}

[disabled="disabled"],
input[disabled="disabled"],
button[disabled="disabled"] {
    cursor: not-allowed;
    opacity: .5;
}

::-webkit-input-placeholder {
    color: #c1c1c1;
}

:-moz-placeholder {
    color: #c1c1c1;
}

::-moz-placeholder {
    color: #c1c1c1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

@-moz-document url-prefix() {
    select:-moz-focusring,
    select::-moz-focus-inner {
        color: transparent !important;
        text-shadow: 0 0 0 #999 !important;
        background-image: none !important;
        border: 0;
    }
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

select {
    padding: 0 30px 0 15px;
    max-width: 100%;
    width: 100%;
    height: 40px;
    vertical-align: middle;
    font-size: 14px;
    transition: border-color .5s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==);
    background-position: right 10px top 50%;
    background-size: auto 18px;
    background-repeat: no-repeat;
    display: inline-block;
    background-color: transparent;
    box-shadow: none;
    color: #222;
    border: 1px solid #e3e3e3;
    border-radius: 30px;
}

a, button, input, .swatch .nt-swatch {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.button, button, input[type='submit'], input[type='reset'], input[type='button'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* ==========================================================================
   1.3 CLEARING
   ========================================================================== */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
    content: ' ';
    display: table;
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   GRID SYSTEMS
========================================================================== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

[data-kl-full-width] {
    width: 100vw;
    left: -15px;
    position: relative;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.col-lg-15, .col-md-15, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-15, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-nt-auto {
    position: relative;
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.col-15 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.oah {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   FUNCTIONS CLASS
========================================================================== */
.mg__0 {
    margin: 0;
}

.mt__0 {
    margin-top: 0;
}

.mt__10 {
    margin-top: 10px;
}

.mt__15 {
    margin-top: 15px;
}

.mt__30 {
    margin-top: 30px;
}

.mt__40 {
    margin-top: 40px;
}

.mt__60 {
    margin-top: 60px;
}

.mt__100 {
    margin-top: 100px;
}

.mr__5 {
    margin-right: 5px;
}

.mr__10 {
    margin-right: 10px;
}

.mb__5 {
    margin-bottom: 5px;
}

.mb__10 {
    margin-bottom: 10px;
}

.mb__15 {
    margin-bottom: 15px;
}

.mb__20 {
    margin-bottom: 20px;
}

.mb__25 {
    margin-bottom: 25px;
}

.mb__30 {
    margin-bottom: 30px;
}

.mb__40 {
    margin-bottom: 40px;
}

.mb__50 {
    margin-bottom: 50px;
}

.mb__60 {
    margin-bottom: 60px;
}

.ml__5 {
    margin-left: 5px;
}

.ml__10 {
    margin-left: 10px;
}

.ml__15 {
    margin-left: 15px;
}

.pd__0 {
    padding: 0;
}

.pt__10 {
    padding-top: 10px;
}

.pt__20 {
    padding-top: 20px;
}

.pt__80 {
    padding-top: 80px;
}

.pr__15 {
    padding-right: 15px;
}

.pr__25 {
    padding-right: 25px;
}

.pb__10 {
    padding-bottom: 10px;
}

.pb__20 {
    padding-bottom: 20px;
}

.pb__30 {
    padding-bottom: 30px;
}

.pl__15 {
    padding-left: 15px;
}

.pl__25 {
    padding-left: 25px;
}

.w__100 {
    width: 100%;
}

.h__100 {
    height: 100%;
}

.br__40 {
    border-radius: 0px;
}

.br__50 {
    border-radius: 50%;
}

.fs__0 {
    font-size: 0;
}

.fs__12 {
    font-size: 12px;
}

.fs__14 {
    font-size: 14px;
}

.fs__16 {
    font-size: 16px;
}

.fs__18 {
    font-size: 18px;
}

.fs__24 {
    font-size: 24px;
}

.db {
    display: block;
}

.dn, .dnt4 {
    display: none;
}

.hide, .js_gift_wrap.dn, .js_gift_wrap.dnt4 {
    display: none !important;
}

.dib {
    display: inline-block;
}

.tl {
    text-align: left;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.pa {
    position: absolute;
}

.pr {
    position: relative;
}

.l__0 {
    left: 0;
}

.r__0 {
    right: 0;
}

.t__0 {
    top: 0;
}

.b__0 {
    bottom: 0;
}

.op__0 {
    opacity: 0;
}

.pf, .ntpf {
    position: fixed;
}

.nt_full {
    width: 100%;
    max-width: 100%;
}

.cb {
    color: #000;
}

.csi {
    color: #9e9e9e;
}

.cra {
    color: #fec42d;
}

.cra2 {
    color: #dedede;
}

.cd {
    color: #222;
}

.cp, .chp:hover {
    color: #56cfe1;
}

.cw, .bghp:hover {
    color: #fff;
}

.cg {
    color: #878787;
}

.cr {
    color: #ec0101;
}

.cgreen, .chg:hover {
    color: #90c11a;
}

.bgw {
    background: #fff;
}

.bgb {
    background: #000;
}

.bgbl {
    background: #f6f6f8;
}

/* Black Lighter */
.bgp, .bghp:hover {
    background: #56cfe1;
}

.bgd {
    background: #222;
}

.tu {
    text-transform: uppercase;
}

.fwm {
    font-weight: 500;
}

.fwsb {
    font-weight: 600;
}

.fwb {
    font-weight: 700;
}

.ls__0 {
    letter-spacing: 0;
}

.ls__1 {
    letter-spacing: 1px;
}

.ts__03 {
    transition: all .3s;
}

.ts__05 {
    transition: all .5s;
}

.ts_op {
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

.lh__1 {
    line-height: 1;
}

.oh {
    overflow: hidden;
}

.wsn {
    white-space: nowrap
}

.pe_none, .grid-sizer {
    pointer-events: none;
}

.z_100 {
    z-index: 100
}

.z_200 {
    z-index: 200
}

.tt_txt {
    font-size: 0;
    opacity: 0;
    visibility: hidden
}

.ttip_nt {
    position: relative;
    display: inline-block;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.in_flex {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flex .grow {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
}

.flex.column, .in_flex.column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: column;
    flex-direction: column;
}

.flex.wrap, .in_flex.wrap {
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.al_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fl_center {
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
}

.fl_between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.is-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ul_none {
    list-style: none
}

.far {
    font-weight: 400 !important;
}

.padding-top__127_66 {
    padding-top: 127.66%;
}

.w__95.logo_normal {
    max-width: 150px !important;
    max-height: 70px;
}

.w__100.logo_mobile,
.w__100.logo_sticky {
    max-width: 150px;
    max-height: 100px;
}

/****************************************
*! BASE CSS
*****************************************/
:root {
    --main-color: #56cfe1;
    --hover-main-color: #007e91;
    --text: #222222;
    --tooltip-boder-color: #383838;
}

html {
    padding-bottom: 0 !important;
}

.lazyloaded h1,
.lazyloaded h2,
.lazyloaded h3,
.lazyloaded h4,
.lazyloaded h5,
.lazyloaded h6 {
    font-family: Poppins, sans-serif;
}

.page-head a:hover,
.nt_menu > li > a:hover,
.nt_action > a:hover,
.nt_action > div > a:hover,
.nt_menu > li > a:focus,
.nt_action > a:focus,
.nt_action > div > a:focus {
    color: var(--main-color) !important
}

.nt_label,
.nt_label.on {
    background-color: #ff4e00
}

.nt_label.new {
    background-color: #109533
}

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* ==========================================================================
   *! Flickity v2.2.0
   ========================================================================== */
.nt_slider {
    position: relative;
    scrollbar-width: none;
}

.nt_slider:not(.flickity-enabled) {
    display: block !important;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    width: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.row-slider:not(.flickity-enabled) {
    display: block !important
}

.nt_slider::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important
}

.nt_slider:not(.flickity-enabled) > a {
    width: 100%
}

.nt_slider:not(.flickity-enabled) > * {
    display: inline-block !important;
    white-space: normal !important;
    vertical-align: top;
}

.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: 0
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing
}

.flickity-button {
    position: absolute;
    color: #000;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}

.flickity-button:hover {
    cursor: pointer
}

.flickity-button:focus {
    outline: 0;
    box-shadow: none
}

.flickity-button:active {
    opacity: .6
}

.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
}

.flickity_prev_disable.flickity_next_disable .flickity-button:disabled {
    display: none
}

.nt_pr .flickity-button:disabled {
    pointer-events: auto
}

.flickity-button-icon {
    fill: currentColor
}

.clno-touchevents .flickity-prev-next-button {
    top: calc(50% - 20px);
    top: -webkit-calc(50% - 20px);
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    transition: all 0.2s ease-in-out;
}

.clno-touchevents .flickity-enabled:hover .flickity-prev-next-button,
.clno-touchevents .flickity-enabled.btn_vi_1 .flickity-prev-next-button {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.clno-touchevents .flickity-enabled:hover .flickity-prev-next-button[disabled],
.clno-touchevents .flickity-enabled.btn_vi_1 .flickity-prev-next-button[disabled] {
    opacity: .3;
}

.flickity-prev-next-button.previous {
    left: 15px
}

.flickity-prev-next-button.next {
    right: 15px
}

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 15px
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 15px
}

.flickity-prev-next-button .flickity-button-icon,
.flickity-page-dots .dot.is-selected:first-child:last-child {
    display: none
}

.flickity-page-dots {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1
}

.flickity-rtl .flickity-page-dots {
    direction: rtl
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 25px 5px 0;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, .2);
    cursor: pointer
}

.dot_owl_1 .flickity-page-dots .dot {
    width: 13px;
    height: 13px;
}

.flickity-page-dots .dot.is-selected {
    background-color: #000;
}

.dot_color_3 .flickity-page-dots .dot.is-selected {
    background-color: transparent
}

.dot_color_3 .flickity-page-dots .dot,
.dot_color_3 .flickity-page-dots .dot:after {
    background: var(--main-color);
    opacity: .4
}

.dot_color_3 .flickity-page-dots .dot.is-selected,
.dot_color_3 .flickity-page-dots .dot:after {
    opacity: 1
}

/* Fade CSS */
#cat_thema .nav_link_icon {
    display: none
}

.row:after, .row:before {
    display: none !important;
}

/* ==========================================================================
3.0 HEADER
========================================================================== */
.branding > a {
    font-size: 1.25em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.header_7 .branding img {
    margin: 0 auto;
}

li.menu-item.branding.ts__05.lh__1 {
    display: block;
}

.nt_menu > li.menu-item.branding > a {
    height: auto;
}

body:not(.des_header_7) #ntheader {
    position: relative;
}

.header-text p {
    margin: 0;
}

.h_icon_la .nt_action > a > i, .h_icon_la .nt_action > div > a > i {
    font-size: 28px;
}

.h_icon_la .nt_action a > i.la-shopping-cart {
    font-size: 32px;
}

.nt_menu li {
    font-size: 14px;
    list-style: none;
    position: relative;
}

.lbc_nav, .lbc_nav_mb {
    opacity: 0
}

.nt_menu > li > .sub-menu {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.menu_wid_full .sub-menu, .menu_wid_full .sub-menu.lazyloaded {
    width: 100vw;
    padding: 10px 20px
}

.menu_wid_full .container {
    max-width: 100%
}

.header_7 {
    position: relative
}

#nav_header7 ul,
.mb_nav_tab ul {
    list-style: none;
}

.nt_mb_menu > li > a,
.nt_mb_menu .sub-menu li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    padding: 5px 20px;
    min-height: 50px;
    border-bottom: 1px solid rgba(129, 129, 129, .2);
    color: #222;
    font-size: 14px;
    text-align: left;
    line-height: 1.3;
}

#nav_header7 .nt_mb_menu > li > a, #nav_header7 .nt_mb_menu .sub-menu li > a {
    padding: 5px;
}

.nt_mb_menu > li > a {
    letter-spacing: .2px;
    font-size: 14px;
}

.nt_mb_menu .sub-menu, .nt_mb_menu .sub-sub-menu, .sub-sub-sub-menu, .has_ntmenu .mfp-close,
.nt_mb_menu .sub-menu li a.currency-item.dn, .nt_mb_menu .sub-menu li a.currency-item.dnt4 {
    display: none;
}

.nt_count {
    opacity: 0;
    -webkit-transition: opacity .4s ease-in-out;
    -moz-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}

/* ==========================================================================
    4.1 COLLECTION PAGE
========================================================================== */

.page-head .nt_bg_lz.lazyload:before, .page-head .nt_bg_lz.lazyloading:before, .page-head .nt_bg_lz.lazyloaded:before {
    display: none
}

.has_icon {
    display: inline-block;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
}

.has_icon > i {
    font-size: 16px;
    margin-left: .2em;
    opacity: .6;
}

.has_icon.mgr > i {
    margin-right: .2em;
    margin-left: 0;
}

.cat_sortby > a {
    position: relative;
    z-index: 8;
    color: #878787;
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn_filter, .btn_sidebar, .cat_sortby > a {
    color: #878787;
}

.btn_filter > i {
    font-size: 16px;
    opacity: 1;
    transition: none !important
}

.page-head {
    padding: 50px 0;
    color: #ededed;
}

.page-head h1 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}

.page-head:before {
    content: '';
    opacity: .5;
    position: absolute;
    background: #000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
    pointer-events: none;
}

.page-head a {
    color: #fff;
}

.page-head p {
    margin-bottom: 0;
    margin-top: 5px;
}

.cat_view a {
    border: 1px solid currentcolor;
    color: #878787;
    height: 26px;
    transition: all .25s ease;
}

.cat_view a.view_12 {
    width: 28px
}

.cat_view a.view_6, .cat_view a.view_list {
    width: 29px
}

.cat_view a.view_4 {
    width: 42px
}

.cat_view a.view_3 {
    width: 55px
}

.cat_view a.view_15 {
    width: 68px
}

.cat_view a.view_2 {
    width: 81px
}

.cat_view a.view_12:before {
    width: 22px
}

.cat_view a.view_6:before {
    box-shadow: 13px 0 0 currentColor, 13px 0 0 currentColor
}

.cat_view a.view_4:before {
    box-shadow: 13px 0 0 currentColor, 26px 0 0 currentColor
}

.cat_view a.view_3:before {
    box-shadow: 13px 0 0 currentColor, 26px 0 0 currentColor, 39px 0 0 currentColor
}

.cat_view a.view_2:before {
    box-shadow: 13px 0 0 currentColor, 26px 0 0 currentColor, 39px 0 0 currentColor, 52px 0 0 currentColor, 65px 0 0 currentColor
}

.cat_view a.view_15:before {
    box-shadow: 13px 0 0 currentColor, 26px 0 0 currentColor, 39px 0 0 currentColor, 52px 0 0 currentColor
}

.cat_view a.active {
    pointer-events: none
}

.cat_view.on_list_view_true a:not(.view_list) {
    color: #878787 !important
}

.cat_view a:hover, .cat_view a.active, .cat_view a:hover {
    color: #222;
}

.cat_view a:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 20px;
    background: currentcolor;
    transition: all .3s;
}

.sp_result_html .cp {
    margin-right: 3px
}

.result_clear {
    font-size: 0;
}

.result_clear > .clear_filter {
    font-size: 15px;
}

.result_clear > .clear_filter:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #e5e5e5;
    margin-bottom: 10px;
}

a.clear_filter {
    position: relative;
    padding-left: 16px;
}

a.clear_filter:before, a.clear_filter:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: currentColor;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out, width .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

a.clear_filter:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

a.clear_filter:hover:before, a.clear_filter:hover:after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.nt-pagination {
    border-top: 1px solid #ddd;
}

.page-numbers {
    display: inline-block;
    list-style: none;
    margin: 10px 0;
    padding: 5px 10px;
}

.page-numbers li {
    float: left;
    margin: 0 10px;
    color: #222;
}

.page-numbers li a {
    color: #222;
}

.page-numbers li a:hover,
.page-numbers.current {
    color: #ec0101;
}

a.nt_cat_lm, a.view_more {
    padding: 11px 45px;
}
/* ==========================================================================
    5.1 PRODUCT GRID ITEM
========================================================================== */
.pr_lazy_img, .equal_nt .nt_bg_lz {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
}

.p-thumb.equal_nt .nt_bg_lz {
    height: auto
}

.nt_bg_lz.lazyload:before, .nt_bg_lz.lazyloading:before, .nt_load.lazyloaded:before, .nt_fk_lz:before, .lds_bginfinity:before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    z-index: 90;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
}

.p-nav .nt_bg_lz.lazyload, .p-nav .nt_bg_lz.lazyloading {
    transition: 0s;
}

.p-nav .nt_bg_lz.lazyload:before, .p-nav .nt_bg_lz.lazyloading:before {
    background-size: 40px;
}

.swatch__list_js {
    min-height: 38px
}

.row_pr_1.tc .desgin__1 .swatch__list_js.lazyload, .row_pr_1.tc .desgin__1 .swatch__list_js.lazyloading {
    background-position: center;
}

.product-image a.db:before, .product-image a.wishlistadd, .product-image .product-attr {
    opacity: 0;
    visibility: hidden;
}

.nt_slider .spr-badge, .nt_slider .star-rating {
    min-height: 24px;
}

.on_list_view_true .col-listt4, .on_list_view_true .col-md-listt4, .on_list_view_true .col-lg-listt4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* ==========================================================================
5.1 PRODUCT PAGE
========================================================================== */
.sp-single .entry-summary > *:not(:last-child),
.product-quickview .entry-summary > *:not(:last-child) {
    margin-bottom: 20px;
}

.product_title {
    font-size: 16px;
    margin-bottom: 10px !important;
    font-weight: 600;
}

.pr_carousel:after {
    content: 'flickity';
    display: none;
}

.watchCSS:after {
    content: '';
    display: none;
}

.p-nav {
    opacity: 0;
}

.p-nav.nt_slider:not(.flickity-enabled) > .row {
    display: block !important;
}

.btn_pnav_prev, .btn_pnav_next {
    display: none
}

.row.p-nav {
    margin-top: 5px;
    margin-right: -2.5px;
    margin-left: -2.5px;
}

.p-nav .n-item {
    overflow: hidden;
    padding-left: 2.5px;
    padding-right: 2.5px;
}

.p-nav .nt_bg_lz {
    background-position: center center;
    background-size: contain;
}

.p-nav .n-item:not(.is-nav-selected) {
    opacity: .6
}

.equal_nt.p-nav .n-item > img.nt_bg_lz {
    height: 0;
}

.p-nav .n-item .nt_bg_lz {
    margin-bottom: -5px;
    opacity: .5;
    transition: transform .6s, opacity .6s;
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.p-nav .n-item:hover .nt_bg_lz, .p-nav .n-item.is-nav-selected .nt_bg_lz {
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    opacity: 1;
}

.price-review > div {
    order: 2;
    display: -ms-flexbox;
    display: flex;
    width: auto;
}

.entry-summary .price, .entry-summary .price_range {
    font-size: 18px;
    line-height: 18px;
    margin-right: 10px;
}

.nt_cart_form .price {
    margin-right: 0;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.price del [class*="tooltip_"] {
    display: inline;
}

.variations_form .quantity {
    min-width: 120px;
    width: 120px;
    height: 40px;
    border: 1px solid #222;
    text-align: center;
    display: inline-block;
}

.variations_button .nt_add_w, .variations_button .nt_add_cp {
    position: relative;
    min-width: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 10px;
    border: 1px solid #222;
    text-align: center;
    transition: all .3s;
    display: inline-block;
}

.variations_button .nt_add_w a {
    display: block
}

.btn_txt_3 .single_add_to_cart_button {
    text-transform: uppercase;
}

.product_meta {
    display: inline-block;
    width: 100%;
}

.product_meta > span {
    display: block;
    margin-bottom: 5px;
}

.sp-single .social-share {
    margin-top: 20px;
}

.sp-single .thema-section-pr_description + .social-share {
    margin-top: 40px;
}

.sp-single .nt-social i {
    font-size: 20px;
}

.nt-social i {
    font-size: 16px;
}

.nt-social i:before {
    vertical-align: middle;
}

.nt-social a {
    display: inline-block;
    margin: 0 10px;
}

.nt-social svg:hover {
    fill: #999 !important;
}

.nt-social svg.at-icon-facebook:hover,
.nt-social svg.at-icon-messenger:hover {
    fill: #3b5998 !important;
}

.nt-social svg.at-icon-twitter:hover {
    fill: #00aced !important;
}

.nt-social svg.at-icon-pinterest_share:hover {
    fill: #cb2027 !important;
}

.nt-social > a{
    background-color: transparent !important;
}

.nt-social a:hover {
    transform: translateY(-4px);
    color: #999 !important;
}

.nt-social .facebook:hover {
    color: #3b5998 !important;
}

.nt-social .twitter:hover {
    color: #00aced !important;
}

.nt-social .linkedin:hover {
    color: #007bb6 !important;
}

.nt-social .youtube:hover {
    color: #bb0000 !important;
}

.nt-social .instagram:hover {
    color: #517fa4 !important;
}

.nt-social .pinterest:hover {
    color: #cb2027 !important;
}

.nt-social .tumblr:hover {
    color: #32506d !important;
}

.nt-social .behance:hover {
    color: #176aff !important;
}

.nt-social .soundcloud:hover {
    color: #ff7700 !important;
}

.nt-social .dribbble:hover {
    color: #ea4c89 !important;
}

.nt-social .telegram:hover {
    color: #0088cc !important;
}

.nt-social .email:hover {
    color: #585858 !important;
}

.nt-social .whatsapp:hover {
    color: #00E676 !important;
}

.thema-social-media svg,
.nt-social svg {
    fill: #000;
    width: 26px !important;
    height: 26px !important;
}

.thema-social-media__btn {
    background: #ffffff;
    border-radius: 0;
    font-size: 0;
    line-height: 0;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    text-transform: none;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: 0;
}

.thema-social-media__btn:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.h__top .nt-social a:first-child {
    margin-left: 0;
}

.h__top .nt-social a:last-child {
    margin-right: 0;
}

.p-thumb .flickity-button:disabled, .li_choose:not(.is-selected) {
    display: none !important;
}

.dropdown_picker_js .swatch:not(.is-color) h4 .nt_name_current {
    display: none
}

.header_picker {
    padding: 0 20px 0 10px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #222;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.nt_lt_fake ul {
    opacity: 0;
    pointer-events: none
}

.p-thumb.isotope_ok .p-item a.is-selected {
    border: 1px solid #ec0101
}

.pr__view-in-space[data-thema-xr-hidden] {
    visibility: hidden;
}

@-webkit-keyframes progress_bar {
    from {
        background-position: 0 0
    }

    to {
        background-position: 40px 0
    }
}

@keyframes progress_bar {
    from {
        background-position: 0 0
    }

    to {
        background-position: 40px 0
    }
}

.fading_true {
    animation: fading 1s infinite;
}

@-webkit-keyframes fading {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fading {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.des_style_1.sp-tab {
    -webkit-animation: ani-fadeIn 1s ease;
    animation: ani-fadeIn 1s ease;
    padding: 25px 0;
}

.ul_tabs li.tab_title_block a {
    font-size: 14px;
    font-weight: 600;
    margin: 10px;
    line-height: 1.2;
    border-bottom: 2px solid transparent;
}

.ul_tabs li.active a, .ul_tabs li a:hover {
    color: #222;
}

.ul_tabs li.active a, .ul_tabs li.tab_title_block.active a {
    border-color: #222;
}

.tab-heading .txt_h_tab {
    padding: 10px;
}

/* section css */
.prev_next_1 .flickity-button:not(:hover) {
    color: #ffff;
    border-color: #abb1b4;
}

.sub-title {
    font-family: serif;
    font-style: italic;
    font-size: 14px;
    color: #878787;
    font-weight: 400;
    margin-top: 0;
}

.tab_se_content {
    position: relative;
}

.tab_se_element {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.tab_se_element.ct_active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: all .2s ease-in-out .2s;
    transition: all .2s ease-in-out .2s;
}

.cat_design_6 .cat_grid_item__wrapper {
    position: absolute;
    bottom: 20px;
    left: 50%;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: var(--text);
    padding: 12px 20px;
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, .1);
    min-width: 150px;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    line-height: 19px;
}

.cat_design_6 .cat_grid_item__wrapper {
    background: #000;
    color: #fff;
    box-shadow: none;
}

.cat_grid_item__wrapper .h3 {
    color: currentColor;
}

.cat_space_item {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.cat_size_5 .cat_grid_item__overlay {
    padding-top: 111.1111111111111%
}

.nt_promotion > a:after,
.nt_img_txt > a:after,
.nt_bg_overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.nt_promotion .pa,
.nt_img_txt .pa.txt_content {
    z-index: 10;
    padding: 10px;
}

.banner_design_1 h4,
.banner_design_2 h3 {
    line-height: 24px;
}

.nt_img_txt video.vid_nt {
    padding: 0;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}

.img_vid_js {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 5;
}

.img_vid_js.nt_bg_lz {
    padding-top: 0 !important;
    position: absolute !important;
}

video.vid_ready {
    opacity: 1
}

.nt_img_txt video + .btn_video_ef {
    background-color: #f9f9f9;
}

.nt_img_txt video.vid_ready + .btn_video_ef {
    opacity: 0
}

.caption-w-2 {
    max-width: 100%
}

.type_slideshow .caption, .type_banner_collection .caption,
.type_image_text_overlay .pa_txts {
    position: absolute;
    padding: 15px;
    width: max-content !important;
    max-width: 100%;
}

.img_zoom {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 4s;
    -moz-transition: all 4s;
    transition: all 4s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
}

.is-selected .img_zoom.lazyloaded {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.nt_contain .post_nt_loop > a.bgb {
    background-color: transparent
}

.more-link {
    margin: 20px auto;
    line-height: 40px;
    border: 2px solid #222;
    padding: 0 30px;
    font-weight: 600;
    display: table;
    border-radius: 0px;
}

.more-link:hover {
    background-color: #222;
    color: #fff;
}

.signup-newsletter-form {
    border-radius: 50px;
    border: 1px solid #878787;
    padding: 2px;
}

.signup-newsletter-form .submit-btn {
    text-transform: none;
    border-radius: 50px;
    font-size: 14px;
    padding: 0 20px;
    margin: 0;
    border: none;
    background: #222;
    color: #fff
}

.signup-newsletter-form input.input-text {
    width: 100%;
    background-color: transparent;
    border-radius: 50px;
    padding: 0 10px;
    border: 0;
}

.nt_full .flickity-prev-next-button.previous {
    left: 15px;
}

.nt_full .flickity-prev-next-button.next {
    right: 15px;
}

.row.ins_spaces_3 {
    margin: -1.5px;
}

.row.ins_spaces_3 .col_ins {
    padding: 1.5px;
}
.row.ins_spaces_3 .col_ins .wrap_ins_img {
    height: 100%;
}

.widget ul li {
    line-height: 25px;
    list-style: outside none none;
    margin-bottom: 5px;
}

.footer__top i {
    font-size: 24px;
    margin-right: 5px;
    vertical-align: middle;
}

.footer__top .nt-social i {
    font-size: 16px;
    font-weight: 500;
}

.footer__top .menu li {
    list-style-type: none;
    line-height: 30px;
    margin-right: 0;
}

.footer__top a, .footer__bot a {
    color: #878787;
}

.footer__top p {
    margin-bottom: 1.3em;
    line-height: 24px;
}

#footer-menu {
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
}

#footer-menu li {
    list-style: none;
    margin-left: 20px;
    display: inline-block;
    font-size: 14px;
    line-height: 21px;
}

.footer-contact .nt-social {
    display: flex;
}

.foot-itm {
    margin-top: 50px;
}

em {
    font-family: serif
}

.ntcols_js {
    width: 100%;
}

[data-columns="6"] .ntcols_js {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

[data-columns="5"] .ntcols_js {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

[data-columns="4"] .ntcols_js {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

[data-columns="3"] .ntcols_js {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

[data-columns="2"] .ntcols_js {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

[data-columns="1"] .ntcols_js {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.ntcols_js .pr_grid_item, .ntcols_js .post_nt_loop, .ntcols_js .ptf_nt_loop {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.pin__type .dn_md .nt_add_qv {
    display: none;
}

/* end section css */
.login-form h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 20px;
}

form .form-row label {
    line-height: 2;
    display: block;
    margin-bottom: 5px;
}

.login-form form .form-row label {
    margin-bottom: 10px;
}

form .form-row label .required {
    color: #fc655e;
}

.button.button_primary {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.button.button_primary:hover, .button.button_primary:focus {
    opacity: .8
}

.login-form select {
    border-radius: 0;
}

hr {
    border-bottom: 1px solid #e8e9eb;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 1.5em 0 1.75em;
    width: 100%;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

.thema_toolbar {
    background-color: #fff;
    z-index: 350;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 5px;
    height: 55px;
    box-shadow: 0 0 9px rgba(0, 0, 0, .12);
    transform: none;
    -webkit-transform: none;
    transition: transform .25s ease;
}

input[type="checkbox"] {
    float: none;
    vertical-align: middle;
}

.empty_cart_page .button, .nt_mini_cart .empty .button {
    min-width: 180px;
}

.img_action_zoom.is_sticky .theiaStickySidebar {
    overflow: hidden;
}

.is_sticky {
    will-change: min-height, height;
}

.is_sticky .theiaStickySidebar {
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
}

@-webkit-keyframes skeletonAnimation {
    0% {
        opacity: 0.45
    }

    100% {
        opacity: 0.9
    }
}

@keyframes skeletonAnimation {
    0% {
        opacity: 0.45
    }

    100% {
        opacity: 0.9
    }
}

.wrap_txt_ship {
    padding: 17px 5px;
    font-size: 15px;
}

.type_image_text_overlay a.button {
    min-width: 150px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.type_image_text_overlay a.button + a
.type_slideshow a.button.slt4_btn + a {
    margin-left: 7.5px;
    margin-top: 7.5px;
}

.txt_content .pa_txts > :last-child {
    margin-bottom: 0
}

::placeholder {
    color: currentcolor;
    opacity: 1;
}

:-ms-input-placeholder {
    color: currentcolor;
}

::-ms-input-placeholder {
    color: currentcolor;
}

#cat_thema .la, #cat_thema .lab, #cat_thema .lad, #cat_thema .lal, #cat_thema .lar, #cat_thema .las {
    display: block
}

.footer_collapse_true .widget_logo .widget-title {
    transition: all .2s;
}

.js-sl-item.is_varhide {
    display: none;
}

.n-item i {
    position: absolute;
    right: 3px;
    top: 8px;
    pointer-events: none;
    font-size: 15px;
    color: #fff;
    background-color: #5b5b5b;
    border-radius: 100px;
    padding: 5px;
}

.plyr input:not([type=submit]):not([type=checkbox]) {
    border: 0;
    padding: 0;
    color: #222;
}

.plyr [data-plyr=fullscreen] {
    color: inherit !important;
}

.branding img {
    padding-top: 5px;
    padding-bottom: 5px;
    perspective: 800px;
    -webkit-perspective: 800px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.bg_sz_cover {
    background-size: cover;
}

.bg_rp_norepeat {
    background-repeat: no-repeat;
}

.item__position.nt_parallax_true .parallax-inner, .nt_parallax_true.parallax-inner {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
/*************************************************
* popup size chart
*************************************************/

.tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
}

.tabset .tab-panel {
    display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
}

.tabset > label {
    position: relative;
    display: inline-block;
    padding: 10px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 500;
    min-width: 100px;
}

.tabset > label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 15px;
    width: 22px;
    height: 4px;
    margin-left: -11px;
    background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
    color: #222222;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
    background: #222222;
}

.tabset > input:checked + label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.tab-panel {
    padding: 30px 0;
    border-top: 1px solid #ccc;
}

.tabset {
    max-width: 65em;
    text-align: center;
}

.hr {
    border: 0;
    height: 1px;
    margin: 50px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

/*********************************************
* Frequently Bought Together
**********************************************/
.product.thema-hidden-product *,
.product.thema-hidden-product {
    font-size: 0 !important;
    letter-spacing: 0;
    line-height: 0;
    padding: 0 !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -ms-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
    flex: 0 0 !important;
}
/****************************************
*! STYLE CSS
*****************************************/
html{
	overflow-x: hidden;
}

.btn {
    outline: none !important;
    box-shadow: none !important;
}
/****************************************
 * Header
 ****************************************/
.lazy_icons .flickity-button {
    visibility: visible;
}

#ntheader .ntheader_wrapper {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 390;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#ntheader.sticky_prepared.live_stuck .ntheader_wrapper {
    visibility: visible;
    opacity: 1;
    position: fixed;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    -webkit-animation: animate_sticky .6s ease;
    animation: animate_sticky .6s ease;
}

#ntheader.live_stuck.ani_none .ntheader_wrapper {
    -webkit-animation: none;
    animation: none;
}

.hide_scrolld_true #ntheader.sticky_prepared.live_stuck .ntheader_wrapper {
    position: absolute;
    box-shadow: none;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: none;
    animation: none;
    transition: opacity .1s ease, visibility .1s ease, transform .3s ease, -webkit-transform .3s ease;
    will-change: transform, -webkit-transform;
}

.hide_scrolld_true #ntheader.sticky_prepared.h_scroll_up .ntheader_wrapper {
    position: fixed;
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

#ntheader.live_stuck #thema-section-header_banner,
#ntheader.live_stuck #thema-section-header_top,
#ntheader.live_stuck .logo_normal,
#ntheader.live_stuck .logo_mobile {
    display: none
}

#ntheader.live_stuck .logo_sticky {
    display: inline-block
}

@-webkit-keyframes animate_sticky {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes animate_sticky {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.trs_stuck .nt_menu > li > a,
.trs_stuck .nt_action > a, .trs_stuck .nt_action > div > a {
    transition: none;
}

.nt_menu > li > div > div {
    min-width: 230px;
}

.nt_menu > li > div > .sub-column-item {
    padding: 10px 0;
}

.nt_menu div.menu-item > a, .nt_menu ul li a {
    display: block;
    color: #878787;
    line-height: 1.5;
    padding: 14px 15px;
}

.sub-column-item .sub-column > li a {
    padding: 10px 0;
}

.nt_menu .sub-menu .sub-column-item {
    padding: 10px 15px
}

.nt_menu .sub-menu .sub-column-item > a {
    color: #222;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
}

.nt_menu .sub-menu .type_mn_link.sub-column-item > a:last-child {
    margin-top: -15px;
}

.sub-column-item .sub-column {
    padding: 0;
}

.nt_menu .type_mega .sub-menu {
    padding: 20px 15px;
    max-height: 75vh;
    overflow-y: auto;
}

.nt_menu > li .sub-menu {
    text-align: left;
    position: absolute;
    min-width: 250px;
    background: #fff;
    top: 100%;
    z-index: 10;
    padding: 0;
    -webkit-box-shadow: inset 0 0 0 1px #eaeaea, 0 5px 20px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 0 0 1px #eaeaea, 0 5px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.95);
    background-color: #fff;
    pointer-events: none;
}

.clhovermq .nt_menu li.has-children:hover > .sub-menu, .clhovermq .nt_menu div:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.nt_menu > li .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.nt_menu ul li a:hover, .nt_menu ul li.is_hover a, .nt_menu div.menu-item > a:hover, .nt_menu div.menu-item.is_hover > a {
    color: #222;
}

.nt_menu .sub-menu .sub-column-item > :last-child {
    border-bottom: 0;
}

.hover_side_up .nt_menu > li > .sub-menu {
    -webkit-transform: translateY(15px) translateZ(0);
    transform: translateY(15px) translateZ(0);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, -webkit-transform .2s ease;
}

.clhovermq .hover_side_up .nt_menu > li.has-children:hover > .sub-menu {
    -webkit-transform: none;
    transform: none;
}

.lbc_nav {
    position: absolute;
    color: #fff;
    font-size: 9px;
    padding: 1px 7px 0;
    border-radius: 50px;
    top: 50%;
    line-height: 16px;
    background: #01bad4;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: -5px;
    margin-top: -14px;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    opacity: 1;
}

.sub-menu .lbc_nav {
    position: static;
    display: inline-block;
}

/****************************************
 * Product grid system
 ****************************************/
.sp-single .product-images .p-thumb .flickity-enabled {
    z-index: 2;
}

.hover_button {
    max-width: 100%;
    padding: 0 5px;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 50;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
}

.hover_button .nt_add_qv, .hover_button .pr_atc {
    font-size: 0;
    margin: 2.5px 0;
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
    padding: 15px;
    text-transform: capitalize;
}

.hover_button .nt_add_qv i, .hover_button .pr_atc i {
    font-weight: 600;
    font-size: 18px
}

.product-image a.db:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
    transition: all .5s;
}

.product-image a.db:before,
.product-image a.wishlistadd {
    opacity: 0;
    visibility: hidden;
}

.product-image:hover a.db:before,
.product-image:hover a.wishlistadd,
.product-image:hover .nt_add_w {
    opacity: 1 !important;
    visibility: visible;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

.product-image .nt_add_qv:hover, .product-image .pr_atc:hover {
    background: #222;
    color: #fff;
}

.product-image .nt_add_w, .product-image .nt_add_cp {
    z-index: 40;
    left: 12px;
    top: 12px;
}

.product-image .nt_add_w > a, .product-image .nt_add_cp > a {
    text-align: center;
    margin: 0;
    font-size: 18px;
    color: #fff;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.product-image .nt_add_w + .nt_add_cp {
    top: 40px;
}

.pr_grid_item .product-image:hover .hover_button {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.swatch__list_js.lazyload, .swatch__list_js.lazyloading {
    background-image: url(../images/svg/lds-sw.svg);
    background-size: 70px;
    background-repeat: no-repeat;
    background-position: center left;
    background-position-x: -8px;
}

.row_pr_1.tc .swatch__list_js.lazyload, .row_pr_1.tc .swatch__list_js.lazyloading {
    background-position: center !important;
}

.pr_lazy_img.main-img.lazyloaded, .p-nav.p-nav-ready,
.nt_bg_lz.pr_lazy_img.lazyloaded,
.cat_grid_item__overlay.lazyloaded,
img.lz_op_ef.lazyloaded,
.swatch__value.lazyloaded, .swatch__value_pr.lazyloaded {
    -webkit-animation: ani-fadeIn 1.25s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
    animation: ani-fadeIn 1.25s cubic-bezier(0.26, 0.54, 0.32, 1) 0s forwards;
}

.sortby_pick i {
    transition: transform 0.2s ease-in-out;
}

.nt_lt_fake.opended .header_picker:after,
.cat_sortby_js.opended .sortby_pick i {
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.nt_lt_fake ul {
    padding: 15px 0;
    width: 100%;
    top: calc(100% + 10px);
    top: -webkit-calc(100% + 10px);
    margin: 0;
    background-color: #fff;
    z-index: 40;
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-height: 280px;
    min-width: 250px;
    overflow: auto;
    overflow-x: hidden;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
    will-change: transform;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    border-radius: 3px;
}

.nt_lt_fake ul > li {
    color: #222;
    margin: 0;
    padding: 0 20px 0 10px;
    height: 40px;
    line-height: 30px;
}

.nt_lt_fake.opended ul, .nt_lt_fake.opended svg.ic_triangle_svg, .cat_sortby_js.opended svg.ic_triangle_svg {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1.001);
    transform: scale(1.001);
    transition: opacity 0.4s cubic-bezier(0, 1, 0.4, 1), transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1), visibility 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.18, 1.25, 0.4, 1);
}

.nt_lt_fake .swatch__value_pr {
    display: block;
    text-align: left;
}

.post_nt_loop a > .lazyloaded {
    transition: opacity .5s ease, transform 2s cubic-bezier(0, 0, .44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18);
}

.post_nt_loop:hover a > .lazyloaded {
    transform: scale(1.09);
    -webkit-transform: scale(1.09);
}

.post_nt_loop > a:before {
    position: absolute;
    border-radius: 50%;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    content: "";
    z-index: 2;
}

.post_nt_loop:hover > a.pr.oh:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s;
}

.mb_nav_tabs {
    background-color: rgba(0, 0, 0, .04);
    border-bottom: 1px solid rgba(129, 129, 129, .2);
}

#nt_menu_canvas > i {
    position: fixed;
    left: 300px;
    top: 0;
    color: #fff;
    z-index: 10;
    font-size: 50px;
    background-color: #222;
}

.mb_nav_title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: 500;
    font-size: 12px;
    color: #222;
    padding: 5px 10px;
    height: 55px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    cursor: pointer;
}

.mb_cat_true .mb_nav_title {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.mb_nav_title:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -1px;
    width: 0;
    height: 2px;
    transition: width .25s ease;
}

.mb_nav_tabs .mb_nav_ul:after {
    right: 0;
    left: auto;
}

.mb_nav_tabs .active:after {
    width: 100%;
}

.mb_nav_title > span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.mb_nav_title.active {
    background-color: rgba(0, 0, 0, .05);
}

.mb_nav_tab {
    display: none;
    -webkit-animation: ani-fadeIn 1s ease;
    animation: ani-fadeIn 1s ease;
}

.mb_nav_tab.active {
    display: block;
}

@-webkit-keyframes ani-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes ani-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.menu_infos_title {
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.mb_nav_tab ul ul {
    padding-left: 0;
}

#nav_header7 ul ul {
    padding-left: 7.5px;
}

.nt_mb_menu li {
    position: relative;
    display: block;
}

.nt_mb_menu .sub-sub-menu li > a {
    padding-left: 40px
}

.nt_mb_menu .sub-sub-sub-menu li > a {
    padding-left: 50px
}

.nt_mb_menu .sub-menu li > a .nav_link_icon {
    color: #222;
}

.nt_mb_menu .sub-menu li > a {
    color: #878787;
    padding-left: 30px;
}

.nt_mb_menu .menu-item-has-children > a {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.nav_link_icon {
    width: 12px;
    height: 12px;
    position: relative;
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.nav_link_icon:before, .nav_link_icon:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: currentColor;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

.nav_link_icon:after {
    width: 1px;
    height: 12px;
}

.nav_link_icon:before {
    width: 12px;
    height: 1px;
    opacity: 1;
}

.nt_opended > a > .nav_link_icon:before, .nt_opended > a > .nav_link_icon:after,
.sp-tab.active .tab-heading > .nav_link_icon:before, .sp-tab.active .tab-heading > .nav_link_icon:after,
.footer_opened .nav_link_icon:before, .footer_opened .nav_link_icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.nt_opended > a > .nav_link_icon:before,
.sp-tab.active a > .nav_link_icon:before,
.footer_opened .nav_link_icon:before {
    opacity: 0;
}

.tab-heading .nav_link_icon {
    width: 44px;
    height: 44px;
}

.tab-heading .nav_link_icon:before {
    width: 15px;
    height: 2px;
}

.tab-heading .nav_link_icon:after {
    width: 2px;
    height: 15px;
}

li.menu-item.menu-item-infos {
    border-bottom: 1px solid rgba(129, 129, 129, .2);
    padding: 20px;
}

.nt_mb_menu i {
    opacity: .8
}

.nt_mb_menu li.nt_opended > a, .nt_mb_menu li:active > a, .nt_mb_menu li > a:hover {
    background-color: rgba(0, 0, 0, .04);
}

#menu_mb_cat .sub-menu .products {
    margin-right: 0;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid rgba(129, 129, 129, .2)
}

#menu_mb_cat .sub-menu .products > .nt_pr:first-child {
    margin-left: 7.5px;
}

#menu_mb_cat .sub-menu .products > .nt_pr {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
    padding: 30px 7.5px;
    margin-top: 0;
}

.nt_fk_canvas {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    background-color: #fff;
    right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.2s;
    -webkit-transform: translate3d(104%, 0, 0);
    transform: translate3d(104%, 0, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    display: block;
    z-index: 500;
}

body:not(.des_header_6) .nt_fk_canvas.nt_sleft {
    right: auto;
    left: 0;
    -webkit-transform: translate3d(-104%, 0, 0);
    transform: translate3d(-104%, 0, 0);
}

.pin__type {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    position: absolute;
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
}

.pin__type.pin__opened {
    z-index: 200;
}

.pin__type .pin_tt {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #65affa;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/****************************************
 * mpf popup
 ****************************************/
html.hidden_y, body.hidden_y {
    height: 100%;
    overflow: hidden;
}

body.hidden_y {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.mfp-fade.mfp-bg.mfp-ready, .mfp-bg.mfp-move-horizontal {
    opacity: 0.8;
}

.mfp-fade.mfp-bg,
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all .15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-bg.mfp-removing,
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* mfp-move-horizontal */
.mfp-move-horizontal .mfp-with-anim,
.mfp-move-vertical .mfp-with-anim {
    opacity: 0;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
}

.mfp-move-horizontal .mfp-with-anim .product-images .images,
.mfp-move-horizontal .mfp-with-anim .summary-inner,
.mfp-move-vertical .mfp-with-anim .product-images .images,
.mfp-move-vertical .mfp-with-anim .summary-inner {
    opacity: 0;
    -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
    transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.mfp-move-vertical .mfp-with-anim {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.mfp-move-vertical .mfp-with-anim .product-images .images,
.mfp-move-vertical .mfp-with-anim .summary-inner {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.mfp-move-horizontal .mfp-with-anim .summary-inner,
.mfp-move-vertical .mfp-with-anim .summary-inner {
    -webkit-transition: opacity .85s ease, -webkit-transform .85s ease;
    transition: transform .85s ease, opacity .85s ease, -webkit-transform .85s ease;
}

.mfp-move-horizontal.mfp-bg,
.mfp-move-vertical.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim,
.mfp-move-horizontal.mfp-ready.mfp-removing .mfp-content,
.mfp-move-horizontal.mfp-ready .mfp-with-anim .summary-inner,
.mfp-move-horizontal.mfp-ready .mfp-with-anim .product-images .images,
.mfp-move-vertical.mfp-ready .mfp-with-anim,
.mfp-move-vertical.mfp-ready.mfp-removing .mfp-content,
.mfp-move-vertical.mfp-ready .mfp-with-anim .summary-inner,
.mfp-move-vertical.mfp-ready .mfp-with-anim .product-images .images {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.mfp-move-horizontal.mfp-ready.mfp-bg,
.mfp-move-vertical.mfp-ready.mfp-bg {
    opacity: .8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
}

.mfp-move-vertical.mfp-removing .mfp-with-anim {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.mfp-move-horizontal.mfp-removing.mfp-bg,
.mfp-move-vertical.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-move-horizontal.mfp-removing .mfp-close,
.mfp-move-vertical.mfp-removing .mfp-close {
    display: none;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 10451;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-ready .mfp-close {
    transform: translateY(0) translateZ(1px);
    opacity: 1;
    transition: all .25s ease, opacity .3s ease .35s;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: -55px 0 0;
    top: 50%;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: #000;
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-zoom-out .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
}

.mfp-zoom-out.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-out.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-out.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-out.mfp-removing .mfp-with-anim {
    transform: scale(1.3);
    opacity: 0;
}

.mfp-zoom-out.mfp-removing.mfp-bg {
    opacity: 0;
}

button.mfp-close {
    padding: 0;
    margin: 0;
    text-indent: 0;
    font-size: 0;
    text-align: center;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    background: 0 0;
    border-radius: 0;
}

button.mfp-close:hover {
    background-color: rgba(0, 0, 0, .5);
    box-shadow: none;
    color: #FFF;
    opacity: 1;
}

/* .has_ntcanvas */
.has_ntcanvas .mfp-content, .has_fk_canvas .nt_fk_canvas, .has_ntcanvas .mfp-inline-holder .mfp-content {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 300px;
    background-color: #fff;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.2s;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.has_ntcanvas.mfp-ready .mfp-content {
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1030;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0;
    transition: opacity .25s;
}

.mfp-bg.mfp-ready {
    opacity: .8;
}

.mfp-bg.mfp-removing, .has_ntcanvas.mfp-removing .mfp-content {
    opacity: 0 !important
}

.mfp-ready.mfp-removing .mfp-content {
    opacity: 0
}

.hide_btn + .mfp-wrap .mfp-close, .mfp-removing .mfp-close {
    display: none !important
}

.h3.cw {
    color: #fff
}

#cat_thema ul {
    list-style: none
}

#cat_thema .sub-menu li > a {
    color: #878787;
}

.cat_nav_js > i, #cat_thema .facl-angle-down {
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.mfp-content #cat_thema > h3 i,
.mfp-content #cat_thema > .h3 i {
    width: 50px;
    cursor: pointer
}

input:not([type=submit]):not([type=checkbox]).nt_cat_title {
    border-radius: 5px;
    color: #222;
    border: 2px solid #222;
    margin-bottom: 12px;
    font-size: 12px;
}

/*****************************************
 * Classes added:
 *  1) tooltip_top
 *  2) tooltip_bottom
 *  3) tooltip_left
 *  4) tooltip_right
 ****************************************/

/*****************************************
 * top tooltip
 ****************************************/
.tooltip_top:before, .tooltip_top .tt_txt {
    bottom: 100%;
    left: 50%;
}

.tooltip_top:before {
    margin-bottom: -11px;
    left: calc(50% - 6px);
}

.tooltip_top .tt_txt {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tooltip_top:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.tooltip_top:hover .tt_txt {
    -webkit-transform: translateX(-50%) translateY(-8px);
    -moz-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

/****************************************
 * Collection page
 ****************************************/
.products, .result_clear, .sp_result_html {
    -webkit-transition: opacity .25s ease, visibility .25s ease, -webkit-transform .25s ease;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, -webkit-transform .25s ease;
}

.ajax_loading .cat_toolbar,
.ajax_loading .products-footer, .products.loadingview + .products-footer {
    opacity: 0;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.nt_cat_lm, .view_more, .js_add_ld {
    background-image: url('../images/svg/lds-sw.svg') !important;
    background-size: 0 !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: none !important;
}

.nt_cat_lm.swl, .view_more.swl, .js_add_ld.swl {
    background-image: url('../images/svg/lds-swl.svg') !important;
}

.jscl_ld {
    background-size: 80px !important;
    pointer-events: none;
    color: transparent !important;
}

.cat_sortby:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease-in-out;
    background: #000000;
    display: block;
    z-index: 4500;
}

.cat_sortby_js.opended:before {
    pointer-events: auto;
    opacity: 0.4;
}

.widget h5.widget-title {
    position: relative;
    padding-bottom: 20px;
    margin-top: 0;
    font-size: 18px;
}

.widget h5.widget-title:after {
    content: "";
    width: 60px;
    height: 2px;
    background: #222;
    left: 0;
    bottom: 15px;
    position: absolute;
}

.sidebar .widget:not(:first-child) {
    margin-top: 50px;
}

.nt_filter_block a {
    text-transform: capitalize;
}

.mini_cart_item .quantity svg,
.cart_item .quantity svg {
    width: 12px;
    height: 12px;
    stroke-width: 2;
}

.thema-model-viewer-ui .thema-model-viewer-ui__button--poster {
    background-color: #5b5b5b;
    color: #f3f3f3 !important;
    border: 1px solid rgba(243, 243, 243, 0.05)
}

.thema-model-viewer-ui .thema-model-viewer-ui__button--poster:hover, .thema-model-viewer-ui .thema-model-viewer-ui__button--poster:focus {
    color: #f3f3f3
}

.thema-model-viewer-ui .thema-model-viewer-ui__controls-area {
    background: #f3f3f3;
    border-color: rgba(91, 91, 91, 0.05);
}

/* end collections */

/****************************************
 * Product page
 ****************************************/
.p_group_btns .tt_txt, .p_group_btns .ttip_nt:before {
    z-index: 1000
}

/****************************************
 * Product Quick view
 ****************************************/
#content_quickview .thema-section-pr_summary {
    margin-top: 0;
    padding: 30px 15px;
}

#content_quickview .nt_lt_fake ul {
    left: 1px;
}

#content_quickview .swatch__list_pr {
    margin: 10px -3px;
}

#content_quickview .nt_lt_fake .swatch__list_pr {
    margin: 0
}

#content_quickview button.mfp-close {
    position: absolute !important;
    z-index: 4046 !important;
    top: 0;
    transform: none;
    background-color: transparent;
    color: #000;
    opacity: 1;
    width: 40px;
    height: 40px;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}

.product-quickview .flickity-page-dots {
    position: absolute;
    bottom: 15px
}

.product-quickview .flickity-page-dots .dot {
    border: 2px solid #000;
    background-color: #e5e5e5;
    margin: 2.5px 5px;
}

.product-quickview .flickity-page-dots .dot.is-selected {
    background-color: #000;
}

/****************************************
 * Product Quick shop
 ****************************************/
.pr_deal_dt {
    color: #222;
    background: rgba(34, 34, 34, 0.1);
    opacity: 1;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    transform: translate3d(0, 140%, 0);
    -webkit-transform: translate3d(0, 140%, 0);
    padding: 8px 5px;
    line-height: 1.5;
}

.round_cd_true .pr_deal_dt {
    transform: translate3d(0, 150%, 0);
    -webkit-transform: translate3d(0, 150%, 0);
}

.round_cd_true .pr_deal_dt.donetmcd,
.pr_deal_dt.donetmcd {
    transition: transform .35s ease;
    -webkit-transition: transform .35s ease;
    transform: none;
    -webkit-transform: none;
}

.pr_deal_dt.expired_cdt4 {
    opacity: 0;
    visibility: hidden
}

.pr_coun_dt {
    font-weight: 500;
}

.cdt_des_2 .pr_deal_dt {
    color: #222;
    background-color: #FFF;
}

.round_cd_false .pr_deal_dt,
.round_cd_true .pr_deal_dt {
    font-size: 12px;
    width: calc(100% - 56px);
    width: -webkit-calc(100% - 56px);
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    margin: 0 4px 10px;
}

.round_cd_true .pr_deal_dt {
    border-radius: 5px;
}

#content_quickview.pp_qs {
    max-width: 340px;
    background-color: #fff;
    padding: 30px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

#content_quickview.pp_qs .variations {
    margin-bottom: 25px;
}

#content_quickview.pp_qs .quantity {
    margin-bottom: 20px;
}

#content_quickview.pp_qs .price {
    font-size: 16px;
}

#content_quickview.pp_qs .qs_imgs_i,
#content_quickview.pp_qs .row.equal_nt {
    margin-right: 0;
    margin-left: 0;
}

#content_quickview.pp_qs .cl_pr_img,
#content_quickview.pp_qs .cl_pr_title {
    padding-right: 0;
    padding-left: 0;
}

#content_quickview.pp_qs .cl_pr_title {
    margin: 0 10px 0 12px;
}

#content_quickview.pp_qs .nt_lt_fake.opended ul {
    position: static;
    margin-top: 10px;
}

.cl_pr_img + .cl_pr_title {
    text-align: left
}

.cl_pr_img + .cl_pr_title .product-title {
    font-size: 14px;
}

/****************************************
 * Instagram blocks
 ****************************************/
.se_instagram .info {
    background: rgba(0, 0, 0, .6);
}

.se_instagram .item:hover .info {
    opacity: 1;
}

.ins_loaded .ins_content {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.ins_content {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.ins_content > .ins_content_wrap {
    padding: 30px;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 0 12px rgba(0, 0, 0, .22);
    background-color: #fff;
    z-index: 5;
}

.ins_content.b_type_4 > .ins_content_wrap {
    max-width: 400px;
    padding: 23px 10px;
    background-color: rgba(246, 246, 248, 0.8);
}

.ins_loaded .ins_content_wrap {
    pointer-events: auto
}

.ins_content p {
    font-size: 13px;
    line-height: 1.5;
}

.ins_shop_wrap .info {
    background: rgba(0, 0, 0, .6);
    font-size: 28px
}

.ins_shop_wrap .item:hover .info {
    opacity: 1
}

.pr_lazy_img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity .3s ease, -webkit-transform 8s cubic-bezier(.25, .46, .45, .94);
    transition: opacity .3s ease, transform 8s cubic-bezier(.25, .46, .45, .94), -webkit-transform 8s cubic-bezier(.25, .46, .45, .94);
    background-position: center center;
}

.b_type_4 .sub-title {
    color: #222;
    font-size: 16px;
}

#nt_backtop {
    right: 10px;
    bottom: 55px;
    padding: 5px;
    cursor: pointer;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transform: none;
    transition: all .25s ease;
    will-change: opacity;
}

#nt_backtop.bkt_show {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    pointer-events: auto;
}

#nt_backtop span {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 35px;
    border-radius: 3px;
    background: #fff;
    color: #878787;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
}

#nt_backtop span i {
    z-index: 1;
    color: #878787;
    line-height: inherit;
}

.icon_like .tcount,
.icon_cart .tcount {
    top: -5px;
    right: -9px;
    z-index: 1;
    width: 15px;
    height: 15px;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
    opacity: 1
}

.icon_like .tcount {
    right: -6px
}

/* end min width 1025px */

.nt_menu > li.has-children > a > i {
    color: rgba(82, 82, 82, .6);
}

button.mfp-close:after {
    content: "\e680";
    font-family: 'Pe-icon-7-stroke', sans-serif;
    display: inline-block;
    font-size: 45px;
    line-height: 50px;
}

#content_quickview button.mfp-close:after {
    font-size: 40px;
}

.flickity-enabled:not(.flickity-rtl) .flickity-prev-next-button.next:before,
.flickity-rtl .flickity-prev-next-button.previous:before {
    content: "\f105";
}

.thema_toolbar .thema_toolbar_item {
    -ms-flex: 1 0 20%;
    flex: 1 0 20%;
    position: relative;
}

.thema_toolbar_item > a {
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    height: 45px;
    color: #222;
    font-weight: 400;
    line-height: 1;
}

.thema_toolbar_item img {
    max-height: 22px;
}

.thema_toolbar_label_true .thema_toolbar_item > a {
    position: relative;
    padding-bottom: 15px;
}

.thema_toolbar_label {
    position: absolute;
    right: 10px;
    bottom: 5px;
    left: 10px;
    display: block;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    font-size: 11px;
    line-height: 1;
}

.toolbar_icon:before {
    font-size: 20px;
    content: "\e909";
    font-family: 'iconthema', sans-serif;
    font-weight: 600;
}

.type_toolbar_shop .toolbar_icon:before {
    content: "\e917"
}

.type_toolbar_account .toolbar_icon:before {
    content: "\e90e"
}

.type_toolbar_cart .toolbar_icon:before {
    content: "\e903"
}

.type_toolbar_search .toolbar_icon:before {
    content: "\e914"
}

.type_toolbar_wish .toolbar_icon:before {
    content: "\e907"
}

.type_toolbar_filter .toolbar_icon:before {
    content: "\e905"
}

.toolbar_icon {
    position: relative;
}

.toolbar_count {
    position: absolute;
    top: -5px;
    right: -9px;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    background-color: #000;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
}

.nt_action .my-account ul {
    top: 100%;
    z-index: 380;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    list-style: none;
    right: -5px;
    width: 165px;
    padding: 10px 0;
    line-height: 1.4;
    margin-top: 12px;
    border-radius: 3px;
    -webkit-transform: translateY(15px) translateZ(0);
    transform: translateY(15px) translateZ(0);
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, -webkit-transform .2s ease;
}

.nt_action .my-account:hover ul, .nt_currency:hover ul {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.nt_action .my-account ul a {
    padding: 8px 18px;
}

.nt_action .my-account ul:after, .nt_currency ul:after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: 100%;
    left: 0;
    width: auto;
    height: 12px;
}

.detail_link > i, .h__banner a ~ .h_banner_wrap i, .btn_icon_true:after {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    transition-property: -webkit-transform, transform;
}

.detail_link:hover > i,
.h__banner a:hover ~ .h_banner_wrap i.la-arrow-right, .h__banner a:hover ~ .h_banner_wrap i.la-arrow-left {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem);
}

.nt_fk_full {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 400;
    background-color: #FFF;
    box-shadow: 0 0 14px rgba(0, 0, 0, .08);
    transition: transform .3s ease;
    -webkit-transform: translate3d(0, 120%, 0);
    transform: translate3d(0, 120%, 0);
    display: block;
    width: 100% !important;
}

.nt_fk_full.act_opened {
    -webkit-transform: none;
    transform: none;
}

strong.highlight {
    text-decoration: underline;
}

.product-image a.wis_added,
.product-image a.wis_remove {
    opacity: 1;
    visibility: visible;
}

.wis_added i:before {
    content: '\e804';
    color: #e81e63;
}

.wis_remove i:before {
    font-family: 'Line Awesome Free', sans-serif;
    font-weight: 900;
    content: "\f1f8";
    color: #222;
    font-size: 25px;
}

.wishlistadd.loading, .compare_add.loading {
    pointer-events: none
}

.nt_add_w a:hover i, .nt_add_cp .cpt4_added:hover i {
    -webkit-animation: beat_heart .6s ease-in-out infinite;
    animation: beat_heart .6s ease-in-out infinite;
}

@-webkit-keyframes beat_heart {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@keyframes beat_heart {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

.nt_pr .nt_add_w > a:after {
    border-width: 2px;
    margin-top: -11px;
}

.entry-summary .nt_add_w > a:after {
    border: 1px solid #f9f9f9;
    border-left-color: #222;
}

.flickity-page-dots .dot {
    position: relative;
    overflow: hidden;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.flickity-page-dots .dot:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    box-shadow: 0 0 1px #fff;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}

.flickity-page-dots .dot.is-selected:after {
    height: 100%;
}

/* end products */
.cat_grid_item__link {
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cat_grid_item__overlay, .hoverz_true .nt_promotion > a {
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.hoverz_true .cat_grid_item:hover .cat_grid_item__overlay, .hoverz_true .nt_promotion:hover > a {
    transform: scale(1.11);
    -webkit-transform: scale(1.11);
    -o-transform: scale(1.11);
    -moz-transform: scale(1.11);
}

.p_group_btns > button {
    width: 38px;
    height: 38px;
    background-color: #000d1d;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    margin: 0 7.5px;
    padding: 0;
    border: 0;
    min-height: 38px;
    font-weight: 400;
}

.p_group_btns > button.show_btn_pr_gallery {
    font-size: 16px
}

.des_header_7 #nt_search_canvas.nt_fk_full {
    z-index: 1000;
}

/* end min 1366px */
html.hside_opened, body.pside_opened {
    overflow: hidden !important;
}

.menu-item .cat_space_item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1)
    }
    to {
        -webkit-transform: scale(1.3, 1.3)
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1)
    }
    to {
        transform: scale(1.3, 1.3)
    }
}

.drift-bounding-box, .drift-zoom-pane {
    position: absolute;
    pointer-events: none;
}

.drift-bounding-box {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
    z-index: 500;
}

.drift-zoom-pane {
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    transform: translate3d(0, 0, 0);
    z-index: 3;
    box-shadow: 0 1px 5px rgba(127, 127, 127, 0.02), 0 5px 18px rgba(127, 127, 127, 0.2);
}

.drift-zoom-pane.drift-open {
    display: block;
}

.dt_img_zoom .drift-zoom-pane {
    height: 34.375rem;
    width: 34.375rem;
    left: 0;
}

.drift-zoom-pane img {
    position: absolute;
    display: block;
    max-width: none;
    max-height: none;
    object-fit: contain;
    top: 0;
    left: 0;
}

.drift-zoom-pane.drift-opening {
    animation: drift-fadeZoomIn 200ms cubic-bezier(0.4, 0, 0.2, 1)
}

.p-thumb .drift-zoom-pane.drift-opening {
    animation: drift-fadeIn 200ms cubic-bezier(0.4, 0, 0.2, 1)
}

.drift-zoom-pane.drift-closing {
    animation: drift-fadeZoomOut 150ms cubic-bezier(0, 0, 0.2, 1)
}

.p-thumb .drift-zoom-pane.drift-closing {
    animation: drift-fadeOut 150ms cubic-bezier(0, 0, 0.2, 1)
}

@keyframes drift-fadeZoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drift-fadeZoomOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes drift-fadeIn {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drift-fadeOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.zoom_tp_3 .drift-zoom-pane {
    width: 240px;
    height: 240px;
    overflow: hidden;
    border: 1px solid #ec0101;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.ajax_pp_js.loading {
    pointer-events: none;
}

.threesixty {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    cursor: ew-resize;
    width: 100% !important;
    height: auto !important;
    display: block;
    padding-bottom: 75%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
}

.threesixty:active {
    cursor: ew-resize;
}

.threesixty .threesixty_imgs {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.threesixty .threesixty_imgs img {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
}

.threesixty .spinner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.threesixty .spinner > span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    display: block;
    margin: 0 auto;
    color: black;
    font-weight: normal;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.threesixty .spinner span {
    line-height: 60px;
}

.threesixty .nav_bar {
    position: absolute;
    bottom: 5px;
    left: 50%;
    margin-left: -67.5px;
    z-index: 11;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.p_group_btns.nt_hide {
    pointer-events: none;
}

.p_group_btns.nt_hide,
.p_group_btns.nt_hide_2 > *:not(.pr__view-in-space) {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

img.zoomImg {
    background-color: #fff
}

.btn_filter.opened > i:before {
    font-family: 'Line Awesome Free', sans-serif;
    font-weight: 900;
    content: "\f00d";
}

#ld_cl_bar, .ld_cart_bar, .ld_bar_search {
    position: fixed;
    z-index: 100000;
}

.ld_cart_bar, .ld_bar_search {
    position: absolute;
    z-index: 20;
}

.ld_bar_search {
    bottom: 0;
    top: auto;
}

#ld_cl_bar.on_star, .ld_cart_bar.on_star, .ld_bar_search.on_star {
    width: 40%;
    opacity: 1;
}

#ld_cl_bar.on_end, .ld_cart_bar.on_end, .ld_bar_search.on_end {
    width: 100%;
}

@-webkit-keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/*************************************
 * Heade banner
 ************************************/
.h_banner_close:after, .h_banner_close:before {
    content: "";
    width: 7px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -0.5px;
    display: inline-block;
    background-color: #fff;
    -webkit-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out, transform .2s ease-in-out;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out;
}

.h_banner_close:hover:before, .show_icon_true .h_banner_close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.h_banner_close:hover:after, .show_icon_true .h_banner_close:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.h_banner_close {
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.h_banner_close:hover, .h_banner_close:focus {
    opacity: 0.6;
}

.h__banner a:hover ~ .h_banner_wrap i.la-arrow-right {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem);
}

.h__banner a ~ .h_banner_wrap i {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    transition-property: -webkit-transform, transform;
}

#thema-section-header_banner {
    transition: height .6s .25s;
    -webkit-transition: height .6s .25s;
    will-change: height;
}

body:not(.h_calc_ready) #thema-section-header_banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
}

.h_calc_ready #thema-section-header_banner {
    position: relative;
    overflow: hidden;
    height: 0;
}

/************************************
* head currency
************************************/

.header-text i {
    font-size: 16px;
    vertical-align: middle;
}

/**************************************************
* Mega menu
**************************************************/
.nt_action > a, .nt_action > div {
    padding: 0 6px;
}

.nt_action > a, .nt_action > div > a {
    color: #222;
}

.nt_action > a > i, .nt_action > div > a > i {
    font-size: 22px;
    line-height: 1;
}

.icon_like .tcount {
    right: -6px;
}

.mask_opened {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: opacity .25s ease, visibility 0s ease;
}

.nt_fk_canvas.act_opened {
    -webkit-transform: none !important;
    transform: none !important;
}

/**************************************************
* Head search
**************************************************/
.mini_search_frm {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(129, 129, 129, .2);
}

input.search_header__input:not([type="submit"]):not([type="checkbox"]) {
    padding: 0 50px 0 0;
    height: 40px;
    width: 100%;
    line-height: 18px;
    color: #222;
    border: 1px solid #e3e3e3;
    border-radius: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.p_group_btns {
    z-index: 4;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.col_thumb:hover > .p_group_btns {
    z-index: 100;
}

/**************************************************
* labels
**************************************************/
.nt_label {
    background-color: #e5e5e5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 20;
    height: 20px;
    width: 30px;
    font-size: 8px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#nt_search_canvas .onsale.nt_label, .product_list_widget .onsale.nt_label {
    width: auto;
    height: auto;
    color: #fff;
    display: inline-block;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 10px;
    margin: 5px;
}

.nt_label + .nt_label {
    margin-top: 5px;
}

.product-image:hover a.db:before,
.product-image:hover a.wishlistadd {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

/**************************************************
* Mini cart
**************************************************/
.nt_mini_cart .widget-title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.nt_mini_cart .close_pp {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    font-size: 40px;
    cursor: pointer;
}

.nt_mini_cart .close_pp:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nt_mini_cart .empty > i {
    font-size: 55px
}

.nt_mini_cart .empty > i:after {
    font-size: 22px;
    line-height: 1;
    left: 17px;
    top: 50%;
    margin-top: -5px;
    position: absolute;
    font-family: 'Line Awesome Free', sans-serif;
    font-weight: 900;
    content: "\f00d";
}

.mini_cart_footer .total {
    margin-bottom: 8px;
    color: #000;
    font-size: 18px;
}

.mini_cart_footer {
    padding: 20px;
}

.mini_cart_footer .button {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    width: 100%;
    background-color: #f7f7f7;
    border: 0;
    color: #222;
}

.mini_cart_footer .button.btn-checkout {
    background: #56cfe1;
    color: #fff;
}

.mini_cart_footer .button:hover {
    opacity: .8
}

.mini_cart_wrap {
    display: flex;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mini_cart_footer {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-top: 1px solid rgba(129, 129, 129, .2);
    box-shadow: 0 0 10px 0 rgba(129, 129, 129, .2);
}

.mini_cart_footer {
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.act_opened .mini_cart_footer {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
}

.mini_cart_title {
    font-size: 14px;
    line-height: 20px;
    color: #222;
    display: block;
}

.mini_cart_meta {
    font-size: 12px;
    color: #999;
}

.cart_meta_price {
    font-size: 14px;
    color: #222;
}

.mini_cart_actions {
    margin-top: 15px;
}

.mini_cart_actions .quantity {
    min-width: 120px;
    width: 120px;
    height: 40px;
    border: 1px solid #222;
    text-align: center;
    border-radius: 0px;
    display: block;
    margin-bottom: 15px;
}

.cart_ac_edit, .cart_ac_remove {
    display: inline-block;
    margin-right: 10px;
}

.cart_ac_edit svg, .cart_ac_remove svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.cart_dis_price + .cart_tot_price {
    font-weight: 600;
}

#CartSpecialInstructions {
    min-height: 100px;
    color: #222;
    padding: 8px 10px;
    width: 100% !important;
}

.nt_mini_cart.loading {
    pointer-events: none
}

.open_ntqv .nt_fk_canvas, .open_ntqs .nt_fk_canvas {
    pointer-events: none;
}

#nt_login_canvas .nt_mini_cart {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: visibility 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: visibility 500ms cubic-bezier(0.23, 1, 0.32, 1), transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.pside_opened #nt_login_canvas .nt_mini_cart.is_selected {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible
}

.has_ntcanvas .mfp-content {
    overflow: hidden;
    -webkit-overflow-scrolling: auto;
}

ul.nt_filter_styleck > li > a:before, .js_agree_ck + label:before, .css_agree_ck + label:before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid #d4d6d8;
    background: #fff;
    box-shadow: 0 1px rgba(212, 214, 216, 0.4);
    border-radius: 2px;
    -webkit-appearance: none;
    -webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
}

.js_agree_ck + label:before {
    box-shadow: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

input[type="checkbox"].js_agree_ck {
    display: none
}

.js_agree_ck + label:before {
    position: relative;
    top: 3px;
}

.js_agree_ck ~ svg {
    display: block;
    width: 12px;
    height: 12px;
    fill: #fff;
    position: absolute;
    top: 5px;
    left: 2px;
    pointer-events: none;
    transform: scale(0);
    -webkit-transform: scale(0);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.js_agree_ck:checked + label:before {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.mini_cart_tool > div {
    height: 40px;
    line-height: 40px;
    margin: 0 20px;
    cursor: pointer;
    color: #222;
    text-align: center;
    font-weight: 500;
    border-left: 1px solid rgba(0, 0, 0, .09);
    border-right: 1px solid rgba(0, 0, 0, .09);
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.mini_cart_footer .button {
    transition: all .25s ease-in-out !important;
}

.mini_cart_tool > div:hover {
    background-color: #F9F9F9;
    box-shadow: inset 5px 5px 10px #DFE3EA, inset -5px -5px 10px #faffff;
}

.nt_mini_cart.ld_cart_tls .mini_cart_tool {
    opacity: 0
}

.nt_mini_cart.ld_cart_tls .mini_cart_footer {
    opacity: 0;
    -webkit-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: opacity .35s cubic-bezier(.25, .46, .45, .94), transform .35s cubic-bezier(.25, .46, .45, .94);
    transition: opacity .35s cubic-bezier(.25, .46, .45, .94), transform .35s cubic-bezier(.25, .46, .45, .94);
}

.nt_mini_cart:before, .frm_cart_page:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 4;
    background-color: #fff;
    pointer-events: none;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

.nt_mini_cart.ld_nt_cl:before {
    opacity: 0.4;
    pointer-events: auto;
}

.nt_mini_cart > .is_nt_op {
    z-index: 8;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    transform: none;
}

.nt_mini_cart #CartSpecialInstructions {
    resize: none;
}

.mini_cart_footer > *:last-child {
    margin-bottom: 0
}

.nt_fk_canvas#nt_cart_canvas,
.nt_fk_canvas#nt_login_canvas,
.nt_fk_canvas#nt_search_canvas {
    overflow-y: hidden
}

/**************************************************
* Quantity
**************************************************/
.quantity .tc button:hover {
    color: var(--main-color);
}

.quantity input.input-text[type=number] {
    background-color: #000
}

.quantity input.input-text[type="number"] {
    -moz-appearance: textfield;
    width: 35px;
    border: 0;
    height: 38px;
    background: none;
    padding: 0;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    justify-self: center;
}

.quantity input.input-text[type="number"]:focus {
    border-color: #222;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.quantity input[type="number"]:focus {
    outline: none;
}

.quantity .tc a, .quantity .tc button {
    top: 0;
    width: 30px;
    height: 40px;
    line-height: 40px;
    border: 0;
    background: transparent;
}

.price, .price_range {
    color: #696969;
    margin: 0;
}

.price del, .price_range del {
    color: #878787;
}

.price ins, .price_range ins {
    color: #ec0101;
    text-decoration: none;
    margin-left: 6px;
}

.hover_button > a:after, .nt_add_w > a:after, .mail_agree:after, .js_frm_cart:after, .cart_ac_edit:after, .hotspot_ins:after, .js_add_group:after, .sticky_atc_js:after, .css_add_ld:after {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-left-color: #fff;
    border-radius: 50%;
    vertical-align: middle;
}

.hover_button > a:not(:hover):after, .cart_ac_edit:after {
    border-color: rgba(0, 0, 0, .3);
    border-left-color: #fff
}

.hover_button > a.loading, .nt_add_w > a.loading, .mail_agree.loading, .js_frm_cart.loading,
.js_add_group.loading, .sticky_atc_js.loading, .css_add_ld.loading {
    pointer-events: none;
}

.hover_button > a.loading:after, .nt_add_w > a.loading:after, .mail_agree.loading:after, .js_frm_cart.loading:after, .cart_ac_edit.loading:after {
    opacity: 1;
    -webkit-animation: spin 450ms infinite linear;
    animation: spin 450ms infinite linear;
}

.hover_button > a.loading > *,
.nt_add_w > a.loading > *, .mail_agree.loading > span, .mail_agree.loading:before {
    opacity: 0
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/**************************************************
* Tooltip
**************************************************/
.ttip_nt:before, .ttip_nt .tt_txt {
    position: absolute;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms;
}

.ttip_nt:hover:before, .ttip_nt:hover .tt_txt {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 100ms;
    -moz-transition-delay: 100ms;
    transition-delay: 100ms;
}

.ttip_nt:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    z-index: 1000001;
}

.ttip_nt[aria-label] .tt_txt {
    content: attr(aria-label);
}

.ttip_nt[data-hint] .tt_txt {
    content: attr(data-hint);
}

[aria-label='']:before, [aria-label=''] .tt_txt,
[data-hint='']:before,
[data-hint=''] .tt_txt {
    display: none !important;
}

/**
 * Classes added:
 *  1) tooltip_top
 *  2) tooltip_bottom
 *  3) tooltip_left
 *  4) tooltip_right
 */
/**
 * set default color for tooltip arrows
 */
body .tooltip_top_right:before {
    border-top-color: #383838;
}

/**
 * top tooltip
 */
.tooltip_top:before, .tooltip_top .tt_txt,
.tooltip_top_right .tt_txt {
    bottom: 100%;
    left: 50%;
}

.tooltip_top:before,
.tooltip_top_right:before {
    margin-bottom: -11px;
    left: calc(50% - 6px);
}

.tooltip_top .tt_txt,
.tooltip_top_right .tt_txt {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tooltip_top:hover:before,
.tooltip_top_right:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.tooltip_top:hover .tt_txt,
.tooltip_top_right:hover .tt_txt {
    -webkit-transform: translateX(-50%) translateY(-8px);
    -moz-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

.tooltip_top_right .tt_txt {
    margin-left: 0;
}

/**
 * right tooltip
 */

body .tooltip_right:before {
    margin-left: -11px;
    margin-bottom: -6px;
    border-right-color: #383838;
}

body .tooltip_right .tt_txt {
    margin-bottom: -14px;
}

body .tooltip_right:before, body .tooltip_right .tt_txt {
    left: 100%;
    bottom: 50%;
}

body .tooltip_right:hover:before {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

body .tooltip_right:hover .tt_txt {
    -webkit-transform: translateX(8px);
    -moz-transform: translateX(8px);
    transform: translateX(8px);
}

/**
 * top-left tooltip
 */
body .tooltip_top_left:before, body .tooltip_top_left .tt_txt {
    bottom: 100%;
    left: 50%;
}

body .tooltip_top_left:before {
    left: calc(50% - 6px);
    margin-bottom: -11px;
}

body .tooltip_top_left .tt_txt {
    margin-left: 12px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
}

body .tooltip_top_left:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

body .tooltip_top_left:hover .tt_txt {
    -webkit-transform: translateX(-100%) translateY(-8px);
    -moz-transform: translateX(-100%) translateY(-8px);
    transform: translateX(-100%) translateY(-8px);
}

/**
 * top-right tooltip
 */
body .tooltip_top_right:before {
    margin-bottom: -11px;
}

body .tooltip_top_right:before, body .tooltip_top_right .tt_txt {
    bottom: 100%;
    left: 50%;
}

body .tooltip_top_right:before {
    left: calc(50% - 6px);
}

body .tooltip_top_right .tt_txt {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    margin-left: -12px;
}

body .tooltip_top_right:hover:before {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

body .tooltip_top_right:hover .tt_txt {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

/**************************************************
* grid instagram
**************************************************/
.thema-instagram-grid {
    display: block;
    list-style: none;
    margin: -1px;
    font-size: 0;
    line-height: 0;
}

.thema-instagram-grid__elm {
    display: inline-block;
    width: 33.33333333%;
    padding: 1px;
    font-size: 0 !important;
    line-height: 0 !important;
    margin: 0 !important;
}

.thema-instagram-grid__thumb-link::after {
    content: '\f16d';
    display: inline-block;
    font-family: fathema, sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: #ededed;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 24px;
    height: 24px;
    text-align: center;
    position: absolute;
    z-index: 10;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

.thema-instagram-grid__thumb-link::before {
    content: '';
    display: block;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

.thema-instagram-grid__thumb-link img {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    display: inline-block;
    z-index: 1;
}

.thema-instagram-grid__thumb-link:hover::after,
.thema-instagram-grid__thumb-link:hover::before {
    opacity: 1;
    visibility: visible;
}

.thema-instagram-grid__thumb-link:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.thema-instagram-grid__thumb-link {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

/**************************************************
* Quick shop
**************************************************/
.thema-quick-view-tpl .sp-pr-gallery__img .nt_bg_lz {
    padding-top: 127.5862069%;
}

.nt_label, .nt_label.on, .qs_label.onsale {
    background-color: #ff4e00;
}

/**************************************************
* Megamenu
**************************************************/
.megamenu-content-1000px {
    width: 1000px !important;
}
.megamenu-content-1000px .row{
    justify-content: left;
}

.lbc_nav.lb_menu_hot {
    background-color: #ff3e11;
    color: #fff;
}
.thema-rating-result {
    display: flex;
    overflow: hidden;
    justify-content: flex-start;
    align-items: center;
}

.thema-rating-result__pipe {
    display: flex;
}

.thema-rating-result__start--big {
    height: 15px;
    width: 15px;
    background-size: contain;
    display: inline-block;
    background-image: url(../images/active-start.svg);
}

.thema-rating-result__start.active ~ .thema-rating-result__start {
    background-image: url(../images/deactive-start.svg);
}

.thema-rating-result__start + .thema-rating-result__start {
    margin-inline-start: 2.5px;
}

.thema-rating-result__number {
    margin-inline-start: 10px;
}

.popup_prpr_wrap {
    max-width: 950px;
    margin: 30px auto;
    padding: 30px;
}

/****************************************
*! HOME-GLASSES CSS
*****************************************/

body {
    font-family: Raleway, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #878787;
    font-weight: 400;
}

.f_body,
.nt_action .tcount,
.lazyloaded h4.f_body {
    font-family: Raleway, sans-serif;;
}

.footer__top .widget-title .txt_title,
.lazyloaded h1,
.lazyloaded h2,
.lazyloaded h3,
.lazyloaded h4,
.lazyloaded h5,
.lazyloaded h6 {
    font-family: Montserrat, sans-serif;;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h3 {
    font-weight: 600;
    color: #000000;
    letter-spacing: 0;
    line-height: 1.428;
}

.lazyloaded .sub-title,
.lazyloaded blockquote,
.lazyloaded em {
    font-family: Pinyon Script, sans-serif;
}

.sub-title,
.section-subtitle {
    color: #878787;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 400;
}

.nt_pr h3.product-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.widget-title {
    font-weight: 500;
}

.nt_pr .product-info {
    margin-top: 15px;
}

.nt_pr .product-info .price {
    font-size: 14px;
}

.cp,
.chp:hover,
.currencies .selected,
.languages .selected,
#thema-section-nt_filter .nt_filter_block .active a,
#thema-section-nt_filter .nt_filter_block a:hover,
a:hover,
a:active,
.cp,
.chp:hover,
.nt_filter_block li.active > a,
.product-image .nt_add_w > a:hover,
.header-text > a:not(.cg):hover,
.header-text > .cg:hover,
.nt_mb_menu .sub-menu li a.selected,
.nt_mb_menu .current_item > a,
.title_7 + .tt_divider > i.clprtrue,
.swatch.is-label .nt_lt_fake .swatch_pr_item:not(.is-selected):hover .swatch__value_pr,
#cat_thema ul li.current-cat > a,
#cat_thema .sub-menu li > a:hover,
.mfp-content #cat_thema li.current-cat > a.cat_link,
.quantity .tc button:hover {
    color: #31b3c6;
}

.nt_menu > li > a:hover,
.nt_action > a:hover,
.nt_action > div > a:hover,
.nt_menu > li > a:focus,
.nt_action > a:focus,
.nt_action > div > a:focus,
.menu-item:hover > a,
.menu-item:focus > a,
.menu-item > a:hover,
.menu-item > a:focus{
    color: #31b3c6 !important;
}

input[type="submit"]:hover,
button:hover,
a.button:hover,
.bgcp,
.single_add_to_cart_button,
.signup-newsletter-form .submit-btn:hover,
.js_agree_ck:checked + label:before,
.button.button_primary,
.tab_cat_title > li > a:hover > span:after,
.tab_cat_title > li > a.tt_active > span:after,
.js_fbt_ck:checked + label:before,
.mini_cart_footer .button.btn-checkout,
.noUi-handle:before,
.noUi-handle:after,
.noUi-connect,
.bgp {
    background-color: #31b3c6;
}

input[type="submit"]:hover,
button:hover,
a.button:hover,
.variations_button .nt_add_w:hover,
.single_add_to_cart_button,
.js_agree_ck:checked + label:before,
.button.button_primary,
.js_fbt_ck:checked + label:before {
    border-color: #31b3c6;
}

.nt_lt_fake ul > li:hover,
.nt_lt_fake ul > li.is-selected {
    background: rgba(195, 157, 98, 0.08);
    color: #31b3c6;
}

.pswp_thumb_item.pswp_tb_active,
.pswp_tp_light .pswp_thumb_item.pswp_tb_active {
    box-shadow: 0 0 0 2px #31b3c6;
}

.nt_label,
.nt_label.on {
    background-color: #ff4e00;
}

.nt_label.new {
    background-color: #109533;
}

h3.product-title,
h3.product-title > a,
h1.product_title.entry-title {
    color: #222222;
}

.price,
.price_range {
    color: #696969;
}

.price ins,
.price_range ins {
    color: #ec0101;
}

.price del,
.price_range del,
.kl_fbt_wrap del {
    color: #878787;
}

.nt_bg_lz.lazyload,
.nt_bg_lz.lazyloading {
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    background-image: none;
}

.nt_bg_lz.lazyload:before,
.nt_bg_lz.lazyloading:before,
.drift-zoom-pane-loader {
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100px%22%20height%3D%22100px%22%20viewBox%3D%220%200%20100%20100%22%20preserveAspectRatio%3D%22xMidYMid%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M24.3%2C30C11.4%2C30%2C5%2C43.3%2C5%2C50s6.4%2C20%2C19.3%2C20c19.3%2C0%2C32.1-40%2C51.4-40%20C88.6%2C30%2C95%2C43.3%2C95%2C50s-6.4%2C20-19.3%2C20C56.4%2C70%2C43.6%2C30%2C24.3%2C30z%22%20stroke%3D%22%2356cfe1%22%20stroke-width%3D%222%22%20stroke-dasharray%3D%22205.271142578125%2051.317785644531256%22%3E%3Canimate%20attributeName%3D%22stroke-dashoffset%22%20calcMode%3D%22linear%22%20values%3D%220%3B256.58892822265625%22%20keyTimes%3D%220%3B1%22%20dur%3D%221%22%20begin%3D%220s%22%20repeatCount%3D%22indefinite%22%2F%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
    -webkit-animation: 0.35s linear infinite alternate skeletonAnimation;
    animation: 0.35s linear infinite alternate skeletonAnimation;
    background-repeat: no-repeat;
    background-size: 70px;
}

.nt_bg_lz.hide_ic_lz:before {
    display: none;
}

body .tooltip_top_left:before,
body.rtl .tooltip_top_right:before {
    border-top-color: #31b3c6;
}

body .tooltip_top_right:before,
body.rtl .tooltip_top_left:before {
    border-top-color: #31b3c6;
}

a.button:not(.nt_cat_lm),
button:not(.single_add_to_cart_button):not(.flickity-button):not(.submit-btn),
input[type="submit"],
select,
.hover_button .nt_add_qv,
.hover_button .pr_atc,
.mini_cart_actions .quantity,
input.search_header__input:not([type="submit"]):not([type="checkbox"]),
#cart-form_qs .single_add_to_cart_button,
#cart-form_qs .quantity,
.p-thumb .flickity-button {
    border-radius: 0;
}

/*************************************
* header
*************************************/
.h__banner {
    background-color: #31b3c6;
    min-height: 41px;
    font-size: 12px;
}

.h_banner_close,
.h_banner_close:hover,
.h_banner_close:focus {
    color: #ffffff !important;
}

.h_banner_close:after,
.h_banner_close:before {
    background-color: #ffffff;
}

/*************************************
* footer section
*************************************/
.footer__top a:hover {
    color: #56cfe1;
}

.footer__top .signup-newsletter-form,
.footer__top .signup-newsletter-form input.input-text {
    background-color: transparent;
}

.footer__top .signup-newsletter-form input.input-text {
    color: #ffffff;
}

.footer__top .signup-newsletter-form .submit-btn {
    background-color: #31b3c6;
}

.footer__top .widget-title {
    color: #ffffff;
    font-family: Poppins, sans-serif;
}

.footer__top a:not(:hover) {
    color: #ffffff;
}

.footer__top .signup-newsletter-form {
    border-color: #ffffff;
}

.footer__top .nt_bg_overlay:after {
    background-color: #000000;
    opacity: 0;
}

.footer__top_wrap {
    background-color: #111111;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-position: center center;
    color: #ffffff;
}

.footer__bot_wrap a:hover {
    color: #56cfe1;
}

.footer__bot_wrap {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.5;
}

.footer__bot a:not(:hover) {
    color: #ffffff;
}

.fade:not(.show){
    opacity: 0;
    display: none;
}

#loginSubmitBtn, .account-create-container-button button{
    background-color: #31b3c6;
}

.row > .flickity-button{
    width: unset !important;
}

::selection {
    background: #31b3c6;
    color: white;
}

::-moz-selection {
    background: #31b3c6;
    color: white;
}

/****************************************
*! BLOG
*****************************************/

.type_featured_blog .button{
    min-width: 50% !important;
    width: fit-content !important;
    justify-self: center;
    display: flex;
    justify-content: center;
}

.blog_main{
    padding-top: 0 !important;
}

.blog_main_cont:nth-last-of-type(2){
    display: block !important;
    max-width: 1500px;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 10px;
    padding-right: 10px;
}

.blog_main_cont > img{
    width: 100% !important;
    display: block;
    float: left;
    height: 300px;
}

.blog_details_desc{
    display: contents;
    float: left;
}

.blogcont {
    margin-top: 25px;
}
.article-box img {
    transition: transform 1s ease;
}

.article-box:hover img {
    transform: scale(1.3);
}

.blogLink:hover .footer{
    background-color: white;
}

/****************************************
*! SINGLE-MASONRY-THEME CSS
*****************************************/

#r--masonry-theme *{-webkit-box-sizing:border-box;box-sizing:border-box;word-wrap:break-word;text-align:left}#r--masonry-theme .r--masonry-theme{width:100%;float:left}#r--masonry-theme .r--masonry-theme .r--load-more{position:static!important;height:auto!important}#r--masonry-theme .r--masonry-theme .animate{opacity:0}#r--masonry-theme .r--masonry-theme .error-sort{text-align:center}#r--masonry-theme .r--masonry-theme .r--header{margin-bottom:5px}#r--masonry-theme .r--masonry-theme .r--filter-review{border-bottom:none}#r--masonry-theme .r--masonry-theme select{border:none;background:#f2f2f2}#r--masonry-theme .r--masonry-theme .r--star-head{width:auto}#r--masonry-theme .r--masonry-theme .r--grid{clear:both}#r--masonry-theme .r--masonry-theme .r--item-body{padding:0 7px 7px}#r--masonry-theme .r--masonry-theme .r--grid-item{min-height:125px;border-radius:5px;float:left;margin:0 0 15px;width:calc(100% - 8px);border:1px solid #ddd;padding:10px;background:#fff;overflow:hidden}#r--masonry-theme .r--masonry-theme .r--grid-item.r--grid-img{padding:0}#r--masonry-theme .r--masonry-theme .r--item-head{overflow:hidden;border-top-left-radius:3.5px;border-top-right-radius:3.5px;position:relative;min-height:32px;float:left;width:100%}#r--masonry-theme .r--masonry-theme .r--item-head.r--item-head-img{background:#000;max-height:280px}#r--masonry-theme .r--masonry-theme .r--item-head.r--item-head-img .r--img{margin-left:auto!important;margin-right:auto!important;width:100%;height:auto;max-width:100%;min-height:133px;vertical-align:middle;cursor:-webkit-zoom-in;cursor:zoom-in}#r--masonry-theme .r--masonry-theme .r--item-head-img .r--author{background:hsla(0,0%,100%,.9)}#r--masonry-theme .r--masonry-theme .r--author{background:#f2f2f2;max-width:90%;width:-webkit-max-content;width:-moz-max-content;width:max-content;float:left;margin:-2px 0 0 -2px}#r--masonry-theme .r--masonry-theme .r--author.r--author-img{position:absolute;bottom:8px;left:9px}#r--masonry-theme .r--masonry-theme .r--author .r--show-setting{margin-right:7px;float:left}#r--masonry-theme .r--masonry-theme .r--author .r--show-setting .r--avatar-default,#r--masonry-theme .r--masonry-theme .r--author .r--show-setting img{margin-right:0!important}#r--masonry-theme .r--masonry-theme .r--date-review{opacity:.5;display:block;width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;float:left;margin-top:5px}#r--masonry-theme .r--masonry-theme .r--item-body{float:left;width:100%;border-bottom-right-radius:5px;border-bottom-left-radius:5px}#r--masonry-theme .r--masonry-theme .r--item-body .r--item-body-top{float:left;width:100%;margin-top:12px}#r--masonry-theme .r--masonry-theme .r--item-body .r--like-icon.dislike,#r--masonry-theme .r--masonry-theme .r--item-body .r--like-icon.like{margin-right:12px}#r--masonry-theme .r--masonry-theme .r--item-body .r--mobile-item{float:left;width:100%;margin:5px 0 0}#r--masonry-theme .r--masonry-theme .r--item-body .r--mobile-item .r--date-review{margin-top:0}#r--masonry-theme .r--masonry-theme .r--item-body .r--mobile-item time.r--date-review{float:left;margin-top:0;max-width:calc(100% - 25px);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#r--masonry-theme .r--masonry-theme .r--item-body .r--mobile-item img{float:right;padding:8px 0;cursor:pointer}#r--masonry-theme .r--masonry-theme .r--stars-author{float:left}#r--masonry-theme .r--masonry-theme .r--stars-author .r--flag-country{display:inherit;margin-left:10px}#r--masonry-theme .r--masonry-theme .r--stars-author .r--flag-country .flag-icon{width:16px}#r--masonry-theme .r--masonry-theme .r--content-review,#r--masonry-theme .r--masonry-theme .r--title-review{text-align:left;float:left;width:100%}#r--masonry-theme .r--masonry-theme .r--title-review{font-weight:700;margin:7px 0 0;font-size:1.1em!important}#r--masonry-theme .r--masonry-theme .r--content-review{margin:6px 0 0}#r--masonry-theme .r--masonry-theme .r--reply-helpul{margin:6px 0 0;width:100%}#r--masonry-theme .r--masonry-theme .r--helpul-item{margin:0 3px 0 0!important}#r--masonry-theme .r--masonry-theme .r--helpul-item.r--show-setting{margin-right:14px}#r--masonry-theme .r--masonry-theme .r--helpul-item.r--show-setting .r--like-icon.dislike,#r--masonry-theme .r--masonry-theme .r--reply-review{margin-right:0}#r--masonry-theme .r--masonry-theme .r--helpul-item:hover .r--like-title{text-decoration:underline;cursor:pointer}#r--masonry-theme .r--masonry-theme .r--helpul-item svg{float:left}#r--masonry-theme .r--masonry-theme .r--reply-review svg{margin-right:5px}#r--masonry-theme .r--masonry-theme .r--like-icon{margin-left:0}#r--masonry-theme .r--masonry-theme .r--like-title{margin-left:5px;color:#000}#r--masonry-theme .r--image-wrapper{position:relative;width:50px;height:50px;border-radius:3px;float:left;overflow:hidden}#r--masonry-theme .r--image-wrapper.r--img-active{border:1px solid #f5f5f5}#r--masonry-theme .r--image-wrapper img{width:100%;height:auto;max-width:100%;max-height:unset!important}#r--masonry-theme .fr-product-info{float:left;width:100%;padding:10px;border-top:1px solid #ddd;margin-top:10px}#r--masonry-theme .fr-product-info .r--router-feature{width:100%;float:left}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-img{margin-right:10px}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-img.r--img-active{border:1px solid #d9d9d9}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info{float:left;width:calc(100% - 60px)}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info.r--not-img{width:100%}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info span{color:#333}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info span.r--rate{color:#fff}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info .frp-handle,#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info .frp-title{float:left;width:100%;line-height:1.2}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info .frp-title{font-weight:700;margin-bottom:3px}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info .r--rate,#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info .r--star-active,#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info .r--total-review{float:left}#r--masonry-theme .fr-product-info .r--router-feature .r--feature-info .r--star-active{margin-right:5px!important;width:15px}#r--masonry-theme .fr-product-info.fr-product-info-640{padding:10px 0 0}#r--masonry-theme .fr-product-info.fr-product-info-640 .r--router-feature .r--feature-img{width:40px;height:40px;margin-right:5px}#r--masonry-theme .fr-product-info.fr-product-info-640 .r--router-feature .r--feature-info{width:calc(100% - 45px)}#r--masonry-theme .r--hide-scroll{overflow:hidden!important}#r--masonry-theme .r--text-limit{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#r--masonry-theme .r--showing{line-height:2!important;padding-bottom:10px}#r--masonry-theme .r--filter-link{background:#f2f2f2;padding:6px 12px;border-radius:3px;cursor:pointer}#r--masonry-theme .r--filter-link .r--filter-icon{height:13px;border-radius:0!important}#r--masonry-theme .r--filter-link span{line-height:1.23;float:left;margin:0 9px 0 5px}#r--masonry-theme .r--filter-link .r--select{overflow:hidden;text-overflow:clip;white-space:nowrap}#r--masonry-theme .r--filter-link .r--select.r--icon-down{width:8px}#r--masonry-theme .r--filter-wrapper{float:right;padding-bottom:20px}#r--masonry-theme .r--filter-wrapper .r--sortBy span{float:left}#r--masonry-theme .r--filter-review.r--filter-mobile{margin-top:5px}#r--masonry-theme .r--filter-review.r--filter-mobile .r--filter-button{margin-right:7px;margin-top:5px}#r--masonry-theme .r--filter-review.r--filter-mobile .r--sort-button{margin-top:5px}#r--masonry-theme .r--filter-review.r--filter-mobile .r--filter-icon{margin-right:7px!important}#r--masonry-theme .r--filter-review.r--filter-mobile .r--showing{line-height:1.7!important}#r--masonry-theme .r--btn{border:none;min-width:50px;border-radius:3px;padding:9px 15px}#r--masonry-theme .r--loading-wp{position:relative;background:hsla(0,0%,100%,.8);min-height:250px}#r--masonry-theme .r--loading-wp .r--loading-bg{position:absolute;width:100%;height:100%;z-index:2000;background:hsla(0,0%,100%,.8);padding-top:150px}#r--masonry-theme .r--loading-pedding{float:left;width:100%;height:24px;text-decoration:none!important}#r--masonry-theme .r--loading-pedding ul{margin:0 auto;text-align:center}#r--masonry-theme .r--loading-pedding ul li{width:6px;height:6px;margin:0;list-style-type:none;-webkit-transition:all .5s ease;transition:all .5s ease;border-radius:50%;display:inline-block}#r--masonry-theme .r--loading-pedding ul li:first-child{-webkit-animation:right-1 1s infinite alternate;animation:right-1 1s infinite alternate;background-color:#999;-webkit-animation-delay:.1s;animation-delay:.1s}@-webkit-keyframes right-1{0%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}to{-webkit-transform:translateY(6px);transform:translateY(6px)}}#r--masonry-theme .r--loading-pedding ul li:nth-child(2){-webkit-animation:right-2 1s infinite alternate;animation:right-2 1s infinite alternate;background-color:#999;-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes right-2{0%{-webkit-transform:translateY(-7px);transform:translateY(-7px)}to{-webkit-transform:translateY(7px);transform:translateY(7px)}}#r--masonry-theme .r--loading-pedding ul li:nth-child(3){-webkit-animation:right-3 1s infinite alternate;animation:right-3 1s infinite alternate;background-color:#999;-webkit-animation-delay:.3s;animation-delay:.3s}@-webkit-keyframes right-3{0%{-webkit-transform:translateY(-8px);transform:translateY(-8px)}to{-webkit-transform:translateY(8px);transform:translateY(8px)}}#r--masonry-theme .r--like-loading{display:inline-block}#r--masonry-theme .r--like-loading ul{display:inline-block;margin:0 auto}#r--masonry-theme .r--like-loading ul li{width:2px;height:2px;margin:2px;list-style-type:none;-webkit-transition:all .5s ease;transition:all .5s ease;border-radius:50%}#r--masonry-theme .r--like-loading ul li:first-child{-webkit-animation:right-1 1s infinite alternate;animation:right-1 1s infinite alternate;background-color:#333;-webkit-animation-delay:.1s;animation-delay:.1s}@keyframes right-1{0%{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(-10px);transform:translateY(-10px)}}#r--masonry-theme .r--like-loading ul li:nth-child(2){-webkit-animation:right-2 1s infinite alternate;animation:right-2 1s infinite alternate;background-color:#333;-webkit-animation-delay:.2s;animation-delay:.2s}@keyframes right-2{0%{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(-10px);transform:translateY(-10px)}}#r--masonry-theme .r--like-loading ul li:nth-child(3){-webkit-animation:right-3 1s infinite alternate;animation:right-3 1s infinite alternate;background-color:#333;-webkit-animation-delay:.3s;animation-delay:.3s}@keyframes right-3{0%{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(-10px);transform:translateY(-10px)}}#r--masonry-theme #r--review-theme .r--image-empty{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#r--masonry-theme .r--op-04{opacity:.4}#r--masonry-theme .r--f-left{float:left}#r--masonry-theme .r--f-right{float:right;padding-bottom:10px}#r--masonry-theme .r--hide-scroll{padding-right:calc(100vw - 100%)}#r--masonry-theme .cls-star{fill:#ffb102}#r--masonry-theme .r--loading-el{display:inline-block;background:#333;pointer-events:none;width:5px;height:5px;border-radius:50%}#r--masonry-theme .r--stars .r--total-view{width:100%}#r--masonry-theme .r--stars-item{display:inline-block;position:relative}#r--masonry-theme .r--stars-item svg{float:left;margin-right:2.8px}#r--masonry-theme .r--stars-item svg.last{margin-right:0}#r--masonry-theme .r--star-gray-active{float:left;overflow:hidden;top:0;left:0;position:absolute;margin:0}#r--masonry-theme .r--star-gray-active>span{position:absolute;left:0}#r--masonry-theme img.r--avatar-img{width:25px;height:25px;border-radius:50%;float:left;margin-right:7px!important}#r--masonry-theme img.r--avatar-img.r--img-reply{width:33px;height:33px}#r--masonry-theme .r--overview .r--overview-left{float:left;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}#r--masonry-theme .r--overview .r--overview-left .r--star-block{float:left;text-align:center;margin:32px 8px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}#r--masonry-theme .r--overview .r--overview-left .r--star-block .r--stars-item{display:-webkit-box;display:-ms-flexbox;display:flex;margin:auto}#r--masonry-theme .r--overview .r--overview-left .r--star-block.r--star-600{margin-left:50px;margin-right:50px}#r--masonry-theme .r--overview .r--overview-left .r--star-block.r--star-850{margin-left:25px;margin-right:25px}#r--masonry-theme .r--overview .r--overview-left .r--star-block.r--star-1200{margin-left:50px;margin-right:50px}#r--masonry-theme .r--overview .r--overview-left .r--rateList{float:left;margin-left:8px;width:100%}#r--masonry-theme .r--overview .r--overview-left .r--rateList .r--total-bar-default{min-width:150px;max-width:320px}#r--masonry-theme .r--overview .r--overview-left .r--rateList.r--rate-min{max-width:calc(100% - 100px);display:inline-block}#r--masonry-theme .r--overview .r--overview-left .r--rateList.r--rate-min .r--total-bar-default{min-width:90px}#r--masonry-theme .r--overview .r--overview-left .r--rateList.r--rate-600{width:360px;margin-right:32px}#r--masonry-theme .r--overview .r--overview-left .r--rateList.r--rate-850{width:400px;margin-left:16px;margin-right:32px}#r--masonry-theme .r--overview .r--overview-left .r--rateList.r--rate-1200{width:400px;margin-left:18px;margin-right:64px}#r--masonry-theme .r--overview .r--overview-left-mobi{display:inline-block}#r--masonry-theme .r--overview .r--overview-left-mobi .r--star-block{margin-top:10px;float:unset;margin-bottom:25px}#r--masonry-theme .r--overview .r--overview-left-mobi .r--rateList{width:100%;margin-left:0;max-width:100%!important}#r--masonry-theme .r--header{float:left;width:100%;margin-bottom:10px}#r--masonry-theme .r--header h3{width:-webkit-max-content;width:-moz-max-content;width:max-content;line-height:33px;margin:0}#r--masonry-theme .r--title-average{color:#333;font-size:1.0833em;width:100%;display:inline-block;line-height:1.16;text-align:center}#r--masonry-theme .r--stars_average{line-height:1.32;font-size:2.333em;color:#333;text-align:center;font-weight:700}#r--masonry-theme .r--total-view{display:inline-block;margin-top:7px;white-space:nowrap;line-height:1.16;text-align:center}#r--masonry-theme .r--rateList{table-layout:unset!important;margin:0;background-color:unset!important;border:none!important;overflow:unset!important}#r--masonry-theme .r--rateList *{overflow:inherit!important}#r--masonry-theme .r--rateList eval,#r--masonry-theme .r--rateList td,#r--masonry-theme .r--rateList th,#r--masonry-theme .r--rateList tr{margin:0;background-color:unset!important;border:none!important}#r--masonry-theme .r--rateList td{padding:10px 5px!important}#r--masonry-theme .r--rate-name{width:-webkit-max-content;width:-moz-max-content;width:max-content;padding-right:10px!important;line-height:1;white-space:nowrap;font-weight:400!important}#r--masonry-theme .r--rate-name.r--rate-name-mobile{padding-right:7px!important}#r--masonry-theme .r--rate-name.r--rate-name-mobile svg{margin-left:1px}#r--masonry-theme .r--rate-name div{min-height:16px}#r--masonry-theme .r--rate-numeral{width:100%;vertical-align:bottom}#r--masonry-theme .r--total-bar-default{background:#f2f2f2;border:none;height:3px;width:100%;float:left;margin-top:-5px}#r--masonry-theme .r--flex-center{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}#r--masonry-theme .r--center-middle{display:inline-block;float:left;position:absolute;top:50%!important;left:50%!important;-webkit-transform:translate(-50%,-50%)!important;transform:translate(-50%,-50%)!important;max-height:100%;max-width:100%}#r--masonry-theme .r--noneBack{background:0 0}#r--masonry-theme .r--bar_bak_gray{background:#ebebeb;height:3px;float:left;position:relative;min-width:10px}#r--masonry-theme .r--bar-active{float:right;width:9px;position:relative;height:3px}#r--masonry-theme .r--rate-percent-default{background:#fff;border:1px solid #d0d0d0;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#333;min-width:14.5px;text-align:center;line-height:100%;left:50%;padding:2px 5px!important;position:absolute;bottom:8px;word-break:normal!important;transform:translateX(-50%);-o-transform:translateX(-50%);-webkit-transform:translateX(-50%)}#r--masonry-theme .r--rate-percent-default .r--rate-after{z-index:2;border-color:#fff transparent transparent;border-width:2.4px 1.3px 0;bottom:-2.3px}#r--masonry-theme .r--rate-percent-default .r--rate-after,#r--masonry-theme .r--rate-percent-default .r--rate-before{display:inline-block;border-style:solid;height:0;left:50%;position:absolute;width:0;-webkit-transform:translate(-50%);transform:translate(-50%)}#r--masonry-theme .r--rate-percent-default .r--rate-before{border-color:#d0d0d0 transparent transparent;border-width:3.5px 2.3px 0;bottom:-4.2px}#r--masonry-theme .r--rateList .r--disable{pointer-events:none;opacity:.6}#r--masonry-theme .r--overview-right{display:inline-block}#r--masonry-theme .r--overview-right.r--overview-right-mobi{width:100%;margin-bottom:5px;margin-top:20px}#r--masonry-theme .r--image-items{display:inline-block;margin-top:8px;margin-bottom:15px}#r--masonry-theme .r--image-items ul{margin:4px 0}#r--masonry-theme .r--image-items ul img{cursor:-webkit-zoom-in;cursor:zoom-in}#r--masonry-theme .r--image-items h4{font-size:1.0833em;margin:5px 0}#r--masonry-theme .r--image-items li{background:#ebebeb;border-radius:3px;border:1px solid #ebebeb;margin:5px 5px 0 0!important;width:50px;height:50px;text-align:center;position:relative;overflow:hidden;display:inline-block}#r--masonry-theme .r--image-items li img{width:100%;max-height:none}#r--masonry-theme .r--image-items li:last-child{margin-right:0}#r--masonry-theme .r--image-items li.r--more-img{background:0 0;border-radius:3px;border:1px solid #ddd}#r--masonry-theme .r--image-items li.r--more-img img{width:auto;cursor:pointer}#r--masonry-theme .r--app-write-review .r--button{border:1px solid transparent;font-weight:700;min-width:121px;padding:0 7px;margin-left:10px}#r--masonry-theme .r--list-filter{display:inline-block;width:100%;margin-bottom:8px}#r--masonry-theme .r--list-filter ul{display:contents;margin:0}#r--masonry-theme .r--list-filter .r--title-filter{margin-right:5px}#r--masonry-theme .r--list-filter li{position:relative;display:inline-block;padding:6px 11px!important;min-width:62px;text-align:center;line-height:1.2;border:1px solid #c7c7c7;border-radius:3px;margin:0 5px 7px 0!important;font-weight:400}#r--masonry-theme .r--list-filter li:hover .r--close{display:inline-block}#r--masonry-theme .r--list-filter li .r--close{display:none;position:absolute;cursor:pointer;top:0;left:0;width:100%;height:100%;background:hsla(0,0%,100%,.82);border-radius:30px;text-align:center;line-height:27px}#r--masonry-theme .r--list-filter li.r--clear-all{border:none;padding:4px 5px;padding-left:2px!important}#r--masonry-theme .r--list-filter li.r--clear-all.r--clear-all-mobi{width:100%}#r--masonry-theme .r--list-filter li.r--clear-all a{color:initial;text-decoration:underline}#r--masonry-theme .r--filter-review{float:left;width:100%;margin-top:20px;border-bottom:1px solid #f2f2f2}#r--masonry-theme .r--filter-review select{color:rgba(51,51,51,.45);padding:2.5px 20px 2.5px 15px;border-radius:3px;-moz-appearance:none;-webkit-appearance:none;appearance:none}#r--masonry-theme .r--filter-review select::-ms-expand{display:none}#r--masonry-theme .r--filter,#r--masonry-theme .r--sortBy{float:right}#r--masonry-theme .r--filter .r--filter-icon,#r--masonry-theme .r--sortBy .r--filter-icon{margin-right:7px!important}#r--masonry-theme .r--sortBy span{display:inline-block}#r--masonry-theme .r--filter{margin-right:10px}#r--masonry-theme .r--wrapper-select{display:inline-block;position:relative}#r--masonry-theme .r--wrapper-select:before{content:"";height:0;width:0;position:absolute;top:11px;right:9px;border-left:3.5px solid transparent;border-right:3.5px solid transparent;border-top:3.5px solid #9f9797}#r--masonry-theme .el-icon-arrow-left:after{content:url(https://cdn.review.com/v/images/prev-left.svg);margin-left:-2px}#r--masonry-theme .el-icon-arrow-left:before,#r--masonry-theme .el-icon-arrow-right:before{display:none}#r--masonry-theme .el-icon-arrow-right:after{content:url(https://cdn.review.com/v/images/next-right.svg);margin-left:2px}#r--masonry-theme .el-icon-arrow-left,#r--masonry-theme .el-icon-arrow-right{margin-top:2px}#r--masonry-theme .r--deactive-click{pointer-events:none}#r--masonry-theme .r--loading-pagination{position:absolute;top:0;width:100%;height:100%;background:hsla(0,0%,100%,.8)}#r--masonry-theme .r--loading-pagination ul{position:absolute;top:45%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}#r--masonry-theme .r--text-load-more{color:initial;background:#f2f2f2;border-radius:5px;padding:6px 17px;line-height:1.2;font-weight:700}#r--masonry-theme .r--text-load-more:hover{text-decoration:underline}#r--masonry-theme #r--review-theme .r--load-more,#r--masonry-theme .r--loading-reviews{float:left;width:100%;text-align:center;margin:25px 0;color:#3d4246}#r--masonry-theme #r--review-theme .r--load-more a,#r--masonry-theme .r--loading-reviews a{display:inline-block}#r--masonry-theme .r--imgLoad{z-index:99;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}#r--masonry-theme .r--like{float:left}#r--masonry-theme .r--like-count,#r--masonry-theme .r--like-icon,#r--masonry-theme .r--like-loading,#r--masonry-theme .r--like-title,#r--masonry-theme .r--like svg{margin:0 0 0 3px;float:left;line-height:100%}#r--masonry-theme .r--like-count{margin-left:5px;float:left}#r--masonry-theme .r--like svg{width:15.762px}#r--masonry-theme .r--like .like svg{margin-top:-4px}#r--masonry-theme .r--like .dislike svg{margin-bottom:-2px}#r--masonry-theme .r--like .r--icon-like .cls-1,#r--masonry-theme .r--like .r--icon-like .cls-2{fill:none;stroke:#999;stroke-linejoin:round}#r--masonry-theme .r--like .r--icon-like .cls-1{stroke-linecap:round}#r--masonry-theme .r--like .r--icon-dislike .cls-1,#r--masonry-theme .r--like .r--icon-dislike .cls-2{fill:none;stroke:#999;stroke-linejoin:round}#r--masonry-theme .r--like .r--icon-dislike .cls-1{stroke-linecap:round}#r--masonry-theme .r--reply-helpul svg{height:20px}#r--masonry-theme .r--icon-reply{width:21.125px;margin-top:1px}#r--masonry-theme .r--icon-reply .cls-1{fill:none;stroke:#999}#r--masonry-theme .r--icon-reply .cls-2,#r--masonry-theme .r--icon-reply .cls-4{fill:transparent;stroke:#999}#r--masonry-theme .r--icon-reply .cls-2{stroke-linecap:round}#r--masonry-theme .r--icon-reply .cls-3{-webkit-clip-path:url(#clip-path);clip-path:url(#clip-path)}#r--masonry-theme .r--icon-reply .cls-5{stroke:none}#r--masonry-theme .r--like-active .r--icon-dislike .cls-1,#r--masonry-theme .r--like-active .r--icon-dislike .cls-2,#r--masonry-theme .r--like-active .r--icon-like .cls-1,#r--masonry-theme .r--like-active .r--icon-like .cls-2,#r--masonry-theme .r--like-active .r--icon-reply .cls-1,#r--masonry-theme .r--like-active .r--icon-reply .cls-2,#r--masonry-theme .r--like-active .r--icon-reply .cls-4{stroke:#333}#r--masonry-theme .r--tools-tip .text{display:none}#r--masonry-theme .r--author{padding:3px 12px 3px 3px;border-radius:50px;font-weight:700;text-align:left;line-height:25px;}#r--masonry-theme .r--author.r--no-author{padding:3px!important;min-width:0}#r--masonry-theme .r--author.r--name-empty{padding-right:3px;min-width:0}#r--masonry-theme .r--author.r--name-empty .r--avatar-default{margin-right:0!important}#r--masonry-theme .r--author-icon span{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}#r--masonry-theme .r--avatar-default,#r--masonry-theme .r--stars-author .img{float:left;width:25px;height:25px;line-height:25px;margin-right:7px!important}#r--masonry-theme .r--no-author .r--avatar-default{margin-right:0!important}#r--masonry-theme .r--star-head{width:100%}#r--masonry-theme .r--star-head .r--stars{float:left}#r--masonry-theme .r--star-head svg.verified{margin:2px 0 0 10px}#r--masonry-theme .r--star-head .r--stars-item{float:left}#r--masonry-theme .r--rate{float:left;margin-right:5px;padding:1px 5px;border-radius:3px;text-align:center;line-height:100%;background:#ffb102;color:#fff;font-weight:700}#r--masonry-theme li.r--img-load{background:#f2f2f2!important}#r--masonry-theme .body-review,#r--masonry-theme .r--content-reply,#r--masonry-theme .r--content-review,#r--masonry-theme .r--image-items{text-align:left}#r--masonry-theme .attribute-review.photos-verified{float:left}#r--masonry-theme .r--write-input .r--warning{border:1px solid #db2020;outline:none}@media only screen and (min-width:500px){#r--masonry-theme .r--title-filter{margin-right:11px}#r--masonry-theme .r--title-filter li{margin-right:8px}#r--masonry-theme .border-modal{width:375px}}#r--masonry-theme #show-modal:hover,#r--masonry-theme .r--dots-item,#r--masonry-theme .r--helpul-item svg:hover,#r--masonry-theme .r--show-more:hover,#r--masonry-theme .r--submit-form:hover,#r--masonry-theme .r--write-input svg:hover,#r--masonry-theme select:hover{cursor:pointer}#r--masonry-theme .v--modal-box .flag{width:15px}#r--masonry-theme .r--header-empty{float:left;padding-bottom:20px}#r--masonry-theme .r--header-empty .r--flex-center .r--star-block{margin-top:0!important}#r--masonry-theme .r--text-empty{float:left;text-align:center;padding-top:20px;margin-top:10px;width:100%;border-top:1px solid #f2f2f2}#r--masonry-theme .r--text-empty.r--text-empty-850{width:-webkit-max-content;width:-moz-max-content;width:max-content;border-top:none;padding-top:0;margin-top:55px}#r--masonry-theme .r--text-empty .r--text-btn-write{cursor:pointer;font-weight:700;text-decoration:underline}#r--masonry-theme #show-modal{display:inline-block;border:1px solid transparent;padding:0 10px;height:33px;border-radius:3px;font-weight:700;position:relative}#r--masonry-theme #show-modal .r--loading-write{width:100%;height:100%;background:hsla(0,0%,100%,.8)}#r--masonry-theme #show-modal .r--loading-write img{width:20px}#r--masonry-theme #show-modal svg{vertical-align:middle}#r--masonry-theme #show-modal .r--text-write{margin-left:8px;line-height:31px}#r--masonry-theme .r-icon--check{margin-left:7px!important}#r--masonry-theme .r--text-photo{font-weight:700}#r--masonry-theme .r--reply-modal .r--form-top .r--title-form{position:absolute;top:12px;width:calc(100% - 36px);padding-bottom:5px;background:#fff}#r--masonry-theme .r--popover-setting{float:left;width:100%}#r--masonry-theme .r--popover-setting .r--row-setting{float:left;width:100%;margin-bottom:10px}#r--masonry-theme .r--popover-setting label{float:left;width:100px;margin-right:5px}#r--masonry-theme .r--popover-setting .el-slider__runway,#r--masonry-theme .r--popover-setting input{float:left;width:calc(100% - 110px)}#r--masonry-theme .el-switch{margin-left:20px}#r--masonry-theme .r--loading{margin:20px;float:left}#r--masonry-theme .r--icon-filter,#r--masonry-theme .r--icon-sortby{margin-right:7px}@media only screen and (max-width:900px){#r--masonry-theme .r--rate-list-setting,#r--masonry-theme .r--rate-list-setting>span{float:left;width:100%}#r--masonry-theme .r--header-empty .r--overview-left{padding:7px 0}#r--masonry-theme .r--header-empty{width:100%}#r--masonry-theme .v--modal-box.r--modal::-webkit-scrollbar{-webkit-appearance:none;width:4px!important}#r--masonry-theme .v--modal-box.r--modal::-webkit-scrollbar-thumb{border-radius:5px;border:2px solid #c2c2c2!important;background:#c2c2c2!important}}#r--masonry-theme .r--img-not-found{margin-top:40px;background:unset}#r--masonry-theme .r--img-not-found p{margin-top:20px;font-size:1.2em}#r--masonry-theme #r--review-theme .r--mobile-item{position:relative;min-height:20px}#r--masonry-theme #r--review-theme .r--mobile-item img{position:absolute;right:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}@media only screen and (max-width:600px){#r--masonry-theme .product-widget__review .review-item .review-number-widget{margin-left:3px!important}#r--masonry-theme .r--masonry-theme .r--reply-review{margin-left:5px!important}#r--masonry-theme #r--review-theme{max-width:100%}#r--masonry-theme #r--review-theme .r--grid .r--author{max-width:90%}#r--masonry-theme .r--write-cancel{margin-bottom:10px}}#r--masonry-theme .icon-close-popover{width:12px;height:12px;margin-bottom:10px;float:right;cursor:pointer}#r--masonry-theme .opacity-class{opacity:.2!important}#r--masonry-theme .r--setting-left{float:left;position:relative}#r--masonry-theme .r--setting-right{float:right;position:relative}#r--masonry-theme .r--show-setting{border:1px dashed red}#r--masonry-theme .r--show-setting div.r--avatar-default{margin-right:0!important}#r--masonry-theme .r--default-theme .r--show-setting .r--like-icon.dislike{margin-right:0}#r--masonry-theme .r--reply-form .r--setting-left label{margin:0}#r--masonry-theme .r--padding-setting{padding-bottom:10px}#r--masonry-theme .r--text-empty-setting{position:relative;margin-right:15px}#r--masonry-theme .r--show-pen,#r--masonry-theme .r--write-top .r--show-pen{display:block}#r--masonry-theme .r--empty-noty{margin:0 auto}#r--masonry-theme .r--loading-ajax{position:absolute;width:100%;top:0;height:100%;left:0;background:hsla(0,0%,100%,.81);z-index:99}#r--masonry-theme .r--review-total-widget{padding:5px;margin-bottom:10px}#r--masonry-theme .r--review-total-widget .review-item{display:-webkit-box;display:-ms-flexbox;display:flex}#r--masonry-theme .r--review-total-widget h1{margin:0 0 5px;font-size:18px}#r--masonry-theme .r--review-total-widget .r--stars{float:left}#r--masonry-theme .r--review-total-widget .review-number-widget{position:relative;float:left;margin-left:5px}#r--masonry-theme .r--loading-app-review{padding:100px 0 50px}#r--masonry-theme .r--loading-app-review ul{padding-left:0}@media only screen and (max-width:480px){#r--masonry-theme .sort{float:left!important}}.r--lage #r--masonry-theme .r--grid-item{width:calc(20% - 20px)!important}.r--tablet #r--masonry-theme .r--grid-item{width:calc(33.33% - 20px)!important}.r--mobile-plus #r--masonry-theme .r--grid-item{margin:0 10px 20px;width:calc(50% - 20px)!important}.r--mobile #r--masonry-theme .r--filter-review .r--filter-wrapper{float:left;width:100%;border-bottom:1px solid #e2e2e2;padding-bottom:5px;margin-bottom:10px}.r--mobile #r--masonry-theme .r--filter-review .r--filter-wrapper .r--filter,.r--mobile #r--masonry-theme .r--filter-review .r--filter-wrapper .r--sortBy{float:left}.r--mobile #r--masonry-theme .r--filter-review .r--filter-wrapper .r--sortBy{margin-right:10px;margin-bottom:10px}.r--mobile #r--masonry-theme .r--filter-review .r--filter-wrapper .r--filter{margin-bottom:10px}.r--desktop #r--masonry-theme .r--rateList tr:hover{cursor:pointer}.r--desktop #r--masonry-theme .r--tools-tip{position:relative;cursor:pointer;float:left}.r--desktop #r--masonry-theme .r--tools-tip img,.r--desktop #r--masonry-theme .r--tools-tip svg{vertical-align:middle}.r--desktop #r--masonry-theme .r--tools-tip:hover .text{display:block}.r--desktop #r--masonry-theme .r--verified-review svg{fill:#05d92d}.r--desktop #r--masonry-theme .r--tools-tip .text{background:#fff;border-radius:4px;border:1px solid #ebebeb;-webkit-box-shadow:1px 1px 3px #e6e6e6;box-shadow:1px 1px 3px #e6e6e6;font-size:.9em;left:50%;padding:3px 10px!important;position:absolute;top:-35px;text-align:center;-webkit-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap;z-index:999}.r--desktop #r--masonry-theme .r--masonry-theme .r--grid{margin:0 -10px}.r--desktop #r--masonry-theme .r--masonry-theme .r--grid-item{margin:0 10px 20px;width:calc(25% - 20px);padding:0}.r--desktop #r--masonry-theme .r--item-body-top{margin-top:14px}.r--desktop #r--masonry-theme .r--item-head{min-height:36px}.r--desktop #r--masonry-theme .r--showing{display:inline-block;line-height:23px}.r--desktop #r--masonry-theme .r--grid-item:hover{-webkit-box-shadow:1px 1px 5px rgba(0,0,0,.16);box-shadow:1px 1px 5px rgba(0,0,0,.16)}.r--desktop #r--masonry-theme .r--author{margin:10px 0 0 10px}.r--desktop #r--masonry-theme .r--author.r--author-img{margin-left:0}.r--desktop #r--masonry-theme .r--item-body{padding:0 15px 12px}.r--desktop #r--masonry-theme .r--load-more span:hover{cursor:pointer;text-decoration:underline}@media only screen and (max-width:1000px){.r--desktop .r--masonry-theme .r--item-body{padding:0 7.5px 12px 12px}}@media only screen and (max-width:600px){.r--masonry-theme .r--grid-item{min-height:auto}.r--masonry-theme .r--grid-item .r--author-info{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%}.r--masonry-theme .r--item-body .r--like-icon.like{margin-right:5px}}.r--grid-img .r--2,.r--grid-img .r--3{height:280px;position:relative}.r--grid-img .r--2,.r--grid-img .r--2 div,.r--grid-img .r--3,.r--grid-img .r--3 div{background-position:50%!important;background-repeat:no-repeat!important;background-size:cover!important}.r--grid-img .r--3 .r--left{border-right:1px solid #f2f2f2}.r--grid-img .r--3 .r--left,.r--grid-img .r--3 .r--right{width:50%;float:left;height:100%;cursor:-webkit-zoom-in;cursor:zoom-in}.r--grid-img .r--3 .r--right{border-left:1px solid #f2f2f2}.r--grid-img .r--3 .r--right div{height:50%;float:left}.r--grid-img .r--3 .r--right .r--top{border-bottom:1px solid #f2f2f2}.r--grid-img .r--3 .r--right .r--bottom{border-top:1px solid #f2f2f2}.r--grid-img .r--3 .r--right .r--bottom .r--more-img{float:left;width:100%;height:100%;background:rgba(0,0,0,.4);color:#fff;font-size:2.2em;text-align:center!important;line-height:139px;cursor:pointer}.r--grid-img .r--2 .r--left,.r--grid-img .r--2 .r--right{cursor:-webkit-zoom-in;cursor:zoom-in;float:left}.r--grid-img .r--2.r--vertial .r--left,.r--grid-img .r--2.r--vertial .r--right{width:50%;height:100%}.r--grid-img .r--2.r--vertial .r--left{border-right:1px solid #f2f2f2}.r--grid-img .r--2.r--vertial .r--right{border-left:1px solid #f2f2f2}.r--grid-img .r--2.r--horizontal .r--left,.r--grid-img .r--2.r--horizontal .r--right{width:100%;height:50%}.r--grid-img .r--2.r--horizontal .r--left{border-bottom:1px solid #f2f2f2}.r--grid-img .r--2.r--horizontal .r--right{border-top:1px solid #f2f2f2}.r--more-action{background:#fff;float:left;width:100%;text-align:center;border-bottom:1px solid #ebebeb;padding:12px 0;position:relative}.r--more-action .r--like .r--icon-dislike .cls-1,.r--more-action .r--like .r--icon-dislike .cls-2,.r--more-action .r--like .r--icon-like .cls-1,.r--more-action .r--like .r--icon-like .cls-2{fill:none;stroke:#999;stroke-linejoin:round}.r--more-action .r--icon-reply .cls-2{stroke-linecap:round}.r--more-action .r--icon-reply .cls-2,.r--more-action .r--icon-reply .cls-4{fill:transparent;stroke:#999}.r--more-action .r--more-action-header{float:left;width:100%;text-align:center;border-bottom:1px solid #ebebeb;padding:12px 0;position:relative}.r--more-action .r--more-action-header h3{margin:0}.r--more-action .r--more-action-header .r--close{position:absolute;top:50%;right:12px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.r--more-action .r--like-count,.r--more-action .r--like-icon,.r--more-action .r--like-loading,.r--more-action .r--like-title,.r--more-action .r--like svg{float:left;line-height:100%}.r--more-action .r--icon-reply{width:21.125px;margin-top:1px;float:left}.r--more-action .r--helpul-item span{float:left}.r--more-action .r--like svg{width:15.762px}.r--more-action .r--like-count{margin-left:5px}.r--more-action ul{float:left;width:100%;padding:10px 18px 15px;margin:0}.r--more-action li{float:left;width:100%;margin:0!important;padding:15px 0}.r--more-action svg{vertical-align:middle;margin-right:14px}.r--more-action .r--like{margin:0!important}.r--more-action .r--like .dislike svg,.r--more-action .r--like .like svg{margin-left:0}.r--more-action h3{margin:0}.r--more-action .r--close{position:absolute;top:50%;right:12px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}

/****************************************
*! SINGLE-PRODUCT CSS
*****************************************/

li.l_custom_svg svg {
    width: 35px;
    height: 35px;
    color: #222;
    margin: 5px;
}

.lt-block-reviews {
    min-height: 10px;
    clear: both;
}

.r--avatar-default {
    background: #f4b459;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
}

.r--masonry-theme {
    background: transparent !important;
    border: none;
}

#r--masonry-theme .r--header,
#r--masonry-theme .r--masonry-theme {
    display: block;
    float: none;
    overflow: hidden;
}

.r--filter-wrapper span,
.r--filter-wrapper span *,
.r--grid-item, .r--grid-item * {
    color: #333333;
}

.r--write-review .r--write-wrapper .r--write-top {
    width: calc(100% + 30px);
    margin-left: -15px;
    padding: 0 15px 24px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 10px;
    float: left;
}

.r--write-review .r--write-wrapper .r--rate-review .r--label-quality {
    margin-right: 24px;
}

.r--write-review .r--write-input label {
    font-weight: 600;
    display: inline-block;
    margin: 0;
    color: #696969;
}

.r--write-review .r--write-input {
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0 !important;
}

.r--write-review textarea {
    margin: 0;
    float: left;
    width: 100%;
    height: 99px;
    border: 1px solid #bfbfbf;
    border-radius: 3px;
    padding: 12px 9px;
    resize: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.r--write-review input {
    border: 1px solid #bfbfbf;
    float: left;
    width: 100%;
    height: 33px;
    border-radius: 3px;
    margin: 0;
    padding: 0 9px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.r--write-review .r--write-input input,
.r--write-review .r--write-input textarea {
    margin-top: 10px;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
}

.r--write-review .r--title-form span {
    font-size: 1.3333rem;
    font-weight: 700;
}

.r--write-review .r--title-form {
    margin-bottom: 15px;
    float: left;
    width: 100%;
    min-height: 15px;
}

.r--write-review .r--write-submit .r--button {
    height: 33px;
    margin: 0 !important;
    line-height: 31px !important;
    background: #FFB102;
}

.r--write-review .r--submit-form {
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 0 20px;
    height: 33px;
    display: block;
    text-align: right;
}

.r--write-review .r--write-submit {
    margin: 20px 0 0;
    clear: both;
    display: inline-block;
}

.review-popup__content::-webkit-scrollbar {
    width: 7px;
    height: 8px;
}

.review-popup__content::-webkit-scrollbar-thumb {
    background: #c2c2c2;
    height: 10px;
    border-radius: 5px;
}

.r--write-review .r--write-wrapper .r--write-product {
    padding: 15px;
    float: left;
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 3px;
}

.r--write-review .r--write-wrapper .r--write-product .r--img-wrapper img {
    float: left;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 100%;
    max-width: 100%;
}

.r--write-review .r--write-wrapper .r--write-product .r--img-wrapper {
    height: 44px;
    width: 44px;
    position: relative;
    float: left;
    margin-right: 15px;
}

.r--write-review .r--write-wrapper .r--write-product .r--info-product {
    display: inline-block;
    max-width: calc(100% - 60px);
}

.r--write-review .r--write-wrapper .r--write-product .r--info-product p {
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.21;
}

.r--write-review .r--text-limit {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.review-popup__content .r--title-form {
    margin-top: 2px;
}

.bg-yellow {
    background: rgb(255, 177, 2);
}

.show-modal-mobile .r--button {
    display: inline-block;
    border: 1px solid transparent;
    padding: 0 10px;
    height: 33px;
    border-radius: 3px;
    font-weight: 700;
    position: relative;
}

.show-modal-mobile .r--text-write {
    font-weight: 400;
    margin-left: 8px;
}

@media (max-width: 991px) {
    .show-modal-mobile {
        padding-top: 15px;
    }

    .r--desktop #r--masonry-theme .r--masonry-theme .r--grid-item {
        width: calc(50% - 20px) !important;
    }
}

@media (max-width: 500px) {
    .r--desktop #r--masonry-theme .r--masonry-theme .r--grid-item {
        width: calc(100% - 20px) !important;
    }
}

#wrap_des_pr {
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 1025px) {
    #wrap_des_pr {
        background-color: #f6f6f8;
    }
}

@media only screen and (max-width: 767px) {
    #wrap_des_pr {
        margin-top: 0;
        margin-bottom: 0;
    }
}

.r--write-review .r--flex-center {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.r--write-review .rate {
    display: flex;
    font-size: 24px;
    line-height: 24px;
    justify-content: center;
}

.r--write-review .rate > input {
    display: none;
}

.r--write-review .rate > label {
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    color: #ffc700;
}

.r--write-review .rate > label:before {
    content: '★';
    font-size: 30px;
    line-height: 1;
    display: inline-block;
    transition: color 0.35s ease;
    color: inherit;
    width: 30px;
    text-align: center;
}

.r--write-review .rate > input:checked ~ label {
    color: #ccc;
}

.r--write-review .rate > input:checked + label {
    color: #ffc700;
}

.r--write-review .rate:hover > label {
    color: #ffc700 !important;
}

.r--write-review .rate > input:hover ~ label {
    color: #ccc !important;
}

.r--write-review .rate > input:hover + label {
    color: #ffc700 !important;
}

#r--masonry-theme .r--masonry-theme .r--grid {
    clear: both;
    overflow: hidden;
}

#r--masonry-theme .r--overview {
    padding: 15px 0;
    width: 100%;
    float: left;
    position: relative;
}

@media (max-width: 767px) {
    #r--masonry-theme .r--overview .r--overview-left .thema-rating-result {
        justify-content: center;
        margin: 4px 0 0;
    }

    #r--masonry-theme .r--overview .r--overview-left {
        display: block;
    }

    #r--masonry-theme .r--overview .r--overview-left .r--rateList.r--rate-850,
    #r--masonry-theme .r--overview .r--overview-left .r--star-block.r--star-850 {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
        margin-top: 30px;
    }

    #r--masonry-theme .r--filter-review {
        margin-top: 40px;
    }
}

/*form discussion*/

.review-popup__content {
    border-radius: 5px;
    max-height: calc(100vh - 50px);
    min-height: 300px;
    width: 90% !important;
    max-width: 415px;
    overflow: auto !important;
    scroll-behavior: smooth;
    background: #fff;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .86);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .86);
    color: #333;
    z-index: 99999999999999 !important;
    padding: 30px;
    margin: 0 auto;
}

.thema-section-pr_summary .product_title {
    margin-bottom: 14px !important;
    font-size: 20px;
}

.sp-single .entry-summary > .price-review {
    margin-bottom: 23px !important;
}

/****************************************
* add to cart sticky bar
*****************************************/
.sticky_atc_wrap {
    z-index: 340;
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
    -webkit-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.sticky_atc_wrap.sticky_atc_shown {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.sticky_atc_a {
    font-size: 13px;
    cursor: pointer;
}

.sticky_atc_btn .quantity {
    border-radius: 2px;
    border-color: #ddd;
}

.sticky_atc_btn .single_add_to_cart_button {
    border-radius: 2px;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

#nt_backtop.sticky_atc_shown {
    bottom: 105px;
}

.popup_slpr_wrap.sticky_atc_shown {
    bottom: 105px;
}

@media (max-width: 575px) {
    .sticky_atc_btn {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
        padding: 0 2px;
    }

    .sticky_atc_btn .single_add_to_cart_button {
        width: 100%;
        margin: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .sticky_atc_btn .quantity {
        margin-left: 0;
    }
}

/**************************************************************
* Frequently Bought Together
***************************************************************/
.kl_fbt_li select {
    width: auto;
    border-radius: 5px;
    color: #222;
    height: 36px;
    line-height: 36px;
    margin-left: 5px;
}

.kl_fbt_wrap del {
    color: #878787;
}

.kl_fbt_wrap ins {
    text-decoration: none;
}

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

.js_fbt_ck,
.kl_fbt_li .label {
    display: none;
}

.kl_fbt_li label:before {
    position: relative;
    top: 2px;
    content: "";
    display: inline-block;
    margin-right: 4px;
    width: 14px;
    height: 14px;
    min-width: 14px;
    border: 1px solid #d4d6d8;
    box-shadow: none;
    background-size: 0;
    background: #fff no-repeat 50%;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    border-radius: 2px;
    -webkit-appearance: none;
}

.kl_fbt_li svg {
    display: block;
    width: 10px;
    height: 10px;
    fill: #fff;
    position: absolute;
    top: 7px;
    left: 2px;
    pointer-events: none;
    transform: scale(0);
    -webkit-transform: scale(0);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.js_fbt_ck:checked + label svg {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.js_fbt_ck:not(:checked) ~ * {
    opacity: 0.2;
}

.js_fbt_ck:not(:checked) + label {
    opacity: 1;
}

@media (max-width: 1024px) {
    .kl_fbt_li label:before {
        width: 24px;
        height: 24px;
    }

    .kl_fbt_li svg {
        width: 16px;
        height: 16px;
        top: 6px;
        left: 3px;
    }
}

/**************************************************************
* group table
***************************************************************/
@media (max-width: 767px) {
    .variations_form .quantity {
        min-width: 100px;
        width: 100px;
    }
}

.is_sticky .theiaStickySidebar {
    will-change: auto;
}

/****************************************
*! SHOPING-CART
*****************************************/

.cart_header{
    padding: 0 20px;
    font-weight: bolder;
    color: black;
    font-size: 17px;
}

.cart_items {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ddd;
}

.cart_item {
    padding: 20px;
    border-top: 1px solid #ddd;
}

.cart_item img{
    max-width: 300px;
    opacity: 1 !important;
}

.page-image {
    height: 25vh !important;
    margin-top: 20vh !important;
    position: relative;
}

.page-title-banner {
    width: 100%;
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: center;
}

/* home-fashion  */
.h__top {
    min-height: 41px;
    font-size: 12px;
}

.h__top, .h__top.bgbl {
    background-color: #f6f6f8;
    color: #878787
}

.header-text > .cg, .h__top .nt_currency {
    color: #878787
}

.h__top .cr {
    color: #ec0101
}

.header-text > a:not(.cg) {
    color: #222222
}

.header__mid .css_h_se {
    min-height: 90px
}

.nt_menu > li > a {
    height: 90px;
    font-weight: 500;
    font-size: 14px;
    padding-right: 17.5px;
    padding-left: 17.5px;
}

/**********************
* main slide
***********************/

.fashion-nine__main-slide .nt_img_txt > a:after {
    background-color: #000000;
    opacity: 0.0
}

.fashion-nine__main-slide .pa_txts {
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fashion-nine__main-slide.se_height_cus_h .js_full_ht4 {
    padding-top: 300px
}

@media (min-width: 768px) {
    .fashion-nine__main-slide.se_height_cus_h .js_full_ht4 {
        padding-top: 500px
    }
}

@media (min-width: 1025px) {
    .fashion-nine__main-slide.se_height_cus_h .js_full_ht4 {
        padding-top: 45.19774011299435%
    }
}

.fashion-nine__main-slide .nt_img_txt h4 {
    font-size: 12.5px;
    font-weight: 600;
    color: #222222
}

@media (min-width: 768px) {
    .fashion-nine__main-slide .nt_img_txt h4 {
        font-size: 20px
    }
}

.fashion-nine__break-line--first {
    height: 10px
}

@media (min-width: 768px) {
    .fashion-nine__break-line--first {
        height: 20px
    }
}

.fashion-nine__main-slide .nt_img_txt h3 {
    font-size: 35px;
    font-weight: 700;
    color: #222222
}

@media (min-width: 768px) {
    .fashion-nine__main-slide .nt_img_txt h3 {
        font-size: 55px
    }
}

.fashion-nine__break-line--seconds {
    height: 10px
}

@media (min-width: 768px) {
    .fashion-nine__break-line--seconds {
        height: 20px
    }
}

/******************************
* shipping info
*******************************/

.fashion-nine__shipping-info {
    margin: 15px auto 0 !important;
}

.fashion-nine__shipping-info .wrap_txt_ship {
    background-color: #f2f2f4;
    color: #222222
}

/******************************
* categories and Tab sections
*******************************/
.fashion-nine__tab-wrap,
.fashion-nine__category-section {
    margin: 100px auto 100px !important;
}

@media only screen and (max-width: 767px) {
    .fashion-nine__category-section {
        margin: 50px auto 50px !important;
    }

    .fashion-nine__tab-wrap {
        margin: 60px auto 60px !important;
    }
}

/* ==========================================================================
* change button color
========================================================================== */
.product-image a.db:before {
    background: rgba(0, 0, 0, 0.1);
}

.hover_button .pr_atc {
    background: #222222;
    color: #ffffff;
}

.product-image .pr_atc:hover {
    background: #222;
    color: #fff;
}

.hover_button .nt_add_qv {
    background: #222222;
    color: #ffffff;
}

.product-image .nt_add_qv:hover {
    background: #222222;
    color: #fff;
}

@media (max-width: 1024px) {
    .pr_grid_item .product-image .hover_button, .pr_grid_item .product-image:hover .hover_button {
        background: #222222;
    }
}

.product-image .nt_add_w > a {
    color: #fff;
}

.single_add_to_cart_button {
    background: #56cfe1;
    color: #fff;
    position: relative;
}

.single_add_to_cart_button:hover {
    background: #222;
    color: #fff;
}

.ttip_nt .tt_txt {
    background: #383838;
    color: #fff;
    display: inline-block;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.tooltip_top:before {
    border-top-color: #383838;
}

body.rtl .tooltip_right:before {
    border-left-color: #383838;
}

body .tooltip_right:before {
    border-right-color: #383838;
}

.ntheader .nt_menu > li > a, .ntheader .nt_action > a, .nt_action .ssw-topauth .push_side, .ntheader .nt_action > div > a, .ntheader .sp_header_mid .nt-social a, .ntheader .cus_txt_h, .ntheader .header_categories, .ntheader .branding > a, .ntheader .icon_cart .ch_tt_price {
    color: #222;
}

.push-menu-btn > svg {
    fill: #222;
}

.ntheader .nt_menu > li.has-children > a > i {
    color: rgba(34, 34, 34, 0.8);
}

.ntheader .nt_menu > li.has-children > a:after {
    color: rgba(34, 34, 34, 0.45);
}

.sp_header_mid {
    background-color: #fff;
}

.ntheader.live_stuck .push-menu-btn > svg {
    fill: #222;
}

.ntheader.live_stuck .sp_header_mid {
    background-color: #fff;
}

.ntheader.live_stuck .nt_menu > li > a, .ntheader.live_stuck .nt_action > a, .ntheader.live_stuck .nt_action .ssw-topauth .push_side, .ntheader.live_stuck .nt_action > div > a, .ntheader.live_stuck .sp_header_mid .nt-social a, .ntheader.live_stuck .cus_txt_h, .ntheader.live_stuck .header_categories, .ntheader.live_stuck .branding > a {
    color: #222;
}

.ntheader.live_stuck .nt_menu > li.has-children > a > i {
    color: rgba(34, 34, 34, 0.8);
}

.ntheader.live_stuck .nt_menu > li.has-children > a:after {
    color: rgba(34, 34, 34, 0.45);
}

.nt_action .tcount, .toolbar_count {
    background-color: #000000;
    color: #ffffff;
}

input[type="submit"]:hover, button:hover, a.button:hover, .address-edit-toggle:focus {
    color: #fff;
}

#ld_cl_bar, .ld_bar_search, .ld_cart_bar {
    background: #00badb;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    transition: width 0.25s ease-in-out;
    pointer-events: none;
    opacity: 0;
}

@media (min-width: 1025px) {
    .wrapper_cus .container, .wrapper_cus #ntheader .container, .wrapper_cus .caption-w-1, .wrapper_boxed .container, .wrapper_boxed #ntheader .container, .wrapper_boxed .caption-w-1 {
        max-width: 1420px;
    }

    body {
        background-color: #fff;
    }

    #nt_wrapper {
        background-color: #fff;
    }

    .css_mb {
        display: block;
    }
}

/***********************************
* Banner section
************************************/

.thema-fashion-nine__promotion {
    margin: 0 auto 80px;
}

.thema-fashion-nine__promotion .nt_promotion h3,
.thema-fashion-nine__promotion .nt_promotion h4 {
    color: #ffffff
}

.thema-fashion-nine__promotion .nt_promotion > a:after {
    background-color: #000000;
    opacity: 0.0
}

.thema-fashion-nine__promotion .item__position {
    padding-top: 52.63157894736842%
}

@media only screen and (max-width: 767px) {
    .thema-fashion-nine__promotion {
        margin: 0 auto 60px;
    }
}

.search_header > .row{
    width: 100%;
}

.search_header > i{
    font-size: 32px;
    height: fit-content;
    margin-left: 30px
}

.search_header__submit{
    font-size: 32px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    width: fit-content !important;
    padding: 0 5px;
    margin: 0 !important;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    color: #222;
    border: none;
}

.search_header__input{
    border: none !important;
    box-sizing: border-box;
    padding: 0 0 0 10px !important;
}

.single-product-content{
    padding: 20px;
}

.frm_search_input{
    border: 1px solid #e3e3e3;
}

.product-quickview .gecko-scroll-content-quick{
    display: flex;
}

.product-quickview .gecko-scroll-content-quick > div{
    height: fit-content;
}

.product-quickview .product-price{
    font-size: 18px;
    margin: 10px 0
}

#cart-form_qs .product-details-quantity{
    width: 100%
}

.mfp-close:after{
    content: none !important;
}

.mfp-close{
    font-size: 32px !important;
    color: black;
    cursor: pointer;
    outline: none;
    z-index: 1046;
    box-shadow: none;
    position: fixed;
    top: 0;
    right: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    padding: 0;
    mix-blend-mode: normal;
    margin: 0 !important;
    font-style: normal;
    font-weight: 300;
    min-height: 0;
    width: 50px;
    -webkit-backface-visibility: hidden;
    height: 50px;
    line-height: 50px;
    font-family: Arial, monospace;
    transition: opacity .3s, transform .3s;
    transform: translateY(50%) translateZ(1px);
}

#content_quickview, .sp-content-help{
    max-width: 900px;
    position: relative;
    background-color: #fff;
    overflow: hidden;
    margin: auto;
}

#content_quickview h3{
    text-align: center;
}

#content_quickview .qs_imgs_i{
    display: flex;
    justify-content: center;
}

#content_quickview :is(.quantity, .btn-cart){
    min-width: 200px;
    width: 200px;
    margin: 5px 0 !important;
}

/***********************************
* Blog section
************************************/

.thema-section_type_featured_blog .container {
    margin: 0 auto 85px;
}

@media only screen and (max-width: 767px) {
    .thema-section_type_featured_blog .container {
        margin: 0 auto 60px;
    }
}

/****************************************
*! END
*****************************************/

#nt_search_canvas.act_opened{
    height: fit-content;
}

.contact_sss_link_div{
    background-color: #56cfe1;
}

.contact_sss_link_div :is(span, p){
    color: #ffffff !important;
}

.contact_sss_link_div :is(h3, a){
    color: #ffffff;
}

.contact_bize_ulasin_div, .tt_txt{
    background-color: #31b3c6 !important;
}

.iletisim-child-header h3{
    color: #297480;
}

#cart-form_qs .product-details-action button{
    margin: 0 auto;
}

.swal2-cancel{
    border: none !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 5px 25px !important;
    border-radius: 30px !important;
    min-width: 160px !important;
    min-height: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.btn, .contact-container button, .btn-dark, .btn-product, .sepet_but, .r--button, .r--submit, .swal2-confirm, #loginSubmitBtn, .account-create-container-button button, #verifyBtn{
    border: none !important;
    background-color: #31b3c6 !important;
    color: white !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 5px 25px !important;
    border-radius: 30px !important;
    min-width: 160px !important;
    min-height: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

:is(.btn:not(.modal-content .close), .contact-container button, .btn-dark, .btn-product, .sepet_but, .r--button, .r--submit, .swal2-confirm, #loginSubmitBtn, .account-create-container-button button):hover{
    background-color: #47daef !important;
}

.form-control, .select2-container--default .select2-selection--single, .qty, .quantity, .nt_add_w, .ttip_nt.tooltip_top_left, .btn_pnav_prev, .btn_pnav_next, .r--grid-item, .flickity-prev-next-button, input.email, input.password, .social-btn, .r--write-product .r--write-input :is(input, textarea), .select2-search__field, .thema_dropdown_options, .installmentBox, .address-list .item, .frm_search_input{
    border-color: #c1c1c1 !important;
    border-radius: 2rem !important;
}

.r--write-product, .r--write-input :is(input, textarea), .panel, #content_quickview.pp_qs, #content_quickview img{
    border-color: #c1c1c1 !important;
    border-radius: .5em !important;
    overflow: hidden;
}

.select2-selection__rendered{
    padding: 0 !important;
}

.select-custom:has(.select2-container--open) .select2-selection--single{
    border-radius: 1.3em 1.3em 0 0 !important;
    border-bottom: 0
}

.select2-dropdown{
    border-radius: 0 0 2em 2em !important;
    overflow: hidden;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    margin-right: 10px;
    margin-left: auto;
}

.card{
    border-color: #c1c1c1 !important;
}

.tab_title_block a{
    border-radius: 30px !important;
}

option:first-of-type {
    border-radius: 30px 30px 0 0 !important;
}

option:last-of-type {
    border-radius: 0 0 30px 30px !important;
}

.flickity-prev-next-button{
    border: 1px solid #31b3c6 !important;
    color: #31b3c6 !important;
    top: calc(50% - 20px);
    top: -webkit-calc(50% - 20px);
    border-radius: 50%;
    padding: 0;
    background-color: transparent;
}

:is(.flickity-prev-next-button, .btn_pnav_prev, .btn_pnav_next):hover{
    border-color: #31b3c6 !important;
    background-color: #31b3c6 !important;
    color: #fff !important;
}

.flickity-prev-next-button:before{
    font-size: 18px;
    font-weight: 900;
    display: block;
    content: "\f104";
    font-family: 'Line Awesome Free';
    width: 36px;
    height: 36px;
    line-height: 36px;
}

.mfp-content > div, #nt_search_canvas, .cat_grid_item__wrapper, .wrap_txt_ship, .ins_content_wrap{
    border-radius: 5px !important;
}

.cus.sub-menu{
    border-radius: 0 0 10px 10px
}

.search_header .la-close{
    color: #222;
    cursor: pointer;
}

.filler-img-container{
    position: relative;
}

.filler-img-container .filler-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    object-fit: cover;
}

.wishlistadd{
    color: #31b3c6 !important;
    font-size: 18px !important;
    font-family: "Line Awesome Free" !important;
    font-style: normal !important;
}

.tooltip_right:before{
    border-right-color: #31b3c6 !important;
}

.nt_add_w a:not(a[data-wish-list="1"]){
    color: #222 !important;
}

.nt_add_w:has(a[data-wish-list="1"]), .bank-list .item.active{
    border-color: #31b3c6 !important;
}

input[type="radio"]{
    padding: 0 !important;
    border-radius: 100% !important;
}

input[type="radio"]:checked, .cart .form-check-input:checked, .address_edit_div .form-check-input:checked, .form-check-input:checked{
    outline-color: #31b3c6 !important;
    background-color: #31b3c6 !important;
    outline: none !important;
}

.box, .summary:not(.entry-summary), .contactWrapper .form, .swal2-popup, .product-cart-list{
    overflow: hidden;
    border-radius: 30px !important;
    border: 1px solid #ddd !important;
}

.product-cart-list :is(table, td, tr, .cart_items){
    border: 0 !important;
}

.product-cart-list .quantity:has(.cart-qty:focus){
    border-color: #31b3c6 !important;
    border-width: 2px
}

.bank-list .item, .installmentBox.active{
    border-radius: 2rem 2rem 0 2rem;
}

.greenTriangle{
    border-color: transparent transparent #31b3c6 !important;
}

.summary-title{
    border-bottom: none !important;
}

.table.table-summary tbody td {
     font-size: 14px !important;
}

.page_cart_info img{
    width: 110px !important;
    max-width: 110px !important;
    object-fit: contain;
    object-position: 0 0;
}

.alert-wrapper{
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 30px
}

.error-title-text .btn{
    max-width: 160px !important;
    margin: 0 auto;
}

#thema-section-toolbar_mobile a{
    font-size: 24px
}

#nt_menu_canvas .menu-item a i{
    margin-right: 10px;
    font-size: 24px;
}

#nt_menu_canvas .menu-item a svg{
    margin-right: 10px;
    font-size: 22px;
}

body,
.nt_full > .row > div {
    padding: 0 !important
}

#nt_menu_canvas .close_pp{
    border-radius: 0 0 10px 0;
    background-color: rgba(0, 0, 0, .75)
}

.row{
    margin: 0;
}

.media-link{
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(96deg) brightness(108%) contrast(102%);
}

.alert{
    background-color: rgba(49, 179, 198, 0.1);
    color: #31b3c6;
    border: 1px solid #31b3c6;
    font-size: 1rem;
    font-weight: bolder;
    padding: 5px 5px;
    margin: 10px 0;
    border-radius: 30px;
    text-align: center;
    min-width: 200px;
    padding: 5px 5px;
}

.badge{
    background-color: rgba(49, 179, 198, 0.1) !important;
    color: #31b3c6 !important;
    border: 1px solid #31b3c6 !important;
    border-radius: 30px !important;
}

.greenTriangle i {
    left: -15px !important;
    top: 8px !important;
    font-size: 16px !important;
}

article.post_nt_loop > .pr.oh, .blog_main_cont img, .type_collection_list .cat_grid_item__content, :is(.product-image, .product-images) .lazyloaded{
    border-radius: 10px;
}

.product-images .nt_slider{
    padding: 10px 0 0 0;
}

.product-images .n-item{
    overflow: visible;
}

.post-content,
.post-content p{
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

:is(article.post_nt_loop, .blog-main-box article) h4 p{
    margin-bottom: 1rem !important;
}

.blog_main_cont img{
    margin: 0 20px 20px 0
}

.qty{
    color: black !important;
}

.hover_button, .hover_button > a{
    border-radius: 30px;
    overflow: hidden;
}

.modal-content .close{
    background-color: transparent !important;
    color: black !important;
    min-width: 50px !important;
}

.modal-content .close:hover {
    background-color: transparent !important;
    color: #31b3c6 !important;
}

.modal-title{
    margin-top: 0 !important;
}

.modal-footer .btn{
    flex-direction: row-reverse
}

:is(.adress-list-responsive, .modal-footer) svg{
    margin-right: 10px
}

:is(.address-list, .login-button-container) svg{
    margin-left: 10px
}

.page-content{
    padding-top: 0 !important;
}

.urun-child-right-section {
    top: 0;
    min-width: 34vw;
}

.variations_button > div.flex.wrap, .sku_wrapper{
    display: flex !important;
}

.t4_show .flickity-viewport{
    padding: 20px 0 20px 0;
    box-sizing: content-box;
}

/*! TEMP  */

.all-blog{
    color: #222;
    font-family: sans-serif !important;
    text-align: center;
}

.blog-main-box{
    width: 100%;
    overflow: hidden;
    display: flex;
    max-width: 1440px;
}

.blog-main-box :is(a, .article-box-text){
    font-family: sans-serif !important;
}

.blog-main-box .blog-article{
    min-width: 33.3333% !important
}

.blogLink-img{
    border-radius: 1em !important;
}

#thema-section-wishlist_page{
    padding-top: 20px
}

.container_cat{
    margin-top: 30px !important
}

.product-cart-list{
    margin-bottom: 15px;
}

.box-address{
    margin-top: 15px !important;
}

.payment-sticky-custom{
    row-gap: 15px !important;
}

.error-title-text{
    margin: 50px 0 !important;
    font-family: sans-serif !important;
}

.error-title-text .error-title{
    font-weight: normal;
    font-size: 2rem;
}

.mfp-content:has(.thema-quick-shop){
    width: fit-content !important;
}

.product-image .nt_add_w{
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 3px;
    border-radius: 50%;
    opacity: 0;
    box-sizing: content-box;
    cursor: pointer;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
}

.urun-child-right-section .detay_mid{
    top: 350px !important;
}

.sku.value {
    margin-left: 10px;
    font-size: 14px;
}
.verification-code-info {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    color: #6c6c6c;
}

.verification-code-error {
    padding: 0.25rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    color: #ca3a3a;
}

.verification-code-info p {
    margin: 0;
}

.verification-code-inputs {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.verification-code-inputs::before {
    content: '';
    background: black;
    width: 6px;
    height: 1px;
    position: absolute;
}

.verification-code-inputs input {
    display: block;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 1.4rem;
    min-width: 0;
    border-radius: 5px !important;
}

.verification-code-inputs input:focus {
    border-color: #31b3c6;
}

.verification-code-inputs input:last-child {
    margin-right: 0;
}

.verification-modal-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

#verifyBtn {
    background: transparent;
    border: 1px solid black;
    color: black;
    padding: 10px 20px;
    transition: .3s;
    position: relative;
    left: 100%;
    transform: translateX(-100%);
}

#verifyBtn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#verifyBtn:hover {
    background: #31b3c6;
    border-color: #31b3c6;
    color: white;
}

.r--header{
    display: flex !important;
    justify-content: center;
}

.r--overview{
    width: fit-content !important
}

.form-control[type=datetime-local]{
    height: 40px
}

.address-list .item{
    height: unset !important;
}

.search_header{
    border-radius: .5em;
    display: flex;
    align-items: center;
}

.type_collection_list .cat_grid_item__overlay{
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.sp-pr-gallery__img,
.product-image .main-img {
    background-size: contain !important;
    background-position: center !important;
}

.login-button-container .d-flex{
    display: none !important;
}
.wrap_ins_img img{
    aspect-ratio: 1/1;
}
/*
.post_nt_loop{
    top: 50%;
    transform: translateY(-50%);
}
.post_nt_loop img{
    min-height: 200px;
    max-height: 200px;
}
*/

