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

.animated.infinite {
    animation-iteration-count: infinite
}
@media (min-width: 1100px) {
    .merch-preview:hover .form-buy-inner{
        opacity: 1;
        pointer-events: auto;
        transition: .3s ease-in;
        z-index: 100;
    }
}
@media (max-width: 1100px) {
    .merch-preview:hover .merch-preview__props{
        display: none!important;
    }
}

.add-cart__popup .btn {
    display: block;
    border-radius: 0px !important;
    padding: 8px;
    color: #ffffff;
    background: #2d1911;
    font-size: 12px;
    letter-spacing: 3px;
}
.form-buy{
    position: relative;
    margin: 0;
    padding: 0;
    height: 0px;
}
.form-buy-inner{
    position: absolute;
    top: -55px;
    left: 0;
    right: 0;
    z-index: 3;
    opacity: 0;
    transition: .3s ease-in;
    pointer-events: none;
    width: 100%;
    min-width: auto!important;
}

.merch-preview__prop-values span{
    border: 1px solid #2d1911;
    display: inline-block;
    padding: 5px;
    transition-duration: 0.3s;
    z-index: 100;
    pointer-events: auto;
}
.merch-preview__prop-values span.active{
    color: white;
    background: #2d1911;

}
.merch-preview[data-percent]:before {
    z-index: 2;
    display: block;
    content: attr(data-percent);
    position: absolute;
    top: 0px;
    right: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    /* background: #e0c49c; */
    background: #AC441E;
    font-size: 12px;
    font-weight: 500;
}

.animated.hinge {
    animation-duration: 2s
}

.animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s
}

.animated.flipOutX, .animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {
    from, 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)
    }
}

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

@keyframes flash {
    from, 50%, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    from {
        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)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    from, 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)
    }
}

.shake {
    animation-name: shake
}

@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)
    }
}

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

@keyframes tada {
    from {
        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)
    }
    to {
        transform: scale3d(1, 1, 1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    from {
        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)
    }
    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    from, 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(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        transform: skewX(0.39063deg) skewY(0.39063deg)
    }
    88.8% {
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

.jello {
    animation-name: jello;
    -ms-transform-origin: center;
    transform-origin: center
}

@keyframes bounceIn {
    from, 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)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    from, 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
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    from, 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
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        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
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        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)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

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

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

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

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

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

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

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

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        transform: perspective(400px);
        opacity: 1
    }
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    from {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutXnew {
    animation-name: flipOutXnew;
    backface-visibility: visible !important
}

.flipOutY {
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    from {
        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
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

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

.rotateIn {
    animation-name: rotateIn
}

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

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

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

.rotateInDownRight {
    animation-name: rotateInDownRight
}

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

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

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

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

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

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

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

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

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

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

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

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

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

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

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

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    from {
        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)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    from {
        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)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    from {
        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)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    from {
        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)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

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

.slideInDown {
    animation-name: slideInDown
}

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

.slideInLeft {
    animation-name: slideInLeft
}

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

.slideInRight {
    animation-name: slideInRight
}

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

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

.ui-helper-hidden {
    display: none
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse
}

.ui-helper-clearfix:after {
    clear: both
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0)
}

.ui-front {
    z-index: 100
}

.ui-state-disabled {
    cursor: default !important;
    pointer-events: none
}

.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default
}

.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0
}

.ui-menu .ui-menu {
    position: absolute
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: -1px
}

.ui-menu-icons {
    position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em
}

.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .2em;
    margin: auto 0
}

.ui-menu .ui-menu-icon {
    left: auto;
    right: 0
}

.ui-button {
    padding: .4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: visible
}

.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
    text-decoration: none
}

.ui-button-icon-only {
    width: 2em;
    box-sizing: border-box;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-button-icon-only {
    text-indent: 0
}

.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
    width: auto;
    height: auto;
    text-indent: 0;
    white-space: normal;
    padding: .4em 1em
}

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

.ui-controlgroup {
    vertical-align: middle;
    display: inline-block
}

.ui-controlgroup > .ui-controlgroup-item {
    float: left;
    margin-left: 0;
    margin-right: 0
}

.ui-controlgroup > .ui-controlgroup-item:focus, .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
    z-index: 9999
}

.ui-controlgroup-vertical > .ui-controlgroup-item {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left
}

.ui-controlgroup-vertical .ui-controlgroup-item {
    box-sizing: border-box
}

.ui-controlgroup .ui-controlgroup-label {
    padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
    border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
    border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
    width: 75%;
    width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset 1px 1px 1px #ccc;
    border-radius: .12em;
    border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px;
    height: 16px;
    border-radius: 1em;
    overflow: visible;
    border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-style: solid
}

.ui-checkboxradio-disabled {
    pointer-events: none
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em
}

.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
    top: 1px
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px
}

.ui-datepicker .ui-datepicker-next {
    right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    width: 45%
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: 700;
    border: 0
}

.ui-datepicker td {
    border: 0;
    padding: 1px
}

.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left
}

.ui-datepicker.ui-datepicker-multi {
    width: auto
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0
}

.ui-datepicker-rtl {
    direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
    float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px
}

.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: .5em;
    top: .3em
}

.ui-dialog {
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative
}

.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer
}

.ui-dialog .ui-resizable-n {
    height: 2px;
    top: 0
}

.ui-dialog .ui-resizable-e {
    width: 2px;
    right: 0
}

.ui-dialog .ui-resizable-s {
    height: 2px;
    bottom: 0
}

.ui-dialog .ui-resizable-w {
    width: 2px;
    left: 0
}

.ui-dialog .ui-resizable-se, .ui-dialog .ui-resizable-sw, .ui-dialog .ui-resizable-ne, .ui-dialog .ui-resizable-nw {
    width: 7px;
    height: 7px
}

.ui-dialog .ui-resizable-se {
    right: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-sw {
    left: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-ne {
    right: 0;
    top: 0
}

.ui-dialog .ui-resizable-nw {
    left: 0;
    top: 0
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move
}

.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none
}

.ui-resizable {
    position: relative
}

.ui-resizable-handle {
    position: absolute;
    font-size: .1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
    display: none
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px
}

.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px
}

.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px
}

.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px
}

.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
    background: url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==);
    height: 100%;
    filter: alpha(opacity=25);
    opacity: .25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none
}

.ui-selectable {
    -ms-touch-action: none;
    touch-action: none
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black
}

.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none
}

.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    overflow-x: hidden;
    padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: 700;
    line-height: 1.5;
    padding: 2px .4em;
    margin: .5em 0 0 0;
    height: auto;
    border: 0
}

.ui-selectmenu-open {
    display: block
}

.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em
}

.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0
}

.ui-slider {
    position: relative;
    text-align: left
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit
}

.ui-slider-horizontal {
    height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.ui-slider-vertical {
    width: .8em;
    height: 100px
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0
}

.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle
}

.ui-spinner-input {
    border: none;
    background: none;
    color: inherit;
    padding: .222em 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-left: .4em;
    margin-right: 2em
}

.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0
}

.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none
}

.ui-spinner-up {
    top: 0
}

.ui-spinner-down {
    bottom: 0
}

.ui-tabs {
    position: relative;
    padding: .2em
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .5em 1em;
    text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: none
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px
}

body .ui-tooltip {
    border-width: 2px
}

.ui-widget {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em
}

.ui-widget .ui-widget {
    font-size: 1em
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5
}

.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333
}

.ui-widget-content a {
    color: #333
}

.ui-widget-header {
    border: 1px solid #ddd;
    background: #e9e9e9;
    color: #333;
    font-weight: 700
}

.ui-widget-header a {
    color: #333
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: 400;
    color: #454545
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
    color: #454545;
    text-decoration: none
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 1px solid #ccc;
    background: #ededed;
    font-weight: 400;
    color: #2b2b2b
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, a.ui-button:hover, a.ui-button:focus {
    color: #2b2b2b;
    text-decoration: none
}

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: 400;
    color: #fff
}

.ui-icon-background, .ui-state-active .ui-icon-background {
    border: #003eff;
    background-color: #fff
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
    color: #fff;
    text-decoration: none
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
    color: #777620
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
    border: 1px solid #f1a899;
    background: #fddfdf;
    color: #5f3f3f
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
    color: #5f3f3f
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
    color: #5f3f3f
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
    font-weight: 700
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: 400
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35)
}

.ui-icon {
    width: 16px;
    height: 16px
}

.ui-icon, .ui-widget-content .ui-icon {
    background-image: url(images/ui-icons_444444_256x240.png)
}

.ui-widget-header .ui-icon {
    background-image: url(images/ui-icons_444444_256x240.png)
}

.ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-icon, .ui-button:focus .ui-icon {
    background-image: url(images/ui-icons_555555_256x240.png)
}

.ui-state-active .ui-icon, .ui-button:active .ui-icon {
    background-image: url(images/ui-icons_ffffff_256x240.png)
}

.ui-state-highlight .ui-icon, .ui-button .ui-state-highlight.ui-icon {
    background-image: url(images/ui-icons_777620_256x240.png)
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
    background-image: url(images/ui-icons_cc0000_256x240.png)
}

.ui-button .ui-icon {
    background-image: url(images/ui-icons_777777_256x240.png)
}

.ui-icon-blank {
    background-position: 16px 16px
}

.ui-icon-caret-1-n {
    background-position: 0 0
}

.ui-icon-caret-1-ne {
    background-position: -16px 0
}

.ui-icon-caret-1-e {
    background-position: -32px 0
}

.ui-icon-caret-1-se {
    background-position: -48px 0
}

.ui-icon-caret-1-s {
    background-position: -65px 0
}

.ui-icon-caret-1-sw {
    background-position: -80px 0
}

.ui-icon-caret-1-w {
    background-position: -96px 0
}

.ui-icon-caret-1-nw {
    background-position: -112px 0
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0
}

.ui-icon-caret-2-e-w {
    background-position: -144px 0
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px
}

.ui-icon-arrow-1-s {
    background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
    background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px
}

.ui-icon-arrow-4 {
    background-position: 0 -80px
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px
}

.ui-icon-extlink {
    background-position: -32px -80px
}

.ui-icon-newwin {
    background-position: -48px -80px
}

.ui-icon-refresh {
    background-position: -64px -80px
}

.ui-icon-shuffle {
    background-position: -80px -80px
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px
}

.ui-icon-folder-open {
    background-position: -16px -96px
}

.ui-icon-document {
    background-position: -32px -96px
}

.ui-icon-document-b {
    background-position: -48px -96px
}

.ui-icon-note {
    background-position: -64px -96px
}

.ui-icon-mail-closed {
    background-position: -80px -96px
}

.ui-icon-mail-open {
    background-position: -96px -96px
}

.ui-icon-suitcase {
    background-position: -112px -96px
}

.ui-icon-comment {
    background-position: -128px -96px
}

.ui-icon-person {
    background-position: -144px -96px
}

.ui-icon-print {
    background-position: -160px -96px
}

.ui-icon-trash {
    background-position: -176px -96px
}

.ui-icon-locked {
    background-position: -192px -96px
}

.ui-icon-unlocked {
    background-position: -208px -96px
}

.ui-icon-bookmark {
    background-position: -224px -96px
}

.ui-icon-tag {
    background-position: -240px -96px
}

.ui-icon-home {
    background-position: 0 -112px
}

.ui-icon-flag {
    background-position: -16px -112px
}

.ui-icon-calendar {
    background-position: -32px -112px
}

.ui-icon-cart {
    background-position: -48px -112px
}

.ui-icon-pencil {
    background-position: -64px -112px
}

.ui-icon-clock {
    background-position: -80px -112px
}

.ui-icon-disk {
    background-position: -96px -112px
}

.ui-icon-calculator {
    background-position: -112px -112px
}

.ui-icon-zoomin {
    background-position: -128px -112px
}

.ui-icon-zoomout {
    background-position: -144px -112px
}

.ui-icon-search {
    background-position: -160px -112px
}

.ui-icon-wrench {
    background-position: -176px -112px
}

.ui-icon-gear {
    background-position: -192px -112px
}

.ui-icon-heart {
    background-position: -208px -112px
}

.ui-icon-star {
    background-position: -224px -112px
}

.ui-icon-link {
    background-position: -240px -112px
}

.ui-icon-cancel {
    background-position: 0 -128px
}

.ui-icon-plus {
    background-position: -16px -128px
}

.ui-icon-plusthick {
    background-position: -32px -128px
}

.ui-icon-minus {
    background-position: -48px -128px
}

.ui-icon-minusthick {
    background-position: -64px -128px
}

.ui-icon-close {
    background-position: -80px -128px
}

.ui-icon-closethick {
    background-position: -96px -128px
}

.ui-icon-key {
    background-position: -112px -128px
}

.ui-icon-lightbulb {
    background-position: -128px -128px
}

.ui-icon-scissors {
    background-position: -144px -128px
}

.ui-icon-clipboard {
    background-position: -160px -128px
}

.ui-icon-copy {
    background-position: -176px -128px
}

.ui-icon-contact {
    background-position: -192px -128px
}

.ui-icon-image {
    background-position: -208px -128px
}

.ui-icon-video {
    background-position: -224px -128px
}

.ui-icon-script {
    background-position: -240px -128px
}

.ui-icon-alert {
    background-position: 0 -144px
}

.ui-icon-info {
    background-position: -16px -144px
}

.ui-icon-notice {
    background-position: -32px -144px
}

.ui-icon-help {
    background-position: -48px -144px
}

.ui-icon-check {
    background-position: -64px -144px
}

.ui-icon-bullet {
    background-position: -80px -144px
}

.ui-icon-radio-on {
    background-position: -96px -144px
}

.ui-icon-radio-off {
    background-position: -112px -144px
}

.ui-icon-pin-w {
    background-position: -128px -144px
}

.ui-icon-pin-s {
    background-position: -144px -144px
}

.ui-icon-play {
    background-position: 0 -160px
}

.ui-icon-pause {
    background-position: -16px -160px
}

.ui-icon-seek-next {
    background-position: -32px -160px
}

.ui-icon-seek-prev {
    background-position: -48px -160px
}

.ui-icon-seek-end {
    background-position: -64px -160px
}

.ui-icon-seek-start {
    background-position: -80px -160px
}

.ui-icon-seek-first {
    background-position: -80px -160px
}

.ui-icon-stop {
    background-position: -96px -160px
}

.ui-icon-eject {
    background-position: -112px -160px
}

.ui-icon-volume-off {
    background-position: -128px -160px
}

.ui-icon-volume-on {
    background-position: -144px -160px
}

.ui-icon-power {
    background-position: 0 -176px
}

.ui-icon-signal-diag {
    background-position: -16px -176px
}

.ui-icon-signal {
    background-position: -32px -176px
}

.ui-icon-battery-0 {
    background-position: -48px -176px
}

.ui-icon-battery-1 {
    background-position: -64px -176px
}

.ui-icon-battery-2 {
    background-position: -80px -176px
}

.ui-icon-battery-3 {
    background-position: -96px -176px
}

.ui-icon-circle-plus {
    background-position: 0 -192px
}

.ui-icon-circle-minus {
    background-position: -16px -192px
}

.ui-icon-circle-close {
    background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px
}

.ui-icon-circle-check {
    background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
    border-top-left-radius: 3px
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
    border-top-right-radius: 3px
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
    border-bottom-left-radius: 3px
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-bottom-right-radius: 3px
}

.ui-widget-overlay {
    background: #aaa;
    opacity: .003;
    filter: Alpha(Opacity=0.3)
}

.ui-widget-shadow {
    box-shadow: 0 0 5px #666
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-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 {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before, .slick-track:after {
    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-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slider-counter {
    font-size: 24px;
    font-weight: 400;
    line-height: 2.18;
    text-transform: uppercase;
    letter-spacing: 4.8px;
    color: #bdbdbd;
    text-align: center;
    width: 70px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.slider-counter__current {
    color: black
}

.slider-counter_main {
    margin-left: auto;
    margin-right: auto;
    margin-top: -107px
}

@media (max-width: 1100px) {
    .slider-counter_main {
        margin-top: 10px
    }
}

@media (max-width: 750px) {
    .slider-counter {
        font-size: 18px
    }
    .merch-preview__icons{
        left: 0px;
        top: 0px;
    }
    .merch-preview[data-percent]:before{
        right: 0px;
        top: 0px;
    }
}

.slick-loading .slick-list {
    background: #fff url(./ajax-loader.gif) center center no-repeat
}

.slick-list .slick-slide {
    outline: none
}

.slick-prev, .slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 100%;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1
}

.slick-prev:before, .slick-next:before {
    font-size: 20px;
    line-height: 1;
    color: #000;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: 50%;
    -ms-transform: translate(-100px, 50px);
    transform: translate(-100px, 50px)
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px
}

.slick-prev:before {
    content: "Ã¢â€ Â"
}

[dir="rtl"] .slick-prev:before {
    content: "Ã¢â€ â€™"
}

.slick-next {
    right: 50%;
    -ms-transform: translate(100px, 50px);
    transform: translate(100px, 50px)
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto
}

.slick-next:before {
    content: "Ã¢â€ â€™"
}

[dir="rtl"] .slick-next:before {
    content: "Ã¢â€ Â"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px;
    cursor: pointer
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Ã¢â‚¬Â¢";
    width: 20px;
    height: 20px;
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: #000;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75
}

.slick-cup {
    float: left;
    height: 100%;
    min-height: 1px;
    display: block;
    width: 0
}

.ps-container {
    -ms-touch-action: auto;
    touch-action: auto;
    overflow: hidden !important;
    -ms-overflow-style: none
}

@supports (-ms-overflow-style:none) {
    .ps-container {
        overflow: auto !important
    }
}

@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none) {
    .ps-container {
        overflow: auto !important
    }
}

.ps-container.ps-active-x > .ps-scrollbar-x-rail, .ps-container.ps-active-y > .ps-scrollbar-y-rail {
    display: block;
    background-color: transparent
}

.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
    background-color: #eee;
    opacity: .9
}

.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    background-color: #999;
    height: 11px
}

.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
    background-color: #eee;
    opacity: .9
}

.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: #999;
    width: 11px
}

.ps-container > .ps-scrollbar-x-rail {
    display: none;
    position: absolute;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    bottom: 0;
    height: 15px
}

.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    position: absolute;
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
    bottom: 2px;
    height: 6px
}

.ps-container > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x, .ps-container > .ps-scrollbar-x-rail:active > .ps-scrollbar-x {
    height: 11px
}

.ps-container > .ps-scrollbar-y-rail {
    display: none;
    position: absolute;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    right: 0;
    width: 15px
}

.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    position: absolute;
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
    transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
    right: 2px;
    width: 6px
}

.ps-container > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y, .ps-container > .ps-scrollbar-y-rail:active > .ps-scrollbar-y {
    width: 11px
}

.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
    background-color: #eee;
    opacity: .9
}

.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    background-color: #999;
    height: 11px
}

.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
    background-color: #eee;
    opacity: .9
}

.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: #999;
    width: 11px
}

.ps-container:hover > .ps-scrollbar-x-rail, .ps-container:hover > .ps-scrollbar-y-rail {
    opacity: .6
}

.ps-container:hover > .ps-scrollbar-x-rail:hover {
    background-color: #eee;
    opacity: .9
}

.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
    background-color: #999
}

.ps-container:hover > .ps-scrollbar-y-rail:hover {
    background-color: #eee;
    opacity: .9
}

.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
    background-color: #999
}

.irs {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
    font-family: Arial, sans-serif
}

.irs-line {
    position: relative;
    display: block;
    overflow: hidden;
    outline: none !important
}

.irs-bar {
    position: absolute;
    display: block;
    left: 0;
    width: 0
}

.irs-shadow {
    position: absolute;
    display: none;
    left: 0;
    width: 0
}

.irs-handle {
    position: absolute;
    display: block;
    box-sizing: border-box;
    cursor: default;
    z-index: 1
}

.irs-handle.type_last {
    z-index: 2
}

.irs-min, .irs-max {
    position: absolute;
    display: block;
    cursor: default
}

.irs-min {
    left: 0
}

.irs-max {
    right: 0
}

.irs-from, .irs-to, .irs-single {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    cursor: default;
    white-space: nowrap
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px
}

.irs-with-grid .irs-grid {
    display: block
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000
}

.irs-grid-pol.small {
    height: 4px
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: rgba(0, 0, 0, 0);
    z-index: 2
}

.lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed
}

.irs-disabled {
    opacity: .4
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important
}

.irs--flat {
    height: 40px
}

.irs--flat.irs-with-grid {
    height: 60px
}

.irs--flat .irs-line {
    top: 25px;
    height: 12px;
    background-color: #e1e4e9;
    border-radius: 4px
}

.irs--flat .irs-bar {
    top: 25px;
    height: 12px;
    background-color: #ed5565
}

.irs--flat .irs-bar--single {
    border-radius: 4px 0 0 4px
}

.irs--flat .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: #e1e4e9
}

.irs--flat .irs-handle {
    top: 22px;
    width: 16px;
    height: 18px;
    background-color: transparent
}

.irs--flat .irs-handle > i:first-child {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background-color: #da4453
}

.irs--flat .irs-handle.state_hover > i:first-child, .irs--flat .irs-handle:hover > i:first-child {
    background-color: #a43540
}

.irs--flat .irs-min, .irs--flat .irs-max {
    top: 0;
    padding: 1px 3px;
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    background-color: #e1e4e9;
    border-radius: 4px
}

.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
    color: white;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #ed5565;
    border-radius: 4px
}

.irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #ed5565
}

.irs--flat .irs-grid-pol {
    background-color: #e1e4e9
}

.irs--flat .irs-grid-text {
    color: #999
}

.irs--big {
    height: 55px
}

.irs--big.irs-with-grid {
    height: 70px
}

.irs--big .irs-line {
    top: 33px;
    height: 12px;
    background-color: white;
    background: linear-gradient(to bottom, #ddd -50%, white 150%);
    border: 1px solid #ccc;
    border-radius: 12px
}

.irs--big .irs-bar {
    top: 33px;
    height: 12px;
    background-color: #92bce0;
    border: 1px solid #428bca;
    background: linear-gradient(to bottom, #fff 0%, #428bca 30%, #b9d4ec 100%);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, .5)
}

.irs--big .irs-bar--single {
    border-radius: 12px 0 0 12px
}

.irs--big .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: rgba(66, 139, 202, .5)
}

.irs--big .irs-handle {
    top: 25px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, .3);
    background-color: #cbcfd5;
    background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .2), inset 0 0 3px 1px white;
    border-radius: 30px
}

.irs--big .irs-handle.state_hover, .irs--big .irs-handle:hover {
    border-color: rgba(0, 0, 0, .45);
    background-color: #939ba7;
    background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%)
}

.irs--big .irs-min, .irs--big .irs-max {
    top: 0;
    padding: 1px 5px;
    color: white;
    text-shadow: none;
    background-color: #9f9f9f;
    border-radius: 3px
}

.irs--big .irs-from, .irs--big .irs-to, .irs--big .irs-single {
    color: white;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #428bca;
    background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
    border-radius: 3px
}

.irs--big .irs-grid-pol {
    background-color: #428bca
}

.irs--big .irs-grid-text {
    color: #428bca
}

.irs--modern {
    height: 55px
}

.irs--modern.irs-with-grid {
    height: 55px
}

.irs--modern .irs-line {
    top: 25px;
    height: 5px;
    background-color: #d1d6e0;
    background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
    border: 1px solid #a3adc1;
    border-bottom-width: 0;
    border-radius: 5px
}

