@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body, div, 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, menu, 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, 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;
}

/*!
 * MIT Licence
 * ShahinSorkh <sorkh.shahin@hotmail.com>  2017
 */
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

.animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.animated.flipOutX, .animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/*!
 * Copyright (c) 2017. All rights reserved
 */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@font-face {
  font-family: "Kharkiv Tone";
  src: url("../fonts/kharkiv-tone/kharkiv-tone-regular.eot");
  src: local("Kharkiv Tone regular"), local("Kharkiv-Tone-Regular"), url("../fonts/kharkiv-tone/kharkiv-tone-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/kharkiv-tone/kharkiv-tone-regular.woff2") format("woff2"), url("../fonts/kharkiv-tone/kharkiv-tone-regular.woff") format("woff"), url("../fonts/kharkiv-tone/kharkiv-tone-regular.ttf") format("truetype"), url("../fonts/kharkiv-tone/kharkiv-tone-regular.svg#Kharkiv-Tone-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
Grid
 */
/**
Font
 */
/**
 Width font
 */
/**
Colors
 */
/**
Background
 */
.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-dark {
  color: #FBFBFB;
}

.text-main {
  color: #FBFBFB;
}

.text-light {
  color: #A7A7A7;
}

.text-danger {
  color: #F94C33;
}

.text-warning {
  color: #FBAA60;
}

.text-success {
  color: #24A273;
}

/**
$width - width of sides
$height - height of block for which makes parallelepiped sides
$bg-color - background color for corner
$bg-$border-color - color for border
 */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 375px;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-right: 20px;
    padding-left: 20px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-right: 20px;
    padding-left: 20px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding-right: 20px;
    padding-left: 20px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #FBFBFB;
  font-weight: 400;
  background-color: #171615;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}

body:after {
  display: none;
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  background: rgba(15, 14, 14, 0.7);
}

body.modal-opened, body.cart-opened {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

body.modal-opened:after, body.cart-opened:after {
  display: block;
}

body.dropdown-opened {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

body.dropdown-opened:after {
  display: block;
  z-index: 5555;
}

header {
  position: relative;
  z-index: 5;
}

main {
  margin-top: -55px;
  margin-bottom: auto;
  position: relative;
  z-index: 4;
}

@media all and (min-width: 768px) {
  main {
    margin-top: -65px;
  }
}
@media all and (min-width: 1200px) {
  main {
    margin-top: -70px;
  }
}
footer {
  position: relative;
  z-index: 3;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  color: #FEDD00;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
}

ul li {
  display: block;
  position: relative;
  padding: 0 0 0 18px;
  margin: 0;
}

ul li:before {
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #FEDD00;
  background-size: contain;
  border-radius: 50%;
  content: "";
}

ul li + li {
  margin-top: 20px;
}

strong {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: inherit;
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: 27px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: left;
}

@media all and (min-width: 768px) {
  h1,
.h1 {
    font-size: 53px;
    line-height: 1.4;
  }
}
@media all and (min-width: 1200px) {
  h1,
.h1 {
    font-size: 34px;
    line-height: 1.2;
  }
}
h2,
.h2 {
  font-size: 42px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: normal;
}

@media all and (min-width: 768px) {
  h2,
.h2 {
    font-size: 90px;
  }
}
@media all and (min-width: 1200px) {
  h2,
.h2 {
    font-size: 130px;
  }
}
h3,
.h3 {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 15px;
  padding: 0;
  font-weight: 700;
}

@media all and (min-width: 1024px) {
  h3,
.h3 {
    font-size: 32px;
    line-height: 45px;
  }
}
h4,
.h4 {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

@media all and (min-width: 1024px) {
  h4,
.h4 {
    font-size: 16px;
    line-height: 24px;
  }
}
h5,
.h5 {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

@media all and (min-width: 1024px) {
  h5,
.h5 {
    font-size: 18px;
    line-height: 28px;
  }
}
.page p {
  margin-bottom: 25px;
}

.page p + h1,
.page p + h2,
.page p + h3,
.page p + h4,
.page p + h5,
.page p + h6,
.page p + .h1,
.page p + .h2,
.page p + .h3,
.page p + .h4,
.page p + .h5,
.page p + .h6 {
  padding-top: 10px;
}

.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6,
.page .h1,
.page .h2,
.page .h3,
.page .h4,
.page .h5,
.page .h6 {
  line-height: 1;
}

@media all and (min-width: 1024px) {
  .page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6,
.page .h1,
.page .h2,
.page .h3,
.page .h4,
.page .h5,
.page .h6 {
    line-height: 1;
  }
}
.page h1, .page .h1 {
  margin-bottom: 20px;
}

.page h2, .page .h2 {
  margin-bottom: 12px;
}

.page h3, .page .h3 {
  margin: 0 0 10px;
}

.page h4, .page .h4 {
  margin: 0 0 8px;
}

.page h5, .page .h5 {
  margin-bottom: 5px;
}

.page h6, .page .h6 {
  margin-bottom: 0;
}

.visuallyhidden {
  display: none;
}

.text-warning {
  color: #FBAA60;
}

.text-primary {
  color: #FBAA60;
}

.text-info {
  color: #3891db;
}

.text-lowercase {
  text-transform: lowercase;
}

.icon {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

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

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-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;
}

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

/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS:
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited).
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar.
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars.
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars.
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE
------------------------------------------------------------------------------------------------------------------------
*/
/*
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
/* non-visible scrollbar */
/* RTL direction/left-side scrollbar */
/* scrollbar position: outside */
/* RTL direction/left-side scrollbar (scrollbar position: outside) */
/*
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
/* non-visible scrollbar */
/* scrollbar position: outside */
/*
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS
yx-axis
------------------------------------------------------------------------------------------------------------------------
*/
/* non-visible horizontal scrollbar */
/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
/* RTL direction/left-side scrollbar */
/* non-visible scrollbar/RTL direction/left-side scrollbar */
/* non-visible horizontal scrollbar */
/*
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS
------------------------------------------------------------------------------------------------------------------------
*/
/* auto-expanded scrollbar */
/*
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS
------------------------------------------------------------------------------------------------------------------------
*/
/*
----------------------------------------
6.1 THEMES
----------------------------------------
*/
/* default theme ("light") */
/* theme: "dark" */
/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
/* theme: "dark-2" */
/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
/* theme: "dark-thick" */
/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
/* theme "dark-thin" */
/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
/* theme "rounded-dark", "rounded-dots-dark" */
/* theme "rounded-dots", "rounded-dots-dark" */
/* theme "rounded-dots-dark" */
/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
/* theme "3d", "3d-dark" */
/* theme "3d-dark" */
/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
/* theme: "3d-thick-dark" */
/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
/* RTL direction/left-side scrollbar */
/* theme: "minimal-dark" */
/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
/* theme "dark-3" */
/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
/* theme "inset-2", "inset-2-dark" */
/* theme "inset-3", "inset-3-dark" */
/* ---------------------------------------- */
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCustomScrollbar.mCS_no_scrollbar {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}

.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}

.mCustomScrollBox:hover > .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCustomScrollBox:hover ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCSB_container {
  overflow: hidden;
  width: auto;
  height: auto;
}

.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical {
  right: 1px;
}

.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools {
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  right: auto;
  left: 0;
  left: -26px;
}

.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}

.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
  left: 20px;
}

.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}

.mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger {
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  background-image: url(mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  background-position: 0 0;
}

.mCSB_scrollTools .mCSB_buttonUp:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  bottom: 0;
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  background-image: url(mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  background-position: 0 -20px;
}

.mCSB_scrollTools .mCSB_buttonDown:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonDown:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonLeft {
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  background-image: url(mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  background-position: 0 -40px;
}

.mCSB_scrollTools .mCSB_buttonLeft:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonLeft:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  background-image: url(mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  background-position: 0 -56px;
}

.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}

.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  width: 12px;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  width: 8px;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar {
  -webkit-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  height: 100%;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  right: 0;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  height: 12px;
  margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  height: 8px;
  margin: 4px 0;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  margin: 4px 0;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar {
  -webkit-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  margin-left: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}

.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  width: 16px;
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  width: 16px;
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  height: 16px;
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar {
  height: 16px;
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
}

.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}

.mCS-3d.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 16px;
  background-color: #555;
  width: 8px;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
  border-radius: 16px;
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 16px;
  background-color: #555;
  width: 8px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-radius: 16px;
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-3d-thick.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
  border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 5px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  border-radius: 7px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 5px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  border-radius: 7px;
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 8px;
  margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 8px;
  margin: 4px auto;
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal {
  bottom: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  height: 12px;
  width: auto;
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  height: 12px;
  width: auto;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}

.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical {
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}

.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}

.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  width: 12px;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}

.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  width: 12px;
}

.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: auto;
  height: 45px;
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 1px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 24px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: #FEDD00 none;
  color: #171615;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}

.button > .icon {
  display: block;
  height: 16px;
  width: 16px;
  margin-left: 10px;
}

.button.button--icon-left > .icon {
  margin-right: 10px;
  margin-left: 0;
}

