/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translate3d(0, 0, 0)
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }

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

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes pulse {

    0%,
    to {
        transform: scale3d(1, 1, 1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
}

@keyframes rubberBand {

    0%,
    to {
        transform: scale3d(1, 1, 1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }
}

@keyframes shake {

    0%,
    to {
        transform: translate3d(0, 0, 0)
    }

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

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

@keyframes headShake {

    0%,
    50% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
}

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

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

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

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

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

@keyframes tada {

    0%,
    to {
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

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

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

@keyframes wobble {

    0%,
    to {
        transform: none
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
}

@keyframes jello {

    0%,
    11.1%,
    to {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        transform: skewX(.39063deg) skewY(.39063deg)
    }

    88.8% {
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        transform: scale3d(.9, .9, .9)
    }

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

    80% {
        transform: scale3d(.97, .97, .97)
    }

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

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }

    75% {
        transform: translate3d(0, -10px, 0)
    }

    90% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: none
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }

    75% {
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        transform: translate3d(5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        transform: translate3d(10px, 0, 0)
    }

    90% {
        transform: translate3d(-5px, 0, 0)
    }

    to {
        transform: none
    }
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    75% {
        transform: translate3d(0, 10px, 0)
    }

    90% {
        transform: translate3d(0, -5px, 0)
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes elementor-animation-pulse {
    25% {
        transform: scale(1.1)
    }

    75% {
        transform: scale(.9)
    }
}

@keyframes elementor-animation-pulse-banner {
    25% {
        transform: scale(1.1)
    }

    75% {
        transform: scale(1)
    }
}

@keyframes elementor-animation-pulse-grow {
    to {
        transform: scale(1.1)
    }
}

@keyframes elementor-animation-pulse-shrink {
    to {
        transform: scale(.9)
    }
}

@keyframes elementor-animation-push {
    50% {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

@keyframes elementor-animation-pop {
    50% {
        transform: scale(1.2)
    }
}

@keyframes elementor-animation-bob {

    0%,
    to {
        transform: translateY(-8px)
    }

    50% {
        transform: translateY(-4px)
    }
}

@keyframes elementor-animation-bob-float {
    to {
        transform: translateY(-8px)
    }
}

@keyframes elementor-animation-hang {

    0%,
    to {
        transform: translateY(8px)
    }

    50% {
        transform: translateY(4px)
    }
}

@keyframes elementor-animation-hang-sink {
    to {
        transform: translateY(8px)
    }
}

@keyframes elementor-animation-wobble-vertical {
    16.65% {
        transform: translateY(8px)
    }

    33.3% {
        transform: translateY(-6px)
    }

    49.95% {
        transform: translateY(4px)
    }

    66.6% {
        transform: translateY(-2px)
    }

    83.25% {
        transform: translateY(1px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes elementor-animation-wobble-horizontal {
    16.65% {
        transform: translateX(8px)
    }

    33.3% {
        transform: translateX(-6px)
    }

    49.95% {
        transform: translateX(4px)
    }

    66.6% {
        transform: translateX(-2px)
    }

    83.25% {
        transform: translateX(1px)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes elementor-animation-wobble-to-bottom-right {
    16.65% {
        transform: translate(8px, 8px)
    }

    33.3% {
        transform: translate(-6px, -6px)
    }

    49.95% {
        transform: translate(4px, 4px)
    }

    66.6% {
        transform: translate(-2px, -2px)
    }

    83.25% {
        transform: translate(1px, 1px)
    }

    to {
        transform: translate(0, 0)
    }
}

@keyframes elementor-animation-wobble-to-top-right {
    16.65% {
        transform: translate(8px, -8px)
    }

    33.3% {
        transform: translate(-6px, 6px)
    }

    49.95% {
        transform: translate(4px, -4px)
    }

    66.6% {
        transform: translate(-2px, 2px)
    }

    83.25% {
        transform: translate(1px, -1px)
    }

    to {
        transform: translate(0, 0)
    }
}

@keyframes elementor-animation-wobble-top {
    16.65% {
        transform: skew(-12deg)
    }

    33.3% {
        transform: skew(10deg)
    }

    49.95% {
        transform: skew(-6deg)
    }

    66.6% {
        transform: skew(4deg)
    }

    83.25% {
        transform: skew(-2deg)
    }

    to {
        transform: skew(0deg)
    }
}

@keyframes elementor-animation-wobble-bottom {
    16.65% {
        transform: skew(-12deg)
    }

    33.3% {
        transform: skew(10deg)
    }

    49.95% {
        transform: skew(-6deg)
    }

    66.6% {
        transform: skew(4deg)
    }

    83.25% {
        transform: skew(-2deg)
    }

    to {
        transform: skew(0deg)
    }
}

@keyframes elementor-animation-wobble-skew {
    16.65% {
        transform: skew(-12deg)
    }

    33.3% {
        transform: skew(10deg)
    }

    49.95% {
        transform: skew(-6deg)
    }

    66.6% {
        transform: skew(4deg)
    }

    83.25% {
        transform: skew(-2deg)
    }

    to {
        transform: skew(0deg)
    }
}

@keyframes elementor-animation-buzz {
    50% {
        transform: translateX(3px) rotate(2deg)
    }

    to {
        transform: translateX(-3px) rotate(-2deg)
    }
}

@keyframes elementor-animation-buzz-out {

    10%,
    30% {
        transform: translateX(3px) rotate(2deg)
    }

    20%,
    40% {
        transform: translateX(-3px) rotate(-2deg)
    }

    50%,
    70% {
        transform: translateX(2px) rotate(1deg)
    }

    60%,
    80% {
        transform: translateX(-2px) rotate(-1deg)
    }

    90% {
        transform: translateX(1px) rotate(0deg)
    }

    to {
        transform: translateX(-1px) rotate(0deg)
    }
}

@keyframes checkbox-bounce {

    0%,
    to {
        transform: scale(1)
    }

    50% {
        transform: scale(.8)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes animArrow {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(3px)
    }
}

@keyframes line-scale {

    0%,
    to {
        transform: scaley(1)
    }

    50% {
        transform: scaley(.4)
    }
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #745f5f;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #745f5f;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

*,
::after,
::before {
    box-sizing: border-box
}

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

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-color: #e5e5e5
}

address,
dl,
hr,
ol,
ul {
    margin-bottom: 1rem
}

dl,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin-top: 0
}

abbr[data-original-title],
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none
}

address {
    font-style: normal;
    line-height: inherit
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote,
figure {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.3em
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    color: var(--color-body-link, #666)
}

a:hover {
    color: #0056b3;
    text-decoration: underline
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

samp {
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
    display: block;
    font-size: 87.5%;
    color: #212529
}

img,
svg {
    vertical-align: middle
}

img {
    border-style: none
}

svg {
    overflow: hidden
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem
}

.h1,
h1 {
    font-size: 2.5rem
}

.h2,
h2 {
    font-size: 2rem;
    margin-bottom: 1rem;  /* Ajustez l'espace après le H2 */
    margin-top: 1rem

}

.h3,
h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.h4,
h4 {
    font-size: 1.5rem
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

.display-1,
.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: 6rem;
    line-height: 1.2
}

.display-2,
.display-3,
.display-4 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-3,
.display-4 {
    font-size: 4.5rem
}

.display-4 {
    font-size: 3.5rem
}

.small,
small {
    font-size: .875em;
    font-weight: 400
}

.mark,
mark {
    padding: .2em;
    background-color: #fcf8e3
}

.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote-footer {
    display: block;
    font-size: .875em;
    color: #6c757d
}

.blockquote-footer::before {
    content: "\2014\00A0"
}

.img-fluid,
.img-thumbnail,
.rte-content img,
embed,
img,
object {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem
}

#checkout-addresses-step .address-item .address-footer a,
.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: 90%;
    color: #6c757d
}

code,
kbd {
    font-size: 87.5%
}

code {
    color: #e83e8c;
    word-wrap: break-word
}

a>code,
pre code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700
}

pre code {
    font-size: inherit;
    word-break: normal
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

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

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px
}

.card>hr,
.no-gutters {
    margin-right: 0;
    margin-left: 0
}

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

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-xs-12 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px
}

.col-auto {
    position: relative;
    padding-right: 10px;
    padding-left: 10px
}

.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.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-auto {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px
}

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

.row-cols-1>* {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.row-cols-2>* {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.row-cols-3>* {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.row-cols-4>* {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.row-cols-5>* {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.row-cols-6>* {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

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

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

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

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

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

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

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

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

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

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

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

.col-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

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

.order-first {
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529
}

.table td,
.table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #e5e5e5
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #e5e5e5
}

.table tbody+tbody {
    border-top: 2px solid #e5e5e5
}

.table-sm td,
.table-sm th {
    padding: .3rem
}

.table-bordered,
.table-bordered td,
.table-bordered th,
table#product_comparison {
    border: 1px solid #e5e5e5
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px
}

.table-borderless tbody+tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th,
.table-dark.table-bordered,
.table-responsive>.table-bordered {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, .075)
}

.table-primary,
.table-primary>td,
.table-primary>th {
    background-color: #b8daff
}

.table-primary tbody+tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
    border-color: #7abaff
}

.table-hover .table-primary:hover,
.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
    background-color: #9fcdff
}

.table-secondary,
.table-secondary>td,
.table-secondary>th {
    background-color: #d6d8db
}

.table-secondary tbody+tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
    border-color: #b3b7bb
}

.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
    background-color: #c8cbcf
}

.table-success,
.table-success>td,
.table-success>th {
    background-color: #c3e6cb
}

.table-success tbody+tbody,
.table-success td,
.table-success th,
.table-success thead th {
    border-color: #8fd19e
}

.table-hover .table-success:hover,
.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
    background-color: #b1dfbb
}

.table-info,
.table-info>td,
.table-info>th {
    background-color: #bee5eb
}

.table-info tbody+tbody,
.table-info td,
.table-info th,
.table-info thead th {
    border-color: #86cfda
}

.table-hover .table-info:hover,
.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
    background-color: #abdde5
}

.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #ffeeba
}

.table-warning tbody+tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
    border-color: #ffdf7e
}

.table-hover .table-warning:hover,
.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
    background-color: #ffe8a1
}

.table-danger,
.table-danger>td,
.table-danger>th {
    background-color: #f5c6cb
}

.table-danger tbody+tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
    border-color: #ed969e
}

.table-hover .table-danger:hover,
.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
    background-color: #f1b0b7
}

.table-light,
.table-light>td,
.table-light>th {
    background-color: #fdfdfe
}

.table-light tbody+tbody,
.table-light td,
.table-light th,
.table-light thead th {
    border-color: #fbfcfc
}

.table-hover .table-light:hover,
.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
    background-color: #ececf6
}

.table-dark>td,
.table-dark>th {
    background-color: #c6c8ca
}

.table-dark tbody+tbody {
    border-color: #95999c
}

.table-hover .table-dark:hover,
.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
    background-color: #b9bbbe
}

.table-active,
.table-active>td,
.table-active>th,
.table-hover .table-active:hover,
.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: rgba(0, 0, 0, .075)
}

.table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #e5e5e5
}

.table-dark {
    color: #fff;
    background-color: #343a40
}

.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #454d55
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, .05)
}

.table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, .075)
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

input[type=date].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control,
input[type=time].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

select.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: .9375rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-right: 0;
    padding-left: 0
}

.form-control-sm {
    height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: .9375rem;
    line-height: 1.5;
    border-radius: .3rem
}

#checkout-delivery-step .order-options textarea.form-control,
select.form-control[multiple],
select.form-control[size],
textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.form-row>.col,
.form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #745f5f
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40, 167, 69, .9);
    border-radius: .25rem
}

.form-row>.col>.valid-tooltip,
.form-row>[class*=col-]>.valid-tooltip {
    left: 5px
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
    display: block
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #745f5f;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2328a745%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #745f5f;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-valid,
.was-validated .custom-select:valid {
    border-color: #745f5f;
    padding-right: calc(.75em + 2.3125rem) !important;
    background: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2328a745%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat
}

.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
    border-color: #745f5f;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #745f5f
}

.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip,
.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip {
    display: block
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: #745f5f
}

.custom-control-input.is-valid~.custom-control-label::before,
.custom-file-input.is-valid~.custom-file-label,
.was-validated .custom-control-input:valid~.custom-control-label::before,
.was-validated .custom-file-input:valid~.custom-file-label {
    border-color: #745f5f
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    border-color: #745f5f;
    background-color: #745f5f
}

.custom-control-input.is-valid:focus~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before {
    border-color: #745f5f
}

.custom-file-input.is-valid:focus~.custom-file-label,
.was-validated .custom-file-input:valid:focus~.custom-file-label {
    border-color: #745f5f;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, .9);
    border-radius: .25rem
}

.form-row>.col>.invalid-tooltip,
.form-row>[class*=col-]>.invalid-tooltip {
    left: 5px
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
    display: block
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-invalid,
.was-validated .custom-select:invalid {
    border-color: #dc3545;
    padding-right: calc(.75em + 2.3125rem) !important;
    background: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat
}

.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545
}

.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip,
.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid~.custom-control-label,
.was-validated .custom-control-input:invalid~.custom-control-label {
    color: #dc3545
}

.custom-control-input.is-invalid~.custom-control-label::before,
.custom-file-input.is-invalid~.custom-file-label,
.was-validated .custom-control-input:invalid~.custom-control-label::before,
.was-validated .custom-file-input:invalid~.custom-file-label {
    border-color: #dc3545
}

.custom-control-input.is-invalid:checked~.custom-control-label::before,
.was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d
}

.custom-control-input.is-invalid:focus~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before {
    border-color: #dc3545
}

.custom-file-input.is-invalid:focus~.custom-file-label,
.was-validated .custom-file-input:invalid:focus~.custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center
}

.form-inline .form-check,
input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.btn.disabled,
.btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn-secondary,
.btn-tertiary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover,
.btn-tertiary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-secondary.focus,
.btn-secondary:focus,
.btn-tertiary:focus,
.focus.btn-tertiary {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled,
.disabled.btn-tertiary {
    border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-tertiary:not(:disabled):not(.disabled).active,
.btn-tertiary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle,
.show>.dropdown-toggle.btn-tertiary {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-tertiary:not(:disabled):not(.disabled).active:focus,
.btn-tertiary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus,
.show>.dropdown-toggle.btn-tertiary:focus {
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-success {
    color: #fff;
    background-color: #745f5f;
    border-color: #745f5f
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34
}

.btn-success.focus,
.btn-success:focus {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #745f5f;
    border-color: #745f5f
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b
}

.btn-info.focus,
.btn-info:focus {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}

.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00
}

.btn-warning.focus,
.btn-warning:focus {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
    box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5)
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5)
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130
}

.btn-danger.focus,
.btn-danger:focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5)
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5)
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5
}

.btn-light.focus,
.btn-light:focus {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5)
}

.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5)
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124
}

.btn-dark.focus,
.btn-dark:focus {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-success {
    color: #745f5f;
    border-color: #745f5f
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #745f5f;
    border-color: #745f5f
}

.btn-outline-success.focus,
.btn-outline-success:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #745f5f;
    background-color: transparent
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #745f5f;
    border-color: #745f5f
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info.focus,
.btn-outline-info:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show>.btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light.focus,
.btn-outline-light:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: underline
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
    pointer-events: none
}

.btn-group-lg>.btn,
.btn-lg {
    padding: .5rem 1rem;
    font-size: .9375rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-group-sm>.btn,
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: .5rem
}

.fade {
    transition: opacity .15s linear
}

.fade:not(.show),
.order_steps .step.reachable.complete:not(.current):hover .icon {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

.collapsing.width {
    width: 0;
    height: auto;
    transition: width .35s ease
}

.collapsing,
.dropdown,
.dropleft,
.dropright,
.dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after,
.dropleft .dropdown-toggle:empty::after,
.dropright .dropdown-toggle:empty::after,
.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropright .dropdown-toggle::after,
.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropright .dropdown-toggle::after {
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    vertical-align: 0
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropleft .dropdown-toggle::after {
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    display: none
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    margin-right: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent;
    vertical-align: 0
}

.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=top] {
    right: auto;
    bottom: auto
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    background-color: #e9ecef
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1.5rem;
    color: #212529
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.btn-group-vertical>.btn:hover,
.btn-group>.btn:hover {
    z-index: 1
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus {
    z-index: 1
}

.btn-toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

.dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
    margin-left: 0
}

.dropleft .dropdown-toggle-split::before {
    margin-right: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0
}

.btn-group-toggle>.btn input[type=checkbox],
.btn-group-toggle>.btn input[type=radio],
.btn-group-toggle>.btn-group>.btn input[type=checkbox],
.btn-group-toggle>.btn-group>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0
}

.input-group>.custom-file+.custom-file,
.input-group>.custom-file+.custom-select,
.input-group>.custom-file+.form-control,
.input-group>.custom-select+.custom-file,
.input-group>.custom-select+.custom-select,
.input-group>.custom-select+.form-control,
.input-group>.form-control+.custom-file,
.input-group>.form-control+.custom-select,
.input-group>.form-control+.form-control,
.input-group>.form-control-plaintext+.custom-file,
.input-group>.form-control-plaintext+.custom-select,
.input-group>.form-control-plaintext+.form-control {
    margin-left: -1px
}

.input-group>.custom-file .custom-file-input:focus~.custom-file-label,
.input-group>.custom-select:focus,
.input-group>.form-control:focus {
    z-index: 3
}

.input-group>.custom-file .custom-file-input:focus {
    z-index: 4
}

.input-group>.custom-select:not(:first-child),
.input-group>.form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group>.custom-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.input-group>.custom-file:not(:last-child) .custom-file-label,
.input-group>.custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,
.input-group:not(.has-validation)>.custom-select:not(:last-child),
.input-group:not(.has-validation)>.form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,
.input-group.has-validation>.custom-select:nth-last-child(n+3),
.input-group.has-validation>.form-control:nth-last-child(n+3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-append,
.input-group-prepend {
    display: -ms-flexbox;
    display: flex
}

.input-group-append .btn,
.input-group-prepend .btn {
    position: relative;
    z-index: 2
}

.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
    z-index: 3
}

.input-group-prepend {
    margin-right: -1px
}

.input-group-append,
.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.btn,
.input-group-append .input-group-text+.input-group-text,
.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-prepend .input-group-text+.input-group-text {
    margin-left: -1px
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-text input[type=checkbox],
.input-group-text input[type=radio] {
    margin-top: 0
}

.input-group-lg>.custom-select,
.input-group-lg>.form-control:not(textarea) {
    height: calc(1.5em + 1rem + 2px)
}

.input-group-lg>.custom-select,
.input-group-lg>.form-control,
.input-group-lg>.input-group-append>.btn,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-prepend>.input-group-text {
    padding: .5rem 1rem;
    font-size: .9375rem;
    line-height: 1.5;
    border-radius: .3rem
}

.input-group-sm>.custom-select,
.input-group-sm>.form-control:not(textarea) {
    height: calc(1.5em + .5rem + 2px)
}

.input-group-sm>.custom-select,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group-lg>.custom-select,
.input-group-sm>.custom-select {
    padding-right: 1.75rem
}

.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,
.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,
.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,
.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    print-color-adjust: exact
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff
}

.custom-control-input:disabled~.custom-control-label,
.custom-control-input[disabled]~.custom-control-label {
    color: #6c757d
}

.custom-control-input:disabled~.custom-control-label::before,
.custom-control-input[disabled]~.custom-control-label::before {
    background-color: #e9ecef
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

.custom-control-label::after,
.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: ""
}

.custom-control-label::before {
    pointer-events: none;
    background-color: #fff;
    border: 1px solid #adb5bd
}

.custom-control-label::after {
    background: 50%/50% 50% no-repeat
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem;
    border: 2px solid #710e21;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23fff%27 d=%27M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z%27/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%274%27 viewBox=%270 0 4 4%27%3e%3cpath stroke=%27%23fff%27 d=%27M0 2h4%27/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
    border: 1px solid #710e2170;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e")
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-switch {
    padding-left: 2.25rem
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: .5rem
}

.custom-switch .custom-control-label::after {
    top: calc(.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: .5rem;
    transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    transform: translateX(.75rem)
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: .75rem;
    background-image: none
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef
}

.custom-select::-ms-expand {
    display: none
}

.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

.custom-select-sm {
    height: calc(1.5em + .5rem + 2px);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: .9375rem
}

.custom-file,
.custom-file-input {
    position: relative;
    width: 100%;
    height: calc(1.5em + .75rem + 2px)
}

.custom-file {
    display: inline-block;
    margin-bottom: 0
}

.custom-file-input {
    z-index: 2;
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-input:focus~.custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-file-input:disabled~.custom-file-label,
.custom-file-input[disabled]~.custom-file-label {
    background-color: #e9ecef
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse"
}

.custom-file-input~.custom-file-label[data-browse]::after {
    content: attr(data-browse)
}

.custom-file-label,
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057
}

.custom-file-label {
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    overflow: hidden;
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.custom-range:focus {
    outline: 0
}

.custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-range::-moz-focus-outer {
    border: 0
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    appearance: none
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: .2rem;
    margin-left: .2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    appearance: none
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-ms-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-moz-range-track {
    cursor: default
}

.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background-color: transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #007bff
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    position: relative;
    padding: .5rem 1rem
}

.navbar,
.navbar .container,
.navbar .container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .54688rem;
    padding-bottom: .54688rem;
    margin-right: 1rem;
    font-size: .9375rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none
}

.navbar-text {
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: .9375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50%/100% 100% no-repeat
}

.navbar-nav-scroll {
    max-height: 75vh;
    overflow-y: auto
}

.navbar-expand {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
    padding-right: 0;
    padding-left: 0
}

.navbar-expand .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand>.container,
.navbar-expand>.container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5)
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, .7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, .3)
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280,0,0,0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, .5)
}

.navbar-dark .navbar-brand {
    color: #fff
}

.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .5)
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, .75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, .25)
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-text a {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, .1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255,255,255,0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, .5)
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
    border-top: 0
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem
}

.card-title {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0
}

#left-column .block .products-block.left .products.grid .product-miniature:last-child .product-container,
#right-column .block .products-block.left .products.grid .product-miniature:last-child .product-container,
.card-text:last-child,
.rte-content ol:last-child,
.rte-content p:last-child,
.rte-content ul:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 1.25rem
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125)
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
    margin-bottom: -.75rem;
    border-bottom: 0
}

.card-header-pills,
.card-header-tabs {
    margin-right: -.625rem;
    margin-left: -.625rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom,
.card-img-top {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-deck .card,
.card-group>.card {
    margin-bottom: 10px
}

.card-columns .card {
    margin-bottom: .75rem
}

.accordion {
    overflow-anchor: none
}

.accordion>.card {
    overflow: hidden
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.accordion>.card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: -1px
}

.breadcrumb,
.pagination {
    list-style: none;
    border-radius: .25rem
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    background-color: #e9ecef
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/"
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    padding-left: 0
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: .9375rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

a.badge:focus,
a.badge:hover {
    text-decoration: none
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.badge-primary {
    color: #fff;
    background-color: #007bff
}

a.badge-primary:focus,
a.badge-primary:hover {
    color: #fff;
    background-color: #0062cc
}

a.badge-primary.focus,
a.badge-primary:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d
}

a.badge-secondary:focus,
a.badge-secondary:hover {
    color: #fff;
    background-color: #545b62
}

a.badge-secondary.focus,
a.badge-secondary:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.badge-success {
    color: #fff;
    background-color: #745f5f
}

a.badge-success:focus,
a.badge-success:hover {
    color: #fff;
    background-color: #1e7e34
}

a.badge-success.focus,
a.badge-success:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.badge-info {
    color: #fff;
    background-color: #17a2b8
}

a.badge-info:focus,
a.badge-info:hover {
    color: #fff;
    background-color: #117a8b
}

a.badge-info.focus,
a.badge-info:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.badge-warning {
    color: #212529;
    background-color: #ffc107
}

a.badge-warning:focus,
a.badge-warning:hover {
    color: #212529;
    background-color: #d39e00
}

a.badge-warning.focus,
a.badge-warning:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.badge-danger {
    color: #fff;
    background-color: #dc3545
}

a.badge-danger:focus,
a.badge-danger:hover {
    color: #fff;
    background-color: #bd2130
}

a.badge-danger.focus,
a.badge-danger:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa
}

a.badge-light:focus,
a.badge-light:hover {
    color: #212529;
    background-color: #dae0e5
}

a.badge-light.focus,
a.badge-light:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.badge-dark {
    color: #fff;
    background-color: #343a40
}

a.badge-dark:focus,
a.badge-dark:hover {
    color: #fff;
    background-color: #1d2124
}

a.badge-dark.focus,
a.badge-dark:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 4rem
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: .75rem 1.25rem;
    color: inherit
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff
}

.alert-primary hr {
    border-top-color: #9fcdff
}

.alert-primary .alert-link {
    color: #002752
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db
}

.alert-secondary hr {
    border-top-color: #c8cbcf
}

.alert-secondary .alert-link {
    color: #202326
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb
}

.alert-success hr {
    border-top-color: #b1dfbb
}

.alert-success .alert-link {
    color: #0b2e13
}

.alert-info {
    color: #f5f5f5;
    background-color: #710e21;
    border-color: #710e21
}

.alert-info hr {
    border-top-color: #abdde5
}

.alert-info .alert-link {
    color: #062c33
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba
}

.alert-warning hr {
    border-top-color: #ffe8a1
}

.alert-warning .alert-link {
    color: #533f03
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb
}

.alert-danger hr {
    border-top-color: #f1b0b7
}

.alert-danger .alert-link {
    color: #491217
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe
}

.alert-light hr {
    border-top-color: #ececf6
}

.alert-light .alert-link {
    color: #686868
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca
}

.alert-dark hr {
    border-top-color: #b9bbbe
}

.alert-dark .alert-link {
    color: #040505
}

.progress,
.progress-bar {
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.progress {
    height: 1rem;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start
}

.media-body {
    -ms-flex: 1;
    flex: 1
}

.list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125)
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px
}

.list-group-horizontal {
    -ms-flex-direction: row;
    flex-direction: row
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px
}

.list-group-flush {
    border-radius: 0
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #004085;
    background-color: #9fcdff
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #383d41;
    background-color: #c8cbcf
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #155724;
    background-color: #b1dfbb
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #0c5460;
    background-color: #abdde5
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #856404;
    background-color: #ffe8a1
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #721c24;
    background-color: #f1b0b7
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #818182;
    background-color: #ececf6
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #1b1e21;
    background-color: #b9bbbe
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

.close:hover {
    color: #000;
    text-decoration: none
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: .75
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0
}

a.close.disabled {
    pointer-events: none
}

.toast {
    -ms-flex-preferred-size: 350px;
    flex-basis: 350px;
    max-width: 350px;
    font-size: .875rem;
    background-color: rgba(255, 255, 255, .85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
    opacity: 0;
    border-radius: .25rem
}

.toast:not(:last-child) {
    margin-bottom: .75rem
}

.toast.showing {
    opacity: 1
}

.toast.show {
    display: block;
    opacity: 1
}

.toast.hide {
    display: none
}

.toast-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, .85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.toast-body {
    padding: .75rem
}

.modal,
.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -moz-min-content;
    height: min-content;
    content: ""
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #e5e5e5;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

.tooltip {
    z-index: 1070;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip,
.tooltip .arrow {
    position: absolute;
    display: block
}

.tooltip .arrow {
    width: .8rem;
    height: .4rem
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-tooltip-auto[x-placement^=top],
.bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=top] .arrow,
.bs-tooltip-top .arrow {
    bottom: 0
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    top: 0;
    border-width: .4rem .4rem 0;
    border-top-color: #000
}

.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-right {
    padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=right] .arrow,
.bs-tooltip-right .arrow {
    left: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
    right: 0;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: #000
}

.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-bottom {
    padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow,
.bs-tooltip-bottom .arrow {
    top: 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    bottom: 0;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000
}

.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-left {
    padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=left] .arrow,
.bs-tooltip-left .arrow {
    right: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
    left: 0;
    border-width: .4rem 0 .4rem .4rem;
    border-left-color: #000
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover,
.popover .arrow {
    position: absolute;
    display: block
}

.popover {
    top: 0;
    left: 0;
    z-index: 1060;
    max-width: 276px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem
}

.popover .arrow {
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem
}

.popover .arrow::after,
.popover .arrow::before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-popover-auto[x-placement^=top],
.bs-popover-top {
    margin-bottom: .5rem
}

.bs-popover-auto[x-placement^=top]>.arrow,
.bs-popover-top>.arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-auto[x-placement^=top]>.arrow::before,
.bs-popover-top>.arrow::before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=top]>.arrow::after,
.bs-popover-top>.arrow::after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #fff
}

.bs-popover-auto[x-placement^=right],
.bs-popover-right {
    margin-left: .5rem
}

.bs-popover-auto[x-placement^=right]>.arrow,
.bs-popover-right>.arrow {
    left: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=right]>.arrow::before,
.bs-popover-right>.arrow::before {
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=right]>.arrow::after,
.bs-popover-right>.arrow::after {
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #fff
}

#order-confirmation #order-details ul li+li,
.bs-popover-auto[x-placement^=bottom],
.bs-popover-bottom {
    margin-top: .5rem
}

.bs-popover-auto[x-placement^=bottom]>.arrow,
.bs-popover-bottom>.arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-auto[x-placement^=bottom]>.arrow::before,
.bs-popover-bottom>.arrow::before {
    top: 0;
    border-width: 0 .5rem .5rem;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=bottom]>.arrow::after,
.bs-popover-bottom>.arrow::after {
    top: 1px;
    border-width: 0 .5rem .5rem;
    border-bottom-color: #fff
}

.bs-popover-auto[x-placement^=bottom] .popover-header::before,
.bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7
}

.bs-popover-auto[x-placement^=left],
.bs-popover-left {
    margin-right: .5rem
}

.bs-popover-auto[x-placement^=left]>.arrow,
.bs-popover-left>.arrow {
    right: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=left]>.arrow::before,
.bs-popover-left>.arrow::before {
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=left]>.arrow::after,
.bs-popover-left>.arrow::after {
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #fff
}

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: .5rem .75rem;
    color: #212529
}

.carousel,
.carousel-inner {
    position: relative
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.carousel-inner {
    width: 100%;
    overflow: hidden
}

.carousel-inner::after,
.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block
}

.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
    transform: translateX(100%)
}

.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50%/100% 100% no-repeat
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z%27/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z%27/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentcolor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    background-color: currentcolor;
    border-radius: 50%;
    opacity: 0;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    background-color: #007bff !important
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #0062cc !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
    background-color: #545b62 !important
}

.bg-success {
    background-color: #E3AF3E !important
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
    background-color: #1e7e34 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #117a8b !important
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
    background-color: #d39e00 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #1d2124 !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #e5e5e5 !important
}

.border-top {
    border-top: 1px solid #e5e5e5 !important
}

.border-right {
    border-right: 1px solid #e5e5e5 !important
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5 !important
}