.irs--modern .irs-bar {
    top: 25px;
    height: 5px;
    background: #20b426;
    background: linear-gradient(to bottom, #20b426 0%, #18891d 100%)
}

.irs--modern .irs-bar--single {
    border-radius: 5px 0 0 5px
}

.irs--modern .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(209, 214, 224, .5)
}

.irs--modern .irs-handle {
    top: 37px;
    width: 12px;
    height: 13px;
    border: 1px solid #a3adc1;
    border-top-width: 0;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
    border-radius: 0 0 3px 3px
}

.irs--modern .irs-handle > i:nth-child(1) {
    position: absolute;
    display: block;
    top: -4px;
    left: 1px;
    width: 6px;
    height: 6px;
    border: 1px solid #a3adc1;
    background: white;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.irs--modern .irs-handle > i:nth-child(2) {
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 10px;
    height: 12px;
    background: #e9e6e6;
    background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
    border-radius: 0 0 3px 3px
}

.irs--modern .irs-handle > i:nth-child(3) {
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 5px;
    border-left: 1px solid #a3adc1;
    border-right: 1px solid #a3adc1
}

.irs--modern .irs-handle.state_hover, .irs--modern .irs-handle:hover {
    border-color: #7685a2;
    background: #c3c7cd;
    background: linear-gradient(to bottom, #fff 0%, #919ba5 30%, #fff 100%)
}

.irs--modern .irs-handle.state_hover > i:nth-child(1), .irs--modern .irs-handle:hover > i:nth-child(1) {
    border-color: #7685a2
}

.irs--modern .irs-handle.state_hover > i:nth-child(3), .irs--modern .irs-handle:hover > i:nth-child(3) {
    border-color: #48536a
}

.irs--modern .irs-min, .irs--modern .irs-max {
    top: 0;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    color: white;
    background-color: #d1d6e0;
    border-radius: 5px
}

.irs--modern .irs-from, .irs--modern .irs-to, .irs--modern .irs-single {
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #20b426;
    color: white;
    border-radius: 5px
}

.irs--modern .irs-from:before, .irs--modern .irs-to:before, .irs--modern .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #20b426
}

.irs--modern .irs-grid {
    height: 25px
}

.irs--modern .irs-grid-pol {
    background-color: #dedede
}

.irs--modern .irs-grid-text {
    color: silver;
    font-size: 13px
}

.irs--sharp {
    height: 50px;
    font-size: 12px;
    line-height: 1
}

.irs--sharp.irs-with-grid {
    height: 57px
}

.irs--sharp .irs-line {
    top: 30px;
    height: 2px;
    background-color: black;
    border-radius: 2px
}

.irs--sharp .irs-bar {
    top: 30px;
    height: 2px;
    background-color: #ee22fa
}

.irs--sharp .irs-bar--single {
    border-radius: 2px 0 0 2px
}

.irs--sharp .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(0, 0, 0, .5)
}

.irs--sharp .irs-handle {
    top: 25px;
    width: 10px;
    height: 10px;
    background-color: #a804b2
}

.irs--sharp .irs-handle > i:first-child {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #a804b2
}

.irs--sharp .irs-handle.state_hover, .irs--sharp .irs-handle:hover {
    background-color: black
}

.irs--sharp .irs-handle.state_hover > i:first-child, .irs--sharp .irs-handle:hover > i:first-child {
    border-top-color: black
}

.irs--sharp .irs-min, .irs--sharp .irs-max {
    color: white;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 4px;
    opacity: .4;
    background-color: #a804b2;
    border-radius: 2px
}

.irs--sharp .irs-from, .irs--sharp .irs-to, .irs--sharp .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 4px;
    background-color: #a804b2;
    color: white;
    border-radius: 2px
}

.irs--sharp .irs-from:before, .irs--sharp .irs-to:before, .irs--sharp .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #a804b2
}

.irs--sharp .irs-grid {
    height: 25px
}

.irs--sharp .irs-grid-pol {
    background-color: #dedede
}

.irs--sharp .irs-grid-text {
    color: silver;
    font-size: 13px
}

.irs--round {
    height: 50px
}

.irs--round.irs-with-grid {
    height: 65px
}

.irs--round .irs-line {
    top: 36px;
    height: 4px;
    background-color: #dee4ec;
    border-radius: 4px
}

.irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: #006cfa
}

.irs--round .irs-bar--single {
    border-radius: 4px 0 0 4px
}

.irs--round .irs-shadow {
    height: 4px;
    bottom: 21px;
    background-color: rgba(222, 228, 236, .5)
}

.irs--round .irs-handle {
    top: 26px;
    width: 24px;
    height: 24px;
    border: 4px solid #006cfa;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 255, .3)
}

.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover {
    background-color: #f0f6ff
}

.irs--round .irs-min, .irs--round .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 4px
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: #006cfa;
    color: white;
    border-radius: 4px
}

.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #006cfa
}

.irs--round .irs-grid {
    height: 25px
}

.irs--round .irs-grid-pol {
    background-color: #dedede
}

.irs--round .irs-grid-text {
    color: silver;
    font-size: 13px
}

.irs--square {
    height: 50px
}

.irs--square.irs-with-grid {
    height: 60px
}

.irs--square .irs-line {
    top: 31px;
    height: 4px;
    background-color: #dedede
}

.irs--square .irs-bar {
    top: 31px;
    height: 4px;
    background-color: black
}

.irs--square .irs-shadow {
    height: 2px;
    bottom: 21px;
    background-color: #dedede
}

.irs--square .irs-handle {
    top: 25px;
    width: 16px;
    height: 16px;
    border: 3px solid black;
    background-color: white;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.irs--square .irs-handle.state_hover, .irs--square .irs-handle:hover {
    background-color: #f0f6ff
}

.irs--square .irs-min, .irs--square .irs-max {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, .1)
}

.irs--square .irs-from, .irs--square .irs-to, .irs--square .irs-single {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: black;
    color: white
}

.irs--square .irs-grid {
    height: 25px
}

.irs--square .irs-grid-pol {
    background-color: #dedede
}

.irs--square .irs-grid-text {
    color: silver;
    font-size: 11px
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical > .swiper-wrapper {
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow > .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -ms-transform: scale(.33);
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top;
    transition: .2s transform, .2s top, .2s -webkit-transform
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left;
    transition: .2s transform, .2s left, .2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right;
    transition: .2s transform, .2s right, .2s -webkit-transform
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-transform: scale(0);
    transform: scale(0);
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

* {
    margin: 0;
    padding: 0
}

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

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

body {
    line-height: 1
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

a {
    outline: none;
    text-decoration: none
}

html * {
    max-height: 999999px
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

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

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

input::-ms-clear {
    display: none
}

::-webkit-file-upload-button {
    cursor: pointer
}

input {
    -webkit-appearance: none;
    border-radius: 0
}

select {
    border: none
}

input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-results-button, input[type="search"]::-webkit-search-results-decoration {
    display: none
}

* {
    box-sizing: border-box
}

@font-face {
    font-family: 'Font Awesome';
    src: url(../fonts/fontawesome-webfont.eot?v=4.6.2);
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.6.2") format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff2?v=4.6.2) format("woff2"), url(../fonts/fontawesome-webfont.woff?v=4.6.2) format("woff"), url(../fonts/fontawesome-webfont.ttf?v=4.6.2) format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.6.2#fontawesomeregular") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 "Font Awesome";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul > li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    animation: fa-spin 1s infinite steps(8)
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before, .fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before, .fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before, .fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before, .fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before, .fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before, .fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before, .fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before, .fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before, .fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before, .fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before, .fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before, .fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before, .fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-rupee:before, .fa-inr:before {
    content: "\f156"
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
    content: "\f158"
}

.fa-won:before, .fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before, .fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before, .fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before, .fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before, .fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before, .fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before, .fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before, .fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before, .fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before, .fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before, .fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before, .fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

@font-face {
    font-family: icomoon;
    src: url(../fonts/icomoon.eot?lzyef8);
    src: url("../fonts/icomoon.eot?lzyef8#iefix") format("embedded-opentype"), url(../fonts/icomoon.ttf?lzyef8) format("truetype"), url(../fonts/icomoon.woff?lzyef8) format("woff"), url("../fonts/icomoon.svg?lzyef8#icomoon") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: icomoon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-search:before {
    content: "\e91e"
}

.icon-exit:before {
    content: "\e900"
}

.icon-filter:before {
    content: "\e901"
}

.icon-minus:before {
    content: "\e902"
}

.icon-arrow8:before {
    content: "\e903"
}

.icon-arrow7:before {
    content: "\e904"
}

.icon-arrow5:before {
    content: "\e905"
}

.icon-arrow6:before {
    content: "\e906"
}

.icon-arrow4:before {
    content: "\e907"
}

.icon-arrow3:before {
    content: "\e908"
}

.icon-close:before {
    content: "\e909"
}

.icon-heart-solid:before {
    content: "\e90a"
}

.icon-hear:before {
    content: "\e90b"
}

.icon-bag-solid:before {
    content: "\e90c"
}

.icon-star:before {
    content: "\e90d"
}

.icon-star-solid:before {
    content: "\e90e"
}

.icon-vk:before {
    content: "\e90f"
}

.icon-youtube:before {
    content: "\e910"
}

.icon-arrow2:before {
    content: "\e911"
}

.icon-arrow1:before {
    content: "\e912"
}

.icon-user:before {
    content: "\e913"
}

.icon-calendar:before {
    content: "\e914"
}

.icon-location:before {
    content: "\e915"
}

.icon-facebook:before {
    content: "\e916"
}

.icon-menu:before {
    content: "\e917"
}

.icon-plus:before {
    content: "\e918"
}

.icon-play:before {
    content: "\e919"
}

.icon-phone:before {
    content: "\e91a"
}

.icon-insta:before {
    content: "\e91b"
}

.icon-eye:before {
    content: "\e91c"
}

.icon-bag:before {
    content: "\e91d"
}

@media only screen and (min-width: 701px) {
    .show-on-700 {
        display: none !important
    }
}

@media only screen and (min-width: 901px) {
    .show-on-900 {
        display: none !important
    }
}

@media only screen and (max-width: 700px) {
    .hide-on-700 {
        display: none !important
    }
}

html {
    overflow-x: hidden
}

._transition {
    transition: top 0.3s ease-in-out
}

body {
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #000;
    font-weight: 400;
    line-height: normal;
    font-family: Montserrat;
}

@media (max-width: 750px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 0;
        z-index: 21
    }
}


body._fixheader .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 21;
    background: white;

}

@media only screen and (max-width: 750px) {
    body._noscroll {
        overflow: hidden;
        position: fixed;
        width: 100%
    }
}

.main {
    background: white;
    position: relative;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    display: block;
    width: 100%;
    background-color: #fff;
    padding-top: 0;
    overflow: hidden
}

.container {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1330px
}

@media all and (max-width: 1400px) {
    .container {
        max-width: 1064px
    }
}

@media all and (max-width: 1100px) {
    .container {
        max-width: 808px
    }
}

@media only screen and (max-width: 750px) {
    .container {
        max-width: 400px;
        text-align: center
    }
}

.site-list {
    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;
    width: calc(100% / 3 * 2);
    margin: 0 auto;
    height: 600px
}

.site-list__item {
    font-size: 30px
}

h1 {
    color: #000;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.68;
    text-transform: uppercase;
    letter-spacing: 4.8px
}

h2 {
    color: #000;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 3.6px;
    position: relative
}

h3 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .9px
}

h4 {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.6px
}

@media only screen and (max-width: 1100px) {
    h2 {
        font-size: 24px;
        letter-spacing: 2.5px
    }
}

@media only screen and (max-width: 750px) {
    h2 {
        font-size: 22px;
        letter-spacing: 1.5px
    }
}

.subtitle {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: .8px
}

.subtitle a {
    text-decoration: underline;
    color: #999;
    transition: 0.5s ease
}

.subtitle a:hover {
    color: #000
}

@media only screen and (max-width: 750px) {
    .subtitle {
        font-size: 14px
    }
}

.clear {
    display: block;
    clear: both
}

.hide, .input-hidden {
    display: none
}

.btn-style {
    position: relative;
    display: inline-block;
    transition: 0.4s ease;
    box-sizing: border-box;
    cursor: pointer;
    min-width: 250px;
    height: 48px;
    background: none;
    font-family: inherit;
}

.btn-style:before, .btn-style:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s ease;
    display: block;
    box-sizing: border-box;
    pointer-events: none;
    width: 100%;
    height: 100%
}

.btn-style:after {
    opacity: 0;
    -ms-transform: translate(15px, -15px);
    transform: translate(15px, -15px)
}

.btn-style__wrapper {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%;
    padding: 0 25px
}

.btn-style__label {
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    color: #000;
    transition: 0.3s ease;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5.6px;
    text-align: center
}

.btn-style_bordered:before {
    border: 1px solid #2d1911
}

.btn-style_bordered:after {
    background-color: #2d1911
}

.btn-style_orange:before {
    background-color: #fae6cd
}

.btn-style_orange:after {
    background-color: #e8c69b
}

.btn-style_medium {
    height: 55px
}

.btn-style_medium-small {
    height: 55px
}

.btn-style_pre-small-height {
    height: 45px
}

.btn-style_small-height {
    height: 40px
}

.btn-style_small .btn-style__label {
    letter-spacing: 2.8px
}

.btn-style_black {
    background: #2d1911;
    color: #fff;
}

.btn-style_cream {
    background: #e6c396
}

.btn-style_black .btn-style__label {
    color: #fff
}

.btn-style_cream .btn-style__label {
    color: #fff
}

.btn-style_disabled:before, .btn-style._disabled:before {
    background-color: #e1e1e1
}

.btn-style_disabled:after, .btn-style._disabled .btn-style__label:before, .btn-style._disabled:after {
    content: none
}

.btn-style._disabled .btn-style__label {
    color: #000
}

.btn-style_white-label {
    background-color: #2d1911
}

.btn-style_white-label .btn-style__label {
    color: #fff
}

.btn-style:hover:before {
    -ms-transform: translate(-15px, 15px);
    transform: translate(-15px, 15px);
    opacity: 0
}

.btn-style:hover:after {
    opacity: 1;
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

.btn-style_disabled:hover:before, .btn-style._disabled:hover:before {
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1
}

.btn-style_bordered:hover .btn-style__label {
    color: #fff
}

.btn-style_white-label:hover {
    background-color: #2d1911
}

.btn-style_white-label:hover .btn-style__label {
    color: #fff
}

.btn-style_bag .btn-style__label:before {
    content: "\e90c";
    font-family: icomoon;
    margin-right: 5px
}

.btn-style_like .btn-style__label:before {
    content: "\e90b";
    font-family: icomoon;
    margin-right: 5px
}

.btn-style_like._added .btn-style__label:before {
    content: "\e90a";
    font-family: icomoon;
    margin-right: 5px
}

.btn-style._added .btn-style__label {
    color: #fff
}

.btn-style._added:after {
    opacity: 1;
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

.btn-style_gray {
    background: #eee
}

@media all and (max-width: 1300px) {
    .btn-style__label {
        letter-spacing: 2.2px
    }
}

@media only screen and (max-width: 750px) {
    .btn-style_white-label {
        width: 100%;
    }

    .btn-style_like {
        padding: 0 20px
    }

    .btn-style_like .btn-style__label {
        font-size: 14px;
        letter-spacing: 2px
    }

    .btn-style_like .btn-style__label:before {
        font-size: 16px
    }

    .btn-style_like .btn-style__wrapper {
        padding: 20px
    }
}

.btn-style__loader {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    padding: 2% 0
}

.btn-style:disabled {
    opacity: 0;
}

.btn-style:disabled .btn-style__loader {
    background: #2d1911;
    opacity: 1;
}

.link-style {
    position: relative;
    display: inline-block;
    transition: 0.4s ease;
    box-sizing: border-box;
    cursor: pointer;
    border-bottom: 2px solid #000;
    padding-right: 40px;
    background: none;
    outline: none
}

.link-style:after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
    width: 40px;
    height: 1px;
    transition: 0.3s ease;
    display: block;
    box-sizing: border-box;
    pointer-events: none;
    background-color: #e6c396
}

.link-style__wrapper {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%
}

.link-style__label {
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    color: #000;
    transition: 0.3s ease;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1.5px;
    text-align: left
}

.link-style:hover:after {
    width: 100%;
    transition: 0.3s ease
}

.link-style_userdata {
    margin-top: 11px
}

@media only screen and (max-width: 750px) {
    .link-style__label {
        font-size: 12px;
        letter-spacing: 1px
    }

    .link-style:after {
        top: 50%
    }
}

.fa:before {
    font-family: "Font Awesome"
}

.local-nav {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-around;
    padding: 35px;
    background: #2d1911;
    box-shadow: 9px 15px 24px rgba(0, 0, 0, .23);
    margin: 0 auto;
    width: 100%;
    max-width: 950px;
    z-index: 20
}

.local-nav__item {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px
}

.local-nav__item:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    left: -26px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #e6c396
}

.local-nav__item:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
    height: 1px;
    width: 0;
    background: #fff;
    transition: all 0.3s ease
}

.local-nav__item:hover:after, .local-nav__item._active:after {
    width: 100%
}

.local-nav_vertical {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 57px 10px 63px
}

.local-nav_vertical:before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    box-shadow: 16px 28px 32px rgba(0, 0, 0, .23);
    background-color: #000;
    opacity: .87;
    height: 100%;
    width: calc(100% + 60px)
}

.local-nav_vertical .local-nav__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 60px;
    font-size: 16px;
    letter-spacing: 6.33px;
    text-align: center
}

.local-nav_vertical .local-nav__item:last-child {
    margin-bottom: 0
}

.local-nav_vertical .local-nav__item:before {
    position: static;
    top: 0;
    -ms-transform: none;
    transform: none;
    margin-bottom: 24px
}

@media all and (max-width: 1400px) {
    .local-nav_vertical {
        padding: 40px 10px 45px
    }
}

@media only screen and (max-width: 750px) {
    .local-nav {
        padding: 20px
    }

    .local-nav__item {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 11px;
        letter-spacing: 0;
        text-align: center
    }

    .local-nav__item:last-child {
        margin-bottom: 0
    }

    .local-nav__item:before {
        display: none
    }

    .local-nav__item:after {
        bottom: -5px
    }
}

.object-fit-wrap {
    position: relative;
    transition: 0.4s ease;
    display: block;
    width: 100%;
    height: 100%
}

.object-fit-wrap:after {
    content: "";
    display: block;
    padding-top: 50%
}

.object-fit-wrap__img-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    background-color: white;
    height: 100%
}

.object-fit-wrap__img {
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: contain;
    object-position: center;
    font-family: "object-fit: contain; object-position: center"
}

.object-fit-wrap_contain .object-fit-wrap__img {
    object-fit: contain;
    object-position: center;
    font-family: "object-fit: contain; object-position: center"
}

.object-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    font-family: "object-fit: cover; object-position: center"
}

.tab__body {
    width: 1230px;
    margin: 70px auto 0;
    display: flex;
    justify-content: center
}

.tab__inner {
    width: calc(100vw / 4 * 3)
}

.tab__body > .slick-list {
    overflow: visible
}

@media screen and (max-width: 1400px) {
    .tab__body {
        width: 810px
    }

    .tab__inner {
        width: calc(100vw / 3 * 2)
    }
}

@media screen and (max-width: 1100px) {
    .tab__body {
        width: 410px;
        margin-top: 46px
    }

    .tab__inner {
        width: calc(100vw / 2)
    }
}

@media screen and (max-width: 750px) {
    .tab__body {
        display: block;
        width: 100%
    }

    .tab__inner {
        margin: 0 auto;
        min-width: 270px;
        width: 100%
    }
}

.block-wrapper {
    padding-bottom: 170px
}

.breadcrumbs {
    padding: 15px 0;
    font-size: 12px;
    font-weight: 400
}

.breadcrumbs__link {
    color: #999;
    position: relative;
    text-transform: uppercase
}

.breadcrumbs__link:after {
    content: ">";
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    margin: 0 10px
}

.breadcrumbs__link:before {
    content: "";
    display: block;
    position: absolute;
    left: 0%;
    bottom: -5px;
    height: 1px;
    width: 0;
    background: #000;
    transition: all 0.3s ease
}

.breadcrumbs__item {
    display: inline;
}

.breadcrumbs__link:hover {
    color: #000
}

.breadcrumbs__link:hover:before {
    width: calc(100% - 30px);
    transition: all 0.3s ease
}

.breadcrumbs__current {
    color: #999;
    text-transform: uppercase
}

@media all and (max-width: 750px) {
    .breadcrumbs__item, .breadcrumbs__current {
        display: none
    }

    .breadcrumbs__item:last-of-type {
        display: inline
    }

    .breadcrumbs__link:hover:before {
        width: 100%
    }

    .breadcrumbs__link:after {
        display: none
    }
}

.gray-overlay {
    position: relative;
    z-index: 1
}

.gray-overlay:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 82%;
    height: 116%;
    background: rgba(240, 239, 239, .73);
    z-index: -1;
    pointer-events: none
}

@media all and (max-width: 1000px) {
    .gray-overlay:before {
        height: 107%
    }
}

@media only screen and (max-width: 750px) {
    .gray-overlay:before {
        height: 116%;
        width: 100vw
    }
}

.ps-container .ps-scrollbar-x-rail {
    display: none !important
}

.ps-container .ps-scrollbar-y-rail {
    right: 2px !important;
    opacity: 1 !important;
    width: 1px !important;
    background-color: #eee !important
}

.ps-container .ps-scrollbar-y-rail .ps-scrollbar-y {
    right: -1px !important;
    border-radius: 2px !important;
    background-color: #000 !important;
    cursor: pointer !important;
    width: 3px !important
}

.ps-container:hover .ps-scrollbar-y-rail {
    opacity: 1 !important
}

.counter-block {
    display: -ms-flexbox;
    align-items: center;
    display: flex;
    width: 80px;
    height: 50px
}

.counter-block_card {
    border: none
}

.counter-block__change {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 15px;
    height: 15px;
    text-align: center;
    color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.counter-block__change_minus:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background: #000;
    display: block
}

.counter-block__change_plus:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background: #000;
    display: block
}

.counter-block__change_plus:after {
    position: absolute;
    content: "";
    width: 15px;
    transform: rotate(90deg);
    height: 1px;
    background: #000;
    display: block
}

.counter-block__change_minus.product-item-amount-field-btn-disabled:before, .counter-block__change_plus.product-item-amount-field-btn-disabled:before, .counter-block__change_plus.product-item-amount-field-btn-disabled:after {
    background: #cccccc;
}

.counter-block_disabled {
    pointer-events: none
}

.counter-block_disabled .counter-block__change:before, .counter-block_disabled .counter-block__change:after {
    background-color: #cccccd
}

.input__field {
    width: 100%;
    height: 100%;
    padding: 0 8px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    vertical-align: middle;
    background-color: transparent
}

.input__field:focus {
    border: none !important
}

.input_range {
    border-color: #e1e1e1;
    width: 100%;
    max-width: 100px
}

.input_range .input__field {
    padding: 16px;
    color: #000;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: .8px;
    text-align: left
}

.irs .irs-line {
    background-color: #e1e1e1;
    height: 3px
}

.irs--flat .irs-bar {
    background-color: #000;
    height: 3px
}

.irs--flat .irs-handle {
    top: 19px
}

.irs--flat .irs-handle > i:first-child {
    top: 50%;
    border-radius: 50%;
    background-color: #000;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 25px;
    height: 25px;
    margin-left: 0
}

.cross-btn {
    position: relative;
    cursor: pointer;
    width: 64px;
    height: 64px
}

