@charset "UTF-8";
/** Стили от Azerbaijan Fish Farm */
/** Подключение шрифтов локально из папки "./src/fonts" */
@font-face {
  font-family: icomoon;
  font-display: swap;
  src: url("../fonts/icomoon.woff2") format("woff2"), url("../fonts/icomoon.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Light.woff2") format("woff2"), url("../fonts/Jura-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-SemiBold.woff2") format("woff2"), url("../fonts/Jura-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Medium.woff2") format("woff2"), url("../fonts/Jura-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Regular.woff2") format("woff2"), url("../fonts/Jura-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jura";
  src: url("../fonts/Jura-Bold.woff2") format("woff2"), url("../fonts/Jura-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/** Подключение переменных */
:root {
  --white: #ffffffff;
  --black: #000000;
  --main-color: var(--black);
  --red: #7b0000;
  --block_bg_standart: #f2f2f2;
  --bg_page_standart: #FBFBFB;
}

/** Подключение sass function и mixins и extends стилей */
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Подключение custom scrollbar для всего сайта */
/** Подключение переменных */
.menu_holder .menu .menu_inner {
  scrollbar-width: 0.4rem;
  scrollbar-color: rgb(151, 151, 151) #000000;
}

/** Библиотеки */
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-dot-1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.animate__animated.animate__delay-dot-2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.animate__animated.animate__delay-dot-3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animate__animated.animate__delay-dot-4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animate__animated.animate__delay-dot-5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animate__animated.animate__delay-dot-6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.animate__animated.animate__delay-dot-7 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.animate__animated.animate__delay-dot-8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  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);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  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);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

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

/* Bouncing exits  */
@-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);
  }
  to {
    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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

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

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

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

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

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

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -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);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -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);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -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);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -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);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -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;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -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;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -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;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -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;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -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-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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    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 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    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 {
  from {
    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);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    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 {
  from {
    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);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    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 {
  from {
    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);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    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 {
  from {
    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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-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);
  }
  to {
    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-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);
  }
  to {
    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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-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);
  }
  to {
    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-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);
  }
  to {
    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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

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

.animate__fadeInDown_small {
  animation-name: fadeInDownSmaller;
}

@keyframes fadeInDownSmaller {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0); /* Adjust the vertical translation value as needed */
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/** Обнуление */
/** Подключение переменных */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  color: var(--main-color);
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a:focus {
  outline-width: 0;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "Jura", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400;
  line-height: 1.3;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button:focus {
  outline: none;
}

a,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  cursor: pointer;
  outline: none !important;
}

a:focus {
  color: black;
}

a {
  background: transparent;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.2em;
}

sup {
  color: inherit;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button {
  background: transparent;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 10px;
}

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

.ul {
  padding-left: 0;
  list-style: none;
}

.li {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dd, dt {
  line-height: 1.42857143;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

/** Общие параметры БЕМ блоки (кнопки, breadcrumbs, nav pills) используемые во всё проекте */
html {
  font-size: 62.5%;
}
html *,
html *::after,
html *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.block {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 86px;
  font-weight: 600;
  line-height: 119%; /* 102.34px */
}
@media (max-width: 992px) {
  h1 {
    font-size: clamp(1rem, 0.5798rem + 6.7227vw, 3.8rem);
  }
}

h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 125%; /* 47.5px */
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  h2 {
    font-size: clamp(1rem, 0.5798rem + 6.7227vw, 3.8rem);
  }
}

h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  h3 {
    font-size: clamp(1rem, 0.5798rem + 5vw, 3.8rem);
  }
}

h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 125%; /* 47.5px */
}
@media (max-width: 992px) {
  h4 {
    font-size: clamp(1rem, 0.5798rem + 4vw, 3.8rem);
  }
}

h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 125%; /* 47.5px */
}
@media (max-width: 992px) {
  h5 {
    font-size: clamp(1rem, 0.5798rem + 3.5vw, 3.8rem);
  }
}

.page {
  padding-top: 71px;
}