.border-left {
    border-left: 1px solid #e5e5e5 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #007bff !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #745f5f !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.rounded-sm {
    border-radius: .2rem !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-right,
.rounded-top {
    border-top-right-radius: .25rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important
}

.rounded-right {
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom,
.rounded-left {
    border-bottom-left-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important
}

.rounded-left {
    border-top-left-radius: .25rem !important
}

.rounded-lg {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex,
.menu-top {
    display: -ms-flexbox !important;
    display: flex !important
}

#top-menu,
.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important
}

.float-left,
.float-xs-left {
    float: left !important
}

.float-right,
.float-xs-right {
    float: right !important
}

.float-none,
.float-xs-none {
    float: none !important
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.fixed-bottom,
.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-top {
    top: 0
}

.fixed-bottom {
    bottom: 0
}

@supports (position:sticky) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
}

.shadow-none {
    box-shadow: none !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.vw-100 {
    width: 100vw !important
}

.vh-100 {
    height: 100vh !important
}

.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,
.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,
.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,
.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,
.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2,
.my-n2 {
    margin-top: -.5rem !important
}

.mr-n2,
.mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2,
.my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2,
.mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important
}

.text-justify {
    text-align: justify !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

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

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-lighter {
    font-weight: lighter !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-weight-bolder {
    font-weight: bolder !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #007bff !important
}

a.text-primary:focus,
a.text-primary:hover {
    color: #0056b3 !important
}

.text-secondary {
    color: #6c757d !important
}

a.text-secondary:focus,
a.text-secondary:hover {
    color: #494f54 !important
}

.text-success {
    color: #aa0169 !important
}

a.text-success:focus,
a.text-success:hover {
    color: #19692c !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:focus,
a.text-info:hover {
    color: #0f6674 !important
}

.text-warning {
    color: #ffc107 !important
}

a.text-warning:focus,
a.text-warning:hover {
    color: #ba8b00 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:focus,
a.text-danger:hover {
    color: #a71d2a !important
}

.text-light {
    color: #f8f9fa !important
}

a.text-light:focus,
a.text-light:hover {
    color: #cbd3da !important
}

.text-dark {
    color: #343a40 !important
}

a.text-dark:focus,
a.text-dark:hover {
    color: #121416 !important
}

.text-body {
    color: #212529 !important
}

.text-black-50 {
    color: rgba(0, 0, 0, .5) !important
}

.text-white-50 {
    color: rgba(255, 255, 255, .5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-break {
    word-break: break-word !important;
    word-wrap: break-word !important
}

.text-reset {
    color: inherit !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

.material-icons {
    font-size: 1.5rem;
    line-height: inherit;
    vertical-align: top
}

.material-icons+span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

ul {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0
}

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

.link-hover,
a.active,
a:active,
a:focus,
a:hover {
    color: var(--color-body-link-hover, #000)
}

.li-a,
li a {
    color: inherit
}

p {
    margin-bottom: .625rem
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: inherit;
    text-align: left;
    color: var(--color-btn-bg)
}

.h3,
.h4,
.h5,
.h6,
h3,
h4,
h5,
h6 {
    line-height: inherit;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.h1,
.h2,
h1,
h2 {
    line-height: normal;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

button:focus,
button:hover {
    outline: 0
}

.text-muted {
    color: currentColor !important;
    opacity: .8
}

.btn {
    box-shadow: none;
    padding: 8px 20px;
    color: #fff;
    line-height: inherit;
    /*text-transform: capitalize;*/
    cursor: pointer;
    transition: all .3s ease 0s;
    outline: 0;
    border: 1px solid transparent
}

.btn .fa,
.btn .material-icons {
    margin-right: 5px;
    font-size: inherit
}

.btn.btn-small {
    font-size: 1em;
    padding: 5px 10px;
    font-weight: 400
}

.btn-tertiary {
    padding: .25rem;
    margin: .25rem 0
}

.btn,
.btn-primary,
.btn-secondary,
.btn-teriary,
.btn-tertiary,
button {
    border-radius: 0
}

.active.btn-tertiary:focus,
.btn-primary.active:focus,
.btn-primary.focus,
.btn-primary:active:focus,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-secondary.active:focus,
.btn-secondary.focus,
.btn-secondary:active:focus,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-teriary.active:focus,
.btn-teriary.focus,
.btn-teriary:active:focus,
.btn-teriary:focus,
.btn-teriary:hover,
.btn-teriary:not(:disabled):not(.disabled).active:focus,
.btn-teriary:not(:disabled):not(.disabled):active:focus,
.btn-tertiary:active:focus,
.btn-tertiary:focus,
.btn-tertiary:hover,
.btn-tertiary:not(:disabled):not(.disabled).active:focus,
.btn-tertiary:not(:disabled):not(.disabled):active:focus,
.btn.active:focus,
.btn.focus,
.btn:active:focus,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus,
.focus.btn-tertiary,
button.active:focus,
button.focus,
button:active:focus,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active:focus,
button:not(:disabled):not(.disabled):active:focus {
    outline: 0;
    box-shadow: none
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-teriary.disabled,
.btn-teriary:disabled,
.btn-tertiary:disabled,
.btn.disabled,
.btn:disabled,
.disabled.btn-tertiary,
button.disabled,
button:disabled {
    pointer-events: none
}

.btn,
.btn-primary,
.btn-secondary,
.btn-teriary,
.btn-tertiary,
button {
    border-radius: var(--btn-border-radius)
}

.btn-default,
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: var(--color-btn-bg, var(--color-primary));
    border-color: var(--color-btn-bg, var(--color-primary));
    color: var(--color-btn-text, #fff)
}

.btn-default.active:focus,
.btn-default.checked,
.btn-default.focus,
.btn-default:active,
.btn-default:focus,
.btn-default:hover,
.btn-default:not(:disabled):not(.disabled).active:focus,
.btn-default:not(:disabled):not(.disabled):active,
.btn-primary.active:focus,
.btn-primary.checked,
.btn-primary.disabled.active:focus,
.btn-primary.disabled.checked,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary.disabled:not(:disabled):not(.disabled).active:focus,
.btn-primary.disabled:not(:disabled):not(.disabled):active,
.btn-primary.focus,
.btn-primary:active,
.btn-primary:disabled.active:focus,
.btn-primary:disabled.checked,
.btn-primary:disabled.focus,
.btn-primary:disabled:active,
.btn-primary:disabled:focus,
.btn-primary:disabled:hover,
.btn-primary:disabled:not(:disabled):not(.disabled).active:focus,
.btn-primary:disabled:not(:disabled):not(.disabled):active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active {
    box-shadow: 0 0 0 2px var(--color-btn-bg-hover, #000);
    background: var(--color-btn-bg-hover, #000);
    border-color: var(--color-btn-bg-hover, #000);
    color: var(--color-btn-text-hover, #fff)
}

.btn-secondary,
.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-tertiary,
.btn-tertiary:disabled,
.disabled.btn-tertiary {
    border-width: 1px;
    background-color: transparent;
    border-color: var(--color-btn-bg, var(--color-primary));
    color: inherit
}

.active.btn-tertiary:focus,
.btn-secondary.active:focus,
.btn-secondary.checked,
.btn-secondary.disabled.active:focus,
.btn-secondary.disabled.checked,
.btn-secondary.disabled.focus,
.btn-secondary.disabled:active,
.btn-secondary.disabled:focus,
.btn-secondary.disabled:hover,
.btn-secondary.disabled:not(:disabled):not(.disabled).active:focus,
.btn-secondary.disabled:not(:disabled):not(.disabled):active,
.btn-secondary.focus,
.btn-secondary:active,
.btn-secondary:disabled.active:focus,
.btn-secondary:disabled.checked,
.btn-secondary:disabled.focus,
.btn-secondary:disabled:active,
.btn-secondary:disabled:focus,
.btn-secondary:disabled:hover,
.btn-secondary:disabled:not(:disabled):not(.disabled).active:focus,
.btn-secondary:disabled:not(:disabled):not(.disabled):active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-tertiary:active,
.btn-tertiary:disabled.active:focus,
.btn-tertiary:disabled.checked,
.btn-tertiary:disabled.focus,
.btn-tertiary:disabled:active,
.btn-tertiary:disabled:focus,
.btn-tertiary:disabled:hover,
.btn-tertiary:disabled:not(:disabled):not(.disabled).active:focus,
.btn-tertiary:disabled:not(:disabled):not(.disabled):active,
.btn-tertiary:focus,
.btn-tertiary:hover,
.btn-tertiary:not(:disabled):not(.disabled).active:focus,
.btn-tertiary:not(:disabled):not(.disabled):active,
.checked.btn-tertiary,
.disabled.active.btn-tertiary:focus,
.disabled.btn-tertiary:active,
.disabled.btn-tertiary:focus,
.disabled.btn-tertiary:hover,
.disabled.btn-tertiary:not(:disabled):not(.disabled).active:focus,
.disabled.btn-tertiary:not(:disabled):not(.disabled):active,
.disabled.checked.btn-tertiary,
.disabled.focus.btn-tertiary,
.focus.btn-tertiary {
    box-shadow: 0 0 0 2px var(--color-btn-bg, var(--color-primary));
    background: var(--color-btn-bg, var(--color-primary));
    border-color: var(--color-btn-bg, var(--color-primary));
    color: var(--color-btn-text, #fff)
}

.btn-unstyle {
    background-color: transparent;
    border: 0;
    padding: 0;
    text-align: inherit;
    color: inherit
}

.btn-unstyle:focus {
    outline: 0
}

.btn-wrap {
    white-space: normal
}

.grid-small-padding .row {
    margin-right: -10px;
    margin-left: -10px
}

.grid-small-padding .row [class^=col] {
    padding-right: 10px;
    padding-left: 10px
}

.xs-bottom {
    margin-bottom: 10px
}

.sm-bottom {
    margin-bottom: 20px
}

.md-bottom {
    margin-bottom: 30px
}

.lg-bottom {
    margin-bottom: 40px
}

.xl-bottom {
    margin-bottom: 50px
}

.box-bg,
.card,
.light-box-bg,
.shadow-box {
    background: var(--color-box-bg, #fff);
    border: 1px solid var(--color-box-border, #e5e5e5);
    border-radius: var(--box-border-radius)
}

.box-bg,
.light-box-bg,
.shadow-box {
    padding: 20px
}

.card {
    border: 1px solid #e5e5e5
}

.card-block {
    padding: .9375rem
}

.linklist li {
    padding: 4px 0
}

.linklist li a:before {
    content: '\f105';
    display: inline-block;
    font-family: 'FontAwesome';
    padding-right: 8px
}

.nav-tabs .nav-link {
    white-space: nowrap;
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: 0 0;
    text-decoration: none
}

.label,
label {
    margin-bottom: 0
}

.label[for],
label[for] {
    cursor: pointer
}

small.label,
small.value {
    font-size: 1rem;
    font-weight: 400
}

.icon-collapse {
    transition: transform .4s ease
}

.icon-collapse[aria-expanded=true] {
    transform: rotateZ(180deg)
}

custom-file-label.selected:after {
    content: "" !important
}

.homepage-heading,
.products-section-title {
    position: relative;
    text-align: center;
    display: block;
    font-size: 20px;
    margin-bottom: 0;
    padding: 0 0 20px;
    font-weight: 500;
    color: var(--color-heading-text)
}

.js-invalid-feedback-browser:empty {
    display: none
}

.form-control {
    padding: 8px 12px
}

.custom-select,
.form-control {
    font-size: 14px;
    line-height: 20px;
    height: 42px;
    border-radius: var(--input-border-radius, 0);
    background-color: var(--color-input-bg);
    border-color: var(--color-input-border);
    color: var(--color-input-text)
}

.custom-select:focus,
.form-control:focus {
    border-color: var(--color-input-border);
    box-shadow: none;
    color: var(--color-input-text)
}

.form-control:-moz-placeholder,
.form-control:-ms-input-placeholder,
.form-control:-webkit-input-placeholder {
    color: var(--color-input-text)
}

.input-group:not(.has-validation)>.form-control[name=new_password],
.input-group:not(.has-validation)>.form-control[name=password] {
    border-radius: var(--input-border-radius, 0)
}

.custom-select {
    padding: 8px 24px 8px 12px
}

.form-group .label .small,
.form-group .label small,
.form-group label .small,
.form-group label small {
    font-size: .75rem
}

.badge.dark {
    color: #fff;
    mix-blend-mode: difference
}

.rte-content ol,
.rte-content ul {
    padding: 9px 9px 9px 30px
}

.rte-content ul {
    list-style-type: disc
}

.rte-content ol {
    list-style-type: decimal
}

.regular-price {
    text-decoration: line-through;
    font-size: 80%;
    font-weight: 400
}

.custom-control-input:not(:disabled):active~.custom-control-label:before {
    background: 0 0
}

.custom-control-label,
.definition-list dl dt {
    font-weight: 400
}

.custom-control-label:before {
    box-shadow: none;
    top: 4px;
    margin: auto;
    width: 14px;
    height: 14px;
    left: -20px;
    background-color: var(--color-input-bg);
    border-color: var(--color-input-border)
}

.custom-control-label:after {
    background: 0 0;
    width: 8px;
    height: 8px;
    left: -17px;
    right: auto;
    top: 7px;
    margin: auto;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label:before,
.custom-control-input:focus~.custom-control-label:before {
    background: 0 0;
    box-shadow: none
}

.custom-checkbox .custom-control-input:checked~.custom-control-label:before,
.custom-radio .custom-control-input:checked~.custom-control-label:before {
    border-color: #333
}

.custom-checkbox .custom-control-input:checked~.custom-control-label:after,
.custom-radio .custom-control-input:checked~.custom-control-label:after {
    background: #333;
    opacity: 1
}

.custom-radio .custom-control-label:after {
    border-radius: 50%
}

.definition-list dl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.definition-list dl dd,
.definition-list dl dt {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    padding: 10px;
    margin: 2px;
    background: #f6f6f6
}

.definition-list dl dd:nth-of-type(even),
.definition-list dl dt:nth-of-type(even) {
    background: #f6f6f6
}

.modal-header .material-icons {
    font-size: 20px !important;
    display: inline-block;
    vertical-align: middle
}

.page-wrapper--pagenotfound {
    margin: 30px 0
}

.popover {
    font-family: inherit
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none
}

.ui-autocomplete.ui-front {
    z-index: 999
}

.container .notifications-container {
    padding-left: 0;
    padding-right: 0
}

.page-loading-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none
}

.page-loading-overlay.cart-overview-loading,
.page-loading-overlay.main-product-details-loading {
    position: absolute;
    z-index: 100
}

.page-loading-overlay .page-loading-backdrop {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .5);
    width: 100%;
    height: 100%
}

.page-loading-overlay .page-loading-backdrop i {
    font-size: 30px
}

.hidden-xl-down,
.hidden-xs-up {
    display: none !important
}

.container {
    max-width: 1220px
}

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

.flash {
    animation-name: flash
}

.pulse {
    animation-name: pulse
}

.rubberBand {
    animation-name: rubberBand
}

.shake {
    animation-name: shake
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

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

.tada {
    animation-name: tada
}

.wobble {
    animation-name: wobble
}

.jello {
    animation-name: jello;
    transform-origin: center
}

.bounceIn {
    animation-name: bounceIn
}

.bounceInDown {
    animation-name: bounceInDown
}

.bounceInLeft {
    animation-name: bounceInLeft
}

.bounceInRight {
    animation-name: bounceInRight
}

.bounceInUp {
    animation-name: bounceInUp
}

.fadeIn {
    animation-name: fadeIn
}

.fadeInDown {
    animation-name: fadeInDown
}

.fadeInLeft {
    animation-name: fadeInLeft
}

.fadeInRight {
    animation-name: fadeInRight
}

.fadeInUp {
    animation-name: fadeInUp
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

.rotateIn {
    animation-name: rotateIn
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

.rollIn {
    animation-name: rollIn
}

.zoomIn {
    animation-name: zoomIn
}

.zoomInDown {
    animation-name: zoomInDown
}

.zoomInLeft {
    animation-name: zoomInLeft
}

.zoomInRight {
    animation-name: zoomInRight
}

.zoomInUp {
    animation-name: zoomInUp
}

.slideInDown {
    animation-name: slideInDown
}

.slideInLeft {
    animation-name: slideInLeft
}

.slideInRight {
    animation-name: slideInRight
}

.slideInUp {
    animation-name: slideInUp
}

.elementor-animation-grow,
.elementor-animation-shrink {
    transition-duration: .3s;
    transition-property: transform
}

.elementor-animation-grow:active,
.elementor-animation-grow:focus,
.elementor-animation-grow:hover,
.elementor-bit-banner:hover .elementor-animation-grow {
    transform: scale(1.1)
}

.elementor-bit-banner .elementor-animation-shrink {
    transform: scale(1.1)
}

.elementor-bit-banner:hover .elementor-animation-shrink {
    transform: scale(1)
}

.elementor-animation-shrink:active,
.elementor-animation-shrink:focus,
.elementor-animation-shrink:hover {
    transform: scale(.9)
}

.elementor-bit-banner:hover .elementor-animation-pulse {
    animation-name: elementor-animation-pulse-banner;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite
}

.elementor-animation-pulse:active,
.elementor-animation-pulse:focus,
.elementor-animation-pulse:hover {
    animation-name: elementor-animation-pulse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite
}

.elementor-animation-pulse-grow:active,
.elementor-animation-pulse-grow:focus,
.elementor-animation-pulse-grow:hover,
.elementor-bit-banner:hover .elementor-animation-pulse-grow {
    animation-name: elementor-animation-pulse-grow;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate
}

.elementor-animation-pulse-shrink:active,
.elementor-animation-pulse-shrink:focus,
.elementor-animation-pulse-shrink:hover,
.elementor-bit-banner:hover .elementor-animation-pulse-shrink {
    animation-name: elementor-animation-pulse-shrink;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate
}

.elementor-animation-push:active,
.elementor-animation-push:focus,
.elementor-animation-push:hover,
.elementor-bit-banner:hover .elementor-animation-push {
    animation-name: elementor-animation-push;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1
}

.elementor-animation-pop:active,
.elementor-animation-pop:focus,
.elementor-animation-pop:hover,
.elementor-bit-banner:hover .elementor-animation-pop {
    animation-name: elementor-animation-pop;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1
}

.elementor-animation-bounce-in,
.elementor-animation-bounce-out {
    transition-duration: .5s
}

.elementor-animation-bounce-in:active,
.elementor-animation-bounce-in:focus,
.elementor-animation-bounce-in:hover,
.elementor-bit-banner:hover .elementor-animation-bounce-in {
    transform: scale(1.2);
    transition-timing-function: cubic-bezier(.47, 2.02, .31, -.36)
}

.elementor-animation-bounce-out:active,
.elementor-animation-bounce-out:focus,
.elementor-animation-bounce-out:hover,
.elementor-bit-banner:hover .elementor-animation-bounce-out {
    transform: scale(.8);
    transition-timing-function: cubic-bezier(.47, 2.02, .31, -.36)
}

.elementor-animation-grow-rotate,
.elementor-animation-rotate {
    transition-duration: .3s;
    transition-property: transform
}

.elementor-animation-rotate:active,
.elementor-animation-rotate:focus,
.elementor-animation-rotate:hover,
.elementor-bit-banner:hover .elementor-animation-rotate {
    transform: rotate(4deg)
}

.elementor-animation-grow-rotate:active,
.elementor-animation-grow-rotate:focus,
.elementor-animation-grow-rotate:hover,
.elementor-bit-banner:hover .elementor-animation-grow-rotate {
    transform: scale(1.1) rotate(4deg)
}

.elementor-animation-float,
.elementor-animation-sink {
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out
}

.elementor-animation-float:active,
.elementor-animation-float:focus,
.elementor-animation-float:hover,
.elementor-bit-banner:hover .elementor-animation-float {
    transform: translateY(-8px)
}

.elementor-animation-sink:active,
.elementor-animation-sink:focus,
.elementor-animation-sink:hover,
.elementor-bit-banner:hover .elementor-animation-sink {
    transform: translateY(8px)
}

.elementor-animation-bob:active,
.elementor-animation-bob:focus,
.elementor-animation-bob:hover,
.elementor-animation-hang:active,
.elementor-animation-hang:focus,
.elementor-animation-hang:hover,
.elementor-bit-banner:hover .elementor-animation-bob,
.elementor-bit-banner:hover .elementor-animation-hang {
    animation-name: elementor-animation-bob-float, elementor-animation-bob;
    animation-duration: .3s, 1.5s;
    animation-delay: 0s, .3s;
    animation-timing-function: ease-out, ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards;
    animation-direction: normal, alternate
}

.elementor-animation-hang:active,
.elementor-animation-hang:focus,
.elementor-animation-hang:hover,
.elementor-bit-banner:hover .elementor-animation-hang {
    animation-name: elementor-animation-hang-sink, elementor-animation-hang
}

.elementor-animation-skew {
    transition-duration: .3s;
    transition-property: transform
}

.elementor-animation-skew-forward:active,
.elementor-animation-skew-forward:focus,
.elementor-animation-skew-forward:hover,
.elementor-animation-skew:active,
.elementor-animation-skew:focus,
.elementor-animation-skew:hover,
.elementor-bit-banner:hover .elementor-animation-skew,
.elementor-bit-banner:hover .elementor-animation-skew-forward {
    transform: skew(-10deg)
}

.elementor-animation-skew-backward,
.elementor-animation-skew-forward {
    transition-duration: .3s;
    transition-property: transform;
    transform-origin: 0 100%
}

.elementor-animation-skew-backward:active,
.elementor-animation-skew-backward:focus,
.elementor-animation-skew-backward:hover,
.elementor-bit-banner:hover .elementor-animation-skew-backward {
    transform: skew(10deg)
}

.elementor-animation-wobble-vertical:active,
.elementor-animation-wobble-vertical:focus,
.elementor-animation-wobble-vertical:hover,
.elementor-bit-banner:hover .elementor-animation-wobble-vertical {
    animation-name: elementor-animation-wobble-vertical;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.elementor-animation-wobble-horizontal:active,
.elementor-animation-wobble-horizontal:focus,
.elementor-animation-wobble-horizontal:hover,
.elementor-bit-banner:hover .elementor-animation-wobble-horizontal {
    animation-name: elementor-animation-wobble-horizontal;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.elementor-animation-wobble-to-bottom-right:active,
.elementor-animation-wobble-to-bottom-right:focus,
.elementor-animation-wobble-to-bottom-right:hover,
.elementor-bit-banner:hover .elementor-animation-wobble-to-bottom-right {
    animation-name: elementor-animation-wobble-to-bottom-right;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.elementor-animation-wobble-to-top-right:active,
.elementor-animation-wobble-to-top-right:focus,
.elementor-animation-wobble-to-top-right:hover,
.elementor-bit-banner:hover .elementor-animation-wobble-to-top-right {
    animation-name: elementor-animation-wobble-to-top-right;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.elementor-animation-wobble-top {
    transform-origin: 0 100%
}

.elementor-animation-wobble-top:active,
.elementor-animation-wobble-top:focus,
.elementor-animation-wobble-top:hover,
.elementor-bit-banner:hover .elementor-animation-wobble-top {
    animation-name: elementor-animation-wobble-top;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.elementor-animation-wobble-bottom {
    transform-origin: 100% 0
}

.elementor-animation-wobble-bottom:active,
.elementor-animation-wobble-bottom:focus,
.elementor-animation-wobble-bottom:hover,
.elementor-bit-banner:hover .elementor-animation-wobble-bottom {
    animation-name: elementor-animation-wobble-bottom;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.elementor-animation-wobble-skew:active,
.elementor-animation-wobble-skew:focus,
.elementor-animation-wobble-skew:hover,
.elementor-bit-banner:hover .elementor-animation-wobble-skew {
    animation-name: elementor-animation-wobble-skew;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.elementor-animation-buzz:active,
.elementor-animation-buzz:focus,
.elementor-animation-buzz:hover,
.elementor-bit-banner:hover .elementor-animation-buzz {
    animation-name: elementor-animation-buzz;
    animation-duration: .15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite
}

.elementor-animation-buzz-out:active,
.elementor-animation-buzz-out:focus,
.elementor-animation-buzz-out:hover,
.elementor-bit-banner:hover .elementor-animation-buzz-out {
    animation-name: elementor-animation-buzz-out;
    animation-duration: .75s;
    animation-timing-function: linear;
    animation-iteration-count: 1
}

.elementor-animation-fade-out-20 {
    transition: opacity .3s ease-in-out
}

.elementor-animation-fade-out-20:active,
.elementor-animation-fade-out-20:focus,
.elementor-animation-fade-out-20:hover,
.elementor-bit-banner:hover .elementor-animation-fade-out-20 {
    opacity: .8 !important
}

.easyzoom {
    display: inline-block;
    vertical-align: middle;
    *display: inline;
    *zoom: 1
}

.easyzoom img {
    vertical-align: bottom
}

.easyzoom.is-loading img {
    cursor: progress
}

.easyzoom.is-ready img {
    cursor: crosshair
}

.easyzoom.is-error img {
    cursor: not-allowed
}

.easyzoom-notice {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    height: 32px;
    line-height: 32px;
    text-align: center;
    width: 32px;
    margin-top: -16px;
    margin-left: -16px;
    border-radius: 2px
}

.easyzoom-flyout {
    overflow: hidden;
    background: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1
}

.easyzoom--overlay .easyzoom-flyout,
.easyzoom-flyout {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.easyzoom--adjacent .easyzoom-flyout {
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    margin-left: 20px
}

.mfp-bg {
    z-index: 1051;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8
}

.mfp-bg,
.mfp-container,
.mfp-wrap {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.mfp-wrap {
    z-index: 1052;
    position: fixed;
    outline: 0 !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    padding: 0 8px;
    box-sizing: border-box
}

.mfp-container:before,
.mfp-content {
    display: inline-block;
    vertical-align: middle
}

.mfp-container:before {
    content: '';
    height: 100%
}

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

.mfp-content {
    position: relative;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-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: pointer;
    cursor: zoom-in
}

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

.mfp-close {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:hover {
    opacity: 1
}

.mfp-close:focus {
    opacity: 1
}

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

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

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

.mfp-arrow:hover {
    opacity: 1
}

.mfp-arrow:focus {
    opacity: 1
}

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

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

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

.mfp-counter,
.mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    color: #ccc
}

.mfp-preloader {
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

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

.mfp-loading.mfp-figure,
.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader,
.slick-slide.slick-loading img {
    display: none
}

.mfp-hide {
    display: none !important
}

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

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

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

#left-column .block .tdleftbanners-container a img,
#right-column .block .tdleftbanners-container a img,
.checkout-step-display .delivery-option .carrier-logo img,
.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
    top: -40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f
}

.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: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

.mfp-figure:after,
img.mfp-img {
    display: block;
    width: auto;
    height: auto
}

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

.mfp-figure,
img.mfp-img {
    line-height: 0
}

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

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

.mfp-figure figure,
.slick-slide 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-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

.slick-list,
.slick-slider {
    position: relative;
    display: block
}

.slick-slider {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-initialized .slick-slide,
.slick-slide img {
    display: block
}

.pagination ul li a.disabled,
.send_wishlist_form_content .has-success input,
.send_wishlist_form_content .has-warning input,
.slick-slide.dragging img {
    pointer-events: none
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden,
.slick-dots li button,
img[data-lazy] {
    display: none
}

.slick-prev {
    left: 0
}

.slick-next {
    right: 0
}

.slick__arrow-outside .slick-prev {
    transform: translateX(-50px)
}

.slick__arrow-outside .slick-next {
    transform: translateX(50px)
}

.slick__arrow-large .slick-arrow i {
    font-size: 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background: 0 0;
    color: #fff
}

.tdcarousel:not(.slick-arrows-middle) .slick-prev-arrow {
    margin-right: 5px
}

.slick-dots {
    padding: 0;
    margin: 0
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    height: 12px;
    width: 12px;
    pointer-events: all;
    vertical-align: middle;
    transition: all .3s ease-in-out;
    margin: 5px;
    background: #c5c5c5;
    border-radius: 100%
}

.slick-dots .slick-active,
.slick-dots li:hover {
    background: #333
}

.slick-arrow {
    height: 35px;
    width: 35px;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .3s ease 0s;
    background: 0 0;
    color: #333;
    fill: #333;
    font-size: 18px;
    cursor: pointer;
    border-radius: var(--btn-border-radius, 0)
}

.slick-arrow:hover {
    color: var(--color-body-link-hover, #000)
}

.tdcarousel {
    position: relative
}

.tdcarousel,
.tdcarousel>.row {
    display: block
}

.tdcarousel .td-slick-dots {
    position: absolute;
    z-index: 1;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    height: 0
}

.tdcarousel .td-slick-arrows {
    position: absolute;
    height: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex
}

.text-underline {
    text-decoration: underline
}

.cursor-pointer,
.product-thumbs .slick-slide>div {
    cursor: pointer
}

.d--none {
    display: none
}

.d--block {
    display: block
}

.d--flex-between {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mb--0 {
    margin-bottom: 0
}

.text--center {
    text-align: center
}

.text--right {
    text-align: right
}

#header,
.slick-dots li {
    position: relative
}

#header .col-header-menu,
#header .col-header-menu .cbp-hrsub-narrow {
    position: static
}

#header .currency-selector .expand-more,
#header .header-nav .left-nav .welcome-message,
#header .language-selector .expand-more {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

#header .currency-selector,
#header .language-selector {
    padding: 0 0 0 15px;
    white-space: nowrap;
    cursor: pointer
}

#header .currency-selector .expand-more,
#header .language-selector .expand-more {
    text-transform: uppercase;
    position: relative
}

#header .currency-selector .expand-more:after,
#header .language-selector .expand-more:after {
    content: "\e313";
    font-family: "Material Icons";
    font-size: 16px;
    margin: 0 0 0 2px
}

#header .currency-selector .dropdown-menu,
#header .language-selector .dropdown-menu {
    top: calc(100% + 12px);
    margin-top: 0;
    padding: 10px;
    right: 0;
    left: auto
}

#header .currency-selector .dropdown-menu .dropdown-item,
#header .language-selector .dropdown-menu .dropdown-item {
    padding: 2px 5px
}

#header .currency-selector.show .expand-more:after,
#header .language-selector.show .expand-more:after {
    content: "\e316"
}

.user-info {
    margin-right: 30px
}

.user-info .user-info-inner {
    position: relative;
    cursor: pointer;
    padding: 0 0 0 15px
}

#header .currency-selector .expand-more:after,
#header .language-selector .expand-more:after,
.breadcrumb li,
.user-info .user-info-inner .expand-more {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.user-info .user-info-inner .expand-more i {
    font-size: 20px
}

.user-info .dropdown-menu {
    margin-top: 0;
    padding: 10px;
    right: 0;
    left: auto;
    float: right;
    box-shadow: none;
    border-radius: 0
}

.breadcrumb,
.user-info .dropdown-menu>a {
    padding: 2px 5px;
    display: block
}

#elementor-header-sticky {
    position: fixed;
    background: #fff;
    border: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1040;
    backface-visibility: hidden;
    pointer-events: none;
    box-shadow: 0 3px 6px rgba(51, 51, 51, .05);
    transform: translateY(-100%)
}

header.sticky #elementor-header-sticky {
    transform: none;
    pointer-events: unset;
    transition: transform .3s ease
}

.breadcrumb {
    background: 0 0;
    margin-bottom: 0;
    padding: 15px 0;
    border-radius: 0
}

.breadcrumb .page-heading {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    margin: 0
}

#index .breadcrumb,
.breadcrumb .breadcrumb-item+.breadcrumb-item:before {
    display: none
}

.breadcrumb ol,
.product-action-wrap .product-breadcrumb ol {
    padding-left: 0;
    margin-bottom: 0
}

.breadcrumb.style-1 {
    text-align: left
}

.breadcrumb.style-2 {
    text-align: center
}

.breadcrumb.style-3 .container,
.breadcrumb.style-3 .container-fluid,
.container>.breadcrumb.style-3 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

#search_filters .facet .color_facet li .facet-label,
#search_filters .facet .color_facet li .facet-label .custom-control,
.breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding: 0
}

.breadcrumb li {
    list-style: none;
    position: relative
}

.breadcrumb li:after {
    content: ">";
    margin: 0 8px
}

.breadcrumb li:first-child i {
    font-size: 16px
}

.breadcrumb li:last-child:after,
.product-action-wrap .product-breadcrumb li:last-child:after {
    content: "";
    margin: 0
}

.ps-alert-error,
.ps-alert-success {
    margin-bottom: 1rem
}

.ps-alert-error .item,
.ps-alert-success .item {
    -ms-flex-align: center;
    align-items: center;
    border: 2px #dc3545 solid;
    display: -ms-flexbox;
    display: flex
}

.ps-alert-error .item {
    background-color: #dc3545
}

.ps-alert-success .item {
    border-color: #745f5f
}

.ps-alert-error .item i {
    background-color: #dc3545
}

.ps-alert-error .item i,
.ps-alert-success .item i {
    padding: 0 .9375rem;
    display: -ms-flexbox;
    display: flex
}

.ps-alert-error .item i svg {
    width: 24px;
    height: 24px;
    background-color: #dc3545
}

.ps-alert-success .item i svg {
    width: 24px;
    height: 24px
}

.ps-alert-error .item p,
.ps-alert-success .item p {
    background-color: #fff;
    margin: 0;
    padding: .9375rem;
    width: 100%
}

.ps-alert-success .item,
.ps-alert-success .item i,
.ps-alert-success .item i svg {
    background-color: #745f5f
}

.page-wrapper {
    border: medium
}

.page-wrapper .page-home>* {
    -ms-flex-pack: center;
    justify-content: center
}

.page-wrapper .page-content .form-group {
    display: block;
    text-align: left;
    position: relative
}

.page-wrapper .page-content .form-group label {
    display: inline-block;
    vertical-align: middle;
    text-align: left
}

.page-wrapper .page-content .form-group .custom-radio {
    background: 0 0
}

#wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    color: var(--color-body-text, #666)
}

#index #wrapper {
    padding-top: 0;
    padding-bottom: 0
}

.search-widget {
    z-index: 7
}

.search-widget,
.search-widget .search-widget-inner {
    position: relative
}

#main .search-widget form {
    width: 100%;
    max-width: 100%
}

.search-widget form input[type=text] {
    padding: 7px 10px;
    min-width: 300px;
    border: 1px solid #e5e5e5
}

.search-widget form input[type=text]:focus {
    box-shadow: none;
    outline: 0
}

#main .search-widget form input[type=text] {
    min-width: 100%
}

.search-widget form button[type=submit] {
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
    color: #000;
    right: 0;
    padding: 0;
    width: 40px;
    bottom: 0;
    cursor: pointer;
    margin: 0 0 0 5px;
    transition: all .5s ease 0s;
    height: 40px
}

.search-widget form button[type=submit] i {
    font-size: 22px;
    vertical-align: middle
}

.search-widget form button[type=submit]:hover {
    background: #000;
    border-color: #000;
    color: #fff
}

.blogsearch_block #sdssearch_block_top .input-wrapper input,
.search-widget form input[type=text] {
    height: 40px
}

.header-search-btn {
    font-size: 22px;
    padding-right: 25px
}

#top-menu {
    margin: 0;
    position: relative
}

#top-menu>li {
    display: inline-block;
    vertical-align: middle;
    position: relative
}

#top-menu>li>a {
    color: #666;
    display: block;
    position: relative;
    text-transform: uppercase;
    white-space: normal
}

#top-menu>li>.nav-items {
    visibility: hidden;
    z-index: 999;
    left: 0;
    padding: 15px 10px;
    position: absolute;
    opacity: 0;
    top: 100%;
    margin: 0;
    min-width: 200px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    transition: all .5s ease 0s
}

#top-menu>li>.nav-items.threecolumn {
    width: 675px
}

#top-menu>li>.nav-items.threecolumn>li {
    width: 33.333%
}

#top-menu>li>.nav-items.onecolumn>li:nth-child(-n+1),
#top-menu>li>.nav-items.threecolumn>li:nth-child(-n+3),
#top-menu>li>.nav-items.twocolumn>li:nth-child(-n+2) {
    margin-top: 0
}

#top-menu>li>.nav-items.twocolumn {
    width: 450px
}

#top-menu>li>.nav-items.twocolumn>li {
    width: 50%
}

#top-menu>li>.nav-items.onecolumn {
    width: 225px
}

#top-menu>li>.nav-items.onecolumn>li {
    width: 100%
}

#top-menu>li>ul[data-depth="1"]>li {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
    flex-direction: column;
    vertical-align: top;
    padding: 0 10px;
    margin-top: 10px
}

#top-menu>li>ul[data-depth="1"]>li>a {
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    padding: 0;
    text-transform: uppercase;
    white-space: normal
}

#top-menu>li:hover>a,
#top-menu>li>ul[data-depth="1"]>li:hover>a,
.product-tabs .nav-tabs .nav-item a.active {
    color: #000
}

#top-menu>li>ul[data-depth="1"]>li .child-menu li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    padding: 0 0 10px;
    white-space: normal;
    position: relative
}

#top-menu>li>ul[data-depth="1"] .nav-items {
    margin-top: 6px
}

#top-menu>li>ul[data-depth="1"] .nav-items li a {
    padding: 3px 0
}

#top-menu>li>ul[data-depth="1"] .nav-items .nav-items {
    margin: 0 0 0 15px
}

#top-menu>li:hover>.nav-items {
    opacity: 1;
    visibility: visible
}

.header-top {
    position: relative
}

#left-column .block ul,
#right-column .block ul,
.menu-top {
    margin: 0
}

#mobile_top_menu_wrapper.modal .modal-header {
    border-bottom: 0
}

#mobile_top_menu_wrapper.modal .modal-body {
    padding-top: 0
}

.order_steps {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px
}

.order_steps .step {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 25%;
    background: inherit
}

.order_steps .step .icons {
    position: relative;
    background: inherit;
    color: inherit;
    height: 40px
}

.order_steps .step .icons:after {
    content: "";
    width: calc(100% - 60px);
    height: 2px;
    background: #666;
    position: absolute;
    left: calc(-50% + 30px);
    top: 18px;
    z-index: -1
}

.order_steps .step .icons>span {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border: 2px solid #666;
    line-height: 36px;
    text-align: center;
    border-radius: 60%
}

.order_steps .step .icons>span i {
    line-height: inherit;
    font-size: 24px
}

.order_steps .step:first-child .icons:after {
    content: none
}

.order_steps .step .edit {
    opacity: 0;
    visibility: hidden;
    position: absolute
}

.order_steps .step .step-title {
    text-align: center;
    margin-top: 5px
}

.order_steps .step.current {
    cursor: default
}

.order_steps .step.reachable.complete:not(.current):hover .edit {
    opacity: 1;
    visibility: visible
}

.order_steps .step.unreachable {
    pointer-events: none;
    opacity: .5
}

#checkout-addresses-step .step-title,
#checkout-personal-information-step .personal-form,
#checkout-personal-information-step .step-title,
.checkout-step .content,
.checkout-step .step-title {
    display: none
}

.checkout-step .not-allowed {
    cursor: not-allowed;
    opacity: .5
}

#checkout-personal-information-step .personal-form.active,
.checkout-step.-current .content,
.checkout-step.-current .step-title {
    display: block
}

.checkout-step-display .content {
    margin: 10px 0
}

.checkout-step-display .delivery-option {
    padding: .9375rem 0;
    position: relative
}

.checkout-step-display .delivery-option:before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
    border-top: 1px solid #fff
}

.checkout-step-display .delivery-option:first-child:before {
    display: none
}

.checkout-step-display .delivery-option label {
    text-align: initial;
    margin-bottom: 0
}

.checkout-step-display .delivery-option .custom-radio {
    padding: 5px 10px
}

.checkout-step-display .delivery-option .carrier-logo {
    min-width: 80px;
    margin: 0 10px
}

.checkout-step-display .delivery-option .carrier-delay,
.checkout-step-display .delivery-option .carrier-name,
.checkout-step-display .delivery-option .carrier-price {
    padding: 5px 10px
}

.blockcart .cart_block .block_content #cart-close i,
.checkout-step-display .delivery-option .carrier-name {
    font-weight: 700
}

.checkout-step-display .delivery-option .carrier-delay,
.checkout-step-display .delivery-option .carrier-name {
    word-break: break-word;
    width: 40%
}

.checkout-step-display .delivery-option .carrier-delay,
.checkout-step-display .delivery-option .carrier-price {
    font-weight: 400
}

.checkout-step-display .delivery-option .custom-control-label:before {
    top: 5px;
    left: 0
}

.checkout-step-display .delivery-option .custom-control-label:after {
    top: 8px;
    left: 3px
}

.page-subheading {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 500
}

#checkout-personal-information-step .personal-form .box-bg,
#checkout-personal-information-step .personal-form .light-box-bg {
    padding-top: 5px
}