.cross-btn:before, .cross-btn:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-color: #666;
    transition: transform 0.5s ease, background-color 0.3s ease;
    will-change: transform;
    width: 100%;
    height: 1px;
    margin: auto
}

.cross-btn:after {
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.cross-btn:before {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.cross-btn:hover:after, .cross-btn:hover:before {
    background-color: #8b8b8b
}

.cross-btn:hover:after {
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.cross-btn:hover:before {
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg)
}

.cross-btn_header {
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: none !important
}

.cross-btn_header:before, .cross-btn_header:after {
    background-color: #8b8b8b !important;
    width: 50%
}

.text-block h2 {
    margin-bottom: 54px;
    color: #000;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px
}

.text-block h2:last-child {
    margin-bottom: 0
}

.text-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 19px;
    color: #000;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5;
    letter-spacing: .8px
}

.text-block ul li:last-child {
    margin-bottom: 0
}

.text-block ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    display: block;
    background-color: #e6c396;
    width: 6px;
    height: 6px
}

.slick-arrow {
    width: auto
}

.slick-arrow:before {
    font-family: icomoon;
    font-size: 56px;
    line-height: 20px
}

.slick-prev:before {
    content: "\e912"
}

.slick-next:before {
    content: "\e911"
}

.overlay, .popup-style {
    position: fixed;
    left: 0;
    top: 0;
    transition: 0.5s ease;
    width: 100%;
    height: 100%;
}

.overlay._active, .popup-style._active {
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important
}

.overlay {
    z-index: 21;
    transition-delay: 0.1s;
    background-color: rgba(0, 0, 0, .2);
    -ms-transform: translateX(-130%);
    transform: translateX(-130%)
}

.overlay._active {
    transition-delay: 0s
}

.popup-style {
    z-index: 21;
    background-color: transparent;
    -ms-transform: translateX(-130%);
    transform: translateX(-130%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    pointer-events: none;
    padding: 15px;
    height: 100%
}

.popup-style._active {
    transition-delay: 0.1s
}

.popup-style_login .popup-style__content, .popup-style_registration .popup-style__content, .popup-style_recovery .popup-style__content {
    margin: auto 0
}

.popup-style__content {
    position: relative;
    pointer-events: auto;
    box-shadow: 0 0 50px rgba(0, 1, 5, .1);
    background-color: #fff;
    width: 100%;
    max-width: 425px
}

.popup-style__wrapper {
    position: relative;
    box-sizing: border-box;
    max-height: 100vh;
    overflow: auto;
    width: 100%
}

.popup-style .cross-btn {
    z-index: 2;
    position: absolute;
    background-color: #2d1911;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px
}

.popup-style .cross-btn:after, .popup-style .cross-btn:before {
    width: 60%;
    background-color: #fff;
    height: 1px
}

.popup-style__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: stretch;
    align-items: stretch
}

.popup-style__col_left {
    position: relative;
    overflow: hidden;
    width: 48.3%;
    padding: 15px
}

.popup-style__col {
    width: 100%;
}

.popup-style__col_right {
    width: 51.7%;
    padding: 15px 34px 15px 15px
}

.popup-style__bg-wrap {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100%
}

.popup-style__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    font-family: "object-fit: cover; object-position: center"
}

.popup-style_recovery .popup-style__wrapper {
    padding: 54px 15px 44px
}

.popup-style_login .login-with {
    margin-top: 40px
}

.popup-style_video .popup-style__content {
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 100%;
    height: calc(100vh - 0px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column
}

.popup-style_video {
    padding: 0
}

.popup-style_video .container {
    height: auto
}

.popup-style_video .cross-btn {
    z-index: 2;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    background: none
}

.popup-style_video .cross-btn:before, .popup-style_video .cross-btn:after {
    background-color: #000
}

.popup-style_video .cross-btn:hover:before, .popup-style_video .cross-btn:hover:after {
    background-color: #000
}

.popup-style_search {
    padding: 0;
    height: 100%
}

.popup-style_search .cross-btn {
    right: 49px;
    top: 49px
}

.popup-style_search .popup-style__content {
    max-width: 100%;
    height: 100%
}

@media only screen and (max-width: 900px) {
    .popup-style {
        padding: 0
    }

    .popup-style__col {
        width: 100%
    }

    .popup-style__col_left {
        display: none
    }

    .popup-style_registration .popup-style__content {
        max-width: 500px
    }

    .popup-style_login .popup-style__content {
        max-width: 500px
    }

    .popup-style .cross-btn {
        top: 0;
        right: 0
    }
}

.popupvideo {
    overflow: hidden
}

.popupvideo video {
    width: 100%;
    max-height: 80vh;
    object-fit: cover
}

.popup-form {
    max-width: 320px;
    margin: 0 auto;
    padding: 39px 0 29px
}

.popup-form__title-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 32px
}

.popup-form__title {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px
}

.popup-form__title-link {
    transition: 0.3s ease;
    color: #bdbdbd;
    font-size: 30px;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 3px
}

.popup-form__title-link:hover {
    color: #000
}

.popup-form__row {
    margin-bottom: 31px
}

.popup-form__row_btn {
    margin-top: 50px
}

.popup-form__row_center {
    text-align: center
}

.popup-form__row_before-radio {
    margin-bottom: 12px
}

.popup-form__row_btn-registration {
    margin-top: 5px
}

.popup-form__row:last-child {
    margin-bottom: 0
}

.popup-form__item {
    width: 100%
}

.popup-form .btn-style {
    width: 100%
}

.popup-form__link {
    color: #000;
    font-size: 16px;
    text-decoration: underline;
    letter-spacing: .8px
}

.popup-form .radio-style {
    padding: 0
}

@media only screen and (max-width: 900px) {
    .popup-form__title, .popup-form__title-link {
        font-size: 24px
    }
}

.login-with {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.login-with__label {
    margin-right: 20px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.login-with__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.login-with__item {
    display: block;
    padding: 5px;
    margin: 0 9px
}

.login-with__icon {
    transition: 0.3s ease;
    display: block;
    color: #000;
    font-size: 16px
}

.login-with__item:hover .login-with__icon {
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}

.registration-pluses {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 48px 0 31px
}

.registration-pluses__item {
    border-left: 2px solid #cc9670;
    max-width: 180px;
    padding-left: 21px;
    color: #fff4ea;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

.popup-password-recovery {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 452px;
    width: 100%;
    max-width: 598px;
    margin: 0 auto
}

.popup-password-recovery_center {
    -ms-flex-pack: center;
    justify-content: center
}

.popup-password-recovery__back-to-login {
    position: absolute;
    left: 0;
    top: 6px;
    transition: 0.3s ease;
    font-size: 24px;
    color: #000
}

.popup-password-recovery__back-to-login:hover {
    -ms-transform: translateX(-2px);
    transform: translateX(-2px)
}

.popup-password-recovery__title {
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px
}

.popup-password-recovery__thx-title {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    text-align: center
}

.popup-password-recovery__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.popup-password-recovery__row_center {
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 37px
}

.popup-password-recovery__row_flex-end {
    -ms-flex-align: end;
    align-items: flex-end
}

.popup-password-recovery__item_input {
    width: calc(100% - 200px)
}

.popup-password-recovery__item_btn {
    width: 200px
}

.popup-password-recovery__row_center .popup-password-recovery__item {
    margin: 0 30px
}

.popup-password-recovery__link {
    color: #000;
    text-decoration: underline;
    letter-spacing: .8px
}

.popup-password-recovery__text {
    margin-top: 15px;
    text-align: center;
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: .5px;
    margin-top: 30px;
    margin-bottom: 0
}

.popup-password-recovery .btn-style {
    width: 100%;
    min-width: 0;
    padding: 0 10px
}

.popup-password-recovery__btn-close-wrapper {
    width: 100%;
    max-width: 320px
}

.popup-password-recovery__img {
    margin-bottom: 50px
}

.popup-password-recovery__btn-close-wrapper {
    margin-top: 70px
}

@media only screen and (max-width: 750px) {
    .popup-password-recovery__title {
        font-size: 24px;
        text-align: center
    }

    .popup-password-recovery__back-to-login {
        display: none
    }

    .popup-password-recovery__row {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .popup-password-recovery__row_flex-end {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .popup-password-recovery__item {
        width: 100% !important;
        text-align: center
    }

    .popup-password-recovery__item_input {
        margin-bottom: 60px
    }

    .popup-password-recovery__link {
        margin-bottom: 40px;
        display: inline-block
    }
}

.main-search {
    padding-top: 104px;
    padding-bottom: 104px
}

.main-search__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    margin-top: 70px
}

.main-search .pop-merch__item {
    max-width: unset
}

.main-search__item {
    display: none;
    width: 30%;
    margin: 0 20px;
}

.main-search__item._active {
    display: block;
}

.main-search__item:nth-child(1), .main-search__item:nth-child(2) {
    padding-bottom: 100px
}

.main-search__title {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 30px
}

.main-search__title span {
    margin-left: 10px
}

.main-search__row {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    letter-spacing: .8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.main-search__row:last-child {
    margin-bottom: 0
}

.main-search__row span:nth-child(2) {
    color: #999
}

@media all and (max-width: 1100px) {
    .main-search__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 30px
    }

    .main-search__item {
        width: 50%
    }

    .main-search__item:last-child {
        width: 100%
    }
}

@media only screen and (max-width: 750px) {
    .main-search__item {
        width: 100%
    }
}

.footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #fff;
    z-index: 2
}

.footer__row {
    padding-top: 70px;
    padding-bottom: 30px;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #000
}

.footer__wrap {
    text-align: right
}

@media all and (max-width: 1400px) {
    .footer__row {
        padding-top: 49px
    }

    .footer__wrap {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer__wrap .footer-title:nth-child(3) {
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 17px
    }

    .footer__wrap .footer-title:nth-child(1) {
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 24px
    }

    .footer__wrap .download-app {
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 41px
    }

    .footer__wrap .social-links {
        -ms-flex-order: 4;
        order: 4
    }
}

@media all and (max-width: 1100px) {
    .footer__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 30px;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer__wrap {
        text-align: center
    }

    .footer__wrap .footer-title:nth-child(3) {
        margin-top: 20px
    }
}

@media only screen and (max-width: 750px) {
    .footer__wrap .footer-title:nth-child(3) {
        margin-top: 0
    }
}

.footer-title {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    display: block;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 8.55px;
    margin-bottom: 30px
}

@media all and (max-width: 1400px) {
    .footer-title {
        font-size: 12px;
        letter-spacing: 4.55px;
        margin-bottom: 20px;
        font-weight: 500
    }

    .footer-nav__link {
        font-size: 10px !important
    }
}
.footer-nav__link{
    transition-duration: 0.3s;
    min-height: 2rem;
}
.footer-nav__link:hover{
    color: #e6c396;
}
.footer-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 66%
}

.footer-nav__item {
    width: 100%
}

.footer-nav__link {
    display: block;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 30px
}

@media all and (max-width: 1100px) {
    .footer-nav {
        width: 100%
    }
}

@media only screen and (max-width: 750px) {
    .footer-nav {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: center
    }

    .footer-nav__item {
        position: relative;
        margin-bottom: 16px;
    }

    .footer-nav__item:after {
        position: absolute;
        top: 0;
        right: 50px;
        content: '▼';
        font-family: icomoon;
        font-size: 12px;
        display: block;
        transition: ease .1s
    }

    .footer-nav__wrap {
        padding-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height ease-in-out 0.4s
    }

    .footer-nav__item._open:after {
        transform: rotate(180deg)
    }

    .footer-nav__item._open .footer-nav__wrap {
        max-height: 500px;
    }

    .footer-title {
        margin-bottom: 0;
        padding-bottom: 10px
    }

    .footer-nav__link {
        margin-bottom: 15px
    }
}

.social-links {
    margin-bottom: 30px
}

.social-links__link {
    display: inline-block;
    color: #000;
    font-size: 22px;
    margin: 0 16px
}

.download-app {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.download-app__link {
    margin-left: 27px;
    max-width: 120px
}

.download-app__link img {
    display: block;
    max-width: 100%;
    height: auto
}

@media all and (max-width: 1100px) {
    .download-app__link:nth-child(1) {
        margin-left: 0
    }

    .download-app {
        justify-content: center
    }
}

.banner {
    display: block;
    width: 100%;
    height: 100vh
}

.banner__link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2
}

.banner .btn-style {
    position: absolute;
    right: 0;
    bottom: 0
}

.banner__img {
    display: block
}

.banner__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-transform: uppercase;
    font-weight: 100;
    opacity: .8;
    font-size: 60px;
    letter-spacing: 24px;
    z-index: 3
}

@media all and (max-width: 1100px) {
    .banner__title {
        font-size: 48px;
        letter-spacing: 19.2px
    }
}

@media only screen and (max-width: 750px) {
    .banner {
        display: none
    }
}

.scroll-block {
    position: absolute;
    left: 50%;
    bottom: 30px;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6.4px;
    z-index: 3
}

.scroll-block__line {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 100px;
    margin-top: 5px
}

.scroll-block__line:after {
    content: "";
    position: relative;
    display: block;
    background-color: #fff;
    animation: scroll_line 2s ease infinite;
    width: 100%;
    height: 100%
}

@media all and (max-width: 1100px) {
    .scroll-block {
        bottom: 2px
    }

    .scroll-block__line {
        height: 50px
    }
}

@keyframes scroll_line {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(100%)
    }
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: center;
    align-content: center;
    width: 100%;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-top: -2px
}

.nav__submenu {
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 138%;
    width: 100vw;
    background-color: #fff;
    display: none;
    z-index: 21;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}

.nav__submenu.active {
    display: block
}

.nav__item-link {
    font-size: 12px;
    line-height: 2.45;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2.93px;
    font-weight: 400
}

.nav__suinner {
    width: 100%;
    max-width: 1225px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    justify-content: space-between
}

.nav__suinner_nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.nav__suinner_nowrap .pop-merch__item {
    max-width: 100%
}

.nav__suitem {
    max-width: 100%;
    padding: 15px
}

.nav__suitem hr {
    height: 1px;
    background: #e6e6e6;
    border: 0;
    margin-bottom: 20px;
}

.nav__suitem-title {
    font-size: 15px;
    font-weight: 900;
    color: #999;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 310px
}

.nav__suitem_col-1-2 {
    width: 50%
}

.nav__subitem-link {
    display: block;
    color: #000;
    font-size: 14px;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.nav__subitembody {
    padding-top: 15px
}

.nav__subitembody_row {
    display: block;
    min-width: 480px;
    columns: 3;
    column-gap: 10px
}

.nav__mobile-belt {
    padding: 28px 0;
    border-bottom: 1px solid #dedede;
    display: none
}

.nav__mobile-belt .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-around !important;
}

@media all and (max-width: 1400px) {
    .nav__mobile-belt .container {
        max-width: 1064px !important
    }
}

@media all and (max-width: 1100px) {
    .nav__mobile-belt .container {
        max-width: 808px !important
    }
}

.nav__mbelt-item a, .nav__mbelt-item i {
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    font-style: inherit;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    color: #000
}

@media only screen and (max-width: 750px) {
    .nav__mobile-belt .container {
        max-width: 400px !important
    }

    .nav__mbelt-item a, .nav__mbelt-item i {
        letter-spacing: 0;
        font-size: 14px
    }
}

.nav__mbelt-item a:before, .nav__mbelt-item i:before {
    margin-right: 14px
}

@media all and (max-width: 750px) {
    .nav {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background-color: #fff;
        width: 310px;
        left: -1px;
        height: 100vh;
        overflow: auto;
        padding: 50px 0 100px;
        position: relative
    }

    .nav__item-link {
        color: #000;
        text-align: left;
        padding-left: 24%;
        font-size: 18px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 4.8px;
        display: block
    }

    .nav__item {
        margin: 10px 0;
        transition: 0.3s linear;
        position: static
    }

    .nav__item:hover {
        background-color: #f7f7f7;
        transition: 0.3s linear
    }

    .nav__submenu {
        display: none !important
    }

    .nav__suinner {
        -ms-flex-line-pack: justify;
        align-content: space-between;
        padding-bottom: 0;
        min-height: 100%
    }

    .nav__suinner_nowrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .nav__suitem-title {
        display: block;
        font-size: 14px;
        letter-spacing: unset;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .nav__suitem_col-1-2 {
        margin-right: 0;
        width: 100%
    }
}

@media all and (max-width: 1100px) {
    .nav__submenu {
        padding: 0 30px
    }
}

@media only screen and (max-width: 750px) {
    .nav {
        width: 100%;
        box-shadow: 0 0 10px rgba(160, 160, 160, .5)
    }

    .nav__item {
        text-align: center;
    }

    .nav__item-link {
        padding-left: 0;
        font-size: 14px;
        text-align: center;
        letter-spacing: 2.8px
    }

    .nav__mobile-belt {
        display: block;
        padding: 15px 0
    }
}

.pop-brand {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.pop-brand__item {
    width: 120px;
    height: 60px;
    margin: 0 10px 60px;
    text-align: center;
    opacity: .4;
    transition: 0.3s ease-in-out
}

.pop-brand__item:hover {
    opacity: 1
}

@media all and (max-width: 1100px) {
    .pop-brand__item {
        width: 50%
    }
}

.alphabet {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 250px
}

.alphabet__item {
    display: block;
    width: 30px;
    margin: 10px;
    text-align: center;
    color: #000;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
    transition: 0.3s ease-in-out
}

.alphabet__item:hover {
    color: #919191;
    transition: 0.3s ease-in-out
}

.pop-merch__img {
    width: 130px;
    height: 130px;
    margin-right: 10px
}

.pop-merch__item {
    max-width: 50%;
    height: 130px;
    margin-bottom: 30px;
    display: -ms-flexbox;
    display: flex
}

.pop-merch_row .pop-merch__item {
    min-width: 33%;
    flex: 1 0
}

.pop-merch__content {
    max-width: calc(100% - 140px);
    padding-right: 10px
}

.pop-merch__title {
    display: block;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: .6px;
    font-weight: 400;
    color: inherit
}

.pop-merch__description {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: .7px;
    margin-bottom: 15px;
    overflow: hidden;
    column-width: 750px
}

.pop-merch__price {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px;
    text-transform: uppercase
}

.pop-merch__oldprice {
    margin-right: 10px;
    color: #bdbdbd;
    text-decoration: line-through
}

.pop-merch_row {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap
}

@media all and (max-width: 1500px) {
    .pop-merch__item {
        max-width: 100%;
        margin-right: 0;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .pop-merch_row .pop-merch__item {
        max-width: unset
    }
}

.navblog {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start
}

.navblog_row {
    flex-direction: row
}

.navblog_row .navblog__item {
    flex: 1 0
}

.navblog__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 20px;
    pointer-events: none
}

.navblog__item:last-child {
    margin-bottom: 0
}

.navblog__item * {
    pointer-events: auto
}

.navblog__content {
    padding-right: 20px
}

.navblog__title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #000
}

.navblog__img {
    width: 160px;
    height: 160px;
    margin-right: 20px;
    object-fit: cover
}

@media all and (max-width: 1200px) {
    .navblog {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -ms-flex-direction: row;
        flex-direction: row;
        flex-wrap: wrap
    }

    .navblog__item {
        width: 50%;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .navblog__content {
        max-width: 160px;
        padding: 0
    }

    .navblog__title {
        letter-spacing: .6px;
        margin-top: 16px
    }
}

.menumarker {
    width: 26px;
    height: 14px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 22
}

.menumarker hr {
    transition: 0.3s ease-in-out;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    border: none
}

.menumarker hr:first-child {
    top: 0;
    -ms-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0)
}

/*.menumarker hr:nth-child(2){-ms-transform:translate(0,9px) scale(1);transform:translate(0,9px) scale(1)}*/
.menumarker hr:last-child {
    -ms-transform: translate(0, 13px) rotate(0);
    transform: translate(0, 13px) rotate(0)
}

.menumarker._active hr:first-child {
    -ms-transform: translate(0, 6px) rotate(45deg);
    transform: translate(0, 6px) rotate(45deg)
}

/*.menumarker._active hr:nth-child(2){-ms-transform:translate(0,9px) scale(0);transform:translate(0,9px) scale(0);transition:0.3s ease-in-out}*/
.menumarker._active hr:last-child {
    -ms-transform: translate(0, 6px) rotate(-45deg);
    transform: translate(0, 6px) rotate(-45deg)
}

@media all and (max-width: 750px) {
    .menumarker {
        display: block
    }
}

@media all and (max-width: 750px) {
    .menumarker._active hr {
        background-color: #fff
    }
}

@media screen and (min-width: 1201px) {
    .header__nav {
        flex: 1 0;
        max-width: 70%
    }
}

.header__bottom-belt {
    background-color: #000;
    position: relative;
    padding-top: 12.5px;
    height: 50px;
    padding-bottom: 27px;
}

.header__bottom-belt .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1500px
}

@media all and (max-width: 1200px) {
    .header__bottom-belt .container {
        position: relative;
        max-width: 808px
    }
}


.header__top-belt {
    text-align: center;
    background-color: #ebebeb;
    color: #919191;
    display: block
}

.header__top-belt p {
    font-size: 12px;
    font-weight: 400;
    line-height: 27px
}

.header__control {
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header__control * {
    color: #fff;
    transition: 0.3s ease-in-out
}

.header__link {
    display: flex !important;
    font-size: 19px;
    margin-left: 8px;
    margin-right: 8px;
    cursor: pointer
}
.header__link[count]{
    position: relative;
}
.header__link[count]:after{
    content: attr(count);
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #2d1911;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.header__link:last-child {
    margin-right: 0;
}

.header__link.icon-user {
    font-size: 22px
}

.header__link.icon-phone {
    font-size: 14px;
    display: flex;
    align-items: center
}

.header__link.icon-phone:before {
    font-size: 19px
}

@media (max-width: 750px) {
    .header__link.icon-phone {
        display: none
    }

    .header__link.icon-phone:before {
        margin-right: 0
    }
}

.header__link.icon-search {
    font-size: 17.25px;
    padding-top: 1px;
    opacity: 0.8;
}

.header__link_cart {
    font-family: icomoon;
    position: relative;
    font-size: 20px;
}

.header__link_cart:before {
    content: '\e91d'
}

.header__link_cart._active:before {
    content: '\e90c'
}

.header__link_cart._noempty:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e6c396;
    content: ''
}

.header__link:hover {
    color: #e6c396;
    transition: 0.3s ease-in-out
}

@media only screen and (max-width: 750px) {
    .header__link_user {
        display: none !important;
    }

    .header__link_hear {
        display: block;
        padding-top: 1px;
    }
}

@media all and (max-width: 750px) {
    .header__nav {
        display: none;
        z-index: -1;
        position: absolute;
        width: 100%;
        top: -10px;
        left: 0
    }
}


.logo-header {
    width: 33px;
    height: 31px;
    display: block
}

.logo-header svg {
    max-width: 100%;
    max-height: 100%
}

.minicart {
    max-width: 610px;
    z-index: 25;
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 1, 5, .1);
    display: none
}

.minicart:hover {
    display: block !important;
    opacity: 1 !important;
}

.minicart:after {
    position: absolute;
    border-bottom: 14px solid #fff;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    top: -14px;
    right: 14px;
    content: ''
}

.minicart h3 {
    text-align: center
}

