.dm-catalogue-form .dm-selected-column .list-group {
  display: block;
  height: 100%;
}
.dm-colored-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/*!
* 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-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 (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 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);
    transform: translateZ(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);
    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);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%, 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);
    transform: translateZ(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);
    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);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

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

@-webkit-keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(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 {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    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% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

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

@-webkit-keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    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;
}

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {
  0%, 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;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 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;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(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 {
  0%, 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;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 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;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 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;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 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;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 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;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 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;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 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;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 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;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    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% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(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 {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

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

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(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 {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(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;
}

@-webkit-keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    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 {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    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;
}

@-webkit-keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  transform-origin: center;
}

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    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% {
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    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;
  transform-origin: top left;
}

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    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;
    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 {
  0% {
    opacity: 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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    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;
    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;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    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;
    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;
    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;
    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;
    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;
  transform-origin: center bottom;
}

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

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    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;
    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;
    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;
    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;
  transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

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

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.swal2-popup.swal2-toast {
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: 1fr 99fr 1fr;
  padding: 1em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.075), 0 1px 2px rgba(0, 0, 0, 0.075), 1px 2px 4px rgba(0, 0, 0, 0.075), 1px 3px 8px rgba(0, 0, 0, 0.075), 2px 4px 16px rgba(0, 0, 0, 0.075);
  pointer-events: all;
}

.swal2-popup.swal2-toast > * {
  grid-column: 2;
}

.swal2-popup.swal2-toast .swal2-title {
  margin: 0.5em 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}

.swal2-popup.swal2-toast .swal2-loading {
  justify-content: center;
}

.swal2-popup.swal2-toast .swal2-input {
  height: 2em;
  margin: 0.5em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: 0.8em;
  height: 0.8em;
  margin: 0;
  font-size: 2em;
}

.swal2-popup.swal2-toast .swal2-html-container {
  margin: 0.5em 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}

.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0;
}

.swal2-popup.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: 0.25em;
}

.swal2-popup.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 0.5em 0 0;
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: 700;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: 0.5em;
  padding: 0 0.5em;
}

.swal2-popup.swal2-toast .swal2-styled {
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
  animation: swal2-toast-animate-success-line-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
  animation: swal2-toast-animate-success-line-long 0.75s;
}

.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: swal2-toast-show 0.5s;
  animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: swal2-toast-hide 0.1s forwards;
  animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
  display: grid;
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
  grid-template-rows: minmax(-webkit-min-content, auto) minmax(-webkit-min-content, auto) minmax(-webkit-min-content, auto);
  grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
  height: 100%;
  padding: 0.625em;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}

.swal2-container.swal2-backdrop-hide {
  background: 0 0 !important;
}

.swal2-container.swal2-bottom-start, .swal2-container.swal2-center-start, .swal2-container.swal2-top-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.swal2-container.swal2-bottom, .swal2-container.swal2-center, .swal2-container.swal2-top {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.swal2-container.swal2-bottom-end, .swal2-container.swal2-center-end, .swal2-container.swal2-top-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}

.swal2-container.swal2-top-start > .swal2-popup {
  align-self: start;
}

.swal2-container.swal2-top > .swal2-popup {
  grid-column: 2;
  align-self: start;
  justify-self: center;
}

.swal2-container.swal2-top-end > .swal2-popup, .swal2-container.swal2-top-right > .swal2-popup {
  grid-column: 3;
  align-self: start;
  justify-self: end;
}

.swal2-container.swal2-center-left > .swal2-popup, .swal2-container.swal2-center-start > .swal2-popup {
  grid-row: 2;
  align-self: center;
}

.swal2-container.swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
}

.swal2-container.swal2-center-end > .swal2-popup, .swal2-container.swal2-center-right > .swal2-popup {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.swal2-container.swal2-bottom-left > .swal2-popup, .swal2-container.swal2-bottom-start > .swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

.swal2-container.swal2-bottom > .swal2-popup {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  align-self: end;
}

.swal2-container.swal2-bottom-end > .swal2-popup, .swal2-container.swal2-bottom-right > .swal2-popup {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
}

.swal2-container.swal2-grow-fullscreen > .swal2-popup, .swal2-container.swal2-grow-row > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}

.swal2-container.swal2-grow-column > .swal2-popup, .swal2-container.swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1/4;
  align-self: stretch;
}

.swal2-container.swal2-no-transition {
  transition: none !important;
}

.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: #545454;
  font-family: inherit;
  font-size: 1rem;
}

.swal2-popup:focus {
  outline: 0;
}

.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 1em 0;
  color: inherit;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-actions {
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 1.25em auto 0;
  padding: 0;
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-loader {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: 0.25em;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 transparent #2778c4 transparent;
}

.swal2-styled {
  margin: 0.3125em;
  padding: 0.625em 1.1em;
  transition: box-shadow 0.1s;
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
}

.swal2-styled:not([disabled]) {
  cursor: pointer;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #7066e0;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
}

.swal2-styled.swal2-deny {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #dc3741;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-deny:focus {
  box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
}

.swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #6e7881;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-cancel:focus {
  box-shadow: 0 0 0 3px rgba(110, 120, 129, 0.5);
}

.swal2-styled.swal2-default-outline:focus {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-styled:focus {
  outline: 0;
}

.swal2-styled::-moz-focus-inner {
  border: 0;
}

.swal2-footer {
  justify-content: center;
  margin: 1em 0 0;
  padding: 1em 1em 0;
  border-top: 1px solid #eee;
  color: inherit;
  font-size: 1em;
}

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
  max-width: 100%;
  margin: 2em auto 1em;
}

.swal2-close {
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s, box-shadow 0.1s;
  border: none;
  border-radius: 5px;
  background: 0 0;
  color: #ccc;
  font-family: serif;
  font-family: monospace;
  font-size: 2.5em;
  cursor: pointer;
  justify-self: end;
}

.swal2-close:hover {
  transform: none;
  background: 0 0;
  color: #f27474;
}

.swal2-close:focus {
  outline: 0;
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-close::-moz-focus-inner {
  border: 0;
}

.swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 1em 1.6em 0.3em;
  padding: 0;
  overflow: auto;
  color: inherit;
  font-size: 1.125em;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}

.swal2-checkbox, .swal2-file, .swal2-input, .swal2-radio, .swal2-select, .swal2-textarea {
  margin: 1em 2em 3px;
}

.swal2-file, .swal2-input, .swal2-textarea {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: 0 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  color: inherit;
  font-size: 1.125em;
}

.swal2-file.swal2-inputerror, .swal2-input.swal2-inputerror, .swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

.swal2-file:focus, .swal2-input:focus, .swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-file::-moz-placeholder, .swal2-input::-moz-placeholder, .swal2-textarea::-moz-placeholder {
  color: #ccc;
}

.swal2-file::placeholder, .swal2-input::placeholder, .swal2-textarea::placeholder {
  color: #ccc;
}

.swal2-range {
  margin: 1em 2em 3px;
  background: #fff;
}

.swal2-range input {
  width: 80%;
}

.swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}

.swal2-range input, .swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: 0 0;
  font-size: 1.125em;
}

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: 0 0;
  color: inherit;
  font-size: 1.125em;
}

.swal2-checkbox, .swal2-radio {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}

.swal2-checkbox label, .swal2-radio label {
  margin: 0 0.6em;
  font-size: 1.125em;
}

.swal2-checkbox input, .swal2-radio input {
  flex-shrink: 0;
  margin: 0 0.4em;
}

.swal2-input-label {
  display: flex;
  justify-content: center;
  margin: 1em auto 0;
}

.swal2-validation-message {
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666;
  font-size: 1em;
  font-weight: 300;
}

.swal2-validation-message::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto 0.6em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}

.swal2-icon.swal2-error {
  border-color: #f27474;
  color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-error.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark 0.5s;
  animation: swal2-animate-error-x-mark 0.5s;
}

.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

.swal2-icon.swal2-warning.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-warning.swal2-icon-show .swal2-icon-content {
  -webkit-animation: swal2-animate-i-mark 0.5s;
  animation: swal2-animate-i-mark 0.5s;
}

.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

.swal2-icon.swal2-info.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-info.swal2-icon-show .swal2-icon-content {
  -webkit-animation: swal2-animate-i-mark 0.8s;
  animation: swal2-animate-i-mark 0.8s;
}

.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

.swal2-icon.swal2-question.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-question.swal2-icon-show .swal2-icon-content {
  -webkit-animation: swal2-animate-question-mark 0.8s;
  animation: swal2-animate-question-mark 0.8s;
}

.swal2-icon.swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip 0.75s;
  animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long 0.75s;
  animation: swal2-animate-success-line-long 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: 0 0;
  font-weight: 600;
}

.swal2-progress-steps li {
  display: inline-block;
  position: relative;
}

.swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}

.swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #2778c4;
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  -webkit-animation: swal2-show 0.3s;
  animation: swal2-show 0.3s;
}

.swal2-hide {
  -webkit-animation: swal2-hide 0.15s forwards;
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

.leave-russia-now-and-apply-your-skills-to-the-world {
  display: flex;
  position: fixed;
  z-index: 1939;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 0 20px;
  background: #20232a;
  color: #fff;
  text-align: center;
}

.leave-russia-now-and-apply-your-skills-to-the-world div {
  max-width: 560px;
  margin: 10px;
  line-height: 146%;
}

.leave-russia-now-and-apply-your-skills-to-the-world iframe {
  max-width: 100%;
  max-height: 55.5555555556vmin;
  margin: 16px auto;
}

.leave-russia-now-and-apply-your-skills-to-the-world strong {
  border-bottom: 2px dashed #fff;
}

.leave-russia-now-and-apply-your-skills-to-the-world button {
  display: flex;
  position: fixed;
  z-index: 1940;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 10px;
  margin-bottom: -10px;
  border: none;
  background: 0 0;
  color: #aaa;
  font-size: 48px;
  font-weight: 700;
  cursor: pointer;
}

.leave-russia-now-and-apply-your-skills-to-the-world button:hover {
  color: #fff;
}

@-webkit-keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0);
  }
}
@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0);
  }
}
@-webkit-keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@-webkit-keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: rotateY(0);
  }
}
@-webkit-keyframes swal2-animate-i-mark {
  0% {
    transform: rotateZ(45deg);
    opacity: 0;
  }
  25% {
    transform: rotateZ(-25deg);
    opacity: 0.4;
  }
  50% {
    transform: rotateZ(15deg);
    opacity: 0.8;
  }
  75% {
    transform: rotateZ(-5deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
@keyframes swal2-animate-i-mark {
  0% {
    transform: rotateZ(45deg);
    opacity: 0;
  }
  25% {
    transform: rotateZ(-25deg);
    opacity: 0.4;
  }
  50% {
    transform: rotateZ(15deg);
    opacity: 0.8;
  }
  75% {
    transform: rotateZ(-5deg);
    opacity: 1;
  }
  100% {
    transform: rotateX(0);
    opacity: 1;
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}

body.swal2-height-auto {
  height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}

body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}

body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}
body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: transparent;
  pointer-events: none;
}

body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-left, body.swal2-toast-shown .swal2-container.swal2-top-start {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-left, body.swal2-toast-shown .swal2-container.swal2-center-start {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-left, body.swal2-toast-shown .swal2-container.swal2-bottom-start {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

::-moz-selection {
  background: #FFE57F;
  color: #000;
}

::selection {
  background: #FFE57F;
  color: #000;
}

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

body {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  color: #222222;
  text-decoration: none;
  transition: 0.3s;
}
a:hover, a:active, a:focus {
  color: #f9d444;
  text-decoration: underline;
}

blockquote {
  margin: 0;
  font-style: italic;
}

div blockquote:last-of-type {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}
p a {
  text-decoration: underline;
}

button {
  transition: 0.3s;
}
button:hover, button:active, button:focus {
  transition: 0.3s;
}

input,
textarea {
  border-radius: 0;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  box-shadow: inset 0 -1px 0 #ddd;
}

.dm-p-y {
  padding: 6rem 0 !important;
}
.dm-p-y.pt-0 {
  padding-top: 0 !important;
}
.dm-p-y.pb-0 {
  padding-bottom: 0 !important;
}

.dm-p-y-8 {
  padding: 4rem 0 !important;
}
.dm-p-y-8.pt-0 {
  padding-top: 0 !important;
}
.dm-p-y-8.pb-0 {
  padding-bottom: 0 !important;
}

.btn {
  text-decoration: none !important;
}

.pt-6 {
  padding-top: 2rem !important;
}

.pb-6 {
  padding-bottom: 2rem !important;
}

.mt-6 {
  margin-top: 2rem !important;
}

.mb-6 {
  margin-bottom: 2rem !important;
}

.mb-8 {
  margin-bottom: 3rem !important;
}

.mb-10 {
  margin-bottom: 4rem !important;
}

.my-6 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mx-6 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.px-6 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.py-6 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-10 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.dm-p-first {
  padding: 5rem 0rem 0rem 0rem;
}

.dm-hide-mobile {
  display: block !important;
}
@media (max-width: 768px) {
  .dm-hide-mobile {
    display: none !important;
  }
}

.dm-hide-mobile-flex {
  display: flex !important;
}
@media (max-width: 768px) {
  .dm-hide-mobile-flex {
    display: none !important;
  }
}

.dm-hide-desktop {
  display: none !important;
}
@media (max-width: 768px) {
  .dm-hide-desktop {
    display: block !important;
  }
}

.dm-brand-color {
  color: #f9d444;
}

.dm-brand-bold {
  color: #FFE57F;
  font-weight: 600;
  width: 100%;
  font-size: 1.2rem;
  margin-top: 30px;
  display: block;
  letter-spacing: 1px;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-brand-bold {
    font-size: 1rem;
  }
}
@media (max-width: 1440px) {
  .dm-brand-bold {
    font-size: 1rem;
  }
}

.dm-grey-background {
  background-color: rgba(195, 195, 195, 0.15);
}

.dm-brand-background {
  background-color: rgba(255, 229, 127, 0.35);
}

.dm-short-separator {
  width: 75px;
  height: 1px;
  display: block;
  background-color: #f9d444;
  margin: 1rem 0;
}

.dm-small-font {
  font-size: 0.9rem;
}
.dm-small-font a {
  text-decoration: underline;
}

.dm-login-container {
  padding: 6rem 0;
}

.dm-slug-input-field {
  display: none;
}

.dm-main-section {
  min-height: calc(100vh - 555px);
}

.dm-dark {
  color: #000 !important;
}
.dm-dark path {
  fill: #000 !important;
}
.dm-dark:hover, .dm-dark:active, .dm-dark:focus {
  color: #000 !important;
}
.dm-dark:hover path, .dm-dark:active path, .dm-dark:focus path {
  fill: #000 !important;
}

body {
  color: #222222;
  font: normal 1rem/1.6 "Nunito", sans-serif;
}

.dm-default-template h2 {
  font-size: 1.6rem;
  text-transform: none;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
  }
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.3rem;
  }
}

h4 {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
}

h5 {
  font-size: 1.3rem;
  font-weight: 400;
}

h6 {
  font-size: 1.2rem;
  font-weight: 600;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.container {
  max-width: 1180px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  padding-right: 20px;
  /* 3 */
  width: 100%;
  /* 1 */
}