#checkout-addresses-step .address-item {
    margin-bottom: 15px;
    opacity: .6;
    border-width: 2px
}

#checkout-addresses-step .address-item:hover {
    opacity: 1
}

#checkout-addresses-step .address-item.selected {
    border-color: red;
    opacity: 1
}

#checkout-addresses-step .address-item .address-header label {
    width: 100%;
    margin-bottom: .9375rem
}

#checkout-addresses-step .address-item .address-footer {
    border-top: 1px solid #fff;
    padding-top: .9375rem
}

#checkout-addresses-step .address-item .address-footer a+a,
.page-addresses .address-footer a+a {
    margin-left: 10%
}

#checkout-addresses-step .address-item .address-footer .fa,
#checkout-addresses-step .address-item .address-footer .material-icons {
    margin-top: -2px
}

#checkout-delivery-step .delivery-options .row {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

#checkout-delivery-step .order-options {
    padding-top: .9375rem;
    border-top: 1px solid #fff
}

#checkout-delivery-step #gift label {
    margin-top: 10px
}

#checkout-payment-step .payment-options {
    padding: 0 .9375rem;
    margin-bottom: 30px
}

#checkout-payment-step .payment-line {
    padding: .9375rem 0
}

#checkout-payment-step .payment-line+.payment-line {
    border-top: 1px solid var(--color-box-border, #e5e5e5)
}

#checkout-payment-step .payment-option .option-logo {
    max-height: 1.5rem;
    margin: 0 5px
}

#checkout-payment-step .additional-information {
    padding: 10px 1.5rem 0
}

#checkout-payment-step #modal-payment-terms .modal-header {
    padding: 2px 5px;
    border: 0
}

#checkout-payment-step .payment-final .custom-checkbox {
    margin: auto auto 15px;
    text-align: center
}

.price-total {
    color: var(--color-regular-price)
}

#conditions-to-approve #cta-terms-and-conditions-0,
#conditions-to-approve #cta-terms-and-conditions-1 {
    text-decoration: underline
}

#order-summary-content {
    border: 3px solid #d1ecf1;
    padding: 0 2% 20px;
    overflow: hidden;
    margin-top: 32px
}

#order-summary-content .summary-message {
    margin: 0 -4% 20px
}

#order-summary-content .osb-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px
}

#order-summary-content .osb-title h5 {
    margin: 0;
    font-weight: 500
}

#order-summary-content .osb-title .step-edit {
    padding-top: 0;
    padding-bottom: 0;
    color: #666
}

#order-summary-content .summary-selected-carrier {
    padding: 0 5px
}

#order-summary-content .summary-selected-carrier .delivery-option {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex
}

#order-confirmation #order-details,
#order-confirmation #order-items {
    margin-bottom: 1rem
}

#left-column .block .products-block.left .product-container .thumbnail-inner .product-flags,
#order-confirmation .product-line-grid .product-attributes,
#right-column .block .products-block.left .product-container .thumbnail-inner .product-flags,
.js-payment-binary,
.js-payment-binary .accept-cgv {
    display: none
}

.js-payment-binary.disabled {
    opacity: .6;
    cursor: not-allowed
}

.js-payment-binary.disabled::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none
}

.js-payment-binary.disabled .accept-cgv,
.js-visible-password.is-invalid~.invalid-feedback,
.js-visible-password.is-invalid~.invalid-tooltip {
    display: block
}

#checkout #wrapper {
    border-top: solid 1px #e5e5e5;
    padding-top: 40px
}

.page-maintitle {
    margin-bottom: 20px
}

.footer-account-links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer-account-links i {
    min-width: 18px;
    margin: 0;
    font-size: 20px;
    vertical-align: middle
}

.footer-account-links .logout-link a {
    color: red
}

#main .page-content,
#main .page-header {
    margin-bottom: 25px
}

.table-labeled .label {
    font-weight: 400;
    border-radius: 3px;
    font-size: inherit;
    padding: .25rem .375rem;
    color: #fff;
    white-space: nowrap
}

.thead-default th {
    background-color: #f6f6f6
}

.page-addresses .address {
    margin-bottom: 20px
}

.page-addresses .address-footer {
    border-top: 1px solid #ededed;
    padding-top: .9375rem
}

.page-addresses .address-footer i {
    font-size: 16px
}

.page-guest-tracking .light-box-bg,
.page-guest-tracking .shadow-box,
.page-order-detail .light-box-bg,
.page-order-detail .shadow-box {
    margin-bottom: 20px
}

.page-guest-tracking #order-history .history-lines,
.page-order-detail #order-history .history-lines {
    padding-top: .4rem;
    padding-bottom: .4rem
}

.page-guest-tracking #order-history .history-lines .history-line,
.page-order-detail #order-history .history-lines .history-line {
    padding: .5rem 0
}

.page-guest-tracking #order-history .history-lines .history-line .row,
.page-order-detail #order-history .history-lines .history-line .row {
    -ms-flex-align: center;
    align-items: center
}

.page-guest-tracking #order-history .history-lines .history-line+.history-line,
.page-order-detail #order-history .history-lines .history-line+.history-line {
    border-top: 1px solid #fff
}

.page-guest-tracking #order-history .history-lines .history-line .label,
.page-order-detail #order-history .history-lines .history-line .label {
    display: inline-block;
    margin: 4px 0;
    padding: 4px 6px;
    color: #fff;
    border-radius: 3px;
    font-weight: 500;
    font-size: 14px
}

.page-my-account #content .links a {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: inherit
}

.page-my-account #content .links a span.link-item {
    display: block;
    text-align: center;
    height: 100%;
    background: #f6f6f6;
    padding: 30px;
    border-radius: 5px
}

.page-my-account #content .links a i {
    display: block;
    text-align: center;
    font-size: 40px;
    width: 100%;
    padding-bottom: 20px;
    margin: 0;
    line-height: 40px;
    color: #000
}

.page-my-account #content .links a:hover {
    color: #232323
}

#history table .pdf-icon,
.product-actions #product-availability i,
.product-quantity .add .add-to-cart i {
    font-size: 20px
}

#history table .order-actions a {
    display: block;
    white-space: nowrap
}

#history .orders .order+.order {
    margin-top: 10px
}

#history .orders .order .label {
    font-weight: 400;
    border-radius: 3px;
    font-size: inherit;
    padding: .25rem .375rem;
    color: #fff;
    white-space: nowrap
}

#history .orders .order .action+.action,
#history .orders .order .status {
    margin-top: 5px
}

.comments_advices li,
.psgdprinfo17 {
    display: inline-block
}

.was-validated .js-visible-password:invalid~.invalid-feedback,
.was-validated .js-visible-password:invalid~.invalid-tooltip {
    display: block
}

.js-visible-password.is-invalid,
.was-validated .js-visible-password:invalid {
    padding-right: 60px;
    background-position: center right 36px
}

.js-visible-password.is-valid,
.was-validated .js-visible-password:valid {
    padding-right: 60px;
    background-position: center right 36px
}

.form-control.js-visible-password {
    padding-right: 45px
}

.input-group .btn:not(:disabled):not(.disabled).active,
.input-group .btn:not(:disabled):not(.disabled):active,
.input-group .btn:not(:disabled):not(.disabled):focus,
.input-group .btn:not(:disabled):not(.disabled):hover {
    background: 0 0;
    border: medium;
    box-shadow: none;
    color: var(--color-primary)
}

.input-group .btn:not(:disabled):not(.disabled).active:before,
.input-group .btn:not(:disabled):not(.disabled):active:before,
.input-group .btn:not(:disabled):not(.disabled):focus:before,
.input-group .btn:not(:disabled):not(.disabled):hover:before {
    color: var(--color-primary)
}

.input-group .btn:not(:disabled):not(.disabled).active:focus,
.input-group .btn:not(:disabled):not(.disabled):active:focus {
    box-shadow: none
}

button[data-action=show-password] {
    background: 0 0 !important;
    border: medium;
    position: absolute;
    right: 0;
    font-size: 0;
    box-shadow: none;
    z-index: 8;
    padding: 0;
    width: 40px;
    height: 42px;
    line-height: 1
}

button[data-action=show-password]:before {
    content: "\f06e";
    display: inline-block;
    font-family: 'Line Awesome Free';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    color: #555
}

input[type=text]+span>button[data-action=show-password]:before {
    content: "\f070"
}

#left-column .title_block,
#right-column .title_block {
    margin: 0;
    color: var(--color-btn-bg);
    font-size: 16px;
    font-style: normal;
    font-weight: 500
}

#left-column .block,
#right-column .block {
    position: relative;
    margin-bottom: 20px
}

#left-column .block .block_content,
#right-column .block .block_content {
    margin: 10px 0 0
}

#left-column .block .block_content .alert-info,
#right-column .block .block_content .alert-info,
.product-thumbs-outer .product-thumbs .product-thumb img {
    width: 100%
}

#left-column .block .tdleftbanners-container,
#right-column .block .tdleftbanners-container {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle
}

#left-column .block .tdleftbanners-container a,
#right-column .block .tdleftbanners-container a {
    display: block;
    position: relative;
    overflow: hidden
}

#left-column .block .products-block.left .products.grid,
#right-column .block .products-block.left .products.grid {
    overflow: hidden;
    width: 100%
}

#left-column .block .products-block.left .product-container,
#right-column .block .products-block.left .product-container {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    border: 0
}

#left-column .block .products-block.left .product-container .thumbnail-container,
#right-column .block .products-block.left .product-container .thumbnail-container {
    position: relative;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 10px
}

#left-column .block .products-block.left .product-container .thumbnail-inner,
#right-column .block .products-block.left .product-container .thumbnail-inner {
    position: relative;
    overflow: hidden
}

#left-column .block .products-block.left .product-container .product-thumbnail,
#right-column .block .products-block.left .product-container .product-thumbnail {
    display: block;
    text-align: center;
    position: relative
}

#left-column .block .products-block.left .product-container .product-thumbnail img,
#right-column .block .products-block.left .product-container .product-thumbnail img {
    margin: 0 auto;
    width: 85px;
    height: auto;
    transition: all .7s ease 0s
}

#left-column .block .products-block.left .product-container .product-thumbnail img.img_1,
#left-column .block .products-block.top .products .product-container .product-thumbnail img.img_1,
#right-column .block .products-block.left .product-container .product-thumbnail img.img_1,
#right-column .block .products-block.top .products .product-container .product-thumbnail img.img_1 {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0
}

#left-column .block .products-block.left .product-container .product-description,
#right-column .block .products-block.left .product-container .product-description {
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    padding: 0;
    text-align: left
}

#left-column .block .products-block.left .product-container .product-description .product-title,
#right-column .block .products-block.left .product-container .product-description .product-title {
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

#left-column .block .products-block.left .product-container .product-description .comments_note,
#right-column .block .products-block.left .product-container .product-description .comments_note {
    margin-bottom: 3px
}

#left-column .block .products-block.left .product-container .product-description .product-price-and-shipping .regular-price,
#right-column .block .products-block.left .product-container .product-description .product-price-and-shipping .regular-price {
    margin-right: 5px;
    font-size: 90%
}

#left-column .block .products-block.left .row_items .product-miniature:last-child .product-container,
#right-column .block .products-block.left .row_items .product-miniature:last-child .product-container,
.js-product-images-modal>div:last-child,
.page-stores .store-item .store-item-container .store-item-footer .card-block li:last-child {
    margin-bottom: 0
}

#left-column .block .products-block.top .products .product-container .product-thumbnail,
#right-column .block .products-block.top .products .product-container .product-thumbnail {
    display: block;
    text-align: center;
    position: relative
}

#left-column .block .products-block.top .products .product-container .product-thumbnail img,
#product-list .products .product-miniature.list .left-block img,
#right-column .block .products-block.top .products .product-container .product-thumbnail img,
.products .product-miniature .product-container .thumbnail-container .product-thumbnail img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    transition: all .7s ease 0s
}

#left-column .block .products-block.top .products .product-container .product-description,
#right-column .block .products-block.top .products .product-container .product-description {
    padding: 10px 0
}

#left-column .block .products-block.top .products:last-child .product-container .product-description,
#right-column .block .products-block.top .products:last-child .product-container .product-description {
    padding: 10px 0 0
}

#left-column .block .products-block .product-container:hover .thumbnail-inner .product-thumbnail img,
#product-list .products .product-miniature.list:hover .left-block img,
#right-column .block .products-block .product-container:hover .thumbnail-inner .product-thumbnail img {
    transition: all .7s ease 0s
}

#left-column .block .products-block .product-container:hover .thumbnail-inner .product-thumbnail img.img_1,
#product-list .products .product-miniature.list:hover .left-block img.img_1,
#products #product-list-top .products-selection .view-switcher>a.current,
#right-column .block .products-block .product-container:hover .thumbnail-inner .product-thumbnail img.img_1,
.products .product-miniature .product-container:hover .thumbnail-inner .product-thumbnail img.img_1 {
    opacity: 1
}

.block-categories .category-top-menu {
    margin: 0
}

.block .block-categories .category-sub-menu li,
.block-categories .category-sub-menu li {
    position: relative;
    border: 0;
    padding: 0
}

.block .block-categories .category-sub-menu li>a,
.block-categories .category-sub-menu li>a {
    display: block;
    padding: 5px 0
}

#product-list .products .product-miniature.list .right-block .product-add-to-cart .btn-primary svg,
.block .block-categories .category-sub-menu li>a i,
.block-categories .category-sub-menu li>a i,
.page-stores .store-item .store-item-container .store-item-footer .card-block li i {
    margin-right: 5px
}

.block-categories .category-sub-menu li .category-sub-menu {
    padding: 0 0 0 15px
}

.block-categories .category-sub-menu .icon-collapse {
    position: absolute;
    right: 0;
    top: 5px;
    padding: 0;
    cursor: pointer;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25px;
    height: 25px
}

.block-categories .category-sub-menu .icon-collapse,
.social-sharing,
.social-sharing a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.social-sharing {
    width: 100%;
    margin: 20px 0 0
}

.social-sharing span {
    margin-right: 5px;
    color: #232323;
    font-weight: 600
}

.social-sharing a {
    text-decoration: none !important;
    color: #fff;
    width: 40px;
    height: 40px;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 8px;
    font-size: 20px;
    overflow: hidden;
    position: relative;
    transition: transform .4s linear 0s, border-top-left-radius .1s linear 0s, border-top-right-radius .1s linear .1s, border-bottom-right-radius .1s linear .2s, border-bottom-left-radius .1s linear .3s
}

.social-sharing a svg {
    transition: transform .4s linear 0s
}

.social-sharing a:hover {
    transform: rotate(360deg);
    border-radius: 50%
}

.social-sharing a:hover svg {
    transform: rotate(-360deg)
}

.product-btn-block div:last-child,
.social-sharing a:last-child {
    margin-right: 0
}

.social-sharing a.facebook {
    background-color: #3b5998
}

.social-sharing a.twitter {
    background-color: #00aced
}

.social-sharing a.pinterest {
    background-color: #cb2027
}

.carousel a {
    display: block
}

.carousel a:not(:first-child) {
    display: none
}

#products #product-list-top {
    margin: 20px 0
}

#products #product-list-top .products-selection .view-switcher,
#products #product-list-top .products-selection .view-switcher>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

#products #product-list-top .products-selection .view-switcher>a {
    -ms-flex-pack: center;
    justify-content: center;
    color: #777;
    opacity: .5;
    border-radius: 3px;
    margin-right: 15px
}

#products #product-list-top .products-selection .view-switcher>a i {
    font-size: 28px
}

#products #product-list-top .products-selection .box-sort-by,
#products #product-list-top .products-selection .view-switcher>a i,
#search_filters .facet .color_facet li,
.page-stores .store-item .store-item-container .store-description a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

#products #product-list-top .products-selection .box-sort-by .sort-order,
#search_filters .facet .facet-label a .magnitude,
.footer-style-2 .block_newsletter form button[type=submit] {
    margin-left: 10px
}

#products .d-md-none {
    display: none
}

#product-list .products .product-miniature.list {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, outline .3s ease
}

#product-list .products .product-miniature.list .thumbnail-container,
.products .product-miniature .product-container .thumbnail-container {
    position: relative
}

#product-list .products .product-miniature.list .thumbnail-container .thumbnail,
.products .product-miniature .product-container .thumbnail-container .thumbnail-inner {
    position: relative;
    overflow: hidden
}

#product-list .products .product-miniature.list .left-block,
.products .product-miniature .product-container .thumbnail-container .product-thumbnail {
    display: block;
    text-align: center;
    position: relative
}

#product-list .products .product-miniature.list .left-block img.img_1,
.products .product-miniature .product-container .thumbnail-container .product-thumbnail img.img_1 {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0
}

#product-list .products .product-miniature.list .center-block .products-variants .variant-links {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

#product-list .products .product-miniature.list .center-block .products-variants .variant-links .color {
    margin: 5px 5px 5px 0;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 3px solid #fff;
    position: relative;
    transition: opacity .3s ease 0s;
    vertical-align: top;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .5)
}

#product-list .products .product-miniature.list .center-block .products-variants .variant-links .color:before,
#search_filters .facet .facet-label .color:before {
    content: "\f00c";
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "FontAwesome";
    position: absolute;
    color: #f0f0f0;
    font-size: 12px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity .3s ease 0s
}

#product-list .products .product-miniature.list .right-block,
.page-stores .store-item .store-item-container .border-left .table tr th {
    text-align: right
}

#product-comments-list-pagination li i,
#product-list .products .product-miniature.list .right-block .product-price-and-shipping {
    font-size: 18px
}

#product-list .products .product-miniature.list .right-block .wishlist .dropdown-menu,
.products .product-miniature.style-1 .product-container .button-container .wishlist .td-list-wishlist {
    right: 0;
    left: auto
}

#product-list .products .product-miniature.list .right-block .product-add-to-cart {
    margin-top: 5px
}

#product-list .products .product-miniature.list .right-block .button-container,
#product-list .products .product-miniature.list .right-block .product-add-to-cart .btn-primary,
#product-list .products .product-miniature.list .right-block .product-add-to-cart .btn-primary span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

#product-list .products .product-miniature.list .right-block .product-add-to-cart .out-of-stock {
    pointer-events: unset
}

#product-list .products .product-miniature.list .right-block .button-container {
    margin-top: 5px;
    -ms-flex-pack: start;
    justify-content: flex-start
}

#product-list .products .product-miniature.list .right-block .button-container>div,
.product-action-wrap #productsnav a .product-short-image>div {
    display: -ms-inline-flexbox;
    display: inline-flex
}

#product-list .products .product-miniature.list .right-block .button-container .btn-primary {
    background: 0 0;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0 5px 0 0;
    color: #333
}

#product-list .products .product-miniature.list .right-block .button-container .btn-primary:hover,
.products .product-miniature.style-2 .product-container .button-container .btn-primary:hover {
    color: var(--color-primary)
}

#product-list .products .product-miniature.list .right-block .button-container .compare .btn-primary {
    margin: 0
}

#product-list .products .product-miniature .center-block .products-variants {
    margin-top: 10px
}

#product-list .products .product-miniature .center-block .product-list-reviews,
#product-list .products .product-miniature .center-block .star-wrapper {
    margin-top: 5px
}

#product-list .products .product-miniature .center-block .product-countdown {
    margin-top: 10px
}

.products .product-miniature .product-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    transition: all .3s ease 0s
}