.minicart__table-head, .minicart__table-row {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.minicart__table-cell h3 {
    text-align: left
}

.minicart__table-cell:first-child {
    width: 100%
}

.minicart__table-cell:nth-child(3) {
    width: 150px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #999;
    font-size: 11px;
    text-transform: uppercase
}

.minicart__table-cell:nth-child(2) {
    width: 70px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #999;
    font-size: 11px;
    text-transform: uppercase
}

.minicart__title {
    padding: 40px 40px 30px 40px;
    border-bottom: 1px solid #eee
}

.minicart__body {
    padding: 10px 20px 0 40px;
    position: relative;
    z-index: 1
}

.minicart__body .minicart__table-cell:nth-child(3), .minicart__body .minicart__table-cell:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #000
}

.minicart__body .minicart__table-cell:nth-child(3) {
    width: 170px;
    padding-right: 30px;
    text-transform: lowercase
}

.minicart__body .minicart__table-row {
    position: relative;
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px
}

.minicart__wrapper {
    position: relative;
    box-sizing: border-box;
    max-height: 407px;
    overflow: auto;
    width: 100%
}

.minicart__wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #F5F5F5
}

.minicart__wrapper::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5
}

.minicart__wrapper::-webkit-scrollbar-thumb {
    background-color: #000
}

.minicart__control {
    padding: 20px 40px 30px 40px;
    box-shadow: 0 0 10px rgba(0, 1, 5, .1);
    position: relative;
    z-index: 2
}

.minicart__total {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: .7px
}

.minicart__count {
    color: #999;
    margin-right: 20px
}

.minicart__coast span {
    font-size: 18px;
    letter-spacing: .9px;
    margin-left: 10px
}

.minicart__btn .btn-style__label {
    letter-spacing: 2.66px
}

.minicart__btn .btn-style:first-child {
    margin-right: 10px
}

.minicart__btn .btn-style:last-child {
    margin-left: 10px
}

.minicart__remove-btn {
    position: absolute;
    right: 5px;
    width: 20px;
    height: 20px;
    opacity: .5;
    cursor: pointer;
    transition: 250ms linear all
}

.minicart__remove-btn:after, .minicart__remove-btn:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
    content: '';
    transform: translate(-50%, -50%)
}

.minicart__remove-btn:after {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.minicart__remove-btn:before {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -moz-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    -o-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg)
}

.minicart__remove-btn:hover {
    opacity: .7
}

.minicart__merch {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.minicart__merch p {
    color: #999;
    font-size: 13px
}

.minicart__img {
    width: 80px;
    height: 80px
}

@media only screen and (max-width: 650px) {
    .minicart__table-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .minicart__table-cell:first-child {
        width: 100%
    }

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

    .minicart__btn {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center
    }

    .minicart__btn .btn-style {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .minicart__btn .btn-style:nth-child(1) {
        margin-bottom: 20px
    }

    .minicart__table-head .minicart__table-cell {
        display: none
    }

    .minicart__table-head .minicart__table-cell:first-child {
        display: block
    }
}

.mainslider {
    background: #fff;
    position: relative;
    padding-bottom: 105px
}

.mainslider__slider {
    margin-top: 44px;
    margin-bottom: 120px;
    width: 1290px;
    overflow: hidden
}

.mainslider__slide {
    overflow: hidden
}

.mainslider * {
    outline: none
}

.mainslider .mainslider__arrows {
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 20px;
    outline: none
}

.mainslider .mainslider__arrows .mainslider__arrow {
    position: absolute;
    top: 0%;
    left: 50%;
    height: 20px;
    cursor: pointer
}

.mainslider .mainslider__arrows .mainslider__arrow:before {
    font-size: 56px;
    line-height: 20px
}

.mainslider .mainslider__arrows .mainslider__arrow_prev {
    left: 50%;
    -ms-transform: translate(-100px, 0);
    transform: translate(-100px, 0)
}

.mainslider .mainslider__arrows .mainslider__arrow_nex {
    right: 50%;
    -ms-transform: translate(40px, 0);
    transform: translate(40px, 0)
}

.mainslider .object-fit-wrap:after {
    padding-top: 48%
}

@media all and (max-width: 1400px) {
    .mainslider__slider {
        width: 100%;
    }
}

@media all and (max-width: 1100px) {
    .mainslider {
        padding-bottom: 78px
    }

    .mainslider .container {
        padding: 0
    }

    .mainslider__slider {
        margin-top: 10px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 750px) {
    .mainslider {
        padding-bottom: 43px
    }

    .mainslider .container {
        max-width: 100%;
    }

    .mainslider .mainslider__arrows, .slider-counter {
        display: none
    }
}

.blog {
    text-align: center
}

.blog h1 {
    margin-bottom: 20px
}

.blog__wrap {
    position: relative;
    z-index: 10;
    margin-top: 70px;
    margin-bottom: 90px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.blog__btn-wrap {
    text-align: center;
    position: relative;
    z-index: 20;
    margin-bottom: 20px
}

.blog-item {
    display: block;
    text-align: left;
    margin-bottom: 10px;
    width: calc(50% - 15px)
}

.blog-item .object-fit-wrap {
    display: block;
    transition: 1s ease
}

.blog-item .object-fit-wrap:after {
    padding-top: 65%
}

.blog-item .object-fit-wrap:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #000;
    content: '';
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease-in-out
}

.blog-item:hover .object-fit-wrap:before {
    opacity: .5;
    transition: 0.3s ease-in-out
}

.blog-item__image-wrap {
    display: block;
    overflow: hidden
}

.blog-item__row {
    display: -ms-flexbox;
    display: flex;
    padding: 30px 50px
}

.blog-item__date {
    color: #919191;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.11;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-right: 20px
}

.blog-item__title {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

@media all and (max-width: 1400px) {
    .blog-item {
        width: calc(50% - 2px);
        margin-bottom: 50px
    }

    .blog-item__row {
        padding: 20px 10px
    }

    .blog-item__date, .blog-item__title {
        font-size: 20px
    }

    .blog-item__wrap {
        margin-bottom: 0
    }
}

@media all and (max-width: 1000px) {
    .blog-item {
        width: 100%
    }

    .blog-item__row {
        -ms-flex-pack: center;
        justify-content: center
    }

    .blog-item__image-wrap {
        max-height: 500px
    }

    .blog-item__date, .blog-item__title {
        font-size: 20px
    }

    .blog-item__wrap {
        margin-bottom: 0
    }
}

@media only screen and (max-width: 750px) {
    .blog-item {
        margin-bottom: 0
    }

    .blog-item__row {
        display: block
    }

    .blog-item__date, .blog-item__title {
        font-size: 18px;
        display: block;
        text-align: center
    }
}

.shortnews {
    overflow: hidden;
    padding-bottom: 80px;
    text-align: center
}

@media all and (max-width: 1100px) {
    .shortnews {
        padding-bottom: 80px
    }
}

.news-slider {
    margin-bottom: 50px
}

.news-slider__slide {
    padding-left: 15px;
    padding-right: 15px
}

.news-slider__slide .object-fit-wrap__img {
    object-fit: cover
}

.news-slider__slide .object-fit-wrap {
    position: absolute;
    top: 0;
    left: 0
}

.news-slider__slide .object-fit-wrap:after {
    padding-top: 65%
}

.news-slider__slide:hover .news-slider__img:after {
    opacity: .5;
    transition: 0.3s ease-in
}

.news-slider__img {
    padding: 50%;
    box-sizing: border-box;
    position: relative
}

.news-slider__img:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #000;
    content: '';
    opacity: 0;
    transition: 0.3s ease-in
}

.news-slider__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000;
    margin-top: 25px
}

.news-slider__date {
    color: #999;
    margin-right: 20px
}

.news-slider .slick-list {
    overflow: visible
}
.slick-list{
    padding: 20px 0;
}
.slick-track {
    displa: flex
}

.news-slider .slick-prev, .news-slider .slick-next {
    height: 100%;
    width: calc((100vw - 100%) / 2);
    top: 0;
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    z-index: 10
}

.news-slider .slick-prev:before, .news-slider .slick-next:before {
    display: none
}

.news-slider .slick-prev {
    left: 0;
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0)
}

.news-slider .slick-next {
    right: 0;
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0)
}

@media all and (max-width: 1100px) {
    .news-slider__text {
        font-size: 18px;
        margin-top: 15px
    }
}

@media only screen and (max-width: 750px) {
    .news-slider {
        margin-bottom: 0
    }

    .news-slider__slide {
        margin-bottom: 30px;
        display: none
    }

    .news-slider__slide:last-child, .news-slider__slide:nth-child(2) {
        display: block
    }

    .news-slider__text {
        font-size: 18px;
        letter-spacing: .9px
    }
}

.merch-preview__img {
    background-color: white;
    padding: 66.5% 0%;
    height: 0;
    width: 100%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden
}

.merch-preview__content {
    position: relative;
    display: inline-block;
    max-width: 100%
}



.merch-preview__img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    z-index: 1
}

.merch-preview__img._second-img img.second {
    opacity: 0;
    z-index: -1;
    transition: opacity .16s ease-in-out
}

.merch-preview__img._second-img:hover img:first-of-type {
    opacity: 0;
    transition: 1ms ease .16s
}

.merch-preview__img._second-img:hover img.second {
    opacity: 1;
    z-index: 2
}

.merch-preview__img._fill img {
    max-width: unset;
    max-height: unset;
    height: 100%;
}

.merch-preview__img:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: gray;
    opacity: .1;
    z-index: 2;
    content: ''
}

.merch-preview__title {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 30px;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    text-align: center;
    padding: 0 10px
}

.merch-preview__description {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px;
    overflow: hidden;
    column-width: 1000px;
    max-height: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    line-height: normal;
    color: #666;
    padding: 0 10px
}

.merch-preview__price-container {
    text-align: center;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .9px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 0 10px
}

.merch-preview__oldprice {
    color: #bdbdbd;
    font-size: 80%;
    font-weight: 400;
    letter-spacing: .8px;
    text-decoration: line-through;
    margin-right: 8px
}

.merch-preview__label {
    position: absolute;
    bottom: 20px;
    line-height: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5.6px;
    color: #000
}

.merch-preview__label span:not(:first-child):before {
    font: inherit;
    content: '|';
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px
}

.merch-preview__addtocart {
    opacity: 0;
    transition: .3s ease-in;
    pointer-events: none;
    width: 100%;
    padding-top: 22px;
    padding-bottom: 22px;
    color: #fff;
    background-color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3
}

.merch-preview__addtocart:before {
    margin-right: 5px
}

.merch-preview__remove-favorite {
    opacity: 0;
    transition: .3s ease-in;
    pointer-events: none;
    width: 100%;
    padding-top: 22px;
    padding-bottom: 22px;
    color: #fff;
    background-color: #bebebe;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 3
}

.merch-preview__remove-favorite:before {
    content: ''
}

.merch-preview:hover .merch-preview__addtocart {
    opacity: 1;
    pointer-events: auto;
    transition: .3s ease-in
}

.merch-preview:hover .merch-preview__remove-favorite {
    opacity: 1;
    pointer-events: auto;
    transition: .3s ease-in
}

.merch-preview_favorite .merch-preview__remove-favorite {
    display: block
}

.merch-preview_favorite .merch-preview__addtocart {
    display: none
}

@media all and (max-width: 1100px) {
    .merch-preview__title {
        margin-top: 25px;
        margin-bottom: 8px
    }
}

.merch-sliders h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px
}

.merch-sliders .merch-preview {
    display: block;
    padding-left: 15px;
    position: relative;
    padding-right: 15px
}

.merch-sliders .merch-preview {
    margin-bottom: 100px
}

.merch-sliders .container .slick-slide {
    width: calc(1290px / 4)
}

@media screen and (max-width: 1400px) {
    .merch-sliders .container .slick-slide {
        width: calc(1024px / 3)
    }
}

@media screen and (max-width: 1100px) {
    .merch-sliders .container .slick-slide {
        width: calc(768px / 2)
    }
}

.merch-sliders .container .slick-slide .merch-preview {
    display: block !important;
    width: 100%;
    transition: 0.5s ease-in-out;
    transition-delay: 1s
}

.merch-sliders .container ._active .merch-preview {
    transition: 0.5s ease-in-out;
    transition-delay: 1s
}

@media all and (max-width: 1100px) {
    .merch-sliders h2 {
        text-align: left;
        padding-left: 20px
    }
}

@media only screen and (max-width: 750px) {
    .merch-sliders .slick-list {
        overflow: visible;
        margin: 0 auto;
        width: 240px
    }

    .merch-preview__title {
        font-size: 16px;
        letter-spacing: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .merch-preview__description {
        font-size: 12px;
        max-height: 35px;
        letter-spacing: 0;
        overflow: hidden;
        column-width: 300px;
        margin-bottom: 15px
    }

    .merch-preview__price-container {
        letter-spacing: 0
    }

    .merch-sliders .slider-counter {
        display: none
    }

    .merch-sliders h2 {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        font-size: 24px;
        margin-bottom: 20px
    }

    .merch-sliders__description {
        margin-bottom: 40px
    }

    .merch-sliders .merch-preview {
        margin-bottom: 61px
    }

    .merch-sliders .merch-preview {
        padding-left: 5px;
        padding-right: 5px
    }
}

@keyframes slidein {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

._arrow-right-top {
    position: relative
}

._arrow-right-top .slick-slider .slick-arrow {
    top: 0%
}

._arrow-right-top .slick-slider .slick-next {
    right: 0;
    -ms-transform: translate(-15px, -56px);
    transform: translate(-15px, -56px)
}

._arrow-right-top .slick-slider .slick-prev {
    right: 0;
    left: auto;
    -ms-transform: translate(-145px, -56px);
    transform: translate(-145px, -56px)
}

._arrow-right-top .slider-counter {
    position: absolute;
    top: 0;
    right: 60px;
    -ms-transform: translate(-15px, -72px);
    transform: translate(-15px, -72px)
}

@media only screen and (max-width: 750px) {
    ._arrow-right-top .slick-slider .slick-prev, ._arrow-right-top .slick-slider .slick-next {
        width: calc((100vw - 400px) / 2);
        height: 100%;
        font-size: 0;
        z-index: 2
    }

    ._arrow-right-top .slick-slider .slick-prev:before, ._arrow-right-top .slick-slider .slick-next:before {
        font-size: 0
    }

    ._arrow-right-top .slick-slider .slick-next {
        -ms-transform: translate(100%, 0);
        transform: translate(100%, 0)
    }

    ._arrow-right-top .slick-slider .slick-prev {
        right: auto;
        left: 0;
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0)
    }
}

.banner-small {
    padding-bottom: 55px
}

.banner-small .object-fit-wrap:after {
    padding-top: 25.58%
}

.banner-small picture img {
    max-width: 100%
}

.filter__title {
    font-size: 22px;
}

@media all and (max-width: 1400px) {
    .banner-small {
        padding-bottom: 34px
    }
}

.catalog-section {
    position: relative;
    overflow: hidden
}

.catalog-section__filter {
    z-index: 3;
    position: relative;
    background-color: #fff
}

.catalog-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .05);
    transition: 0.5s ease;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 2
}

.catalog-section__overlay._active {
    opacity: 1;
    pointer-events: auto
}

.catalog-section__pagination {
    margin-top: 30px;
    margin-bottom: 40px
}

.catalog-section__catalog {
    position: relative;
    z-index: 1
}

.filter__top, .filter__wrapper, .filter__bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.filter__top {
    padding: 3px 0 21px
}

.filter__bottom {
    /*border-top: 1px solid #eee;*/
    padding: 29px 0 0;
    width: 350px;
}
.search-results .filter__bottom{
    width: 500px;
}
@media all and (max-width: 1100px) {
    .filter__bottom {
        width: 230px;
    }

    .extended-filter__popup-wrapper_price {
        width: 230px;
    }

    .filter__title {
        font-size: 18px;
    }

    .filter__wrapper {
        -ms-flex-pack: distribute;
        justify-content: flex-end;
        width: 100%
    }
}

@media only screen and (max-width: 750px) {
    .filter__wrapper {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .filter__wrapper .params {
        display: none;
        flex-direction: column;
        justify-content: center
    }

    .params__title {
        margin-bottom: 15px
    }

    .filter__bottom {
        display: none
    }

    .filter .filtermarker {
        padding-top: 19px;
        padding-bottom: 19px;
        width: 100%;
        border-top: 1px solid #dedede;
        border-bottom: 1px solid #dedede
    }

    .filter__top {
        flex-direction: column
    }
}

.params {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 43px
}

.params__title {
    margin-right: 19px
}

.params__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.params__item {
    margin-right: 15px
}

.params__item:last-child {
    margin-right: 0
}

.params__select-wrapper {
    width: 220px
}

@media all and (max-width: 1400px) {
    .params {
        margin-left: 0
    }

    .params:nth-child(3) {
        margin-left: 40px
    }

    .params:nth-child(3) .params__title {
        display: none
    }
}

@media all and (max-width: 1100px) {
    .params h4 {
        font-size: 12px !important
    }

    .params:nth-child(3) .params__title {
        display: block
    }
}

@media only screen and (max-width: 750px) {
    .params:nth-child(2) {
        margin-top: 20px
    }

    .params:nth-child(3) {
        margin-top: 20px;
        margin-left: 0
    }
}

.extended-filter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
}

.extended-filter__item {
    position: relative;
    display: -ms-flexbox;
    -ms-flex-align: center;
    align-items: center;
    transition: 0.3s ease;
    cursor: pointer;
    padding: 10px 0;
    margin-right: 10%;
    margin-bottom: 36px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.extended-filter__title:after {
    content: "\e908";
    position: absolute;
    right: 0;
    transition: 0.3s ease;
    top: 15px;
    pointer-events: none;
    font-family: icomoon;
    color: #000;
    font-size: 10px
}

.extended-filter__title {
    padding-right: 20px
}

.extended-filter__item._active:after {
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.extended-filter__label {
    transition: 0.3s ease
}

.extended-filter__popup-wrapper {
    z-index: 18;
    left: -40px;
    top: calc(100% + 19px);
    background-color: #fff;
    transition: 0.3s ease;
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    display: none;
    border: 1px solid #f1f1f1;
    pointer-events: none;
    cursor: auto;
    width: 260px;
    padding: 4px 20px 25px 19px
}

.extended-filter__popup-wrapper_price {
    width: 340px;
    padding: 0 10px 62px 10px;
}

.extended-filter__popup-wrapper_default {
    width: 235px;
    padding: 17px 18px
}

.extended-filter__item._active .extended-filter__popup-wrapper {
    -ms-transform: translateY(0);
    display: block;
    pointer-events: auto
}

.extended-filter__item._active .extended-filter__title {
    color: #999
}

@media only screen and (max-width: 750px) {
    .extended-filter {
        flex-direction: column;
        padding: 0 20px;
        -ms-flex-align: flex-start;
        align-items: flex-start
    }

    .extended-filter__item {
        margin-right: 0;
        margin-bottom: 10px
    }

    .extended-filter__popup-wrapper {
        max-width: 320px;
        left: 0
    }
}

.filter-popup {
    width: 100%;
    text-align: left;
}

.dynamic-filter .search-input {
    padding-left: 11px
}

.dynamic-filter__list {
    position: relative;
    max-height: 360px;
    margin-top: 30px;
    padding: 5px 0
}

.dynamic-filter__category:first-child .dynamic-filter__title {
    margin-top: 0
}

.dynamic-filter__title {
    margin-top: 48px;
    margin-bottom: 16px;
    padding-left: 21px;
    font-size: 16px;
    font-weight: 400;
    color: #bebebe;
    letter-spacing: .8px
}

.dynamic-filter__item {
    margin-bottom: 15px
}

.dynamic-filter__item:last-child {
    margin-top: 0
}

.dynamic-filter__not-found {
    padding-left: 21px;
    color: #999;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.price-popup__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.price-popup__text {
    color: #000;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: .8px
}

.price-popup .irs {
    margin-top: 35px
}

.filter-default-popup__list {
    position: relative;
    max-height: 450px
}

.filter-default-popup__list-item {
    margin-top: 48px
}

.filter-default-popup__list-item:first-child {
    margin-top: 0
}

.filter-default-popup__title {
    margin-bottom: 15px
}

.filter-default-popup__item {
    margin-top: 15px
}

.filter-default-popup__item:first-child {
    margin-top: 0
}

.pagination {
    width: 100%
}

.pagination__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.pagination__arrow {
    overflow: hidden
}

.pagination__arrow:before {
    position: relative;
    transition: 0.3s ease;
    display: block;
    font-family: icomoon;
    font-size: 32px;
    color: #000
}

.pagination__arrow_prev {
    margin-right: 5px
}

.pagination__arrow_prev:before {
    content: "\e912"
}

.pagination__arrow_prev_disable:before {
    -ms-transform: translateX(30%);
    transform: translateX(30%)
}

.pagination__arrow_next {
    margin-left: 5px
}

.pagination__arrow_next:before {
    content: "\e911"
}

.pagination__arrow_disable {
    pointer-events: none
}

.pagination__arrow_disable:before {
    opacity: .2
}

.pagination__arrow_prev.pagination__arrow_disable:before {
    -ms-transform: translateX(30%);
    transform: translateX(30%)
}

.pagination__arrow_next.pagination__arrow_disable:before {
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.pagination__link {
    box-sizing: border-box;
    transition: 0.4s ease;
    padding: 8px;
    margin: 0 5px;
    color: #999;
    font-size: 18px;
    font-weight: 300
}

.pagination__link_active, .pagination__link:hover {
    color: #000
}

@media only screen and (max-width: 750px) {
    .pagination__list {
        display: none
    }
}

.catalog-block__title {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    letter-spacing: .7px;
    display: none
}

.catalog-block__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15px
}

.catalog-block__header h2 {
    padding: 0
}

@media (max-width: 750px) {
    .catalog-block__header {
        flex-direction: column;
        align-items: center
    }

    .catalog-block__header .link-style {
        position: absolute;
        bottom: 0;
        margin: 0 auto
    }
}

/*
@media all and (min-width: 1100px) {
    .smartfilter {
        border-top: 1px solid #eee;

    }

    .filter__bottom {
        border-top: 0;
        top: 130px;
        position: absolute;
        left: -41px;
    }

    .extended-filter {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 42px;
        flex-direction: column;
    }

}
 */


.catalog-block__products-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 15px;
}


.catalog-block .merch-preview {
    width: calc(32% - 30px);
    margin: 0 16px 80px;
    position: relative;
}

@media all and (max-width: 1400px) {
    .catalog-block .merch-preview {
        width: calc(130% / 4 - 30px) !important;
    }
}

@media all and (max-width: 1100px) {
    .catalog-block .merch-preview {
        width: calc(140% / 4 - 30px) !important;
    }
}

@media only screen and (max-width: 750px) {
    .catalog-block__products-list {
        margin: 0;
        justify-content: space-between
    }

    .catalog-block .merch-preview {
        width: calc(50% - 10px) !important;
        margin: 0 0 50px
    }

    .catalog-block__title {
        display: block
    }

    .extended-filter__popup-wrapper {
        position: absolute !important;
        opacity: 0 !important;
    }

    .extended-filter {
        justify-content: space-between !important;
    }

    .extended-filter__item._active .extended-filter__popup-wrapper {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .extended-filter__popup-wrapper {
        display: unset !important;

    }
}

.tag-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding: 26px 0 49px
}

.tag-list__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 20px;
    background-color: #eee;
    height: 40px;
    margin: 0 15px 20px;
    padding: 5px 23px 7px 11px
}

.tag-list__color {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 11px
}

.tag-list .cross-btn {
    width: 16px;
    height: 16px;
    margin-right: 17px
}

.tag-list .cross-btn:before, .tag-list .cross-btn:after {
    background-color: #000;
    width: 60%
}

@media all and (max-width: 1400px) {
    .tag-list {
        padding: 16px 0 49px
    }
}