.button.button--border {
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.button.button--border:before, .button.button--border:after {
  display: block;
  content: "";
  width: 19px;
  height: 45px;
  position: absolute;
  -webkit-transform: skew(-20.6954507341deg);
          transform: skew(-20.6954507341deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button.button--border:before {
  left: -10.5px;
}

.button.button--border:after {
  right: -10.5px;
}

.button.button--border:hover, .button.button--border:active {
  position: relative;
  -webkit-transition: none;
  transition: none;
  border: 2px solid #FEDD00;
  background: #171615;
  color: #FEDD00;
}

.button.button--border:hover:before, .button.button--border:hover:after, .button.button--border:active:before, .button.button--border:active:after {
  display: block;
  content: "";
  width: 19px;
  height: 45px;
  position: absolute;
  -webkit-transform: skew(-20.6954507341deg);
          transform: skew(-20.6954507341deg);
  background: #171615;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #FEDD00;
  top: -2px;
  width: 18px;
}

.button.button--border:hover:before, .button.button--border:active:before {
  left: -10.5px;
  border-right: none;
}

.button.button--border:hover:after, .button.button--border:active:after {
  right: -10.5px;
  border-left: none;
}

.button.button--border:hover:before, .button.button--border:hover:after, .button.button--border:active:before, .button.button--border:active:after {
  border-color: #FEDD00;
  background: #171615;
}

.button.button--border-dark {
  background: #171615;
  color: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.button.button--border-dark:before, .button.button--border-dark:after {
  display: block;
  content: "";
  width: 19px;
  height: 45px;
  position: absolute;
  -webkit-transform: skew(-20.6954507341deg);
          transform: skew(-20.6954507341deg);
  background: #171615;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button.button--border-dark:before {
  left: -10.5px;
}

.button.button--border-dark:after {
  right: -10.5px;
}

.button.button--border-dark:hover, .button.button--border-dark:active {
  background: #FEDD00;
  color: #171615;
  position: relative;
  -webkit-transition: none;
  transition: none;
  border: 2px solid #171615;
}

.button.button--border-dark:hover:before, .button.button--border-dark:hover:after, .button.button--border-dark:active:before, .button.button--border-dark:active:after {
  display: block;
  content: "";
  width: 19px;
  height: 45px;
  position: absolute;
  -webkit-transform: skew(-20.6954507341deg);
          transform: skew(-20.6954507341deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #171615;
  top: -2px;
  width: 18px;
}

.button.button--border-dark:hover:before, .button.button--border-dark:active:before {
  left: -10.5px;
  border-right: none;
}

.button.button--border-dark:hover:after, .button.button--border-dark:active:after {
  right: -10.5px;
  border-left: none;
}

.button.button--border-dark:hover:before, .button.button--border-dark:hover:after, .button.button--border-dark:active:before, .button.button--border-dark:active:after {
  border-color: #171615;
  background: #FEDD00;
}

.button.button--dark {
  height: 50px;
  background: #0F0E0E;
  color: #FEDD00;
  border: 2px solid #FEDD00;
}

.button.button--dark:hover, .button.button--dark:active {
  background: #FEDD00;
  color: #0F0E0E;
}

.button.button--dark.button--active {
  background: #FEDD00;
  color: #0F0E0E;
}

.button.button--small {
  height: 36px;
  font-size: 14px;
  letter-spacing: 1.2px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.button.button--outline {
  background-color: transparent;
  border: 1px solid #FEDD00;
  color: #FEDD00;
}

.button.button--large {
  height: 60px;
  font-size: 21.47px;
  letter-spacing: 1.34px;
}

.button.button--large > .icon {
  height: 21.47px;
  width: 21.47px;
  margin-left: 13px;
}

.button.button--large.button--border {
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.button.button--large.button--border:before, .button.button--large.button--border:after {
  display: block;
  content: "";
  width: 19px;
  height: 60px;
  position: absolute;
  -webkit-transform: skew(-15.8191939475deg);
          transform: skew(-15.8191939475deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button.button--large.button--border:before {
  left: -10.5px;
}

.button.button--large.button--border:after {
  right: -10.5px;
}

.button.button--large.button--border:hover, .button.button--large.button--border:active {
  position: relative;
  -webkit-transition: none;
  transition: none;
  border: 2px solid #FEDD00;
  background: #171615;
  color: #FEDD00;
}

.button.button--large.button--border:hover:before, .button.button--large.button--border:hover:after, .button.button--large.button--border:active:before, .button.button--large.button--border:active:after {
  display: block;
  content: "";
  width: 19px;
  height: 60px;
  position: absolute;
  -webkit-transform: skew(-15.8191939475deg);
          transform: skew(-15.8191939475deg);
  background: #171615;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #FEDD00;
  top: -2px;
  width: 18px;
}

.button.button--large.button--border:hover:before, .button.button--large.button--border:active:before {
  left: -10.5px;
  border-right: none;
}

.button.button--large.button--border:hover:after, .button.button--large.button--border:active:after {
  right: -10.5px;
  border-left: none;
}

.button.button--large.button--border:hover:before, .button.button--large.button--border:hover:after, .button.button--large.button--border:active:before, .button.button--large.button--border:active:after {
  border-color: #FEDD00;
  background: #171615;
}

.button.button--block {
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #A7A7A7;
  background-image: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.image.image-transparent {
  background-color: inherit;
}

.image.image--thumb {
  background-size: contain;
}

.image.image--thumb img {
  -o-object-fit: contain;
     object-fit: contain;
}

.form-line {
  position: relative;
  padding: 0;
}

.form-line + .form-line {
  margin-top: 20px;
}

.form-line:last-child, .form-line.form-line--last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-line:last-child *, .form-line.form-line--last * {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.form-line:last-child .button, .form-line.form-line--last .button {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding-left: 34px;
  padding-right: 34px;
}

.form-element {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #A7A7A7;
  background: transparent;
  padding: 3px 0 2px;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.11px;
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-weight: 500;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 5;
}

.form-element:not(:-moz-placeholder-shown) {
  box-shadow: none;
  outline: none;
}

.form-element:not(:-ms-input-placeholder) {
  box-shadow: none;
  outline: none;
}

.form-element:focus, .form-element:active, .form-element:not(:placeholder-shown) {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form-element:not(:-moz-placeholder-shown) + .form-label, .form-element:not(:-moz-placeholder-shown) ~ .form-label {
  top: 0;
  transform: scale(0.75);
}

.form-element:not(:-ms-input-placeholder) + .form-label, .form-element:not(:-ms-input-placeholder) ~ .form-label {
  top: 0;
  transform: scale(0.75);
}

.form-element:focus + .form-label,
.form-element:focus ~ .form-label, .form-element:active + .form-label,
.form-element:active ~ .form-label, .form-element:not(:placeholder-shown) + .form-label,
.form-element:not(:placeholder-shown) ~ .form-label {
  top: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.form-element:invalid, .form-element.form-element--error, .form-element:invalid {
  border-color: #F94C33;
}

.form-element:invalid + .form-label,
.form-element:invalid ~ .form-label, .form-element.form-element--error + .form-label,
.form-element.form-element--error ~ .form-label, .form-element:invalid + .form-label,
.form-element:invalid ~ .form-label {
  color: #F94C33;
}

.form-element.form-element--textarea {
  resize: none;
  min-height: 100px;
  height: 150px;
}

form.invalid .form-element {
  border-color: #F94C33;
}

form.invalid .form-element + .form-label,
form.invalid .form-element ~ .form-label {
  color: #F94C33;
}

.form-label {
  display: block;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
  font-weight: 700;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.checkbox {
  display: block;
  position: relative;
}

.checkbox .icon {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.checkbox .icon--checkbox-checked {
  display: none;
}

.checkbox.checkbox--checked .icon--checkbox {
  display: none;
}

.checkbox.checkbox--checked .icon--checkbox-checked {
  display: block;
  color: #FEDD00;
}

.checkbox-label {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 0 0 23px;
}

.text-lowercase .checkbox-label {
  text-transform: lowercase;
}

.checkbox-input {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #A7A7A7;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}

.checkbox-input:checked ~ .icon--checkbox {
  display: none;
}

.checkbox-input:checked ~ .icon--checkbox-checked {
  display: block;
  color: #FEDD00;
}

.checkbox.checkbox--pattern {
  margin-bottom: 9px;
  margin-top: 9px;
}

.checkbox.checkbox--pattern .checkbox-label {
  padding: 0;
  height: 24px;
}

.checkbox.checkbox--pattern .checkbox-label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  font-size: 14px;
  line-height: 1;
  margin: 0 9px;
  padding: 0 7px;
  background: #A7A7A7;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.checkbox.checkbox--pattern .checkbox-label span:before, .checkbox.checkbox--pattern .checkbox-label span:after {
  display: block;
  content: "";
  width: 11px;
  height: 24px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #A7A7A7;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.checkbox.checkbox--pattern .checkbox-label span:before {
  left: -6.5px;
}

.checkbox.checkbox--pattern .checkbox-label span:after {
  right: -6.5px;
}

.checkbox.checkbox--pattern .checkbox-input {
  width: 100%;
  height: 100%;
}

.checkbox.checkbox--pattern .checkbox-input:checked ~ span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.checkbox.checkbox--pattern .checkbox-input:checked ~ span:before, .checkbox.checkbox--pattern .checkbox-input:checked ~ span:after {
  display: block;
  content: "";
  width: 11px;
  height: 24px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.checkbox.checkbox--pattern .checkbox-input:checked ~ span:before {
  left: -6.5px;
}

.checkbox.checkbox--pattern .checkbox-input:checked ~ span:after {
  right: -6.5px;
}

.checkbox.checkbox--pattern.checkbox--checked .checkbox-label span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.checkbox.checkbox--pattern.checkbox--checked .checkbox-label span:before, .checkbox.checkbox--pattern.checkbox--checked .checkbox-label span:after {
  display: block;
  content: "";
  width: 11px;
  height: 24px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.checkbox.checkbox--pattern.checkbox--checked .checkbox-label span:before {
  left: -6.5px;
}

.checkbox.checkbox--pattern.checkbox--checked .checkbox-label span:after {
  right: -6.5px;
}

.radio {
  display: block;
  position: relative;
}

.radio .icon {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.radio img {
  height: 16px;
  width: auto;
}

.radio .icon--checkbox-checked {
  display: none;
}

.radio.radio--checked .icon--checkbox {
  display: none;
}

.radio.radio--checked .icon--checkbox-checked {
  display: block;
}

.radio-label {
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 0 0 23px;
}

.radio-label > span span {
  display: block;
  padding: 4px 0 0;
  font-size: 12px;
  width: 75%;
  color: #A7A7A7;
}

.radio-input {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #A7A7A7;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}

.radio-input:checked ~ .icon--checkbox {
  display: none;
}

.radio-input:checked ~ .icon--checkbox-checked {
  display: block;
}

.radio.radio--pattern .radio-label {
  padding: 0;
  height: 24px;
}

.radio.radio--pattern .radio-label > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  font-size: 14px;
  line-height: 1;
  margin: 0 9px;
  padding: 0 7px;
  background: #A7A7A7;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.radio.radio--pattern .radio-label > span:before, .radio.radio--pattern .radio-label > span:after {
  display: block;
  content: "";
  width: 11px;
  height: 24px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #A7A7A7;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.radio.radio--pattern .radio-label > span:before {
  left: -6.5px;
}

.radio.radio--pattern .radio-label > span:after {
  right: -6.5px;
}

.radio.radio--pattern .radio-input {
  width: 100%;
  height: 100%;
}

.radio.radio--pattern .radio-input:checked ~ span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.radio.radio--pattern .radio-input:checked ~ span:before, .radio.radio--pattern .radio-input:checked ~ span:after {
  display: block;
  content: "";
  width: 11px;
  height: 24px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.radio.radio--pattern .radio-input:checked ~ span:before {
  left: -6.5px;
}

.radio.radio--pattern .radio-input:checked ~ span:after {
  right: -6.5px;
}

.radio.radio--pattern.radio--checked .radio-label > span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.radio.radio--pattern.radio--checked .radio-label > span:before, .radio.radio--pattern.radio--checked .radio-label > span:after {
  display: block;
  content: "";
  width: 11px;
  height: 24px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.radio.radio--pattern.radio--checked .radio-label > span:before {
  left: -6.5px;
}

.radio.radio--pattern.radio--checked .radio-label > span:after {
  right: -6.5px;
}

.table-scroller {
  display: block;
  max-width: 100%;
  overflow-x: scroll;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table.table--auto {
  width: auto;
}

.table th,
.table td {
  vertical-align: middle;
  padding: 7px 18px;
}

.table thead tr:nth-child(odd) th,
.table thead tr:nth-child(odd) td {
  background: #313131;
}

.table thead th,
.table thead td {
  text-align: center;
}

.table tbody tr:nth-child(even) th,
.table tbody tr:nth-child(even) td {
  background: #313131;
}

.table tfoot tr:nth-child(odd) th,
.table tfoot tr:nth-child(odd) td {
  background: #0F0E0E;
}

.table.table--size-grid {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.7;
}

.table.table--size-grid thead th span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #FEDD00;
  color: #171615;
}

.table.table--size-grid tbody td,
.table.table--size-grid tbody th {
  text-align: center;
}

.table.table--size-grid tbody th {
  color: #FEDD00;
  text-transform: uppercase;
}

.form-block {
  border-top: 2px solid #FEDD00;
}

.form-block + .form-block {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .form-block + .form-block {
    margin-top: 60px;
  }
}
.form-block.form-block--not-active {
  border-top-color: #FBFBFB;
}

.form-block.form-block--not-active .form-block__title {
  border-color: #FBFBFB;
  color: #FBFBFB;
}

.form-block.form-block--not-active .form-block-number {
  border-color: #FBFBFB;
}

.form-block.form-block--not-active .form-block__fields {
  display: none;
}

.form-block.form-block--not-active .form-block__button {
  display: none;
}

.form-block.form-block--selected {
  cursor: pointer;
  border-top-color: #313131;
}

.form-block.form-block--selected .form-block__title {
  border-color: #313131;
  color: #FEDD00;
}

.form-block.form-block--selected .form-block-number {
  border-color: #313131;
}

.form-block.form-block--selected .form-block__fields {
  border-color: #313131;
  border-bottom: 2px solid #313131;
  background: #313131;
}

.form-block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 45px;
  border-left: 2px solid #FEDD00;
  border-right: 2px solid #FEDD00;
  border-bottom: 2px solid #FEDD00;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.125px;
  letter-spacing: 1px;
  color: #FEDD00;
  text-transform: uppercase;
}

.form-block-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 45px;
  border-right: 2px solid #FEDD00;
}

.form-block-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  padding: 0 18px;
}

.form-block__fields {
  border-left: 2px solid #FEDD00;
  border-right: 2px solid #FEDD00;
}

.form-block__fields .radio .radio-label {
  padding: 22px 17px 22px 47px;
  text-transform: none;
  color: #FBFBFB;
  font-family: "Montserrat", Arial, sans-serif;
}

.form-block__fields .radio .radio-input {
  top: 22px;
  left: 17px;
}

.form-block__fields .radio .icon {
  color: #A7A7A7;
  top: 22px;
  left: 17px;
}

.form-block-field {
  position: relative;
}

.form-block-field + .form-block-field {
  border-top: 2px solid #313131;
}

.form-block-field.form-block-field--selected, .form-block-field.form-block-field--focus {
  background: #313131;
  border-top: 2px solid #FEDD00;
}

.form-block-field.form-block-field--selected + .form-block-field, .form-block-field.form-block-field--focus + .form-block-field {
  border-top-color: #FEDD00;
}

.form-block-field.form-block-field--selected .radio .icon, .form-block-field.form-block-field--focus .radio .icon {
  color: #FEDD00;
}

.form-block-field:first-child {
  border-top: none;
}

.form-block-selected-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 1;
  padding: 22px 17px;
  font-family: "Montserrat", Arial, sans-serif;
  color: #FBFBFB;
}

.form-block-selected-value > span {
  display: block;
  color: #FBFBFB;
  margin-top: 5px;
}

.form-block-selected-value > span span {
  color: #A7A7A7;
  margin-left: 4px;
}

.form-block-multyfield {
  cursor: pointer;
}

.form-block-multyfield + .form-block-multyfield {
  border-top: 2px solid #313131;
}

.form-block-multyfield.form-block-multyfield--selected {
  border-top: 2px solid #FEDD00;
}

.form-block-multyfield.form-block-multyfield--selected + .form-block-multyfield {
  border-top-color: #FEDD00;
}

.form-block-multyfield.form-block-multyfield--selected .form-block-multyfield__title .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.form-block-multyfield.form-block-multyfield--selected .form-block-multyfield__fields {
  display: block;
}

.form-block-multyfield:first-child {
  border-top: none;
}

.form-block-multyfield__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1;
  padding: 22px 17px;
  font-family: "Montserrat", Arial, sans-serif;
}

.form-block-multyfield__title .icon {
  width: 10px;
  height: 10px;
  margin-left: 3px;
}

.form-block-multyfield__fields {
  display: none;
}

.form-block-multyfield__fields .radio-label {
  color: #FBFBFB;
}

.form-block-multyfield__fields .radio-label .radio-input:checked ~ .icon {
  color: #FEDD00;
}

.form-block-multyfield__fields .radio-label > span span {
  color: #A7A7A7;
}

.form-block-multyfield__fields .radio--checked .radio-label {
  background: #313131;
}

.form-block-input {
  display: block;
  height: 60px;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 0 17px;
  color: #FBFBFB;
}

.form-block-input.form-block-input--area {
  padding-top: 17px;
  padding-bottom: 17px;
  resize: none;
  min-height: 130px;
}

.form-block-input::-webkit-input-placeholder {
  color: #A7A7A7;
}

.form-block-input:-moz-placeholder {
  color: #A7A7A7;
}

.form-block-input::-moz-placeholder {
  color: #A7A7A7;
}

.form-block-input:-ms-input-placeholder {
  color: #A7A7A7;
}

.form-block-input:focus {
  background: #313131;
}

.form-block-input.form-block-input--with-help {
  padding-right: 40px;
}

.form-block-field-error {
  font-family: "Montserrat", Arial, sans-serif;
  color: #F94C33;
  font-size: 16px;
  line-height: 1.4;
  padding: 0 17px;
  margin-top: -15px;
  padding-bottom: 20px;
}

.form-block-helper {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1666;
  letter-spacing: 0;
  color: #606060;
  padding: 4px 17px 22px;
}

.form-block-helper-icon {
  position: absolute;
  top: 22px;
  right: 17px;
  color: #FEDD00;
}

.form-block-helper-icon .icon {
  width: 19px;
  height: 19px;
}

.form-block-helper-icon img {
  height: 10px;
  width: auto;
  margin-bottom: 3px;
}

.form-block__button.form-block__button--empty {
  border-bottom: 2px solid #FEDD00;
}

/**
All parts
 */
/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("/assets/fonts/slick/slick.eot");
  src: url("/assets/fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/slick/slick.woff") format("woff"), url("/assets/fonts/slick/slick.ttf") format("truetype"), url("/assets/fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.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: 50%;
  -webkit-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.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

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

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

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

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.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-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.mCS-ohueno.mCSB_scrollTools {
  width: 12px;
}

.mCS-ohueno.mCSB_scrollTools .mCSB_draggerContainer {
  background: #313131;
}

.mCS-ohueno.mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerContainer {
  margin: 0 5px;
}

.mCS-ohueno.mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 2px;
}

.mCS-ohueno.mCSB_scrollTools.mCSB_scrollTools_vertical .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}

.mCS-ohueno.mCSB_scrollTools .mCSB_draggerRail {
  background: none;
  border-radius: 0;
}

.mCS-ohueno.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: rgba(254, 221, 0, 0.75);
  border-radius: 0;
}

.mCS-ohueno.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: #FEDD00;
}

.mCS-ohueno.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background: #FEDD00;
}

.mCS-ohueno.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: #FEDD00;
}

.mCS-ohueno.mCSB_inside.mCSB_vertical > .mCSB_container {
  margin-right: 12px;
}

.mCS-ohueno.mCSB_inside.mCSB_vertical .mCSB_1_scrollbar {
  width: 12px;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
}

@media all and (min-width: 768px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media all and (min-width: 1200px) {
  .header {
    padding: 20px 55px;
  }
}
.sticky {
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sticky.sticky--fixed {
  width: 100%;
  background: rgba(23, 22, 21, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-animation: slide-down 0.2s linear;
  animation: slide-down 0.2s linear;
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__column.header__column--menu {
  width: 25%;
}

.header__column.header__column--logo {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.header__column.header__column--actions {
  width: 25%;
}

@media all and (min-width: 768px) {
  .header__column.header__column--menu {
    width: 37.5%;
  }

  .header__column.header__column--actions {
    width: 37.5%;
  }
}
@media all and (min-width: 1200px) {
  .header__column.header__column--menu {
    width: 42%;
  }

  .header__column.header__column--actions {
    width: 42%;
  }
}
.header-mobile {
  display: block;
}

@media all and (min-width: 1200px) {
  .header-mobile {
    display: none;
  }
}
.header-menu {
  display: none;
  margin: 0 auto 0 0;
  text-align: left;
}

@media all and (min-width: 1200px) {
  .header-menu {
    display: block;
  }
}
.header-logo {
  margin: 0 auto;
}

.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
  text-align: right;
}

.logo {
  display: block;
  width: 107px;
  height: 25px;
  color: #FBFBFB;
}

.logo img {
  display: block;
  padding: 0;
  margin: 0;
}

.logo:hover {
  color: #FEDD00;
}

@media all and (min-width: 1200px) {
  .logo {
    width: 128px;
    height: 30px;
  }
}
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.menu .menu__item + .menu__item {
  margin-left: 30px;
}

.menu .menu__item .menu-link {
  display: block;
  float: left;
  text-decoration: none;
  color: #FBFBFB;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
}

.menu .menu__item .menu-link:hover {
  color: #FEDD00;
}

.menu .menu__item.menu__item--active .menu-link {
  color: #FEDD00;
}

.menu.menu--footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu.menu--footer .menu__item + .menu__item {
  margin-left: 0;
  margin-top: 10px;
}

.menu.menu--footer .menu__item .menu-link {
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
}

@media all and (min-width: 1200px) {
  .menu.menu--footer .menu__item .menu-link {
    font-size: 14px;
  }
}
@media all and (min-width: 1200px) {
  .menu.menu--footer .menu__item .menu-link {
    font-size: 12px;
  }
}
.menu.menu--copyright {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu.menu--copyright .menu__item + .menu__item {
  margin-left: 0;
}

.menu.menu--copyright .menu__item .menu-link {
  font-size: 12px;
  line-height: 2.115;
  color: #A7A7A7;
}

.menu.menu--copyright .menu__item .menu-link:hover {
  color: #FEDD00;
}

.menu.menu--copyright .menu__item.menu__item--active .menu-link {
  color: #FEDD00;
}

@media all and (min-width: 1200px) {
  .menu.menu--copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .menu.menu--copyright .menu__item + .menu__item {
    margin-left: 36px;
  }
}
.button-mobile-menu .button-mobile-menu__link {
  display: block;
  text-decoration: none;
  color: #FEDD00;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.mobile-menu-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0F0E0E;
  border: 2px solid #FEDD00;
  padding-top: 50px;
  z-index: 9999;
}

.mobile-menu-modal.mobile-menu-modal--open {
  display: block;
}

.mobile-menu-modal .mobile-menu-modal__close {
  position: absolute;
  top: 16.93px;
  right: 20.21px;
}

@media all and (min-width: 768px) {
  .mobile-menu-modal .mobile-menu-modal__close {
    top: 27px;
    right: auto;
    left: 78px;
  }
}
.mobile-menu-modal .mobile-menu-modal__search {
  position: absolute;
  top: 16.93px;
  right: 65.64px;
}

@media all and (min-width: 768px) {
  .mobile-menu-modal .mobile-menu-modal__search {
    display: none;
  }
}
.mobile-menu-modal .mobile-menu-modal__title {
  position: absolute;
  top: 16.93px;
  left: 19px;
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #A7A7A7;
  text-transform: uppercase;
}

@media all and (min-width: 768px) {
  .mobile-menu-modal .mobile-menu-modal__title {
    display: none;
  }
}
.mobile-menu-modal a.mobile-menu-modal__title {
  text-decoration: none;
}

.mobile-menu-modal a.mobile-menu-modal__title:hover {
  color: #FBFBFB;
}

.mobile-menu-modal .mobile-menu-modal__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: scroll;
}

@media all and (min-width: 768px) {
  .mobile-menu-modal {
    width: 83.59%;
    padding-top: 60px;
    max-width: 630px;
  }
}
@media all and (min-width: 1200px) {
  .mobile-menu-modal {
    width: 56.25%;
    max-width: 670px;
  }
}
.mobile-menu {
  display: block;
  position: relative;
  padding: 35px 50px 70px 20px;
}

.mobile-menu.mobile-menu--main {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  background: #171615;
  padding-top: 60px;
  padding-bottom: 30px;
}

@media all and (min-width: 768px) {
  .mobile-menu {
    padding: 40px 33.33% 70px 0;
  }

  .mobile-menu.mobile-menu--main {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media all and (min-width: 1200px) {
  .mobile-menu {
    padding: 40px 26.66% 70px 0;
  }
}
.mobile-menu__item.mobile-menu__item--active .mobile-menu-link {
  color: #FEDD00;
}

@media all and (min-width: 768px) {
  .mobile-menu__item {
    padding-left: 75px;
  }

  .mobile-menu__item.mobile-menu__item--active {
    background-color: #FEDD00;
  }

  .mobile-menu__item.mobile-menu__item--active .mobile-menu-link {
    color: #171615;
  }
}
.mobile-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #FBFBFB;
}

.mobile-menu-link:hover {
  color: #FEDD00;
}

.mobile-menu__thumbnail {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding-bottom: 70px;
  padding-top: 35px;
  padding-right: 50px;
}

@media all and (min-width: 768px) {
  .mobile-menu__thumbnail {
    padding-top: 40px;
    padding-right: 0;
    width: 33.33%;
  }
}
@media all and (min-width: 1200px) {
  .mobile-menu__thumbnail {
    padding-top: 40px;
    width: 26.66%;
  }
}
.mobile-menu__thumbnail svg {
  display: block;
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.mobile-menu__thumbnail svg path#body {
  fill: #474646;
}

.mobile-menu__thumbnail svg .path-category {
  display: block;
  fill: #FEDD00;
}

.mobile-menu__thumbnail svg .path-category.path-category--hide {
  display: none;
}

.language-currency {
  display: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  color: #FBFBFB;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
}

.language-currency:hover {
  color: #FEDD00;
}

.language-currency .language-currency__separator {
  margin: 0 8px;
}

.language-currency .language-currency__caret {
  width: 12.69px;
  height: 6.34px;
  margin-left: 5px;
}

.language-currency.language-currency--open {
  color: #FEDD00;
}

.language-currency.language-currency--open .language-currency__caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media all and (min-width: 1200px) {
  .language-currency {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }
}
.language-currency.language-currency--footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  font-size: 20px;
  line-height: 1.7;
  margin-top: 11px;
}

@media all and (min-width: 1200px) {
  .language-currency.language-currency--footer {
    font-size: 12px;
  }
}
.language-currency.language-currency--mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #FBFBFB;
  padding: 5px 20px;
}

.language-currency.language-currency--mobile-menu .language-currency-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 25px;
  position: relative;
  -webkit-transition: none;
  transition: none;
  margin: 9px 20px;
}

.language-currency.language-currency--mobile-menu .language-currency-button:before, .language-currency.language-currency--mobile-menu .language-currency-button:after {
  display: block;
  content: "";
  width: 14px;
  height: 25px;
  position: absolute;
  -webkit-transform: skew(-25.6410058243deg);
          transform: skew(-25.6410058243deg);
  background: trasparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.language-currency.language-currency--mobile-menu .language-currency-button:before {
  left: -8px;
}

.language-currency.language-currency--mobile-menu .language-currency-button:after {
  right: -8px;
}

.language-currency.language-currency--mobile-menu .language-currency-button * {
  z-index: 2;
}

.language-currency.language-currency--mobile-menu .language-currency-button:hover {
  color: #FEDD00;
}

.language-currency.language-currency--mobile-menu .language-currency-button.language-currency-button--active {
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
  color: #171615;
}

.language-currency.language-currency--mobile-menu .language-currency-button.language-currency-button--active:before, .language-currency.language-currency--mobile-menu .language-currency-button.language-currency-button--active:after {
  display: block;
  content: "";
  width: 14px;
  height: 25px;
  position: absolute;
  -webkit-transform: skew(-25.6410058243deg);
          transform: skew(-25.6410058243deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.language-currency.language-currency--mobile-menu .language-currency-button.language-currency-button--active:before {
  left: -8px;
}

.language-currency.language-currency--mobile-menu .language-currency-button.language-currency-button--active:after {
  right: -8px;
}

@media all and (min-width: 768px) {
  .language-currency.language-currency--mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 75px;
  }
}
.language-currency-dropdown {
  display: inline-block;
  position: relative;
}

.language-currency-dropdown + .language-currency-dropdown {
  margin-left: 20px;
}

.language-currency-dropdown.language-currency-dropdown--open .language-currency-dropdown-menu {
  display: block;
}

.language-currency-dropdown.language-currency-dropdown--open .language-currency__caret .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.language-currency-dropdown.language-currency-dropdown--footer .language-currency-dropdown-menu__item {
  font-size: 20px;
}

@media all and (min-width: 1200px) {
  .language-currency-dropdown.language-currency-dropdown--footer .language-currency-dropdown-menu__item {
    font-size: 12px;
  }
}
.language-currency-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  border: 2px solid #FEDD00;
  background: #0F0E0E;
  padding: 10px 0;
}

.language-currency-dropdown-menu__item {
  display: block;
  white-space: nowrap;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #FBFBFB;
  padding: 10px 20px;
}

.language-currency-dropdown-menu__item:hover {
  color: #FEDD00;
}

.language-currency-dropdown-menu__item.language-currency-dropdown-menu__item--active {
  background: #FEDD00;
  color: #171615;
}

.language-currency-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px 0;
}

.language-currency-container .language-currency-container__separator {
  margin: 0 10px;
}

.language-currency-container .language-currency-container__separator + .language-currency--mobile-menu {
  padding-left: 32px;
}

.language-currency-button .language-currency__language a {
  color: #ffffff;
  text-decoration: none;
}

.language-currency-button.language-currency-button--active .language-currency__language a {
  color: #171615;
}

.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 30.31px;
  cursor: pointer;
}

.cart .cart__title {
  display: none;
  text-transform: uppercase;
  color: #FBFBFB;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .cart .cart__title {
    display: block;
  }
}
.cart .cart__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 16px;
  padding: 0 6px;
  margin: 0 6px 0 11px;
  background: #FEDD00;
  color: #0F0E0E;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.cart .cart__count:before, .cart .cart__count:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cart .cart__count:before {
  left: -5px;
}

.cart .cart__count:after {
  right: -5px;
}

.cart:hover .cart__title {
  color: #FEDD00;
}

.footer {
  background: #0C0C0B;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: -20px;
  margin-right: -20px;
}

@media all and (min-width: 768px) {
  .footer__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 0;
    margin-right: 0;
  }
}
.footer-column {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.footer-column.footer-column--left {
  background: #171615;
  padding-top: 110.67px;
  padding-bottom: 90.21px;
}

.footer-column.footer-column--right {
  padding-left: 20px;
  padding-top: 100px;
  padding-bottom: 65.52px;
}

.footer-column .footer-column__bg {
  position: absolute;
  top: 34.63px;
  right: 65.94px;
  width: 94px;
  height: auto;
}

.footer-column .footer-column__bg img {
  display: block;
}

@media all and (min-width: 768px) {
  .footer-column {
    width: 50%;
    padding: 100px 0 85.47px;
  }

  .footer-column.footer-column--left {
    background: none;
  }

  .footer-column.footer-column--right {
    padding-left: 0;
  }

  .footer-column .footer-column__bg {
    display: none;
  }
}
@media all and (min-width: 1200px) {
  .footer-column {
    padding: 85px 0 46.18px;
  }

  .footer-column.footer-column--left {
    padding-bottom: 46.18px;
  }

  .footer-column.footer-column--right {
    padding-top: 105px;
  }
}
.footer-picture {
  width: 100%;
  height: auto;
  max-width: 300.18px;
  max-height: 186.87px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .footer-picture {
    width: 281.06px;
    height: 174.83px;
    margin: 0;
  }
}
@media all and (min-width: 1200px) {
  .footer-picture {
    width: 300.18px;
    height: 186.87px;
  }
}
.footer-picture .footer-picture__img {
  display: block;
}

.footer-slogan {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #A7A7A7;
  text-align: center;
  padding: 0 0 0 20px;
  margin: 15px 0 0;
}

.footer-slogan br {
  display: none;
}

.footer-slogan br:first-child,
.footer-slogan br:last-child {
  display: block;
}

@media all and (min-width: 768px) {
  .footer-slogan {
    text-align: left;
  }
}
@media all and (min-width: 1200px) {
  .footer-slogan br {
    display: block;
  }

  .footer-slogan br:first-child,
.footer-slogan br:last-child {
    display: none;
  }
}
.footer-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-blocks + .footer-blocks {
  margin-top: 59.31px;
}

.footer-blocks .footer-blocks__column {
  width: 100%;
}

.footer-blocks .footer-blocks__column + .footer-blocks__column {
  margin-top: 10px;
}

@media all and (min-width: 768px) {
  .footer-blocks + .footer-blocks {
    margin-top: 49.02px;
  }
}
@media all and (min-width: 1200px) {
  .footer-blocks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .footer-blocks + .footer-blocks {
    margin-top: 44px;
  }

  .footer-blocks .footer-blocks__column {
    width: 50%;
  }

  .footer-blocks .footer-blocks__column + .footer-blocks__column {
    margin-top: 0;
  }
}
.footer-contacts {
  margin-bottom: 35.01px;
}

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

.footer-contacts .footer-contacts__item + .footer-contacts__item {
  margin-top: 19.97px;
}

@media all and (min-width: 768px) {
  .footer-contacts .footer-contacts__item + .footer-contacts__item {
    margin-top: 19.98px;
  }
}
@media all and (min-width: 1200px) {
  .footer-contacts {
    margin-bottom: 0;
  }

  .footer-contacts .footer-contacts__item + .footer-contacts__item {
    margin-top: 13.79px;
  }
}
.contacts-data {
  display: inline-block;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  vertical-align: top;
  background: #FEDD00;
  color: #171615;
  text-decoration: none;
  padding: 0 8.61px;
  text-transform: uppercase;
}

.contacts-data .icon {
  width: 22px;
  height: 22px;
  margin-left: 8.61px;
  margin-top: 2px;
}

@media all and (min-width: 1200px) {
  .contacts-data {
    font-size: 18.29px;
    padding: 0 5.8px;
  }

  .contacts-data .icon {
    width: 14px;
    height: 14px;
    margin-left: 5.8px;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 61.55px;
}

@media all and (min-width: 768px) {
  .footer__bottom {
    padding-bottom: 85.47px;
  }
}
@media all and (min-width: 1200px) {
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 59px;
  }
}
.footer-bottom-column {
  width: 100%;
}

@media all and (min-width: 768px) {
  .footer-bottom-column {
    width: 50%;
  }
}
@media all and (min-width: 1200px) {
  .footer-bottom-column.footer-bottom-column--left {
    padding-left: 20px;
  }
}
.footer-bottom__address {
  font-size: 12px;
  line-height: 1.4;
  color: #A7A7A7;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 100%;
}

@media all and (min-width: 1200px) {
  .footer-bottom__address {
    margin-top: 0;
  }
}
body.ajax-doing {
  overflow: hidden;
}

body.ajax-doing > .ajax-loader {
  display: block;
}

.ajax-loader {
  display: none;
  background: rgba(255, 255, 255, 0.4) url("./images/ajax-loader.svg") no-repeat center center;
  background-size: 75px 75px;
  width: 100%;
  height: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
}

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

.social-network {
  display: block;
  text-decoration: none;
  width: 41.92px;
  height: 41.92px;
  color: #FEDD00;
}

.social-network + .social-network {
  margin-left: 40px;
}

@media all and (min-width: 1200px) {
  .social-network {
    width: 28.27px;
    height: 28.27px;
  }

  .social-network + .social-network {
    margin-left: 31.98px;
  }
}
.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 2.115;
  text-transform: uppercase;
  color: #FBFBFB;
  font-weight: 500;
}

.copyright .icon {
  width: 17.8px;
  height: 17.8px;
  margin-right: 3.4px;
}

.close-button {
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #FEDD00;
  cursor: pointer;
  outline: none;
}

.close-button:hover, .close-button:active {
  color: #FBFBFB;
  outline: none;
}

.close-button .icon {
  display: block;
  width: 17.54px;
  height: 17.54px;
}

.search-button {
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #FEDD00;
  cursor: pointer;
  outline: none;
}

.search-button:hover, .search-button:active {
  color: #FBFBFB;
  outline: none;
}

.search-button .icon {
  display: block;
  width: 17.54px;
  height: 17.54px;
}

.modal-cookies {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px 15px;
  z-index: 10000;
}

.modal-cookies.modal-cookies--show {
  display: block;
}

.modal-cookies .modal-cookies__wrap {
  position: relative;
  background: #0F0E0E;
  border: 2px solid #FEDD00;
  padding: 20px 45px 20px 15px;
}

@media all and (min-width: 768px) {
  .modal-cookies {
    padding: 0 40px 20px;
  }

  .modal-cookies .modal-cookies__wrap {
    padding: 25px 50px;
  }
}
.modal-cookies-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal-cookies-close .close-button .icon {
  width: 15px;
  height: 15px;
}

.cookies-title {
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3125;
  font-weight: 400;
  letter-spacing: 1px;
  color: #FEDD00;
  margin-bottom: 4px;
}

@media all and (min-width: 768px) {
  .cookies-title {
    font-size: 20px;
    line-height: 1.3;
  }
}
.cookies-body {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285;
  letter-spacing: 0;
  color: #FBFBFB;
}

@media all and (min-width: 768px) {
  .cookies-body {
    font-size: 16px;
    line-height: 1.275;
  }
}
.section {
  display: block;
  overflow: hidden;
}

.section.section--hero {
  background: #0F0E0E;
  padding-top: 40px;
}

@media all and (min-width: 768px) {
  .section.section--hero {
    padding-top: 45px;
  }
}
@media all and (min-width: 1200px) {
  .section.section--hero {
    padding-top: 50px;
  }
}
.section.section--header-h2 {
  color: #FEDD00;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.section.section--header-h2 > * {
  text-align: center;
}

@media all and (min-width: 768px) {
  .section.section--header-h2 {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
@media all and (min-width: 1200px) {
  .section.section--header-h2 {
    padding-top: 165px;
    padding-bottom: 87px;
  }
}
.section.section--header-community {
  padding-bottom: 12px;
}

@media all and (min-width: 768px) {
  .section.section--header-community {
    padding-bottom: 23px;
  }
}
@media all and (min-width: 1200px) {
  .section.section--header-community {
    padding-bottom: 0;
    color: #313131;
  }
}
.section.section--community-2 {
  padding-top: 71px;
  padding-bottom: 86px;
  overflow: hidden;
  background: #0F0E0E;
}

@media all and (min-width: 768px) {
  .section.section--community-2 {
    background: transparent;
  }
}
@media all and (min-width: 1200px) {
  .section.section--community-2 {
    overflow: auto;
  }
}
.section.section--catalog {
  background: #0F0E0E;
}

.section.section--catalog-together {
  background: #0F0E0E;
  padding-top: 75px;
  margin-top: 75px;
  margin-bottom: 50px;
}

@media all and (min-width: 768px) {
  .section.section--catalog-together {
    padding-top: 85px;
    margin-top: 85px;
  }
}
.section.section--together {
  background: #0F0E0E;
}

@media all and (min-width: 768px) {
  .section.section--together {
    background: transparent;
  }
}
.section.section--anroll {
  overflow: visible;
}

.section.section--delivery-return {
  padding-top: 125px;
  padding-bottom: 166px;
}

@media all and (min-width: 768px) {
  .section.section--delivery-return {
    padding-top: 191px;
    padding-bottom: 144px;
  }
}
.section.section--faq-header {
  padding-top: 125px;
  padding-bottom: 130px;
}

.section.section--poster {
  background: #FEDD00;
  overflow: visible;
}

@media all and (min-width: 768px) {
  .section.section--poster {
    background: none;
  }
}
@media all and (min-width: 1200px) {
  .section.section--seo-block {
    padding-bottom: 11rem;
  }
}
.hero {
  position: relative;
}

.hero .hero__wrap {
  width: 100%;
  height: 100%;
  padding: 30px 0 0;
}

.hero .hero__wrap .container {
  padding-left: 0;
  padding-right: 0;
  height: 100%;
}

@media all and (min-width: 1200px) {
  .hero .hero__wrap {
    padding-top: 64px;
  }
}
@media all and (min-width: 1200px) {
  .hero {
    height: 0;
    padding: 0 0 61.5%;
  }

  .hero .hero__wrap {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 50px;
  }
}
.hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-title {
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.34;
  color: #FEDD00;
  text-transform: uppercase;
  font-size: 42px;
  position: relative;
  margin-bottom: 70px;
  z-index: 40;
}

.hero-title .hero-title__row {
  position: relative;
}

.hero-title .hero-title__row.hero-title__row--second {
  margin-left: 24.5%;
}

@media all and (min-width: 768px) {
  .hero-title {
    font-size: 90px;
    line-height: 1;
    margin-bottom: 70px;
  }

  .hero-title .hero-title__row.hero-title__row--second {
    margin-left: 24.5%;
  }
}
@media all and (min-width: 1200px) {
  .hero-title {
    position: absolute;
    top: 8%;
    left: 6%;
    margin-bottom: 0;
  }
}
.hero-decoration.hero-decoration--first {
  display: none;
  position: absolute;
  z-index: 5;
}

.hero-decoration.hero-decoration--second {
  width: 98%;
  position: absolute;
  top: 34%;
  right: -16%;
  z-index: 5;
}

.hero-decoration img {
  display: block;
  width: 100%;
  height: auto;
}

@media all and (min-width: 768px) {
  .hero-decoration.hero-decoration--second {
    width: 65%;
    top: 40%;
    right: -1%;
  }
}
@media all and (min-width: 1200px) {
  .hero-decoration.hero-decoration--first {
    display: block;
    width: 50.66%;
    right: auto;
    top: 30%;
    left: 10%;
  }

  .hero-decoration.hero-decoration--second {
    display: none;
  }
}
.hero-play-button {
  display: none;
  width: 123px;
  height: 123px;
  margin-top: 5%;
}

.hero-play-button img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-play-button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media all and (min-width: 1200px) {
  .hero-play-button {
    display: block;
  }
}
.hero-photo {
  width: 69.33%;
  height: auto;
  margin-top: 5%;
  margin-bottom: 55px;
  position: relative;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 20;
}

.hero-photo .hero-photo__title {
  position: relative;
  top: -50px;
  font-size: 1.1rem;
  line-height: 1;
  height: 1px;
  color: #FEDD00;
  text-transform: none;
}

.hero-photo .hero-photo__decoration {
  height: auto;
  position: absolute;
}

.hero-photo .hero-photo__decoration.hero-photo__decoration--first {
  width: 27.67%;
  top: -8%;
  right: -7%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: 30;
}

.hero-photo .hero-photo__decoration.hero-photo__decoration--second {
  width: 61.92%;
  top: -18%;
  left: -10%;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  z-index: 15;
}

.hero-photo .hero-photo__decoration.hero-photo__decoration-third {
  display: none;
  z-index: 10;
}

@media all and (min-width: 768px) {
  .hero-photo {
    position: relative;
    width: 58.46%;
    margin-bottom: 63px;
    margin-top: 2.5%;
  }

  .hero-photo .hero-photo__decoration.hero-photo__decoration--first {
    -webkit-transform: none;
            transform: none;
    width: 27.67%;
    top: -8%;
    right: auto;
    left: -7%;
  }

  .hero-photo .hero-photo__decoration.hero-photo__decoration--second {
    width: 64.91%;
    top: -24%;
    left: 30%;
  }
}
@media all and (min-width: 1200px) {
  .hero-photo {
    position: absolute;
    top: 5.95%;
    right: 4.75%;
    width: 37.42%;
  }

  .hero-photo .hero-photo__decoration.hero-photo__decoration--first {
    width: 27.67%;
    top: -8%;
    left: -7%;
  }

  .hero-photo .hero-photo__decoration.hero-photo__decoration--second {
    width: 83.07%;
    top: auto;
    bottom: -21%;
    left: -17%;
  }

  .hero-photo .hero-photo__decoration.hero-photo__decoration-third {
    display: block;
    width: 6.19%;
    top: 11%;
    right: -2%;
    -webkit-transform: translate(100%, 100%);
            transform: translate(100%, 100%);
  }
}
.hero-photo__button {
  position: absolute;
  bottom: 0;
  right: -50px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 30;
}

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

.hero-photo__button .button.button--large {
  display: none;
}

@media all and (min-width: 768px) {
  .hero-photo__button {
    bottom: 0;
    right: -50px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }

  .hero-photo__button .button {
    display: none;
  }

  .hero-photo__button .button.button--large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 1200px) {
  .hero-photo__button {
    bottom: 0;
    right: -5px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.catalog {
  padding-left: 14px;
  padding-right: 14px;
}

.catalog .catalog__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: -2px;
  margin-right: -2px;
}

.catalog .catalog__pagiantion {
  background: #171615;
  position: relative;
  padding-top: 10px;
  padding-bottom: 80px;
}

.catalog .catalog__pagiantion:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #171615;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .catalog {
    padding-left: 15px;
    padding-right: 15px;
  }

  .catalog .catalog__wrap {
    margin-left: -2.5px;
    margin-right: -2.5px;
  }

  .catalog .catalog__pagiantion {
    padding-top: 27px;
    padding-bottom: 40px;
  }
}
@media all and (min-width: 1200px) {
  .catalog .catalog__wrap {
    margin-left: -5px;
    margin-right: -5px;
  }

  .catalog .catalog__pagiantion {
    padding-top: 30px;
    padding-bottom: 35px;
  }
}
@media all and (min-width: 768px) {
  .catalog--together .catalog-product:nth-child(3n+3) {
    display: none;
  }
}
@media all and (min-width: 1200px) {
  .catalog--together .catalog-product:nth-child(3n+3) {
    display: block;
  }
}
.catalog-load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.catalog-product {
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-left: 7px;
  padding-right: 7px;
}

.catalog-product .catalog-product__photo {
  width: 100%;
  height: 0;
  padding-bottom: 123%;
  position: relative;
}

@media all and (min-width: 768px) {
  .catalog-product {
    width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .catalog-product .catalog-product__photo {
    padding-bottom: 80%;
  }
}
@media all and (min-width: 1200px) {
  .catalog-product {
    width: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
  }

  .catalog-product .catalog-product__photo {
    padding-bottom: 123%;
  }

  .catalog-product.catalog-product--50 {
    width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .catalog-product.catalog-product--50 .catalog-product__photo {
    padding-bottom: 81%;
  }
}
.catalog-product-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #171615;
}

.catalog-product-thumbnail img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  background: #171615;
}

.catalog-product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3px 14px;
}

.catalog-product__info.catalog-product__info--before {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.catalog-product__info.catalog-product__info--after {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media all and (min-width: 768px) {
  .catalog-product__info {
    min-height: 28px;
  }
}
@media all and (min-width: 1200px) {
  .catalog-product__info {
    min-height: 45px;
  }
}
.catalog-product-info {
  font-size: 8px;
  line-height: 1.7;
  color: #7D7D7D;
  text-shadow: 0 0 2px #7D7D7D;
  text-transform: uppercase;
  text-align: center;
}

.catalog-product-info.catalog-product-info--article-title .icon {
  height: 6px;
  width: 14px;
  margin-top: 3px;
}

.catalog-product-info:first-child {
  text-align: left;
}

.catalog-product-info:last-child {
  text-align: right;
}

.catalog-product__footer {
  position: relative;
  padding-top: 20px;
  padding-bottom: 86px;
}

.catalog-product__footer:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200vw;
  height: 100%;
  background: #171615;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .catalog-product__footer {
    padding-top: 21px;
    padding-bottom: 86px;
  }
}
@media all and (min-width: 1200px) {
  .catalog-product__footer {
    padding-top: 20px;
    padding-bottom: 106px;
  }
}
.catalog-product-title {
  font-size: 13.25px;
  line-height: 1;
  color: #FBFBFB;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0;
}

.catalog-product-title a {
  color: inherit;
  text-decoration: none;
}

.catalog-product-title a:hover {
  color: #FEDD00;
}

.catalog-product-data {
  position: relative;
  z-index: 2;
}

.catalog-product-price {
  font-size: 13.25px;
  line-height: 1;
  color: #FEDD00;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin: 16px 0 0;
}

.catalog-product-variations {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13.25px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin: 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.catalog-product-variation {
  display: block;
  margin: 0 12px;
  color: #A7A7A7;
  text-decoration: none;
}

.catalog-product-variation.catalog-product-variation--disabled {
  color: #606060;
  position: relative;
}

.catalog-product-variation.catalog-product-variation--disabled:after {
  display: block;
  position: absolute;
  top: 50%;
  left: -20%;
  height: 0;
  width: 140%;
  border-bottom: 1px solid #606060;
  content: "";
  margin-top: -1px;
}

a.catalog-product-variation:hover {
  color: #FEDD00;
}

.community {
  display: block;
}

.community .community__image {
  display: block;
  height: 75vh;
}

.community img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (min-width: 768px) {
  .community {
    padding-bottom: 180px;
  }
}
.community-2__wrap {
  position: relative;
  padding-bottom: 30px;
}

.community-2-title {
  color: #FEDD00;
  font-size: 42px;
  line-height: 1.1;
  text-align: center;
}

.community-2-title br {
  display: none;
}

@media all and (min-width: 768px) {
  .community-2-title {
    font-size: 70px;
    line-height: 1.1;
    text-align: left;
  }
}
@media all and (min-width: 1200px) {
  .community-2-title {
    font-size: 130px;
    line-height: 1;
  }

  .community-2-title br {
    display: block;
  }
}
.community-2-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 20px;
  margin-top: 37px;
  position: relative;
  z-index: 3;
}

.community-2-photos picture {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media all and (min-width: 768px) {
  .community-2-photos {
    padding-left: 24%;
  }
}
@media all and (min-width: 1200px) {
  .community-2-photos {
    padding-left: 40%;
    margin-top: -40px;
  }
}
.community-2-photo {
  display: block;
  width: 233px;
  height: 284px;
}

.community-2-photo.community-2-photo--second {
  margin-left: 30px;
}

@media all and (min-width: 768px) {
  .community-2-photo {
    width: 370px;
    height: 451px;
  }

  .community-2-photo.community-2-photo--second {
    margin-left: 50px;
  }
}
@media all and (min-width: 1200px) {
  .community-2-photo {
    margin-top: -30px;
  }
}
.community-2-decoration-1 {
  position: absolute;
  z-index: 1;
  height: 324px;
  width: 356px;
  left: 14%;
  top: 20%;
}

@media all and (min-width: 1200px) {
  .community-2-decoration-1 {
    width: 370px;
    height: 336px;
    top: auto;
    bottom: 0;
    left: 10.85%;
  }
}
.community-2-decoration-2 {
  display: none;
  position: absolute;
  z-index: 1;
  width: 314px;
  height: 170px;
  top: 29%;
  right: -7.5%;
  -webkit-transform: rotate(-26.04deg);
          transform: rotate(-26.04deg);
}

@media all and (min-width: 768px) {
  .community-2-decoration-2 {
    display: block;
  }
}
@media all and (min-width: 1200px) {
  .community-2-decoration-2 {
    width: 370px;
    height: 336px;
    top: 16.3%;
    right: 11.8%;
  }
}
.community-2-decoration-3 {
  display: none;
  position: absolute;
  z-index: 1;
  height: 67.24px;
  width: 98.8px;
  top: 34%;
  left: 5%;
  -webkit-transform: rotate(35.81deg) scale(-1);
          transform: rotate(35.81deg) scale(-1);
}

@media all and (min-width: 768px) {
  .community-2-decoration-3 {
    display: block;
  }
}
@media all and (min-width: 1200px) {
  .community-2-decoration-3 {
    top: 8%;
    left: auto;
    right: 30%;
    -webkit-transform: rotate(11.46deg) scale(-1);
            transform: rotate(11.46deg) scale(-1);
  }
}
.catalog-filter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 6666;
}

.catalog-filter__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.catalog-filter-column {
  width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.catalog-filter-column .button {
  border-right-width: 1px;
}

.catalog-filter-column + .catalog-filter-column .button {
  border-right-width: 2px;
  border-left-width: 1px;
}

.filter-dropdown {
  position: relative;
}

.filter-dropdown.filter-dropdown--open .catalog-filter-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  z-index: 2;
}

.filter-dropdown.filter-dropdown--right .catalog-filter-dropdown {
  left: auto;
  right: 0;
}

.catalog-filter-dropdown {
  display: none;
  width: 100vw;
  height: 100vh;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 48px;
}

.catalog-filter-dropdown .catalog-filter-dropdown__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.catalog-filter-dropdown .catalog-filter-dropdown__back {
  position: absolute;
  top: 20px;
  left: 20px;
}

.catalog-filter-dropdown .catalog-filter-dropdown__wrap {
  padding: 60px 0 50px;
  background: #0F0E0E;
  width: 100%;
}

.catalog-filter-dropdown .catalog-filter-dropdown__wrap--multiple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.catalog-filter-dropdown .catalog-filter-dropdown__wrap--multiple .filter-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  overflow: hidden;
}

.catalog-filter-dropdown .catalog-filter-dropdown__wrap--multiple .filter-list.filter-list--inline {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

@media all and (min-width: 768px) {
  .catalog-filter-dropdown {
    width: 100%;
    height: auto;
    max-height: 100vh;
  }

  .catalog-filter-dropdown .catalog-filter-dropdown__wrap {
    padding: 45px 0;
    border: 2px solid #FEDD00;
  }
}
.filter-list {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  position: relative;
}

.filter-list .filter-list__label {
  text-transform: uppercase;
  color: #A7A7A7;
  font-size: 16px;
  padding: 12px 0;
}

.filter-list .filter-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 14px 20px;
  color: #FEDD00;
  text-transform: uppercase;
}

.filter-list .filter-list__header .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

@media all and (min-width: 768px) {
  .filter-list .filter-list__header {
    padding: 12px 75px;
    margin-bottom: 10px;
  }
}
.filter-list .filter-list__item {
  display: block;
  margin: 0;
}

.filter-list .filter-list__item .checkbox,
.filter-list .filter-list__item .radio {
  padding: 14px 20px;
}

.filter-list .filter-list__item .checkbox-label,
.filter-list .filter-list__item .radio-label {
  color: #FBFBFB;
}

.filter-list .filter-list__item .checkbox-label .icon,
.filter-list .filter-list__item .radio-label .icon {
  color: #A7A7A7;
}

.filter-list .filter-list__item .filter-list {
  padding: 10px 0 10px 30px;
}

.filter-list .filter-list__item .checkbox-input:checked ~ .icon--checkbox-checked,
.filter-list .filter-list__item .radio-input:checked ~ .icon--checkbox-checked {
  color: #FEDD00;
}

.filter-list .filter-list__item .checkbox-input:checked ~ span,
.filter-list .filter-list__item .radio-input:checked ~ span {
  color: #FEDD00;
}

.filter-list .filter-list__item.filter-list__item--checked > .checkbox > .checkbox-label,
.filter-list .filter-list__item.filter-list__item--checked > .checkbox > .radio-label,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .checkbox-label,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .radio-label {
  color: #FEDD00;
}

.filter-list .filter-list__item.filter-list__item--checked > .checkbox > .checkbox-label > .icon,
.filter-list .filter-list__item.filter-list__item--checked > .checkbox > .radio-label > .icon,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .checkbox-label > .icon,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .radio-label > .icon {
  color: #FEDD00;
}

@media all and (min-width: 768px) {
  .filter-list .filter-list__item .checkbox,
.filter-list .filter-list__item .radio {
    padding: 12px 75px;
  }

  .filter-list .filter-list__item.filter-list__item--checked > .checkbox,
.filter-list .filter-list__item.filter-list__item--checked > .radio {
    background: #FEDD00;
  }

  .filter-list .filter-list__item.filter-list__item--checked > .checkbox > .checkbox-label,
.filter-list .filter-list__item.filter-list__item--checked > .checkbox > .radio-label,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .checkbox-label,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .radio-label {
    color: #171615;
  }

  .filter-list .filter-list__item.filter-list__item--checked > .checkbox > .checkbox-label > .icon,
.filter-list .filter-list__item.filter-list__item--checked > .checkbox > .radio-label > .icon,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .checkbox-label > .icon,
.filter-list .filter-list__item.filter-list__item--checked > .radio > .radio-label > .icon {
    color: #171615;
  }

  .filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .checkbox,
.filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .radio {
    background: transparent;
  }

  .filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .checkbox .checkbox-label,
.filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .checkbox .radio-label,
.filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .radio .checkbox-label,
.filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .radio .radio-label {
    color: #FEDD00;
  }

  .filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .checkbox .checkbox-label .icon,
.filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .checkbox .radio-label .icon,
.filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .radio .checkbox-label .icon,
.filter-list .filter-list__item.filter-list__item--checked .filter-list .filter-list__item--checked .radio .radio-label .icon {
    color: #FEDD00;
  }
}
.filter-list.filter-list--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 20px;
  height: auto;
}

.filter-list.filter-list--inline:after {
  display: block;
  content: "";
  width: 100%;
  border-top: 2px solid #A7A7A7;
  margin: 27px 25% 27px 0;
}

.filter-list.filter-list--inline .filter-list__label {
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.filter-list.filter-list--inline .filter-list__item {
  padding: 0;
  margin-right: 9px;
}

.filter-list.filter-list--inline .filter-list__item .checkbox,
.filter-list.filter-list--inline .filter-list__item .radio {
  padding: 0;
}

@media all and (min-width: 768px) {
  .filter-list.filter-list--inline {
    padding: 0 75px;
  }
}
.filter-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.product-page {
  background: #0F0E0E;
}

.product-page .container {
  padding-left: 0;
  padding-right: 0;
  z-index: 3;
}

@media all and (min-width: 1200px) {
  .product-page {
    background: transparent;
  }
}
.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.product .breadcrumbs {
  position: absolute;
  top: 66px;
  left: 40px;
  z-index: 4;
}

@media all and (min-width: 1200px) {
  .product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .product .breadcrumbs {
    position: static;
    margin: 0 0 87px;
  }
}
.product--grouped {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.product--grouped .product-gallery {
  width: 100%;
}

@media all and (min-width: 1200px) {
  .product--grouped .product-gallery {
    height: 100%;
    padding-bottom: 0;
  }
}
.product__column {
  width: 100%;
}

.product__column.product__column--gallery {
  position: relative;
}

.product__column.product__column--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 22px;
  padding: 13px 20px 0;
}

@media all and (min-width: 768px) {
  .product__column.product__column--info {
    display: block;
    text-align: left;
    margin-bottom: 50px;
    padding: 30px 40px 0;
  }
}
@media all and (min-width: 1024px) {
  .product__column.product__column--info {
    padding: 30px 15px 0;
  }
}
@media all and (min-width: 1200px) {
  .product__column {
    width: 50%;
    margin-bottom: 50px;
  }

  .product__column.product__column--info {
    padding: 100px 0 0 60px;
  }
}
.product-article {
  color: #606060;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 17px;
  padding: 0;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.product-title {
  margin: 0 0 5px;
  color: #FBFBFB;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.product-title h1 {
  text-align: center;
  font-size: 20px;
}

@media all and (min-width: 768px) {
  .product-title {
    margin-bottom: 13px;
  }

  .product-title h1 {
    text-align: left;
    font-size: 53px;
  }
}
@media all and (min-width: 768px) {
  .product-title h1 {
    font-size: 34px;
  }
}
.product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 5px;
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (min-width: 768px) {
  .product-prices {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 31px;
  }
}
@media all and (min-width: 1200px) {
  .product-prices {
    margin-bottom: 0;
  }
}
.product-price {
  color: #FEDD00;
  font-weight: 400;
  letter-spacing: 0.15em;
  font-size: 22px;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-price.product-price--old {
  position: relative;
  color: #606060;
}

.product-price.product-price--old:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 0;
  width: 100%;
  border-bottom: 2px solid #606060;
  content: "";
  margin-top: -1px;
}

@media all and (min-width: 768px) {
  .product-price {
    font-size: 34px;
    line-height: 1.2;
  }

  .product-price.product-price--old {
    margin-right: 25px;
  }
}
.product-info {
  margin-top: 47px;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

@media all and (min-width: 768px) {
  .product-info {
    margin-bottom: 80px;
  }
}
.product-gallery {
  display: block;
  position: relative;
  width: 100%;
  z-index: 3;
  margin-bottom: 100px;
}

.product-gallery .slick-list {
  height: 100%;
}

.product-gallery .slick-track {
  height: 100%;
}

@media all and (min-width: 768px) {
  .product-gallery {
    margin-bottom: 0;
  }
}
@media all and (min-width: 1200px) {
  .product-gallery {
    height: 0;
    padding-bottom: 121%;
  }
}
.product-gallery__wrap {
  display: block;
  width: 100%;
  height: 100%;
}

@media all and (min-width: 1200px) {
  .product-gallery__wrap {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.product-photo {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media all and (min-width: 1200px) {
  .product-photo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.product-thumbnails {
  display: block;
  position: absolute;
  bottom: -90px;
  left: 10%;
  height: 80px;
  width: 80%;
}

.product-thumbnails .product-thumbnail {
  height: 100%;
}

@media all and (min-width: 768px) {
  .product-thumbnails {
    top: 50%;
    bottom: auto;
    left: 37px;
    width: 40px;
    height: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
  }

  .product-thumbnails .slick-list {
    width: 100%;
  }

  .product-thumbnails .product-thumbnail {
    height: 60px;
  }
}
.product-thumbnail {
  display: block;
  cursor: pointer;
  opacity: 0.5;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  width: auto;
  height: 100%;
  margin: 0 4px;
}

.product-thumbnail.product-thumbnail--active, .product-thumbnail.slick-current {
  opacity: 1;
  background: none;
}

.product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .product-thumbnail {
    width: 40px;
    height: 60px;
    margin: 4px 0;
  }
}
.product-short-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #0C0C0B;
  width: 100%;
  height: 20px;
  padding: 5px 25px;
}

.product-short-info.product-short-info--after {
  display: none;
}

@media all and (min-width: 768px) {
  .product-short-info {
    height: 67px;
    padding: 5px 40px;
  }
}
@media all and (min-width: 1200px) {
  .product-short-info {
    display: block;
    width: 17px;
    height: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    z-index: 5;
  }

  .product-short-info.product-short-info--before {
    left: 0;
  }

  .product-short-info.product-short-info--after {
    display: block;
    right: 0;
  }
}
.product-short-info__block {
  display: block;
  font-size: 6px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #606060;
  text-transform: uppercase;
}

.product-short-info__block span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  white-space: nowrap;
}

.product-short-info__block .icon {
  width: 13px;
  height: 5px;
}

.product-short-info__block.product-short-info__block--article-icon {
  margin-right: auto;
  margin-left: 5px;
}

@media all and (min-width: 768px) {
  .product-short-info__block {
    font-size: 8px;
  }

  .product-short-info__block .icon {
    width: 23px;
    height: 6px;
  }

  .product-short-info__block.product-short-info__block--article-icon {
    margin-left: 0;
  }
}
@media all and (min-width: 1200px) {
  .product-short-info__block {
    font-size: 7px;
    width: 100%;
    height: 17px;
    position: absolute;
    left: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  .product-short-info__block span {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .product-short-info__block.product-short-info__block--article-title {
    bottom: 230px;
  }

  .product-short-info__block.product-short-info__block--article-icon {
    bottom: 200px;
  }

  .product-short-info__block.product-short-info__block--article-value {
    bottom: 50px;
  }

  .product-short-info__block.product-short-info__block--article {
    top: 60px;
  }

  .product-short-info__block.product-short-info__block--article span {
    right: auto;
    left: 0;
  }

  .product-short-info__block.product-short-info__block--variation {
    bottom: 50%;
  }

  .product-short-info__block.product-short-info__block--title {
    bottom: 50px;
  }
}
.product-add-to-cart {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.product-add-to-cart .button.button--dark {
  background: #FEDD00;
  color: #0F0E0E;
}

.product-add-to-cart .button.button--dark:hover, .product-add-to-cart .button.button--dark:active, .product-add-to-cart .button.button--dark.button--active {
  background: #0F0E0E;
  color: #FEDD00;
}

@media all and (min-width: 768px) {
  .product-add-to-cart .button.button--dark {
    background: #0F0E0E;
    color: #FEDD00;
  }

  .product-add-to-cart .button.button--dark:hover, .product-add-to-cart .button.button--dark:active, .product-add-to-cart .button.button--dark.button--active {
    background: #FEDD00;
    color: #0F0E0E;
  }
}
@media all and (min-width: 1200px) {
  .product-add-to-cart {
    position: absolute;
    width: 50%;
  }
}
.product-back {
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media all and (min-width: 768px) {
  .product-back {
    display: block;
  }
}
@media all and (min-width: 1200px) {
  .product-back {
    position: absolute;
    width: 50%;
  }
}
.product-variations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-bottom: 12px;
}

@media all and (min-width: 768px) {
  .product-variations {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
}
@media all and (min-width: 1200px) {
  .product-variations {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #0F0E0E;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border: 2px solid #FEDD00;
    border-right-width: 0;
    height: 50px;
    z-index: 6;
  }
}
.product-variations-item .radio.radio--pattern .radio-label {
  height: 17px;
}

.product-variations-item .radio.radio--pattern .radio-label span {
  font-size: 14px;
  margin: 0 10px;
  color: #A7A7A7;
  background: transparent;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.product-variations-item .radio.radio--pattern .radio-label span:before, .product-variations-item .radio.radio--pattern .radio-label span:after {
  display: block;
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  -webkit-transform: skew(-22.380135052deg);
          transform: skew(-22.380135052deg);
  background: transparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.product-variations-item .radio.radio--pattern .radio-label span:before {
  left: -5.5px;
}

.product-variations-item .radio.radio--pattern .radio-label span:after {
  right: -5.5px;
}

.product-variations-item .radio.radio--pattern .radio-input:checked ~ span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.product-variations-item .radio.radio--pattern .radio-input:checked ~ span:before, .product-variations-item .radio.radio--pattern .radio-input:checked ~ span:after {
  display: block;
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  -webkit-transform: skew(-22.380135052deg);
          transform: skew(-22.380135052deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.product-variations-item .radio.radio--pattern .radio-input:checked ~ span:before {
  left: -5.5px;
}

.product-variations-item .radio.radio--pattern .radio-input:checked ~ span:after {
  right: -5.5px;
}

.product-variations-item .radio.radio--pattern .radio-input:disabled ~ span {
  position: relative;
  color: #606060;
  background: none;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:before, .product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:after {
  display: block;
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  -webkit-transform: skew(-22.380135052deg);
          transform: skew(-22.380135052deg);
  background: transparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:before {
  left: -5.5px;
}

.product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:after {
  right: -5.5px;
}

.product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:after {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 10%;
  right: auto;
  content: "";
  width: 80%;
  height: 0;
  border: none;
  border-bottom: 1px solid #606060;
}

.product-variations-item .radio.radio--pattern.radio--checked .radio-label span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.product-variations-item .radio.radio--pattern.radio--checked .radio-label span:before, .product-variations-item .radio.radio--pattern.radio--checked .radio-label span:after {
  display: block;
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  -webkit-transform: skew(-22.380135052deg);
          transform: skew(-22.380135052deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.product-variations-item .radio.radio--pattern.radio--checked .radio-label span:before {
  left: -5.5px;
}

.product-variations-item .radio.radio--pattern.radio--checked .radio-label span:after {
  right: -5.5px;
}

@media all and (min-width: 768px) {
  .product-variations-item .radio.radio--pattern .radio-label {
    height: 33px;
  }

  .product-variations-item .radio.radio--pattern .radio-label span {
    font-size: 18px;
    margin: 0 14px;
    position: relative;
    -webkit-transition: none;
    transition: none;
  }

  .product-variations-item .radio.radio--pattern .radio-label span:before, .product-variations-item .radio.radio--pattern .radio-label span:after {
    display: block;
    content: "";
    width: 16px;
    height: 33px;
    position: absolute;
    -webkit-transform: skew(-22.9887168021deg);
            transform: skew(-22.9887168021deg);
    background: transparent;
    top: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .product-variations-item .radio.radio--pattern .radio-label span:before {
    left: -9px;
  }

  .product-variations-item .radio.radio--pattern .radio-label span:after {
    right: -9px;
  }

  .product-variations-item .radio.radio--pattern .radio-input:checked ~ span {
    position: relative;
    -webkit-transition: none;
    transition: none;
  }

  .product-variations-item .radio.radio--pattern .radio-input:checked ~ span:before, .product-variations-item .radio.radio--pattern .radio-input:checked ~ span:after {
    display: block;
    content: "";
    width: 16px;
    height: 33px;
    position: absolute;
    -webkit-transform: skew(-22.9887168021deg);
            transform: skew(-22.9887168021deg);
    background: #FEDD00;
    top: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .product-variations-item .radio.radio--pattern .radio-input:checked ~ span:before {
    left: -9px;
  }

  .product-variations-item .radio.radio--pattern .radio-input:checked ~ span:after {
    right: -9px;
  }

  .product-variations-item .radio.radio--pattern .radio-input:disabled ~ span {
    position: relative;
    -webkit-transition: none;
    transition: none;
  }

  .product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:before, .product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:after {
    display: block;
    content: "";
    width: 16px;
    height: 33px;
    position: absolute;
    -webkit-transform: skew(-22.9887168021deg);
            transform: skew(-22.9887168021deg);
    background: transparent;
    top: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:before {
    left: -9px;
  }

  .product-variations-item .radio.radio--pattern .radio-input:disabled ~ span:after {
    right: -9px;
  }

  .product-variations-item .radio.radio--pattern.radio--checked .radio-label span {
    position: relative;
    -webkit-transition: none;
    transition: none;
  }

  .product-variations-item .radio.radio--pattern.radio--checked .radio-label span:before, .product-variations-item .radio.radio--pattern.radio--checked .radio-label span:after {
    display: block;
    content: "";
    width: 16px;
    height: 33px;
    position: absolute;
    -webkit-transform: skew(-22.9887168021deg);
            transform: skew(-22.9887168021deg);
    background: #FEDD00;
    top: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .product-variations-item .radio.radio--pattern.radio--checked .radio-label span:before {
    left: -9px;
  }

  .product-variations-item .radio.radio--pattern.radio--checked .radio-label span:after {
    right: -9px;
  }
}
.product-grouped-info {
  margin-top: 47px;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

@media all and (min-width: 768px) {
  .product-grouped-info {
    margin-bottom: 47px;
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.breadcrumbs__item {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0 8px 0 0;
  text-transform: uppercase;
}

.breadcrumbs-link {
  display: block;
  color: #A7A7A7;
  text-decoration: none;
}

.breadcrumbs-link:hover {
  color: #FEDD00;
}

.breadcrumbs-separator {
  color: #FBFBFB;
}

.breadcrumbs-span {
  color: #FBFBFB;
  cursor: default;
}

.toggle-block {
  border-top: 2px solid #313131;
  padding-bottom: 14px;
}

.toggle-block:last-child {
  border-bottom: 2px solid #313131;
}

.toggle-block.toggle-block--open .toggle-block__name {
  color: #FBFBFB;
}

.toggle-block.toggle-block--open .toggle-block__name .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.toggle-block.toggle-block--open .toggle-block__content {
  display: block;
}

.toggle-block__name {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A7A7A7;
  padding: 14px 20px 0 0;
  position: relative;
  cursor: pointer;
}

.toggle-block__name:hover {
  color: #FEDD00;
}

.toggle-block__name .icon {
  display: block;
  position: absolute;
  top: 16px;
  right: 0;
  width: 15px;
  height: 15px;
}

.toggle-block__content {
  display: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  padding: 20px 0 27px 0;
}

.toggle-block__content p {
  margin: 0 0 13px;
  padding: 0;
}

.toggle-block__content ul li {
  display: block;
  position: relative;
  padding: 0 0 0 21px;
  margin: 0;
}

.toggle-block__content ul li:before {
  top: 9px;
  left: 9px;
  width: 2px;
  height: 2px;
  background: #FBFBFB;
}

.toggle-block__content ul li + li {
  margin-top: 8px;
}

.size-grid {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (min-width: 1024px) {
  .size-grid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.size-grid__table {
  width: auto;
  max-width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (min-width: 768px) {
  .size-grid__table {
    width: auto;
  }
}
@media all and (min-width: 1024px) {
  .size-grid__table {
    width: auto;
    max-width: 75%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media all and (min-width: 1200px) {
  .size-grid__table {
    width: 100%;
    max-width: 60%;
  }
}
.size-grid__image {
  padding: 0 35px;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 30px;
}

.size-grid__image img {
  display: block;
  width: 100%;
  height: auto;
}

@media all and (min-width: 768px) {
  .size-grid__image {
    width: 33%;
  }
}
@media all and (min-width: 1024px) {
  .size-grid__image {
    width: 25%;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media all and (min-width: 1200px) {
  .size-grid__image {
    width: 40%;
  }
}
.together {
  margin-top: 150px;
  margin-bottom: 100px;
}

@media all and (min-width: 768px) {
  .together {
    margin-top: 170px;
  }
}
.together__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

@media all and (min-width: 1200px) {
  .together__wrap {
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.together-column.together-column--info {
  width: 100%;
}

.together-column.together-column--photos {
  position: absolute;
  top: 190px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (min-width: 768px) {
  .together-column.together-column--info {
    width: 62%;
  }

  .together-column.together-column--photos {
    width: 100%;
  }
}
@media all and (min-width: 1200px) {
  .together-column.together-column--info {
    width: 43%;
  }

  .together-column.together-column--photos {
    position: static;
    width: 57%;
  }
}
.together-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 4px;
  color: #FEDD00;
  margin-bottom: 450px;
  text-align: center;
}

.together-title.together-title--catalog {
  margin-bottom: 28px;
}

@media all and (min-width: 768px) {
  .together-title {
    font-size: 70px;
    line-height: 1.1;
    text-align: left;
    margin-bottom: 500px;
  }
}
@media all and (min-width: 1200px) {
  .together-title {
    margin-bottom: 28px;
  }
}
.together-product-title {
  display: inline-block;
  color: #FBFBFB;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  width: 100%;
  text-align: center;
}

.together-product-title .icon {
  display: none;
  width: 24px;
  height: 24px;
  vertical-align: top;
  margin-top: 8px;
}

@media all and (min-width: 768px) {
  .together-product-title {
    font-size: 34px;
    line-height: 1.2;
    width: auto;
    margin-bottom: 28px;
    text-align: left;
  }

  .together-product-title .icon {
    display: inline-block;
  }
}
.together-product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 5px;
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (min-width: 768px) {
  .together-product-prices {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 31px;
  }
}
@media all and (min-width: 1200px) {
  .together-product-prices {
    margin-bottom: 0;
  }
}
.together-product-price {
  color: #FEDD00;
  font-weight: 400;
  letter-spacing: 0.15em;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}

.together-product-price.together-product-price--old {
  position: relative;
  color: #606060;
  margin-right: 20px;
}

.together-product-price.together-product-price--old:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 0;
  width: 100%;
  border-bottom: 2px solid #606060;
  content: "";
  margin-top: -1px;
}

@media all and (min-width: 768px) {
  .together-product-price {
    font-size: 34px;
    line-height: 1.2;
  }

  .together-product-price.together-product-price--old {
    margin-right: 25px;
  }
}
.together-product-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.together-product-photos__plus {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29.86px;
  height: 29.94px;
  margin-left: 14px;
  z-index: 2;
}

.together-product-photo {
  display: block;
  vertical-align: top;
  height: 222px;
  width: 245px;
  padding: 18px 8px;
  background: #0F0E0E;
  position: relative;
}

.together-product-photo.together-product-photo--first {
  -webkit-transform: rotate(-5.71deg);
          transform: rotate(-5.71deg);
}

.together-product-photo.together-product-photo--second {
  -webkit-transform: rotate(9.15deg);
          transform: rotate(9.15deg);
  margin-left: -63px;
  margin-top: 109px;
}

@media all and (min-width: 768px) {
  .together-product-photo {
    width: 331.81px;
    height: 300.31px;
    padding: 25px 10px;
  }
}
.together-product-photo__img {
  width: 100%;
  height: 100%;
  background: #171615;
}

.together-product-photo__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.together-product-photo__info {
  position: absolute;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
}

.together-product-photo__info.together-product-photo__info--before {
  top: 10px;
}

.together-product-photo__info.together-product-photo__info--after {
  bottom: 10px;
}

@media all and (min-width: 768px) {
  .together-product-photo__info.together-product-photo__info--before {
    top: 15px;
  }

  .together-product-photo__info.together-product-photo__info--after {
    bottom: 15px;
  }
}
.together-product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 5px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: #7D7D7D;
}

.together-product-info .icon {
  height: 3px;
  width: 9px;
  margin-left: 2px;
}

.notifications {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.notification {
  min-width: 320px;
  background: #0F0E0E;
  padding: 30px 20px;
  border: 2px solid #FEDD00;
}

.notification-inner {
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1325;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FEDD00;
}

.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #0F0E0E;
  z-index: 9999;
}

.cart-modal.cart-modal--open {
  display: block;
}

@media all and (min-width: 768px) {
  .cart-modal {
    width: 75%;
  }
}
@media all and (min-width: 1200px) {
  .cart-modal {
    width: 50%;
    max-width: 600px;
  }
}
.cart-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 15px;
  height: 15px;
}

@media all and (min-width: 768px) {
  .cart-modal__close {
    top: 26px;
    right: 37px;
  }
}
@media all and (min-width: 1200px) {
  .cart-modal__close {
    top: 26px;
    right: 12.5%;
  }
}
.cart-modal__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 20px 69px;
}

@media all and (min-width: 768px) {
  .cart-modal__wrap {
    padding: 71px 40px 96px;
  }
}
@media all and (min-width: 1200px) {
  .cart-modal__wrap {
    padding: 72px 12.5% 69px;
  }
}
.cart-header {
  width: 100%;
}

.cart-contents {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}

.cart-footer {
  padding: 18px 0 40px;
  margin-right: 5px;
  margin-top: 10px;
  border-top: 2px solid #313131;
}

@media all and (min-width: 1024px) {
  .cart-footer {
    margin-top: 30px;
  }
}
.cart-view-title {
  font-weight: 400;
  letter-spacing: 4px;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 15px;
  padding: 0;
  color: #FEDD00;
  text-transform: uppercase;
}

@media all and (min-width: 768px) {
  .cart-view-title {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 25px;
  }
}
@media all and (min-width: 1200px) {
  .cart-view-title {
    margin-bottom: 11px;
  }
}
.cart-view-title.cart-view-title--smaller {
  font-size: 16px;
  line-height: 1.5;
}

@media all and (min-width: 768px) {
  .cart-view-title.cart-view-title--smaller {
    font-size: 18px;
  }
}
@media all and (min-width: 1200px) {
  .cart-view-title.cart-view-title--smaller {
    font-size: 20px;
  }
}
.cart-total {
  font-size: 16px;
  line-height: 1.5;
  color: #FBFBFB;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.cart-delivery {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #A7A7A7;
  font-weight: 400;
  margin: 0 0 11px;
}

.cart-promocode .cart-promocode__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

.cart-promocode .cart-promocode__link span {
  display: block;
  border-bottom: 1px solid #FEDD00;
}

.cart-promocode .cart-promocode__link .icon {
  width: 9px;
  height: 9px;
  margin-left: 5px;
}

.cart-promocode .cart-promocode__field {
  display: none;
  padding: 10px 0 0;
}

.cart-promocode.cart-promocode--open .cart-promocode__link {
  color: #FBFBFB;
}

.cart-promocode.cart-promocode--open .cart-promocode__link span {
  border-bottom-color: #FBFBFB;
}

.cart-promocode.cart-promocode--open .cart-promocode__link .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.cart-promocode.cart-promocode--open .cart-promocode__field {
  display: block;
}

.cart-promocode-input {
  display: block;
  padding: 0 12px;
  margin: 0;
  width: 100%;
  height: 39px;
  border: 2px solid #FEDD00;
  background: #0F0E0E;
  outline: none;
  font-size: 14px;
  line-height: 1.7;
  color: #FBFBFB;
}

.cart-promocode-input::-webkit-input-placeholder {
  color: #A7A7A7;
}

.cart-promocode-input:-moz-placeholder {
  color: #A7A7A7;
}

.cart-promocode-input::-moz-placeholder {
  color: #A7A7A7;
}

.cart-promocode-input:-ms-input-placeholder {
  color: #A7A7A7;
}

.cart-button {
  width: 100%;
}

.cart-button.cart-button--fixed {
  position: absolute;
  bottom: 0;
  left: 0;
}

.cart-buttons {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px 0;
}

.cart-product__thumbnail {
  width: 33%;
}

.cart-product__info {
  width: 67%;
  padding-left: 20px;
}

.cart-product-photo {
  width: 100%;
  height: 0;
  padding: 0 0 125%;
  position: relative;
  background: #171615;
}

.cart-product-photo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cart-product-title {
  display: inline-block;
  text-decoration: none;
  color: #FBFBFB;
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 11px;
  text-transform: uppercase;
}

.cart-product-title:hover {
  color: #FEDD00;
}

.cart-product-price {
  font-size: 16px;
  line-height: 1.5;
  color: #FBFBFB;
  margin: 0 0 11px;
}

.cart-product-price.cart-product-price--old {
  position: relative;
  color: #606060;
}

.cart-product-price.cart-product-price--old:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 0;
  width: 100%;
  border-bottom: 1px solid #606060;
  content: "";
  margin-top: -1px;
}

.cart-product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 0 11px;
}

.cart-product-prices .cart-product-price {
  margin-bottom: 0;
}

.cart-product-prices .cart-product-price + .cart-product-price--old {
  margin-left: 10px;
}

.cart-product-prices .cart-product-price--old + .cart-product-price {
  margin-left: 10px;
}

.cart-product-variations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 13px;
}

.cart-product-variation .radio.radio--pattern .radio-label {
  height: 16px;
  cursor: default;
}

.cart-product-variation .radio.radio--pattern .radio-label span {
  font-size: 12px;
  margin: 0 6px;
  color: #FBFBFB;
  background: transparent;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.cart-product-variation .radio.radio--pattern .radio-label span:before, .cart-product-variation .radio.radio--pattern .radio-label span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: transparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cart-product-variation .radio.radio--pattern .radio-label span:before {
  left: -5px;
}

.cart-product-variation .radio.radio--pattern .radio-label span:after {
  right: -5px;
}

.cart-product-variation .radio.radio--pattern .radio-input:checked ~ span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.cart-product-variation .radio.radio--pattern .radio-input:checked ~ span:before, .cart-product-variation .radio.radio--pattern .radio-input:checked ~ span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cart-product-variation .radio.radio--pattern .radio-input:checked ~ span:before {
  left: -5px;
}

.cart-product-variation .radio.radio--pattern .radio-input:checked ~ span:after {
  right: -5px;
}

.cart-product-variation .radio.radio--pattern .radio-input:disabled ~ span {
  position: relative;
  color: #606060;
  background: none;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.cart-product-variation .radio.radio--pattern .radio-input:disabled ~ span:before, .cart-product-variation .radio.radio--pattern .radio-input:disabled ~ span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: transparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cart-product-variation .radio.radio--pattern .radio-input:disabled ~ span:before {
  left: -5px;
}

.cart-product-variation .radio.radio--pattern .radio-input:disabled ~ span:after {
  right: -5px;
}

.cart-product-variation .radio.radio--pattern .radio-input:disabled ~ span:after {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 20%;
  right: auto;
  content: "";
  width: 60%;
  height: 0;
  border: none;
  border-bottom: 1px solid #606060;
}

.cart-product-variation .radio.radio--pattern.radio--checked .radio-label span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.cart-product-variation .radio.radio--pattern.radio--checked .radio-label span:before, .cart-product-variation .radio.radio--pattern.radio--checked .radio-label span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cart-product-variation .radio.radio--pattern.radio--checked .radio-label span:before {
  left: -5px;
}

.cart-product-variation .radio.radio--pattern.radio--checked .radio-label span:after {
  right: -5px;
}

.cart-product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #313131;
  height: 28px;
  width: 100px;
  margin: 0 0 11px;
}

.cart-product-quantity__plus,
.cart-product-quantity__field,
.cart-product-quantity__minus {
  height: 100%;
}

.cart-product-quantity-button {
  display: block;
  width: 33px;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  color: #FEDD00;
  background: none;
  cursor: pointer;
}

.cart-product-quantity-button .icon {
  width: 10px;
  height: 10px;
}

.cart-product-quantity__field input {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  background: none;
  -moz-appearance: textfield;
  outline: none;
  color: #FBFBFB;
  text-align: center;
}

.cart-product-quantity__field input::-webkit-outer-spin-button, .cart-product-quantity__field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-product-delete {
  font-size: 12px;
  line-height: 1.7;
}

.cart-product-delete a {
  display: block;
  color: #F94C33;
  text-decoration: none;
  text-transform: uppercase;
}

.cart-product-delete a:hover {
  text-decoration: underline;
}

.cart-product-delete.cart-product-delete--grouped {
  margin-left: 20px;
}

.cart-product--grouped > .cart-product__info {
  width: 100%;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart-product--grouped > .cart-product__info .cart-product-title,
.cart-product--grouped > .cart-product__info .cart-product-prices {
  width: 100%;
}

.cart-product--grouped > .cart-product__info .cart-product-quantity {
  margin-bottom: 0;
  margin-right: 20px;
}

.cart-product-bundle {
  width: 100%;
  border-left: 2px solid #313131;
  padding-left: 20px;
  margin-top: 20px;
}

.cart-product-bundle .cart-product {
  padding: 0;
}

.cart-product-bundle .cart-product + .cart-product {
  margin-top: 20px;
}

.cart-product-bundle .cart-product__thumbnail {
  width: 15%;
}

.cart-product-bundle .cart-product__info {
  width: 85%;
}

.cart-product-bundle .cart-product-variations {
  margin-bottom: 0;
}

.cart-product-bundle .cart-product-title {
  font-size: 10px;
  margin-bottom: 5px;
}

.cart-product-bundle .cart-product-price {
  font-size: 14px;
}

.cart-window {
  display: none;
  position: fixed;
  top: 20vh;
  right: 5%;
  width: 90%;
  height: 60vh;
  background: #0F0E0E;
  z-index: 9999;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
}

.cart-window.cart-window--open {
  display: block;
}

@media all and (min-width: 768px) {
  .cart-window {
    right: 12.5%;
    width: 75%;
  }
}
@media all and (min-width: 1200px) {
  .cart-window {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 50%;
    max-width: 600px;
  }
}
.cart-window__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 15px;
  height: 15px;
}

@media all and (min-width: 768px) {
  .cart-window__close {
    top: 26px;
    right: 40px;
  }
}
@media all and (min-width: 1200px) {
  .cart-window__close {
    top: 26px;
    right: 40px;
  }
}
.cart-window__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}

@media all and (min-width: 768px) {
  .cart-window__wrap {
    padding: 40px;
  }
}
@media all and (min-width: 1200px) {
  .cart-window__wrap {
    padding: 40px;
  }
}
.checkout {
  padding: 0 20px 0;
}

@media all and (min-width: 768px) {
  .checkout {
    padding: 0 40px 0;
  }
}
@media all and (min-width: 1200px) {
  .checkout {
    padding: 0 70px 0;
  }
}
.checkout__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media all and (min-width: 1024px) {
  .checkout__wrap {
    width: 75%;
    margin: 0 auto;
  }
}
@media all and (min-width: 1200px) {
  .checkout__wrap {
    width: 100%;
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }
}
.checkout-column.checkout-column--show-cart .checkout-cart,
.checkout-column.checkout-column--show-cart .checkout-total {
  display: block;
}

.checkout-column.checkout-column--show-cart .checkout-total-switcher .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media all and (min-width: 1200px) {
  .checkout-column {
    padding: 117px 0 100px;
  }
}
.checkout-column.checkout-column--page {
  padding-top: 20px;
  padding-bottom: 30px;
}

@media all and (min-width: 768px) {
  .checkout-column.checkout-column--page {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
@media all and (min-width: 1200px) {
  .checkout-column.checkout-column--page {
    padding-top: 297px;
    padding-bottom: 60px;
  }
}
.checkout-column--form {
  width: 100%;
  padding-top: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media all and (min-width: 768px) {
  .checkout-column--form {
    padding-bottom: 140px;
    padding-top: 50px;
  }
}
@media all and (min-width: 1200px) {
  .checkout-column--form {
    width: 57%;
    max-width: 57%;
    padding-top: 297px;
    padding-right: 75px;
    padding-bottom: 100px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.checkout-column--cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.checkout-column--cart:after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60vw;
  height: 100%;
  background: #0F0E0E;
  z-index: -1;
}

@media all and (min-width: 1200px) {
  .checkout-column--cart {
    padding-left: 70px;
    padding-right: 75px;
    margin-right: -75px;
    background: #0F0E0E;
    position: relative;
    height: 100vh;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .checkout-column--cart:after {
    display: block;
  }
}
.checkout-header {
  padding-top: 81px;
}

@media all and (min-width: 768px) {
  .checkout-header {
    padding-top: 130px;
  }
}
@media all and (min-width: 1200px) {
  .checkout-header {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 117px;
  }
}
.checkout-title {
  display: none;
  font-size: 34px;
  font-style: 400;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
  color: #FEDD00;
}

@media all and (min-width: 768px) {
  .checkout-title {
    display: block;
    margin: 40px 0 60px 0;
  }
}
@media all and (min-width: 1200px) {
  .checkout-title {
    margin: 60px 0 0;
  }
}
.checkout-cart {
  display: none;
  margin: 0;
}

@media all and (min-width: 1200px) {
  .checkout-cart {
    display: block;
    height: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    overflow: scroll;
  }

  .checkout-cart:before {
    display: block;
    height: 2px;
    background: #313131;
    content: "";
    margin: 0 5px 30px 0;
  }
}
.checkout-total {
  display: none;
  font-size: 16px;
  line-height: 1.5;
  color: #FBFBFB;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-top: 20px;
  text-decoration: none;
  border-bottom: 2px solid #FBFBFB;
}

@media all and (min-width: 1200px) {
  .checkout-total {
    display: block;
    border-bottom: none;
    padding: 20px 0 0;
    margin: 30px 5px 0 0;
    border-top: 2px solid #313131;
  }
}
.checkout-button {
  display: none;
  padding-top: 20px;
  margin-right: 5px;
}

@media all and (min-width: 1200px) {
  .checkout-button {
    display: block;
  }
}
.checkout-total-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  line-height: 1.5;
  color: #FBFBFB;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 2px solid #FBFBFB;
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 24px;
  text-decoration: none;
  cursor: pointer;
}

.checkout-total-switcher:hover {
  color: #FEDD00;
}

.checkout-total-switcher span {
  margin-right: auto;
}

.checkout-total-switcher .icon {
  width: 15px;
  height: 15px;
}

.checkout-total-switcher.checkout-total-switcher--open .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media all and (min-width: 768px) {
  .checkout-total-switcher {
    margin-top: 0;
  }
}
@media all and (min-width: 1200px) {
  .checkout-total-switcher {
    display: none;
  }
}
.checkout-privacy-policy {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0;
  color: #A7A7A7;
}

.checkout-privacy-policy p {
  padding: 0;
  margin: 0 0 10px;
}

.checkout-privacy-policy .checkbox-label {
  text-transform: lowercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.checkout-form {
  margin-bottom: 100px;
}

@media all and (min-width: 768px) {
  .checkout-form {
    margin-bottom: 75px;
  }
}
@media all and (min-width: 1200px) {
  .checkout-form {
    margin-bottom: 130px;
  }
}
.thankyou {
  padding: 98px 20px 0;
}

@media all and (min-width: 768px) {
  .thankyou {
    padding: 159px 40px 0;
  }
}
@media all and (min-width: 1200px) {
  .thankyou {
    padding: 165px 70px 0;
  }
}
.thankyou__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media all and (min-width: 768px) {
  .thankyou__wrap {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 1200px) {
  .thankyou__wrap {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.thankyou-column {
  width: 100%;
}

.thankyou-column.thankyou-column--label {
  margin-bottom: 20px;
}

.thankyou-column.thankyou-column--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media all and (min-width: 1200px) {
  .thankyou-column {
    padding-bottom: 245px;
  }

  .thankyou-column.thankyou-column--label {
    width: 50%;
    margin-bottom: 0;
  }

  .thankyou-column.thankyou-column--info {
    width: 50%;
    padding-left: 75px;
    padding-top: 30px;
  }
}
.thankyou-block {
  background: #FEDD00;
  color: #171615;
  border-radius: 15px;
  padding: 34px;
  overflow: hidden;
  position: relative;
}

@media all and (min-width: 768px) {
  .thankyou-block {
    padding: 34px;
  }
}
@media all and (min-width: 1200px) {
  .thankyou-block {
    padding: 34px;
  }
}
.thankyou-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.thankyou-block__wrap {
  position: relative;
  width: 100%;
  z-index: 2;
}

.thankyou-block-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 1.23px;
  text-transform: uppercase;
  color: #171615;
}

.thankyou-block-title .xs {
  display: inline;
}

.thankyou-block-title .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: top;
  margin-top: 3px;
  margin-left: -6px;
}

@media all and (min-width: 768px) {
  .thankyou-block-title {
    font-size: 31px;
  }
}
.thankyou-block-label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  color: #606060;
  margin-top: 64px;
}

@media all and (min-width: 768px) {
  .thankyou-block-label {
    margin-top: 78px;
  }
}
.thankyou-block-number {
  font-size: 36px;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.15em;
  font-weight: 400;
  color: #171615;
  background: #FEDD00;
  padding: 0 14px;
  margin-top: 2px;
}

@media all and (min-width: 768px) {
  .thankyou-block-number {
    font-size: 53px;
  }
}
.thankyou-block-slogan {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 1.2300471067px;
  text-transform: uppercase;
  margin-top: 54px;
}

@media all and (min-width: 768px) {
  .thankyou-block-slogan {
    font-size: 20px;
    margin-top: 60px;
  }
}
.thankyou-block-code {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 47px;
}

@media all and (min-width: 768px) {
  .thankyou-block-code {
    font-size: 20px;
    width: 139px;
    height: 66px;
  }
}
.thankyou-info-text {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 0;
  margin-bottom: 306px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.thankyou-info-text p {
  margin: 0 0 24px;
  padding: 0;
}

@media all and (min-width: 768px) {
  .thankyou-info-text {
    margin-bottom: 424px;
  }
}
@media all and (min-width: 1200px) {
  .thankyou-info-text {
    margin-bottom: 67px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.thankyou-info-button {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 52px;
}

@media all and (min-width: 768px) {
  .thankyou-info-button {
    margin-bottom: 92px;
  }
}
@media all and (min-width: 1200px) {
  .thankyou-info-button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.anroll {
  position: relative;
  margin-bottom: 100px;
}

@media all and (min-width: 768px) {
  .anroll {
    margin-bottom: 125px;
  }
}
@media all and (min-width: 1200px) {
  .anroll {
    margin-bottom: 97px;
  }
}
.anroll-icons {
  width: 100%;
  overflow: scroll;
}

.anroll-icons img {
  display: block;
  max-width: none;
  max-height: none;
  width: auto;
  height: 254px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .anroll-icons img {
    height: 378px;
  }
}
@media all and (min-width: 1200px) {
  .anroll-icons img {
    height: 390px;
  }
}
.anroll-decoration-01 {
  position: absolute;
  width: 162px;
  height: 96px;
  top: -158px;
  left: 50%;
}

@media all and (min-width: 768px) {
  .anroll-decoration-01 {
    width: 230px;
    height: 136px;
    left: auto;
    right: 50%;
    top: -249px;
    margin-right: 6px;
  }
}
@media all and (min-width: 1200px) {
  .anroll-decoration-01 {
    width: 230px;
    height: 136px;
    right: auto;
    left: 50%;
    top: -240px;
    margin-right: 0;
    margin-left: 160px;
  }
}
.anroll-decoration-02 {
  position: absolute;
  width: 80px;
  height: 120px;
  top: -141px;
  right: 50%;
  margin-right: 42px;
}

@media all and (min-width: 768px) {
  .anroll-decoration-02 {
    width: 183px;
    height: 157px;
    left: 50%;
    top: -200px;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
    margin-right: 0;
  }
}
@media all and (min-width: 1200px) {
  .anroll-decoration-02 {
    width: 183px;
    height: 157px;
    right: auto;
    left: 50%;
    top: -232px;
    margin-left: -64px;
    -webkit-transform: none;
            transform: none;
  }
}
.tracking {
  position: relative;
  padding-top: 167px;
  padding-bottom: 461px;
}

@media all and (min-width: 768px) {
  .tracking {
    padding-top: 200px;
    padding-bottom: 408px;
  }
}
@media all and (min-width: 1200px) {
  .tracking {
    padding-top: 202px;
    padding-bottom: 158px;
  }
}
.tracking .form-block__title {
  background: #0F0E0E;
}

@media all and (min-width: 1200px) {
  .tracking__wrap {
    padding-left: 14.28%;
    padding-right: 14.28%;
  }
}
.tracking-title {
  margin-bottom: 40px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .tracking-title {
    margin-bottom: 60px;
    font-size: 53px;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
@media all and (min-width: 1200px) {
  .tracking-title {
    margin-bottom: 93px;
    font-size: 34px;
  }
}
.tracking-process {
  padding-left: 8px;
  margin-top: 60px;
}

@media all and (min-width: 1200px) {
  .tracking-process {
    margin-top: 80px;
  }
}
.tracking-process__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 48px;
  padding-left: 31px;
  position: relative;
  border-left: 1px dotted #FBFBFB;
}

.tracking-process__item:before {
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  background: #FBFBFB;
}

.tracking-process__item:last-child {
  padding-bottom: 0;
  border-left: none;
}

.tracking-process__item:last-child:before {
  left: -7px;
}

.tracking-process__item.tracking-process__item-active {
  color: #FEDD00;
}

.tracking-process__item.tracking-process__item-active .tracking-process-status-description {
  color: #FBFBFB;
}

.tracking-process__item.tracking-process__item-active:before {
  background: #FEDD00;
}

.tracking-process__item.tracking-process__item-no-active {
  color: #A7A7A7;
}

.tracking-process__item.tracking-process__item-no-active:before {
  background: #A7A7A7;
}

.tracking-process__item.tracking-process__item-no-active .tracking-process-date {
  display: none;
}

.tracking-process__item.tracking-process__item-no-active .tracking-process-status {
  margin-bottom: 0;
}

@media all and (min-width: 1200px) {
  .tracking-process__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .tracking-process__item.tracking-process__item-no-active .tracking-process-date {
    display: block;
  }
}
.tracking-process-date {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 8px;
}

@media all and (min-width: 1200px) {
  .tracking-process-date {
    width: 160px;
  }
}
.tracking-process-status {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-right: auto;
}

.tracking-process-status-description {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #A7A7A7;
}

@media all and (min-width: 1200px) {
  .tracking-process-status-description {
    width: 300px;
    padding-left: 20px;
  }
}
.tracking-decoration-01 {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  width: 79px;
  height: 46px;
  bottom: 257px;
  right: 50%;
  margin-right: 91px;
  -webkit-transform: rotate(-8.33deg);
          transform: rotate(-8.33deg);
}

@media all and (min-width: 768px) {
  .tracking-decoration-01 {
    width: 82px;
    height: 48px;
    bottom: 69px;
    right: auto;
    left: 50%;
    margin-right: 0;
    margin-left: 60px;
  }
}
@media all and (min-width: 1200px) {
  .tracking-decoration-01 {
    width: 82px;
    height: 48px;
    bottom: auto;
    top: 221px;
    left: auto;
    right: 50%;
    margin-left: 0;
    margin-right: 480px;
  }
}
.tracking-decoration-02 {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  width: 226px;
  height: 217px;
  bottom: 100px;
  left: 50%;
  margin-left: -97px;
  -webkit-transform: rotate(-20.17deg);
          transform: rotate(-20.17deg);
}

@media all and (min-width: 768px) {
  .tracking-decoration-02 {
    width: 155px;
    height: 148px;
    bottom: 98px;
    left: auto;
    right: 50%;
    margin-left: 0;
    margin-right: 188px;
  }
}
@media all and (min-width: 1200px) {
  .tracking-decoration-02 {
    width: 155px;
    height: 148px;
    bottom: auto;
    top: 437px;
    left: auto;
    right: 50%;
    margin-right: 495px;
  }
}
.tracking-decoration-03 {
  position: absolute;
  -webkit-transform: rotate(34.1deg);
          transform: rotate(34.1deg);
  width: 121px;
  height: 83px;
  right: 50%;
  margin-right: 62px;
  bottom: 27px;
}

@media all and (min-width: 768px) {
  .tracking-decoration-03 {
    width: 84px;
    height: 57px;
    -webkit-transform: rotate(11.46deg);
            transform: rotate(11.46deg);
    right: 50%;
    bottom: 206px;
    margin-right: 83px;
  }
}
@media all and (min-width: 1200px) {
  .tracking-decoration-03 {
    width: 84px;
    height: 57px;
    bottom: auto;
    top: 206px;
    right: auto;
    left: 50%;
    margin-right: 0;
    margin-left: 466px;
  }
}
.tracking-decoration-04 {
  position: absolute;
  -webkit-transform: rotate(-0.3deg);
          transform: rotate(-0.3deg);
  width: 169px;
  height: 105px;
  left: 50%;
  bottom: 47px;
  margin-left: 121px;
}

@media all and (min-width: 768px) {
  .tracking-decoration-04 {
    left: 50%;
    bottom: 138px;
    margin-left: 344px;
  }
}
@media all and (min-width: 1200px) {
  .tracking-decoration-04 {
    bottom: 0;
    top: 308px;
    left: 50%;
    margin-left: 554px;
  }
}
.tracking-decoration-05 {
  position: absolute;
  -webkit-transform: rotate(-165deg);
          transform: rotate(-165deg);
  width: 138px;
  height: 127px;
  bottom: 220px;
  left: 50%;
  margin-left: 36px;
}

@media all and (min-width: 768px) {
  .tracking-decoration-05 {
    left: 50%;
    bottom: 171px;
    margin-left: 162px;
  }
}
@media all and (min-width: 1200px) {
  .tracking-decoration-05 {
    width: 138px;
    height: 126px;
    bottom: auto;
    top: 488px;
    left: 50%;
    margin-left: 424px;
  }
}
.delivery-return {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.delivery-return__yellow {
  -webkit-transform: translateX(-23%);
          transform: translateX(-23%);
  z-index: 5;
}

.delivery-return__yellow span {
  color: #171615;
  background: #FEDD00;
}

.delivery-return__white {
  z-index: 4;
  -webkit-transform: translateX(48%);
          transform: translateX(48%);
  margin-top: -103px;
}

.delivery-return__white span {
  color: #171615;
  background: #FBFBFB;
}

@media all and (min-width: 768px) {
  .delivery-return__white {
    -webkit-transform: translateX(49%);
            transform: translateX(49%);
    margin-top: -85px;
  }
}
@media all and (min-width: 1200px) {
  .delivery-return__white {
    -webkit-transform: translateX(59%);
            transform: translateX(59%);
    margin-top: -81px;
  }
}
.delivery-return-decoration-1 {
  display: none;
  position: absolute;
  max-width: none;
  max-height: none;
  z-index: 3;
}

@media all and (min-width: 768px) {
  .delivery-return-decoration-1 {
    display: block;
    width: 429px;
    height: 174px;
    top: 69px;
    right: 50%;
    margin-right: 116px;
    -webkit-transform: rotate(6.52deg);
            transform: rotate(6.52deg);
  }
}
@media all and (min-width: 1200px) {
  .delivery-return-decoration-1 {
    width: 532px;
    height: 225px;
    top: 43px;
    margin-right: -73px;
    -webkit-transform: rotate(2.21deg);
            transform: rotate(2.21deg);
  }
}
.delivery-return-decoration-2 {
  position: absolute;
  top: -16px;
  left: 50%;
  margin-left: -26%;
  width: 255px;
  height: 328px;
  max-width: none;
  max-height: none;
  opacity: 0.4;
  -webkit-transform: rotate(-7.48deg);
          transform: rotate(-7.48deg);
  z-index: 3;
}

@media all and (min-width: 768px) {
  .delivery-return-decoration-2 {
    width: 345px;
    height: auto;
    top: -3px;
    left: 50%;
    margin-left: -7px;
    -webkit-transform: rotate(-7.48deg);
            transform: rotate(-7.48deg);
  }
}
@media all and (min-width: 1200px) {
  .delivery-return-decoration-2 {
    margin-left: 12px;
  }
}
.delivery-return-decoration-3 {
  display: block;
  width: 79px;
  height: 46px;
  -webkit-transform: rotate(-8.33deg);
          transform: rotate(-8.33deg);
  position: absolute;
  bottom: -23px;
  right: 50%;
  margin-right: 60px;
  z-index: 3;
}

@media all and (min-width: 768px) {
  .delivery-return-decoration-3 {
    display: none;
  }
}
.title-cascade {
  display: inline-block;
}

.title-cascade span {
  display: block;
  font-size: 33px;
  line-height: 1;
  padding: 4px 8px;
  text-transform: uppercase;
  position: relative;
}

.title-cascade span:nth-child(2) {
  margin-top: -31px;
}

.title-cascade span:nth-child(3) {
  margin-top: -29px;
}

.title-cascade span:nth-child(4) {
  margin-top: -27px;
}

.title-cascade span:nth-child(5) {
  margin-top: -25px;
}

.title-cascade span:nth-child(6) {
  margin-top: -23px;
}

.title-cascade span:nth-child(7) {
  margin-top: -21px;
}

.title-cascade span:nth-child(8) {
  margin-top: -19px;
}

.title-cascade span:nth-child(9) {
  margin-top: -17px;
}

.title-cascade span:nth-child(10) {
  margin-top: -15px;
}

.title-cascade.title-cascade--copress span:nth-child(2) {
  margin-top: -31px;
}

.title-cascade.title-cascade--copress span:nth-child(3) {
  margin-top: -29px;
}

.title-cascade.title-cascade--copress span:nth-child(4) {
  margin-top: -27px;
}

.title-cascade.title-cascade--copress span:nth-child(5) {
  margin-top: -25px;
}

.title-cascade.title-cascade--copress span:nth-child(6) {
  margin-top: -23px;
}

.title-cascade.title-cascade--copress span:nth-child(7) {
  margin-top: -21px;
}

.title-cascade.title-cascade--copress span:nth-child(8) {
  margin-top: -11px;
}

@media all and (min-width: 768px) {
  .title-cascade span {
    font-size: 48px;
  }

  .title-cascade span:nth-child(2) {
    margin-top: -41px;
  }

  .title-cascade span:nth-child(3) {
    margin-top: -37px;
  }

  .title-cascade span:nth-child(4) {
    margin-top: -34px;
  }

  .title-cascade span:nth-child(5) {
    margin-top: -30px;
  }

  .title-cascade span:nth-child(6) {
    margin-top: -27px;
  }

  .title-cascade span:nth-child(7) {
    margin-top: -25px;
  }

  .title-cascade span:nth-child(8) {
    margin-top: -20px;
  }

  .title-cascade span:nth-child(9) {
    margin-top: -18px;
  }

  .title-cascade span:nth-child(10) {
    display: none;
  }

  .title-cascade.title-cascade--copress span:nth-child(2) {
    margin-top: -43px;
  }

  .title-cascade.title-cascade--copress span:nth-child(3) {
    margin-top: -42px;
  }

  .title-cascade.title-cascade--copress span:nth-child(4) {
    margin-top: -39px;
  }

  .title-cascade.title-cascade--copress span:nth-child(5) {
    margin-top: -36px;
  }

  .title-cascade.title-cascade--copress span:nth-child(6) {
    margin-top: -31px;
  }

  .title-cascade.title-cascade--copress span:nth-child(7) {
    margin-top: -22px;
  }

  .title-cascade.title-cascade--copress span:nth-child(8) {
    margin-top: -14px;
  }
}
.faq-return {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq__white {
  -webkit-transform: translateX(-23%);
          transform: translateX(-23%);
  z-index: 5;
}

.faq__white span {
  color: #171615;
  background: #FBFBFB;
}

.faq__yellow {
  z-index: 4;
  -webkit-transform: translateX(48%);
          transform: translateX(48%);
  margin-top: -103px;
}

.faq__yellow span {
  color: #171615;
  background: #FEDD00;
}

@media all and (min-width: 768px) {
  .faq__yellow {
    -webkit-transform: translateX(49%);
            transform: translateX(49%);
    margin-top: -85px;
  }
}
@media all and (min-width: 1200px) {
  .faq__yellow {
    -webkit-transform: translateX(59%);
            transform: translateX(59%);
    margin-top: -81px;
  }
}
.faq-decoration-1 {
  position: absolute;
  bottom: -52px;
  right: 50%;
  margin-right: -117px;
  width: 375px;
  height: 152px;
  -webkit-transform: rotate(6.52deg);
          transform: rotate(6.52deg);
}

@media all and (min-width: 768px) {
  .faq-decoration-1 {
    bottom: 120px;
    margin-right: 96px;
    width: 429px;
    height: 174px;
  }
}
@media all and (min-width: 1200px) {
  .faq-decoration-1 {
    bottom: 114px;
    margin-right: -69px;
    width: 460px;
    height: auto;
    -webkit-transform: rotate(2.21deg);
            transform: rotate(2.21deg);
  }
}
.faq-decoration-2 {
  position: absolute;
  bottom: -5px;
  right: 50%;
  margin-right: 67px;
  width: 84px;
  height: 57px;
  -webkit-transform: rotate(11.46deg);
          transform: rotate(11.46deg);
}

@media all and (min-width: 768px) {
  .faq-decoration-2 {
    display: none;
  }
}
.faq-decoration-3 {
  position: absolute;
  top: 6px;
  left: 50%;
  margin-left: 71px;
  width: 83px;
  height: 80px;
}

@media all and (min-width: 768px) {
  .faq-decoration-3 {
    top: 24px;
    margin-left: 115px;
    width: 74px;
    height: 72px;
  }
}
.faq {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .faq {
    margin-bottom: 80px;
  }
}
@media all and (min-width: 1200px) {
  .faq {
    margin-bottom: 80px;
  }
}
.faq__section {
  margin: 0 0 80px;
}

@media all and (min-width: 768px) {
  .faq__section {
    margin-bottom: 100px;
  }
}
@media all and (min-width: 1200px) {
  .faq__section {
    margin-bottom: 100px;
  }
}
.faq-title {
  font-size: 31px;
  line-height: 1.4;
  color: #FEDD00;
  margin: 0 0 24px 0;
}

.faq__section .toggle-block .toggle-block__name {
  color: #FBFBFB;
}

@media all and (min-width: 1200px) {
  .faq__section .toggle-block .toggle-block__name {
    padding-right: 50%;
  }

  .faq__section .toggle-block .toggle-block__content {
    width: 50%;
    margin-left: auto;
    padding-right: 40px;
    margin-top: -36px;
  }
}
.contacts-main {
  background: #FEDD00;
  color: #171615;
  border-radius: 15px;
  padding: 35px 12px;
  overflow: hidden;
  position: relative;
}

@media all and (min-width: 768px) {
  .contacts-main {
    padding: 80px;
  }
}
@media all and (min-width: 1200px) {
  .contacts-main {
    padding: 112px 57px;
  }
}
.contacts-main__bg {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.contacts__header {
  padding-top: 125px;
  padding-bottom: 49px;
}

@media all and (min-width: 768px) {
  .contacts__header {
    padding-top: 180px;
    padding-bottom: 156px;
  }
}
@media all and (min-width: 1200px) {
  .contacts__header {
    padding-top: 190px;
    padding-bottom: 164px;
  }
}
.contacts-main__wrap {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (min-width: 768px) {
  .contacts-main__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contacts-main-title {
  font-size: 20px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 34px;
}

@media all and (min-width: 768px) {
  .contacts-main-title {
    width: 55%;
    font-size: 30px;
  }
}
@media all and (min-width: 1200px) {
  .contacts-main-title {
    font-size: 63px;
  }
}
.contacts-main-info .contacts-data {
  color: #FEDD00;
  background: #171615;
  font-size: 18px;
  line-height: 1.2;
}

.contacts-main-info .contacts-data + .contacts-data {
  margin-top: 10px;
}

.contacts-main-info .contacts-data .icon {
  width: 16px;
  height: 16px;
  margin-left: 8.61px;
  margin-top: 2px;
}

.contacts-main-info .social-networks {
  margin-top: 30px;
}

.contacts-main-info .social-networks .social-network {
  color: #171615;
}

@media all and (min-width: 768px) {
  .contacts-main-info {
    width: 45%;
  }
}
@media all and (min-width: 1200px) {
  .contacts-main-info .contacts-data {
    font-size: 27px;
  }

  .contacts-main-info .contacts-data + .contacts-data {
    margin-top: 20px;
  }

  .contacts-main-info .social-network {
    width: 43px;
    height: 43px;
  }
}
.contacts__wrap {
  margin-bottom: 100px;
}

@media all and (min-width: 768px) {
  .contacts__wrap {
    margin-bottom: 203px;
  }
}
.contacts-block {
  margin-bottom: 72px;
}

@media all and (min-width: 768px) {
  .contacts-block {
    margin-bottom: 124px;
  }
}
@media all and (min-width: 1200px) {
  .contacts-block {
    margin-bottom: 103px;
  }
}
.contacts-block__city {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #FEDD00;
  text-transform: uppercase;
}

@media all and (min-width: 768px) {
  .contacts-block__city {
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.contacts-block__address {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media all and (min-width: 768px) {
  .contacts-block__address {
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 8px;
  }
}
.contacts-block__open-time {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 4px;
  color: #A7A7A7;
}

@media all and (min-width: 768px) {
  .contacts-block__open-time {
    margin-top: 8px;
  }
}
.contacts-block__photo {
  margin-top: 16px;
  margin-right: 30px;
}

@media all and (min-width: 768px) {
  .contacts-block__photo {
    margin-top: 44px;
    margin-right: 0;
  }
}
.contacts-photo {
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  position: relative;
  background: #171615;
}

.contacts-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (min-width: 768px) {
  .contacts-photo {
    padding-bottom: 58%;
  }
}
@media all and (min-width: 1200px) {
  .contacts-photo {
    padding-bottom: 38%;
  }
}
.contacts-block__map {
  float: right;
  padding: 0 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .contacts-block__map {
    margin-right: 37px;
  }
}
.poster {
  padding-top: 92px;
  padding-bottom: 101px;
  color: #171615;
  position: relative;
}

@media all and (min-width: 768px) {
  .poster {
    background: #FEDD00;
    padding: 92px 20px 70px;
    margin-bottom: 200px;
  }
}
@media all and (min-width: 1200px) {
  .poster {
    padding: 60px 75px;
    margin-bottom: 200px;
  }
}
@media all and (min-width: 1200px) {
  .poster__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.poster-decoration {
  display: block;
  width: 95px;
  height: 90px;
  position: absolute;
  top: 0;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .poster-decoration {
    right: 50px;
  }
}
@media all and (min-width: 1200px) {
  .poster-decoration {
    right: 9px;
  }
}
@media all and (min-width: 1200px) {
  .poster-header {
    width: 57%;
    padding: 0 17px;
  }
}
.poster-content {
  margin-top: 52px;
}

@media all and (min-width: 1200px) {
  .poster-content {
    width: 43%;
    padding-left: 40px;
    margin-top: 0;
  }
}
.poster-title {
  font-size: 31px;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}

.poster-title .icon {
  width: 98px;
  height: 28px;
  margin-left: 8px;
}

@media all and (min-width: 1200px) {
  .poster-title {
    font-size: 60px;
  }

  .poster-title .icon {
    width: 149px;
    height: 43px;
  }
}
.poster-description {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  letter-spacing: 0;
}

.poster-photo {
  width: 100%;
  height: 0;
  padding-bottom: 86%;
  position: relative;
}

.poster-photo img {
  display: block;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (min-width: 768px) {
  .poster-photo {
    padding-bottom: 45%;
  }
}
@media all and (min-width: 1200px) {
  .poster-photo {
    padding-bottom: 86%;
  }
}
.poster-more {
  float: right;
  padding: 0 7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media all and (min-width: 768px) {
  .poster-more {
    padding: 0 17px;
    margin-right: 15px;
  }
}
@media all and (min-width: 1200px) {
  .poster-more {
    -webkit-transform: none;
            transform: none;
    position: absolute;
    bottom: 60px;
    left: 93px;
  }
}
.location-modal {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FEDD00;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  color: #171615;
  overflow: hidden;
}

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

.location-modal__bg {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 20px;
  height: 100%;
  width: 100%;
}

.location-modal__bg svg {
  display: block;
  height: 100%;
  width: auto;
  margin-left: auto;
}

.location-modal__bg svg path {
  opacity: 0.6;
  fill: #FBFBFB;
}

@media all and (min-width: 768px) {
  .location-modal__bg {
    left: auto;
    right: -150px;
  }
}
@media all and (min-width: 1200px) {
  .location-modal__bg {
    right: 0;
  }
}
.container {
  position: relative;
  z-index: 2;
}

.location-modal-title {
  font-size: 42px;
  line-height: 1.4;
  letter-spacing: 0;
  word-wrap: break-word;
  margin: 0;
  padding: 0;
}

.location-modal-title .xs {
  display: inline;
}

.location-modal-title .sm {
  display: none;
}

@media all and (min-width: 768px) {
  .location-modal-title .xs {
    display: none;
  }

  .location-modal-title .sm {
    display: inline;
  }
}
@media all and (min-width: 1200px) {
  .location-modal-title {
    font-size: 70px;
    line-height: 1.1;
  }
}
.locations {
  margin-top: 40px;
  margin-bottom: 50px;
}

@media all and (min-width: 1200px) {
  .locations {
    margin-top: 70px;
  }
}
@media all and (min-width: 1200px) {
  .locations {
    width: 50%;
  }
}
.location + .location {
  margin-top: 10px;
}

.location .location-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 7px;
  height: 35px;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  color: #171615;
  position: relative;
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
}

.location .location-link:before, .location .location-link:after {
  display: block;
  content: "";
  width: 15px;
  height: 35px;
  position: absolute;
  -webkit-transform: skew(-20.3764352138deg);
          transform: skew(-20.3764352138deg);
  background: transparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.location .location-link:before {
  left: -8.5px;
}

.location .location-link:after {
  right: -8.5px;
}

.location .location-link .icon {
  margin-left: 0;
}

.location .location-link .icon.icon--arrow-right-long {
  display: none;
  width: 26px;
  height: 15px;
}

.location .location-link .icon.icon--arrow-right {
  width: 15px;
  height: 15px;
}

.location .location-link span {
  margin-left: 10px;
}

.location.location--active .location-link, .location:hover .location-link {
  background: #171615;
  color: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.location.location--active .location-link:before, .location.location--active .location-link:after, .location:hover .location-link:before, .location:hover .location-link:after {
  display: block;
  content: "";
  width: 15px;
  height: 35px;
  position: absolute;
  -webkit-transform: skew(-20.3764352138deg);
          transform: skew(-20.3764352138deg);
  background: #171615;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.location.location--active .location-link:before, .location:hover .location-link:before {
  left: -8.5px;
}

.location.location--active .location-link:after, .location:hover .location-link:after {
  right: -8.5px;
}

.location.location--active .location-link .icon.icon--arrow-right-long, .location:hover .location-link .icon.icon--arrow-right-long {
  display: block;
}

.location.location--active .location-link .icon.icon--arrow-right, .location:hover .location-link .icon.icon--arrow-right {
  display: none;
}

.location-modal__button {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
}

.back-button {
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #FEDD00;
  cursor: pointer;
  outline: none;
}

.back-button:hover, .back-button:active {
  color: #FBFBFB;
  outline: none;
}

.back-button .icon {
  display: block;
  width: 17.54px;
  height: 17.54px;
}

.grouped-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  padding: 20px 0;
}

.grouped-product .grouped-product__thumbnail {
  width: 20%;
}

.grouped-product .grouped-product__info {
  width: 80%;
  padding-left: 20px;
}

.grouped-product-photo {
  width: 100%;
  height: 0;
  padding: 0 0 125%;
  position: relative;
  background: #171615;
}

.grouped-product-photo img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.grouped-product-title {
  display: inline-block;
  text-decoration: none;
  color: #FBFBFB;
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 11px;
  text-transform: uppercase;
}

.grouped-product-title:hover {
  color: #FEDD00;
}

.grouped-product-price {
  font-size: 16px;
  line-height: 1.5;
  color: #FBFBFB;
  margin: 0 0 11px;
}

.grouped-product-price.grouped-product-price--old {
  position: relative;
  color: #606060;
}

.grouped-product-price.grouped-product-price--old:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 0;
  width: 100%;
  border-bottom: 1px solid #606060;
  content: "";
  margin-top: -1px;
}

.grouped-product-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 11px;
}

.grouped-product-prices .grouped-product-price {
  margin-bottom: 0;
}

.grouped-product-variations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 13px;
}

.grouped-product-variation .radio.radio--pattern .radio-label {
  height: 16px;
}

.grouped-product-variation .radio.radio--pattern .radio-label span {
  font-size: 12px;
  margin: 0 5px;
  color: #FBFBFB;
  background: transparent;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.grouped-product-variation .radio.radio--pattern .radio-label span:before, .grouped-product-variation .radio.radio--pattern .radio-label span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: transparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.grouped-product-variation .radio.radio--pattern .radio-label span:before {
  left: -5px;
}

.grouped-product-variation .radio.radio--pattern .radio-label span:after {
  right: -5px;
}

.grouped-product-variation .radio.radio--pattern .radio-input:checked ~ span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.grouped-product-variation .radio.radio--pattern .radio-input:checked ~ span:before, .grouped-product-variation .radio.radio--pattern .radio-input:checked ~ span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.grouped-product-variation .radio.radio--pattern .radio-input:checked ~ span:before {
  left: -5px;
}

.grouped-product-variation .radio.radio--pattern .radio-input:checked ~ span:after {
  right: -5px;
}

.grouped-product-variation .radio.radio--pattern .radio-input:disabled ~ span {
  position: relative;
  color: #606060;
  background: none;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.grouped-product-variation .radio.radio--pattern .radio-input:disabled ~ span:before, .grouped-product-variation .radio.radio--pattern .radio-input:disabled ~ span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: transparent;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.grouped-product-variation .radio.radio--pattern .radio-input:disabled ~ span:before {
  left: -5px;
}

.grouped-product-variation .radio.radio--pattern .radio-input:disabled ~ span:after {
  right: -5px;
}

.grouped-product-variation .radio.radio--pattern .radio-input:disabled ~ span:after {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 20%;
  right: auto;
  content: "";
  width: 60%;
  height: 0;
  border: none;
  border-bottom: 1px solid #606060;
}

.grouped-product-variation .radio.radio--pattern.radio--checked .radio-label span {
  color: #0F0E0E;
  background: #FEDD00;
  position: relative;
  -webkit-transition: none;
  transition: none;
}

.grouped-product-variation .radio.radio--pattern.radio--checked .radio-label span:before, .grouped-product-variation .radio.radio--pattern.radio--checked .radio-label span:after {
  display: block;
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  -webkit-transform: skew(-20.5560452196deg);
          transform: skew(-20.5560452196deg);
  background: #FEDD00;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.grouped-product-variation .radio.radio--pattern.radio--checked .radio-label span:before {
  left: -5px;
}

.grouped-product-variation .radio.radio--pattern.radio--checked .radio-label span:after {
  right: -5px;
}

.seo-block {
  max-height: 7rem;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  position: relative;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #FBFBFB;
  font-weight: 400;
}

.seo-block.seo-block--expanded {
  max-height: 2000px;
}

.seo-block__content h1,
.seo-block__content h2,
.seo-block__content h3,
.seo-block__content h4,
.seo-block__content h5,
.seo-block__content h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  font-size: 1rem;
  margin: 0 0 1rem;
  padding: 0;
}

.seo-block__content p {
  margin: 0 0 1rem;
  padding: 0;
}

.seo-block__content ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1rem;
}

.seo-block__content li {
  margin: 0 0 0.5rem;
}

.seo-block__content li:before {
  top: 0.4rem;
}

.seo-block__content strong,
.seo-block__content b {
  font-weight: 500;
}

.seo-block__toggle {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 2rem 0 0 0;
  background: #171615;
  background: linear-gradient(to top, #171615 25px, rgba(23, 22, 21, 0) 100px);
}

.seo-block__toggle a {
  color: #FEDD00;
}

/**
  Notices
 */
.woocommerce-notice,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-notice--success,
.woocommerce-notice--error {
  display: block;
  list-style: none;
  border: 1px solid #FBFBFB;
  color: #A7A7A7;
  padding: 10px;
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.2;
  width: 100%;
}

.woocommerce-notice li,
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li,
.woocommerce-notice--success li,
.woocommerce-notice--error li {
  display: block;
  margin: 0;
  padding: 0;
}

.woocommerce-notice li + li,
.woocommerce-error li + li,
.woocommerce-info li + li,
.woocommerce-message li + li,
.woocommerce-notice--success li + li,
.woocommerce-notice--error li + li {
  margin-top: 15px;
}

.woocommerce-notice li:before,
.woocommerce-error li:before,
.woocommerce-info li:before,
.woocommerce-message li:before,
.woocommerce-notice--success li:before,
.woocommerce-notice--error li:before {
  display: none;
}

.woocommerce-info {
  border: 1px solid #FEDD00;
}

.woocommerce-message,
.woocommerce-notice--success {
  border: 1px solid #24A273;
}

.woocommerce-error,
.woocommerce-notice--error {
  border: 1px solid #F94C33;
}

.hide-all-notices .woocommerce-notice,
.hide-all-notices .woocommerce-error,
.hide-all-notices .woocommerce-info,
.hide-all-notices .woocommerce-message {
  display: none;
}

/**
  form-pay.php
 */
.thankyou__wrap > .woocommerce {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shop_table {
  width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.4;
}

.shop_table th,
.shop_table td {
  padding: 10px 5px;
  margin: 0;
}

.shop_table thead th {
  background: #FEDD00;
  color: #0F0E0E;
  font-family: "Kharkiv Tone", Arial, sans-serif;
  font-weight: 700;
}

.shop_table thead th.product-total {
  text-align: center;
}

.shop_table tbody th {
  text-align: right;
  border-bottom: 1px solid #313131;
  font-weight: 700;
}

.shop_table tbody td {
  border-bottom: 1px solid #313131;
}

.shop_table tbody td ul {
  margin: 0;
  padding: 0;
}

.shop_table tbody td ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.shop_table tbody td ul li:before {
  display: none;
}

.shop_table tbody td ul li strong {
  font-weight: 400;
  margin-right: 5px;
}

.shop_table tbody td.product-quantity {
  text-align: center;
  vertical-align: middle;
}

.shop_table tbody td.product-subtotal {
  text-align: right;
  vertical-align: middle;
}

.shop_table tbody td.product-total {
  text-align: right;
  vertical-align: middle;
}

.shop_table tbody td small {
  font-size: 85%;
  margin-left: 5px;
}

.shop_table tbody tr:last-child td,
.shop_table tbody tr:last-child th {
  border-bottom-color: #FEDD00;
}

.shop_table tfoot td,
.shop_table tfoot th {
  border-bottom: 1px solid #313131;
  text-align: right;
}

.shop_table tfoot th {
  font-weight: 700;
}

.shop_table tfoot .shipped_via {
  font-size: 85%;
  margin-left: 5px;
}

.wc_payment_methods {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 30px;
}

.woocommerce-terms-and-conditions-wrapper {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 30px;
}

/**
  Order status form-pay
 */
.order-status {
  margin-top: 30px;
}

.order-status .order-status__value {
  font-weight: 700;
}

.order-status .order-status__value.order-status__value--pending {
  color: #3891db;
}

.order-status .order-status__value.order-status__value--on-hold {
  color: #7D7D7D;
}

.order-status .order-status__value.order-status__value--processing {
  color: #FBAA60;
}

.order-status .order-status__value.order-status__value--cancelled, .order-status .order-status__value.order-status__value--failed, .order-status .order-status__value.order-status__value--refunded {
  color: #F94C33;
}

.order-status .order-status__value.order-status__value--completed {
  color: #24A273;
}

.proposal-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.proposal-modal__wrap {
  padding: 2rem 3rem;
  border: 2px solid #FEDD00;
  background: #0F0E0E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
}

.proposal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.5;
}

.proposal-modal-close:hover {
  opacity: 1;
}

.proposal-modal-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

.proposal-modal-block__title {
  font-size: 2rem;
}