.products .product-miniature .product-container .button-container .btn-primary {
    background-color: var(--color-btn-bg, var(--color-primary));
    color: var(--color-btn-text, #fff);
    border: 0
}

.products .product-miniature .product-container .button-container .btn-primary:hover {
    background: var(--color-btn-bg-hover, #000);
    color: var(--color-btn-text-hover, #fff);
    border: 0;
    box-shadow: none
}

.products .product-miniature .product-container .product-title {
    font-size: 14px
}

.products .product-miniature .product-container .product-price-and-shipping {
    font-size: 16px
}

.products .product-miniature .product-container .product-price-and-shipping .price {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-transform: none
}

.products .product-miniature .button-container .btn-primary,
.products .product-miniature .product-container .variant-links {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.products .product-miniature .product-container .variant-links .color {
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    margin-top: 3.5px;
    margin-bottom: 3.5px
}

.products .product-miniature .product-container .variant-links .count {
    color: #363a42;
    font-weight: 700;
    position: relative;
    vertical-align: middle
}

.products .product-miniature .product-container:hover .thumbnail-inner .product-thumbnail img {
    transition: all .7s ease 0s
}

.products .product-miniature .button-container .btn-primary {
    position: relative;
    margin: 0 4px;
    box-shadow: none;
    padding: 0;
    height: 34px;
    width: 34px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    transition: all .3s ease 0s
}

.products .product-miniature .button-container .btn-primary:before {
    font-family: 'Line Awesome Free';
    font-size: 18px;
    font-weight: 900;
    font-style: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.products .product-miniature .button-container .product-add-to-cart .select:before {
    content: '\f217'
}

.products .product-miniature .button-container .product-add-to-cart .add-to-cart:before {
    content: '\f07a'
}

.products .product-miniature .button-container .product-add-to-cart .customize:before {
    content: '\f013'
}

.products .product-miniature .button-container .product-add-to-cart .out-of-stock {
    pointer-events: unset
}

.products .product-miniature .button-container .product-add-to-cart .out-of-stock:before {
    content: '\f05e'
}

.products .product-miniature .button-container .quick-view-wrapper .quick-view:before {
    content: '\f06e'
}

.products .product-miniature .button-container .wishlist .td-wishlist-button:before {
    content: '\f004';
    font-weight: 400
}

.products .product-miniature .button-container .wishlist .td-wishlist-button.added:before {
    font-weight: 900
}

.products .product-miniature .button-container .compare .add_to_compare:before {
    content: '\f074'
}

.product-btn-block .compare .add_to_compare.added>i:before,
.products .product-miniature .button-container .compare .add_to_compare.added:before {
    content: '\f00c'
}

.products .product-miniature .product-countdown {
    width: 100%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    transition: all .3s ease 0s
}

.products .product-miniature .product-countdown .countdown-timer {
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 6px 20px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: rgba(0, 0, 0, .1) 0 1px 3px 0, rgba(0, 0, 0, .06) 0 1px 2px 0
}

.products .product-miniature .product-countdown .countdown-timer>.time-block {
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 8px 0 0;
    margin: 0 4px 0 0;
    position: relative
}

.products .product-miniature .product-countdown .countdown-timer>.time-block:after {
    content: ":";
    position: absolute;
    right: 0;
    top: 0
}

.products .product-miniature .product-countdown .countdown-timer>.time-block:last-child {
    margin: 0;
    padding: 0
}

.products .product-miniature .product-countdown .countdown-timer>.time-block:last-child:after {
    content: ""
}

.products .product-miniature .product-countdown .countdown-timer>.time-block span {
    display: block;
    text-align: center
}

.products .product-miniature .product-countdown .countdown-timer>.time-block .countdown-number,
.products .product-miniature.style-1 .product-container .button-container>div {
    position: relative
}

.products .product-miniature .product-countdown .countdown-timer>.time-block .time-unit {
    display: none
}

.products .product-miniature .product-countdown .countdown-timer>i {
    font-size: 20px;
    font-style: normal;
    margin-right: 10px;
    line-height: inherit
}

.products .product-miniature.style-1 .product-container .variant-links {
    position: absolute;
    right: 10px;
    top: 10px;
    transform: translateX(120%);
    transition: all .6s ease 0s
}

.products .product-miniature.style-1 .product-container .button-container {
    position: absolute;
    bottom: -15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    opacity: 0;
    transition: all .3s ease 0s
}

.products .product-miniature.style-1 .product-container .button-container .btn-primary {
    margin: 0 4px;
    box-shadow: none;
    padding: 0;
    height: 34px;
    width: 34px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0;
    transition: all .3s ease 0s
}

.products .product-miniature.style-1 .product-container .button-container .btn-primary i {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px
}

.products .product-miniature.style-1 .product-container .product-description {
    text-align: center;
    padding: 10px 0 0
}

.products .product-miniature.style-1 .product-container .product-description .product-title {
    margin: 0
}

.products .product-miniature.style-1 .product-container:hover .variant-links {
    transform: translateX(0)
}

.products .product-miniature.style-1 .product-container:hover .button-container {
    opacity: 1;
    bottom: 0
}

.products .product-miniature.style-1 .product-container:hover .product-countdown {
    opacity: 0
}

.products .product-miniature.style-1 .product-countdown {
    padding: 5px;
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.products .product-miniature.style-2 .product-container .hover-area {
    position: absolute;
    transform: translateX(-100px);
    left: 10px;
    bottom: 5px;
    opacity: 0;
    transition: all .5s ease 0s
}

.products .product-miniature.style-2 .product-container .hover-area .variant-links {
    -ms-flex-pack: start;
    justify-content: flex-start
}

.products .product-miniature.style-2 .product-container .button-container {
    position: absolute;
    top: 10px;
    right: 10px
}

.products .product-miniature.style-2 .product-container .button-container>div {
    opacity: 0;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    transform: translateX(80px);
    transition: all .5s ease 0s
}

.products .product-miniature.style-2 .product-container .button-container>div:nth-child(1) {
    transition-delay: .1s
}

.products .product-miniature.style-2 .product-container .button-container>div:nth-child(2) {
    transition-delay: .2s
}

.products .product-miniature.style-2 .product-container .button-container>div:nth-child(3) {
    transition-delay: .3s
}

.products .product-miniature.style-2 .product-container .button-container .btn-primary {
    border: 0;
    padding: 0;
    margin: 0;
    color: #333;
    background: 0 0;
    transition: all .5s ease 0s
}

.products .product-miniature.style-2 .product-container .button-container .wishlist .td-list-wishlist {
    top: 10px;
    bottom: auto;
    right: 100%;
    left: unset
}

.products .product-miniature.style-2 .product-container .product-description {
    padding-top: 15px;
    overflow: hidden;
    text-align: left;
    position: relative
}

.products .product-miniature.style-2 .product-container .product-description .product-title {
    margin: 0
}

.products .product-miniature.style-2 .product-container .product-description .product-price-and-shipping {
    margin-top: 6px;
    opacity: 1;
    transition: all .5s ease 0s
}

.products .product-miniature.style-2 .product-container .product-description .product-add-to-cart {
    position: absolute;
    bottom: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: all .5s ease 0s
}

.products .product-miniature.style-2 .product-container .product-description .product-add-to-cart .btn-primary {
    border: 0;
    padding: 0;
    color: #333;
    background: 0 0
}

.products .product-miniature.style-2 .product-container .product-description .product-add-to-cart .btn-primary:before {
    content: "\F067";
    display: inline-block;
    vertical-align: 1px;
    text-align: center;
    font-family: "FontAwesome";
    font-size: 10px;
    margin-right: 2px
}

.products .product-miniature.style-2 .product-container .product-description .product-add-to-cart .btn-primary:active,
.products .product-miniature.style-2 .product-container .product-description .product-add-to-cart .btn-primary:focus,
.products .product-miniature.style-2 .product-container .product-description .product-add-to-cart .btn-primary:hover {
    box-shadow: none;
    color: var(--color-primary)
}

.products .product-miniature.style-2 .product-container:hover .button-container>div,
.products .product-miniature.style-2 .product-container:hover .hover-area {
    opacity: 1;
    transform: translateX(0)
}

.products .product-miniature.style-2 .product-container:hover .product-description .product-price-and-shipping {
    opacity: 0;
    transform: translateY(-5px);
    transition: all .5s ease 0s
}

.products .product-miniature.style-2 .product-container:hover .product-description .product-add-to-cart {
    opacity: 1;
    transform: translateY(0);
    transition: all .5s ease 0s
}

.products .product-miniature.style-2 .product-container:hover .product-countdown {
    opacity: 0
}

.products .product-miniature.style-2 .product-countdown {
    padding: 5px;
    position: absolute;
    top: auto;
    bottom: 15px;
    left: 0;
    right: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.products .product-miniature.style-3 {
    transition: box-shadow .3s ease-in-out
}

.products .product-miniature.style-3 .product-container .quick-view-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all .5s ease 0s;
    transform: scale(0, 0)
}

.products .product-miniature.style-3 .product-container .quick-view-wrapper .btn-primary {
    border-radius: 0;
    background: 0 0;
    border: 0;
    box-shadow: none;
    color: #333;
    padding: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s ease 0s
}

.products .product-miniature.style-3 .product-container .quick-view-wrapper .btn-primary:before {
    content: '\f06e';
    font-family: 'Line Awesome Free';
    font-size: 20px;
    font-style: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.products .product-miniature.style-3 .product-container .quick-view-wrapper .btn-primary:hover {
    color: var(--color-primary)
}

.products .product-miniature.style-3 .product-container .button-container {
    position: absolute;
    left: 15px;
    right: 15px;
    opacity: 0;
    text-align: right;
    transform: translateY(50%);
    transition: all .5s ease 0s
}

.products .product-miniature.style-3 .product-container .button-container>div {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0
}

.products .product-miniature.style-3 .product-container .button-container>div:last-child .btn-primary {
    margin-left: 10px
}

#tdcomment-modal .modal-dialog .modal-body #criterions_list .tdstar_content,
.products .product-miniature.style-3 .product-container .button-container .product-add-to-cart {
    float: left
}

.products .product-miniature.style-3 .product-container .button-container .product-add-to-cart .btn-primary {
    width: 100%;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase
}

.products .product-miniature.style-3 .product-container .button-container .product-add-to-cart .btn-primary:before {
    content: ''
}

.products .product-miniature.style-3 .product-container .button-container .btn-primary {
    border: 0;
    padding: 0;
    margin: 0;
    width: 24px;
    height: 24px;
    color: #333;
    background: 0 0;
    transition: all .5s ease 0s
}

.products .product-miniature.style-3 .product-container .button-container .btn-primary:hover {
    color: var(--color-primary)
}

.products .product-miniature.style-3 .product-container .button-container .wishlist .td-list-wishlist {
    right: 0;
    left: auto
}

.products .product-miniature.style-3 .product-container .product-description {
    text-align: center;
    padding: 15px;
    transition: transform .4s
}

.products .product-miniature.style-3 .product-container .product-description .comments_note {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    transition: all .5s ease 0s
}

.products .product-miniature.style-3 .product-container .product-description .product-title {
    margin: 0 0 5px;
    text-align: left
}

.products .product-miniature.style-3 .product-container .product-description .product-price-and-shipping {
    margin-bottom: 3px;
    text-align: left
}

.products .product-miniature.style-3 .product-container .product-description .variant-links {
    transition: all .5s ease 0s;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 3px
}

.products .product-miniature.style-3 .product-container .product-description .variant-links a:first-child {
    margin-left: 0 !important
}

.products .product-miniature.style-3 .product-container:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .1);
    background-color: #fff;
    transition: box-shadow .4s
}

.products .product-miniature.style-3 .product-container:hover .quick-view-wrapper {
    transform: scale(1, 1);
    opacity: 1
}

.products .product-miniature.style-3 .product-container:hover .product-description {
    transform: translateY(-25px);
    background-color: #fff
}

.products .product-miniature.style-3 .product-container:hover .product-description .button-container {
    opacity: 1;
    transform: none
}

.products .product-miniature.style-3 .product-container:hover .product-countdown {
    opacity: 0
}

.products .product-miniature.style-3 .product-countdown {
    padding: 5px;
    position: absolute;
    top: auto;
    bottom: 10px;
    left: 0;
    right: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .5s ease 0s
}

.products .product-miniature.style-5 .product-container .button-container {
    position: absolute;
    top: 10px;
    right: 10px
}

.products .product-miniature.style-5 .product-container .button-container>div {
    opacity: 0;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    transform: translateX(80px);
    transition: all .5s ease 0s
}

.products .product-miniature.style-5 .product-container .button-container>div:nth-child(1) {
    transition-delay: .1s
}

.products .product-miniature.style-5 .product-container .button-container>div:nth-child(2) {
    transition-delay: .2s
}

.products .product-miniature.style-5 .product-container .button-container>div:nth-child(3) {
    transition-delay: .3s
}

.products .product-miniature.style-5 .product-container .button-container .btn-primary {
    border: 0;
    padding: 0;
    color: #333;
    background: 0 0;
    margin: 0;
    transition: all .5s ease 0s
}

.blogs article.blog .blog-content .blog-post-title a:hover,
.products .product-miniature.style-5 .product-container .button-container .btn-primary:hover {
    color: var(--color-primary)
}

.products .product-miniature.style-5 .product-container .button-container .wishlist .td-list-wishlist {
    top: 10px;
    bottom: auto;
    right: 100%;
    left: unset
}

.products .product-miniature.style-5 .product-container .product-add-to-cart {
    position: absolute;
    bottom: 0;
    opacity: 0;
    width: 100%;
    transform: translateY(12px);
    z-index: 1;
    transition: all .45s cubic-bezier(.49, .06, .21, .64)
}

.products .product-miniature.style-5 .product-container .product-add-to-cart .btn-primary {
    background: #333;
    color: #fff;
    border: 0;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-shadow: none;
    border-radius: 0;
    transition: all .45s cubic-bezier(.49, .06, .21, .64)
}

.products .product-miniature.style-5 .product-container .product-add-to-cart .btn-primary:hover {
    background: var(--color-btn-bg-hover, #000);
    color: var(--color-btn-text-hover, #fff)
}

.products .product-miniature.style-5 .product-container .product-description {
    padding-top: 15px;
    overflow: hidden;
    text-align: left;
    position: relative
}

.products .product-miniature.style-5 .product-container .product-description .product-title {
    margin: 0;
    text-align: center
}

.products .product-miniature.style-5 .product-container .product-description .product-price-and-shipping {
    margin-top: 6px;
    opacity: 1;
    text-align: center;
    transition: all .5s ease 0s
}

.products .product-miniature.style-5 .product-container .product-description .comments_note,
.products .product-miniature.style-6 .product-container .button-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .5s ease 0s
}

.products .product-miniature.style-5 .product-container:hover .button-container>div {
    opacity: 1;
    transform: translateX(0)
}

.products .product-miniature.style-5 .product-container:hover .product-add-to-cart {
    opacity: 1;
    transform: translateY(0);
    transition: all .5s ease 0s
}

.products .product-miniature.style-5 .product-container:hover .product-countdown {
    opacity: 0
}

.products .product-miniature.style-5 .product-countdown {
    padding: 5px;
    position: absolute;
    top: auto;
    bottom: 15px;
    left: 0;
    right: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.products .product-miniature.style-6 .product-container .button-container {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    opacity: 0;
    transition: all 500ms ease 0s
}

.products .product-miniature.style-6 .product-container .button-container>div {
    position: relative
}

.products .product-miniature.style-6 .product-container .button-container .btn-primary {
    margin: 0 3px;
    box-shadow: none;
    padding: 0;
    height: 34px;
    width: 34px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s ease 0s
}

.products .product-miniature.style-6 .product-container .variant-links {
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    opacity: 0;
    transition: all .5s ease 0s
}

.products .product-miniature.style-6 .product-container .product-countdown {
    padding: 5px;
    position: absolute;
    top: auto;
    bottom: 15px;
    left: 0;
    right: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.products .product-miniature.style-6 .product-container .product-description {
    padding-top: 10px;
    overflow: hidden;
    text-align: left;
    position: relative
}

.products .product-miniature.style-6 .product-container .product-description .product-title {
    margin: 0;
    text-align: center
}

.products .product-miniature.style-6 .product-container .product-description .product-price-and-shipping {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 1;
    text-align: center;
    transition: all .5s ease 0s
}

.products .product-miniature.style-6 .product-container .product-description .comments_note {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .5s ease 0s
}

.products .product-miniature.style-6 .product-container .product-description .product-add-to-cart {
    opacity: 1;
    text-align: center;
    transition: all .45s cubic-bezier(.49, .06, .21, .64)
}

.products .product-miniature.style-6 .product-container .product-description .product-add-to-cart .btn-primary {
    padding: 8px 5px;
    min-width: 150px;
    margin: 0 auto;
    border: 0;
    text-align: center;
    box-shadow: none;
    transition: all .45s cubic-bezier(.49, .06, .21, .64)
}

.products .product-miniature.style-6 .product-container:hover .button-container {
    opacity: 1;
    top: 50%;
    transition: all .5s ease 0s
}

.products .product-miniature.style-6 .product-container:hover .variant-links {
    opacity: 1
}

.products .product-miniature.style-6 .product-container:hover .product-add-to-cart {
    opacity: 1;
    transition: all .5s ease 0s
}

.products .product-miniature.style-6 .product-container:hover .product-countdown {
    opacity: 0
}

.products .product-miniature.style-left .product-container {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.products .product-miniature.style-left .product-container .thumbnail-container {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative
}

.products .product-miniature.style-left .product-container .thumbnail-container .thumbnail-inner {
    position: relative;
    overflow: hidden
}

.products .product-miniature.style-left .product-container .thumbnail-container .thumbnail-inner .product-thumbnail {
    display: block;
    text-align: center;
    position: relative
}

.products .product-miniature.style-left .product-container .thumbnail-container .thumbnail-inner .product-thumbnail img {
    margin: 0 auto;
    width: 85px;
    height: auto
}

.products .product-miniature.style-left .product-container .product-flags {
    display: none
}

.products .product-miniature.style-left .product-container .product-description {
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    text-align: left;
    padding: 0 0 0 15px
}

.products .product-miniature.style-left .product-container .product-description .product-title {
    margin: 0
}

.products .product-miniature.style-left .product-container .product-description .product-price-and-shipping {
    margin-top: 2px
}

.product-add-to-cart form {
    width: auto;
    max-width: auto
}

.facet-block .custom-control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: center;
    align-content: center;
    min-height: 0
}

.facet-block .custom-control .custom-control-label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row
}

.facet-block .custom-control .custom-control-label:after,
.facet-block .custom-control .custom-control-label:before {
    top: 0;
    bottom: 0;
    margin: auto
}

.facet-block .custom-color {
    font-size: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.facet-block .custom-color .color {
    margin: 0 8px 0 0
}

.facet-block:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    padding-bottom: 10px
}

.facet-block:not(:first-child) {
    padding-top: 10px
}

#offcanvas_search_filter p.title_block,
.facet-block .remove {
    display: none
}

.subcategories .subcategories-wrapper {
    margin-bottom: -15px
}

.subcategories .subcategories-wrapper .subcategory-name {
    margin: 10px 0 15px;
    font-size: 14px;
    font-weight: 500;
    background-color: #E3AF3E;
    border-radius: 20px;
    display: flex;
    align-content: space-around;
}

#search_filter_toggler {
    font-size: 14px;
    -ms-flex-line-pack: center;
    align-content: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 30px
}

#search_filter_toggler i {
    font-size: 24px;
    font-weight: 600;
    vertical-align: middle;
    line-height: inherit;
    margin: 0 5px 0 0
}

#offcanvas_search_filter .modal-header {
    background: #f5f5f5;
    color: #232323;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border: 0
}

#search_filters,
#search_filters .facet ul {
    margin-bottom: 0
}

#search_filters>h4 {
    display: block;
    margin: 0
}

#search_filters .ui-slider-horizontal {
    height: .4em
}

#search_filters .ui-slider-horizontal .ui-slider-handle {
    margin-left: -1px;
    cursor: pointer
}

#search_filters .ui-widget-header {
    background: #555
}

#search_filters .facet .faceted-slider {
    margin-bottom: 10px
}

#search_filters .facet .faceted-slider .ui-slider {
    height: 7px;
    border: 0;
    margin: 0;
    background: #ddd;
    border-radius: 10px
}

#search_filters .facet .faceted-slider .ui-slider .ui-slider-range {
    background: #000
}

#search_filters .facet .faceted-slider .ui-slider .ui-slider-handle {
    top: 0;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 25px;
    bottom: 0;
    margin: auto
}

#search_filters .facet .faceted-slider .ui-slider .ui-slider-handle:last-child {
    margin-left: -15px
}

#search_filters .facet .color_facet {
    display: -ms-flexbox;
    display: flex;
    margin: 0
}

#search_filters .facet .color_facet li:last-child .color,
.blockreassurance_product>div:last-child,
.pagination ul li:last-child {
    margin: 0
}

#search_filters .facet .facet-title {
    margin-bottom: 0;
    padding: 10px 0;
    display: inline-block;
    font-weight: 400;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap
}

#search_filters .facet .facet-label {
    padding: 5px 0;
    margin: 0;
    width: 100%;
    text-align: left
}

#search_filters .facet .facet-label a {
    width: 100% !important;
    overflow: visible !important;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 30px);
    text-overflow: ellipsis;
    white-space: nowrap
}

#search_filters .facet .facet-label .input-color {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    position: absolute;
    cursor: pointer;
    opacity: 0
}

#search_filters .facet .facet-label .input-color:checked+span {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

#search_filters .facet .facet-label .input-color:checked+span:before {
    visibility: visible;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    opacity: 1;
    filter: alpha(opacity=100);
    border: 0
}

#search_filters .facet .facet-label .input-color:hover+span {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

#search_filters .facet .facet-label .color {
    margin: 5px 5px 5px 0;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 3px solid #fff;
    position: relative;
    transition: opacity .3s ease 0s;
    vertical-align: top;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .5)
}

#search_filters .facet .title {
    cursor: pointer;
    position: relative
}

#search_filters .facet .title .collapse-icons .remove,
#search_filters .facet .title[aria-expanded=true] .collapse-icons .add {
    display: none
}

#search_filters .facet .collapse.show,
#search_filters .facet .title[aria-expanded=true] .collapse-icons .remove,
.cart-summary .cart-btn-actions>a,
.cart-summary .cart-detailed-actions>a {
    display: block
}

#search_filters .facet .navbar-toggler {
    display: inline-block;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    line-height: inherit
}

#search_filters .facet .navbar-toggler i {
    color: currentcolor
}

#search_filters .facet .collapse {
    display: none
}

.pagination,
.pagination ul {
    display: -ms-flexbox;
    display: flex
}

.pagination {
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0
}

.pagination ul {
    margin: 0;
    padding: 0
}

.pagination ul li,
.pagination ul li a,
.pagination ul li a i {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.pagination ul li {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 40px;
    height: 40px;
    margin: 0 4px
}

.pagination ul li a,
.pagination ul li a i {
    display: -ms-flexbox;
    display: flex
}

.pagination ul li a {
    height: 100%;
    width: 100%;
    border-radius: 50px
}

.pagination ul li a i {
    font-size: 20px
}

.pagination ul li a:hover {
    background-color: #f3f3f3;
    color: inherit
}

.pagination ul li a:active,
.pagination ul li a:focus {
    color: inherit
}

.pagination ul .current a {
    background-color: #f3f3f3
}

.active_filters {
    margin: -5px 0 15px -5px
}

.active_filters .active-filter-title {
    font-weight: 700;
    white-space: nowrap;
    padding-top: 7px;
    margin-bottom: 0
}

.active_filters .filter-block {
    margin: 5px;
    background: #ebebeb;
    padding: 2px 8px;
    border-radius: 5px
}

.active_filters .js-search-link i {
    color: currentcolor;
    font-size: 14px;
    float: right;
    font-weight: 700;
    line-height: inherit
}

.block .title_block {
    position: relative
}

.block .block-categories .category-top-menu {
    margin: 0
}

.block .block-categories .category-sub-menu li .category-sub-menu {
    padding: 0 0 0 15px
}

.block .block-categories .category-sub-menu .icon-collapse {
    position: absolute;
    right: 0;
    top: 5px;
    padding: 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25px;
    height: 25px
}

.faceted-overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(25, 25, 25, .5);
    z-index: 100
}

.faceted-overlay .overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute
}

.faceted-overlay .overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%)
}

.faceted-overlay .spinner {
    width: 60px;
    height: 60px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, .08);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid
}

.products {
    -ms-flex-align: stretch;
    align-items: stretch
}

.main-product-details {
    position: relative
}

#offcanvas_sidecart .cart-body .products .product .cart-images img,
.blockcart .cart_block .block_content .cart-body .products .product .cart-images img,
.slick-slide .product-miniature {
    max-width: 100%
}

.js-cover-carousel .js-product-cover-images,
.js-cover-mobilecarousel .js-product-cover-images,
.js-cover-multicarousel .js-product-cover-images,
.js-cover-singlecarousel .js-product-cover-images,
.js-cover-vcarousel .js-product-cover-images {
    margin-left: 0;
    margin-right: 0;
    display: block
}

.js-cover-carousel .product-img,
.js-cover-mobilecarousel .product-img,
.js-cover-multicarousel .product-img,
.js-cover-singlecarousel .product-img,
.js-cover-vcarousel .product-img {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%
}

.js-cover-carousel .js-product-cover-images>.product-img:not(.product-img-0),
.js-cover-carousel .product-thumbs-outer .product-thumbs>.product-thumb:not(.product-thumb-0):not(.product-thumb-1):not(.product-thumb-2):not(.product-thumb-3),
.js-cover-mobilecarousel .js-product-cover-images>.product-img:not(.product-img-0),
.js-cover-multicarousel .js-product-cover-images>.product-img:not(.product-img-0):not(.product-img-1):not(.product-img-2),
.js-cover-singlecarousel .js-product-cover-images>.product-img:not(.product-img-0),
.js-cover-vcarousel .js-product-cover-images>.product-img:not(.product-img-0),
.js-cover-vcarousel .product-thumbs-outer .product-thumbs>.product-thumb:not(.product-thumb-0):not(.product-thumb-1):not(.product-thumb-2),
.product-thumbs:not(.slick-initialized)>div:not(:first-child) {
    display: none
}

.product-thumbs {
    margin: 0 auto
}

.product-thumb.slick-current {
    opacity: .65
}

.images-container {
    position: relative
}

.images-container .product-cover {
    position: relative;
    margin-bottom: 6px
}

.product-style-4 .images-container .product-cover,
.product-style-5 .images-container .product-cover,
.product-style-6 .images-container .product-cover,
.product-style-7 .images-container .product-cover,
.product-style-8 .images-container .product-cover,
.product-style-9 .images-container .product-cover {
    margin-bottom: 0
}

.product-style-6 .images-container .product-cover .js-product-cover-images {
    margin-left: 0;
    margin-right: 0
}

.product-style-8 .images-container .product-cover .js-product-cover-images {
    margin-left: -5px;
    margin-right: -5px
}

.images-container .product-cover .product-img {
    position: relative;
    overflow: hidden
}

.images-container .product-cover .product-img .easyzoom {
    position: relative
}

.images-container .product-cover .product-img .easyzoom-flyout img {
    max-width: none
}

.product-style-6 .images-container .product-cover .product-img {
    padding-left: 1px;
    padding-right: 1px
}

.product-style-8 .images-container .product-cover .product-img {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px
}

.product-style-9 .images-container .product-cover .product-img {
    max-width: 100%;
    margin-bottom: 5px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
}

.product-style-9 .images-container .product-cover .product-img:nth-last-child(1) {
    margin-bottom: 0
}

.images-container .product-cover .product-img .layer {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    cursor: pointer;
    background: #fff;
    height: 40px;
    min-width: 40px;
    padding: 7px;
    border-radius: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0 5px rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .7)
}

.images-container .product-cover .product-img .layer i,
.product-action-wrap .product-breadcrumb li {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.images-container .product-cover .product-img .layer i {
    min-width: 40px;
    height: 40px;
    font-size: 20px
}

.images-container .product-cover .product-extra-content {
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 2
}

.images-container .product-cover .product-extra-content .pro_360,
.images-container .product-cover .product-extra-content .video {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    overflow: hidden;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 40px;
    margin-top: 10px;
    height: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0 5px rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .7)
}

.images-container .slick-arrow {
    background: 0 0;
    border: 0;
    color: #666;
    width: 30px;
    height: 30px;
    font-size: 0;
    padding: 2px;
    text-align: center;
    margin: -15px 0 0;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    transition: all .5s ease 0s
}

.images-container .slick-arrow:before {
    font-family: "Line Awesome Free";
    font-size: 30px;
    font-weight: 900
}

.images-container .slick-prev {
    left: 0
}

.images-container .slick-prev:before {
    content: '\f104'
}

.images-container .slick-next {
    right: 0
}

.images-container .slick-next:before {
    content: "\f105"
}

.images-container .product-cover:hover .slick-prev {
    left: 15px
}

.images-container .product-cover:hover .slick-next {
    right: 15px
}

.images-container .product-cover:hover .slick-arrow {
    opacity: 1
}

.images-container .product-thumbs .slick-arrow {
    margin: auto;
    top: 0;
    bottom: 0
}

.images-container .product-thumbs .slick-arrow:before {
    font-size: 30px
}

.js-cover-vcarousel .images-container .product-thumbs .slick-prev {
    left: 0;
    top: 0;
    bottom: auto;
    right: 0
}

.js-cover-vcarousel .images-container .product-thumbs .slick-prev:before {
    content: "\f106"
}

.js-cover-vcarousel .images-container .product-thumbs .slick-next {
    right: 0;
    bottom: 0;
    top: auto;
    left: 0
}

.js-cover-vcarousel .images-container .product-thumbs .slick-next:before {
    content: "\f107"
}

.images-container .product-thumbs:hover .slick-prev {
    left: 15px
}

.images-container .product-thumbs:hover .slick-next {
    right: 15px
}

.images-container .product-thumbs:hover .slick-arrow {
    opacity: 1
}

.js-cover-vcarousel .images-container .product-thumbs:hover .slick-prev {
    top: 15px;
    left: 0
}

.js-cover-vcarousel .images-container .product-thumbs:hover .slick-next {
    bottom: 15px;
    right: 0
}

.js-cover-mobilecarousel .product-cover .slick-dots {
    margin-top: 10px
}

.product-thumbs-outer .product-thumbs {
    margin: 0 -3px
}

.js-cover-vcarousel .product-thumbs-outer .product-thumbs {
    margin: 0
}

.product-thumbs-outer .product-thumbs .product-thumb {
    margin: 0 3px
}

.js-cover-vcarousel .product-thumbs-outer .product-thumbs .product-thumb {
    margin: 0 0 10px;
    border: medium
}

.js-cover-mobilecarousel .product-thumbs-outer,
.product-action-wrap .product-breadcrumb .breadcrumb-item+.breadcrumb-item:before,
.product-style-6 .product-thumbs-outer,
.product-style-7 .product-thumbs-outer,
.product-style-8 .product-thumbs-outer,
.product-style-9 .product-thumbs-outer {
    display: none
}

.js-cover-vcarousel .images-container .product-thumbs-outer {
    position: absolute;
    width: 100px;
    top: 0
}

.product-style-4 .js-cover-vcarousel .images-container {
    padding-left: 110px
}

.product-style-4 .js-cover-vcarousel .images-container .product-thumbs-outer {
    left: 0
}

.product-style-5 .js-cover-vcarousel .images-container {
    padding-right: 110px
}

.product-style-5 .js-cover-vcarousel .images-container .product-thumbs-outer {
    right: 0
}

.product-action-wrap .product-breadcrumb,
.product_title {
    -ms-flex: 1;
    flex: 1;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.product_title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-product-title, #000)
}

.product-action-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0 30px
}

.product-action-wrap .product-breadcrumb {
    line-height: 1.5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.cart-summary .cart-voucher .promo-discounts li,
.product-action-wrap .product-breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding: 0
}

.product-action-wrap .product-breadcrumb li {
    list-style: none;
    position: relative
}

.product-action-wrap .product-breadcrumb li:after {
    content: ">";
    margin: 0 8px
}

.product-action-wrap .product-breadcrumb li:first-child i {
    font-size: 16px
}

.product-action-wrap #productsnav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.product-action-wrap #productsnav a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.product-action-wrap #productsnav a i {
    height: 25px;
    font-size: 20px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-align: center;
    justify-items: center
}

.product-action-wrap #productsnav a .product-short-image {
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-align: flex-start;
    justify-items: flex-start;
    visibility: hidden;
    opacity: 0;
    padding: 5px;
    width: 210px;
    position: absolute;
    z-index: 9;
    right: 0;
    top: calc(100% + 8px);
    transition: transform .4s ease, opacity .4s ease, visibility .4s ease;
    transform: translateY(20px)
}

.product-action-wrap #productsnav a .product-short-image .image-thumb {
    margin-right: 8px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.product-action-wrap #productsnav a .product-short-image .image-thumb img {
    max-height: 80px
}

.product-action-wrap #productsnav a .product-short-image .product-short-description {
    line-height: 20px;
    color: #7a7a7a;
    -ms-flex: 1;
    flex: 1
}

.product-action-wrap #productsnav a:hover .product-short-image {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.product-information {
    margin-top: 20px
}

.js-product-images-modal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5
}

.js-product-images-modal>div {
    margin-bottom: 5px
}

.js-product-images-modal>div .label {
    margin-right: 10px;
    font-weight: 600;
    color: #232323;
    text-transform: uppercase
}

.js-product-images-modal .product-manufacturer {
    float: right;
    margin: 0
}

.js-product-images-modal .product-manufacturer img {
    max-height: 70px
}

.product-actions .control-label {
    margin: 0;
    display: block;
    min-width: 100px
}

.product-actions #product-availability,
.product-actions .control-label+* {
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.product-actions .control-label+* {
    margin: 0;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.product-actions #product-availability {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
    font-weight: 500
}

.product-actions #product-availability .product-available {
    color: #745f5f
}

.product-actions #product-availability .product-unavailable {
    color: #dc3545
}

.product-actions #product-availability .product-last-items {
    color: #ffc107
}

.product-actions .product-add-to-cart {
    margin-top: 20px
}

.product-actions .product-add-to-cart .control-label {
    display: none
}

.product-actions .add-to-cart {
    height: 40px;
    padding: 11px 12px;
    line-height: 18px
}

.product-actions .add-to-cart .material-icons {
    line-height: inherit
}

.product-actions .product-payment-logo {
    margin-top: 20px
}

.product-quantity-touchspin .input-group {
    overflow: hidden;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border: 1px solid #e5e5e5;
    border-radius: var(--input-border-radius, 0)
}

.product-quantity-touchspin .input-group .input-group-btn>.btn {
    background: #fff;
    color: #232323;
    width: 30px;
    height: 100%;
    min-width: 0;
    padding: 0;
    font-size: 16px;
    border-radius: 0;
    border: 0
}

.product-quantity-touchspin .input-group .input-group-btn>.btn:not(:disabled):not(.disabled).active,
.product-quantity-touchspin .input-group .input-group-btn>.btn:not(:disabled):not(.disabled):active,
.product-quantity-touchspin .input-group .input-group-btn>.btn:not(:disabled):not(.disabled):focus,
.product-quantity-touchspin .input-group .input-group-btn>.btn:not(:disabled):not(.disabled):hover {
    background: #fff;
    color: #232323
}

.product-quantity-touchspin .input-group input[type=number] {
    text-align: center;
    color: #232323;
    border: 0;
    background: #fff;
    box-shadow: none;
    padding: 0 3px;
    height: 40px;
    width: 50px;
    border-radius: 0 !important;
    -moz-appearance: textfield
}

.product-quantity-touchspin .input-group input[type=number]::-webkit-inner-spin-button,
.product-quantity-touchspin .input-group input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.product-quantity,
.product-tabs .nav-tabs .nav-item a.active:after {
    width: 100%
}

.product-quantity .qty {
    border: 1px solid #f5f5f5;
    margin-right: 10px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 50px
}

.product-quantity .add {
    -ms-flex: 1;
    flex: 1
}

.product-quantity .add .add-to-cart {
    width: 100%;
    padding: 0 10px;
    transition: all .3s ease-out 0s
}

.product-quantity #quantity_wanted {
    color: #232323;
    background-color: #fff;
    box-shadow: none;
    height: 40px;
    padding: 3px 8px;
    width: 50px;
    text-align: center;
    z-index: auto
}

.product-quantity #quantity_wanted:focus {
    box-shadow: none
}

.product-quantity .input-group-btn-vertical .btn {
    padding: 8px 11px
}

.product-quantity .input-group-btn-vertical .btn i {
    font-size: 16px;
    top: 2px;
    left: 3px
}

.product-quantity .btn-touchspin {
    height: 21px
}

.product-btn-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-top: 15px
}

.product-btn-block .buy-now {
    width: 100%;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600
}

.product-btn-block .compare,
.product-btn-block .tdsize-chart,
.product-btn-block .wishlist {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    margin: 5px 15px 5px 0
}

.product-btn-block .compare i,
.product-btn-block .tdsize-chart i,
.product-btn-block .wishlist i {
    margin-right: 8px
}

.product-btn-block .wishlist .td-wishlist-button.added>i {
    font-weight: 900
}

.product-btn-block .td-wishlist-button-dropdown {
    height: 100%
}