.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

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

.dm-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 99;
  padding: 1rem 0;
  transition: 0.3s;
  border-bottom: 1px solid rgba(195, 195, 195, 0.3);
}
@media (max-width: 992px) {
  .dm-header {
    transition: 0s;
  }
}
@media (max-width: 768px) {
  .dm-header {
    padding: 0.8rem 0;
    flex-wrap: wrap;
  }
}
.dm-header > .container {
  align-items: center;
}
@media (max-width: 768px) {
  .dm-header > .container {
    flex-wrap: wrap;
  }
}
.dm-header.dm-header-sticky {
  background-color: #fff;
  transition: 0.3s;
  padding: 0.5rem 20px;
  box-shadow: -10px -5px 16px 0px #222222;
  position: fixed;
}
@media (max-width: 992px) {
  .dm-header.dm-header-sticky {
    transition: 0s;
  }
}
.dm-header.dm-header-sticky .dm-logo {
  max-width: 250px;
}
@media (max-width: 768px) {
  .dm-header.dm-header-sticky .dm-logo {
    max-width: 220px;
  }
}
.dm-header.dm-header-sticky .dm-search-form {
  display: none !important;
}
.dm-header.dm-header-sticky .dm-navigation {
  margin-top: 0;
}
.dm-header.dm-header-sticky > .container {
  max-width: 100%;
  padding: 0;
}
.dm-header.dm-header-sticky.dm-header-light {
  position: fixed;
}
.dm-header.dm-header-sticky.dm-header-light .dm-nav .dm-navigation-item a {
  color: #222222;
}
.dm-header.dm-header-sticky.dm-header-light .dm-logo-dark {
  display: block;
}
.dm-header.dm-header-sticky.dm-header-light .dm-logo-light {
  display: none;
}
.dm-header.dm-header-sticky.dm-header-light .dm-hamburger-line {
  background-color: #000;
}
.dm-header.dm-menu-opened {
  background-color: #fff;
  box-shadow: -10px -5px 16px 0px #222222;
}
.dm-header.dm-menu-opened.dm-header-light {
  background-color: #222222;
  box-shadow: none;
}
.dm-header.dm-menu-opened.dm-header-light .dm-collapse-menu a {
  color: #fff;
}
.dm-header.dm-menu-opened.dm-header-light.dm-header-sticky {
  background-color: #fff;
  box-shadow: -10px -5px 16px 0px #222222;
}
.dm-header.dm-menu-opened.dm-header-light.dm-header-sticky .dm-collapse-menu a {
  color: #222222;
}
.dm-header.dm-menu-opened .dm-collapse-menu a {
  color: #222222;
}
.dm-header .dm-logo {
  max-width: 300px;
  display: flex;
  align-items: center;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-header .dm-logo {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .dm-header .dm-logo {
    max-width: 220px;
  }
}
.dm-header .dm-logo img {
  max-width: 100%;
}
.dm-header.dm-header-light {
  position: absolute;
  border: none;
}
.dm-header.dm-header-light .dm-nav .dm-navigation-item a {
  color: #fff;
}
.dm-header.dm-header-light .dm-logo-dark {
  display: none;
}
.dm-header.dm-header-light .dm-hamburger-line {
  background-color: #fff;
}
.dm-header .dm-nav .dm-navigation-item {
  margin: 0 10px;
}
.dm-header .dm-nav .dm-navigation-item a {
  color: #222222;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0 0.5rem;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-header .dm-nav .dm-navigation-item a {
    font-size: 1rem;
  }
}
.dm-header .dm-nav .dm-navigation-item a:hover, .dm-header .dm-nav .dm-navigation-item a:focus, .dm-header .dm-nav .dm-navigation-item a:active {
  color: #f9d444;
}

.dm-navigation-item svg {
  width: 24px;
}

.dm-header-placeholder {
  display: none;
  height: 106px;
}
@media (max-width: 992px) {
  .dm-header-placeholder {
    height: 72px;
  }
}

.dm-desktop-menu .dm-navigation {
  margin-top: 15px;
}
.dm-desktop-menu .dm-navigation li:last-of-type {
  margin-right: 0;
}
.dm-desktop-menu .dm-navigation li:last-of-type a {
  padding-right: 0;
}