.radio-style {
    position: relative;
    transition: 0.4s ease;
    box-sizing: border-box;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    width: 100%;
    padding: 0 10px
}

.radio-style__input {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%
}

.radio-style__indicator {
    width: 20px;
    height: 20px;
    border: 1px solid #bebebe;
    background-color: #fff;
    margin-right: 16px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.radio-style__icon {
    width: 8px;
    height: 8px;
    background-color: #000;
    opacity: 0;
    transition: 0.3s ease-in
}

.radio-style__label {
    z-index: 1;
    position: relative;
    font-size: 16px;
    letter-spacing: .8px;
    font-weight: 300
}

.radio-style_small .radio-style__indicator {
    width: 16px;
    height: 16px;
    margin-right: 10px
}

.radio-style_small .radio-style__label {
    font-size: 14px;
    font-weight: 100;
    letter-spacing: .7px
}

.radio-style__input:checked ~ .radio-style__indicator i {
    opacity: 1;
    transition: 0.3s ease-in
}

.radio-style__input.error ~ .radio-style__indicator {
    border: 1px solid #e04c4c;
    transition: 0.3s ease-in
}

.form__formitem-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px;
    text-align: left;
    min-height: 13px;
    margin-bottom: 5px
}

.form__formitem-label span {
    color: #666;
    margin-left: 5px;
    margin-right: 5px
}

.form__formitem-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.form__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

.form__row:last-child {
    margin-bottom: 0
}

.form__row_overflow {
    width: calc(100% + 109px)
}

.form__row_margin {
    margin-top: 90px
}

.form_left .form__row {
    -ms-flex-pack: start;
    justify-content: flex-start
}

.form_right .form__row {
    -ms-flex-pack: end;
    justify-content: flex-end
}

.form_center .form__row {
    -ms-flex-pack: center;
    justify-content: center
}