.product-btn-block .add_to_compare,
.product-btn-block .schart,
.product-btn-block .td-wishlist-button {
    transition: all .3s ease-out 0s;
    box-shadow: none;
    border: medium;
    width: 100%;
    height: 100%;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.product-discounts {
    margin-top: 20px
}

.product-discounts .product-discounts-title {
    margin: 0 0 10px;
    font-size: 14px
}

.product-discounts>.table-product-discounts {
    max-width: 500px;
    width: 100%;
    margin: 0
}

.product-discounts>.table-product-discounts thead tr th {
    width: 33%;
    padding: 10px;
    text-align: center
}

.product-discounts>.table-product-discounts tbody tr td {
    padding: 10px;
    text-align: center
}

.product-countdown.product-countdown-style-1 {
    color: #ff706b
}

.product-countdown.product-countdown-style-1 .countdown-header {
    margin-bottom: 12px
}

.product-countdown.product-countdown-style-1 .countdown-header .countdown-heading {
    font-size: 20px;
    font-weight: 500
}

.product-countdown.product-countdown-style-1 .countdown-timer {
    margin-bottom: 15px
}

.product-countdown.product-countdown-style-1 .countdown-timer .time-block {
    background-color: #fff5f4;
    border: 1px solid #ffd7d6;
    height: 70px;
    width: 70px;
    -ms-flex-align: center;
    align-items: center;
    border-radius: .375rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 20px;
    margin-right: 10px
}

.product-countdown.product-countdown-style-1 .countdown-timer .time-block:last-child {
    margin-right: 0
}

.product-countdown.product-countdown-style-1 .countdown-timer .time-block .countdown-number {
    font-size: 26px;
    margin-bottom: 8px
}

.product-countdown.product-countdown-style-1 .countdown-timer .time-block .time-unit {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase
}

.product-countdown.product-countdown-style-2 {
    color: #ff706b;
    -ms-flex-align: center;
    align-items: center;
    background: #fdefee;
    border: 1px solid #f8cccc;
    border-radius: 5px;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
    margin-bottom: 15px
}

.product-countdown.product-countdown-style-2 .countdown-header {
    margin-bottom: 0
}

.product-countdown.product-countdown-style-2 .countdown-header .countdown-heading {
    font-size: 18px;
    font-weight: 500
}

.page-stores .store-item .store-item-container .border-left .table td ul,
.product-countdown.product-countdown-style-2 .countdown-timer,
.product-customization ul,
.quickview .modal-content .modal-body .right-block .qv-innner #product-description-short>p {
    margin: 0
}

.product-countdown.product-countdown-style-2 .countdown-timer .time-block {
    height: auto;
    width: auto;
    display: -ms-flexbox;
    display: flex;
    padding: 0 8px;
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center
}

.product-countdown.product-countdown-style-2 .countdown-timer .time-block:last-child {
    padding-right: 0
}

.product-countdown.product-countdown-style-2 .countdown-timer .time-block .countdown-number {
    font-size: 20px;
    font-weight: 500;
    min-width: 34px;
    text-align: center
}

.product-countdown.product-countdown-style-2 .countdown-timer .time-block .time-unit,
.product-variants>.product-variants-item .input-container.combination-outstock.attribute-instock:hover .outStockContent {
    display: none
}

.product-countdown.product-countdown-style-2 .countdown-timer .time-block:not(:last-child):after {
    content: ":";
    font-size: 22px;
    position: absolute;
    right: -3px;
    top: -3px
}

.product-prices,
.product-tabs .nav-tabs .nav-item a {
    margin: 20px 0 0;
    display: inline-block;
    vertical-align: middle;
    width: 100%
}

.product-prices>div {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0
}

.product-prices .tax-shipping-delivery-label {
    font-size: 13px;
    color: #363a42;
    display: block
}

.product-prices .tax-shipping-delivery-label>span {
    margin: 5px 0 0;
    display: block
}

.product-discount .regular-price {
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 10px
}

.product-price {
    display: inline-block;
    font-size: 24px;
    color: var(--color-regular-price)
}

.product-price.has-discount .discount {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    padding: 4px 10px;
    margin-left: 10px
}

.product-price.has-discount .current-price .discount {
    text-transform: capitalize
}

.regular-price {
    color: var(--color-sale-price)
}

.product-price-and-shipping .price {
    color: var(--color-regular-price)
}

.product-unit-price {
    font-size: 10px;
    margin-left: 10px;
    margin-bottom: 0
}

.product-tabs {
    margin-top: 40px;
    margin-bottom: 32px
}

.product-tabs .tab-content {
    padding-top: 20px
}

.product-tabs .nav-tabs .nav-item {
    display: inline-block;
    float: none;
    margin: 0 30px
}

.product-tabs .nav-tabs .nav-item a {
    margin: 0;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: #cacaca;
    position: relative
}

.product-tabs .nav-tabs .nav-item a:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: width .25s ease-in-out
}

.product-tabs.accordion-tabs .accordion-tab-title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    display: block;
    padding: 12px 0;
    position: relative
}

.product-tabs.accordion-tabs [data-toggle=collapse][aria-expanded=true]:after,
.product-tabs.tab-tabs .tab-content [data-toggle=collapse][aria-expanded=true]:after {
    transform: rotate(180deg)
}

.product-tabs.accordion-tabs .accordion-tab-content {
    padding: 15px 0
}

.product-tabs.normal-tabs .block .tab-title {
    margin-bottom: 20px;
    font-weight: 500
}

.product-tabs.tab-tabs .tab-content .accordion-tab-title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    display: block;
    padding: 12px 0;
    position: relative
}

.product-tabs.accordion-tabs .accordion-tab-title:after,
.product-tabs.tab-tabs .tab-content .accordion-tab-title:after {
    content: "\E313";
    font-family: "Material Icons";
    font-size: 22px;
    position: absolute;
    right: 0;
    transition: transform .3s ease-in-out
}

#product-details .product-details-info .product-manufacturer {
    margin-bottom: 20px
}

#product-details .product-details-info .product-manufacturer img {
    border: medium;
    box-shadow: none;
    max-width: 200px
}

#product-details .product-details-info .label {
    color: #232323;
    font-weight: 500
}

.product-features {
    margin-top: 20px
}

.product-features>ul.data-sheet li {
    padding: 7px 0;
    border-bottom: 1px solid var(--color-border)
}

.product-features>ul.data-sheet li .label {
    display: inline-block;
    color: #232323;
    font-weight: 500;
    width: 10%
}

.product-features>ul.data-sheet li .value {
    display: inline-block;
    width: calc(90% - 10px);
    vertical-align: top;
    margin: 0;
    padding: 0
}

.product-attachments .attachment>h4,
.product-features p.h6 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0
}

.product-variants>.product-variants-item {
    margin-top: 20px;
    width: 100%;
    -ms-flex-align: center;
    align-items: center
}

.product-variants>.product-variants-item .control-label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #232323
}

.product-variants>.product-variants-item select {
    height: 40px;
    min-width: 75px;
    width: auto;
    line-height: 13px
}

.product-variants>.product-variants-item .input-container {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin: 5px 10px 5px 0;
    position: relative
}

.product-variants>.product-variants-item .input-container label {
    margin: 0;
    overflow: hidden
}

.product-variants>.product-variants-item .input-container.combination-outstock label {
    border-color: red !important;
    opacity: .6
}

.product-variants>.product-variants-item .input-container.combination-outstock label:after {
    content: '';
    background: linear-gradient(to top left, transparent 0, transparent calc(50% - 2px), red 50%, transparent calc(50% + 2px), transparent 100%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%
}

.product-variants>.product-variants-item .input-container.combination-outstock.attribute-instock:hover .otherStockContent,
.product-variants>.product-variants-item .input-container.combination-outstock:hover .outStockContent {
    display: -ms-flexbox;
    display: flex
}

.product-variants>.product-variants-item .input-container.combination-outstock.attribute-instock label {
    border-color: #fd6 !important;
    opacity: .6
}

.product-variants>.product-variants-item .input-container.combination-outstock.attribute-instock label:after {
    content: '';
    background: linear-gradient(to top left, transparent 0, transparent calc(50% - 2px), #fd6 50%, transparent calc(50% + 2px), transparent 100%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%
}

.product-variants>.product-variants-item .input-container .stock-alert {
    position: absolute;
    top: 0;
    height: 60px;
    width: 120px;
    z-index: 1;
    left: 0;
    display: none;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    transform: translate(-25%, -110%);
    font-size: 12px;
    line-height: 1.1em
}

.product-variants>.product-variants-item .input-color,
.product-variants>.product-variants-item .input-radio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 1
}

.product-variants>.product-variants-item .input-color:checked+label,
.product-variants>.product-variants-item .input-radio:checked+label {
    color: #222;
    outline: 2px solid #222
}

.product-variants>.product-variants-item .color,
.product-variants>.product-variants-item .radio-label {
    border-radius: var(--btn-border-radius, 0);
    border: 2px solid transparent;
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.product-variants>.product-variants-item .radio-label {
    padding: 6px 12px;
    text-align: center;
    min-width: 40px;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, .2);
    background: #fff;
    font-weight: 700
}

.product-variants>.product-variants-item .color {
    width: 40px;
    height: 40px;
    transition: opacity .3s ease 0s;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .4);
    cursor: pointer;
    background-size: contain
}

.product-flags {
    position: absolute;
    top: 3px;
    margin-bottom: 0;
    z-index: 2;
    left: 3px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    pointer-events: none;
    transition: all .5s ease 0s
}

.product-flags .product-flag {
    padding: 3px 4px;
    float: left;
    clear: both;
    line-height: 1;
    font-weight: 500;
    border-radius: 2px;
    margin-left: 3px;
    margin-top: 3px
}

.product-cover:hover .product-flags {
    display: none;
    transition: all .5s ease 0s
}

.product-customization {
    border: 1px solid rgba(161, 161, 161, .25);
    padding: 15px;
    margin-top: 20px
}

.product-customization .h4.card-title {
    font-size: 14px;
    font-weight: 500
}

#offcanvas_account form,
.product-customization .product-customization-item {
    margin: 20px 0
}

.product-customization .product-message {
    width: 100%;
    height: 50px;
    resize: none;
    padding: 10px
}

.product-customization .file-input {
    width: 100%;
    opacity: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    height: 42px;
    overflow: hidden;
    position: absolute
}

.product-customization .custom-file {
    position: relative;
    background: #f6f6f6;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-indent: 10px;
    display: block;
    margin-top: 20px
}

.product-customization .custom-file button {
    z-index: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%
}

.lang-rtl .product-customization .custom-file button {
    left: 0;
    right: auto
}

.js-product-meta,
.product-pack,
.product-refresh {
    margin-top: 20px
}

.product-pack p.h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px
}

.product-pack .pack-product-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 15px
}

.product-pack .pack-product-container .thumb-mask {
    width: 55px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.product-pack .pack-product-container .pack-product-name {
    font-size: 14px;
    -ms-flex: 1;
    flex: 1;
    margin: 0 10px
}

.product-pack .pack-product-container .pack-product-price {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.product-pack .pack-product-container .pack-product-quantity {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 10px;
    margin-left: 10px
}

.js-product-meta .product-cats,
.js-product-meta .product-tags {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.js-product-meta .product-cats .label,
.js-product-meta .product-tags .label {
    margin-right: 10px;
    font-weight: 600;
    color: #232323;
    text-transform: uppercase
}

.color {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
    border: 1px solid rgba(0, 0, 0, .05);
    cursor: pointer;
    background-size: contain
}

.product-title {
    text-decoration: none
}

.btn-add-to-cart {
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap
}

.product-tabs .nav-tabs {
    font-size: .9rem
}

.modal-cart__image {
    margin-right: 1rem;
    max-width: 200px;
    height: auto
}

.tdblockcart-modal .close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    opacity: 1 !important;
    border-radius: 50%;
    width: 30px;
    height: 30px
}

.tdblockcart-modal .cart-products {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.tdblockcart-modal .cart-products .cart-products__thumb {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
    padding-right: 10px
}

.tdblockcart-modal .cart-products .cart-products__desc {
    -ms-flex: 1 1;
    flex: 1 1
}

.tdblockcart-modal .cart-products .product-name {
    font-size: 20px;
    font-weight: 500
}

.tdblockcart-modal .cart-totals {
    margin-bottom: 20px
}

#footer .block-social,
.tdblockcart-modal .cart-buttons {
    text-align: center
}

.tdblockcart-modal .cart-buttons>* {
    width: 100%
}

.tdblockcart-modal .cart-buttons .btn-continue {
    margin-top: 10px;
    background: 0 0;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 4px
}

#page #wrapper .product-container .page-content {
    margin-bottom: 0;
    line-height: inherit
}

.cart-container {
    position: relative
}

.cart-items {
    margin-bottom: 10px
}

.cart-items .cart-item {
    padding: 15px 0
}

.cart-items .cart-item.order-confirmation-total {
    padding-bottom: 0
}

.cart-items .cart-item+.cart-item {
    border-top: 1px solid #e5e5e5
}

.cart-items .cart-item:first-child {
    padding-top: 0
}

.product-line-actions,
.product-line-details,
.product-line-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.product-line-actions {
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: unset
}

.product-line-actions .cart-line-product-actions .remove-from-cart i {
    font-size: 20px
}

.product-line-grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative
}

.product-line-grid .product-image {
    margin: 0 10px 0 0;
    max-width: 30%
}

.product-line-grid .product-name {
    padding: 0;
    margin: 0;
    font-weight: 600
}

.product-line-grid .product-price {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3px;
    font-size: 14px
}

.product-line-grid .product-price span {
    font-size: inherit
}

.product-line-grid .product-line-info-wrapper {
    margin-top: 5px
}

.product-line-grid .product-line-info {
    line-height: 18px
}

.cart-items-review,
.cart-summary-line label,
.cart-summary-line small {
    margin-bottom: 0
}

.cart-items-review .cart-item:last-child {
    padding-bottom: 0
}

.cart-items-review .product-line-grid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.cart-items-review .product-line-grid .product-image {
    max-width: 60px
}

#offcanvas_sidecart .cart-body .products .product .cart-info .product-name,
.cart-items-review .product-line-grid .product-name {
    font-weight: 500
}

.cart-items-review .product-line-grid .product-prices {
    font-size: 13px;
    margin: 0
}

.cart-items-review .product-line-grid .product-line-details {
    -ms-flex: inherit;
    flex: inherit;
    width: 100%
}

.cart-items-review .product-line-grid .product-line-actions {
    width: auto
}

.cart-summary-line {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4px 0
}

#mywishlist .card-block>h2,
#tdcomment-modal .modal-dialog .modal-body #criterions_list .tdstar_content label:hover~label>.tdstar::after,
.block-reassurance ul li .block-reassurance-item span,
.cart-summary-subtotals .price,
.cart-summary-subtotals label {
    font-weight: 400
}

.cart-summary {
    position: relative;
    overflow: hidden
}

.cart-summary .cart-btn-actions,
.cart-summary .cart-detailed-actions {
    padding: 20px 0 0;
    border-top: 1px solid #e5e5e5;
    text-align: center
}

.cart-summary .cart-btn-actions .alert.alert-warning,
.cart-summary .cart-detailed-actions .alert.alert-warning {
    padding: 8px 15px;
    margin-top: -20px
}

.cart-summary .cart-voucher .promo-code .promo-group {
    padding: 5px 0;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

.cart-summary .cart-voucher .promo-code .promo-group .promo-input {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin: 0 10px 0 0
}

.cart-summary .cart-voucher .promo-code .alert-danger {
    padding: .5rem;
    margin: 0;
    display: none
}

.cart-summary .cart-voucher .promo-name {
    margin-bottom: 7px
}

.cart-summary .cart-voucher .promo-name .remove-voucher i {
    font-size: 16px
}

.cart-summary .cart-voucher .promo-highlighted {
    margin-top: 8px;
    margin-bottom: 3px
}

#notifications ul,
.block-reassurance ul,
.cart-summary .cart-voucher .promo-discounts,
.quickview .modal-content .modal-body .images-container .product-cover {
    margin-bottom: 0
}

.cart-summary .cart-voucher .promo-discounts .code {
    text-decoration: underline;
    cursor: pointer
}

.block-reassurance {
    margin-top: 10px
}

.block-reassurance img {
    width: 20px;
    margin-right: 5px
}

.block-reassurance ul li .block-reassurance-item {
    padding: 5px 0;
    cursor: pointer
}

.blockreassurance_product>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
    cursor: pointer;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px
}

.blockreassurance_product>div span p {
    margin: 0;
    color: #666;
    font-weight: 400;
    font-size: 14px
}

.blockreassurance_product .item-product {
    display: inline-block;
    height: 30px;
    width: 30px;
    float: left;
    margin-right: 15px !important;
    padding-top: 0 !important
}

.blockreassurance_product .item-product img,
.blockreassurance_product .item-product svg {
    height: 30px;
    width: 30px
}

.quickview .modal-dialog {
    max-width: 1024px
}

.quickview .modal-content .modal-header {
    position: absolute;
    right: 10px;
    top: 10px;
    border: 0;
    padding: 0
}

.quickview .modal-content .modal-header .close {
    z-index: 1
}

.quickview .modal-content .modal-body .images-container .product-cover .product-img .easyzoom {
    display: block
}

#footer .block-social ul li a span,
.footer-style-2 .block_newsletter form button[type=submit] span,
.quickview .modal-content .modal-body .images-container .product-cover .product-threesixty,
.quickview .modal-content .modal-body .images-container .product-thumbs-outer,
.quickview .modal-content .modal-body .right-block .qv-innner .product-actions .product-btn-block .tdsize-chart {
    display: none
}

.quickview .modal-content .modal-body .right-block .qv-innner .no-comment {
    display: none !important
}

.contact-rich {
    margin-top: 30px
}

.contact-rich h4 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    color: #363a42;
    font-size: 24px;
    font-weight: 600
}

.contact-rich .contact-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0
}

.contact-rich .contact-inner .block {
    padding: 0 10px;
    -ms-flex: 1;
    flex: 1;
    text-align: center
}

.contact-rich .contact-inner .block .icon i {
    font-size: 28px;
    color: #363a42
}

#criterions_list li+li,
.contact-rich .contact-inner .block .data {
    margin-top: 5px
}

.page-stores .store-item {
    border-bottom: 1px solid #e5e5e5;
    border-left: none;
    border-right: none;
    border-top: none
}

.page-stores .store-item:last-child {
    border: 0
}

.page-stores .store-item .store-item-container {
    padding: 25px 0
}

#footer .block-social ul li,
.page-stores .store-item .store-item-container .row {
    -ms-flex-align: center;
    align-items: center
}

.page-stores .store-item .store-item-container .store-description .card-title {
    color: #363a42;
    font-weight: 600;
    font-size: 16px
}

.page-stores .store-item .store-item-container .border-left .table {
    margin: 0;
    width: auto
}

.page-stores .store-item .store-item-container .store-item-footer {
    margin-top: 20px
}

#offcanvas_sidecart .cart-footer .cart-buttons a+a,
.page-stores .store-item .store-item-container .store-item-footer .card-block {
    margin: 0
}

.page-stores .store-item .store-item-container .store-item-footer .card-block li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px
}

#footer .block-social ul li {
    border-radius: 4px;
    margin: 2px 5px 2px 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#footer .block-social ul li a {
    -ms-flex-pack: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: all .5s ease 0s
}

#footer .block-social ul li.facebook {
    background: #435f9f
}

#footer .block-social ul li.twitter {
    background: #00aaf0
}

#footer .block-social ul li.googleplus {
    background: #e04b34
}

#footer .block-social ul li.pinterest {
    background: #ce1f21
}

#footer .block-social ul li.vimeo {
    background: #1ab7ea
}

#footer .block-social ul li.youtube {
    background: #cd201f
}

#footer .block-social ul li.rss {
    background: #f60
}

#footer .block-social ul li.instagram {
    background: #e4405f
}

#footer .block-social ul li.linkedin {
    background: #0077b5
}

#contact_store_info .block_content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -ms-flex-align: start;
    align-items: flex-start
}

#contact_store_info .block {
    margin: 0 0 8px;
    overflow: hidden
}

#contact_store_info .block .icon i {
    vertical-align: middle;
    line-height: 24px;
    font-size: 18px
}

#contact_store_info .block .tdemail {
    white-space: normal;
    word-break: break-all
}

#product_comments_block_tab div.comment .comment_details,
.footer-container {
    overflow: hidden
}

.footer-container .title_block {
    cursor: pointer
}

.footer-container ul.collapse li {
    margin-bottom: 8px;
    position: relative
}

.footer-container ul.collapse li a {
    position: relative;
    transition: .3s
}

.footer-container ul.collapse li a:hover {
    padding: 0 0 0 5px
}

.footer_block .elementor-icon-list-items li {
    word-break: break-all
}

.sitemap h2 {
    font-size: 16px;
    font-weight: 600
}

.sitemap ul {
    padding: 0;
    margin: 15px 0 0
}

.sitemap ul li {
    padding: 0;
    margin-bottom: 15px
}

.sitemap ul li:before {
    content: "\f105";
    font-family: "FontAwesome";
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 5px
}

.sitemap ul ul.nested {
    margin-left: 15px
}

.page-not-found p.pnf-subtitle,
.page-not-found p.pnf-title {
    font-size: 100px;
    line-height: normal;
    font-weight: 700;
    color: #000
}

.page-not-found p.pnf-subtitle {
    font-size: 24px
}

.page-not-found .pnf-buttons a {
    margin: 0 6px
}

.block_newsletter .needs-validation p {
    margin: 10px 0 0
}

#footer .block-social ul li a,
.block_newsletter .newsletter_content .newsletter_content_inner {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.block_newsletter .newsletter_content .newsletter_content_inner .content_letter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    text-transform: uppercase
}

.block_newsletter .newsletter_content .newsletter_content_inner .content_letter h1.title_block {
    margin-bottom: 2px;
    font-size: 20px;
    letter-spacing: 1.3px;
    font-weight: 400
}

.block_newsletter .newsletter_content .newsletter_content_inner .content_letter p.newsletter_text {
    margin: 0;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px
}

.block_newsletter form .input-wrapper {
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    width: 100%
}

.block_newsletter form .newsletter-input {
    width: 100%;
    text-align: left;
    padding: 20px;
    border-radius: 20px
}

.block_newsletter form .newsletter-input:focus {
    outline: 0
}

.block_newsletter form button[type=submit] {
    box-shadow: none;
    margin-top: 15px;
    padding: 10px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: normal;
    border-radius: 50px;
    transition: all .5s ease 0s
}

.block_newsletter form button,
.block_newsletter form input {
    height: 42px;
    vertical-align: middle
}

#product_comments_block_tab .comment_author_infos strong,
.footer-style-2 .block_newsletter .newsletter_content,
.td_mega_menu .style_wide .element_ul_depth_2 .granditem_0:hover>ul,
.td_mega_menu .tdmenu_multi_level li:hover>ul {
    display: block
}

.footer-style-2 .block_newsletter form button[type=submit]:before {
    font-family: "Material Icons";
    content: "\e569";
    font-size: 20px
}

.progress {
    background: #e5e5e5
}

.progress-bar {
    height: 100%;
    transition: .25s ease-out
}

.modal.fade .modal-dialog__offcanvas {
    width: calc(100% - 64px);
    height: 100%;
    margin: 0;
    max-width: 400px;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    transition: transform .3s ease-out
}

.modal-dialog__offcanvas button.close {
    position: absolute;
    padding: 10px;
    margin: 12px;
    top: 0;
    left: 100%;
    background: #fff;
    opacity: 0;
    height: 40px;
    width: 40px;
    transition: all .3s;
    transform: translateX(-30px);
    border-radius: 50%
}

.modal-dialog__offcanvas.modal-dialog__offcanvas--right button.close {
    right: 100%;
    left: auto;
    transform: translateX(30px)
}

.modal.show .modal-dialog__offcanvas button.close {
    transform: translateX(0);
    transition-delay: .3s;
    opacity: 1
}

.modal.fade .modal-dialog__offcanvas.modal-dialog__offcanvas--right {
    right: 0;
    transform: translateX(100%)
}

.modal.show .modal-dialog__offcanvas,
.modal.show .modal-dialog__offcanvas.modal-dialog__offcanvas--right {
    transform: translateX(0)
}

.modal-dialog__offcanvas .modal-content {
    height: inherit;
    border-width: 0;
    border-radius: 0
}

.modal-dialog__offcanvas .modal-header {
    border-radius: inherit
}

.modal-dialog__offcanvas .modal-body {
    overflow-y: auto;
    height: inherit
}

.modal.fade .modal-dialog__offcanvas.modal-dialog__offcanvas--top {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: translateY(-100%)
}

.modal.show .modal-dialog__offcanvas.modal-dialog__offcanvas--top {
    transform: translateY(0)
}

#offcanvas_sidecart .modal-title {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
    line-height: inherit
}

#offcanvas_sidecart .modal-body,
#product_comments_block_tab .comment_helpful .btn span {
    padding: 0
}

#offcanvas_sidecart .cart-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    min-height: 0;
    padding: 0 15px;
    position: relative
}

#offcanvas_sidecart .cart-body .products .product {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start
}

#offcanvas_sidecart .cart-body .products .product .cart-images {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    margin: 0 15px 0 0
}

#offcanvas_sidecart .cart-body .products .product .cart-info {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

#offcanvas_sidecart .cart-body .products .product .cart-info .price,
#offcanvas_sidecart .cart-body .products .product .cart-info .product-name {
    font-size: 14px;
    line-height: 24px
}

#offcanvas_sidecart .cart-body .products .product .cart-info .product-atributes {
    font-size: 13px;
    line-height: 18px
}

#offcanvas_sidecart .cart-body .products .product .cart-info .cart-actions {
    margin-top: 10px
}

#offcanvas_sidecart .cart-body .products .product .cart-info .cart-actions .bootstrap-touchspin {
    background: #f1f1f1;
    border-radius: 4px;
    width: auto
}

#offcanvas_sidecart .cart-body .products .product .cart-info .cart-actions .bootstrap-touchspin .btn-touchspin {
    font-size: 18px;
    line-height: 24px;
    padding: 4px 8px;
    border: 0;
    color: #282828
}

#offcanvas_sidecart .cart-body .products .product .cart-info .cart-actions .bootstrap-touchspin input {
    background: 0 0;
    width: 45px;
    text-align: center;
    border: 0;
    padding: 3px 5px;
    height: 34px
}

#offcanvas_sidecart .cart-body .products .product .remove_link {
    margin: 0 0 0 10px;
    font-size: 18px
}

#offcanvas_sidecart .cart-body .products .product:last-child {
    border: 0
}

#offcanvas_sidecart .cart-body .cart_block_no_products {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    margin-top: 10px
}

#offcanvas_sidecart .cart-body .cart_block_no_products .cart-empty-message {
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600
}

#offcanvas_sidecart .cart-footer {
    padding: 20px;
    border-top: 2px solid #e5e5e5;
    width: 100%;
    min-height: auto
}

#offcanvas_sidecart .cart-footer.empty-cart {
    display: none
}

#offcanvas_account form .forgot-password,
#offcanvas_sidecart .cart-footer .cart-prices {
    margin-bottom: 10px
}

#offcanvas_sidecart .cart-footer .cart-prices .price {
    font-size: 18px;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500
}

#offcanvas_sidecart .cart-footer .cart-prices .price .key {
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1
}

#offcanvas_sidecart .cart-footer .cart-prices .price .value {
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

#offcanvas_sidecart .cart-footer .cart-buttons {
    text-align: center
}

#offcanvas_sidecart .cart-footer .cart-buttons a {
    margin: 0 0 10px;
    width: 100%;
    display: block
}

#offcanvas_account .modal-title {
    font-size: 20px;
    font-weight: 500
}

#offcanvas_account .login-form-head {
    -ms-flex-align: center;
    align-items: center
}

#offcanvas_account .modal-body>a {
    display: block;
    padding: 5px 0
}

#offcanvas_account .user-infos,
.responsive-content>div {
    margin: 0 0 10px
}

#offcanvas_account .user-infos>i {
    font-size: 46px;
    margin: 0 0 10px
}

#offcanvas_account .user-infos a {
    padding: 0 10px 0 0
}

.lang-rtl #offcanvas_account .user-infos a {
    padding: 0 0 0 10px
}

#offcanvas_account .user-infos a:last-child {
    padding: 0
}

#offcanvas_account .currency-wrapper,
#offcanvas_account .language-wrapper {
    border-top: 1px solid #e5e5e5;
    margin: 10px 0 0;
    padding: 20px 0 10px
}

#offcanvas_account .currency-wrapper .wrapper-title,
#offcanvas_account .language-wrapper .wrapper-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    color: #222
}

#offcanvas_account .currency-wrapper ul,
#offcanvas_account .language-wrapper ul {
    display: -ms-flexbox;
    display: flex;
    margin: 5px -10px 0;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#offcanvas_account .currency-wrapper ul li,
#offcanvas_account .language-wrapper ul li {
    padding: 5px 0;
    margin: 0 10px
}

.td__custom_scroll {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1
}

.td__custom_scroll::-webkit-scrollbar {
    width: 3px
}

.td__custom_scroll::-webkit-scrollbar-thumb {
    background: #888
}

.td__custom_scroll::-webkit-scrollbar-track {
    background: #f1f1f1
}

.blockcart {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.blockcart>a.shoppingcart {
    cursor: pointer;
    position: relative
}

.blockcart>a.shoppingcart .cart-products-count {
    border-radius: 50px;
    top: -4px;
    font-size: 9px;
    font-weight: 700;
    height: 13px;
    position: absolute;
    left: 22px;
    margin: 0 auto;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 13px;
    padding: 0 2px
}

.blockcart>a.shoppingcart i,
.elementor-widget-container .btn-toggle-cart i {
    font-size: 28px
}

.blockcart.show .cart-overlay {
    background: rgba(0, 0, 0, .5);
    bottom: 0;
    left: 0;
    min-height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .3s;
    z-index: 9999
}

.blockcart.show .cart_block {
    transform: translateZ(0)
}

.blockcart .cart_block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    transform: translate3d(392px, 0, 0);
    transition: transform .4s;
    text-align: left;
    width: 350px;
    overflow-y: auto;
    background-color: #fff
}

.blockcart .cart_block .block_content #cart-close {
    position: absolute;
    right: 5px;
    width: 35px;
    text-align: center
}

.blockcart .cart_block .block_content .cart-header {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px
}

.blockcart .cart_block .block_content .cart-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: hidden;
    min-height: 0;
    padding: 0 15px;
    position: relative
}