.dm-navbar-toggler {
  width: 24px;
  height: 16px;
  right: 0px;
  top: 0px;
  padding: 0;
  position: relative;
  display: none;
}
@media (max-width: 768px) {
  .dm-navbar-toggler {
    display: block;
  }
}
.dm-navbar-toggler .dm-hamburger-line {
  background-color: #000;
  width: 24px;
  margin-bottom: 0;
  height: 2px;
  display: block;
  position: absolute;
}
.dm-navbar-toggler .dm-hamburger-line:nth-child(1) {
  top: -1px;
}
.dm-navbar-toggler .dm-hamburger-line:nth-child(2) {
  top: 7px;
}
.dm-navbar-toggler .dm-hamburger-line:nth-child(3) {
  top: 15px;
}
.dm-navbar-toggler .dm-hamburger-line:nth-child(3), .dm-navbar-toggler .dm-hamburger-line:nth-child(1) {
  transition: top 0.2s 0.2s, transform 0.2s, background 0.2s 0.5s;
  transform-origin: cetner;
}
.dm-navbar-toggler.dm-menu-opened .dm-hamburger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
  transition: top 0.2s, transform 0.2s 0.2s;
}
.dm-navbar-toggler.dm-menu-opened .dm-hamburger-line:nth-child(2) {
  opacity: 0;
}
.dm-navbar-toggler.dm-menu-opened .dm-hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
  transition: top 0.2s, transform 0.2s 0.2s;
}

.dm-collapse-menu {
  padding: 1.5rem 0 1.5rem 0;
}
.dm-collapse-menu .dm-navigation li {
  width: 100%;
}
.dm-collapse-menu .dm-navigation li a {
  padding-left: 0;
  color: #fff;
}

@media (max-width: 768px) {
  .dm-desktop-menu {
    display: none;
  }
}

.dm-search-login-wrap {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.dm-search-login-wrap .dm-search-form .btn svg {
  margin: 0;
}
.dm-search-login-wrap .btn svg {
  margin-right: 0.5rem;
  width: 20px;
  height: 20px;
}

.dm-footer {
  background-color: #222222;
  color: #fff;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .dm-footer {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .dm-footer > .container > div {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .dm-footer > .container > div:first-of-type {
    order: 4;
  }
}
.dm-footer a {
  color: #fff;
  margin: 0 5px;
}
.dm-footer a:hover, .dm-footer a:active, .dm-footer a:focus {
  text-decoration: none;
  color: #f9d444;
}
.dm-footer a:hover svg path, .dm-footer a:active svg path, .dm-footer a:focus svg path {
  fill: #f9d444;
}
.dm-footer a svg {
  width: 30px;
  height: 22px;
}
.dm-footer a svg path {
  fill: #fff;
}
.dm-footer h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.dm-footer ul {
  list-style: none;
  padding-left: 0;
}
.dm-footer ul li {
  list-style: none;
  margin-bottom: 0rem;
}
.dm-footer ul li a {
  margin-left: 0;
  font-weight: 300;
  font-size: 1rem;
}
.dm-footer .dm-footer-logo {
  display: block;
}
.dm-footer .dm-footer-logo img {
  max-width: 250px;
}
@media (max-width: 768px) {
  .dm-footer .dm-footer-logo img {
    max-width: 100%;
  }
}
.dm-footer .dm-footer-contact {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin-top: 2rem;
  font-weight: 300;
}
.dm-footer .dm-footer-contact span {
  width: 100%;
  display: block;
}
.dm-footer .dm-copyrights {
  font-size: 0.9rem;
  margin: 1.5rem 0 0.5rem 0;
  text-align: center;
}
.dm-footer .dm-copyrights span {
  margin: 0 5px;
}
.dm-footer .dm-footer-social {
  margin-top: 2rem;
}
.dm-footer .dm-back-to-top {
  padding-top: 1.5rem;
  text-align: center;
}
.dm-footer .dm-back-to-top svg {
  height: 30px;
}

.dm-add-to-favourites {
  background-color: #ededed !important;
  border-color: #ededed !important;
}
.dm-add-to-favourites:hover, .dm-add-to-favourites:active, .dm-add-to-favourites:focus {
  background-color: #FFE57F !important;
  border-color: #FFE57F !important;
}
.dm-add-to-favourites:hover svg path, .dm-add-to-favourites:active svg path, .dm-add-to-favourites:focus svg path {
  fill: #6cb2eb;
}
.dm-add-to-favourites svg {
  width: 26px;
}
.dm-add-to-favourites svg path {
  fill: #999999;
}
.dm-add-to-favourites.is-favourite {
  background-color: #FFE57F !important;
  border-color: #FFE57F !important;
}
.dm-add-to-favourites.is-favourite svg path {
  fill: #6cb2eb;
}

.dm-decline-book {
  background-color: #ededed !important;
  border-color: #ededed !important;
}
.dm-decline-book:hover, .dm-decline-book:active, .dm-decline-book:focus {
  background-color: #ef8683 !important;
  border-color: #ef8683 !important;
}
.dm-decline-book:hover svg path, .dm-decline-book:active svg path, .dm-decline-book:focus svg path {
  fill: #fff;
}
.dm-decline-book svg {
  width: 26px;
}
.dm-decline-book svg path {
  fill: #999999;
}
.dm-decline-book.is-declined {
  background-color: #ef8683 !important;
  border-color: #ef8683 !important;
}
.dm-decline-book.is-declined svg path {
  fill: #fff;
}

.dm-btn-outline, .dm-submit, .dm-btn-normal, .dm-btn-padding, .dm-btn {
  color: #000;
  background-color: #FFE57F;
  border-color: #FFE57F;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  border-radius: 0;
}
.dm-btn-outline:hover, .dm-submit:hover, .dm-btn-normal:hover, .dm-btn-padding:hover, .dm-btn:hover, .dm-btn-outline:active, .dm-submit:active, .dm-btn-normal:active, .dm-btn-padding:active, .dm-btn:active, .dm-btn-outline:focus, .dm-submit:focus, .dm-btn-normal:focus, .dm-btn-padding:focus, .dm-btn:focus {
  background-color: #f9d444;
  border-color: #f9d444;
  color: #000;
}

.btn {
  border-radius: 0;
}

.dm-btn-brand {
  background-color: #FFE57F;
  border-color: #FFE57F;
  color: #000;
}
.dm-btn-brand:hover, .dm-btn-brand:active, .dm-btn-brand:focus {
  background-color: #f9d444;
  border-color: #f9d444;
  color: #000;
}

.btn-grey {
  background-color: #ededed;
  border-color: #ededed;
  color: #000;
}
.btn-grey:hover, .btn-grey:active, .btn-grey:focus {
  background-color: #f9d444;
  border-color: #f9d444;
  color: #000;
}
.btn-grey.active {
  background-color: #FFE57F;
  border-color: #FFE57F;
  color: #000;
}

.dm-btn-brand-darker {
  background-color: #f9d444;
  border-color: #f9d444;
  color: #000;
}
.dm-btn-brand-darker:hover, .dm-btn-brand-darker:active, .dm-btn-brand-darker:focus {
  background-color: #FFE57F;
  border-color: #FFE57F;
  color: #000;
}

.dm-btn-dashboard {
  padding-bottom: 0;
  padding-top: 0;
  line-height: 28px;
  height: 30px;
  font-size: 0.9rem;
}

.dm-btn {
  text-transform: uppercase;
}

.dm-btn-padding {
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
}
.dm-btn-padding.dm-downloaded-materials-button svg {
  width: 20px;
}

.dm-btn-normal {
  letter-spacing: 0;
}

.dm-submit {
  display: block;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
}

.dm-transparent {
  opacity: 0.5;
  transition: 0.2s;
}
.dm-transparent:hover, .dm-transparent:active, .dm-transparent:focus {
  opacity: 1;
}

.dm-svg-button {
  border: none;
  padding: 0;
  background-color: transparent;
}
.dm-svg-button:hover svg path, .dm-svg-button:active svg path, .dm-svg-button:focus svg path {
  fill: #FFE57F;
}
.dm-svg-button.disabled {
  cursor: not-allowed;
}
.dm-svg-button.disabled:hover svg path, .dm-svg-button.disabled:active svg path, .dm-svg-button.disabled:focus svg path {
  fill: #e3342f;
}
.dm-svg-button.edited svg path {
  fill: #f6993f;
}
.dm-svg-button svg {
  width: 20px;
  height: 20px;
}

.dm-btn-outline {
  background-color: transparent;
  border-color: #FFE57F;
}
.dm-btn-outline:hover, .dm-btn-outline:active, .dm-btn-outline:focus {
  background-color: #f9d444;
  border-color: #f9d444;
}

.dm-delete-button:hover, .dm-delete-button:active, .dm-delete-button:focus {
  color: #e3342f;
}
.dm-delete-button:hover path, .dm-delete-button:active path, .dm-delete-button:focus path {
  fill: #e3342f !important;
}

.alert-brand {
  background-color: rgba(255, 229, 127, 0.35);
  border-color: #FFE57F;
}
.alert-brand a {
  font-weight: 700;
  text-decoration: underline;
}

.dm-home-container .dm-card {
  padding-right: 0;
  padding-left: 0;
}