.form__item {
    margin-left: 15px;
    margin-right: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.form__item:first-child {
    margin-left: 0
}

.form__item:last-child {
    margin-right: 0
}

.form__item.col-1 {
    width: 8.3%
}

.form__item.col-3 {
    width: 31.4%
}

.form__item.col-2 {
    width: 20%
}

.form__item.col-4 {
    width: 42.9%
}

.form__item.col-5 {
    width: 54.2%
}

.form__item.col-6 {
    width: 65.7%
}

.form__item.col-7 {
    width: 77.2%
}

.form__item.col-8 {
    width: 88.6%
}

.form__item.col-9 {
    width: 100%
}

.form__item_set {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.form__item_inputblackborder input:focus {
    border: 1px solid #000
}

.form__row-wrapper {
    margin: 60px 0 70px
}

@media all and (max-width: 1400px) {
    .form__row_overflow {
        width: calc(100% + 50px)
    }

    .form__item.col-1 {
        width: 14%
    }

    .form__item.col-3 {
        width: 42.2%
    }

    .form__item.col-2 {
        width: 28.1%
    }

    .form__item.col-4 {
        width: 56%
    }

    .form__item.col-5 {
        width: 70%
    }

    .form__item.col-6 {
        width: 84%
    }

    .form__item.col-3 {
        width: 42.2%
    }

    .form__item.col-2 {
        width: 28.1%
    }

    .form__item.col-4 {
        width: 56%
    }

    .form__item.col-5 {
        width: 70%
    }

    .form__item.col-6 {
        width: 98%
    }

    .form__item.col-8 {
        width: 100%
    }

    .form__item.col-9 {
        width: 100%
    }

    .form_password .form__item {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 40px
    }

    .form_password .form__item.col-3 {
        width: 45.07%
    }

    .form_password .form__item:last-child {
        margin-bottom: 0
    }

    .form_password .form__row {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media all and (max-width: 1100px) {
    .form__row_overflow {
        width: 100%
    }

    .form_password .form__row {
        -ms-flex-direction: row;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: center
    }

    .form_password .form__item {
        margin-left: 0;
        margin-right: 15px;
        margin-bottom: 0
    }

    .form_password .form__item:last-child {
        margin-left: 15px;
        margin-right: 0
    }
}

@media only screen and (max-width: 750px) {
    .form__row {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 0
    }

    .form__item {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 40px;
        width: 100% !important
    }

    .form_password .form__row {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .form_password .form__item {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 40px
    }

    .form_password .form__item:last-child {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 40px
    }
}

.input-style {
    position: relative;
    width: 100%
}

.input-style__viewpass {
    position: absolute;
    top: 36px;
    right: 20px;
    color: #000;
    cursor: pointer;
    opacity: .7;
    transition: .3s ease-in
}

.input-style__viewpass:hover {
    opacity: 1;
    transition: .3s ease-in
}

.input-style__clear {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #000;
    cursor: pointer;
    font-size: 10px;
    opacity: .7;
    transition: .3s ease-in
}

.input-style__clear:hover {
    opacity: 1;
    transition: .3s ease-in
}

.input-style__label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px;
    text-align: left;
    min-height: 13px;
    margin-bottom: 5px
}

.input-style__text {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px;
    text-align: left;
    min-height: 13px;
    margin-top: 5px;
    color: #666
}

.input-style__label span {
    color: #666;
    margin-left: 5px;
    margin-right: 5px
}

.input-style__input {
    border: 1px solid #bebebe;
    display: block;
    box-sizing: border-box;
    transition: 0.3s ease;
    width: 100%;
    height: 100%;
    padding: 5px 10px 5px 19px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px;
    height: 45px
}

.input-style__input.error {
    border-color: #e04c4c
}

.input-style__input:focus {
    border-color: #e8c69b
}

.input-style__input_light {
    border-color: #e8e8e8
}

.input-style ::-webkit-input-placeholder {
    color: #b5b5b5
}

.input-style ::-moz-placeholder {
    color: #b5b5b5
}

.input-style :-ms-input-placeholder {
    color: #b5b5b5
}

.input-style :-moz-placeholder {
    color: #b5b5b5
}

.input-style__error-text {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transition: 0.3s ease;
    pointer-events: none;
    opacity: 0;
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    color: #e04c4c;
    font-size: 14px
}

.input-style__input.error ~ .input-style__error-text {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.input-style_small .input-style__input {
    height: 40px
}

.input-style_search-main .input-style__input {
    border: none;
    border-bottom: 1px solid #000
}

.input-style_gray .input-style__input {
    background: #f1f1f1
}

.input-style_wihtoutlabel .input-style__label {
    display: none
}

.input-style_absolut-label .input-style__label {
    position: absolute;
    left: 10px;
    top: -20px
}

.checkbox-style {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.checkbox-style__input {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%
}

.checkbox-style__indicator {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid #000;
    background-color: #fff;
    transition: 0.4s ease;
    width: 20px;
    height: 20px
}

.checkbox-style__icon {
    font-size: 16px;
    color: #fff
}

.checkbox-style__label {
    width: calc(100% - 34px);
    margin-left: 14px;
    color: #000;
    font-size: 16px
}

.checkbox-style__input.error ~ .checkbox-style__indicator {
    border-color: #e04c4c
}

.checkbox-style__input:checked ~ .checkbox-style__indicator {
    background-color: #000
}

.radio-counter {
    position: relative
}

.radio-counter__input {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%
}

.radio-counter__indicator {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: 0.3s ease;
    border: 1px solid #bebebe;
    min-width: 60px;
    height: 40px;
    padding: 5px
}

.radio-counter__label {
    transition: 0.3s ease;
    color: #999;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.radio-counter__input:hover ~ .radio-counter__indicator, .radio-counter__input:checked ~ .radio-counter__indicator {
    border-color: #000
}

.radio-counter__input:hover ~ .radio-counter__indicator .radio-counter__label, .radio-counter__input:checked ~ .radio-counter__indicator .radio-counter__label {
    color: #000
}

.checkbox-search {
    position: relative;
    display: inline-block;
    vertical-align: top
}

.checkbox-search__input {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 100%
}

.checkbox-search__indicator {
    position: absolute;
    left: 0;
    top: 5px;
    background-color: #e8c69b;
    transition: opacity 0.3s ease;
    opacity: 0;
    width: 6px;
    height: 6px
}

.checkbox-search__label {
    display: block;
    padding-left: 21px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.checkbox-search__input:checked ~ .checkbox-search__indicator {
    opacity: 1
}

.checkbox-search_uppercase .checkbox-search__label {
    text-transform: uppercase
}

.search-input__input {
    display: block;
    border-bottom: 1px solid #e1e1e1;
    width: 100%;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: .8px;
    background-color: transparent;
    padding: 13px 10px
}

.search-input__input::-webkit-input-placeholder {
    color: #bebebe
}

.search-input__input::-moz-placeholder {
    color: #bebebe
}

.search-input__input:-ms-input-placeholder {
    color: #bebebe
}

.search-input__input:-moz-placeholder {
    color: #bebebe
}

.select-module {
    position: relative;
    width: 100%
}

.select-module__label {
    display: block;
    padding-left: 20px;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.14
}

.select-module__label span {
    color: red
}

.select-module__select {
    display: none
}

.select-module__text-block {
    position: relative;
    transition: 0.3s ease;
    height: 40px;
    border: 1px solid #000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 10px 30px 10px 20px;
    background-color: #fff;
    cursor: pointer;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .8px
}

.select-module__input-container {
    z-index: 11;
    position: relative;
    background-color: #fff
}

.select-module__input-container:after {
    content: "\f107";
    position: absolute;
    right: 14px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: 0.3s ease;
    display: block;
    pointer-events: none;
    font-family: "Font Awesome";
    color: #000;
    font-size: 20px
}

.select-module__dropdown {
    z-index: 10;
    position: absolute;
    left: 0;
    top: 100%;
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    pointer-events: none;
    opacity: 0;
    transition: 0.3s ease;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 1, 5, .1);
    background-color: #fff;
    width: 100%;
    padding: 10px
}

.select-module__scroll {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 250px;
    padding: 5px
}

.select-module__option {
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 7px 10px 7px 7px;
    margin-top: 11px;
    color: #666;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .8px
}

.select-module__option:first-child {
    margin-top: 0
}

.select-module__option._active, .select-module__option:hover {
    color: #000
}

.select-module .ps-scrollbar-y-rail {
    right: 2px !important
}

.select-module._active .select-module__input-container:after {
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg)
}

.select-module._active .select-module__dropdown {
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto
}

.article-preview {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 60px;
    margin-top: 60px
}

.article-preview:before {
    position: absolute;
    bottom: 0;
    right: 50%;
    background-color: #ededed;
    content: '';
    width: 50vw;
    height: 100%
}

.article-preview .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.article-preview__img {
    display: block;
    position: relative;
    width: auto;
    max-width: 50%;
    top: 0;
    left: 25%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 2
}

.article-preview__img img {
    max-width: 100%
}

.article-preview__content {
    width: 50%;
    padding-right: 80px
}

.article-preview__text {
    margin-bottom: 70px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
    letter-spacing: 1px
}

@media (max-width: 750px) {
    .article-preview__text {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5em
    }
}

.article-preview__altimg {
    display: block;
    position: relative;
    left: calc(100% + 80px);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    margin-bottom: 70px
}

.article-preview__title {
    font-size: 28px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 70px
}

.article-preview_top .article-preview__content {
    padding-left: 30px;
    text-align: left;
    padding-top: 30px
}

.article-preview_top .article-preview__img {
    max-width: 115%
}

.article-preview_top:before {
    height: calc(100% - 328px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px)
}

.article-preview.article-block:nth-last-child(even) .article-preview__content {
    padding-top: 203px;
    padding-left: 60px;
    padding-right: 0
}

.article-preview.article-block:nth-last-child(even) {
    margin-bottom: 103px
}

.article-preview.article-block:nth-last-child(even):before {
    width: 75vw;
    height: 100%;
    right: auto;
    left: 75%;
    bottom: auto;
    top: 0;
    -ms-transform: translate(-50%, 103px);
    transform: translate(-50%, 103px)
}

.article-preview.article-block:nth-last-child(odd) .article-preview__content {
    text-align: right;
    padding-right: 40px;
    padding-top: 72px
}

.article-preview.article-block:nth-last-child(odd) .article-preview__img {
    -ms-transform: translate(-50%, -60px);
    transform: translate(-50%, -60px)
}

.article-preview.article-block:nth-last-child(odd) .container {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.article-preview.article-block:nth-last-child(odd):before {
    display: none
}

@media all and (max-width: 1400px) {
    .article-preview__img {
        left: 20%
    }

    .article-preview__altimg {
        left: calc(100% + 220px);
        margin-bottom: 59px
    }

    .article-preview:before {
        right: 58%
    }

    .article-preview__content {
        width: 59%
    }

    .article-preview_top .article-preview__content {
        padding-left: 25px
    }

    .article-preview.article-block:nth-last-child(even) .article-preview:before {
        left: 70%;
        height: 98%
    }

    .article-preview.article-block:nth-last-child(even) .article-preview__img {
        left: 18%;
        max-width: 62%
    }

    .article-preview.article-block:nth-last-child(even) .article-preview__content {
        padding-left: 13px;
        padding-top: 196px;
        padding-right: 0
    }

    .article-preview.article-block:nth-last-child(even) .article-preview__content h2 {
        margin-bottom: 47px
    }

    .article-preview.article-block:nth-last-child(odd) .article-preview__img {
        -ms-transform: translate(-13%, -60px);
        transform: translate(-13%, -60px);
        max-width: 51%
    }

    .article-preview.article-block:nth-last-child(odd) .article-preview__content h2 {
        margin-bottom: 49px
    }
}

@media all and (max-width: 1100px) {
    .article-preview__img {
        top: 32px;
        left: 15%
    }

    .article-preview_top .article-preview__img {
        max-width: 33%
    }

    .article-preview_top .article-preview__content {
        padding-top: 70px;
        padding-left: 12px;
        width: 70%
    }

    .article-preview_top .article-preview:before {
        right: 61%
    }

    .article-preview__altimg {
        left: calc(100% + 77px);
        max-width: 149%;
        margin-bottom: 52px
    }

    .article-preview h2 {
        margin-bottom: 65px
    }

    .article-preview.article-block:nth-last-child(even) .article-preview__img {
        left: 11%;
        max-width: 59%;
        top: 64px
    }

    .article-preview.article-block:nth-last-child(even) .article-preview__content {
        padding-top: 179px;
        min-width: 51%;
        position: relative;
        left: -100px
    }

    .article-preview.article-block:nth-last-child(even) .article-preview__content h2 {
        margin-bottom: 25px
    }

    .article-preview.article-block:nth-last-child(even) {
        margin-bottom: 91px
    }

    .article-preview.article-block:nth-last-child(even):before {
        width: 100vw;
        left: 93%;
        -ms-transform: translate(-72%, 103px);
        transform: translate(-72%, 103px)
    }

    .article-preview.article-block:nth-last-child(odd) .article-preview__img {
        max-width: 65%;
        margin-right: -141px
    }

    .article-preview.article-block:nth-last-child(odd) .article-preview__content {
        padding-top: 63px;
        position: relative;
        left: -32px;
        padding-left: 10px
    }

    .article-preview.article-block:nth-last-child(odd) .article-preview__content h2 {
        margin-bottom: 27px
    }
}

@media only screen and (max-width: 750px) {
    .article-preview {
        margin-bottom: 70px;
        margin-top: 70px
    }

    .article-preview__title {
        font-size: 22px
    }

    .article-preview:last-child {
        margin-bottom: 0
    }

    .article-preview .container {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .article-preview_top .article-preview__img, .article-preview.article-block:nth-last-child(even) .article-preview__img, .article-preview.article-block:nth-last-child(odd) .article-preview__img {
        max-width: 100%;
        left: 50%;
        top: 0;
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        margin-bottom: 64px
    }

    .article-preview_top .article-preview__content, .article-preview.article-block:nth-last-child(even) .article-preview__content, .article-preview.article-block:nth-last-child(odd) .article-preview__content {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: center
    }

    .article-preview_top .article-preview__content h2, .article-preview.article-block:nth-last-child(even) .article-preview__content h2, .article-preview.article-block:nth-last-child(odd) .article-preview__content h2 {
        text-align: center
    }

    .article-preview__altimg {
        -ms-transform: translate(0%, 0);
        transform: translate(0%, 0)
    }

    .article-preview__img img.second {
        max-width: 54%
    }

    .article-preview_top .article-preview__img {
        position: absolute;
        top: 120px;
        left: -10%;
        max-width: 59%;
        -ms-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    .article-preview_top .article-preview__altimg {
        max-width: 110%;
        left: 0
    }

    .article-preview.article-block:nth-last-child(even) .article-preview__content {
        left: 0
    }

    .article-preview.article-block:nth-last-child(odd) .article-preview__content {
        left: 0;
        text-align: center
    }

    .article-preview:before {
        height: 65%;
        width: 100%;
        top: auto;
        bottom: 0;
        left: 50%;
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }
}

.backatage {
    padding-top: 1%;
    padding-bottom: 140px
}

.backatage h2 {
    margin-bottom: 20px
}

.backatage__video {
    position: relative;
    width: 100%;
    padding-bottom: 54.6%;
    overflow: hidden
}

.backatage__video video {
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAABuNJREFUaAXVmm1MlWUYx+EAgrwIKK+KxHst8QOYbM7FzKEyHMjiZK6QNUtWaF8aLsC1GWjNrPlBVsycH0rU5YcsXjYFsaVD0QnLaU0EtcRzCEWGgCii9LtOHPbgeeE85/ByvLeb+z7PfV3X/f8/13W/Pri6TFIaGRnxwFQWOZn6y5RhikzVpXM0611dXa9Rbyb/Sn2Y0uHk6ogFAAejr3369Gm2m5vbGw8fPjyh0+lOP378uO8u6ebNm101NTV3pY+1a9cGR0dHh0jy8vLyCQ8PXzl79ux0dE+hexyRY5DqFll7kl1EIKAZHh7+mjJxYGBAd/369bqUlJTT9gC4cOHCyvj4+FWQWgChFg8Pj2322FGt8+TJk+0QGL59+/YOlOdPZu7o6CjD9gh9FKkFprFV4cGDB6/Qwemenp4QQiBy4cKF+23VtVUuIiLiO2wvoI+IoaGhht7e3nhbdW0iQuy/7e3tXbV8+fJNhPhuW43bK0cfX2i12nwfH58T9J1ji50Jxwhe2MnbWYzRj2wxONkyjMHvZ82adZGxs8OabasegUA+7g2YKRICnL439/X1hYJlkzUiFj3CtFgmJObOnfulNQPT1Xb//v3P/P399cxspeb6NOsRJg4ta8FiZyEhwMFShldSwJZtjoiJRxBMePbsWTXMV5hTmOlnRMpZjUaTxux2Q4nFxCMIVixbtmyNUsiZ6uvXr18DRpOpf5xH8EYxsRgyb968Pc4E/nksYCwODAz8B6+M4RwjAgnxzpAsds8rOuNv8N4B6xj+sdBiXOxhw1fmjKDNYdLr9TsJsbHF2cAIdsHMUpXsSt8zp+Sszx49evSjp6enFsf0GD2iHRwc1DkrYEu4ePmCWSvtBiK4KFu24pYUnPV5e3t7HdG0TvC5UpGT3QDuiaKclMSBKu/o0aMniouL/50Ug1aMgL+DZjfxSJac7KzIqm6KioraVVRU1Hzv3r3tBQUF/qoNqFAYxZ6lYbZaIsdTFboTijIIm65evboZQc2+fft+w35Bamqq54SKdggwezXA4TUNIZUgZ2w7bFhVYcPZExQUVLZ3794MzjLRDQ0NZ4jpDSy2Y3O/VQM2No5iT5DQCpOLAhv1VIsVFhbqAwICth0+fHhDaGjoCnmDly9fnrQtEOHbhTPCDUTktkM1QpUKeXl5N3x9fT+sr6//OC4uLo83WVVXV5ek0oyJONhlQvmfiPHKxkRqCh5kZGRcIdTebWpqKmXc7ILQ8SNHjsTa21VVVZU4wUDEXhsO6R06dOga4+gMx9il6enp7zs6diS0OuXyzCFUKpTpy4tZbEtFRcV5tkTh5eXlS9nJlnR3d4+oMDMmmpmZGcIPvTt/OuUGkPIWecrSokWL3Kurq9+JjIz8hO3QpcrKysyNGze2O9oh2EOxYSCil2tMRw1a0mc8uLS0tGTHxsaWcFRtr62tzeUtXrEkr/Z5cHBwKKu7zp0/rcSpr1oDtsg3NzenJSYmys3kYGNj4xYG90Vb9NTIjGJvlb3Wmyzzm7h2yVdjwJosm9A/OFcHcSf2Jyv8V0lJSVO2IeXe6yBe/1aIyDgZZFF5yRo4NW39/f0HWGN/Z1z8wEtSo6paFvyGk6JsUYZ5g6fkVly1FQsKLHwfMAinnARjbxXYawSGTL8u8n1Crval/iKlmJiYVYJdMBuIUB7j+0TEi0RCsIJZPmsck7qBCOHVzSXxJb5PzMhFtQBRm1hUt+KN82DvFd1xW2oGzggNC9QanW55rk817ARugVUmKkMyhpbhBweUIrbFxaNtTlu0trZuB+unSoDjiOCq3dx4v5qVleWtFHKmem5urt+cOXPiwPqNEte40JIGoisWticRfF0p6Cx1pttzLLaphNXfSkzjPCINCLRDppCNnclFsVJxJupgOgi2rc+TECwmROShu7v7z/K5Sz6uyG9nSGDZAaYzYKsyh8cktJRC8rmLz14pHHpKlc+nu84M9bmfn58cwn6w1LdZjxiFUTzIxYFuJsNMwgkMt6yRELxWiYgAg76Uk9wBBtnZnJwcH3k2HUlmJyadRvouB8Ouifq0GlpKZQZZDGT2848Df03lt0VZ7Nra2kqYYmMhkG9uYCtxGesTesQoiMEbDLQ0+VIEqTtsESZ9OyPbDlmx6aONvtbYSkIw2uwRIyFjiXd2k5dwsOnkbulkcnJyvbFNTSlbcbb8qwmh+ez3zuGFEjX6Rlm7iYgBPBNIHL9FzuYNpkPqZFdXVz0DtF9uAOXybPTeyUVuOwAcKmdsBq5vWFhYGqfS1fyXUS1v/jgEfqI0bACN4NSUDhFRdgQpVzy0jryUlTcBUGHkcClFjvZOsl4yxFsBfhHyvyhtOFL/DwvVBPxOGSjxAAAAAElFTkSuQmCC) 25 25, pointer
}

.backatage__video:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 100px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 15px;
    opacity: .5;
    content: attr(data-title);
    text-align: center;
    white-space: nowrap;
    pointer-events: none
}

@media all and (max-width: 1400px) {
    .backatage {
        padding-top: 158px;
        padding-bottom: 166px
    }

    .backatage__video:after {
        font-size: 85px;
        font-weight: 400;
        line-height: 27.3px;
        letter-spacing: 15px
    }
}

.merch-sliders__slider, .news-slider {
    display: flex
}

.rech-sliders__slider > * {
    flex: 1 0 250px
}

.merch-sliders__slider.slick-initialized, .news-slider.slick-initialized {
    display: block
}

@media all and (max-width: 1100px) {
    .backatage {
        padding-top: 141px;
        padding-bottom: 84px
    }

    .backatage__video:after {
        font-size: 60px;
        font-weight: 400;
        line-height: 27.3px;
        letter-spacing: 10.55px
    }
}

@media only screen and (max-width: 750px) {
    .backatage {
        display: none
    }
}

.product-card {
    overflow: hidden;
    padding-bottom: 100px
}

.product-card h3 {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

.product-card .merch-sliders h3 {
    margin-bottom: 55px
}

.product-card .merch-sliders__slider-wrap {
    margin: 0 -15px
}

.prod-card {
    position: relative;
    padding: 60px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 1
}

.prod-card__col {
    width: calc(50% - 15px)
}

.prod-card__col[data-percent] {
    margin-top: 20px
}

.prod-card__col[data-percent]:before {
    z-index: 100;
    display: block;
    content: attr(data-percent);
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #e0c49c;
    font-size: 14px;
    font-weight: 500;
}

.prod-card__col_img {
    padding: 0 50px
}

.prod-card__col_img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: gray;
    opacity: .1;
    z-index: -1
}

.prod-card__btn-wrap {
    margin-top: 40px
}

.prod-card__btn-wrap .btn-style:first-child {
    margin-right: 30px
}

@media all and (max-width: 1400px) {
    .prod-card__btn-wrap {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .prod-card__btn-wrap .btn-style {
        max-width: 350px
    }

    .prod-card__btn-wrap .btn-style:first-child {
        margin-right: 0;
        margin-bottom: 20px
    }
}

.prod-card__preview-title {
    margin-top: 30px;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 7.2px
}

.prod-card__title {
    color: #010101;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1.6px;
    display: inline-block;
    margin-bottom: 20px
}

.prod-card__slider-item {
    background-color: white;
    display: flex
}

.prod-card__slider-item:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    background: gray;
    opacity: .1
}

.prod-card__preview {
    display: block;
    margin: 0 auto;
    height: 0;
    width: 0;
    padding: 50%
}

.prod-card__price-wrap {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.bonus_add{
    margin-bottom: 30px;
    font-size: 16px;

}
.bonus_add_disk{
    border-radius: 50%;
    border: 1px solid black;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.3s;
    cursor: pointer;
    position: relative;
    color: black;
}
.bonus_add_disk_inner{
    position: absolute;
    width: 230px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:white;
    text-align: center;
    padding: 5px;
    bottom: 40px;
    transition-duration: 0.3s;
    opacity: 0;
    pointer-events: none;
}
.bonus_add_disk:hover{
    color: black;
    text-decoration: none;
}
.bonus_add_disk:hover .bonus_add_disk_inner{
    opacity: 1;
    height: 50px;
    pointer-events: auto;
}
.bonus_add_disk:hover:after{
    content: "";
    position: absolute;
    width: 30px;
    height: 20px;
    top: -20px;
}
.bonus_add_disk_inner:after{
    content: "";
    bottom: -10px;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid white; 
    transition-duration: 0.3s;  
}
.bonus_add_disk_inner:hover{
    background: #e0c49c;
}
.bonus_add_disk_inner:hover:after{
    border-top: 10px solid #e0c49c;
}
.bonus_add_disk:hover{
    background: #e0c49c;
}
@media (max-width: 550px) {
    .bonus_add_disk_inner{
        display: none;
    }
}
.prod-card__price {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

.prod-card__price_old {
    color: #999;
    margin-right: 20px;
    text-decoration: line-through
}

.prod-card__brand {
    margin-bottom: 25px;
    text-transform: inherit;
    letter-spacing: 0;
    font-size: 18px
}

.prod-card__brand img {
    display: block;
    max-width: 100%;
    height: auto
}

.prod-card__description {
    margin-top: 30px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.29;
    letter-spacing: .7px
}

.prod-card__description a {
    color: #000;
    text-decoration: underline
}

.prod-color-picker {
    margin: 00px 0;
    display: flex;
    font-size: 16px;
}

.prod-color-picker__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}


.prod-color-picker__select {
    color: #999;
    font-size: 14px
}

.prod-color-picker__item {
    position: relative;
    display: inline;
    font-size: 16px;
    margin: 0 7px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition-duration: 0.3s;
}
.prod-color-picker__item:hover{
    border-bottom: 1px solid black;
}
/*
.prod-color-picker__item:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid #ccc
}
*/
.prod-color-picker__title{
    margin-right: 10px;
}
.prod-card__props{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.prod-color-picker__item.active{
    border-bottom: 1px solid black;
}

.prod-image-picker {
    width: 30px;
    height: 30px
}

.prod-image-picker:before {
    width: 140%;
    height: 140%
}

@media (max-width: 750px) {
    .prod-color-picker {
        display: flex;
        flex-direction: column-reverse;
    }

    .prod-color-picker__title {
        margin: 10px 0;
    }

    .prod-color-picker__wrap {
        order: -1;
        justify-content: center
    }

    .prod-color-picker__item {
        margin: 10px
    }
}

.prod-description {
    margin: 30px 0 110px;
    padding: 0 50px;
}

.prod-description__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.prod-description__col {
    width: calc(70% - 10px)
}

.prod-description__col_text {
    padding-right: 30px
}

.prod-description__title-wrap {
    border-bottom: 1px solid #f7f7f7;
    padding: 10px 0;
    margin-bottom: 25px
}

.prod-description__label {
    font-size: 18px;
    margin-right: 16px;
    color: #999
}

.prod-description__label._mobile {
    position: relative;
    display: none;
    border-top: 1px solid #ccc;
    padding: 12px 6px;
    font-weight: 600;
    text-align: left;
    color: #000;
    transition: ease-out 150ms
}

.prod-description__label._mobile::after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome";
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    height: 100%;
    right: 0;
    top: 0;
    margin-right: 16px;
    transition: 160ms ease-in-out;
}

.prod-description__label._mobile._active {
    padding-left: 0
}

.prod-description__label._mobile._active::after {
    transform: rotate(-180deg)
}

.prod-description__label:hover {
    color: #000
}

.prod-description__label input {
    display: none
}

.prod-description__label span {
    padding: 10px 0
}

.prod-description__label input:checked + span {
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #000
}

.prod-description .vendor-code {
    display: inline-block;
    color: #999;
    font-weight: 400;
    letter-spacing: .8px;
    margin-bottom: 15px
}

.prod-description__text-wrap {
    display: none;
    font-weight: 400;
    line-height: 1.5em
}

.prod-description__text-wrap .show-all {
    display: inline-block;
    color: #000;
    text-decoration: underline;
    margin-top: 20px
}

.prod-description__text-wrap .show-all:hover {
    color: #999;
}

.prod-description__text-wrap._active {
    display: block
}

.prod-description__text-wrap p {
    margin-bottom: 15px
}

.prod-description__text-wrap b, .prod-description__text-wrap strong {
    font-weight: 700
}

.description-slider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.description-slider .object-fit-wrap:after {
    padding-top: 100%
}

.description-slider .play-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .7);
    z-index: 10;
    cursor: pointer
}

.description-slider .play-icon:before {
    content: "\f04b";
    font-family: "Font Awesome";
    font-size: 90px
}

.description-slider .play-icon_small {
    width: 50px;
    height: 50px
}

.description-slider .play-icon_small:before {
    font-size: 20px
}

.description-slider__main-wrap {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: calc(100% - 125px);
    padding: 0;
    border: 1px solid #f1f1f1
}

.description-slider__item {
    position: relative;
    display: none
}

.description-slider__item:first-of-type {
    display: block;
}

.description-slider__item-wrap {
    padding: 7px;
    cursor: pointer;
}

.description-slider__nav-item {
    position: relative;
}

.description-slider__nav-item .object-fit-wrap:after {
    padding-top: 100%
}

.slick-current .description-slider__nav-item {
    position: relative
}

.slick-current .description-slider__nav-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 2px solid #000
}

.description-slider__nav-wrap {
    order: -1;
    padding-right: 25px
}

.description-slider__nav {
    max-width: 80px
}

.description-slider__nav-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.description-slider .slick-prev, .description-slider .slick-next {
    right: auto;
    left: 50%
}

.description-slider .slick-prev:before, .description-slider .slick-next:before {
    font-size: 45px
}

.description-slider .slick-next {
    bottom: -15px;
    top: auto;
    -ms-transform: translate(-50%, 100%) rotate(90deg);
    transform: translate(-50%, 100%) rotate(90deg)
}

.description-slider .slick-prev {
    top: -20px;
    -ms-transform: translate(-50%, -100%) rotate(90deg);
    transform: translate(-50%, -100%) rotate(90deg)
}

.description-slider .ended .slick-next {
    opacity: .5;
    pointer-events: none
}

.description-slider .started .slick-prev {
    opacity: .5;
    pointer-events: none
}

@media all and (max-width: 1300px) {
    .description-slider__nav {
        max-width: 60px
    }

    .prod-card__col_img {
        padding: 0
    }

    .prod-card__col_img:before {
        width: 120vw;
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .prod-card__btn-wrap .btn-style {
        min-width: 200px
    }

    .prod-description {
        margin: 100px 0
    }
}

@media all and (max-width: 1100px) {
    .prod-card__btn-wrap {
        display: -ms-flexbox;
        display: flex
    }

    .prod-card__btn-wrap .btn-style_like {
        padding: 0;
        min-width: 40px
    }

    .prod-description {
        margin: 40px 0
    }

    .prod-description__row {
        display: block
    }

    .prod-description__col {
        width: 100%;
        padding-right: 0
    }

    .prod-description__text-wrap {
        padding-left: 12px;
        padding-right: 12px
    }

    .description-slider {
        padding: 0
    }

    .description-slider__main-wrap {
        padding: 0;
        border: none
    }
}

@media only screen and (max-width: 750px) {
    .prod-description__description {
        border-bottom: 1px solid #ccc
    }

    .prod-description__label._mobile {
        display: block
    }

    .prod-description__title-wrap {
        display: none
    }

    .description-slider__item-wrap {
        display: none
    }

    .description-slider__nav-wrap {
        order: unset;
        padding-right: 0
    }

    .prod-card {
        display: block;
        padding: 0
    }

    .prod-card__col {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center
    }

    .prod-card__col[data-percent]:before {
        bottom: unset;
        top: -40px;
        right: 0;
    }

    .prod-card__props {
        order: -1;
    }

    .prod-card__col_img {
        position: relative;
        padding: 30px 0;
    }

    .prod-card__brand img {
        margin: 0 auto
    }

    .prod-card__title {
        font-size: 26px
    }

    .prod-card__price-wrap {
        -ms-flex-pack: center;
        justify-content: center
    }

    .prod-card .counter-block {
        margin: 0 auto
    }

    .prod-card__btn-wrap {
        display: block
    }

    .prod-card__btn-wrap .btn-style {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 15px
    }

    .prod-card__btn-wrap .btn-style_like {
        padding: 0 20px;
        min-width: 200px
    }

    .prod-card__btn-wrap .btn-style:first-child {
        margin-right: 0
    }

    .prod-card ~ .merch-sliders {
        text-align: center
    }

    .prod-card ~ .merch-sliders .merch-preview {
        padding-left: 10px;
        padding-right: 10px
    }

    .prod-description__col_text {
        padding: 0
    }

    .prod-description__text-wrap {
        padding-left: 0;
        font-size: 14px;
        text-align: left;
        padding-right: 0;
        margin-bottom: 20px
    }

    .description-slider {
        display: block
    }

    .description-slider__nav {
        width: 100%;
        max-width: 170px;
        margin: 30px auto 0
    }

    .description-slider__main-wrap {
        width: 100%;
        padding: 0
    }

    .description-slider .slick-prev, .description-slider .slick-next {
        top: 50%
    }

    .description-slider .slick-next {
        left: auto;
        right: -5px;
        -ms-transform: translate(100%, -50%);
        transform: translate(100%, -50%)
    }

    .description-slider .slick-prev {
        left: -5px;
        right: auto;
        -ms-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%)
    }

    .description-slider .play-icon {
        width: 75px;
        height: 75px
    }

    .description-slider .play-icon:before {
        font-size: 40px
    }

    .description-slider .play-icon_small {
        width: 45px;
        height: 45px
    }

    .description-slider .play-icon_small:before {
        font-size: 20px
    }
    .prod-description {
        padding: 0 10px;
    }
}

.cart-section {
    padding: 15px 0 160px
}

.cart-section .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start
}

.cart-section__col_left {
    width: calc(100% - 370px)
}

.cart-section__col_right {
    width: 300px;
    padding-top: 3px
}

.cart-section__title {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-right: 40px
}

.cart-section__title:after {
    content: attr(data-count);
    position: absolute;
    right: 0;
    top: 42%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #e8c69b;
    border-radius: 50%;
    width: 32px;
    height: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: Arial;
    padding-top: 2px
}

.cart-section__item {
    padding: 36px 30px 38px;
    margin-bottom: 30px
}

.cart-section__item:last-child {
    margin-bottom: 0
}

.cart-section__item_free-shipping {
    background-color: #fcf2e6
}

.cart-section__item_price {
    background-color: #fbfbfb
}

.cart-section__text {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: .8px
}

.cart-section__text_link {
    margin-top: 10px;
    text-decoration: underline
}

.cart-section__item-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: .8px
}

.cart-section__item-title:after {
    content: attr(data-count);
    text-transform: none
}

.cart-section__total {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 30px;
    font-size: 20px;
    letter-spacing: 1.2px;
    font-weight: 500
}

.cart-section__total:after {
    content: attr(data-cost);
    font-size: 20px;
    letter-spacing: 1.4px
}

.cart-section .btn-style {
    width: 100%
}

@media all and (max-width: 1400px) {
    .cart-section .container {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        position: relative
    }

    .cart-section__col_left {
        width: 100%
    }

    .cart-section__col_right {
        width: 100%
    }

    .cart-section__item_free-shipping {
        padding: 24px 30px 23px;
        width: 100%;
        position: absolute;
        top: 73px;
        left: 0;
        text-align: center;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .cart-section__item_price {
        padding: 49px 80px 60px;
        max-width: 670px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 80px
    }

    .cart-section__text {
        width: auto
    }

    .cart-section__text_link {
        margin-left: 13px;
        margin-top: 0;
        white-space: nowrap
    }

    .cart-section__total {
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 35px
    }

    .cart-section__total:after {
        margin-left: 20px
    }

    .cart-section .btn-style_black {
        width: 300px;
        margin-top: 70px;
        margin-left: auto;
        margin-right: auto;
        display: block
    }
}

@media all and (max-width: 1100px) {
    .cart-section__title {
        text-align: center;
        display: inline-block
    }

    .cart-section__table {
        text-align: left
    }

    .cart-section__col_left {
        text-align: center
    }
}

@media only screen and (max-width: 750px) {
    .cart-section__text {
        display: inline
    }

    .cart-section__title:after {
        line-height: 30px;
        position: relative;
        display: inline-block;
        top: 0;
        right: -10px;
        vertical-align: middle;
        -ms-transform: translateY(-15%);
        transform: translateY(-15%)
    }

    .cart-section__item_free-shipping {
        display: block
    }

    .cart-section__item_price {
        padding: 30px 20px 20px
    }
}

.order-list {
    margin-top: 32px
}

.order-list__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 14px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.order-list__item:last-child {
    margin-bottom: 0
}

.order-list__type, .order-list__cost {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.order-list__separator {
    border-bottom: 1px dotted #bebebe;
    width: 100%
}

@media only screen and (max-width: 750px) {
    .order-list__type, .order-list__cost {
        font-size: 14px
    }
}

.cart-discount {
    margin-top: 49px
}

.cart-discount__item {
    margin-top: 16px
}

.cart-discount__item:first-item {
    margin-top: 0
}

.cart-discount .btn-style {
    background: #eee
}

@media all and (max-width: 1400px) {
    .cart-discount__item {
        margin-top: 40px
    }

    .cart-discount__item:nth-child(1) {
        margin-top: 64px
    }
}

.discount-form__btn {
    cursor: pointer;
    width: 100%
}

.discount-form .input-style__input::-webkit-input-placeholder {
    opacity: 0
}

.discount-form .input-style__input:-ms-input-placeholder {
    opacity: 0
}

.discount-form .input-style__input::placeholder {
    opacity: 0
}

.discount-form__title {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 10px 27px 10px 0;
    letter-spacing: .8px
}

.discount-form__dropdown {
    margin-top: 15px
}

.discount-form .btn-style {
    min-width: 0;
    margin-top: 20px
}

@media all and (max-width: 1400px) {
    .discount-form__dropdown {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .discount-form__title {
        display: none
    }

    .discount-form .btn-style {
        margin-top: 0;
        background-color: #eee;
        width: 150px
    }

    .discount-form .input-style__input::-webkit-input-placeholder {
        opacity: 1
    }

    .discount-form .input-style__input:-ms-input-placeholder {
        opacity: 1
    }

    .discount-form .input-style__input::placeholder {
        opacity: 1
    }

    .discount-form .input-style__input:focus {
        border: 1px solid #bebebe
    }
}

@media only screen and (max-width: 750px) {
    .discount-form__dropdown {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: stretch;
        align-items: stretch
    }

    .discount-form .btn-style {
        margin-top: 15px;
        width: auto
    }
}

.cart-table {
    display: table;
    width: 100%
}

.cart-table__row {
    display: table-row
}

.cart-table__item {
    display: table-cell;
    vertical-align: middle;
    padding: 10px
}

.cart-table__item:first-child {
    padding-left: 0
}

.cart-table__item:last-child {
    width: 18px;
    padding-right: 0
}

.cart-table__item_td {
    border-bottom: 1px solid #eee;
    padding-top: 40px;
    padding-bottom: 27px
}

.cart-table__title {
    color: #999;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .8px
}

.cart-table__des {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px
}

.cart-table__name, .cart-table__des {
    max-width: 250px
}

.cart-table__img-wrap {
    width: 100px;
    height: 100px
}

.cart-table__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    font-family: "object-fit: contain; object-position: center"
}

.cart-table__price {
    font-size: 18px
}

/*.cart-table__price:after{content:" " attr(data-currency)}*/
.cart-table__price._base {
    font-size: 14px;
    text-decoration: line-through;
    color: #666;
}

.cart-table .cross-btn {
    width: 18px;
    height: 18px
}

.cart-table .cross-btn:before, .cart-table .cross-btn:after {
    width: 50%
}

.cart-table__present {
    display: inline-block;
    vertical-align: top;
    background-color: #eee;
    padding: 5px 9px;
    color: #010101;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

@media all and (max-width: 1100px) {
    .cart-table__item_td {
        vertical-align: top
    }

    .cart-table__item_td:not(:first-child) {
        padding-top: 50px
    }

    .cart-table__img-wrap {
        width: 90px;
        height: 90px
    }

    .cart-table .counter-block {
        height: 30px;
        margin-top: -5px
    }

    .cart-table__name, .cart-table__des {
        max-width: 200px
    }
}

@media only screen and (max-width: 750px) {
    .cart-table__item_price-one {
        display: none
    }

    .cart-table__item_td {
        border-bottom: none;
        padding-bottom: 33px
    }

    .cart-table__item_td:not(:first-child) {
        padding-top: 47px
    }

    .cart-table__item_td:nth-child(2) {
        width: calc(100% - 100px)
    }

    .cart-table__item_td:nth-child(4) {
        margin-left: 100px
    }

    .cart-table__item_td:nth-child(4), .cart-table__item_td:nth-child(5) {
        padding-top: 0;
        padding-bottom: 40px
    }

    .cart-table__item_td:last-child {
        position: absolute;
        right: 0
    }

    .cart-table__row {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: 1px solid #eee
    }

    .cart-table__row:first-child {
        display: none
    }

    .cart-table__name {
        margin-bottom: 8px
    }

    .cart-table .cross-btn {
        width: 18px;
        height: 18px
    }

    .cart-table .cross-btn:before, .cart-table .cross-btn:after {
        width: 100%
    }
}

.search-section {
    padding-top: 10px
}

.search-section__search-results {
    visibility: hidden;
    margin-top: 0px;
    color: #999;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .9px
}

.search-section__search-results span {
    font-style: italic;
    text-transform: uppercase
}

@media (min-width: 1101px) {
    .search-result__dropdown {
        display: none
    }
}

@media only screen and (max-width: 750px) {
    .search-section__search-results {
        font-size: 14px
    }
}

.search-catalog {
    position: relative;
    border-bottom: 1px solid #000
}

.search-catalog__label {
    display: block;
    padding: 18px 30px 18px 7px
}

.search-catalog__input {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px 3px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4.8px
}

.search-catalog .cross-btn {
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: none !important
}

.search-catalog .cross-btn:before, .search-catalog .cross-btn:after {
    background-color: #8b8b8b !important;
    width: 50%
}

.search-results {
    padding: 40px 0 116px
}

.search-results__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 49px
}

.search-results__row_top {
    -ms-flex-align: start;
    align-items: flex-start
}

.search-results__col_left {
    width: 309px;
    padding-top: 9px
}

.search-results__col_right {
    width: calc(100% - 329px)
}

.search-results__col_flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.search-results__title {
    color: #999
}

.search-results__title_inrow {
    margin-bottom: 49px
}

.search-results__title:after {
    content: attr(data-count);
    margin-left: 20px
}

.search-results .pagination {
    margin-top: 97px
}

@media all and (max-width: 1400px) {
    .search-results__col_flex {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start
    }

    .search-results__col_left {
        padding-top: 0
    }

    .search-results__row {
        margin-bottom: 44px
    }

    .search-results__row_filter {
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .search-results__title_inrow {
        margin-bottom: 36px
    }
}

@media all and (max-width: 1100px) {
    .search-results {
        padding: 0
    }

    .search-results__row {
        margin-bottom: 29px
    }

    .search-results__row_top {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .search-results__row_filter {
        margin-bottom: 55px
    }

    .search-results__col_left {
        width: 100%;
        text-align: left
    }

    .search-results__col_left .search-results__row, .search-results__col_left .search-category-list {
        display: none
    }

    .search-results__col_left .extended-filter__item {
        margin-bottom: 0
    }

    .search-results__col_right {
        width: 100%
    }
}

@media only screen and (max-width: 750px) {
    .search-results__row_filter {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border-top: 1px solid #dedede;
        border-bottom: 1px solid #dedede;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%
    }

    .search-results__row_filter .params {
        display: none
    }
}

.search-results .filter__top {
    justify-content: flex-end
}

.filtermarker {
    display: none
}

@media only screen and (max-width: 750px) {
    .filtermarker {
        display: -ms-flexbox;
        display: flex;
        font-size: 12px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 2.4px;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer
    }

    .filtermarker:before {
        font-size: 24px;
        margin-right: 26px
    }
}

.search-category-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.search-category-list__item {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: start;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 25px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .9px;
    width: 100%
}

.search-category-list__item:last-child {
    margin-bottom: 0
}

.search-category-list__number {
    color: #999;
    margin: auto 5px
}

@media all and (max-width: 1100px) {
    .search-category-list {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: 190px;
        overflow: auto
    }

    .search-category-list__item {
        font-size: 16px
    }
}

.search-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px -15px 0
}

.search-list .merch-preview {
    width: calc(100% / 3 - 30px);
    margin: 60px 15px 0;
    position: relative;
}

@media all and (max-width: 1400px) {
    .search-list .merch-preview {
        width: calc(100% / 2 - 30px)
    }
}

.search-no-results {
    padding: 100px 0
}

.search-no-results .object-fit-wrap {
    max-width: 564px;
    margin: 0 auto
}

.search-no-results .object-fit-wrap:after {
    padding-top: 100%
}

.instagram {
    padding-top: 32px;
    padding-bottom: 66px
}

.instagram h3 {
    text-align: center;
    margin-bottom: 70px;
    margin-bottom: 66px
}

.instagram__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.instagram__item {
    width: calc((100% - 90px) / 4);
    padding-bottom: calc((100% - 90px) / 4);
    position: relative
}

.instagram__item .object-fit-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media all and (max-width: 1400px) {
    .instagram h3 {
        margin-bottom: 49px
    }

    .instagram__item {
        width: calc((100% - 60px) / 3);
        padding-bottom: calc((100% - 60px) / 3)
    }

    .instagram__item:last-child {
        display: none
    }
}

@media all and (max-width: 1100px) {
    .instagram {
        padding-top: 62px
    }

    .instagram h3 {
        letter-spacing: 7.1px;
        margin-bottom: 57px
    }
}

@media only screen and (max-width: 750px) {
    .instagram {
        padding-bottom: 30px
    }

    .instagram__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .instagram__item {
        margin-bottom: 5px;
        width: calc((100% - 5px) / 2);
        padding-bottom: calc((100% - 5px) / 2)
    }

    .instagram__item:last-child {
        display: block
    }

    .instagram h3 {
        margin-bottom: 42px
    }
}

.bottom-form {
    margin-top: 76px;
    margin-bottom: 87px
}

.bottom-form__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.bottom-form__item {
    padding: 70px 90px 90px 90px;
    text-align: center;
    width: calc((100% - 30px) / 2);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.bottom-form__item:nth-child(2n+1) {
    background-color: #ededed
}

.bottom-form__item:nth-child(2n+1) h4 {
    margin-bottom: 20px
}

.bottom-form__item h4 {
    color: #000;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 5.4px;
    margin-bottom: 55px
}

.bottom-form__item p {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4.9px
}

.bottom-form__phone {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 7.67px;
    margin-bottom: 20px
}

.bottom-form__mail {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4.2px
}

@media all and (max-width: 1400px) {
    .bottom-form {
        margin-top: 117px
    }

    .bottom-form__item {
        padding: 70px 67px 90px 67px
    }

    .bottom-form__item:nth-child(2n+1) {
        width: 57%
    }

    .bottom-form__item:nth-child(2n) {
        width: 43%
    }
}

@media all and (max-width: 1100px) {
    .bottom-form {
        margin-top: 83px;
        margin-bottom: 15px
    }

    .bottom-form__inner {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .bottom-form__item {
        padding: 61px 67px 90px 67px
    }

    .bottom-form__item:nth-child(2n+1) {
        width: 100%
    }

    .bottom-form__item:nth-child(2n) {
        width: 100%;
        padding-top: 90px
    }

    .bottom-form__item:nth-child(2n) h4 {
        margin-bottom: 42px
    }
}

@media only screen and (max-width: 750px) {
    .bottom-form__item {
        padding: 60px 20px
    }

    .bottom-form__item h4 {
        font-size: 24px;
        font-weight: 400;
        line-height: 36px;
        text-transform: uppercase;
        letter-spacing: 2.41px
    }

    .bottom-form__item p {
        padding-left: 20px;
        padding-right: 20px
    }

    .bottom-form__item:first-child {
        position: relative
    }

    .bottom-form__item:first-child:before, .bottom-form__item:first-child:after {
        top: 0;
        position: absolute;
        background: inherit;
        width: 100vw;
        height: 100%;
        content: ''
    }

    .bottom-form__item:first-child:before {
        left: -100vw
    }

    .bottom-form__item:first-child:after {
        right: -100vw
    }

    .bottom-form__item:nth-child(2n) {
        width: 100%;
        padding-top: 60px
    }

    .bottom-form__item:nth-child(2n) h4 {
        margin-bottom: 30px
    }

    .bottom-form__phone {
        margin-bottom: 5px
    }
}

.subscibe {
    border-bottom: 3px solid #000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 19px;
    padding-left: 11px;
    padding-right: 11px;
    margin-top: 66px
}

.subscibe__input {
    background: none;
    font-size: 11px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    min-width: 300px;
    letter-spacing: 4.99px
}

.subscibe__button {
    background: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 2px
}

@media all and (max-width: 1100px) {
    .subscibe {
        margin-top: 75px
    }

    .subscibe__input {
        min-width: 397px
    }
}

@media only screen and (max-width: 750px) {
    .subscibe {
        margin-top: 39px;
        border-bottom: none;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .subscibe__input {
        width: 100%;
        max-width: 320px;
        min-width: 320px;
        border-bottom: 3px solid #000;
        margin-bottom: 50px;
        text-align: center;
        line-height: 48px
    }

    .subscibe__button {
        height: 60px;
        width: 100%;
        max-width: 320px;
        min-width: 320px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 5.6px;
        color: #fff;
        background-color: #000
    }
}

.personal-area {
    margin-bottom: 60px
}

.personal-area h1 {
    margin-bottom: 64px
}

.personal-area__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start
}

.personal-area__sidebar {
    width: 23.3%;
    background-color: #f7f7f7;
    position: relative;
    padding: 98px 20px 60px 20px;
    text-align: center
}

.personal-area__content {
    width: 74.4%;
    position: relative;
    padding: 80px 20px 40px;
    text-align: center
}

.personal-area__content .container {
    padding: 0
}

.personal-area__content .catalog-section__filter {
    background-color: transparent
}

.personal-area__localnav {
    position: absolute;
    width: 1290px;
    top: -42px;
    left: 0
}

@media all and (max-width: 1400px) {
    .personal-area__localnav {
        width: 1064px
    }
}

@media all and (max-width: 1100px) {
    .personal-area .container {
        max-width: 100%
    }

    .personal-area__localnav {
        width: calc(100vw - 40px)
    }
}

@media all and (max-width: 1000px) {
    .personal-area .container {
        max-width: 808px
    }

    .personal-area h1 {
        text-align: center;
        margin-bottom: 23px
    }

    .personal-area__inner {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: center;
        align-items: center
    }

    .personal-area__localnav {
        width: 768px;
        top: auto;
        bottom: -42px;
        max-width: 100%
    }

    .personal-area__localnav .local-nav__item {
        letter-spacing: 1px;
        margin: 10px
    }

    .personal-area__sidebar {
        width: 100%;
        padding-top: 66px;
        padding-bottom: 46px
    }

    .personal-area__sidebar:before, .personal-area__sidebar:after {
        height: 100%;
        width: 100vw;
        background: inherit;
        top: 0;
        position: absolute;
        content: ''
    }

    .personal-area__sidebar:before {
        left: -100vw
    }

    .personal-area__sidebar:after {
        right: -100vw
    }

    .personal-area__content {
        width: 100%
    }

    .personal-area .link-style_userdata {
        margin-bottom: 50px
    }
}

@media only screen and (max-width: 1000px) {
    .personal-area__localnav {
        z-index: 1
    }

    .local-nav__item:before {
        left: -14px
    }
}

@media only screen and (max-width: 750px) {
    .personal-area__content {
        padding: 0
    }

    .personal-area .container {
        max-width: 400px
    }

    .personal-area__localnav .local-nav {
        flex-direction: column;
        align-items: center;
        letter-spacing: 1px
    }

    .personal-area h1 {
        font-size: 24px;
        letter-spacing: 2.4px
    }

    .personal-area__localnav {
        top: 100%;
        -ms-transform: translate(0, -42px);
        transform: translate(0, -42px)
    }

    .personal-area__sidebar {
        margin-bottom: 221px
    }
}

.avatar {
    margin-bottom: 34px
}

.avatar__img {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    margin-bottom: 20px
}

.avatar__literal {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #c8c8c8;
    font-size: 36px;
    font-weight: 400;
    line-height: 26px
}

.avatar__input {
    position: relative;
    display: inline-block;
    border-bottom: 2px dashed #000;
    cursor: pointer
}

.avatar__input input {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    z-index: 2;
    top: 0;
    left: 0
}

.avatar__input:before {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    line-height: 20.96px;
    letter-spacing: .6px;
    color: #000;
    content: attr(data-content)
}

@media all and (max-width: 1000px) {
    .avatar {
        position: relative;
        margin-bottom: 28px
    }

    .avatar__input {
        position: absolute;
        width: 80px;
        height: 80px;
        left: 50%;
        top: 0;
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        border-radius: 50%;
        border: none;
        font-size: 0
    }

    .avatar__input:before {
        font: inherit
    }

    .avatar__literal {
        font-size: 0
    }

    .avatar__literal:before {
        content: '+';
        font-size: 50px;
        line-height: 1
    }
}

.personal-userinfo__name {
    font-size: 16px;
    font-weight: 700;
    line-height: 25.96px;
    letter-spacing: 1px;
    color: #000
}

.personal-userinfo__date {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .6px;
    color: #a7a7a7;
    margin-bottom: 10px
}

.personal-userinfo__ball {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 29px;
    margin-bottom: 21px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .7px
}

.personal-userinfo__ball span {
    font-size: 24px;
    letter-spacing: 1.2px;
    margin-bottom: 16px
}

.personal-userinfo__active_orders {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 21px;
    margin-bottom: 33px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .7px
}

.personal-userinfo__active_orders span {
    font-size: 24px;
    letter-spacing: 1.2px;
    margin-bottom: 11px
}

@media all and (max-width: 1000px) {
    .personal-userinfo__detail {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        max-width: 500px;
        border-top: 1px solid #dedede;
        padding-top: 28px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 22px
    }

    .personal-userinfo__ball {
        margin-right: 5%;
        margin-top: 0;
        margin-bottom: 25px
    }

    .personal-userinfo__active_orders {
        margin-left: 5%;
        margin-top: 0;
        margin-bottom: 25px
    }

    .personal-userinfo__active_orders span {
        margin-bottom: 16px
    }

    .personal-userinfo__name {
        font-size: 24px;
        letter-spacing: 1.2px;
        margin-bottom: 8px
    }

    .personal-userinfo__date {
        font-size: 16px;
        letter-spacing: .8px
    }
}

@media only screen and (max-width: 750px) {
    .personal-userinfo__ball {
        margin-right: 2.5%;
        white-space: nowrap;
    }

    .personal-userinfo__active, .personal-userinfo__ball {
        font-size: 14px;
        letter-spacing: 0;
    }

    .personal-userinfo__active_orders {
        margin-left: 2.5%;
        white-space: nowrap
    }
}

.formblock {
    background-color: #f7f7f7;
    padding: 70px;
    margin: 50px 0;
    text-align: center;
    position: relative
}

.formblock h2 {
    font-size: 24px;
    margin-bottom: 41px;
    letter-spacing: 1px
}

.formblock h3 {
    text-align: left;
    margin-bottom: 21px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .9px;
    color: #999
}

.formblock p {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.formblock__parth {
    margin-bottom: 67px
}

.formblock__parth_new {
    display: none
}

.formblock__parth_center {
    text-align: center
}

.formblock__parth_center h3 {
    text-align: center
}

.formblock__action-btn {
    position: absolute;
    top: 70px;
    right: 115px;
    border-bottom: 1.5px dashed #000;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .6px;
    line-height: 17px;
    cursor: pointer
}

@media all and (max-width: 1400px) {
    .formblock {
        padding: 40px
    }
}

@media all and (max-width: 1000px) {
    .formblock {
        margin-bottom: 30px
    }
}

@media only screen and (max-width: 750px) {
    .formblock {
        margin-top: 0;
        padding: 20px;
        position: relative
    }

    .formblock__action-btn {
        top: auto;
        bottom: 30px;
        right: 31px
    }

    .formblock_orderlist {
        padding-left: 0;
        padding-right: 0
    }

    .formblock .back-in-title {
        display: none
    }
}

.personal-order-list__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px 15%;
    border-top: 1px solid #dedede
}

.personal-order-list__item:last-child {
    border-bottom: 1px solid #dedede
}

.personal-order-list__item-left {
    text-align: left
}

.personal-order-list__item-right {
    text-align: right
}

.personal-order-list__order-number {
    display: block;
    color: #000;
    font-size: 20px;
    line-height: 1.3
}

.personal-order-list__order-date {
    display: block;
    font-size: 16px;
    color: #999;
    line-height: 1.625
}

.personal-order-list__order-price {
    display: block;
    color: #000;
    font-size: 20px;
    line-height: 1.3
}

.personal-order-list__order-status {
    display: block;
    font-size: 16px;
    line-height: 1.625;
    color: #999
}

.personal-order-detail__pay-btn {
    display: block;
    letter-spacing: 0.16em;
    font-size: 14px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    padding: 8px 16px;
}

.personal-order-list__order-status_processing {
    color: #e6c396
}

.personal-order-list__order-status_canceled {
    font-style: italic
}

@media only screen and (max-width: 750px) {
    .personal-order-list {
        padding-left: 0;
        padding-right: 0
    }

    .personal-order-list__item {
        padding-left: 40px;
        padding-right: 40px
    }
}

.btn-style_order-more {
    position: relative;
    top: 100px
}

.personal-order-detail h2 {
    letter-spacing: 1.2px;
    margin-bottom: 37px
}

.personal-order-detail h2 span {
    color: #999;
    text-transform: none;
    margin-left: 5px
}

.personal-order-detail__status {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .9px;
    margin-bottom: 49px
}

.personal-order-detail__status span {
    margin-left: 5px
}

.personal-order-detail__status_processing span {
    color: #e6c396
}

.personal-order-detail__status_canceled span {
    font-style: italic
}

.personal-order-detail__detail-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 14px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .9px
}

.personal-order-detail__detail-item_comment {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 39px;
    margin-bottom: 39px;
    border-bottom: 1px solid #dedede
}

.personal-order-detail__detail-item_comment .personal-order-detail__detail-name {
    margin-bottom: 20px
}

.personal-order-detail__detail-item_comment .personal-order-detail__separator {
    display: none
}

.personal-order-detail__detail-item_comment .personal-order-detail__detail-value {
    min-height: 75px;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-bottom: 10px
}

.personal-order-detail__detail-name {
    color: #999;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.personal-order-detail__separator {
    background-image: linear-gradient(to right, #999 10%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 14px 3px;
    background-repeat: repeat-x;
    height: 3px;
    width: 100%;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px
}

.personal-order-detail__detail-value {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.personal-order-detail__total {
    font-size: 28px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 1.4px;
    text-align: right;
    margin-top: 55px
}

.personal-order-detail__total span {
    font-size: 24px;
    letter-spacing: 1.2px;
    display: inline-block;
    margin-right: 20px
}

@media only screen and (max-width: 750px) {
    .personal-order-detail .back-in-title {
        display: none
    }

    .personal-order-detail__title span {
        display: block
    }

    .personal-order-detail__detail-value {
        -ms-flex-negative: 1;
        flex-shrink: 1;
        max-width: 59%;
        text-align: right;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .personal-order-detail__separator {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: auto;
        margin-left: 3px;
        margin-right: 3px;
        margin-top: 11px
    }

    .personal-order-detail__detail-item {
        font-size: 15px;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .personal-order-detail__detail-item_comment .personal-order-detail__detail-value {
        max-width: none
    }

    .personal-order-detail__status {
        font-size: 15px
    }
}

.moreform {
    display: none;
    text-align: center
}

.moreform .btn-style {
    margin-top: 80px
}

@media only screen and (max-width: 750px) {
    .moreform {
        display: block
    }
}

.favorite {
    background-color: #f7f7f7;
    padding: 70px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative
}

.favorite:nth-child(1) {
    padding-top: 108px
}

.favorite:last-child {
    margin-bottom: 0
}

.favorite h2 {
    font-size: 24px;
    margin-bottom: 50px
}

.favorite h2 span {
    margin-left: 15px;
    color: #999
}

.favorite__filter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 34px
}

.favorite__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.favorite__inner .merch-preview {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
    margin-bottom: 75px
}

.favorite__inner .merch-preview:nth-child(3n) {
    margin-right: 0
}

@media all and (max-width: 1400px) {
    .favorite__inner {
        padding-left: 40px;
        padding-right: 40px;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .favorite__inner .merch-preview {
        width: calc((100% - 35px) / 2);
        margin-right: 0
    }

    .favorite__filter .params {
        margin-left: 0
    }

    .favorite__filter .params:nth-child(2) {
        margin-left: 40px
    }

    .favorite__filter .params:nth-child(2) .params__title {
        display: none
    }
}

@media all and (max-width: 1100px) {
    .favorite__filter {
        padding-left: 40px;
        padding-right: 40px;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media only screen and (max-width: 750px) {
    .favorite {
        background: none
    }

    .favorite__filter {
        padding-left: 5px;
        padding-right: 5px;
        -ms-flex-pack: center;
        justify-content: center
    }

    .favorite__filter .params .params__title {
        font-size: 12px;
        letter-spacing: 1.2px
    }

    .favorite__filter .params:nth-child(1) {
        display: none
    }

    .favorite__filter .params:nth-child(2) {
        margin-left: 0
    }

    .favorite__filter .params:nth-child(2) .params__title {
        display: block
    }

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

    .favorite__inner .merch-preview {
        width: 100%;
        margin-right: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #dedede;
        margin-bottom: 0
    }

    .favorite__inner .merch-preview__img {
        background: none;
        height: 90px;
        width: 90px;
        min-width: 90px;
        min-height: 90px;
        margin-right: 10px
    }

    .favorite__inner .merch-preview__img img {
        max-width: 100%;
        max-height: 100%
    }

    .favorite__inner .merch-preview__label {
        display: none
    }

    .favorite__inner .merch-preview__title {
        margin-top: 0;
        font-size: 18px;
        text-align: left
    }

    .favorite__inner .merch-preview__description {
        text-align: left;
        font-size: 14px
    }

    .favorite__inner .merch-preview__price-container {
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .favorite__inner .merch-preview__remove-favorite {
        opacity: 1;
        width: 16px;
        height: 16px;
        padding: 0;
        font-size: 0;
        top: -19px;
        left: 266px;
        bottom: auto;
        background: none
    }

    .favorite__inner .merch-preview__remove-favorite:before, .favorite__inner .merch-preview__remove-favorite:after {
        width: 125%;
        height: 1px;
        content: '';
        display: block;
        top: 50%;
        left: 50%;
        background-color: #000;
        position: absolute
    }

    .favorite__inner .merch-preview__remove-favorite:before {
        -ms-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg)
    }

    .favorite__inner .merch-preview__remove-favorite:after {
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
        transform: translate(-50%, -50%) rotate(-45deg)
    }

    .favorite .pagination {
        display: none
    }
}

.bonusblock {
    background-color: #f7f7f7;
    padding: 70px;
    text-align: center;
    margin-bottom: 40px;
    position: relative
}

.bonusblock:nth-child(1) {
    padding-top: 108px
}

.bonusblock:last-child {
    margin-bottom: 0
}

.bonusblock h2 {
    font-size: 24px;
    margin-bottom: 50px
}

.bonusblock__card {
    position: relative;
    width: 100%;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    background-color: #fff;
    box-shadow: 9px 16px 16px rgba(0, 0, 0, .05);
    background-image: url(../images/v.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%
}

.bonusblock__card:before {
    display: block;
    width: 100%;
    padding-bottom: 61%;
    position: relative;
    content: ''
}

.bonusblock__number-card {
    position: absolute;
    left: 50%;
    bottom: 20%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px
}

.bonusblock__inner {
    padding-left: 14.5%;
    padding-right: 14.5%
}

.bonusblock__card-detail {
    margin-bottom: 64px
}

.bonusblock__detail-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 14px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px
}

.bonusblock__detail-name {
    color: #000;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.bonusblock__detail-separator {
    background-image: linear-gradient(to right, #999 10%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 14px 3px;
    background-repeat: repeat-x;
    height: 3px;
    width: 100%;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px
}

.bonusblock__detail-value {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.bonusblock__links a {
    display: inline-block;
    margin-left: 7.6%;
    margin-right: 7.6%;
    font-size: 14.02px;
    color: #000;
    line-height: 1.7;
    border-bottom: 1px dashed #000
}

.bonusblock__message {
    font-size: 14px;
    color: #999;
    margin-bottom: 58px
}

.bonusblock__btn-block .btn-style {
    margin-left: 15px;
    margin-right: 15px
}

.bonusblock__new-card-number {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 26px;
    margin-bottom: 96px
}

.bonusblock__new-card-number span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .7px;
    line-height: 20px;
    color: #999;
    display: block;
    margin-bottom: 13px
}

@media all and (max-width: 1400px) {
    .bonusblock__inner {
        padding-left: 0;
        padding-right: 0
    }
}

@media only screen and (max-width: 750px) {
    .bonusblock {
        padding-left: 0;
        padding-right: 0;
        position: relative
    }

    .bonusblock:before, .bonusblock:after {
        position: absolute;
        top: 0;
        width: 100vw;
        height: 100%;
        background: inherit;
        content: ''
    }

    .bonusblock:before {
        left: -100vw
    }

    .bonusblock:after {
        right: -100vw
    }

    .bonusblock:nth-child(1) {
        padding-top: 90px
    }

    .bonusblock__links a:first-child {
        margin-bottom: 34px
    }

    .bonusblock .back-in-title {
        display: none
    }

    .bonusblock .form__item {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: center;
        align-items: center
    }

    .bonusblock .form__item .btn-style {
        width: 100%;
        margin-top: 30px
    }

    .bonusblock .btn-style {
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }

    .bonusblock__btn-block .btn-style:nth-child(2) {
        margin-top: 20px
    }
}

.back-in-title {
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #000
}

.cart-empty {
    padding: 30px 0 150px
}

.cart-empty .object-fit-wrap {
    max-width: 401px;
    margin: 0 auto
}

.cart-empty .object-fit-wrap:after {
    padding-top: 105%
}

.not-found {
    padding: 100px 0 100px
}

.not-found .object-fit-wrap {
    max-width: 552px;
    margin: 0 auto
}

.not-found .object-fit-wrap:after {
    padding-top: 87.32%
}

@media only screen and (max-width: 500px) {
    .not-found .container {
        max-width: 320px
    }
}

.thanks {
    padding: 21px 0 100px;
    text-align: center
}

.thanks__img-wrap {
    width: 100%;
    max-width: 568px;
    margin: 0 auto
}

.thanks__title {
    margin-top: -12px;
    font-size: 44px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.2px
}

.thanks__subtitle {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.8px
}

.thanks__text-block {
    margin-top: 52px
}

.thanks__text {
    margin-bottom: 4px
}

.thanks__text:last-child {
    margin-bottom: 0
}

.thanks__text a {
    color: #000;
    text-decoration: underline
}

@media all and (max-width: 1100px) {
    .thanks__text-block {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 45px
    }

    .thanks__text {
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 750px) {
    .thanks {
        padding: 0 0 0
    }

    .thanks__img-wrap {
        max-width: 180px
    }

    .thanks__img-wrap img {
        max-width: 100%;
    }

    .thanks__title {
        margin-top: 5px;
        font-size: 22px
    }

    .thanks__subtitle {
        font-size: 11px
    }

    .thanks__text {
        font-size: 14px
    }

    .thanks__text-block {
        max-width: 320px;
        margin-top: 24px
    }
}

.order-number {
    display: inline-block;
    vertical-align: top;
    background-color: #f3f3f3;
    padding: 6px 20px 13px;
    margin-top: 32px
}

.order-number__number {
    margin-top: 2px;
    font-size: 24px
}
.thanks__text-block>a {
    background: #2d1911;
    color: #fff;
    display: block;
    margin: 20px auto;
    padding: 18px 70px;
    max-width: 350px;
}

@media all and (max-width: 1100px) {
    .order-number {
        margin-top: 52px
    }
}

@media only screen and (max-width: 750px) {
    .order-number {
        margin-top: 20px
    }

    .order-number__text {
        font-size: 12px
    }

    .order-number__number {
        margin-top: 5px;
        font-size: 21px
    }
}

.plug {
    height: calc(100vh - 70px);
    padding: 30px 0 85px;
    text-align: center
}

.plug .container {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.plug .container:before, .plug .container:after {
    content: "";
    position: absolute;
    display: block;
    background-size: 100%
}

.plug .container:before {
    left: -300px;
    top: -80px;
    background: url(../images/bg/plug-bg1.jpg) no-repeat center;
    width: 558px;
    height: 768px
}

.plug .container:after {
    right: -300px;
    bottom: 2px;
    background: url(../images/bg/plug-bg2.jpg) no-repeat center;
    width: 558px;
    height: 768px
}

.plug__logo-wrapper, .plug__wrapper {
    z-index: 1;
    position: relative
}

.plug__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column
}

.plug__logo-wrapper {
    width: 110px;
    height: 108px
}

.plug__logo {
    width: 100%;
    height: 100%
}

.plug__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 19.2px
}

.plug__title span {
    margin-bottom: 23px;
    font-size: 28px;
    letter-spacing: 12.8px
}

.plug__subtitle {
    margin-top: 36px;
    letter-spacing: 3.6px
}

.plug__link {
    transition: 0.3s ease;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5.5px
}

.plug__link_phone {
    font-size: 24px;
    letter-spacing: 10px
}

.plug__link_mail {
    margin-top: 12px
}

.plug__link:hover {
    color: #e6c396
}

@media all and (max-width: 1400px) {
    .plug__title {
        font-size: 36px;
        letter-spacing: 16.2px
    }

    .plug__title span {
        margin-bottom: 14px;
        font-size: 24px;
        letter-spacing: 11.8px
    }

    .plug__subtitle {
        margin-top: 48px;
        font-size: 18px
    }

    .plug .container:before, .plug .container:after {
        width: 370px;
        height: 508px;
        background-size: contain
    }

    .plug .container:before {
        left: -94px;
        top: -100px
    }

    .plug .container:after {
        right: -92px;
        bottom: -162px
    }
}

@media all and (max-width: 1100px) {
    .plug__title {
        font-size: 30px;
        letter-spacing: 13px
    }

    .plug__title span {
        margin-bottom: 14px;
        font-size: 18px;
        letter-spacing: 7.5px
    }

    .plug__subtitle {
        margin-top: 48px;
        font-size: 16px;
        letter-spacing: 6px
    }

    .plug .container:before, .plug .container:after {
        width: 227px;
        height: 312px;
        background-size: contain
    }

    .plug .container:before {
        left: 18px;
        top: -79px
    }

    .plug .container:after {
        right: 22px;
        bottom: -96px
    }
}

@media only screen and (max-width: 750px) {
    .plug__logo-wrapper {
        width: 59px;
        height: auto;
        margin-bottom: 76px
    }

    .plug__title {
        font-size: 18px;
        letter-spacing: 8px
    }

    .plug__title span {
        margin-bottom: 21px;
        font-size: 12px;
        letter-spacing: 5.5px
    }

    .plug__subtitle {
        margin-top: 44px;
        font-size: 10px;
        letter-spacing: 4px;
        max-width: 200px
    }

    .plug .container {
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .plug .container:before, .plug .container:after {
        width: 131px;
        height: 180px;
        background-size: contain
    }

    .plug .container:before {
        left: -11px;
        top: 0
    }

    .plug .container:after {
        right: -5px;
        bottom: 25px
    }

    .plug__link_phone {
        font-size: 18px;
        margin-top: 131px;
        letter-spacing: 7px
    }

    .plug__link_mail {
        letter-spacing: 3.5px;
        font-size: 10px
    }
}

.checkout {
    padding-top: 30px
}

.checkout .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow-y: hidden
}

.checkout__content {
    width: calc(100% - 330px)
}

.checkout__sidebar-wrap {
    position: relative
}

.checkout h3 {
    margin-bottom: 40px;
    color: #999
}

.checkout .form__row_hide, .checkout .form__row-wrapper_hide {
    display: none
}

.checkout .btn-style._hide {
    display: none
}

.checkout-section {
    margin: 40px 0
}

.checkout-section_hide {
    display: none
}

.checkout-section_small {
    max-width: 630px
}

.checkout-section__row-wrapper_hide {
    display: none
}

.checkout-section h2 {
    font-size: 24px;
    position: relative;
    z-index: 1
}

.checkout-section .btn-style {
    transition: none
}

.checkout-payments {
    display: -ms-flexbox;
    display: flex
}

.checkout-payments__wrap {
    flex: 1 1;
    width: 100%;
}

.checkout-payments__item {
    position: relative;
    margin-right: 30px;
    display: -ms-flexbox;
    display: flex;
    padding: 30px
}

.checkout-payments__item:last-child {
    margin-right: 0
}

.checkout-payments__input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    cursor: pointer
}

.checkout-payments__input:checked ~ .checkout-payments__border {
    border: 1px solid #000
}

.checkout-payments__border {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: 1px solid #bebebe
}

.checkout-payments__title {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .9px
}

.checkout-payments__subtitle {
    color: #999;
    font-size: 14px;
    letter-spacing: .7px;
    line-height: 1.43
}

.checkout-payments__price {
    color: #e8c69b;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .9px;
    white-space: nowrap
}

.checkout-payments__price-wrap {
    margin-left: 30px
}

.checkout-prices {
    width: 100%;
    max-width: 430px
}

.checkout-prices__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 14px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .8px
}

.checkout-prices__item:last-child {
    margin-bottom: 0
}

.checkout-prices__title, .checkout-prices__price {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.checkout-prices__separator {
    border-bottom: 1px dotted #bebebe;
    width: 100%;
    margin: 0 5px 5px
}

.checkout-sidebar {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .9px;
    width: 300px
}

.checkout-sidebar__wrapper {
    background-color: rgba(128, 128, 128, .1);
    padding: 30px 20px 40px 30px;
    width: 300px;
    border-bottom: 130px solid #fff
}

.checkout-sidebar h3 {
    margin-bottom: 30px
}

.checkout-sidebar__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.checkout-sidebar__row_justify {
    -ms-flex-pack: justify;
    justify-content: space-between
}

.checkout-sidebar__row_center {
    -ms-flex-pack: center;
    justify-content: center
}

.checkout-sidebar__image-wrap {
    width: 80px;
    margin-right: 15px
}

.checkout-sidebar__image-wrap .object-fit-wrap:after {
    padding-top: 100%;
    position: relative;
    z-index: 2;
    background: gray;
    opacity: .1
}

.checkout-sidebar__price {
    font-weight: 500;
    text-align: right;
}

.checkout-sidebar__price-old {
    font-size: 13px;
    text-decoration: line-through;
    color: #666
}

.checkout-sidebar__count {
    margin-right: 35px
}

.checkout-sidebar__total {
    color: #000;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1.2px;
    margin-right: 15px
}

.checkout-sidebar__total-price {
    color: #000;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1.2px
}

.checkout-sidebar .order-list {
    margin-bottom: 35px
}

@media all and (max-width: 1100px) {
    .checkout-sidebar__wrapper {
        border-bottom: 70px solid #fff
    }
}

@media all and (max-width: 1400px) {
    .checkout-payments {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .checkout-payments__item {
        width: calc(50% - 10px);
        padding: 20px;
        margin-bottom: 20px;
        margin-right: 0
    }
}

@media all and (max-width: 1100px) {
    .checkout h3 {
        margin-bottom: 25px
    }

    .checkout p {
        max-width: 300px
    }

    .checkout .form__row-wrapper {
        margin: 30px 0 40px
    }

    .checkout .form__row {
        display: block;
        margin-bottom: 0
    }

    .checkout .form__item {
        width: 100% !important;
        max-width: 300px;
        margin: 0 0 25px
    }

    .checkout .form__item_tablet-full {
        display: block
    }

    .checkout .form__item_tablet-full .btn-style {
        width: 100%;
        margin-top: 15px
    }

    .checkout .checkbox-style {
        margin-bottom: 15px
    }

    .checkout-section {
        margin: 40px 0 70px
    }

    .checkout-payments {
        display: block;
        margin-top: 15px
    }

    .checkout-payments__item {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
        margin-right: 0;
        max-width: 300px
    }

    .checkout-prices {
        max-width: 300px
    }
}

@media only screen and (max-width: 750px) {
    .checkout {
        text-align: center
    }

    .checkout h2 {
        font-size: 24px
    }

    .checkout .subtitle {
        margin-top: 10px
    }

    .checkout__content {
        width: 100%
    }

    .checkout .checkout-title {
        letter-spacing: 0;
        font-size: 20px;
        margin-top: 40px;
        text-align: center
    }

    .checkout .checkout-title:before {
        left: 50%;
        bottom: -15px;
        font-size: 60px;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .checkout .form__item:not(.col-3) {
        max-width: 100%
    }

    .checkout .form__item.col-3 {
        width: 70% !important
    }

    .form__row .form__row .btn-style {
        width: 100%
    }

    .checkout-payments__item {
        max-width: 100%
    }

    .checkout-prices__title {
        font-size: 13px
    }

    .checkout-section {
        margin: 20px 0 50px;
        height: auto
    }

    .checkout-sidebar {
        display: none;
        width: 320px;
        font-size: 16px;
        z-index: 20;
        position: fixed;
        right: 30px;
        top: 0;
        height: 100vh;
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        transition: 0.5s ease;
        pointer-events: none
    }

    .checkout-sidebar__wrapper {
        width: auto;
        padding: 40px 15px;
        height: 100%;
        overflow: auto;
        background: #fff;
        margin-left: 35px;
        pointer-events: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
        position: relative
    }

    .checkout-sidebar__wrapper:before {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-color: gray;
        opacity: .1;
        content: ''
    }

    .checkout-sidebar._active {
        -ms-transform: translateX(30px);
        transform: translateX(30px)
    }

    .checkout-sidebar__toggle {
        position: absolute;
        overflow: auto;
        left: 0;
        top: 50%;
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        height: 60px;
        width: 30px;
        background: #e4e3e3;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        pointer-events: auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, .1)
    }

    .checkout-sidebar__toggle:before {
        content: "\f104";
        font-family: "Font Awesome";
        font-size: 24px;
        color: #000;
        transition: 0.5s ease
    }

    .checkout-sidebar__toggle._active:before {
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1)
    }
}

.article {
    padding-bottom: 170px
}

.article__wrapper {
    position: relative;
    width: 100%;
    padding-top: 103px;
    padding-bottom: 78px
}

.article__wrapper:before, .article__wrapper:after {
    content: "";
    position: absolute;
    display: block
}

.article__wrapper:before {
    top: 103px;
    right: 0;
    background-color: #f8f8f8;
    width: 85.3%;
    height: calc(100% - 181px)
}

.article__wrapper:after {
    left: 0;
    top: 0;
    background-color: #f1f1f1;
    width: 85.3%;
    height: 100%
}

.article__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%
}

.article__col_left {
    width: 300px
}

.article__col_right {
    width: calc(100% - 439px)
}

.article .local-nav {
    margin-top: -53px
}

.article__content {
    z-index: 1;
    position: relative
}

.article .article-info {
    margin-top: 63px
}

@media all and (max-width: 1400px) {
    .article__wrapper:after {
        width: 100%
    }

    .article .article-info {
        margin-top: 76px
    }
}

@media all and (max-width: 1100px) {
    .article__wrapper {
        padding: 0
    }

    .article__wrapper:after {
        width: calc(100% + 70px)
    }

    .article__col_left {
        display: none
    }

    .article__col_right {
        width: 100%;
        padding: 70px 67px 87px 103px
    }

    .article .local-nav {
        display: none
    }

    .article__content {
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media only screen and (max-width: 750px) {
    .article__wrapper:after {
        width: 100vw;
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .article__col_right {
        padding: 70px 0
    }
}

.blog-text-block {
    max-width: 740px;
    padding-bottom: 43px
}

.blog-text-block__title {
    max-width: 420px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.43;
    text-transform: uppercase;
    letter-spacing: 1.3px
}

.blog-text-block__banner {
    width: 100%;
    margin-top: 67px
}

.blog-text-block__wrapper {
    max-width: 610px;
    margin-top: 71px
}

.blog-text-block__annotation {
    margin-top: 34px;
    font-size: 12px;
    font-weight: 100;
    letter-spacing: .6px
}

.blog-text-block .link-style {
    margin-top: 84px
}

@media all and (max-width: 1400px) {
    .blog-text-block {
        margin-top: -34px
    }

    .blog-text-block__banner {
        width: 115%;
        margin-top: 66px;
        margin-left: -84px
    }

    .blog-text-block__wrapper {
        margin-top: 60px
    }
}

@media all and (max-width: 1100px) {
    .blog-text-block {
        margin-top: 0
    }

    .blog-text-block__banner {
        width: 140%;
        margin-left: -170px
    }
}

@media only screen and (max-width: 750px) {
    .brand__title {
        font-size: 22px;
    }

    .blog-text-block__banner {
        width: 100%;
        margin-left: 0
    }
}

.article-info {
    text-align: center;
    padding: 0 15px
}

.article-info_formobile {
    display: none
}

.article-info__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 46px
}

.article-info__item:last-child {
    margin-bottom: 0
}

.article-info__content {
    margin-top: 23px
}

.article-info__icon {
    font-size: 26px;
    font-weight: 400
}

.article-info__text {
    margin-bottom: 11px;
    letter-spacing: .8px
}

.article-info__text:last-child {
    margin-bottom: 0
}

.article-info__text_schedule {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px
}

@media all and (max-width: 1100px) {
    .article-info {
        display: block;
        margin-top: 44px
    }

    .article-info__item {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 18px
    }

    .article-info__content {
        margin-top: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .article-info__text {
        font-size: 18px;
        margin-bottom: 0
    }

    .article-info__text_shedule {
        font-size: 20px
    }

    .article-info__icon {
        margin-right: 15px;
        font-size: 18px
    }
}

.brand__banner {
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 40px
}

.brand__img {
    display: block;
    width: 100%;
    height: auto
}

.brand__title {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pre-footer {
    display: flex;
    margin-bottom: 30px
}

.pre-footer .col {
    text-align: center;
    padding: 60px 80px;
    flex: 1 0;
    width: 50%
}

.subscribe {
    background: #ededed
}

.subscribe__title {
    letter-spacing: 0;
    display: block;
    font-size: 22px;
    text-transform: uppercase
}

.subscribe__subtitle {
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
    text-transform: uppercase
}

.subscribe__form {
    position: relative;
    display: flex;
    width: 100%;
    margin: 40px 0%;
    border-bottom: 2px solid #000
}

.subscribe__form .msg {
    position: absolute;
    font-size: 14px;
    height: 30px;
    bottom: -40px;
    width: 100%;
    color: #000
}

.subscribe__input {
    flex: 1 0;
    border: none;
    background: none;
    min-width: 100px;
    font-size: 14px;
    font-family: inherit;
    padding: 15px
}

.subscribe__form.error {
    border-color: red
}

.subscribe__form.error .msg {
    color: red
}

.subscribe__btn {
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    padding: 15px
}

.help-info__title {
    letter-spacing: 0;
    font-size: 22px;
    display: block;
    text-transform: uppercase;
    margin-bottom: 70px
}

.help-info__link {
    display: block;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    margin: 10px 0%
}

.help-info__link:hover {
    text-decoration: underline
}

@media (max-width: 1100px) {
    .pre-footer .col {
        padding: 20px
    }
}

@media (max-width: 750px) {
    .pre-footer {
        flex-direction: column
    }

    .pre-footer .col {
        width: 100%
    }

    .help-info__title {
        margin-bottom: 40px
    }

    .subscribe__input {
        padding: 15px 0
    }
}

.blog-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 600px;
    height: auto;
    margin: auto
}

.blog-nav .blog-nav__item {
    display: block;
    font-size: 20px;
    line-height: 1.5em;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    margin: auto 0;
    transition: color .2s
}

.blog-nav__item:hover, .blog-article__btn:hover, .posts-container__btn:hover, .blog-article__download-btn:hover {
    color: #E6C396
}

.blog-nav .blog-nav__item_active {
    font-size: 24px;
    color: black;
    position: relative
}

.blog-nav__item_active:before {
    content: '';
    width: 30px;
    height: 1px;
    background: #E6C396;
    position: absolute;
    left: -90px;
    top: 50%;
    margin-bottom: -15px;
    transform: rotate(-45deg)
}

.blog-nav__item_active:after {
    content: '';
    width: 30px;
    height: 1px;
    background: #E6C396;
    position: absolute;
    right: -90px;
    top: 50%;
    margin-bottom: -15px;
    transform: rotate(-45deg)
}

@media screen and (max-width: 750px) {
    .subscribe__subtitle {
        font-size: 12px
    }

    .blog-nav {
        align-items: center;
        width: 100%;
        margin: 30px 0
    }

    .blog-nav .blog-nav__item {
        font-size: 13px
    }

    .blog-nav .blog-nav__item_active {
        font-size: 14px;
        font-weight: 600
    }

    .blog-nav__item_active:before {
        transform: rotate(180deg);
        top: -30px;
        left: 50%;
        margin: 0;
        margin-left: -15px;
        right: 0;
        bottom: 0
    }

    .blog-nav__item_active:after {
        transform: rotate(180deg);
        top: unset;
        left: 50%;
        right: 0;
        bottom: -30px;
        margin: 0;
        margin-left: -15px
    }
}

.discount__header {
    text-align: center;
    margin-bottom: 140px
}

.discount__title {
    text-transform: uppercase;
    margin-bottom: 15px
}

.discount__descr {
    line-height: 1.5em;
    margin: 10px 0
}

.discount__descr a {
    color: inherit;
    text-decoration: underline
}

.discount__descr.grey, .discount__descr span.grey {
    color: #999
}

.discount__items {
    margin: 60px 0
}

.discount__item {
    padding-top: 330px;
    padding-bottom: 150px;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
    text-align: center
}

.discount__item:nth-of-type(odd):before {
    z-index: -1;
    content: '';
    position: absolute;
    margin: 0 auto;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: #f5f5f5
}

.discount__item:last-of-type {
    padding-bottom: 40px
}

.discount__item:nth-of-type(even) .discount__img {
    left: unset;
    right: calc((100% - 100vw) / 2)
}

.discount__img {
    position: absolute;
    left: calc((100% - 100vw) / 2);
    top: -80px;
    height: auto;
    width: 100%;
    display: block
}

.discount__name {
    text-transform: uppercase;
    margin-bottom: 20px
}

.discount__name.silver {
    color: #aabaca
}

.discount__name.gold {
    color: #e8c69b
}

.discount__name.exclusive {
    color: #000
}

.discount__info {
    text-transform: uppercase;
    color: #999;
    margin: 10px 0;
    font-size: 30px
}

.discount__line {
    border: none;
    height: 1px;
    width: 100%;
    background: #999;
    margin: 20px 0
}

.discount__text {
    padding: 30px 0;
    display: flex
}

.discount__col {
    flex: 1 50%
}

.discount__col:first-of-type {
    margin-right: 30px
}

@media (max-width: 1400px) {
    .discount__item {
        padding-top: 250px;
        padding-bottom: 130px
    }
}

@media (max-width: 1100px) {
    .discount__header {
        margin-bottom: 120px
    }

    .discount__item {
        padding-top: 160px
    }

    .discount__text {
        flex-direction: column
    }

    .discount__col:first-of-type {
        margin-right: 0
    }
}

@media (max-width: 750px) {
    .discount__img {
        left: unset !important;
        right: unset !important
    }

    .discount__item {
        padding-top: 50px;
        padding-bottom: 120px
    }

    .discount__item:before {
        width: 100% !important
    }

    .discount__item:last-of-type {
        padding-bottom: 30px
    }

    .discount__text {
        flex-direction: column
    }

    .discount__title {
        font-size: 24px;
        letter-spacing: 1.5px
    }

    .discount__descr, .discount__info {
        font-size: 14px
    }
}

.policy {
    padding: 30px 0
}

.policy p {
    line-height: 1.5em;
    margin: 10px 0
}

.policy i {
    font-style: italic
}

@media (max-width: 750px) {
    .policy h1 {
        font-size: 20px;
        letter-spacing: 0
    }

    .policy p {
        font-size: 14px;
        line-height: 1.5em;
        margin: 10px 0
    }

    .policy i {
        font-style: italic
    }
}

.warningNotice {
    position: fixed;
    background: black;
    color: white;
    height: 40px;
    font-size: 14px;
    width: 100vw;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    z-index: 10000000;
}

.warningNotice a {
    text-decoration: underline;
    color: inherit;
}

@media (max-width: 1100px) {
    .warningNotice {
        font-size: 11px;
    }
}

@media (max-width: 750px) {
    .warningNotice {
        flex-direction: column
    }

    .bx-title {
        text-align: center;
    }
}

.bx-title {
    margin-bottom: 20px
}

.bx-authform-label-container {
    font-size: 14px;
    color: #000;
    padding-bottom: 0;
    margin-bottom: 7px
}

.q-a {
    margin-bottom: 30px;
}

.q-a a {
    color: inherit;
    text-decoration: underline
}

.q-a__title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.q-a__item {
    border-bottom: 1px solid #e6e6e6;
    transition: 160ms ease-in-out;
}

.q-a__question {
    user-select: none;
    cursor: pointer;
    display: block;
    padding: 12px 32px 12px 12px;
    text-align: left;
    position: relative
}

.q-a__question:after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome";
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    height: 100%;
    right: 0;
    top: 0;
    margin-right: 16px;
    transition: 160ms ease-in-out;
}

.q-a__item._active {
    border-color: #f6f6f6
}

.q-a__item._active .q-a__question:after {
    transform: rotate(-180deg)
}

.q-a__answer {
    position: relative;
    text-align: left;
    padding: 16px 32px;
    background: #f6f6f6;
}

@media (max-width: 750px) {
    .q-a__title {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0;
    }

    .q-a__item {
        font-size: 14px
    }
}

.vh-scrolltop {
    z-index: 20;
    position: fixed;
    top: -5vh;
    left: 0;
    width: 50px;
    height: 110vh;
    background: #e6e6e6;
    opacity: 0.2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 160ms ease-out
}

.vh-scrolltop:before {
    content: "\f062";
    font-family: "Font Awesome";
    font-weight: 600;
    transition: 160ms ease-in-out
}

.vh-scrolltop:hover {
    opacity: 0.5
}

.vh-scrolltop._hidden {
    left: -100px
}

.vh-scrolltop._back {
    left: 0;
}

.vh-scrolltop._back:before {
    transform: rotate(180deg)
}

@media (max-width: 750px) {
    .vh-scrolltop {
        display: none;
    }
}

.b24-widget-button-position-bottom-right {
    right: 25px !important;
    bottom: 25px !important;
}

.search__filter .tag-list {
    padding: 0
}

.advantages {
    display: flex;
    margin-top: 20px;
    justify-content: space-around;
}
.prod-card+.advantages {
    padding: 0 50px;
}
.advantage__item {
    position: relative;
    display: flex;
    flex: 1 0;
    align-items: center;
    margin: 10px 30px 10px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: inherit;
}

.advantage__item:last-of-type {
    margin-right: 0;
}

.advantage__item img {
    height: 30px;
    margin-right: 15px;
}

@media (max-width: 1100px) {
    .advantage__item {
        margin: 10px 10px 10px 0;
        font-size: 12px;
    }
}

@media (max-width: 750px) {
    .advantages {
        flex-direction: column;
        text-align: left;
    }
.prod-card+.advantages {
    padding: 0 10px;
}
    .advantage__item {
        padding-bottom: 24px;
        border-bottom: 1px solid #e6e6e6;
    }

    .advantage__item:last-of-type {
        padding-bottom: 0;
        border-bottom: none;
    }
}


body .vampiruskassa_success, body .vampiruskassa_fail {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
}