.blockcart .cart_block .block_content .cart-body .products .product {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.blockcart .cart_block .block_content .cart-body .products .product .cart-images {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    margin: 0 15px
}

.blockcart .cart_block .block_content .cart-body .products .product .cart-info {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.blockcart .cart_block .block_content .cart-body .products .product .cart-info .price,
.blockcart .cart_block .block_content .cart-body .products .product .cart-info .product-name {
    margin-bottom: 5px;
    line-height: 20px
}

.blockcart .cart_block .block_content .cart-body .products .product .cart-info .price {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.blockcart .cart_block .block_content .cart-body .products .product .remove_link {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    font-size: 18px
}

.blockcart .cart_block .block_content .cart-body .products .product:last-child {
    border: 0
}

.blockcart .cart_block .block_content .cart-body .cart_block_no_products {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    margin-top: 30px
}

.blockcart .cart_block .block_content .cart-body .cart_block_no_products .cart-empty-message {
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600
}

.blockcart .cart_block .block_content .cart-footer {
    padding: 20px;
    border-top: 2px solid #e5e5e5;
    width: 100%
}

#tdcomment-modal .modal-dialog .modal-body #criterions_list li,
.blockcart .cart_block .block_content .cart-footer .cart-prices {
    margin-bottom: 10px
}

.blockcart .cart_block .block_content .cart-footer .cart-prices .price {
    display: -ms-flexbox;
    display: flex;
    font-weight: 700
}

.blockcart .cart_block .block_content .cart-footer .cart-prices .price .key {
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.blockcart .cart_block .block_content .cart-footer .cart-prices .price .value {
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.blockcart .cart_block .block_content .cart-footer .cart-buttons {
    text-align: center
}

.blockcart .cart_block .block_content .cart-footer .cart-buttons a {
    margin: 5px 0;
    width: 100%;
    display: block
}

.elementor-widget-container .btn-toggle-cart,
.elementor-widget-container .btn-toggle-cart .cart-products-count {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.elementor-widget-container .btn-toggle-cart .cart-products-count {
    border-radius: 50px;
    top: -4px;
    font-size: 9px;
    height: 18px;
    position: absolute;
    right: -4px;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 18px;
    padding: 0 2px;
    color: #fff;
    background-color: #000
}

.backtotop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    color: #333;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: inset 0 0 0 1px #e7e7e7;
    transition: all 200ms linear;
    z-index: 999
}

.backtotop:not(.backIn) {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px)
}

.backtotop svg {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    margin: -1px
}

.backtotop svg path {
    stroke: #222;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear
}

.backtotop span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px
}

.backtotop:hover span:before {
    display: inline-block;
    animation: animArrow 1s infinite
}

.product-list-reviews,
.star-wrapper {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.product-list-reviews .comments-nb,
.star-wrapper .comments-nb {
    margin-left: 5px
}

.star-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1;
    min-height: 24px;
    -ms-flex-align: center;
    align-items: center
}

.star-content .star,
.star-content .star-hover,
.star-content .star-on {
    color: var(--color-blank-rating, #ddd);
    display: inline-block;
    font-size: 16px;
    width: 16px;
    height: 24px;
    margin: 0;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    overflow: hidden
}

.star-content .star-hover:before,
.star-content .star-on:before,
.star-content .star:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f005";
    font-weight: 900;
    font-family: "Line Awesome Free"
}

.star-content .star-hover,
.star-content .star-on {
    color: var(--color-ratings, var(--color-primary))
}

#tdcomment-modal .modal-dialog .modal-body #criterions_list .tdstar_content .tdstar,
.star-content .star-hover {
    cursor: pointer
}

.star-content .star[style*=margin]:before {
    transform: translate(0, -50%);
    left: auto;
    right: 0
}

.star-content .star-on[style*=width]:before {
    transform: translate(0, -50%);
    left: 0
}

.grade-stars {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    min-width: 80px
}

.grade-stars .star-full {
    position: absolute;
    top: 0;
    left: 0
}

.btn-comment .material-icons,
.btn-comment-inverse .material-icons {
    font-size: 17px;
    margin-right: 2px
}

#product-comment-post-error .post-comment-buttons,
#product-comment-posted-modal .post-comment-buttons,
#update-comment-usefulness-post-error .post-comment-buttons {
    margin-top: 30px
}

#empty-product-comment {
    width: 100%;
    text-align: center
}

.comment-list {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.comment-list:first-child {
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
    padding-top: 20px
}

#respond #commentform,
.product-comment-list-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product-comment-list-item .grade-stars {
    margin-bottom: 15px
}

.product-comment-list-item .comment-date {
    font-size: 13px;
    font-style: italic;
    line-height: 1.8
}

.product-comment-list-item .comment-author {
    font-weight: 600
}

.product-comment-list-item .comment-title {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 15px
}

.product-comment-list-item .comment-post {
    line-height: 1.8
}

.product-comment-list-item:last-child {
    border: 0
}

.comment-buttons {
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px
}

.comment-buttons a {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px
}

.comment-buttons .thumb_up {
    color: #745f5f
}

.comment-buttons .outlined_flag:hover,
.comment-buttons .thumb_down {
    color: #dc3545
}

.comment-buttons i {
    font-size: 20px;
    line-height: 1;
    margin-right: 4px
}

#product-comments-list-footer {
    position: relative;
    text-align: center
}

#product-comments-list-pagination ul,
.product-quickview-review {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.product-quickview-review,
.quickview .product-quickview-review {
    margin-left: auto
}

.product-quickview-review .comments-nb {
    padding-left: 5px
}

#product-comments-list-pagination {
    margin-bottom: 20px
}

#product-comments-list-pagination ul {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0
}

#product-comments-list-pagination li {
    margin: 0 2px
}

#product-comments-list-pagination li span {
    display: block;
    font-size: 13px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    width: 28px;
    cursor: pointer
}

#product-comments-list-pagination li:first-child span,
#product-comments-list-pagination li:last-child span {
    line-height: 26px
}

#product-comments-list-pagination li.disabled span {
    cursor: not-allowed;
    opacity: .3
}

#product-comments-list-pagination li.active span {
    cursor: default;
    border-bottom: 2px solid
}

#product-comments-list-pagination li:hover span:not(.current) {
    border-bottom: 2px solid
}

.modal-header .material-icons {
    line-height: 25px;
    color: #40a85f
}

.modal-header .material-icons.error {
    color: #a94442
}

.modal-header .material-icons.feedback {
    color: #f39d72
}

.product-comment-modal .row {
    margin-left: -10px;
    margin-right: -10px
}

.product-comment-modal [class*=col-] {
    padding-left: 10px;
    padding-right: 10px
}

.product-comment-modal .modal-header {
    padding: 50px 30px 0;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0
}

.product-comment-modal .modal-header .h2 {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center
}

.product-comment-modal .modal-header button.close {
    position: absolute;
    right: 10px;
    top: 10px
}

.product-comment-modal .modal-body {
    padding: 15px 30px 30px
}

.product-comment-modal .comments-product-info {
    margin-bottom: 20px
}

.product-comment-modal .modal-dialog {
    max-width: 774px
}

.product-comment-modal .h3 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 7px
}

.product-comment-modal .description {
    line-height: 1.4;
    font-size: 13px
}

.product-comment-modal .product-flag {
    display: none
}

.product-comment-modal .product-cover {
    max-width: 100px
}

.product-comment-modal .form-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px
}

.product-comment-modal .form-control {
    margin-bottom: 15px
}

.product-comment-modal .comment-text {
    margin-bottom: 20px
}

.product-comment-modal .required {
    color: #dc3545;
    font-size: 12px;
    margin: 0 0 0 5px
}

.product-comment-modal .product-comment-footer {
    -ms-flex-align: center;
    align-items: center
}

.criterion-rating,
.post-comment-buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.post-comment-buttons {
    -ms-flex-direction: row;
    flex-direction: row
}

.post-comment-buttons .btn-comment {
    margin-left: 15px
}

#post-product-comment-modal .star a {
    position: absolute;
    display: block;
    text-indent: -5000px
}

#criterions_list,
#product_comments_block_tab div.comment .comment_details ul,
.wrapper-menu-mobile>ul {
    margin: 0
}

.criterion-rating {
    -ms-flex-align: center;
    align-items: center
}

.criterion-rating label {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 0 5px 0 0
}

#post-product-comment-form .error {
    border: solid 1px #ebcccc;
    background-color: #f2dede
}

#post-product-comment-form .valid {
    border: solid 1px #d0e9c6
}

#product_comments_block_extra,
.product-comments-additional-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%
}

.product-comments-additional-info {
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    line-height: .7
}

#product_comments_block_extra .comments_note span,
.modal-header button.close>span,
.product-comments-additional-info .product-comments-additional-info,
.quickview #product_comments_block_extra .comments_advices,
span.tip {
    display: none
}

.product-comments-additional-info .reviews_count {
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    padding: 2px 5px 0 7px
}

#product_comments_block_extra {
    padding: 0;
    margin-top: 10px
}

#product_comments_block_extra .comments_note {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 20px 0 0
}

#product_comments_block_extra .comments_advices {
    margin: 0;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.comments_advices a {
    text-decoration: none;
    position: relative;
    padding: 0;
    display: inline-block
}

.comments_advices a i {
    font-size: 20px;
    margin: 0 5px 0 0;
    vertical-align: middle
}

.comments_advices a.reviews {
    margin: 0 15px 0 0
}

#tdcomment-modal .modal-dialog {
    max-width: 700px
}

#tdcomment-modal .modal-dialog .modal-header h2 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    margin: 0
}

#tdcomment-modal .modal-dialog .modal-body .product {
    margin-bottom: 30px
}

#tdcomment-modal .modal-dialog .modal-body .product .product_desc {
    line-height: 18px
}

#tdcomment-modal .modal-dialog .modal-body .product .product_desc .product_name {
    padding: 0 0 5px;
    font-weight: 500
}

#tdcomment-modal .modal-dialog .modal-body #criterions_list {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 15px;
    list-style-type: none
}

#tdcomment-modal .modal-dialog .modal-body #criterions_list li>label {
    float: left;
    margin: 0 10px 0 0;
    min-width: 100px;
    text-align: left
}

#tdcomment-modal .modal-dialog .modal-body #criterions_list .tdstar_content:not(:hover) input[type=radio]:checked+label~label>.tdstar::after {
    font-weight: 400
}

#tdcomment-modal .modal-dialog .modal-footer {
    text-align: center;
    -ms-flex-direction: row;
    flex-direction: row
}

#tdcomment-modal .modal-dialog .modal-footer button,
.load-product .loading-msg i {
    margin: 0 5px
}

#tdcomment-modal .modal-dialog .modal-footer>.btn {
    width: auto
}

#product_comments_block_tab .new_comment {
    margin-bottom: 20px
}

#product_comments_block_tab div.comment {
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid #e5e5e5
}

#product_comments_block_tab div.comment:last-child {
    border: 0;
    margin: 0;
    padding: 0
}

#product_comments_block_tab div.comment .comment_author span {
    font-weight: 700
}

#product_comments_block_tab .comment_author_infos {
    margin-top: 10px
}

#product_comments_block_tab .comment_author_infos em {
    font-size: 12px
}

#product_comments_block_tab a {
    text-decoration: none;
    display: inline-block
}

#product_comments_block_tab .comment_helpful {
    float: left
}

#product_comments_block_tab .comment_helpful .btn {
    border: medium;
    font-weight: 400;
    background: 0 0;
    color: currentcolor;
    padding: 0;
    box-shadow: none
}

#product_comments_block_tab .comment_helpful .btn span:before {
    font-family: 'Line Awesome Free';
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 20px
}

#product_comments_block_tab .comment_helpful .btn:hover {
    background: 0 0;
    box-shadow: none
}

#product_comments_block_tab .comment_helpful .btn:hover.usefull span {
    color: green
}

#product_comments_block_tab .comment_helpful .btn:hover.notusefull span {
    color: red
}

#product_comments_block_tab .comment_helpful .btn.usefull span:before {
    content: "\f164"
}

#product_comments_block_tab .comment_helpful .btn.notusefull span:before {
    content: "\f165"
}

#product_comments_block_tab span.report_btn {
    cursor: pointer;
    float: right
}

#product_comments_block_tab span.report_btn:hover {
    text-decoration: underline
}

.tdstar_content {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.tdstar_content .tdstar {
    position: relative;
    cursor: pointer;
    font-size: 16px
}

.tdstar_content .tdstar a {
    display: block;
    position: absolute;
    text-indent: -5000px;
    font-size: 0
}

.tdstar_content .tdstar:after {
    content: "\f005";
    font-family: "Line Awesome Free"
}

.tdstar_content .tdstar.star_on.star_half:after {
    content: "\f5c0";
    font-weight: 900
}

.tdstar_content .tdstar.star_hover:after,
.tdstar_content .tdstar.star_on:after {
    content: "\f005";
    font-weight: 900
}

.commentcluetip {
    width: 210px;
    border-radius: 3px;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05) inset;
    margin-bottom: 20px;
    min-height: 20px
}

.commentcluetip:last-child {
    margin-bottom: 0
}

.comments_note {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: stretch;
    align-items: stretch
}

.comments_note .nb-comments {
    margin-left: 5px
}

.modal-header button.close {
    -ms-flex-order: 2;
    order: 2
}

.modal-header button.close:before {
    content: "\2716";
    display: block;
    font-size: 18px
}

.slick-track {
    margin-right: 0;
    margin-left: 0
}

#ui_tip {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    padding: 12px 20px;
    border-radius: 4px;
    margin: 22px 0 0 14px;
    word-wrap: normal;
    color: var(--color-tip-text);
    background: var(--color-tip-bg);
    transition: opacity .22s cubic-bezier(.07, .74, .56, .89), transform .12s cubic-bezier(.07, .74, .56, .89);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .15)
}

#ui_tip span {
    word-wrap: normal;
    word-break: keep-all;
    white-space: nowrap
}

#ui_tip.active {
    opacity: 1
}

#ui_tip.align-right {
    transform: translateX(-100%);
    margin-left: -14px
}

#mobile_top_menu_wrapper .modal-header {
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

#mobile_top_menu_wrapper .modal-header .close {
    margin: 0;
    padding: 0;
    font-size: 28px;
    position: relative
}

#mobile_top_menu_wrapper .modal-body {
    padding: 0
}

.responsive-content {
    padding: 0 15px;
    margin-top: 10px
}

.responsive-content>div .link {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    color: currentcolor;
    background: 0 0
}

.responsive-content #currency_selector #currency-selector-label,
.responsive-content #currency_selector .currency-selector,
.responsive-content #language_selector #language-selector-label,
.responsive-content #language_selector .language-selector {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.load-product {
    text-align: center;
    margin: 15px 0
}

.load-product .preload {
    position: relative;
    height: 35px
}

.load-product .preload .loading>div {
    background-color: #000;
    width: 4px;
    height: 27px;
    border-radius: 2px;
    margin: 2px;
    animation-fill-mode: both;
    display: inline-block
}

.load-product .preload .loading>div:nth-child(1) {
    animation: line-scale 1s -.4s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.load-product .preload .loading>div:nth-child(2) {
    animation: line-scale 1s -.3s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.load-product .preload .loading>div:nth-child(3) {
    animation: line-scale 1s -.2s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.load-product .preload .loading>div:nth-child(4) {
    animation: line-scale 1s -.1s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.load-product .preload .loading>div:nth-child(5) {
    animation: line-scale 1s 0s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.load-product .loading-msg {
    line-height: 35px;
    font-size: 16px
}

.load-product .hide {
    display: none
}

body .cc-window.cc-type-info {
    background: var(--color-cookie-bg);
    color: var(--color-cookie-txt)
}

body .cc-window.cc-type-info .cc-link {
    color: var(--color-cookie-link)
}

body .cc-window.cc-type-info .cc-btn {
    background-color: var(--color-cookie-btn-bg);
    color: var(--color-cookie-btn-text)
}

body .cc-window.cc-type-info .cc-btn:hover {
    background-color: var(--color-cookie-btn-bg-h);
    color: var(--color-cookie-btn-text-h)
}

.products_on_menu,
.td_mega_brand {
    text-align: center
}

.td_mega_brand img {
    max-height: 60px;
    width: auto
}

.products_on_menu .product-price-and-shipping span:not(:last-child) {
    margin-right: 5px
}

.td_mega_menu .element_ul_depth_1 {
    margin-bottom: 15px
}

.td_mega_menu .element_ul_depth_1 a,
.td_mega_menu .tdmenu_multi_level a {
    display: -ms-flexbox;
    display: flex;
    padding: 5px 0;
    line-height: 18px;
    -ms-flex-align: center;
    align-items: center
}

.td_mega_menu .tdmenu_multi_level a {
    padding: 8px 0
}

.td_mega_menu .tdmenu_multi_level ul {
    position: absolute;
    background: #fff;
    font-weight: 400;
    z-index: 70;
    box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    display: none;
    width: 100%;
    border: 1px solid #f2f2f2;
    left: 100%;
    top: -1px
}

.td_mega_menu .tdmenu_multi_level ul>li:last-child>.menu_a_wrap>a,
.td_mega_menu .tdmenu_multi_level>li:last-child>.menu_a_wrap>a {
    border-bottom: none
}

.td_mega_menu .tdmenu_multi_level li {
    position: relative;
    display: block;
    width: 100%
}

.td_mega_menu .tdmenu_multi_level li .style_content {
    padding: 15px
}

.td_mega_menu .tdmenu_multi_level li a {
    padding: 10px 15px;
    border-bottom: 1px solid #f2f2f2
}

.td_mega_menu .tdmenu_multi_level .is_parent_icon {
    margin-left: auto
}

.td_mega_menu .element_ul_depth_2 .granditem_0>ul {
    position: absolute;
    background: #fff;
    font-weight: 400;
    z-index: 70;
    box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    display: none;
    width: 100%
}

.td_mega_menu .style_wide {
    padding: 15px 20px;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin
}

.td_mega_menu .style_wide::-webkit-scrollbar {
    width: 6px
}

.td_mega_menu .style_wide::-webkit-scrollbar-thumb {
    background-color: #cdcdcd
}

.td_mega_menu .style_wide::-webkit-scrollbar-track {
    background-color: #f0f0f0
}

.td_mega_menu .style_wide .element_a_depth_1 {
    font-weight: 600;
    text-transform: uppercase
}

.td_mega_menu .style_wide .element_ul_depth_2 .granditem_0 {
    position: relative;
    display: block
}

.td_mega_menu .style_wide .element_ul_depth_2 .granditem_0>ul {
    top: 0;
    left: 80px;
    width: 190px;
    padding: 15px
}

.td_mega_menu .menu_sub {
    position: absolute;
    text-align: left;
    background: #fff;
    font-weight: 400;
    z-index: 70;
    box-shadow: 0 0 3px rgba(0, 0, 0, .15);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    pointer-events: none;
    transform: translateY(15px) translateZ(0)
}

.td_mega_menu .menu_sub .cate_label {
    margin-left: 5px
}

.td_mega_menu .menu_sub .products_on_menu.list {
    text-align: left
}

.td_mega_menu .menu_sub .products_on_menu.list .product-container {
    margin-bottom: 10px
}

.td_mega_menu .menu_sub .products_on_menu.list .product-container .pthumbnail-container {
    max-width: 80px
}

.td_mega_menu .menu_sub .products_on_menu.list .product-container .product-description {
    overflow: hidden
}

.td_mega_menu .menu_sub .products_on_menu.list .product-container .product-description .product_name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.td_mega_menu .menu_sub .products_on_menu.list .product-container .product-description .product-price {
    font-size: 16px
}

.td_mega_menu .element_li_depth_0:hover>.menu_sub {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: unset
}

.td_mega_menu .element_a_depth_0 i.icon-home,
.wrapper-menu-column .col_element_a_depth_0 i.icon-home {
    margin-right: 0 !important
}

.td_mega_menu .menu_cate_img {
    margin-bottom: 10px;
    display: block;
    padding-top: 8px
}

.td_mega_menu .icon-img {
    max-height: 18px;
    display: inline-block;
    margin-right: 7px
}

.td_mega_menu .element_a_depth_1.has-icon-img {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.td_mega_menu .element_a_depth_1 .icon-img {
    max-width: 100%;
    max-height: none;
    margin-right: 0;
    margin-bottom: 10px
}

.td_mega_menu .cate_label {
    font-size: 10px;
    display: inline-block;
    line-height: 12px;
    padding: 2px 4px;
    position: relative;
    letter-spacing: .3px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 0 !important;
    z-index: 2
}

.td_mega_menu .is_parent_icon {
    position: relative
}

.td_mega_menu .is_parent_icon::after {
    content: "\f0da";
    font-family: "FontAwesome";
    display: inline;
    padding-left: 5px;
    opacity: .5;
    transition: opacity .3s ease
}

.td_mega_menu i {
    margin-right: 5px;
    font-size: 13px;
    line-height: inherit
}

.td_mega_menu .m_column_row {
    margin-bottom: 0
}

.td_mega_menu .m_column_row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.menu-horizontal,
.menu-horizontal .item-level-0>a {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row
}

.menu-horizontal {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0
}

.menu-horizontal .item-level-0>a {
    display: -ms-flexbox;
    display: flex;
    padding: 18px 15px;
    position: relative
}

.menu-horizontal .item-level-0.is_parent {
    position: relative
}

.menu-horizontal .item-level-0.is_parent>a .triangle::after {
    font-family: "FontAwesome";
    content: "\f107";
    margin-left: 5px;
    font-size: 16px;
    vertical-align: middle
}

.wrapper-menu-horizontal .dropdown-is-mega:not(.menu_initialized)>.sub-menu-dropdown {
    opacity: 0 !important;
    visibility: hidden !important
}

.wrapper-menu-horizontal .element_a_depth_0 .cate_label {
    position: absolute;
    left: calc(50% - 10px);
    margin-left: 0;
    bottom: 70%
}

.wrapper-menu-vertical {
    position: relative;
    display: inline-block
}

.wrapper-menu-vertical .element_a_depth_0 .cate_label {
    margin-left: 7px
}

.wrapper-menu-vertical .element_a_depth_0 .cate_label::before {
    content: '';
    display: block;
    border: 5px solid transparent !important;
    border-right-color: inherit !important;
    position: absolute;
    left: -9px;
    top: 50%;
    margin-top: -5px;
    border-right-width: 7px !important
}

.wrapper-menu-vertical .menu-vertical-title {
    background: #232323;
    border: 0;
    padding: 15px;
    line-height: 1;
    position: relative;
    text-align: left;
    cursor: pointer;
    color: #fff;
    display: inline-block;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: all .3s
}

.wrapper-menu-vertical .menu-vertical-title svg {
    transition: all .3s
}

.wrapper-menu-vertical .menu-vertical-title span {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: 10px;
    margin-left: 10px
}

.search_block_top .btn.button-search i,
.wrapper-menu-vertical .menu-vertical-title i {
    font-size: 24px;
    margin: 0
}

.wrapper-menu-vertical .menu_sub {
    left: 100%;
    top: 0;
    transform: translateX(-15px) translateZ(0)
}

.menu-vertical {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    width: 270px;
    margin: 0;
    z-index: 3;
    left: 0;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease;
    transform: translateY(15px) translateZ(0);
    pointer-events: none
}

.menu-vertical .item-level-0 {
    display: block;
    margin-bottom: 0
}

.menu-vertical .item-level-0:not(:first-child) {
    border-top: none !important
}

.menu-vertical .item-level-0>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 12px 18px;
    text-transform: none;
    line-height: 20px
}

.menu-vertical .item-level-0 .triangle::after {
    position: absolute;
    top: 50%;
    right: 18px;
    margin-top: -8px;
    margin-left: 0;
    font-size: 16px;
    vertical-align: middle;
    line-height: 1;
    font-family: "FontAwesome";
    content: "\f105"
}

.menu-vertical .item-level-0:hover>a {
    background-color: #f9f9f9
}

.menu-vertical .item-level-0.is_parent>a {
    position: relative;
    padding-right: 25px
}

.wrapper-menu-vertical.active .menu-vertical,
body.vertical_menu_visible #elementor-header .wrapper-menu-vertical .menu-vertical {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: unset
}

.header-menu-icon .wrapper-menu-vertical .menu-vertical-title>span {
    display: none
}

.show-more-cat .show_less,
.show-more-cat.menu-show .show_more {
    display: none !important
}

.show-more-cat.menu-show .show_less {
    display: -ms-flexbox !important;
    display: flex !important
}

.wrapper-menu-column .col_element_li_depth_0 {
    padding-right: 10px
}

.wrapper-menu-column .col_element_li_depth_0,
.wrapper-menu-column .col_sub_li {
    padding-left: 10px;
    display: block;
    position: relative;
    border-bottom: 1px solid #f2f2f2
}

.wrapper-menu-column .col_sub_li.style_content {
    padding-top: 12px;
    padding-bottom: 12px
}

.wrapper-menu-column .col_element_li_depth_0.active .col_sub_ul:last-child>.col_sub_li:last-child,
.wrapper-menu-column .col_sub_li.active .col_sub_ul:last-child>.col_sub_li:last-child,
.wrapper-menu-mobile li:last-child {
    border-bottom: none
}

.wrapper-menu-column .col_element_a_depth_0 {
    font-weight: 500
}

.wrapper-menu-column .col_element_a_depth_0 .cate_label,
.wrapper-menu-column .col_sub_a .cate_label {
    margin-left: 7px
}

.wrapper-menu-column .col_element_a_depth_0,
.wrapper-menu-column .col_sub_a {
    display: inline-block;
    padding: 12px 0;
    z-index: 2;
    position: relative;
    margin-right: 28px
}

.wrapper-menu-column .icon-opener {
    position: absolute;
    z-index: 1;
    left: auto;
    right: -10px;
    top: 1px;
    bottom: 1px;
    padding: 0;
    width: auto;
    cursor: pointer;
    background-color: transparent
}

.wrapper-menu-column .active>.menu_a_wrap .icon-opener .plus_sign,
.wrapper-menu-column .icon-opener .minus_sign {
    display: none
}

.wrapper-menu-column .icon-opener i {
    display: block;
    text-align: center;
    width: 30px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    font-size: 20px;
    color: #333334
}

.wrapper-menu-column .active>.menu_a_wrap .icon-opener .minus_sign {
    display: inline-block
}

.col_sub_li,
.wrapper-menu-column .menu_a_wrap {
    position: relative
}

.wrapper-menu-column i,
.wrapper-menu-mobile i {
    display: inline-block;
    padding-right: 8px;
    text-align: center
}

.wrapper-menu-column .icon-img {
    max-height: 18px;
    display: inline-block;
    margin-right: 7px
}

.wrapper-menu-column .col_sub_ul a i,
.wrapper-menu-column i,
.wrapper-menu-mobile .mo_sub_ul a i,
.wrapper-menu-mobile i {
    margin-right: 4px;
    font-size: inherit;
    vertical-align: 0;
    width: 18px
}

.wrapper-menu-column .menu_sub .cate_label,
.wrapper-menu-mobile .menu_sub .cate_label,
.wrapper-menu-mobile .mo_element_a_depth_0 .cate_label,
.wrapper-menu-mobile .mo_sub_a .cate_label {
    margin-left: 7px
}

.wrapper-menu-column .cate_label {
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    text-transform: none;
    line-height: 16px;
    padding: 0 3px;
    white-space: nowrap;
    border-radius: 2px;
    position: relative;
    border-color: transparent;
    vertical-align: middle
}

.wrapper-menu-column .cate_label::before,
.wrapper-menu-mobile .cate_label::before {
    content: '';
    display: block;
    border: 3px solid transparent;
    border-right-color: inherit;
    position: absolute;
    left: -6px;
    top: 50%;
    margin-top: -3px
}

.col_sub_li {
    display: block;
    padding-left: 10px;
    border-bottom: 1px solid #f2f2f2
}

.wrapper-menu-mobile .cate_label {
    font-size: 10px;
    display: inline-block;
    line-height: 12px;
    padding: 2px 4px;
    position: relative;
    letter-spacing: .3px;
    text-transform: uppercase;
    white-space: nowrap
}

.wrapper-menu-mobile .cate_label::before {
    border: 5px solid transparent !important;
    border-right-color: inherit !important;
    left: -9px;
    margin-top: -5px;
    border-right-width: 7px !important
}

.wrapper-menu-mobile li {
    position: relative;
    display: block;
    padding: 0
}

.wrapper-menu-mobile li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    min-height: 45px;
    line-height: 1.3
}

.wrapper-menu-mobile .mo_sub_ul {
    padding: 0;
    margin: 0 0 0 15px
}

.wrapper-menu-mobile .mo_sub_li .menu-product,
.wrapper-menu-mobile li {
    border-bottom: 1px solid #e5e5e5
}

.wrapper-menu-mobile .mo_sub_li.style_content {
    padding: 15px 20px;
    min-height: 45px;
    line-height: 1.3;
    border-bottom: 1px solid #e5e5e5
}

.wrapper-menu-mobile .icon-img {
    max-height: 18px;
    display: inline-block;
    margin-right: 7px
}

.wrapper-menu-mobile li.active>.menu_a_wrap .icon-opener::after {
    transform: rotate(180deg)
}

.wrapper-menu-mobile .menu_a_wrap {
    display: -ms-flexbox;
    display: flex
}

.wrapper-menu-mobile .menu_a_wrap .icon-opener {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    padding-right: 0;
    font-size: 0;
    line-height: 45px;
    cursor: pointer;
    transition: transform .25s ease;
    backface-visibility: hidden
}

.wrapper-menu-mobile .menu_a_wrap .icon-opener::after {
    content: "\f107";
    height: 45px;
    text-align: center;
    font-family: "FontAwesome";
    font-weight: 400;
    font-size: 15px;
    backface-visibility: hidden
}

.wrapper-menu-mobile .mo_brand_div a,
.wrapper-menu-mobile .products_on_menu a,
.wrapper-menu-mobile .style_content a {
    border: 0
}

.wrapper-menu-mobile .products_on_menu.grid {
    text-align: center
}

.wrapper-menu-mobile .products_on_menu.grid .product-container {
    overflow: hidden
}

.wrapper-menu-mobile .products_on_menu.grid .product-container .product_name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.wrapper-menu-mobile .products_on_menu.grid .product-container .product_name a {
    padding: 0;
    -ms-flex-pack: center;
    justify-content: center
}

.wrapper-menu-mobile .products_on_menu.list {
    text-align: left
}

.wrapper-menu-mobile .products_on_menu.list .product-container {
    margin-bottom: 10px
}

.wrapper-menu-mobile .products_on_menu.list .product-container .pthumbnail-container {
    max-width: 80px
}

.wrapper-menu-mobile .products_on_menu.list .product-container .pthumbnail-container .product_img_link {
    padding: 0
}

.wrapper-menu-mobile .products_on_menu.list .product-container .product-description {
    overflow: hidden
}

.wrapper-menu-mobile .products_on_menu.list .product-container .product-description .product_name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.wrapper-menu-mobile .products_on_menu.list .product-container .product-description .product_name a {
    padding: 0;
    min-height: 30px
}

.wrapper-menu-mobile .products_on_menu.list .product-container .product-description .product-price {
    font-size: 16px
}

.menu-vertical .item-level-0.submenu_position_1,
.menu-vertical .item-level-0.submenu_position_2 {
    position: relative
}

.wrapper-menu-vertical .item-level-0.submenu_position_2>.menu_sub {
    top: auto;
    bottom: 0
}

.wishlist .td-list-wishlist {
    min-width: 100px;
    max-height: 105px;
    padding: 0;
    overflow-y: auto;
    bottom: 100%;
    top: auto;
    margin: 0 0 5px
}

#mywishlist .wishlist-product-action .td-wishlist-button-dropdown .td-list-wishlist .dropdown-item,
.wishlist .td-list-wishlist .dropdown-item {
    padding: 5px 8px;
    border: medium
}

.wishlist .td-list-wishlist .dropdown-item.added,
.wishlist .td-list-wishlist .dropdown-item:hover {
    background: var(--color-btn-bg-hover, #000);
    color: var(--color-btn-text-hover, #fff)
}

.td-modal-send-wishlist .modal-body .form-send-wishlist .td-fake-send-wishlist,
.wishlist .td-wishlist-button:after {
    display: none
}

.td-modal-send-wishlist .modal-footer,
table#product_comparison .product-price-and-shipping>span {
    display: inline-block;
    vertical-align: middle
}

.td-modal-send-wishlist .modal-footer .btn-secondary,
.td-modal-send-wishlist .modal-footer .btn-tertiary,
.td-modal-send-wishlist .modal-footer .td-modal-send-wishlist-bt {
    float: right
}

#mywishlist .page-header {
    margin: 0 0 20px;
    padding: 0;
    background: 0 0;
    border: 0
}

#mywishlist .page-header h1 {
    border: 0;
    padding: 0
}

#mywishlist .card-block {
    box-shadow: none !important
}

#mywishlist .delete-wishlist-product {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1
}

#mywishlist .wishlist-product-action {
    position: relative
}

#mywishlist .wishlist-product-action .wishlist-product-save-button {
    float: left
}

#mywishlist .wishlist-product-action .td-wishlist-button-dropdown {
    float: right
}

#mywishlist .wishlist-product-action .td-wishlist-button-dropdown .td-list-wishlist {
    min-width: 135px;
    max-height: 105px;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 2px;
    bottom: 100%;
    height: 100%;
    right: 0;
    top: auto;
    left: auto;
    border: 0
}

#mywishlist .wishlist-product-action .td-wishlist-button-dropdown .td-list-wishlist .dropdown-item.added,
#mywishlist .wishlist-product-action .td-wishlist-button-dropdown .td-list-wishlist .dropdown-item:hover {
    background: 0 0
}

#mywishlist .product-description {
    padding: 10px
}