.dm-card {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.dm-card a {
  color: #222222;
  display: block;
}
.dm-card a:hover, .dm-card a:active, .dm-card a:focus {
  color: #f9d444;
}
.dm-card .dm-wrap-card-image {
  transition: transform 0.3s ease;
}
.dm-card .dm-wrap-card-image:hover, .dm-card .dm-wrap-card-image:active, .dm-card .dm-wrap-card-image:focus {
  transform: scale(1.1) rotate(0.01deg);
}

.card-header {
  font-weight: 600;
}

.dm-book-group .dm-category-section-books .dm-card-image:hover, .dm-book-group .dm-category-section-books .dm-card-image:active, .dm-book-group .dm-category-section-books .dm-card-image:focus {
  color: #222222;
}
.dm-book-group .dm-category-section-books .dm-card-image img {
  margin-bottom: 0;
}
.dm-book-group .dm-category-section-books h3 {
  margin-bottom: 0.5rem;
}
.dm-book-group h4 {
  margin-bottom: 1rem;
  letter-spacing: 0;
  font-size: 1.3rem;
  font-weight: 500;
}

.swal2-title {
  font-size: 1.2rem;
}

.tooltip-target {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 0;
  outline: none;
  cursor: pointer;
  margin-right: 8px;
}

.tooltip {
  opacity: 1 !important;
}
.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}
.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}

.popover {
  max-width: inherit;
}

.tooltip-arrow {
  z-index: 999;
}

.dm-cropper-preview img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.dm-spinner svg {
  width: 20px;
}

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

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

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.dm-modal {
  z-index: 999999;
}
.dm-modal .modal-header {
  padding: 1.5rem;
}
.dm-modal .modal-body {
  padding: 2rem;
}
.dm-modal .modal-title {
  font-size: 1.3rem;
  font-weight: 600;
}
.dm-modal .dm-close-modal svg {
  width: 14px;
  height: 14px;
}

.modal-lg, .modal-xl {
  max-width: 700px;
}

.ghost {
  background-color: #f9f9f9 !important;
}

.lg-outer .lg-image {
  max-height: 80% !important;
}

.lg-backdrop {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.lg-actions .lg-next {
  background-color: rgba(0, 0, 0, 0.45);
}
.lg-actions .lg-next::before {
  color: #fff !important;
}
.lg-actions .lg-next:hover::before, .lg-actions .lg-next:active::before, .lg-actions .lg-next:focus::before {
  color: #f9d444 !important;
}
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
}
.lg-actions .lg-prev::after {
  color: #fff !important;
}
.lg-actions .lg-prev:hover::after, .lg-actions .lg-prev:active::after, .lg-actions .lg-prev:focus::after {
  color: #f9d444 !important;
}

.lg-toolbar .lg-close::after {
  color: #fff !important;
}
.lg-toolbar .lg-close:hover::after, .lg-toolbar .lg-close:active::after, .lg-toolbar .lg-close:focus::after {
  color: #f9d444 !important;
}

#lg-counter {
  color: #fff !important;
}

.dm-logo-element {
  display: flex;
}
.dm-logo-element > div {
  margin-right: 15px;
}
.dm-logo-element .dm-logo-element-line {
  height: 14px;
  width: 101px;
  background-color: #d6d6d6;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-logo-element .dm-logo-element-line {
    height: 10px;
  }
}
.dm-logo-element .dm-logo-element-dot1,
.dm-logo-element .dm-logo-element-dot2,
.dm-logo-element .dm-logo-element-dot3 {
  width: 15px;
  height: 15px;
  border-radius: 100%;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-logo-element .dm-logo-element-dot1,
.dm-logo-element .dm-logo-element-dot2,
.dm-logo-element .dm-logo-element-dot3 {
    height: 10px;
    width: 10px;
  }
}
.dm-logo-element .dm-logo-element-dot1 {
  background-color: #aaa8a8;
}
.dm-logo-element .dm-logo-element-dot2 {
  background-color: #717070;
}
.dm-logo-element .dm-logo-element-dot3 {
  background-color: #4a4a4a;
  margin: 0;
}

.owl-theme .owl-stage-outer {
  height: 100%;
}
.owl-theme .owl-stage-outer .owl-stage {
  height: 100%;
}
.owl-theme .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.owl-theme .owl-dots {
  position: absolute;
  bottom: 20px;
  transform: translate(-50%, 0);
  left: 50%;
}
@media (max-width: 992px) {
  .owl-theme .owl-dots {
    bottom: 10px;
    width: 100%;
  }
}
.owl-theme .owl-dots .owl-dot {
  margin: 0 7px;
}
@media (max-width: 768px) {
  .owl-theme .owl-dots .owl-dot {
    margin: 0;
  }
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #FFE57F;
}
.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 1px solid #FFE57F;
}
@media (max-width: 992px) {
  .owl-theme .owl-dots .owl-dot span {
    border-radius: 0px;
  }
}
@media (max-width: 768px) {
  .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
  }
}

.dm-category-section-books.owl-carousel .owl-stage-outer {
  padding: 15px;
  margin: 0 -15px;
}
.dm-category-section-books.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  margin: 0;
  bottom: 0rem;
}
@media (max-width: 992px) {
  .dm-category-section-books.owl-carousel .owl-nav {
    bottom: -2rem;
  }
}
@media (max-width: 420px) {
  .dm-category-section-books.owl-carousel .owl-nav {
    bottom: -2.5rem;
  }
}
.dm-category-section-books.owl-carousel .owl-nav .owl-prev,
.dm-category-section-books.owl-carousel .owl-nav .owl-next {
  width: 25px;
  height: 27px;
  transition: 0.3s;
  background-color: #000;
  opacity: 0.3;
  margin: 0 15px;
}
.dm-category-section-books.owl-carousel .owl-nav .owl-prev:hover, .dm-category-section-books.owl-carousel .owl-nav .owl-prev:active, .dm-category-section-books.owl-carousel .owl-nav .owl-prev:focus,
.dm-category-section-books.owl-carousel .owl-nav .owl-next:hover,
.dm-category-section-books.owl-carousel .owl-nav .owl-next:active,
.dm-category-section-books.owl-carousel .owl-nav .owl-next:focus {
  background-color: #f9d444;
  opacity: 1;
}
.dm-category-section-books.owl-carousel .owl-nav .owl-prev:hover svg path, .dm-category-section-books.owl-carousel .owl-nav .owl-prev:active svg path, .dm-category-section-books.owl-carousel .owl-nav .owl-prev:focus svg path,
.dm-category-section-books.owl-carousel .owl-nav .owl-next:hover svg path,
.dm-category-section-books.owl-carousel .owl-nav .owl-next:active svg path,
.dm-category-section-books.owl-carousel .owl-nav .owl-next:focus svg path {
  fill: #000;
}
.dm-category-section-books.owl-carousel .owl-nav svg {
  width: 20px;
  height: 18px;
}
.dm-category-section-books.owl-carousel .owl-nav svg path {
  fill: #fff;
}
.dm-category-section-books.owl-carousel .owl-dots {
  position: absolute;
  bottom: -3rem;
  transform: translate(-50%, 0);
  left: 50%;
  width: 100%;
}
@media (max-width: 992px) {
  .dm-category-section-books.owl-carousel .owl-dots {
    bottom: -2rem;
  }
}
.dm-category-section-books.owl-carousel .owl-dots .owl-dot {
  margin: 0 3px;
}
@media (max-width: 768px) {
  .dm-category-section-books.owl-carousel .owl-dots .owl-dot {
    margin: 0;
  }
}
.dm-category-section-books.owl-carousel .owl-dots .owl-dot.active span {
  background-color: #222222;
}
.dm-category-section-books.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background-color: transparent;
  border: 1px solid #222222;
}
@media (max-width: 992px) {
  .dm-category-section-books.owl-carousel .owl-dots .owl-dot span {
    border-radius: 0px;
  }
}
@media (max-width: 768px) {
  .dm-category-section-books.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
  }
}

.form-control {
  border-radius: 0;
}
.form-control:hover, .form-control:active, .form-control:focus {
  border-color: #f9d444;
}

.form-group {
  margin-bottom: 2rem;
}
@media (max-width: 1440px) {
  .form-group {
    margin-bottom: 1rem;
  }
}
.form-group label {
  margin-bottom: 0;
}

.dm-checkbox-email-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 0.5rem;
}

.dm-card-translations-badge {
  position: absolute;
  z-index: 99999;
  background-color: #FFE57F;
  padding: 1px 8px;
  font-weight: bold;
  bottom: 10px;
  right: 0;
}
.dm-card-translations-badge svg {
  width: 20px;
  height: 20px;
}

.dm-card-declined-badge {
  position: absolute;
  z-index: 99999;
  background-color: #FFE57F;
  padding: 1px 8px;
  font-weight: bold;
  top: 10px;
  right: 0;
}
.dm-card-declined-badge svg {
  width: 20px;
  height: 20px;
}

.dm-card-favourited-badge {
  position: absolute;
  z-index: 99999;
  background-color: #FFE57F;
  padding: 1px 8px;
  font-weight: bold;
  top: 10px;
  left: 0;
}
.dm-card-favourited-badge svg {
  width: 20px;
  height: 20px;
}

.dm-wrap-card-image {
  position: relative;
}

.dm-page-navigation {
  text-align: center;
  padding: 3rem 0;
}
.dm-page-navigation span {
  padding: 5px 10px;
  background-color: #f9d444;
  color: #222222;
  margin: 0 5px;
}
.dm-page-navigation a {
  display: inline-block;
  margin-bottom: 15px;
}
.dm-page-navigation a span {
  background-color: #222222;
  color: #fff;
}
.dm-page-navigation a:hover span, .dm-page-navigation a:active span, .dm-page-navigation a:focus span {
  background-color: #f9d444;
  color: #222222;
}

.dm-pagination .page-item {
  padding: 0 !important;
  border: none !important;
}
.dm-pagination .page-item.active .page-link {
  z-index: 3;
  color: #222222;
  background-color: #FFE57F;
  border-color: #FFE57F;
}
.dm-pagination .page-item .page-link {
  color: #222222;
}
.dm-pagination .page-item .page-link:hover, .dm-pagination .page-item .page-link:active, .dm-pagination .page-item .page-link:focus {
  background-color: #f9d444;
  color: #222222;
}