.section_title {
  display: flex;
  padding: 20px 40px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: var(--Black, #000);
}
.section_title__center {
  justify-content: center;
}
@media (max-width: 576px) {
  .section_title {
    padding: 20px 20px;
  }
}
.section_title * {
  color: #fff;
}
.section_title h2 {
  /* H1 */
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .section_title h2 {
    font-size: clamp(1rem, 0.5798rem + 8.7227vw, 3.8rem);
  }
}
.section_title h3 {
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .section_title h3 {
    font-size: clamp(1rem, 0.5798rem + 8.7227vw, 3.8rem);
  }
}
.section_title.section_title__small {
  font-size: 28px;
}
.section_title.section_title__small * {
  color: #fff;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.657px solid var(--Black, #000);
}
.product .product_image_holder {
  position: relative;
  width: 100%;
}
.product .product_image_holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .product_image_holder .heart {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  padding: 3.942px;
  align-items: center;
  gap: 6.57px;
  border-radius: 32.848px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}
.product .product_info {
  display: flex;
  padding: 22px 13px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9.854px;
  align-self: stretch;
  background: var(--White, #fff);
}
@media (max-width: 576px) {
  .product .product_info {
    padding: 17px 8px;
  }
}
.product .product_info .product_title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
  overflow: hidden;
  color: var(--Black, #000);
  text-align: center;
  text-overflow: ellipsis;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.product .product_info .product_price {
  color: var(--Black, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.product .product_info .add_to_cart {
  color: var(--Black, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.wrapper {
  display: grid;
  align-self: stretch;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.btn {
  display: inline-block;
  padding: 17px 60px;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  cursor: pointer;
}
.btn.btn_full_width {
  width: 100%;
  text-align: center;
}
.btn:active {
  transform: scale(0.97);
}
.btn.black_bg {
  background: var(--Black, #000);
  color: #fff;
}
.btn.black_bg * {
  color: #fff;
}

.breadcrumb {
  display: flex;
  padding: 25px 40px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-top: 1px solid var(--White, #fff);
  background: var(--Black, #000);
}
.breadcrumb * {
  color: var(--White, #fff);
}
.breadcrumb a {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.small_container {
  margin: 0 auto;
  display: flex;
  max-width: 716px;
  width: 100%;
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
}

.d-flex {
  display: flex;
}

img {
  max-width: 100%;
}

.cart_product {
  width: 100%;
  display: flex;
  padding: 20px 0;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  border-bottom: 1px solid #ebebeb;
}
.cart_product:first-child {
  padding-top: 0;
}
.cart_product:last-child {
  border-bottom: none;
}
@media (max-width: 576px) {
  .cart_product {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
  }
}
.cart_product .product_image {
  width: 172px;
  height: 172px;
}
@media (max-width: 576px) {
  .cart_product .product_image {
    width: 100%;
    height: auto;
  }
}
.cart_product .product_image a {
  display: block;
}
.cart_product .product_image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart_product .cart_product_info {
  display: flex;
  padding: 0 20px;
  flex-direction: column;
  gap: 19px;
  flex: 1 0 0;
  align-self: stretch;
  align-items: stretch;
}
@media (max-width: 576px) {
  .cart_product .cart_product_info {
    padding: 0;
    gap: 15px;
  }
}
.cart_product .cart_product_info .title_price_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.cart_product .cart_product_info .title_price_wrapper .main_title {
  color: var(--Black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.cart_product .cart_product_info .title_price_wrapper .main_price {
  color: var(--Black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.cart_product .cart_product_info .cart_delivery_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.cart_product .cart_product_info .cart_delivery_details .cart_info_details {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.cart_product .cart_product_info .cart_delivery_details .cart_info_details .info_title {
  color: var(--Black, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.cart_product .cart_product_info .cart_delivery_details .cart_info_details .info_text {
  color: var(--Black, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cart_product .cart_product_info .additional {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}
.cart_product .cart_product_info .additional span {
  cursor: pointer;
  font-size: 18px;
}
.cart_product .cart_product_info .additional .minus,
.cart_product .cart_product_info .additional .plus {
  width: 20px;
  height: 20px;
}
.cart_product .cart_product_info .additional input {
  width: 40px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.cart_product .cart_product_info .actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  align-self: stretch;
}
@media (max-width: 576px) {
  .cart_product .cart_product_info .actions {
    justify-content: center;
  }
}
.cart_product .cart_product_info .actions .remove {
  cursor: pointer;
}
.cart_product .cart_product_info .actions .move_to_wishlist {
  cursor: pointer;
}

/** Подключение стилей отдельных блоков и секций */
.check {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  position: relative;
  min-height: 24px;
  padding-left: 26px;
  padding-top: 5px;
  user-select: none;
  cursor: pointer;
  font-size: 14px;
  color: black;
  width: fit-content;
}
.check::before, .check::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}
.check::before {
  left: 0;
  top: 5px;
  width: 17px;
  height: 17px;
  border: 2px solid #4a4a4f;
  background-color: transparent;
}
.check::after {
  top: 13px;
  left: 6px;
  opacity: 0;
}
.check a {
  text-decoration: underline;
  color: inherit;
}
.check > input[type=checkbox], .check > input[type=radio] {
  display: none;
}
.check:has(input:checked)::before {
  background-color: #000;
  border-color: #000;
}
.check:has(input:checked)::after {
  opacity: 1;
}
.check:has(input[type=checkbox])::before {
  border-radius: 18px;
}
.check:has(input[type=checkbox])::after {
  width: 5px;
  height: 8px;
  transform: translateY(-60%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.check:has(input[type=radio])::before {
  border-radius: 50%;
}
.check:has(input[type=radio])::after {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  top: 8px;
}
.check:has(input:disabled) {
  opacity: 0.4;
  cursor: not-allowed;
}

.header {
  z-index: 40;
  display: flex;
  width: 100%;
  padding: 18px 40px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  background-color: #000309;
}
.header .left {
  display: flex;
  height: 35px;
  justify-content: flex-end;
  align-items: center;
  gap: 19px;
}
.header .left .menu_trigger,
.header .left .search_trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.header .left .menu_trigger svg,
.header .left .search_trigger svg {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.header .left .menu_trigger span,
.header .left .search_trigger span {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header .logo a img {
  max-width: 106px;
  height: auto;
  flex-shrink: 0;
  aspect-ratio: 87/23;
}
.header .right {
  display: flex;
  height: 35px;
  justify-content: flex-end;
  align-items: center;
  gap: 19px;
}
.header .right .contacts {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header .right .contacts svg {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.header .right .contacts span {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header .right .cart {
  position: relative;
}
.header .right .cart .count {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 13px;
  height: 13px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #fff;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header_minimal {
  background-color: white;
  justify-content: center;
}
.header_minimal .left {
  display: none;
}
.header_minimal .right {
  display: none;
}
.header_minimal .menu_holder {
  display: none;
}
.header_minimal .search_section {
  display: none;
}
.header_minimal .logo {
  min-height: 35px;
}
.header_minimal .logo a img {
  filter: invert(1);
}

@media (max-width: 576px) {
  .header {
    padding: 18px 18px;
  }
}
.menu_holder {
  position: relative;
}
.menu_holder .bg_overlay {
  --colorBackground: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--colorBackground);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.menu_holder .bg_overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.menu_holder .menu {
  width: 33.333333%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 50;
  height: 100vh;
  color: white;
  border-right: 1px solid var(--White, #fff);
  background: var(--Black, #000);
}
.menu_holder .menu * {
  color: white;
}
.menu_holder .menu.active {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
  visibility: visible;
}
.menu_holder .menu .top {
  display: flex;
  height: 72px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  border-bottom: 1px solid var(--White, #fff);
}
.menu_holder .menu .top .close {
  cursor: pointer;
}
.menu_holder .menu .menu_inner {
  display: flex;
  padding: 40px;
  padding-bottom: 80px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  overflow: auto;
  height: 100%;
}
.menu_holder .menu .menu_inner .logo {
  max-width: 177px;
  height: auto;
}
.menu_holder .menu .menu_inner .menu_list_upper {
  width: 100%;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list {
  display: flex;
  padding: 25px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element {
  width: 100%;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element a svg {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element a:hover span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element a span {
  position: relative;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element a span:before {
  background-color: currentColor;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  width: 100%;
  will-change: transform;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: var(--Black, #000);
  border-left: 1px solid white;
  border-right: 1px solid white;
  visibility: hidden;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 992px) {
  .menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder {
    position: static;
    height: auto;
    padding: 0;
    visibility: hidden;
    border: none;
    max-height: 0px;
  }
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder .child_list {
  display: flex;
  padding: 17svh 0 25px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  height: 100%;
  overflow: auto;
}
@media (max-width: 992px) {
  .menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder .child_list {
    padding: 20px 20px;
    gap: 16px;
  }
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder .child_list .child_list_element {
  width: 100%;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder .child_list .child_list_element a:hover span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder .child_list .child_list_element a span {
  position: relative;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder .child_list .child_list_element a span:before {
  background-color: currentColor;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  width: 100%;
  will-change: transform;
}
.menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder.active {
  visibility: visible;
}
@media (max-width: 992px) {
  .menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder.active {
    visibility: visible;
    max-height: 1500px;
  }
}
@media (max-width: 992px) {
  .menu_holder .menu .menu_inner .menu_list_upper .menu_list .menu_list_element.has_child .child_list_holder.active .child_list {
    padding: 20px 20px;
    gap: 16px;
  }
}
.menu_holder .menu .menu_inner .account_menu_list_bottom {
  width: 100%;
}
.menu_holder .menu .menu_inner .account_menu_list_bottom .menu_list {
  display: flex;
  padding: 25px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.menu_holder .menu .menu_inner .account_menu_list_bottom .menu_list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.menu_holder .menu .menu_inner .account_menu_list_bottom .menu_list li .bottom_menu_element {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.menu_holder .menu .menu_inner .account_menu_list_bottom .menu_list li .bottom_menu_element .lang_links {
  display: flex;
  gap: 5px;
  align-self: stretch;
}

@media (max-width: 992px) {
  .menu_holder .menu {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .header .left .menu_trigger span,
  .header .left .search_trigger span {
    display: none;
  }
  .header .right span {
    display: none;
  }
  .header .right .contacts {
    display: none;
  }
}
.search_section {
  transform: translateY(-100%);
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: auto;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 55;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
}
.search_section.active {
  transform: translateY(0%);
}
.search_section .search_inner {
  width: 100%;
  display: flex;
  justify-content: center;
}
.search_section .search_inner .small_container {
  display: flex;
  max-width: 949px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  align-self: stretch;
}
.search_section .search_inner .small_container .search_title_holder {
  position: sticky;
  top: 0;
  z-index: 1;
  background: white;
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding-top: 25px;
}
.search_section .search_inner .small_container .search_title_holder .search_title {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 576px) {
  .search_section .search_inner .small_container .search_title_holder .search_title {
    font-size: 23px;
  }
}
.search_section .search_inner .small_container .search_title_holder .search_close_trigger {
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
}
@media (max-width: 576px) {
  .search_section .search_inner .small_container .search_title_holder .search_close_trigger {
    font-size: 18px;
    margin-left: 10px;
    margin-top: 4px;
  }
}
.search_section .search_inner .small_container .search_input_holder {
  position: sticky;
  top: 68px;
  z-index: 1;
  display: flex;
  padding: 25px 0;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: white;
}
.search_section .search_inner .small_container .search_input_holder form {
  width: 100%;
}
.search_section .search_inner .small_container .search_input_holder form label input {
  display: flex;
  height: 82px;
  padding: 10px 30px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  background: #f2f2f2;
  width: 100%;
}
.search_section .search_inner .small_container .search_product_holder {
  display: flex;
  padding-top: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  flex: 1 0 0;
  align-self: stretch;
  height: 100%;
}
@media (max-width: 576px) {
  .search_section .search_inner .small_container .search_product_holder {
    padding-top: 20px;
  }
}
.search_section .search_inner .small_container .search_product_holder .search_product_holder_title {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.search_section .search_inner .small_container .search_product_holder .search_product_holder_title h5 {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.search_section .search_inner .small_container .search_product_holder .products_holder_scroll {
  width: 100%;
  height: 100%;
}
.search_section .search_inner .small_container .search_product_holder .products_holder_scroll .wrapper {
  display: grid;
  align-self: stretch;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .search_section .search_inner .small_container .search_product_holder .products_holder_scroll .wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .search_section .search_inner .small_container .search_product_holder .products_holder_scroll .wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .search_section .search_inner {
    padding: 0 15px;
  }
}
.footer_logo {
  display: flex;
  padding: 60px 10px 30px 10px;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
  background: var(--Black, #000);
}
.footer_logo img {
  max-width: 744px;
  width: 100%;
}

footer .footer-content {
  display: flex;
  padding: 60px 40px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
footer .footer-content .footer-columns {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
footer .footer-content .footer-columns .column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
footer .footer-content .footer-columns .column h4 {
  color: var(--Black, #000);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
footer .footer-content .footer-columns .column ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
footer .footer-content .footer-columns .column ul li a {
  color: var(--Black, #000);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
footer .footer-bottom {
  display: flex;
  padding: 40px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid var(--Black, #000);
}
footer .footer-bottom .footer-left .social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
footer .footer-bottom .footer-right .payment-methods {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
footer .footer-creator {
  display: flex;
  padding: 14px 40px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  background: var(--Black, #000);
}
footer .footer-creator p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer .footer-creator .created {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .footer-creator .created span {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
footer.footer_minimal .footer-content {
  display: none;
}

@media (max-width: 992px) {
  footer .footer-content .footer-columns {
    flex-wrap: wrap;
    gap: 0;
    row-gap: 40px;
  }
  footer .footer-content .footer-columns .column {
    flex: 1 0 50%;
    max-width: 50%;
  }
  footer .footer-content {
    padding: 45px 20px;
  }
  footer .footer-content .footer-columns .column h4 {
    font-size: 17px;
  }
  footer .footer-creator {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .footer_logo {
    padding: 21px 10px 30px 10px;
  }
}
.md-modal {
  margin: auto;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  padding: 0px;
  padding-top: 35px;
  min-width: 320px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (max-width: 992px) {
  .md-modal {
    height: calc(100vh - 30px);
    padding-top: 25px;
  }
}

.md-show {
  visibility: visible;
}

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  background: white;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

.md-effect .menu-content,
.md-effect .menu-head,
.md-effect .menu-discuss {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show.md-effect ~ .md-overlay {
  background-color: white;
}

.md-effect- .menu-content h3,
.md-effect .menu-content {
  background: transparent;
}

.md-effect .menu-content {
  margin-bottom: 45px;
  height: 100%;
}

.md-show.md-effect .menu-content,
.md-show.md-effect .menu-head,
.md-show.md-effect .menu-discuss {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.md-close {
  cursor: pointer;
}

.md-show.md-modal.menu ~ .md-overlay {
  z-index: 15;
}

.md-show.md-modal.menu {
  z-index: 20;
}

.md-show.md-modal.form_popup ~ .md-overlay {
  z-index: 25;
}

.md-show.md-modal.form_popup {
  z-index: 30;
}

.index_page .page {
  padding-top: 0;
}

.index_section {
  padding: 0 5vh;
  min-height: 100vh;
  background: linear-gradient(180deg, #3b3b3b 0%, #161616 100%);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_section .list_holder {
  display: flex;
  justify-content: center;
  background: rgb(222, 222, 222);
  padding: 20px;
  border-radius: 20px;
}
.index_section .list_holder ul {
  flex-direction: column;
  columns: 3;
  gap: 20px;
  width: 100%;
  text-align: center;
}
.index_section .list_holder ul li {
  width: 100%;
}
.index_section .list_holder ul li a {
  width: 100%;
  color: white;
  display: inline-block;
  padding: 20px 35px;
  background-color: #080808;
  border-radius: 20px;
  margin-bottom: 10px;
}

.banners_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.banners_section .banner:nth-child(1),
.banners_section .banner:nth-child(4) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(1) .banner_text_container,
.banners_section .banner:nth-child(4) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(11),
.banners_section .banner:nth-child(14) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(11) .banner_text_container,
.banners_section .banner:nth-child(14) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(21),
.banners_section .banner:nth-child(24) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(21) .banner_text_container,
.banners_section .banner:nth-child(24) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(31),
.banners_section .banner:nth-child(34) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(31) .banner_text_container,
.banners_section .banner:nth-child(34) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(41),
.banners_section .banner:nth-child(44) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(41) .banner_text_container,
.banners_section .banner:nth-child(44) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(51),
.banners_section .banner:nth-child(54) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(51) .banner_text_container,
.banners_section .banner:nth-child(54) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(61),
.banners_section .banner:nth-child(64) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(61) .banner_text_container,
.banners_section .banner:nth-child(64) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(71),
.banners_section .banner:nth-child(74) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(71) .banner_text_container,
.banners_section .banner:nth-child(74) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(81),
.banners_section .banner:nth-child(84) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(81) .banner_text_container,
.banners_section .banner:nth-child(84) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner:nth-child(91),
.banners_section .banner:nth-child(94) {
  grid-column: 1/-1;
}
.banners_section .banner:nth-child(91) .banner_text_container,
.banners_section .banner:nth-child(94) .banner_text_container {
  padding-top: 15%;
}
.banners_section .banner {
  grid-column: span 1;
  height: 120svh;
  position: relative;
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}
.banners_section .banner:first-child {
  height: 80svh;
}
.banners_section .banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.92%, rgba(0, 0, 0, 0.46) 100%);
  z-index: 2;
}
.banners_section .banner .banner_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banners_section .banner .banner_text_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  position: sticky;
  z-index: 3;
  width: 100%;
  bottom: 40px;
  padding-top: 40%;
}
.banners_section .banner .banner_text_container a {
  color: white;
}
.banners_section .banner .banner_text_container a h2 {
  margin-bottom: 0;
}
.banners_section .banner .banner_text_container a * {
  color: inherit;
}
.banners_section .banner .banner_text_container .banner_links_holder {
  display: flex;
  align-items: center;
  gap: 34px;
}
.banners_section .banner .banner_text_container .banner_links_holder a {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.marque_section {
  display: flex;
  height: 70px;
  justify-content: center;
  align-items: center;
  gap: 90px;
  align-self: stretch;
  background: var(--Black, #000);
}
.marque_section .swiper-slide {
  color: white;
  white-space: nowrap;
}

.highlights_section {
  display: flex;
  padding-top: 60px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: var(--Black, #000);
}
.highlights_section .slider_holder {
  display: flex;
  padding: 60px 0 120px 0;
  justify-content: center;
  align-items: center;
  gap: 2px;
  align-self: stretch;
}
.highlights_section .slider_holder .highlights-swiper {
  width: 100%;
}
.highlights_section .slider_holder .highlights-swiper .swiper-wrapper .swiper-slide .inner_elem {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.highlights_section .slider_holder .highlights-swiper .swiper-wrapper .swiper-slide .inner_elem img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 5/7;
}
.highlights_section .slider_holder .highlights-swiper .swiper-wrapper .swiper-slide .inner_elem a {
  display: flex;
  padding: 0 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #fff;
  /* H6 */
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}

.instagram_section {
  display: flex;
  padding-top: 60px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: var(--Black, #000);
}
.instagram_section .slider_holder {
  display: flex;
  padding: 60px 0 120px 0;
  justify-content: center;
  align-items: center;
  gap: 2px;
  align-self: stretch;
}
.instagram_section .slider_holder .instagram-swiper {
  width: 100%;
}
.instagram_section .slider_holder .instagram-swiper .swiper-wrapper .swiper-slide a {
  display: block;
}
.instagram_section .slider_holder .instagram-swiper .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

@media (max-width: 992px) {
  .highlights_section .slider_holder {
    padding: 6svh 0 10svh 0;
  }
  .instagram_section {
    padding-top: 6svh;
  }
  .instagram_section .slider_holder {
    padding: 6svh 0 10svh 0;
  }
}
@media (max-width: 768px) {
  .banners_section .banner {
    padding: 30px 20px;
  }
  .banners_section .banner {
    grid-column: 1/-1;
  }
  .instagram_section .slider_holder {
    padding: 2svh 0 10svh 0;
  }
}
@media (max-width: 576px) {
  .marque_section {
    font-size: 18px;
  }
}
.about_banner {
  background-image: url("../images/about-us/about-back.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 484px;
}
.about_banner .container {
  max-width: 669px;
}
.about_banner .container .about-text {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.about_banner .container .about-text .about-title {
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  line-height: 100%;
}
.about_banner .container .about-text .about-desc {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
}

.about_shop {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.about_shop .container {
  max-width: 716px;
  padding: 60px 10px;
}
.about_shop .container .shop-desc {
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: justify;
}

.banner_section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.banner_section .container .gray_back_section {
  background-image: url("../images/about-us/gray-back.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}

@media (max-width: 768px) {
  .about-us section {
    padding: 0px 20px;
  }
  .about-us section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .about-us section .container .about-text .about-title {
    font-size: 25px;
  }
  .about-us section .container .shop-desc {
    font-size: 18px;
  }
}
.account {
  background: #FBFBFB;
}
.account .order-history {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.account .order-history .container {
  width: 100%;
  max-width: 716px;
  padding: 20px 10px;
}
.account .order-history .container .acc_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0px;
}
.account .order-history .container .acc_wrapper label {
  padding: 0px 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #6D6D6D;
}
.account .order-history .container .acc_wrapper input {
  border-bottom: 1px solid black;
  padding: 10px;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  background: transparent;
}
.account .order-history .container button.form-button {
  height: 54px;
  background: #000;
  padding: 17px 60px;
  color: #fff;
}
.account .order-history .container .acc_wrapper.password-wrapper {
  position: relative;
}
.account .order-history .container .acc_wrapper.password-wrapper img {
  position: absolute;
  right: 10px;
  top: 30px;
}
.account .order-history .page-title {
  width: 100%;
  padding-top: 40px;
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
}
.account .order-history .tabs_section {
  display: flex;
  gap: 20px;
}
.account .order-history .tabs_section div {
  height: 75px;
  width: 115px;
  background: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account .order-history .tabs_section div a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
}
.account .order-history .tabs_section div a img {
  width: 24px;
  filter: brightness(0) invert(0);
}
.account .order-history .tabs_section div.active {
  background: #000;
}
.account .order-history .tabs_section div.active a {
  color: #fff;
  display: flex;
  flex-direction: column;
}
.account .order-history .tabs_section div.active a img {
  width: 24px;
  filter: brightness(0) invert(1);
}
.account .order-history .order-tab {
  background: #f2f2f2;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.account .order-history .order-tab .tab-row {
  display: flex;
  flex-direction: row;
  padding: 10px;
  justify-content: space-between;
}
.account .order-history .order-tab .tab-row .order-top {
  height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 110%;
}
.account .order-history .order-tab .tab-row .order-top .detail_button {
  background: #000;
  color: #fff;
  padding: 8px 30px;
}
.account .order-history .order-tab .tab-row .order-top .order-data {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.account .order-history .order-tab .tab-row .order-top .order-info {
  font-family: Jura;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.account .order-history .order-tab .pro-row {
  display: flex;
  background: #fff;
  padding: 10px;
}
.account .order-history .order-tab .pro-row .order-status {
  display: flex;
  align-items: center;
  min-width: 130px;
  padding: 0 10px;
  gap: 15px;
}
.account .order-history .order-tab .pro-row .pending {
  color: #727272;
}
.account .order-history .order-tab .pro-row .delivered {
  color: #03A930;
}
.account .order-history .order-tab .pro-row .cancelled {
  color: #E05725;
}
.account .order-history .order-tab .pro-row .status_icon {
  width: 24px;
}
.account .order-history .order-tab .pro-row .product-wrapper {
  display: flex;
  padding: 10px;
  width: 100%;
  border: 1px solid #F2F2F2;
  border-radius: 8px;
  gap: 20px;
}
.account .order-history .order-tab .pro-row .product-wrapper .product-list {
  display: flex;
  gap: 10px;
}
.account .order-history .order-tab .pro-row .product-wrapper .product-list a {
  width: 56px;
}

.account {
  background: #FBFBFB;
}
.account .login {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px 0;
}
.account .login .container.acc_title {
  text-align: center;
}
.account .login .container {
  width: 100%;
  max-width: 452px;
  padding: 20px 10px;
}
.account .login .container .page-title {
  width: 100%;
  padding-top: 40px;
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 20px;
}
.account .login .container .page_desc {
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.account .login .container button.form-button {
  height: 54px;
  width: 100%;
  background: #000;
  padding: 17px 60px;
  color: #fff;
}
.account .login .container .acc_wrapper.password-wrapper {
  position: relative;
}
.account .login .container .acc_wrapper.password-wrapper img {
  position: absolute;
  right: 10px;
  top: 30px;
}
.account .login .container .acc_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0px;
}
.account .login .container .acc_wrapper label {
  padding: 0px 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #6D6D6D;
}
.account .login .container .acc_wrapper input {
  border-bottom: 1px solid black;
  padding: 10px;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  background: transparent;
  margin-bottom: 60px;
  margin-top: 20px;
}

.acc_wrapper.password-wrapper.log-pass img {
  top: 50px !important;
}

.have-account .mail input {
  margin-bottom: 0 !important;
}

@media (max-width: 500px) {
  .account .order-history .container .tabs_section div a {
    text-align: center;
    padding: 5px;
  }
  .account .order-history .container .order-tab .tab-row .order-top .order-data {
    font-size: 12px;
  }
  .account .order-history .container .order-tab .tab-row .order-top .date-info {
    font-size: 12px;
  }
  .account .order-history .container .order-tab .tab-row .order-top .detail_button {
    padding: 5px;
  }
}
.order-details {
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-details .container {
  max-width: 716px;
  width: 100%;
  padding: 60px 10px;
}
.order-details .container .back-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  gap: 10px;
  padding-bottom: 20px;
}
.order-details .container .back-list a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.order-details .container .product-wrapper {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-details .container .product-wrapper .product-element {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
}
.order-details .container .product-wrapper .product-element .right-sec {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-details .container .product-wrapper .product-element .bottom-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-details .container .product-wrapper .product-element .bottom-line .due-line {
  display: flex;
  gap: 20px;
}
.order-details .container .product-wrapper .product-element .bottom-line .info-wrap {
  display: flex;
  gap: 10px;
}
.order-details .container .product-wrapper .product-element .bottom-line .info-wrap .title {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.order-details .container .product-wrapper .product-element .bottom-line .info-wrap .info {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}
.order-details .container .product-wrapper .product-element img {
  max-width: 173px;
}
.order-details .container .total {
  display: flex;
  flex-direction: column;
  width: 200px;
  gap: 10px;
}
.order-details .container .total .total-pay,
.order-details .container .total .identity {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

@media (max-width: 500px) {
  .order-details .container .product-wrapper .product-element {
    flex-direction: column;
    gap: 10px;
  }
  .order-details .container .product-wrapper .product-element .bottom-line .info-wrap .title {
    font-size: 11px;
  }
  .order-details .container .product-wrapper .product-element .bottom-line .info-wrap .info {
    font-size: 11px;
  }
  .order-details .container .product-wrapper .product-element {
    gap: 5px;
  }
  .order-details .container .product-wrapper .product-element .right-sec {
    gap: 10px;
  }
}
.categories {
  display: flex;
  padding: 22px 43px 32px 43px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: var(--Black, #000);
}
.categories .categories_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
  align-self: stretch;
}
.categories .categories_inner .category_name h6 {
  color: #fff;
  /* H6 */
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.categories .categories_inner .categories_links {
  display: flex;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}
.categories .categories_inner .categories_links .categories_links_element a {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product_grid {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  align-self: stretch;
  flex-wrap: wrap;
}
.product_grid .wrapper {
  width: 100%;
}
.product_grid .wrapper .product .product_info {
  padding: 34px 20px;
  gap: 15px;
}
.product_grid .wrapper .product .product_info .product_title {
  font-size: 16px;
  font-weight: 600;
}
.product_grid .wrapper .product .product_info .product_price {
  font-size: 17px;
  font-weight: 600;
}
.product_grid .wrapper .product .product_info .add_to_cart {
  font-size: 16px;
}

.more {
  display: flex;
  padding: 50px 10px 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

section.title {
  display: flex;
  height: 147px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: var(--Black, #000);
}
section.title h3 {
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.category_description {
  display: flex;
  padding: 80px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: var(--Black, #000);
}
.category_description .text_editor {
  max-width: 1196px;
}
.category_description .text_editor * {
  color: #fff;
}
.category_description .text_editor h6 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.category_description .text_editor p {
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .product_grid .wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .categories .categories_inner .categories_links {
    overflow: auto;
    flex-wrap: wrap;
    padding-bottom: 10px;
    column-gap: 20px;
  }
  .categories .categories_inner .categories_links .categories_links_element a {
    white-space: nowrap;
  }
}
@media (max-width: 576px) {
  .categories {
    padding: 22px 22px 32px 22px;
  }
  .categories .categories_inner .categories_links {
    gap: 24px;
  }
  .product_grid .wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .category_description .text_editor {
    max-height: 250px;
    overflow: auto;
  }
}
.thank_you {
  background: var(--bg_page_standart, #FBFBFB);
}
.thank_you .holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 39px;
  align-self: stretch;
  min-height: calc(100vh - 70px - 166px - 42px);
}
.thank_you .holder .thank_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}
.thank_you .holder .thank_inner h5 {
  color: var(--Black, #000);
  leading-trim: both;
  text-edge: cap;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.thank_you .holder .thank_inner p {
  color: var(--Black, #000);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.product_section {
  display: flex;
  padding: 21px 0 0 0;
  align-items: stretch;
}
.product_section .product_info {
  display: flex;
  max-width: 28vw;
  width: 100%;
  padding: 80px 25px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.product_section .product_info .product_details {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.product_section .product_info .product_details h4 {
  color: var(--Black, #000);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.product_section .product_info .product_details .model {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.product_section .product_info .product_details .available {
  display: flex;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.product_section .product_info .delivery_options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  width: 100%;
}
.product_section .product_info .delivery_options .delivery_options_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.product_section .product_info .delivery_options .delivery_options_block .radio_holder {
  display: flex;
  gap: 6px;
}
.product_section .product_info .delivery_options .delivery_options_block.delivery_date input {
  width: 100%;
  max-width: 165px;
  height: 33px;
  border: 1px solid var(--Black, #000);
  background: #fff;
  padding-left: 5px;
}
.product_section .product_info .price_and_cart {
  width: 100%;
  display: flex;
}
.product_section .product_info .price_and_cart .price {
  display: flex;
  flex: 1 0 0;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  padding: 16px 16px;
  color: var(--Black, #000);
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.product_section .product_info .price_and_cart .add_to_cart {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  padding: 16px 16px;
  cursor: pointer;
  background: var(--Grays-Black, #000);
  color: var(--white);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0, 1);
}
.product_section .product_info .price_and_cart .add_to_cart:hover {
  background: var(--Gray-700, #1a1a1a);
}
.product_section .product_info .price_and_cart .add_to_cart .add_to_cart_svg_done {
  display: none;
}
.product_section .product_info .price_and_cart .add_to_cart .add_to_cart_text {
  color: inherit;
}
.product_section .product_photo_wrapper {
  width: 39vw;
}
.product_section .product_photo_wrapper .inner_holder {
  max-height: 100vh;
  height: 100%;
  overflow: auto;
  width: 100%;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox, Safari 18.2+, Chromium 121+ */
}
.product_section .product_photo_wrapper .inner_holder .product-main-swiper {
  width: 100%;
  height: 100%;
}
.product_section .product_photo_wrapper .inner_holder img {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: inherit;
  object-fit: cover;
}
.product_section .product_details_right {
  max-width: 33vw;
  padding: 80px 56px 106px 56px;
}
.product_section .product_details_right .product_thumbnails_holder .product-thumbnails-swiper {
  width: 100%;
}
.product_section .product_details_right .product_thumbnails_holder .product-thumbnails-swiper .swiper-slide {
  width: auto;
}
.product_section .product_details_right .product_thumbnails_holder .product-thumbnails-swiper img {
  display: block;
  height: 100%;
  object-fit: cover;
}
.product_section .product_details_right .product_thumbnails_holder .inner {
  width: auto;
}
.product_section .product_details_right .product_thumbnails_holder .swiper-slide img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}
.product_section .product_details_right .product_description_wrapper {
  margin-top: 40px;
  display: flex;
  display: flex;
  padding-bottom: 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}
.product_section .product_details_right .product_description_wrapper h5 {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.product_section .product_details_right .product_description_wrapper p {
  font-size: 14px;
  font-style: normal;
  line-height: 170%; /* 142.857% */
  text-transform: capitalize;
}

.similar_products .section_title {
  padding: 58px 20px;
}

@media (max-width: 1200px) {
  .product_section .product_details_right {
    padding: 40px 20px 95px 20px;
  }
  .product_section .product_info .price_and_cart {
    flex-direction: column;
  }
  .product_section .product_info {
    padding: 40px 25px;
  }
}
@media (max-width: 992px) {
  .product_section {
    padding-top: 0;
    flex-direction: column;
  }
  .product_section .product_info,
  .product_section .product_details_right {
    max-width: unset;
    order: 2;
  }
  .product_section .product_photo_wrapper {
    order: 1;
    width: 100%;
  }
  .product_section .product_photo_wrapper .inner_holder {
    display: flex;
    max-height: unset;
    flex-wrap: nowrap;
  }
  .product_section .product_photo_wrapper .inner_holder img {
    flex: 1 0 0;
    width: 100%;
    height: 70vh;
    margin: 0px;
    margin-bottom: 0;
    max-width: unset;
  }
  .product_thumbnails_holder {
    display: none;
  }
  .product_section .product_details_right .product_description_wrapper {
    margin-top: 0;
  }
  .product_section .product_details_right {
    padding: 40px 20px 40px 20px;
  }
  .product_section .product_info {
    padding: 20px 25px;
  }
  .product_section .product_info .delivery_options {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .product_section .product_info .delivery_options .delivery_options_block {
    width: calc(50vw - 38px);
  }
}
@media (max-width: 768px) {
  .about-us section {
    padding: 0px;
  }
}
@media (max-width: 576px) {
  .product_section .product_photo_wrapper .inner_holder img {
    height: 40vh;
    aspect-ratio: 1/1;
  }
}
.checkout {
  background: #fbfbfb;
}
.checkout .small_container {
  padding: 60px 10px;
}
.checkout .checkout-wrapper {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.checkout .checkout-wrapper .prod_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 20px;
  background: #fff;
  align-items: flex-start;
}
.checkout .checkout-wrapper .prod_info .left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checkout .checkout-wrapper .prod_info .left-side .total {
  font-size: 16px;
}
.checkout .checkout-wrapper .prod_info .left-side .total span {
  font-weight: 700;
}
.checkout .checkout-wrapper .prod_info .left-side a {
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
}
.checkout .checkout-wrapper .prod_info .rigth-side {
  max-width: 67%;
}
.checkout .checkout-wrapper .prod_info .prod_details {
  background: #f2f2f2;
  display: flex;
  flex-direction: row;
  padding: 10px;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
}
.checkout .checkout-wrapper .prod_info .prod_details a {
  min-width: 96px;
  height: 96px;
  width: 96px;
}
.checkout .checkout-wrapper .create_acc {
  background: #f2f2f2;
  padding: 40px;
}
.checkout .checkout-wrapper .create_acc h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
}
.checkout .checkout-wrapper .create_acc p {
  font-weight: 600;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.checkout .checkout-wrapper .create_acc .round {
  position: relative;
}
.checkout .checkout-wrapper .create_acc .round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 14px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 14px;
}
.checkout .checkout-wrapper .create_acc .round label:after {
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  width: 6px;
}
.checkout .checkout-wrapper .create_acc .round input[type=checkbox] {
  visibility: hidden;
}
.checkout .checkout-wrapper .create_acc .round input[type=checkbox]:checked + label {
  background-color: #000;
  border-color: #000;
}
.checkout .checkout-wrapper .create_acc .round input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.checkout .checkout-wrapper .form_header {
  padding: 20px 20px;
  gap: 20px;
  margin-top: 20px;
  background: #fff;
}
.checkout .checkout-wrapper .form_header h5 {
  padding: 20px 0px;
}
.checkout .checkout-wrapper .form_header .acc_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0px;
}
.checkout .checkout-wrapper .form_header .acc_wrapper label {
  padding: 0px 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #6d6d6d;
}
.checkout .checkout-wrapper .form_header .acc_wrapper input {
  border-bottom: 1px solid black;
  padding: 10px;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  background: transparent;
}
.checkout .checkout-wrapper .form_header .acc_wrapper input::placeholder {
  color: #000;
  opacity: 1;
}
.checkout .checkout-wrapper .shipping_details .heading {
  background: #f2f2f2;
  padding: 40px;
  margin: 20px 0px 0px 0px;
}
.checkout .checkout-wrapper .shipping_details .heading h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
}
.checkout .checkout-wrapper .shipping_details .heading p {
  font-weight: 600;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.checkout .checkout-wrapper .shipping_details .heading .round {
  position: relative;
}
.checkout .checkout-wrapper .shipping_details .heading .round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 14px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 14px;
}
.checkout .checkout-wrapper .shipping_details .heading .round label:after {
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  width: 6px;
}
.checkout .checkout-wrapper .shipping_details .heading .round input[type=checkbox] {
  visibility: hidden;
}
.checkout .checkout-wrapper .shipping_details .heading .round input[type=checkbox]:checked + label {
  background-color: #000;
  border-color: #000;
}
.checkout .checkout-wrapper .shipping_details .heading .round input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.checkout .checkout-wrapper .form_header_shipping {
  display: none;
}
.checkout .checkout-wrapper #shipping_details:checked ~ .form_header_shipping {
  display: block;
}
.checkout .checkout-wrapper .payment {
  background: #fff;
  padding: 20px;
  margin: 20px 0px 0px 0px;
}
.checkout .checkout-wrapper .button_holder {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 0;
}
.checkout .checkout-wrapper .button_holder .round {
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid #000;
  cursor: pointer;
  position: relative;
  padding: 15px 20px;
  display: flex;
}
.checkout .checkout-wrapper .button_holder .round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 14px;
  left: 10px;
  position: absolute;
  top: 17px;
  width: 14px;
}
.checkout .checkout-wrapper .button_holder .round label:after {
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 3px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  width: 6px;
}
.checkout .checkout-wrapper .button_holder .round input[type=radio] {
  visibility: hidden;
}
.checkout .checkout-wrapper .button_holder .round input[type=radio]:checked + label {
  background-color: #000;
  border-color: #000;
}
.checkout .checkout-wrapper .button_holder .round input[type=radio]:checked + label:after {
  opacity: 1;
}
.checkout .checkout-wrapper .comment {
  background: #fff;
  padding: 20px;
  margin: 20px 0px 0px 0px;
}
.checkout .checkout-wrapper .comment .text_area {
  padding: 30px 0px 0px 0;
}
.checkout .checkout-wrapper .comment .text_area label {
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  padding: 10px;
}
.checkout .checkout-wrapper .comment .text_area input {
  margin-top: 20px;
  border-bottom: 1px solid black;
  padding: 10px;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  background: transparent;
  width: 100%;
}
.checkout .checkout-wrapper .place_order {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.checkout .checkout-wrapper .place_order .btn {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 768px) {
  .checkout .small_container {
    width: 100%;
  }
  .checkout .small_container .checkout-wrapper .prod_info {
    flex-direction: column-reverse;
    gap: 13px;
  }
  .checkout .small_container .checkout-wrapper .prod_info .prod_details {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .checkout .small_container .checkout-wrapper .prod_info .prod_details a {
    min-width: 66px;
    height: 66px;
    width: 66px;
  }
  .checkout .small_container .checkout-wrapper .prod_info .prod_details a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .checkout .checkout-wrapper .prod_info .rigth-side {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .checkout .checkout-wrapper .shipping_details .heading h3 {
    font-size: 24px;
  }
}
.cart_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #fbfbfb;
}
.cart_section .inner {
  display: flex;
  flex-direction: column;
}
.cart_section .inner .top_panel {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
}
.cart_section .inner .top_panel .cart_info {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
.cart_section .inner .top_panel .wishlist_info {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}
.cart_section .inner .top_panel .cart_label {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.cart_section .inner .top_panel .wishlist_count {
  margin-bottom: 3px;
}
.cart_section .inner .top_panel .cart_count {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1; /* 100% */
  margin-bottom: 3px;
}
.cart_section .inner .cart_details_wrapper {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}
.cart_section .inner .cart_details_wrapper .cart_product_list {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: var(--White, #fff);
}
.cart_section .inner .total_info_details {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.cart_section .inner .total_info_details .price_delivery_wrapper {
  display: flex;
  padding-bottom: 20px;
  justify-content: center;
  align-items: flex-start;
  gap: 19px;
  flex: 1 0 0;
  align-self: stretch;
  flex-direction: column;
  border-bottom: 1px solid #ebebeb;
}
.cart_section .inner .total_info_details .price_delivery_wrapper .detail_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.cart_section .inner .total_info_details .price_delivery_wrapper .detail_block .detail_block_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 100%;
}
.cart_section .inner .total_info_details .price_delivery_wrapper .detail_block .detail_block_inner .left_title {
  color: var(--Black, #000);
  font-variant-numeric: oldstyle-nums proportional-nums;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
}
.cart_section .inner .total_info_details .price_delivery_wrapper .detail_block .detail_block_inner .right_detail {
  color: var(--Black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.cart_section .inner .total_info_details .price_delivery_wrapper .detail_block .additional_text {
  width: 100%;
  flex: 1 0 100%;
}
.cart_section .inner .total_info_details .price_delivery_wrapper .detail_block .additional_text p {
  margin: 0;
  font-size: 13px;
}
.cart_section .inner .total_info_details .price_delivery_wrapper .detail_block .additional_text a {
  color: var(--Black, #000);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.cart_section .inner .total_info_details .use_my_cashback {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  background: var(--block_bg_standart, #f2f2f2);
}
.cart_section .inner .total_info_details .use_my_cashback .text_block {
  display: flex;
  padding: 10px 30px 10px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.cart_section .inner .total_info_details .use_my_cashback .text_block .top {
  color: var(--Black, #000);
  leading-trim: both;
  text-edge: cap;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cart_section .inner .total_info_details .use_my_cashback .text_block .sub {
  color: var(--Black, #000);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 19.5px */
}
.cart_section .inner .total_info_details .total_amount {
  display: flex;
  padding: 20px 0 40px 0;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
.cart_section .inner .total_info_details .total_amount .total_amount_inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.cart_section .inner .total_info_details .total_amount .total_amount_inner .left_title {
  font-size: 14px;
}
.cart_section .inner .total_info_details .total_amount .total_amount_inner .right_detail {
  font-size: 16px;
  font-weight: 500;
}
.cart_section .inner .total_info_details .checkout_proceed {
  width: 100%;
}

.cart_fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cart_fixed.visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cart_fixed .back-list {
  width: 100%;
  display: flex;
  padding: 22px 40px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 576px) {
  .cart_fixed .back-list {
    padding: 15px 15px;
  }
}
.cart_fixed .back-list .btn {
  padding: 17px 17px;
}
.cart_fixed .back-list .black_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cart_fixed .back-list .black_link span {
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.cart_fixed .back-list .total_sum {
  display: flex;
  align-items: center;
  gap: 15.263px;
  color: var(--Black, #000);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.cart_fixed .back-list .total_sum span {
  font-weight: 700;
}

@media (max-width: 992px) {
  .cart_fixed .back-list .total_sum {
    display: none;
  }
}
@media (max-width: 768px) {
  .cart_section .inner .top_panel {
    padding: 0 10px;
  }
  .cart_section .inner .cart_details_wrapper {
    gap: 30px;
  }
  .cart_section .inner .total_info_details .use_my_cashback {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .cart_section .inner .top_panel {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .cart_section .inner .cart_details_wrapper {
    padding-top: 10px;
  }
  .cart_section .inner .cart_details_wrapper .cart_product_list {
    padding: 10px;
  }
}
/** Подключение переменных */
.contacts_section {
  padding: 60px 0 80px;
  background: var(--bg_page_standart);
}
@media (max-width: 768px) {
  .contacts_section {
    padding: 40px 0 60px;
  }
}
.contacts_section .small_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .contacts_section .small_container {
    padding: 0 20px;
  }
}
.contacts_section .contacts_wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 20px;
}
@media (max-width: 968px) {
  .contacts_section .contacts_wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
}
.contacts_section .contacts_info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contacts_section .contacts_info .info_block h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--black);
  line-height: 1.2;
}
@media (max-width: 576px) {
  .contacts_section .contacts_info .info_block h3 {
    font-size: 28px;
  }
}
.contacts_section .contacts_info .info_block h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--black);
}
.contacts_section .contacts_info .info_block p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
.contacts_section .contacts_info .info_block a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
}
.contacts_section .contacts_info .info_block a:hover {
  opacity: 0.6;
}
.contacts_section .contacts_info .social_icons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.contacts_section .contacts_info .social_icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  transition: all 0.3s ease;
}
.contacts_section .contacts_info .social_icons a:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
}
.contacts_section .contacts_info .social_icons a:hover svg * {
  transition: fill 0.3s ease;
  fill: white;
}
.contacts_section .contacts_info .social_icons a svg {
  width: 20px;
  height: 20px;
}
.contacts_section .contacts_form .contact_form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts_section .contacts_form .form_group {
  position: relative;
}
.contacts_section .contacts_form .form_group input,
.contacts_section .contacts_form .form_group textarea {
  width: 100%;
  padding: 16px 0;
  font-size: 16px;
  font-family: "Jura", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s ease;
}
.contacts_section .contacts_form .form_group input:focus, .contacts_section .contacts_form .form_group input:not(:placeholder-shown),
.contacts_section .contacts_form .form_group textarea:focus,
.contacts_section .contacts_form .form_group textarea:not(:placeholder-shown) {
  border-bottom-color: var(--black);
}
.contacts_section .contacts_form .form_group input:focus ~ label, .contacts_section .contacts_form .form_group input:not(:placeholder-shown) ~ label,
.contacts_section .contacts_form .form_group textarea:focus ~ label,
.contacts_section .contacts_form .form_group textarea:not(:placeholder-shown) ~ label {
  top: -20px;
  font-size: 12px;
  color: var(--black);
}
.contacts_section .contacts_form .form_group textarea {
  resize: vertical;
  min-height: 100px;
}
.contacts_section .contacts_form .form_group label {
  position: absolute;
  left: 0;
  top: 16px;
  font-size: 16px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}
.contacts_section .contacts_form .submit_btn {
  align-self: flex-start;
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
}
.contacts_section .contacts_form .submit_btn:hover {
  background: var(--white);
  color: var(--black);
}
@media (max-width: 576px) {
  .contacts_section .contacts_form .submit_btn {
    width: 100%;
  }
}
.contacts_section .map_wrapper {
  width: 100%;
  margin-top: 40px;
}
.contacts_section .map_container {
  width: 100%;
  height: 500px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contacts_section .map_container {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .contacts_section .map_container {
    height: 300px;
  }
}
.contacts_section .map_container iframe {
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}
.contacts_section .map_container iframe:hover {
  filter: grayscale(0);
}/*# sourceMappingURL=style.css.map */