.td-modal-wishlist .modal-content {
    overflow: hidden
}

.td-modal-wishlist .modal-content .modal-title {
    font-weight: 400
}

.td-modal-wishlist .modal-footer {
    display: none
}

.td-modal-wishlist.enable-action .modal-footer {
    display: block
}

.list-wishlist tr {
    transition: background-color 1.5s
}

.list-wishlist {
    margin: 20px 0;
    overflow-x: auto
}

.list-wishlist tr.active,
.list-wishlist tr.new,
.list-wishlist tr.show.active {
    background-color: #dbe5f5 !important
}

.list-wishlist tr .delete-wishlist {
    font-size: 20px
}

.move-wishlist-item:hover {
    background-color: #f7f7f9
}

.view-wishlist-product {
    float: left
}

.list-wishlist tr.show {
    background-color: #d9edf7 !important
}

.send-wishlist {
    display: none;
    margin-bottom: 20px
}

.send_wishlist_msg {
    display: none
}

.lang-rtl #respond .comment-reply-title #cancel-comment-reply-link,
.td-modal-reset-send-wishlist {
    float: left
}

.send_wishlist_success {
    color: #5cb85c
}

.send_wishlist_error {
    color: #f0ad4e
}

.tdsearchblock {
    -ms-flex: 1;
    flex: 1
}

.search_block_top {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 100%
}

#offcanvas_search .modal-dialog__offcanvas--top .search_block_top {
    -ms-flex-direction: column;
    flex-direction: column
}

.search_block_top .searchbox {
    width: 100%;
    overflow: hidden;
    position: relative;
    border: solid 1px #e5e5e5;
    background-color: #fff
}

.search_block_top .searchbox.search-loading .btn.button-search i {
    animation: la-spin .65s infinite linear
}

.search_block_top .searchbox.search-loading .btn.button-search i:before {
    content: "\f1ce"
}

.search_block_top .searchbox .searchboxform-control {
    width: auto;
    max-width: 30%;
    float: left;
    overflow: hidden;
    position: relative
}

.search_block_top .searchbox .searchboxform-control:before {
    content: '';
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    background-color: #e5e5e5
}

.search_block_top .searchbox .searchboxform-control:after {
    content: '\e5c5';
    font-family: 'Material Icons';
    height: 40px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10%;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px
}

.search_block_top .searchbox .searchboxform-control .search_category {
    -moz-appearance: none;
    appearance: none;
    padding: 10px 35px 10px 20px;
    border: medium;
    background: 0 0;
    line-height: normal;
    height: 44px;
    overflow: auto;
    width: 100%;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.search_block_top .searchbox .searchboxform-control .search_category:focus {
    outline: 0
}

.search_block_top .searchbox .searchboxform-control .search_category option {
    padding: 2px;
    text-transform: capitalize
}

.search_block_top .btn.button-search {
    position: relative;
    float: right;
    border: 0;
    padding: 0 10px;
    border-radius: 0;
    line-height: 16px;
    font-size: 15px;
    height: 44px;
    box-shadow: none;
    transition: all .3s ease 0s
}

.search_block_top .input-wrapper {
    overflow: hidden
}

.search_block_top .search_query_top {
    border: 0;
    height: 44px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 0;
    background: 0 0;
    box-shadow: none
}

.search_block_top .search_query_top:focus {
    background-color: transparent
}

#offcanvas_search .modal-dialog__offcanvas--top .search_block_top .tdsearch_result_content .tdsearch_result,.search_block_top .tdsearch_result_content {
    position: relative
}

.search_block_top .tdsearch_result_content .tdsearch_result {
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 11;
    text-align: left;
    background: #fff;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 3px 3px rgba(0,0,0,.15)
}

.search_block_top .tdsearch_result_content .tdsearch_result .char_limit {
    padding: 10px
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .top-content {
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
    word-wrap: break-word;
    color: #7a7a7a
}

#offcanvas_search .modal-dialog__offcanvas--top .search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .top-content {
    padding: 10px 0
}

.search_block_top .tdsearch_result_content .autocomplete-suggestions,.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list {
    padding: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#offcanvas_search .modal-dialog__offcanvas--top .search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list,#offcanvas_search .modal-dialog__offcanvas--top .search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions {
    padding: 10px 0 0
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a {
    padding: 10px;
    display: inline-block;
    width: 100%;
    border: medium;
    border-radius: 0;
    margin: 0;
    cursor: pointer
}

#offcanvas_search .modal-dialog__offcanvas--top .search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a {
    padding: 10px 10px 10px 0
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a .searchImg {
    float: left;
    height: auto;
    margin: 0 15px 0 0;
    max-width: 50px
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a .product-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 0
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a .content_price {
    display: block
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a .content_price .regular-price {
    text-decoration: line-through;
    font-weight: 400
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a .content_price .sale-percentage {
    margin: 0 3px
}

.search_block_top .tdsearch_result_content .tdsearch_result .ajax-search-content .items-list .item a .content_price .price {
    font-weight: 500
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 10px;
    display: inline-block;
    width: 100%;
    border: medium;
    border-radius: 0;
    margin: 0;
    cursor: pointer
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion.search-no-result {
    padding: 0
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion.autocomplete-selected {
    background-color: #f3f3f3
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion .searchImg {
    float: left;
    height: auto;
    margin: 0 15px 0 0;
    max-width: 50px
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion .product-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin: 0
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion .content_price {
    display: block
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion .content_price .regular-price {
    text-decoration: line-through;
    font-weight: 400;
    font-size: inherit;
    margin-left: 6px
}

.search_block_top .tdsearch_result_content .tdsearch_result .autocomplete-suggestions .autocomplete-suggestion .content_price .price {
    font-weight: 500
}

.search_block_top .tdsearch_result_content .autocomplete-suggestions {
    position: relative!important;
    max-width: none!important;
    width: auto!important;
    z-index: 1!important;
    margin-bottom: 0;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 0;
    max-height: none!important
}

.modal-content .modal-body .search_block_top .tdsearch_result_content {
    border: 0;
    overflow: hidden;
    max-height: inherit
}

#offcanvas_search .modal-dialog__offcanvas--top button.close {
    left: auto;
    right: 0;
    z-index: 1;
    background: 0 0;
    margin: 6px
}

#offcanvas_search .modal-dialog__offcanvas--top .modal-body {
    padding: 40px 50px
}

.tdsizecharts,
.threesixty-img-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto
}

.threesixty-img-container {
    max-width: 620px;
    cursor: ew-resize;
    cursor: -webkit-grab
}

.threesixty-img-container:active {
    cursor: ew-resize;
    cursor: -webkit-grabbing
}

.elementor-categorylist .style1 .categoryblock .category-wrap,
.threesixty-img-container .mfp-close {
    -ms-flex-pack: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.threesixty-img-container .mfp-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    color: #333;
    cursor: pointer;
    opacity: 1;
    font-size: 30px;
    transition: all .25s ease, opacity .3s ease .35s;
    z-index: 99
}

.tdsizecharts {
    max-width: 1100px;
    background: #fff
}

.elementor-brands .manufacturer-carousel,
.tdsizecharts .table {
    margin-bottom: 0
}

.effect1:before,
.effect2:after,
.effect2:before {
    content: "";
    opacity: 0;
    position: absolute;
    z-index: 1;
    pointer-events: none
}

.effect1:before {
    background: rgba(255, 255, 255, .3);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0
}

.effect1:hover:before {
    left: 50%;
    right: 50%;
    opacity: 1;
    transition: all .9s ease 0s
}

.effect2:after,
.effect2:before {
    bottom: 15px;
    left: 15px;
    right: 15px;
    top: 15px;
    transition: all .35s ease 0s
}

.effect2:before {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: scale(0, 1)
}

.effect2:after {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scale(1, 0)
}

.effect2:hover:after,
.effect2:hover:before,
.effect3:hover:before {
    opacity: 1;
    transform: scale(1, 1)
}

.effect3,
.effect5,
.effect6 {
    position: relative;
    overflow: hidden;
    display: block
}

.effect3:before,
.effect4:after,
.effect4:before {
    position: absolute;
    content: "";
    pointer-events: none
}

.effect3:before {
    border: 2px solid #fff;
    bottom: 20px;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, .2);
    left: 20px;
    opacity: 0;
    right: 20px;
    top: 20px;
    transform: scale(1.4, 1.4);
    transition: all .35s ease 0s;
    z-index: 1
}

.effect4:after,
.effect4:before {
    background: rgba(255, 255, 255, .6) 0 0;
    width: 0;
    height: 0;
    opacity: 1;
    transform: rotate(100deg)
}

.effect4:before {
    right: 0;
    top: 0
}

.effect4:after {
    left: 0;
    bottom: 0
}

.effect4:hover:after,
.effect4:hover:before {
    height: 70%;
    width: 70%;
    opacity: 0;
    transform: rotateY(180deg);
    transition: all .9s ease 0s
}

.effect5:after,
.effect5:before {
    position: absolute;
    content: "";
    pointer-events: none
}

.effect5:before {
    border: 0 solid rgba(0, 0, 0, .1);
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    transition: all .1s ease-out 0s
}

.effect5:after {
    background: #fff;
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    visibility: hidden;
    transform: scale(0, 0);
    transition: all .3s ease 0s;
    opacity: .3
}

.effect5:hover:before {
    border-width: 10px
}

.effect5:hover:after {
    transform: scale(1, 1);
    visibility: visible
}

.effect6:after,
.effect6:before {
    background: rgba(255, 255, 255, .5);
    bottom: 0;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    opacity: 0;
    transition: all .9s ease 0s
}

.effect6 img {
    transition: all .9s ease 0s
}

.effect6:hover:after,
.effect6:hover:before {
    opacity: 1
}

.effect6:hover:before {
    left: 50%;
    right: 50%
}

.effect6:hover:after {
    bottom: 50%;
    top: 50%
}

.effect6:hover img,
.effect7:hover img {
    transform: scale(1.1, 1.1)
}

.effect7 {
    position: relative
}

.effect7 img {
    transition: all 1.3s ease 0s
}

.blogsearch_block #sdssearch_block_top .input-wrapper,
.effect10,
.effect7,
.effect8,
.effect9 {
    overflow: hidden
}

.effect6:after,
.effect6:before,
.effect8:before,
.effect9:before {
    position: absolute;
    pointer-events: none
}

.effect8:before {
    content: '';
    transition: all .5s ease-in-out 0s;
    border: 150px double transparent;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.effect8:hover:before {
    border: 0 double rgba(255, 255, 255, .7);
    opacity: 0
}

.effect9:before {
    background: rgba(255, 255, 255, .7) 0 0;
    bottom: 10px;
    content: "";
    left: 10px;
    opacity: 1;
    right: 10px;
    top: 10px;
    transform: scale(0, 0)
}

.effect9:hover:before {
    opacity: 0;
    transform: scale(1, 1);
    transition-duration: 1.5s
}

.effect10:after,
.effect10:before {
    background: #fff;
    content: "";
    height: 0;
    opacity: .2;
    position: absolute;
    transition: all .3s ease-out 0s;
    width: 0;
    pointer-events: none
}

.effect10:before {
    top: 0;
    left: 0
}

.effect10:after {
    right: 0;
    bottom: 0
}

.effect10:hover:after,
.effect10:hover:before {
    transition: all .3s ease-out 0s;
    height: 100%;
    width: 100%
}

.elementor-brands {
    position: relative
}

.elementor-brands .item {
    text-align: center
}

.elementor-brands .item img {
    max-width: 100%;
    margin: 0 auto
}

.elementor-brands .item span {
    margin-top: 10px;
    display: block
}

.elementor-categorylist .block_content.row {
    margin-left: -15px;
    margin-right: -15px
}

.elementor-categorylist .categoryblock {
    padding: 15px
}

.elementor-categorylist .style1 {
    position: relative
}

.elementor-categorylist .style1 .categoryblock,
.elementor-categorylist .style2 .categoryblock .category-wrap .categoryimage,
.modal-dialog .modal-footer {
    text-align: center
}

.elementor-categorylist .style1 .categoryblock .category-wrap {
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    padding: 0 5px
}

.elementor-categorylist .style1 .categoryblock .categoryimage {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all .5s ease 0s
}

.elementor-categorylist .style1 .categoryblock .categoryimage img {
    border-radius: 50%
}

.elementor-categorylist .style1 .categoryblock .categorylist .cate-heading a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: #333;
    letter-spacing: .3px
}

.elementor-categorylist .style1 .categoryblock .categorylist .categories-info-content .sub-categories {
    margin: 5px 0 0
}

.elementor-categorylist .style1 .categoryblock .show-all-cate {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px
}

.elementor-categorylist .style3 .categoryblock .show-all-cate {
    display: block;
    margin-top: 5px
}

.elementor-categorylist .style1 .categoryblock .show-all-cate a,
.elementor-categorylist .style3 .categoryblock .show-all-cate a {
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    font-size: 14px;
    letter-spacing: .3px;
    text-decoration: underline
}

.elementor-categorylist .style2 .categoryblock .category-wrap {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    border-radius: 5px;
    padding: 0
}

.elementor-categorylist .style2 .categoryblock .categorylist .category-title {
    padding: 10px 5px;
    background: #d8d8d8;
    text-align: center
}

.elementor-categorylist .style2 .categoryblock .categorylist .cate-heading a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase
}

.elementor-categorylist .style2 .categoryblock .categorylist .categories-info-content .sub-categories {
    text-align: left;
    padding: 10px;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.elementor-categorylist .style2 .categoryblock .categorylist .categories-info-content .sub-categories li {
    padding: 5px;
    position: relative;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.elementor-categorylist .style2 .categoryblock .categorylist .categories-info-content .sub-categories li a {
    font-size: 14px;
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center
}

.elementor-categorylist .style2 .categoryblock .categorylist .categories-info-content .sub-categories li a:before {
    font-family: "Material Icons";
    content: "\e5cc";
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle
}

.elementor-categorylist .style3 .categoryblock .category-wrap {
    position: relative;
    overflow: hidden
}

.elementor-categorylist .style3 .categoryblock .category-wrap .categoryimage {
    display: block;
    transition: transform .5s cubic-bezier(0, 0, .44, 1.18)
}

.elementor-categorylist .style3 .categoryblock .category-wrap .categorylist {
    position: absolute;
    right: 20px;
    bottom: 15px;
    left: 20px;
    transition: transform .3s ease;
    transform: translateY(100%) translateZ(0)
}

.elementor-categorylist .style3 .categoryblock .category-wrap .categorylist .cate-heading {
    position: absolute;
    bottom: 100%;
    left: 0
}

.elementor-categorylist .style3 .categoryblock .category-wrap .categorylist .cate-heading a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px
}

.elementor-categorylist .style3 .categoryblock .category-wrap .categorylist .cate-count {
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    transform: translateY(15px) translateZ(0)
}

.elementor-categorylist .style3 .categoryblock .category-wrap .categorylist .categories-info-content .sub-categories {
    margin: 0
}

.elementor-categorylist .style3 .categoryblock .show-all-cate {
    margin-bottom: 0
}

.elementor-categorylist .style3 .categoryblock:hover .categoryimage {
    transform: scale3d(1.1, 1.1, 1)
}

.elementor-categorylist .style3 .categoryblock:hover .categorylist {
    transform: translateY(0) translateZ(0)
}

.elementor-categorylist .style3 .categoryblock:hover .categorylist .cate-count {
    opacity: 1;
    transform: translateY(0) translateZ(0)
}

#module-tdcompare-compare .page-header {
    margin: 0 0 20px;
    padding: 0;
    background: 0 0;
    border: 0
}

#module-tdcompare-compare .page-header h1 {
    padding: 0 0 12px
}

table#product_comparison td,
table#product_comparison th {
    border-color: #e5e5e5
}

table#product_comparison tbody tr td.product-block {
    vertical-align: top;
    padding: 15px;
    text-align: center
}

table#product_comparison tbody tr td.feature-name,
table#product_comparison tbody tr td.td_empty,
table#product_comparison tbody tr.comparison_header {
    background: #f6f6f6;
    color: #7a7a7a
}

table#product_comparison tbody tr td.comparison_infos {
    text-align: center;
    background: 0 0
}

table#product_comparison tbody tr td.td_empty {
    vertical-align: bottom
}

table#product_comparison tbody tr td.td_empty>span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #555454
}

table#product_comparison .remove {
    padding: 0 0 15px
}

table#product_comparison .remove a {
    font-size: 28px;
    line-height: 23px
}

table#product_comparison .thumbnail-container {
    display: inline-block;
    position: relative
}

table#product_comparison .thumbnail-container .product-thumbnail {
    padding: 5px;
    border: 1px solid #e5e5e5;
    display: inline-block;
    margin: 0 0 10px
}

table#product_comparison .thumbnail-container .product-thumbnail img {
    width: 100%;
    max-width: 250px
}

table#product_comparison .product-title {
    margin: 0;
    line-height: 20px;
    font-size: 16px;
    font-weight: 400
}

table#product_comparison .product-price-and-shipping {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500
}

table#product_comparison .product-price-and-shipping .regular-price {
    font-size: 90%;
    text-decoration: line-through
}

table#product_comparison .product-price-and-shipping .discount-percentage {
    font-weight: 400;
    line-height: 10px;
    margin: 0 5px;
    padding: 4px;
    font-size: 12px
}

.td-newsletter .box-newsletter .innerbox-newsletter .newsletter-desc,
table#product_comparison .highlighted-informations,
table#product_comparison .product-desc {
    margin: 10px 0 0
}

table#product_comparison .highlighted-informations {
    position: relative;
    transform: none;
    bottom: auto;
    transition: none;
    text-align: center
}

table#product_comparison .highlighted-informations .variant-links {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

table#product_comparison .highlighted-informations .variant-links .count {
    margin-left: 4px
}

table#product_comparison .product-add-to-cart {
    margin-top: 15px
}

table#product_comparison .product-rating {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    overflow: hidden
}

.footer_link {
    margin: 0 0 20px
}

.modal-dialog .modal-header .modal-msg {
    font-size: 16px;
    line-height: 20px
}

.modal-dialog .modal-footer button {
    margin: 0 5px
}

.td-newsletter {
    display: none;
    background-size: cover;
    background-color: #fff;
    position: absolute;
    right: 50%;
    padding: 0;
    top: 50%;
    left: 50%;
    margin: 0 auto;
    min-width: 290px;
    width: 90%;
    transform: translate(-50%, -50%)
}

.td-newsletter .image-newsletter {
    padding: 0;
    text-align: center
}

.td-newsletter .image-newsletter img {
    width: 100%
}

.td-newsletter .box-newsletter {
    padding: 0;
    text-align: center;
    height: auto !important;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.td-newsletter .box-newsletter .innerbox-newsletter {
    padding: 30px
}

.td-newsletter .box-newsletter .innerbox-newsletter .tdnewsletter_form {
    padding-top: 10px
}

.td-newsletter .td-newsletter-dont {
    position: absolute;
    right: 12px;
    bottom: 12px;
    transition: all .3s ease-in-out
}

.td-newsletter .td-newsletter-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 2;
    text-align: center;
    transition: all .3s ease-in-out
}

.td-newsletter .input-wrapper .form-control {
    text-align: center
}

.td-newsletter .tdnewsletter_send {
    margin-top: 10px
}

.lang-rtl .td-newsletter {
    transform: translate(50%, -50%)
}

.lang-rtl .td-newsletter .td-newsletter-dont {
    left: 12px;
    right: auto
}

.lang-rtl .td-newsletter .td-newsletter-close {
    right: auto;
    left: 0
}

#articleComments #comments,
#respond .form-group label,
.newsletter-content {
    margin-bottom: 10px
}

.newsletter-content h2 {
    font-size: 30px;
    margin-bottom: 20px
}

.newsletter-content p {
    margin-bottom: 25px;
    font-size: 14px
}

.td-newsletter-close:before {
    content: "\2716";
    display: block;
    font-size: 22px;
    line-height: 43px
}

.td-newsletter-link {
    display: block
}

.elementor-blogs .element-loading {
    min-height: 400px
}

.block_content .side-blog {
    margin-bottom: 15px
}

.block_content .side-blog:last-child {
    margin-bottom: 0
}

.block_content .side-blog .blog-img {
    float: left;
    margin: 0 10px 0 0
}

.lang-rtl .block_content .side-blog .blog-img {
    float: right;
    margin: 0 0 0 10px
}

.block_content .side-blog .blog-detail .title {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5px
}

.block_content .side-blog .blog-comment-content {
    display: inline-block;
    vertical-align: middle;
    width: 100%
}

.block_content .side-blog .blog-comment-content .blog-img {
    border-radius: 50%;
    overflow: hidden
}

.block_content .side-blog .blog-comment {
    margin-top: 5px
}

.block_content .tags,
.blog-details .blog-details-inner .blog-tags .tags {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.block_content .tags a,
.blog-details .blog-details-inner .blog-tags .tags a {
    padding: 0 8px;
    font-size: 13px;
    background: #f9f9f9;
    color: #232323;
    border: solid 1px #e9e9e9
}

.block_content .tags a {
    margin-right: 8px;
    margin-bottom: 8px;
    vertical-align: middle
}

.block_content .tags a:hover,
.blog-details .blog-details-inner .blog-tags .tags a:hover {
    background: #232323;
    color: #fff;
    border-color: #232323
}

.blogsearch_block #sdssearch_block_top .btn-blog-search {
    float: right;
    height: 40px;
    margin: 0 0 0 10px;
    padding: 0 10px;
    font-size: 18px
}

.lang-rtl .blogsearch_block #sdssearch_block_top .btn-blog-search {
    margin: 0 10px 0 0;
    float: left
}

#smartblogcat .sdsarticleCat .articleContent,
.blog-details .blog-details-inner .blog-thumbnail {
    margin-bottom: 15px
}

.blog-details .blog-details-inner .title_block {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 5px
}

.blog-details .blog-details-inner .blog-content {
    text-align: justify;
    margin: 0 0 15px
}

#respond,
.blog-details .blog-details-inner .addthis_toolbox,
.blogs article.blog {
    margin-bottom: 20px
}

.blog-details .blog-details-inner .blog-tags .tags {
    margin: 0 0 20px
}

.blog-details .blog-details-inner .blog-tags .tags a {
    margin-right: 5px;
    margin-bottom: 5px;
    line-height: 22px;
    text-transform: capitalize
}

.blog-details .blog-details-inner .blog-navigation {
    margin-bottom: 30px
}

.blog-info,
.blog-info>span {
    -ms-flex-align: center;
    align-items: center
}

.blog-info {
    margin-bottom: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%
}

.blog-info>span {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 15px 0 0
}

.lang-rtl .blog-info>span {
    margin: 0 0 0 15px
}

.blog-info>span i {
    font-size: 18px;
    margin: 0 3px 0 0;
    text-align: center;
    vertical-align: middle
}

.lang-rtl .blog-info>span i {
    margin: 0 0 0 3px
}

.sdsblogCategory {
    margin: 0 0 30px
}

.sdsblogCategory .img-responsive {
    background: 0 0;
    border: medium;
    margin: 0 0 15px;
    max-width: 100%;
    padding: 0
}

.sdsblogCategory .catDesc {
    margin: 0 0 20px
}

#smartblogcat .sdsarticleCat {
    border-bottom: 1px solid #777;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative
}

#smartblogcat .sdsarticleCat .articleContent img,
.blogs .blog-media img {
    max-width: 100%;
    width: 100%
}

#smartblogcat .sdsarticleCat .sdsarticleHeader {
    margin: auto
}

#smartblogcat .sdsarticleCat .sdsarticleHeader .title_block {
    font-size: 20px;
    line-height: 26px;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 10px
}

#smartblogcat .sdsarticleCat .sdsarticle-des {
    margin: 0 0 15px;
    text-align: justify;
    line-height: 24px
}

#respond {
    padding: 20px;
    display: inline-block;
    vertical-align: middle;
    width: 100%
}

#respond .comment-reply-title {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 20px
}

#respond .comment-reply-title #cancel-comment-reply-link {
    float: right;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer
}

#respond .form-group .note {
    float: right;
    color: #ff4c4c
}

.lang-rtl #respond .form-group .note {
    float: left
}

#respond .form-group sup {
    color: #ff4c4c;
    font-size: 15px
}

#respond .form-group .error {
    color: #ff4c4c;
    font-size: 12px
}

#respond .form-group.captcha .smartblogcaptcha {
    margin-top: 10px
}

#respond .attention,
#respond .success,
#respond .warning {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 15px
}

#respond .attention,
#respond .warning {
    background-color: #e5e5e5;
    color: #333
}

#respond .warning {
    background-color: #f2dede;
    color: #a94442
}

#articleComments {
    margin-bottom: 50px
}

#articleComments .commenttitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--color-border)
}

#articleComments .commentList {
    margin: 0;
    position: relative
}

#articleComments .commentList li article {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative
}

#articleComments .commentList li .comment-info {
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

#articleComments .commentList li .comment-avatar {
    float: left;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 15px 0 0
}

.lang-rtl #articleComments .commentList li .comment-avatar {
    float: right;
    margin: 0 0 0 15px
}

#articleComments .commentList li .comment-content {
    margin-top: 15px
}

#articleComments .commentList li .comment-reply-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    text-transform: uppercase
}

#articleComments .commentList li .name,
#articleComments .commentList li .name a {
    font-size: 13px;
    font-weight: 700
}

#articleComments .commentList .children {
    margin: 0 0 0 30px
}

.lang-rtl #articleComments .commentList .children {
    margin: 0 30px 0 0
}

.blogs .blog-media {
    position: relative;
    margin-bottom: 20px
}

.blogs .blog-media img {
    display: block;
    height: auto;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 15px 18px -15px rgba(32, 32, 37, .25);
    transition: all .5s ease
}

.blogs article.blog .blog-content .blog-post-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 1.35
}

.blogs article.blog .blog-content .blog-post-title a {
    color: var(--color-btn-bg);
}

.blogs article.blog .blog-content .blog-post-content {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.7;
    color: var(--color-body-text)
}

.blogs .blog-style-1 .blog-content {
    position: relative;
    overflow-wrap: break-word
}

.blogs .blog-style-1 .blog-content .blog-post-metadata {
    margin: 0 0 5px;
    text-align: left
}

.blogs .blog-style-1 .blog-content .blog-post-metadata li {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.7;
    color: #8f8f9c
}

.blogs .blog-style-1 .blog-content .blog-post-read-more {
    float: left;
    margin-top: 10px
}

.blogs .blog-style-1 .blog-content .blog-post-read-more a {
    display: inline-block;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 1.6;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
    color: #232323
}

.blogs .blog-style-1 .blog-content .blog-post-read-more a:hover {
    color: var(--color-primary)
}

.blogs .blog-style-1 .blog-content .blog-post-counters {
    float: right;
    text-align: right;
    margin-top: 10px
}

.blogs .blog-style-1 .blog-content .blog-post-counters .blog-views-counter,
.blogs .blog-style-1 .blog-content .blog-post-counters a {
    display: inline-block;
    margin-right: 14px;
    font-size: 15px;
    line-height: 1.6;
    white-space: nowrap;
    color: var(--color-body-text)
}

.blogs .blog-style-1 .blog-content .blog-post-counters .blog-views-counter i,
.blogs .blog-style-1 .blog-content .blog-post-counters a i {
    font-size: 16px;
    margin-right: 4px
}

.blogs .blog-style-1 .blog-content .blog-post-counters .blog-views-counter .blog-counter-number,
.blogs .blog-style-1 .blog-content .blog-post-counters a .blog-counter-number {
    position: relative;
    top: -1px;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .2px
}

.blogs .blog-style-1 .blog-content .blog-post-counters .blog-views-counter:last-child,
.blogs .blog-style-1 .blog-content .blog-post-counters a:last-child {
    margin-right: 0
}

.blogs .blog-style-1 .blog-content .blog-post-counters a:hover {
    color: var(--color-primary)
}

.blogs .blog-style-2 .blog-content {
    text-align: center
}

.blogs .blog-style-2 .blog-content .blog-post-metadata {
    margin: 0 0 5px;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.blogs .blog-style-2 .blog-content .blog-post-metadata li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.7;
    color: var(--color-body-text)
}

.blogs .blog-style-2 .blog-content .blog-post-metadata li:not(:last-child) {
    margin-right: 25px
}

.blogs .blog-style-2 .blog-content .blog-post-metadata li:not(:last-child)::after {
    content: "";
    background-color: var(--color-body-text);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%)
}

.blogs .blog-style-2 .blog-content .blog-post-content {
    width: 80%;
    margin: 0 auto 5px
}

.blogs .blog-style-2 .blog-content .blog-post-read-more a {
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.6;
    color: var(--color-btn-bg)
}

.blogs .blog-style-2 .blog-content .blog-post-read-more a:hover,
.blogs .blog-style-5 .blog-wrap .blog-content .blog-post-read-more a:hover {
    text-decoration: underline;
    color: var(--color-primary)
}

.blogs .blog-style-3 .blog-wrap {
    position: relative;
    overflow: hidden
}

.blogs .blog-style-3 .blog-wrap .blog-media {
    margin-bottom: 0
}

.blogs .blog-style-3 .blog-wrap .blog-content {
    padding: 20px 20px 10px;
    position: absolute;
    top: auto;
    bottom: -5px;
    width: 100%;
    text-align: left;
    background: linear-gradient(to bottom, rgba(83, 100, 141, 0) 0, rgba(0, 0, 0, .7) 65%);
    transition: all 500ms ease 0s
}

.blogs .blog-style-3 .blog-wrap .blog-content .blog-post-metadata .blog-post-date {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    letter-spacing: .5px;
    text-transform: capitalize;
    width: auto;
    position: relative;
    background: 0 0;
    transition: all .5s ease 0s
}

.blogs .blog-style-3 .blog-wrap .blog-content .blog-post-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: .7px;
    padding-top: 5px;
    color: #fff;
    margin: 0
}

.blogs .blog-style-3 .blog-wrap .blog-content .blog-post-title a {
    color: #fff
}

.blogs .blog-style-3 .blog-wrap .blog-content .blog-post-content {
    font-size: 13px;
    color: #9c9c9b;
    line-height: 24px;
    letter-spacing: .5px;
    margin-top: 7px;
    opacity: 0;
    height: 0;
    transition: height 2s ease
}

.blogs .blog-style-3 .blog-wrap:hover .blog-media img,
.blogs .blog-style-5 .blog-wrap:hover .blog-media img {
    transform: scale(1.1)
}

.blogs .blog-style-3 .blog-wrap:hover .blog-content {
    bottom: 0
}

.blogs .blog-style-3 .blog-wrap:hover .blog-content .blog-post-content {
    opacity: 1;
    height: auto
}

.blogs .blog-style-4 .blog-wrap .blog-media {
    position: relative;
    margin-bottom: 10px
}

.blogs .blog-style-4 .blog-wrap .blog-media .blog-post-date {
    background: #fff;
    color: #000;
    padding: 10px 15px;
    position: absolute;
    left: 10px;
    top: 10px;
    font-weight: 600;
    line-height: normal;
    text-align: center
}

.blogs .blog-style-4 .blog-wrap .blog-media .blog-post-date .blog-day {
    display: inline-block
}

.blogs .blog-style-4 .blog-wrap .blog-media .blog-post-date .blog-month {
    display: block;
    text-transform: uppercase
}

.blogs .blog-style-4 .blog-wrap .blog-content .blog-post-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 0 5px
}

.blogs .blog-style-4 .blog-wrap .blog-content .blog-post-content {
    font-size: 14px
}

.blogs .blog-style-5 .blog-wrap,
.blogs .blog-style-6 .blog-wrap {
    display: -ms-flexbox;
    display: flex
}

.blogs .blog-style-5 .blog-wrap .blog-media {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden
}

.blogs .blog-style-5 .blog-wrap .blog-content {
    width: 100%;
    padding-left: 15px
}

.blogs .blog-style-5 .blog-wrap .blog-content .blog-post-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    margin: 0
}

.blogs .blog-style-5 .blog-wrap .blog-content .blog-post-metadata .blog-post-date {
    margin: 8px 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-body-text);
    letter-spacing: .5px;
    text-transform: capitalize;
    width: auto;
    position: relative;
    background: 0 0;
    transition: all .5s ease 0s
}