.dm-platform-rating.dm-new-rating .dm-star {
  cursor: pointer;
}
.dm-platform-rating.dm-new-rating .dm-star svg {
  width: 30px;
  height: 30px;
}

.dm-star {
  width: 30px;
  height: 30px;
}
.dm-star svg {
  width: 30px;
  color: #ededed;
  fill: #ededed;
}
.dm-book-item .dm-star {
  width: 20px;
  height: 20px;
}
.dm-book-item .dm-star svg {
  width: 20px;
}
.dm-star.dm-gold-star svg {
  fill: #FFE57F;
}

.dm-rate-friendliness-button {
  position: fixed;
  top: 350px;
  left: 0px;
  width: 80px;
  z-index: 999999;
}
@media (max-width: 768px) {
  .dm-rate-friendliness-button {
    display: none;
  }
}
.dm-rate-friendliness-button .dm-btn-padding {
  padding: 7px 15px;
}
.dm-rate-friendliness-button svg {
  width: 20px;
}

.dm-title-favorite-wrap {
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.dm-platform-rating-wrap {
  display: flex;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.dm-platform-rating-wrap svg {
  width: 30px;
  height: 30px;
}

.dm-platform-rating-feedback {
  margin: 25px 0 15px 0;
}
.dm-platform-rating-feedback textarea {
  margin: 10px 0 15px 0;
}

.dm-share-options {
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
}
.dm-share-options span {
  margin-right: 1rem;
  font-weight: 600;
}
.dm-share-options svg {
  width: 26px;
}
.dm-share-options a {
  color: #222222;
  margin: 0 5px;
  display: inline-block;
}
.dm-share-options a:hover, .dm-share-options a:active, .dm-share-options a:focus {
  color: #f9d444;
}

.dm-call-action-section {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
.dm-call-action-section p {
  margin-bottom: 1rem;
}

:root {
  --plyr-color-main: #f9d444!important;
}

.plyr__control--overlaid {
  --plyr-color-main: #f9d444;
}

.plyr--full-ui input[type=range] {
  color: #f9d444 !important;
}

.plyr__control--overlaid {
  background: rgba(249, 212, 68, 0.8) !important;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: #f9d444 !important;
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(249, 212, 68, 0.5) !important;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #f9d444 !important;
}

.dm-search-form {
  justify-content: flex-end;
}
.dm-search-form .disabled {
  pointer-events: none;
  color: #bfcbd9;
  cursor: not-allowed;
  background-image: none;
  background-color: #eef1f6;
  border-color: #d1dbe5;
}
.dm-search-form input {
  max-width: 250px;
  border-radius: 0;
  background-color: transparent;
  transition: 0.3s;
  color: #fff;
}
.dm-search-form input:hover, .dm-search-form input:active, .dm-search-form input:focus {
  background-color: #fff;
  color: #222222;
}
.dm-search-form .dm-btn {
  letter-spacing: 0;
  text-transform: none;
  padding: 0px 7px;
}
.dm-search-form svg {
  width: 20px;
  height: 20px;
}

.dm-advanced-search-row {
  margin-top: 1rem;
}
.dm-advanced-search-row .dm-advanced-search-select {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .dm-advanced-search-row .dm-advanced-search-select {
    display: none;
  }
}
@media (max-width: 420px) {
  .dm-advanced-search-row .dm-advanced-search-select {
    display: none;
  }
}
.dm-advanced-search-row .dm-advanced-search-select > .form-group {
  width: 19%;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .dm-advanced-search-row .dm-advanced-search-select > .form-group {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .dm-advanced-search-row .dm-advanced-search-select > .form-group {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.dm-advanced-search-row .dm-advanced-search-select label {
  font-weight: 600;
}
.dm-advanced-search-row .dm-advanced-search-submit {
  display: flex;
  justify-content: space-between;
}
.dm-advanced-search-row .dm-advanced-search-submit button {
  margin-left: 1rem;
}

.dm-footer-newsletter-signup h3 {
  color: #ffc107;
  text-transform: uppercase;
}

#mc_embed_signup {
  background: transparent;
  clear: left;
  font: 14px Helvetica, Arial, sans-serif;
}

.dm-newsletter-signup-form .form-group label {
  margin-bottom: 0.5rem;
}
.dm-newsletter-signup-form .form-group .form-check .form-check-input {
  margin-top: 0;
}
.dm-newsletter-signup-form .form-group .form-check label {
  margin-bottom: 0;
}

.dm-fixed-newsletter-button {
  position: fixed;
  top: 300px;
  left: 0px;
  width: 80px;
  z-index: 999999;
}
@media (max-width: 768px) {
  .dm-fixed-newsletter-button {
    display: none;
  }
}
.dm-fixed-newsletter-button .dm-btn-padding {
  padding: 7px 15px;
}
.dm-fixed-newsletter-button svg {
  width: 20px;
}

.dm-download-material-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-weight: 600;
  flex-grow: 1;
  justify-content: flex-end;
}
.dm-download-material-link svg {
  width: 20px;
  height: 20px;
}

.dm-hero-slider-container {
  position: relative !important;
  max-height: 650px;
  overflow: hidden;
}
.dm-motto {
  z-index: 9;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 2rem;
}
@media (max-width: 1440px) {
  .dm-motto {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  .dm-motto {
    font-size: 1.5rem;
  }
}
@media (max-width: 420px) {
  .dm-motto {
    font-size: 1.3rem;
  }
}

.dm-home-slider {
  height: 100%;
  display: block !important;
}
.dm-home-slider .dm-home-slide {
  background-size: cover;
  background-repeat: no-repeat;
}
.dm-home-slider .dm-home-slide .dm-home-slide-content {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 9;
  position: relative;
  color: #fff;
}
.dm-home-slider .dm-home-slide .dm-home-slide-content > div {
  padding-left: 5%;
  max-width: 1000px;
  padding-right: 5%;
}
@media (max-width: 1440px) {
  .dm-home-slider .dm-home-slide .dm-home-slide-content > div {
    max-width: 850px;
  }
}
@media (max-width: 992px) {
  .dm-home-slider .dm-home-slide .dm-home-slide-content > div {
    max-width: 700px;
  }
}
.dm-home-slider .dm-home-slide .dm-home-slide-content .dm-slide-text {
  font-size: 2.4rem;
}
@media (max-width: 1440px) {
  .dm-home-slider .dm-home-slide .dm-home-slide-content .dm-slide-text {
    font-size: 2.2rem;
  }
}
@media (max-width: 992px) {
  .dm-home-slider .dm-home-slide .dm-home-slide-content .dm-slide-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .dm-home-slider .dm-home-slide .dm-home-slide-content .dm-slide-text {
    font-size: 1.4rem;
  }
}

.dm-overlay {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.4;
}

.dm-hero {
  height: 650px;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-hero {
    height: calc(100vh - 180px);
  }
}
@media (max-width: 768px) {
  .dm-hero {
    height: 100%;
  }
}
.dm-hero .dm-hero-container {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  max-height: 100% !important;
}
@media (max-width: 992px) {
  .dm-hero .dm-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }
}
.dm-hero .dm-hero-container .dm-hero-content {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 9;
  position: relative;
  color: #fff;
}
@media (max-width: 768px) {
  .dm-hero .dm-hero-container .dm-hero-content {
    height: 400px;
    padding: 0;
  }
}
.dm-hero .dm-hero-container .dm-hero-content .dm-brand-bold {
  margin-top: 0;
}
.dm-hero .dm-hero-container .dm-hero-content .dm-hero-content-wrap {
  font-size: 1.4rem;
  line-height: 1.4;
  padding-left: 0%;
  max-width: 700px;
  padding-right: 5%;
  padding-top: 6%;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-hero .dm-hero-container .dm-hero-content .dm-hero-content-wrap {
    max-width: 600px;
    font-size: 1rem;
  }
}
@media (max-width: 1440px) {
  .dm-hero .dm-hero-container .dm-hero-content .dm-hero-content-wrap {
    max-width: 700px;
    font-size: 1.2rem;
  }
}
@media (max-width: 992px) {
  .dm-hero .dm-hero-container .dm-hero-content .dm-hero-content-wrap {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .dm-hero .dm-hero-container .dm-hero-content .dm-hero-content-wrap {
    padding-top: 10%;
    max-width: 100%;
    font-size: 1rem;
  }
}
.dm-hero .dm-hero-container .dm-hero-content .dm-hero-content-wrap p {
  font-weight: normal;
}

.dm-hero-link-wrap {
  display: block;
  height: 100%;
}
.dm-hero-link-wrap:hover, .dm-hero-link-wrap:active, .dm-hero-link-wrap:focus {
  text-decoration: none;
}

.dm-overlay {
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .dm-news-content {
    padding: 0;
  }
}

.dm-news {
  position: absolute;
  bottom: 7rem;
  right: 5rem;
  z-index: 9;
  max-width: 330px;
}
@media (max-width: 768px) {
  .dm-news {
    background-color: #222222;
    position: relative;
    max-width: 100%;
    bottom: 0;
    right: 0;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: left !important;
  }
}
.dm-news .dm-news-logo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.dm-news .dm-news-logo-title h2 {
  margin-bottom: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-news .dm-news-logo-title h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 1440px) {
  .dm-news .dm-news-logo-title h2 {
    font-size: 1.5rem;
  }
}
.dm-news h2 {
  color: #fff;
}
@media (max-width: 768px) {
  .dm-news h2 {
    text-align: left !important;
  }
}
.dm-news .dm-single-news {
  background-color: transparent;
  border-bottom: 1px solid #fff;
  transition: 0.3s;
  display: block;
}
.dm-news .dm-single-news:hover, .dm-news .dm-single-news:focus, .dm-news .dm-single-news:active {
  cursor: pointer;
  background-color: rgba(255, 229, 127, 0.7);
  transition: 0.3s;
  border-bottom: 1px solid #222222;
}
.dm-news .dm-single-news:hover h4, .dm-news .dm-single-news:focus h4, .dm-news .dm-single-news:active h4 {
  color: #000;
}
.dm-news .dm-single-news:hover .dm-brand-color, .dm-news .dm-single-news:focus .dm-brand-color, .dm-news .dm-single-news:active .dm-brand-color {
  color: #222222;
  text-decoration: underline;
}
.dm-news .dm-single-news:last-of-type {
  border: none;
}
@media (max-width: 1440px) {
  .dm-news .dm-single-news > div {
    display: flex;
  }
}
@media (max-width: 1440px) {
  .dm-news .dm-single-news > div h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.dm-news .dm-single-news h4 {
  font-family: "Nunito", sans-serif;
  letter-spacing: 0px;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4rem;
  margin-bottom: 0;
}
@media (-webkit-min-device-pixel-ratio: 1.25) and (max-height: 800px) {
  .dm-news .dm-single-news h4 {
    font-size: 0.9rem;
  }
}
@media (max-width: 992px) {
  .dm-news .dm-single-news h4 {
    font-size: 1rem;
  }
}

.dm-category-section-title {
  display: flex;
  margin-bottom: 2rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .dm-category-section-title {
    flex-wrap: wrap;
  }
}
.dm-category-section-title .dm-btn {
  padding-left: 25px;
  padding-right: 25px;
}
.dm-category-section-title h2 {
  margin-bottom: 0;
  margin-right: 2rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .dm-category-section-title h2 {
    margin-bottom: 1rem;
    width: 100%;
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .dm-home-container .dm-category-section-books .dm-category-section-book:nth-child(2n+1) {
    padding-right: 0rem;
  }
}
@media (max-width: 768px) {
  .dm-home-container .dm-category-section-books .dm-category-section-book:nth-child(2n) {
    padding-left: 0rem;
  }
}

.dm-category-section-books {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.dm-category-section-books.owl-loaded {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0rem;
  margin-right: 0rem;
}
@media (max-width: 768px) {
  .dm-category-section-books .dm-category-section-book {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .dm-category-section-books .dm-category-section-book:nth-child(2n+1) {
    padding-right: 0.75rem;
  }
}
@media (max-width: 768px) {
  .dm-category-section-books .dm-category-section-book:nth-child(2n) {
    padding-left: 0.75rem;
  }
}
.dm-category-section-books .dm-category-section-book a {
  color: #222222;
  display: block;
  transition: 0.3s;
}
.dm-category-section-books .dm-category-section-book a:hover, .dm-category-section-books .dm-category-section-book a:active, .dm-category-section-books .dm-category-section-book a:focus {
  color: #f9d444;
}
.dm-category-section-books .dm-category-section-book .dm-card-image {
  margin-bottom: 1rem;
}
.dm-category-section-books .dm-category-section-book .dm-card-image:hover, .dm-category-section-books .dm-category-section-book .dm-card-image:active, .dm-category-section-books .dm-category-section-book .dm-card-image:focus {
  color: #222222;
}
.dm-category-section-books .dm-category-section-book img {
  margin-bottom: 0rem;
}
.dm-category-section-books .dm-category-section-book .dm-wrap-card-image {
  margin-bottom: 1rem;
}
.dm-category-section-books .dm-category-section-book h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
  font-weight: 500;
}
.dm-category-section-books .dm-category-section-book h4 {
  letter-spacing: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .dm-category-section {
    padding-bottom: 4rem !important;
  }
}

.animate__animated.animate__delay-025s {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

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

.animate__animated.animate__delay-075s {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.animate__animated.animate__delay-125s {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.dm-about-section h2 {
  font-weight: 600;
  width: 100%;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.dm-about-section .dm-short-separator {
  margin: 2rem 0;
}
.dm-about-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8rem;
}
.dm-about-section .row > div {
  margin-bottom: 0.5rem;
}

.dm-about-description .dm-about-description-content .dm-logo-element {
  position: absolute;
  bottom: 5%;
}
@media (max-width: 768px) {
  .dm-about-description .dm-about-description-content .dm-logo-element {
    position: relative;
    margin-bottom: 1rem;
    bottom: 0;
  }
}

.dm-drag-column svg {
  width: 16px;
  height: 16px;
}

.dm-select-item:hover, .dm-select-item:active, .dm-select-item:focus {
  cursor: pointer;
}

.dm-editor-application-actions {
  width: 150px;
}

.dm-subagent-application-actions {
  width: 150px;
}

.dm-followup-actions {
  width: 220px;
}

.required {
  color: #e3342f;
}

.dm-has-description {
  color: #38c172;
}

.dm-review-form .ql-editor {
  min-height: auto;
}

.dm-dashboard {
  display: flex;
}
@media (max-width: 768px) {
  .dm-dashboard {
    flex-wrap: wrap;
  }
}
.dm-dashboard .dm-dashboard-sidebar {
  width: 225px;
  min-height: 100vh;
  z-index: 1038;
  background-color: #212529;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: fixed;
  transition: 0.3s;
  height: 100%;
}
@media (max-width: 768px) {
  .dm-dashboard .dm-dashboard-sidebar {
    left: -225px;
  }
}
.dm-dashboard .dm-dashboard-sidebar.dm-menu-opened {
  left: 0px;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation {
  overflow-y: auto;
  height: calc(100% - 120px);
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-thumb {
  background: #999999;
  border: 0px none #212529;
  border-radius: 50px;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-thumb:hover {
  background: #ededed;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-thumb:active {
  background: #ededed;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-track {
  background: #212529;
  border: 0px none #212529;
  border-radius: 50px;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-track:hover {
  background: #212529;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-track:active {
  background: #212529;
}
.dm-dashboard .dm-dashboard-sidebar .dm-wrap-navigation::-webkit-scrollbar-corner {
  background: transparent;
}
.dm-dashboard .dm-dashboard-sidebar .nav-item {
  padding: 0;
}
.dm-dashboard .dm-dashboard-sidebar a:not(.dm-applications-count-pill) {
  width: 100%;
  padding: 0.25rem 1rem;
  color: rgba(255, 255, 255, 0.5);
}
.dm-dashboard .dm-dashboard-sidebar a:not(.dm-applications-count-pill):hover, .dm-dashboard .dm-dashboard-sidebar a:not(.dm-applications-count-pill):active, .dm-dashboard .dm-dashboard-sidebar a:not(.dm-applications-count-pill):focus {
  color: white;
}
.dm-dashboard .dm-dashboard-sidebar .nav-link.router-link-exact-active {
  color: white;
}
.dm-dashboard .dm-dashboard-sidebar .nav-link.active {
  color: white;
}
.dm-dashboard .dm-dashboard-sidebar .dm-sidebar-logo {
  display: block;
  margin-top: 1rem;
}
.dm-dashboard .container-fluid {
  padding: 0 2rem;
  position: relative;
}
.dm-dashboard .container-fluid .dm-loading {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(68, 68, 68, 0.5);
  text-align: center;
  padding-top: 49vh;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.dm-dashboard .dm-dashboard-sidebar-section {
  padding: 1.75rem 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.8rem;
}
.dm-dashboard .dm-main-section {
  width: 100%;
  padding-left: 225px;
}
@media (max-width: 768px) {
  .dm-dashboard .dm-main-section {
    padding-left: 0;
  }
}
.dm-dashboard .dm-main-section h1 {
  margin-top: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
}
.dm-dashboard .dm-main-section h2 {
  font-size: 1.2rem;
  text-transform: none;
  margin-bottom: 1.5rem;
}
.dm-dashboard .dm-main-section h4 {
  letter-spacing: 0;
  font-weight: 600;
  font-size: 1.2rem;
}
.dm-dashboard .dm-main-section select.form-control[multiple] {
  height: 200px;
}
.dm-dashboard .dm-dashboard-item-title {
  font-weight: 600;
  font-size: 1.1rem;
}
.dm-dashboard .dm-dashboard-item-title .dm-star {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.dm-dashboard .dm-dashboard-item-title .dm-star svg {
  width: 20px;
}
.dm-dashboard .dm-dashboard-content ul {
  list-style: none;
  padding: 0;
}
.dm-dashboard .dm-dashboard-content ul.dm-taxonomies-tabs li {
  padding: 0;
}
.dm-dashboard .dm-dashboard-content ul.dm-taxonomies-tabs li:hover a, .dm-dashboard .dm-dashboard-content ul.dm-taxonomies-tabs li:active a, .dm-dashboard .dm-dashboard-content ul.dm-taxonomies-tabs li:focus a {
  background-color: #FFE57F;
  color: #222222;
}
.dm-dashboard .dm-dashboard-content ul li {
  border-bottom: 1px solid #ced4da;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.dm-dashboard .dm-dashboard-content ul li:hover, .dm-dashboard .dm-dashboard-content ul li:active, .dm-dashboard .dm-dashboard-content ul li:focus {
  background-color: #ededed;
}
@media (max-width: 992px) {
  .dm-dashboard .dm-dashboard-content ul li {
    flex-wrap: wrap;
  }
}
.dm-dashboard .dm-dashboard-content ul li img {
  margin-right: 1rem;
  max-width: 90px;
}
.dm-dashboard .dm-dashboard-content ul li a:hover, .dm-dashboard .dm-dashboard-content ul li a:active, .dm-dashboard .dm-dashboard-content ul li a:focus {
  color: #000;
}
.dm-dashboard .dm-dashboard-content ul li .dm-btn-dashboard:hover, .dm-dashboard .dm-dashboard-content ul li .dm-btn-dashboard:active, .dm-dashboard .dm-dashboard-content ul li .dm-btn-dashboard:focus {
  color: #fff;
}
.dm-dashboard .dm-dashboard-content-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ced4da;
  border-top: 1px solid #ced4da;
  padding: 1rem 0;
  margin-bottom: 2rem;
  margin-top: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 420px) {
  .dm-dashboard .dm-dashboard-content-search {
    flex-wrap: wrap;
  }
}
@media (max-width: 420px) {
  .dm-dashboard .dm-dashboard-content-search a {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .dm-dashboard .dm-dashboard-content-search .dm-dashboard-search {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .dm-dashboard .dm-dashboard-content-search .dm-dashboard-search .dm-search-form input {
    width: 70%;
  }
}
@media (max-width: 420px) {
  .dm-dashboard .dm-dashboard-content-search .dm-dashboard-search button {
    width: 30%;
  }
}
.dm-dashboard .dm-dashboard-card .dm-card-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.dm-dashboard .dm-dashboard-card .dm-card-total .card-text {
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.dm-dashboard .dm-dashboard-card h5 {
  font-size: 1.2rem;
}
.dm-dashboard .dm-dashboard-card ul li {
  padding: 1rem 0.25rem;
  font-size: 0.9rem;
}
.dm-dashboard .dm-dashboard-card ul li:last-of-type {
  border: none;
}
.dm-dashboard .dm-dashboard-card .btn {
  text-transform: capitalize;
}
.dm-dashboard .dm-dashboard-social .dm-social-profile-name {
  text-transform: capitalize;
}
.dm-dashboard .dm-book-authors-position-widget {
  max-width: 800px;
}
.dm-dashboard .dm-book-authors-position-widget .dm-drag-column svg {
  width: 15px;
  height: 15px;
}

.dm-app-details {
  color: rgba(255, 255, 255, 0.5);
}
.dm-app-details button {
  color: #fff;
}
.dm-app-details button svg {
  width: 25px;
  height: 25px;
}

.dm-inside-page-navigation {
  display: flex;
  flex-wrap: wrap;
  row-gap: 7px;
}

.dm-breadcrumb-search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  background-color: #ededed;
  padding-right: 1rem;
}
.dm-breadcrumb-search .dm-dashboard-breadcrumb {
  margin-bottom: 0 !important;
}
.dm-breadcrumb-search input {
  background-color: #fff;
}

.dm-filter-wrapper {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: baseline;
}
@media (max-width: 420px) {
  .dm-filter-wrapper {
    margin-top: 1rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 420px) {
  .dm-filter-wrapper > div {
    margin-bottom: 7px;
  }
}
@media (max-width: 1440px) {
  .dm-filter-wrapper .col-auto {
    margin-top: 0 !important;
  }
}
@media (max-width: 420px) {
  .dm-filter-wrapper .col-auto {
    margin-top: var(--bs-gutter-y) !important;
  }
}

.dm-dashboard-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  list-style: none;
  background-color: #ededed;
  border-radius: 0.25rem;
}
.dm-dashboard-breadcrumb a {
  text-decoration: underline;
}
.dm-dashboard-breadcrumb .dm-dashboard-breadcrumb-item {
  text-transform: capitalize;
  display: flex;
}
.dm-dashboard-breadcrumb .dm-dashboard-breadcrumb-item + .dm-dashboard-breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #ced4da;
  content: "/";
}
.dm-dashboard-breadcrumb .dm-dashboard-breadcrumb-item + .dm-dashboard-breadcrumb-item {
  padding-left: 0.5rem;
}

.dm-dashboard-inline-item-content {
  width: 100%;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.dm-dashboard-inline-item-content.row {
  -moz-column-gap: 0;
       column-gap: 0;
}
@media (max-width: 992px) {
  .dm-dashboard-inline-item-content {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 992px) {
  .dm-dashboard-inline-item-content .dm-dashboard-item-content-image {
    margin-right: 1rem;
  }
}
@media (max-width: 420px) {
  .dm-dashboard-inline-item-content .dm-dashboard-item-content-image {
    width: 70px;
  }
}
@media (max-width: 420px) {
  .dm-dashboard-inline-item-content .dm-dashboard-item-content-title {
    width: calc(100% - 70px);
  }
}

.dm-dashboard-inline-item-actions {
  width: 320px;
}
@media (max-width: 768px) {
  .dm-dashboard-inline-item-actions {
    width: 100%;
    display: block !important;
  }
}
.dm-publisher-inline-item-actions {
  width: 210px;
}
@media (max-width: 768px) {
  .dm-publisher-inline-item-actions {
    width: 100%;
    display: block !important;
  }
}

.dm-dashboard-edit {
  padding: 2rem 0 3rem 0;
  border-top: 1px solid #ced4da;
}
.dm-dashboard-edit label {
  font-weight: 600;
  margin-bottom: 0;
}
.dm-dashboard-edit .dm-save-cancel-action {
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
  padding-top: 1.5rem;
}
.dm-dashboard-edit .dm-save-cancel-action .dm-save-cancel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
}
.dm-dashboard-edit .dm-save-cancel-action .dm-save-cancel-extra-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
}

.dm-select-books-catalogue .list-group-item {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}
.dm-select-books-catalogue svg {
  width: 13px;
}

.dm-selected-column .list-group-item:hover .btn, .dm-selected-column .list-group-item:active .btn, .dm-selected-column .list-group-item:focus .btn {
  color: #e3342f;
  opacity: 1;
}
.dm-selected-column .list-group-item .btn {
  opacity: 0.5;
}

.dm-available-select-column .list-group-item:hover .btn, .dm-available-select-column .list-group-item:active .btn, .dm-available-select-column .list-group-item:focus .btn,
.dm-available-select-column .dm-select-taxonomy-single:hover .btn,
.dm-available-select-column .dm-select-taxonomy-single:active .btn,
.dm-available-select-column .dm-select-taxonomy-single:focus .btn {
  color: #38c172;
  opacity: 1;
}
.dm-available-select-column .list-group-item .btn,
.dm-available-select-column .dm-select-taxonomy-single .btn {
  opacity: 0.5;
}

.dm-select-taxonomy-single {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6,
.ql-editor ol,
.ql-editor p,
.ql-editor pre,
.ql-editor ul {
  margin-bottom: 1rem !important;
}

.dm-sidebar-bottom {
  position: absolute;
  bottom: 1rem;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.25rem 1rem;
}
.dm-sidebar-bottom svg {
  width: 20px;
}
.dm-sidebar-bottom svg path {
  fill: rgba(255, 255, 255, 0.5);
}
.dm-sidebar-bottom a {
  padding: 0 !important;
}
.dm-sidebar-bottom a:hover svg path, .dm-sidebar-bottom a:active svg path, .dm-sidebar-bottom a:focus svg path {
  fill: #fff;
}

.dm-dashboard-header {
  width: 100%;
  display: none;
  padding: 1rem;
}
.dm-dashboard-header img {
  width: 193px;
}
@media (max-width: 768px) {
  .dm-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 420px) {
  .dm-edit-sidebar {
    border-top: 1px solid;
    padding-top: 1rem;
  }
}

@media (max-width: 420px) {
  .dm-col-dashboard-main {
    padding: 0;
  }
}

@media (max-width: 420px) {
  .dm-video-element-add {
    margin-bottom: 2rem !important;
  }
}

@media (max-width: 420px) {
  .dm-dashboard-author-custom-bio-line {
    margin-bottom: 1rem;
  }
}
.dm-dashboard-author-custom-bio-line .row {
  align-items: flex-end;
}
@media (max-width: 420px) {
  .dm-dashboard-author-custom-bio-line .row > div {
    margin-bottom: 0.5rem;
  }
}

.dm-video-radio-button {
  margin-left: 30px;
  margin-right: 10px;
}
@media (max-width: 420px) {
  .dm-video-radio-button {
    width: 100%;
    margin-left: 40px;
    margin-right: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.dm-dashboard-language-element input {
  margin-right: 10px;
}

.dm-add-taxonomy-row input {
  border-color: #FFE57F;
}

.dm-taxonomies-group {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .dm-taxonomies-group .dm-taxonomy-item {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .dm-taxonomies-group .dm-taxonomy-item h4 {
    margin-bottom: 0.5rem;
  }
}

.dm-taxonomy-row {
  margin-bottom: 1rem;
}
.dm-taxonomy-row .v-popover {
  display: flex;
}
.dm-taxonomy-row .dm-taxonomy-row-actions {
  display: flex;
  align-items: center;
}
.dm-taxonomy-row .dm-taxonomy-row-actions > div, .dm-taxonomy-row .dm-taxonomy-row-actions > button {
  margin-right: 10px;
}

.dm-taxonomies-add input {
  border-color: #38c172;
}

.vs__dropdown-option--selected {
  background-color: #ededed;
}

.vue-dropzone.dropzone {
  background-color: rgba(195, 195, 195, 0.15);
  font-weight: 700;
}
.vue-dropzone.dropzone:hover, .vue-dropzone.dropzone:active, .vue-dropzone.dropzone:focus {
  background-color: rgba(255, 229, 127, 0.35);
  border: 2px solid #ffe57f;
}

.dm-material-count {
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}
.dm-material-count svg path {
  fill: #999999;
}

.dm-page-description-dashboard {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dm-folder-style-tabs a {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  min-width: 185px;
  margin: 0 !important;
  margin-right: -1rem !important;
  border: 1px solid #ced4da !important;
  z-index: 9;
  position: relative;
}
.dm-folder-style-tabs a.active {
  z-index: 99;
}

.dm-book-material-form svg {
  width: 100px !important;
}

.dm-default-page-title {
  padding: 4rem 0 2rem 0;
  position: relative;
}
.dm-default-page-title .dm-edit-front-link {
  top: 1rem;
}
.dm-default-page-title .container {
  margin-bottom: 0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dm-default-page-title h1 {
  margin-bottom: 0;
}

.dm-category-list {
  padding: 3rem 0 0 0;
}
.dm-category-list .dm-category-section-book {
  margin-bottom: 3.5rem;
}
.dm-category-list .dm-category-section-book.dm-card .dm-wrap-card-image {
  transition: transform 0.3s ease;
}
.dm-category-list .dm-category-section-book.dm-card .dm-wrap-card-image:hover, .dm-category-list .dm-category-section-book.dm-card .dm-wrap-card-image:active, .dm-category-list .dm-category-section-book.dm-card .dm-wrap-card-image:focus {
  transform: scale(1.05) rotate(0.01deg);
}

.dm-category-description {
  font-size: 1.2rem;
}

.dm-page-title {
  padding: 4rem 0 1rem 0;
}
.dm-page-title h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.dm-record-description {
  font-size: 1rem;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .dm-record-description {
    padding: 0;
  }
}

.dm-catalogue-list h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.dm-catalogue-list .dm-category-section-books .dm-category-section-book h3 {
  font-size: 1rem;
}

.dm-follow-up-qr-code {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .dm-follow-up-qr-code {
    display: none;
  }
}

.dm-page-title.dm-news-single-title {
  text-align: center;
  padding: 4rem 0 2.5rem 0;
}
.dm-page-title.dm-news-single-title h1 {
  text-transform: none;
  letter-spacing: 0;
}

.dm-news-single-date {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.dm-page-featured-image {
  text-align: center;
  margin-bottom: 2rem;
}

.dm-page-content {
  padding-bottom: 2rem;
}
.dm-page-content h2 {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0px;
}
.dm-page-content h3 {
  font-weight: 500;
  letter-spacing: 0px;
}
.dm-page-content a {
  color: #222222;
  text-decoration: underline;
  font-weight: 700;
}
.dm-page-content a:hover, .dm-page-content a:active, .dm-page-content a:focus {
  color: #f9d444;
}

.dm-related-authors {
  padding: 1rem 0;
}
.dm-related-authors h4 {
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.dm-related-authors ul {
  list-style: none;
  padding-left: 0;
}
.dm-related-authors ul a {
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .dm-contact-social {
    margin-bottom: 2rem;
  }
}
.dm-contact-social svg {
  width: 30px;
  height: 22px;
}
.dm-contact-social svg path {
  fill: #222222;
  transition: 0.3s;
}
.dm-contact-social a:hover svg path, .dm-contact-social a:active svg path, .dm-contact-social a:focus svg path {
  fill: #f9d444;
}

.dm-contact-details {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.dm-contact-details div span {
  display: block;
  width: 100%;
}
.dm-contact-details div a {
  text-decoration: underline;
  display: inline-block;
}

.dm-record-container {
  padding: 4rem 0 2rem 0;
}
@media (max-width: 768px) {
  .dm-record-container > .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .dm-record-container .dm-record-description .dm-book-author {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.dm-record-container .dm-record-description a,
.dm-record-container .dm-book-long-description a {
  text-decoration: underline;
}
.dm-record-container .dm-record-details {
  padding-left: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .dm-record-container .dm-record-details {
    padding-left: 15px;
  }
}
.dm-record-container .dm-book-author {
  padding-left: 0;
}
.dm-record-container .dm-book-author .dm-book-author-name {
  margin-bottom: 2.5rem;
}
.dm-record-container .dm-book-author .dm-book-author-name a {
  color: #222222;
}
.dm-record-container .dm-book-author .dm-book-author-name a:hover, .dm-record-container .dm-book-author .dm-book-author-name a:active, .dm-record-container .dm-book-author .dm-book-author-name a:focus {
  text-decoration: underline;
}
.dm-record-container .dm-book-author h3 {
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.4rem;
}
.dm-record-container .dm-record-title {
  margin-bottom: 1.5rem;
}
.dm-record-container .dm-record-title h1 {
  font-weight: 600;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .dm-record-container .dm-record-title h1 {
    font-size: 1.5rem;
  }
}
.dm-record-container .dm-record-title h2 {
  font-size: 1.4rem;
  letter-spacing: 0;
}
.dm-record-container .dm-book-author-image img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin-bottom: 1rem;
}
.dm-record-container .dm-record-sidebar {
  padding-right: 0;
}
@media (max-width: 768px) {
  .dm-record-container .dm-record-sidebar {
    padding-right: 15px;
  }
}
.dm-record-container .dm-record-sidebar .dm-record-image {
  text-align: right;
}
.dm-record-container .dm-record-sidebar .dm-record-image img {
  width: 100%;
}
.dm-record-container .dm-record-sidebar .dm-share-options {
  background-color: transparent;
  border: none;
  padding: 1rem 0 0 0;
  margin: 0;
}
.dm-record-container .dm-record-sidebar .dm-record-meta {
  padding: 1rem 0;
}
.dm-record-container .dm-record-sidebar .dm-record-meta h3 {
  font-size: 1.3rem;
}
.dm-record-container .dm-record-sidebar .dm-record-meta .dm-record-meta-items {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(195, 195, 195, 0.65);
}
.dm-record-container .dm-record-sidebar .dm-record-meta .dm-record-meta-items:last-of-type {
  border: none;
}
.dm-record-container .dm-record-sidebar .dm-record-meta .dm-record-meta-items a {
  text-decoration: underline;
}
.dm-record-container .dm-record-content {
  width: 100%;
  padding-right: 15px;
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .dm-record-container .dm-record-content {
    padding-right: 0;
  }
}
.dm-record-container .dm-available-material {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 1rem;
}
.dm-record-container .dm-available-material .dm-available-material-single {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 5px;
       column-gap: 5px;
  text-align: center;
  text-decoration: underline;
  width: 100%;
}
.dm-record-container .dm-available-material .dm-available-material-single.dm-image-material {
  flex-wrap: wrap;
  width: calc(25% - 16px) !important;
  flex-wrap: wrap;
  max-height: 150px;
}
@media (max-width: 768px) {
  .dm-record-container .dm-available-material .dm-available-material-single.dm-image-material {
    width: calc(25% - 16px) !important;
  }
}
.dm-record-container .dm-available-material .dm-available-material-single.dm-image-material > div {
  height: 100%;
  width: 100%;
}
.dm-record-container .dm-available-material .dm-available-material-single.dm-image-material a {
  display: block;
  height: 100%;
  width: 100%;
}
.dm-record-container .dm-available-material .dm-available-material-single.dm-image-material img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dm-record-container .dm-available-material .dm-available-material-single.dm-image-material span {
  display: none;
}
.dm-record-container .dm-available-material .dm-available-material-single span {
  margin-top: 0;
  font-weight: 600;
  line-height: 1;
  display: block;
  font-size: 1.1rem;
}
.dm-record-container .dm-book-reviews .dm-review-name-and-publication {
  font-style: italic;
}

.dm-record-content h3 {
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .dm-record-content h3 {
    font-size: 1.3rem;
  }
}
.dm-record-content > div {
  margin-bottom: 2rem;
}
.dm-record-content div#video-player {
  margin-top: 1rem;
}

.dm-territories-list p {
  margin-bottom: 0.25em;
}

.dm-books-by-author {
  padding-bottom: 4rem;
}
.dm-books-by-author .container {
  border-top: 1px solid rgba(195, 195, 195, 0.5);
  padding-top: 2rem;
}
.dm-books-by-author h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.dm-books-by-author .dm-card {
  margin-bottom: 1.5rem;
}

.dm-record-videos > div {
  margin-bottom: 2rem;
}

.dm-book-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 4px;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.dm-book-gallery a {
  padding: 0;
}
.dm-book-gallery a img {
  width: 88px;
  height: 65px;
}

.dm-download-materials-wrap {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.dm-author-container .dm-record-sidebar .dm-record-meta h3 {
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.dm-author-container .dm-record-sidebar .dm-record-meta a {
  text-decoration: underline;
  font-weight: 600;
}
.dm-author-container .dm-record-sidebar .dm-record-image {
  margin-bottom: 1rem;
}
.dm-author-container ul {
  list-style: none;
  padding-left: 0;
}
.dm-author-container ul a {
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.1rem;
}
.dm-author-container .dm-record-content > div {
  margin-bottom: 2.5rem;
}

.dm-record-container .dm-record-title.dm-record-author h1 {
  margin-bottom: 1.5rem;
}
.dm-record-container .dm-record-title.dm-record-author h2 {
  font-weight: 500;
}

.dm-highlight-single-title {
  text-align: center;
}
.dm-highlight-single-title .dm-highlight-description {
  margin-bottom: 1.5rem;
  width: 100%;
  display: block;
}
.dm-highlight-single-title .dm-follow-up-qr-code {
  display: none;
}

.dm-highlight-book.dm-highlight-left .dm-highlight-book-description {
  padding-left: 4rem;
}
@media (max-width: 768px) {
  .dm-highlight-book.dm-highlight-left .dm-highlight-book-description {
    padding-left: 15px;
  }
}
.dm-highlight-book.dm-highlight-right .dm-highlight-book-description {
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .dm-highlight-book.dm-highlight-right .dm-highlight-book-description {
    padding-right: 15px;
  }
}
.dm-highlight-book .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .dm-highlight-book .dm-highlight-book-description {
    order: 2;
  }
}
.dm-highlight-book .dm-highlight-book-description h2 {
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
}
.dm-highlight-book .dm-highlight-book-description .dm-highlight-book-author {
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .dm-highlight-book .dm-highlight-book-image {
    margin-bottom: 1.5rem;
    order: 1;
  }
}
/*# sourceMappingURL=app.css.map*/