.blogs .blog-style-5 .blog-wrap .blog-content .blog-post-content {
    font-size: 13px;
    margin-bottom: 8px
}

.blogs .blog-style-5 .blog-wrap .blog-content .blog-post-read-more a {
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.6;
    color: #232323
}

.blogs .blog-style-6 .blog-wrap {
    -ms-flex-align: center;
    align-items: center
}

.blogs .blog-style-6 .blog-wrap .blog-post-date {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    text-transform: uppercase;
    color: #fff;
    background: #262626;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    transition: all .3s ease
}

.blogs .blog-style-6 .blog-wrap .blog-post-date .blog-day {
    display: block;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    padding: 15px 22px 0;
    letter-spacing: .4px;
    line-height: 33px;
    color: #fff;
    transition: all .5s ease
}

.blogs .blog-style-6 .blog-wrap .blog-post-date .blog-month {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: .4px;
    padding: 0;
    background: border-box;
    text-transform: capitalize;
    color: #fff;
    transition: all .5s ease
}

.blogs .blog-style-6 .blog-wrap .blog-content {
    padding-left: 20px
}

.blogs .blog-style-6 .blog-wrap .blog-content .blog-post-title {
    font-size: 16px;
    display: inline-block;
    transition: all .5s ease
}

.blogs .blog-style-6 .blog-wrap .blog-content .blog-post-title a {
    transition: all .5s ease
}

.blogs .blog-style-6 .blog-wrap .blog-content .blog-post-content {
    font-size: 13px;
    letter-spacing: .6px;
    display: inline-block
}

@media (min-width:576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-sm-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-sm-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-sm-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-sm-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-sm-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-sm-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

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

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

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

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

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

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

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

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

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

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

    .col-sm-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }

    .form-inline .form-group,
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline label {
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .form-group {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto
    }

    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }

    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }

    .dropdown-menu-sm-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-sm-right {
        right: 0;
        left: auto
    }

    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }

    .card-deck {
        margin-right: -10px;
        margin-left: -10px
    }

    .card-deck .card {
        margin-right: 10px;
        margin-left: 10px
    }

    .card-deck,
    .card-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }

    .card-deck .card,
    .card-group>.card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0
    }

    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-header,
    .card-group>.card:not(:last-child) .card-img-top {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-footer,
    .card-group>.card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-header,
    .card-group>.card:not(:first-child) .card-img-top {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-footer,
    .card-group>.card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0
    }

    .card-columns {
        column-count: 3;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }

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

    .jumbotron {
        padding: 4rem 2rem
    }

    .list-group-horizontal-sm {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }

    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: -moz-min-content;
        height: min-content
    }

    .modal-sm {
        max-width: 300px
    }

    .d-sm-none {
        display: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }

    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -.5rem !important
    }

    .m-sm-n3 {
        margin: -1rem !important
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important
    }

    .m-sm-n4 {
        margin: -1.5rem !important
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important
    }

    .m-sm-n5 {
        margin: -3rem !important
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }

    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }

    .hidden-sm-up {
        display: none !important
    }

    .product-style-8 .images-container .product-cover .product-img:nth-last-child(-n+2) {
        margin-bottom: 0
    }

    #offcanvas_search .modal-dialog__offcanvas--top .search_block_top .tdsearch_result_content .ajax-search-content .items-list .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%
    }
}

@media (min-width:768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-md-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-md-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-md-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-md-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-md-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-md-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

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

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

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

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

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

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

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

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

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

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

    .col-md-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-md-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }

    .dropdown-menu-md-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-md-right {
        right: 0;
        left: auto
    }

    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .list-group-horizontal-md,
    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }

    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }

    .d-md-none {
        display: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
        flex-direction: column;
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }

    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -.5rem !important
    }

    .m-md-n3 {
        margin: -1rem !important
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important
    }

    .m-md-n4 {
        margin: -1.5rem !important
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important
    }

    .m-md-n5 {
        margin: -3rem !important
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }

    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }

    .page-authentication #main,
    .page-identity #main,
    .page-password #main,
    .page-registration #main {
        width: 75%;
        max-width: 600px;
        margin: 0 auto
    }

    .hidden-md-up {
        display: none !important
    }

    .visible--mobile {
        display: none
    }

    .product-style-1 .product-images,
    .product-style-1 .product-infos,
    .product-style-2 .product-images,
    .product-style-2 .product-infos,
    .product-style-3 .product-images,
    .product-style-3 .product-infos,
    .product-style-4 .product-images,
    .product-style-4 .product-infos,
    .product-style-5 .product-images,
    .product-style-5 .product-infos,
    .product-style-7 .product-images,
    .product-style-7 .product-infos,
    .product-style-8 .product-images,
    .product-style-8 .product-infos,
    .product-style-9 .product-images,
    .product-style-9 .product-infos {
        position: sticky;
        top: 20px;
        -ms-flex-item-align: start;
        align-self: flex-start
    }

    .product-tabs.tab-tabs .tab-content .accordion-tab-content.collapse {
        display: block
    }

    .product-style-6 .product-infos {
        margin-top: 20px
    }

    .quickview .modal-content .modal-body .right-block {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        overflow-y: auto
    }

    .quickview .modal-content .modal-body .right-block .qv-innner {
        padding: 20px 10px 20px 0
    }

    .contact-rich .contact-inner .block {
        border-right: 1px solid #e5e5e5
    }

    .contact-rich .contact-inner .block:last-child {
        border: 0
    }
}

@media (min-width:992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-lg-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-lg-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-lg-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-lg-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-lg-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-lg-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

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

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

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

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

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

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

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

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

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

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

    .col-lg-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }

    .dropdown-menu-lg-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-lg-right {
        right: 0;
        left: auto
    }

    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .list-group-horizontal-lg,
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }

    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }

    .modal-lg,
    .modal-xl {
        max-width: 800px
    }

    .d-lg-none {
        display: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }

    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -.5rem !important
    }

    .m-lg-n3 {
        margin: -1rem !important
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important
    }

    .m-lg-n4 {
        margin: -1.5rem !important
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important
    }

    .m-lg-n5 {
        margin: -3rem !important
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }

    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }

    .hidden-lg-up {
        display: none !important
    }

    #header #header_logo {
        max-width: 250px
    }

    #contact_store_info .block_content {
        padding-right: 30px
    }

    .footer-container ul.collapse {
        margin-bottom: 0
    }

    .searchwrap {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex: 1;
        flex: 1;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media (min-width:1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-xl-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-xl-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-xl-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-xl-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xl-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-xl-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

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

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

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

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

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

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

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

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

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

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

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

    .col-xl-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

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

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }

    .dropdown-menu-xl-left {
        right: auto;
        left: 0
    }

    .dropdown-menu-xl-right {
        right: 0;
        left: auto
    }

    .navbar-expand-xl {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .list-group-horizontal-xl,
    .navbar-expand-xl .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }

    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }

    .modal-xl {
        max-width: 1140px
    }

    .d-xl-none {
        display: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }

    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }

    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }

    .hidden-xl-up {
        display: none !important
    }

    .elementor-brands .grid.cols-xl-1 .item,
    .products.cols-xl-1 .product-miniature {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-brands .grid.cols-xl-2 .item,
    .products.cols-xl-2 .product-miniature {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-brands .grid.cols-xl-3 .item,
    .products.cols-xl-3 .product-miniature {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-brands .grid.cols-xl-4 .item,
    .products.cols-xl-4 .product-miniature {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .elementor-brands .grid.cols-xl-5 .item,
    .products.cols-xl-5 .product-miniature {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .elementor-brands .grid.cols-xl-6 .item,
    .products.cols-xl-6 .product-miniature {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .header-menu-text .wrapper-menu-vertical .menu-vertical-title {
        width: 270px
    }

    .header-menu-text .wrapper-menu-vertical .menu-vertical-title::after {
        content: "\f107";
        font-family: "FontAwesome";
        font-size: 16px;
        font-weight: 400;
        transition: transform .25s ease;
        backface-visibility: hidden
    }

    body:not(.vertical_menu_visible) .header-menu-text .wrapper-menu-vertical.active .menu-vertical-title::after {
        transform: rotate(-180deg)
    }

    .elementor-brands .grid.cols-xl-7 .item {
        -ms-flex: 0 0 14.2%;
        flex: 0 0 14.2%;
        max-width: 14.2%
    }

    .elementor-brands .grid.cols-xl-8 .item {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }

    .elementor-categorylist .grid.cols-xl-1 .categoryblock {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-categorylist .grid.cols-xl-2 .categoryblock {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-categorylist .grid.cols-xl-3 .categoryblock {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-categorylist .grid.cols-xl-4 .categoryblock {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .elementor-categorylist .grid.cols-xl-5 .categoryblock {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .elementor-categorylist .grid.cols-xl-6 .categoryblock {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .elementor-categorylist .grid.cols-xl-7 .categoryblock {
        -ms-flex: 0 0 14.2%;
        flex: 0 0 14.2%;
        max-width: 14.2%
    }

    .elementor-categorylist .grid.cols-xl-8 .categoryblock {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%
    }
}

@media (max-width:575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-sm>.table-bordered {
        border: 0
    }

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }

    .hidden-xs-down {
        display: none !important
    }

    #header #header_logo .logo {
        max-height: 30px
    }

    .search-widget form input[type=text] {
        min-width: 230px;
        max-width: 230px
    }

    #product-list .products .product-miniature.list .thumbnail-container {
        display: inline-block
    }

    #product-list .products .product-miniature.list .center-block {
        margin-top: 15px;
        text-align: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    #product-list .products .product-miniature.list .center-block .products-variants .variant-links,
    #product-list .products .product-miniature.list .right-block .button-container {
        -ms-flex-pack: center;
        justify-content: center
    }

    #product-list .products .product-miniature.list .right-block {
        margin-top: 5px;
        text-align: center
    }

    .products .product-miniature .product-container {
        max-width: 370px
    }

    .products .product-miniature .product-countdown .countdown-timer {
        padding: 5px 10px
    }

    .products .product-miniature .product-countdown .countdown-timer>i {
        display: none
    }

    .products.cols-xs-1 .product-miniature {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .products.cols-xs-2 .product-miniature {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .product-style-8 .images-container .product-cover .product-img {
        margin-bottom: 10px
    }

    .product-style-8 .images-container .product-cover .product-img:nth-last-child(1) {
        margin-bottom: 0
    }

    .js-cover-vcarousel .images-container .product-thumbs-outer {
        width: 60px
    }

    .product-style-4 .js-cover-vcarousel .images-container {
        padding-left: 70px
    }

    .product-style-5 .js-cover-vcarousel .images-container {
        padding-right: 70px
    }

    .product-countdown.product-countdown-style-2 {
        -ms-flex-flow: wrap;
        flex-flow: wrap
    }

    .product-countdown.product-countdown-style-2 .countdown-header {
        margin-bottom: 5px
    }

    .modal-cart__image {
        max-width: 70px
    }

    .comments_advices a i,
    .tdblockcart-modal .cart-products .product-name {
        font-size: 16px
    }

    .blockcart .cart_block {
        width: 270px
    }

    .product-comment-modal .modal-header {
        padding-left: 15px;
        padding-right: 15px
    }

    .product-comment-modal .modal-header .h2 {
        font-size: 18px
    }

    .product-comment-modal .modal-body {
        padding: 15px
    }

    #criterions_list {
        margin-top: 15px
    }

    .criterion-rating {
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .elementor-brands .grid.cols-xs-1 .item,
    .product-comment-footer .post-comment-buttons,
    .product-comment-footer .post-comment-required {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .product-comment-footer .post-comment-buttons {
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 10px
    }

    .comments_advices a {
        font-size: 13px
    }

    .comments_advices a.reviews {
        margin: 0 10px 0 0
    }

    #product_comments_block_tab div.comment .comment_details ul li {
        padding: 2px 0;
        float: left;
        width: 100%
    }

    #product_comments_block_tab span.report_btn {
        float: left
    }

    .td-modal-send-wishlist .modal-dialog {
        width: auto
    }

    .search_block_top .searchbox .searchboxform-control {
        display: none
    }

    .elementor-brands .grid.cols-xs-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-categorylist .grid.cols-xs-1 .categoryblock {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-categorylist .grid.cols-xs-2 .categoryblock {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-categorylist .grid.cols-xs-3 .categoryblock {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    #product_comparison td {
        float: none;
        text-align: center;
        width: 100%
    }

    #product_comparison .comparison_feature td {
        float: left;
        width: 50%
    }

    #product_comparison .comparison_feature .feature-name {
        width: 100%;
        clear: both
    }

    #product_comparison .comparison_feature .product-name {
        width: 50%;
        float: left;
        display: block
    }

    .blogs .blog-style-5 .blog-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .blogs .blog-style-5 .blog-wrap .blog-content {
        padding-left: 0;
        margin-top: 10px
    }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-md>.table-bordered {
        border: 0
    }

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }

    .hidden-sm-down {
        display: none !important
    }

    .products .product-miniature.style-3 .product-container .button-container .compare,
    .products .product-miniature.style-3 .product-container .button-container .wishlist,
    .visible--desktop {
        display: none
    }

    #wrapper {
        padding-top: 10px;
        padding-bottom: 10px
    }

    section.checkout-step .address-item {
        -ms-flex: 0 0 99%;
        flex: 0 0 99%
    }

    #products #product-list-top .products-selection .box-sort-by .sort-order {
        margin: 0
    }

    .products .product-miniature.style-3 .product-container .button-container {
        left: 10px;
        right: 10px
    }

    .products .product-miniature.style-3 .product-container .product-description {
        padding: 10px
    }

    .images-container .product-cover .product-img .easyzoom {
        pointer-events: none
    }

    .images-container .slick-arrow {
        opacity: 1
    }

    .images-container .slick-prev {
        left: 15px
    }

    .images-container .slick-next {
        right: 15px
    }

    .product-action-wrap {
        margin: 0 0 10px
    }

    .js-product-images-modal .product-manufacturer img {
        max-height: 50px
    }

    .product-tabs {
        margin-bottom: 20px;
        margin-top: 20px
    }

    .product-tabs .tab-content {
        padding-top: 0
    }

    .product-tabs.tab-tabs .tab-content .accordion-tab-content {
        padding: 15px 0
    }

    .product-tabs.tab-tabs .tab-content>.tab-pane {
        display: block !important;
        opacity: 1
    }

    .product-features>ul.data-sheet li .label {
        width: 100%
    }

    .product-features>ul.data-sheet li .value {
        width: calc(100% - 10px)
    }

    .product-infos {
        margin-top: 15px
    }

    .product-line-grid .product-line-details {
        margin-bottom: 10px
    }

    .product-line-grid .cart-line-product-actions {
        position: absolute;
        right: 0;
        top: 0
    }

    .quickview .modal-content .modal-body .right-block .qv-innner {
        padding: 20px 15px
    }

    .contact-rich .contact-inner {
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .contact-rich .contact-inner .block {
        margin-bottom: 15px;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .page-stores .store-item .store-item-container {
        padding: 16px 0
    }

    #product_comments_block_tab div.comment .comment_author,
    .block_newsletter .newsletter_content {
        margin-bottom: 10px
    }

    .footer-style-2 .block_newsletter .newsletter_content {
        margin-bottom: 0
    }

    .footer-style-2 .copyright-txt {
        margin-top: 15px
    }

    .search_block_top .searchbox .searchboxform-control .search_category {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden
    }

    #offcanvas_search .modal-dialog__offcanvas--top .modal-body {
        padding: 15px 20px
    }

    #product_comparison table,
    #product_comparison tbody,
    #product_comparison td,
    #product_comparison th,
    #product_comparison thead,
    #product_comparison tr {
        display: block
    }

    #product_comparison thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px
    }

    #product_comparison tr {
        overflow: hidden
    }

    #product_comparison tr:last-child,
    #product_comparison tr:last-child td {
        border-bottom: none
    }

    #product_comparison td {
        border: 0;
        position: relative;
        white-space: normal;
        float: left;
        width: 33.33%
    }

    .lang-rtl #product_comparison td {
        float: right
    }

    #product_comparison td.feature-name,
    .td-newsletter .box-newsletter .innerbox-newsletter {
        width: 100%;
        text-align: center
    }

    #product_comparison td.td_empty {
        width: 100% !important;
        clear: both
    }

    #product_comparison td:last-child {
        border-bottom: none
    }

    #product_comparison .comparison_feature .feature-name {
        width: 100%;
        float: none;
        clear: both
    }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-lg>.table-bordered {
        border: 0
    }

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }

    .hidden-md-down {
        display: none !important
    }

    #header #header_logo {
        padding: 0 10px
    }

    .breadcrumb .page-heading {
        font-size: 18px
    }

    .breadcrumb.style-3 .container,
    .breadcrumb.style-3 .container-fluid,
    .container>.breadcrumb.style-3 {
        display: block
    }

    .order_steps .step .step-title {
        font-size: 90%;
        line-height: 1.4
    }

    .checkout-step-display .delivery-option .carrier-name {
        width: 100%
    }

    .checkout-step-display .delivery-option .carrier-delay {
        width: auto
    }

    #order-items .details {
        margin-bottom: .5rem
    }

    #checkout #wrapper {
        padding-top: 20px
    }

    #left-column .block,
    #right-column .block {
        margin-bottom: 10px
    }

    #left-column .block .title_block,
    #right-column .block .title_block {
        position: relative;
        width: 100%;
        display: block;
        line-height: 22px
    }

    #left-column .block .title_block:before,
    #right-column .block .title_block:before,
    .footer-container .title_block:before {
        font-family: "Material Icons";
        content: "\e313";
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 22px;
        position: absolute;
        right: 0;
        transition: transform .3s ease-in-out
    }

    #left-column .block .title_block[data-toggle=collapse][aria-expanded=true]:before,
    #right-column .block .title_block[data-toggle=collapse][aria-expanded=true]:before,
    .footer-container .title_block[data-toggle=collapse][aria-expanded=true]:before {
        transform: rotate(180deg)
    }

    .products .product-miniature.style-left .product-container .product-description {
        padding: 0 0 0 10px
    }

    .product-tabs {
        margin-bottom: 30px
    }

    .modal-cart__image {
        max-width: 120px
    }

    .blockcart-modal .divide-right {
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 15px
    }

    #footer .block-social,
    .payment-logo {
        margin-top: 15px
    }

    .footer-container .title_block {
        position: relative
    }

    .footer-container .title_block:before {
        top: 0
    }

    .footer-container .collapse {
        margin-bottom: 15px
    }

    .block_newsletter form .newsletter_form_wrap {
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .search_block_top .searchbox {
        float: none;
        text-align: center;
        margin: auto
    }

    table#product_comparison tbody tr td.td_empty span {
        font-size: 14px
    }

    table#product_comparison tbody tr td.product-block {
        padding: 10px
    }

    .td-newsletter {
        min-height: 0 !important;
        height: auto !important
    }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-xl>.table-bordered {
        border: 0
    }

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid {
        padding-right: 0;
        padding-left: 0
    }

    .hidden-lg-down {
        display: none !important
    }
}

@media (prefers-reduced-motion:reduce) {

    .btn,
    .collapsing,
    .collapsing.width,
    .custom-switch .custom-control-label::after,
    .fade,
    .form-control {
        transition: none
    }

    .custom-range::-webkit-slider-thumb {
        transition: none
    }

    .custom-range::-moz-range-thumb {
        transition: none
    }

    .custom-range::-ms-thumb {
        transition: none
    }

    .badge,
    .custom-control-label::before,
    .custom-file-label,
    .custom-select,
    .modal.fade .modal-dialog,
    .progress-bar {
        transition: none
    }

    .progress-bar-animated {
        animation: none
    }

    .carousel-control-next,
    .carousel-control-prev,
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right,
    .carousel-indicators li,
    .carousel-item {
        transition: none
    }

    .spinner-border,
    .spinner-grow {
        animation-duration: 1.5s
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    *,
    ::after,
    ::before {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    blockquote,
    pre {
        border: 1px solid #adb5bd
    }

    blockquote,
    img,
    pre,
    tr {
        page-break-inside: avoid
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    .container,
    body {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,
    .table th {
        background-color: #fff !important
    }

    .table-bordered td,
    .table-bordered th {
        border: 1px solid #dee2e6 !important
    }

    .table-dark {
        color: inherit
    }

    .table-dark tbody+tbody,
    .table-dark td,
    .table-dark th,
    .table-dark thead th {
        border-color: #e5e5e5
    }

    .table .thead-dark th {
        color: inherit;
        border-color: #e5e5e5
    }
}

@media screen and (max-width:800px) and (orientation:landscape) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width:900px) {
    .mfp-arrow {
        transform: scale(.75)
    }

    .mfp-arrow-left {
        transform-origin: 0
    }

    .mfp-arrow-right {
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

@media (min-width:1025px) {

    .navigation-arrows .slick-dots,
    .navigation-dots .slick-arrow,
    .navigation-none .slick-arrow,
    .navigation-none .slick-dots {
        display: none !important
    }

    .tdcarousel.slick-arrows-seen-hover .td-slick-arrows {
        opacity: 0;
        transition: all .3s ease-in-out
    }

    .tdcarousel.slick-arrows-seen-hover:hover .td-slick-arrows {
        opacity: 1
    }

    .tdcarousel.slick-arrows-bottom-left .td-slick-arrows {
        left: 0;
        top: 100%;
        margin-top: -30px
    }

    .tdcarousel.slick-dots-bottom-left .td-slick-dots {
        left: 0;
        top: 100%;
        margin-top: -24px
    }

    .tdcarousel.slick-arrows-bottom-right .td-slick-arrows {
        right: 0;
        top: 100%;
        margin-top: -30px
    }

    .tdcarousel.slick-dots-bottom-right .td-slick-dots {
        right: 0;
        top: 100%;
        margin-top: -24px
    }

    .tdcarousel.slick-arrows-bottom-center .td-slick-arrows {
        left: 50%;
        top: 100%;
        margin-top: -30px;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-dots-bottom-center .td-slick-dots {
        left: 50%;
        top: 100%;
        margin-top: -24px;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-arrows-top-left .td-slick-arrows,
    .tdcarousel.slick-dots-top-left .td-slick-dots {
        left: 0;
        top: 0
    }

    .tdcarousel.slick-arrows-top-right .td-slick-arrows,
    .tdcarousel.slick-dots-top-right .td-slick-dots {
        right: 0;
        top: 0
    }

    .tdcarousel.slick-arrows-top-center .td-slick-arrows,
    .tdcarousel.slick-dots-top-center .td-slick-dots {
        left: 50%;
        top: 0;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-arrows-middle .td-slick-arrows {
        left: 0;
        right: 0;
        top: 50%;
        margin-top: -15px;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .tdcarousel.slick-arrows-seen-hover.slick-arrows-middle .td-slick-arrows {
        left: -15px;
        right: -15px
    }

    .tdcarousel.slick-arrows-seen-hover.slick-arrows-middle:hover .td-slick-arrows {
        left: 0;
        right: 0
    }

    .tdcarousel.slick-dots-middle .td-slick-dots {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }
}

@media (min-width:768px) and (max-width:1024px) {

    .navigation-tablet-arrows .slick-dots,
    .navigation-tablet-dots .slick-arrow,
    .navigation-tablet-none .slick-arrow,
    .navigation-tablet-none .slick-dots {
        display: none !important
    }

    .tdcarousel.slick-arrows-seen-tablet-hover .td-slick-arrows {
        opacity: 0;
        transition: all .3s ease-in-out
    }

    .tdcarousel.slick-arrows-seen-tablet-hover:hover .td-slick-arrows {
        opacity: 1
    }

    .tdcarousel.slick-arrows-tablet-bottom-left .td-slick-arrows {
        left: 0;
        top: 100%;
        margin-top: -30px
    }

    .tdcarousel.slick-dots-tablet-bottom-left .td-slick-dots {
        left: 0;
        top: 100%;
        margin-top: -24px
    }

    .tdcarousel.slick-arrows-tablet-bottom-right .td-slick-arrows {
        right: 0;
        top: 100%;
        margin-top: -30px
    }

    .tdcarousel.slick-dots-tablet-bottom-right .td-slick-dots {
        right: 0;
        top: 100%;
        margin-top: -24px
    }

    .tdcarousel.slick-arrows-tablet-bottom-center .td-slick-arrows {
        left: 50%;
        top: 100%;
        margin-top: -30px;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-dots-tablet-bottom-center .td-slick-dots {
        left: 50%;
        top: 100%;
        margin-top: -24px;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-arrows-tablet-top-left .td-slick-arrows,
    .tdcarousel.slick-dots-tablet-top-left .td-slick-dots {
        left: 0;
        top: 0
    }

    .tdcarousel.slick-arrows-tablet-top-right .td-slick-arrows,
    .tdcarousel.slick-dots-tablet-top-right .td-slick-dots {
        right: 0;
        top: 0
    }

    .tdcarousel.slick-arrows-tablet-top-center .td-slick-arrows,
    .tdcarousel.slick-dots-tablet-top-center .td-slick-dots {
        left: 50%;
        top: 0;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-arrows-tablet-middle .td-slick-arrows {
        left: 0;
        right: 0;
        top: 50%;
        margin-top: -15px;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .tdcarousel.slick-dots-tablet-middle .td-slick-dots {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }
}

@media (max-width:767px) {

    .navigation-mobile-arrows .slick-dots,
    .navigation-mobile-dots .slick-arrow,
    .navigation-mobile-none .slick-arrow,
    .navigation-mobile-none .slick-dots {
        display: none !important
    }

    .tdcarousel.slick-arrows-seen-mobile-hover .td-slick-arrows {
        opacity: 0;
        transition: all .3s ease-in-out
    }

    .tdcarousel.slick-arrows-seen-mobile-hover:hover .td-slick-arrows {
        opacity: 1
    }

    .tdcarousel.slick-arrows-mobile-bottom-left .td-slick-arrows {
        left: 0;
        top: 100%;
        margin-top: -30px
    }

    .tdcarousel.slick-dots-mobile-bottom-left .td-slick-dots {
        left: 0;
        top: 100%;
        margin-top: -24px
    }

    .tdcarousel.slick-arrows-mobile-bottom-right .td-slick-arrows {
        right: 0;
        top: 100%;
        margin-top: -30px
    }

    .tdcarousel.slick-dots-mobile-bottom-right .td-slick-dots {
        right: 0;
        top: 100%;
        margin-top: -24px
    }

    .tdcarousel.slick-arrows-mobile-bottom-center .td-slick-arrows {
        left: 50%;
        top: 100%;
        margin-top: -30px;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-dots-mobile-bottom-center .td-slick-dots {
        left: 50%;
        top: 100%;
        margin-top: -24px;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-arrows-mobile-top-left .td-slick-arrows,
    .tdcarousel.slick-dots-mobile-top-left .td-slick-dots {
        left: 0;
        top: 0
    }

    .tdcarousel.slick-arrows-mobile-top-right .td-slick-arrows,
    .tdcarousel.slick-dots-mobile-top-right .td-slick-dots {
        right: 0;
        top: 0
    }

    .tdcarousel.slick-arrows-mobile-top-center .td-slick-arrows,
    .tdcarousel.slick-dots-mobile-top-center .td-slick-dots {
        left: 50%;
        top: 0;
        transform: translateX(-50%)
    }

    .tdcarousel.slick-arrows-mobile-middle .td-slick-arrows {
        left: 0;
        right: 0;
        top: 50%;
        margin-top: -15px;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .tdcarousel.slick-dots-mobile-middle .td-slick-dots {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }

    .cc-banner.cc-theme-edgeless .cc-btn {
        padding: 10px 20px
    }
}

@media screen and (min-width:1025px) {
    .header_overlap #elementor-header {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 200;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden
    }
}

@media (min-width:576px) and (max-width:767.98px) {

    .elementor-brands .grid.cols-sm-1 .item,
    .products.cols-sm-1 .product-miniature {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-brands .grid.cols-sm-2 .item,
    .products.cols-sm-2 .product-miniature {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-brands .grid.cols-sm-3 .item,
    .products.cols-sm-3 .product-miniature {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-categorylist .grid.cols-sm-1 .categoryblock {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-categorylist .grid.cols-sm-2 .categoryblock {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-categorylist .grid.cols-sm-3 .categoryblock {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-categorylist .grid.cols-sm-4 .categoryblock {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }
}

@media (min-width:768px) and (max-width:991.98px) {

    .elementor-brands .grid.cols-md-1 .item,
    .products.cols-md-1 .product-miniature {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-brands .grid.cols-md-2 .item,
    .products.cols-md-2 .product-miniature {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-brands .grid.cols-md-3 .item,
    .products.cols-md-3 .product-miniature {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-brands .grid.cols-md-4 .item,
    .products.cols-md-4 .product-miniature {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .js-cover-vcarousel .images-container .product-thumbs-outer {
        width: 70px
    }

    .product-style-4 .js-cover-vcarousel .images-container {
        padding-left: 80px
    }

    .product-style-5 .js-cover-vcarousel .images-container {
        padding-right: 80px
    }

    .comments_advices li {
        line-height: 20px
    }

    .comments_advices a {
        float: none;
        line-height: 20px
    }

    .elementor-categorylist .grid.cols-md-1 .categoryblock {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-categorylist .grid.cols-md-2 .categoryblock {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-categorylist .grid.cols-md-3 .categoryblock {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-categorylist .grid.cols-md-4 .categoryblock {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .elementor-categorylist .grid.cols-md-5 .categoryblock {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }
}

@media (min-width:992px) and (max-width:1199.98px) {
    .products.cols-lg-1 .product-miniature {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .products.cols-lg-2 .product-miniature {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .products.cols-lg-3 .product-miniature {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .products.cols-lg-4 .product-miniature {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .products.cols-lg-5 .product-miniature {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .search_block_top .searchbox .searchboxform-control .search_category {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden
    }

    .elementor-brands .grid.cols-lg-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-brands .grid.cols-lg-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-brands .grid.cols-lg-3 .item {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-brands .grid.cols-lg-4 .item {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .elementor-brands .grid.cols-lg-5 .item {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .elementor-brands .grid.cols-lg-6 .item {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .elementor-categorylist .grid.cols-lg-1 .categoryblock {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .elementor-categorylist .grid.cols-lg-2 .categoryblock {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .elementor-categorylist .grid.cols-lg-3 .categoryblock {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .elementor-categorylist .grid.cols-lg-4 .categoryblock {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .elementor-categorylist .grid.cols-lg-5 .categoryblock {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .elementor-categorylist .grid.cols-lg-6 .categoryblock {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }
}

@media (min-width:768px) and (max-width:1199.98px) {
    .product-action-wrap {
        margin: 0 0 20px
    }

    .product-countdown.product-countdown-style-2 {
        -ms-flex-flow: wrap;
        flex-flow: wrap
    }

    .product-countdown.product-countdown-style-2 .countdown-header {
        margin-bottom: 5px
    }
}

@media (max-width:575px) {
    .tdblockcart-modal .modal-dialog {
        margin: 20px
    }
}

@media (max-width:350px) {
    .quickview .modal-content .modal-body .right-block .qv-innner .product-actions .add {
        margin-top: 12px
    }
}

@media only screen and (max-width:992px) {
    .backtotop:hover span:before {
        animation: none
    }
}

@media only screen and (max-width:480px) {
    .backtotop {
        right: 15px;
        bottom: 15px
    }
}

@media (max-width:991px) {
    #ui_tip {
        display: none !important
    }
}

@media (max-width:736px) {
    body .cc-window.cc-type-info {
        text-align: center
    }

    .cc-banner.cc-theme-edgeless .cc-message {
        margin-left: 0
    }

    .cc-compliance {
        -ms-flex-pack: center;
        justify-content: center
    }

    .cc-theme-edgeless.cc-window {
        padding: 10px
    }
}

@media (max-width:1199px) {
    .header-menu-text .wrapper-menu-vertical .menu-vertical-title>span {
        display: none
    }
}

@media (min-width:992px) and (min-width:992px) and (max-width:1199.98px) {
    .searchwrap {
        padding: 0 30px
    }
}

@media (max-width:543px) {
    .blogs .blog-style-2 .blog-content .blog-post-content {
        width: 100%
    }
}