/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  66% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  66% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.ball-pulse-sync > div:nth-child(0) {
  -webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; }

.ball-pulse-sync > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
          animation: ball-scale 1s 0s ease-in-out infinite; }

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
          animation: ball-scale 1s 0s ease-in-out infinite; }

.ball-scale-random {
  width: 37px;
  height: 40px; }
  .ball-scale-random > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    display: inline-block;
    height: 30px;
    width: 30px;
    -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
            animation: ball-scale 1s 0s ease-in-out infinite; }
    .ball-scale-random > div:nth-child(1) {
      margin-left: -7px;
      -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
              animation: ball-scale 1s 0.2s ease-in-out infinite; }
    .ball-scale-random > div:nth-child(3) {
      margin-left: -2px;
      margin-top: 9px;
      -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
              animation: ball-scale 1s 0.5s ease-in-out infinite; }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.ball-rotate {
  position: relative; }
  .ball-rotate > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: relative; }
    .ball-rotate > div:first-child {
      -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
              animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite; }
    .ball-rotate > div:before, .ball-rotate > div:after {
      background-color: #fff;
      width: 15px;
      height: 15px;
      border-radius: 100%;
      margin: 2px;
      content: "";
      position: absolute;
      opacity: 0.8; }
    .ball-rotate > div:before {
      top: 0px;
      left: -28px; }
    .ball-rotate > div:after {
      top: 0px;
      left: 25px; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
            transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1); } }

.ball-clip-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  height: 25px;
  width: 25px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
          animation: rotate 0.75s 0s linear infinite; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
            transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1); } }

@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px); }
  .ball-clip-rotate-pulse > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 100%; }
    .ball-clip-rotate-pulse > div:first-child {
      background: #fff;
      height: 16px;
      width: 16px;
      top: 7px;
      left: -7px;
      -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
              animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }
    .ball-clip-rotate-pulse > div:last-child {
      position: absolute;
      border: 2px solid #fff;
      width: 30px;
      height: 30px;
      left: -16px;
      top: -2px;
      background: transparent;
      border: 2px solid;
      border-color: #fff transparent #fff transparent;
      -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
              animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
      -webkit-animation-duration: 1s;
              animation-duration: 1s; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
            transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1); } }

.ball-clip-rotate-multiple {
  position: relative; }
  .ball-clip-rotate-multiple > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    left: -20px;
    top: -20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    -webkit-animation: rotate 1s 0s ease-in-out infinite;
            animation: rotate 1s 0s ease-in-out infinite; }
    .ball-clip-rotate-multiple > div:last-child {
      display: inline-block;
      top: -10px;
      left: -10px;
      width: 15px;
      height: 15px;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      border-color: #fff transparent #fff transparent;
      -webkit-animation-direction: reverse;
              animation-direction: reverse; }

@-webkit-keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

@keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
          animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
      -ms-transform: translateY(-25px);
          transform: translateY(-25px); }
  .ball-scale-ripple-multiple > div:nth-child(0) {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }
  .ball-scale-ripple-multiple > div:nth-child(1) {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; }
  .ball-scale-ripple-multiple > div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
  .ball-scale-ripple-multiple > div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .ball-scale-ripple-multiple > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    top: -2px;
    left: -26px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid #fff;
    -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
            animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
            transform: scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
            transform: scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.ball-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
          animation: ball-beat 0.7s 0s infinite linear; }
  .ball-beat > div:nth-child(2n-1) {
    -webkit-animation-delay: -0.35s !important;
            animation-delay: -0.35s !important; }

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px); }
  .ball-scale-multiple > div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
  .ball-scale-multiple > div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .ball-scale-multiple > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    left: -30px;
    top: 0px;
    opacity: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
            animation: ball-scale-multiple 1s 0s linear infinite; }

@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
            transform: translate(25px, -50px); }
  66% {
    -webkit-transform: translate(50px, 0px);
            transform: translate(50px, 0px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
            transform: translate(25px, -50px); }
  66% {
    -webkit-transform: translate(50px, 0px);
            transform: translate(50px, 0px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
            transform: translate(25px, 50px); }
  66% {
    -webkit-transform: translate(-25px, 50px);
            transform: translate(-25px, 50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
            transform: translate(25px, 50px); }
  66% {
    -webkit-transform: translate(-25px, 50px);
            transform: translate(-25px, 50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
            transform: translate(-50px, 0px); }
  66% {
    -webkit-transform: translate(-25px, -50px);
            transform: translate(-25px, -50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
            transform: translate(-50px, 0px); }
  66% {
    -webkit-transform: translate(-25px, -50px);
            transform: translate(-25px, -50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-29.994px, -37.50938px);
      -ms-transform: translate(-29.994px, -37.50938px);
          transform: translate(-29.994px, -37.50938px); }
  .ball-triangle-path > div:nth-child(1) {
    -webkit-animation-name: ball-triangle-path-1;
            animation-name: ball-triangle-path-1;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  .ball-triangle-path > div:nth-child(2) {
    -webkit-animation-name: ball-triangle-path-2;
            animation-name: ball-triangle-path-2;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  .ball-triangle-path > div:nth-child(3) {
    -webkit-animation-name: ball-triangle-path-3;
            animation-name: ball-triangle-path-3;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  .ball-triangle-path > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid #fff; }
    .ball-triangle-path > div:nth-of-type(1) {
      top: 50px; }
    .ball-triangle-path > div:nth-of-type(2) {
      left: 25px; }
    .ball-triangle-path > div:nth-of-type(3) {
      top: 50px;
      left: 50px; }

@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  75% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  75% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  25% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(0.75);
            transform: scale(0.75); } }

@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  25% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(0.75);
            transform: scale(0.75); } }

.ball-pulse-rise > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
          animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0; }
  .ball-pulse-rise > div:nth-child(2n) {
    -webkit-animation-name: ball-pulse-rise-even;
            animation-name: ball-pulse-rise-even; }
  .ball-pulse-rise > div:nth-child(2n-1) {
    -webkit-animation-name: ball-pulse-rise-odd;
            animation-name: ball-pulse-rise-odd; }

@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

@keyframes ball-grid-beat {
  50% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

.ball-grid-beat {
  width: 57px; }
  .ball-grid-beat > div:nth-child(1) {
    -webkit-animation-delay: 0.44s;
            animation-delay: 0.44s;
    -webkit-animation-duration: 1.27s;
            animation-duration: 1.27s; }
  .ball-grid-beat > div:nth-child(2) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
    -webkit-animation-duration: 1.52s;
            animation-duration: 1.52s; }
  .ball-grid-beat > div:nth-child(3) {
    -webkit-animation-delay: 0.14s;
            animation-delay: 0.14s;
    -webkit-animation-duration: 0.61s;
            animation-duration: 0.61s; }
  .ball-grid-beat > div:nth-child(4) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
    -webkit-animation-duration: 0.82s;
            animation-duration: 0.82s; }
  .ball-grid-beat > div:nth-child(5) {
    -webkit-animation-delay: -0.01s;
            animation-delay: -0.01s;
    -webkit-animation-duration: 1.24s;
            animation-duration: 1.24s; }
  .ball-grid-beat > div:nth-child(6) {
    -webkit-animation-delay: -0.07s;
            animation-delay: -0.07s;
    -webkit-animation-duration: 1.35s;
            animation-duration: 1.35s; }
  .ball-grid-beat > div:nth-child(7) {
    -webkit-animation-delay: 0.29s;
            animation-delay: 0.29s;
    -webkit-animation-duration: 1.44s;
            animation-duration: 1.44s; }
  .ball-grid-beat > div:nth-child(8) {
    -webkit-animation-delay: 0.63s;
            animation-delay: 0.63s;
    -webkit-animation-duration: 1.19s;
            animation-duration: 1.19s; }
  .ball-grid-beat > div:nth-child(9) {
    -webkit-animation-delay: -0.18s;
            animation-delay: -0.18s;
    -webkit-animation-duration: 1.48s;
            animation-duration: 1.48s; }
  .ball-grid-beat > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    display: inline-block;
    float: left;
    -webkit-animation-name: ball-grid-beat;
            animation-name: ball-grid-beat;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 0;
            animation-delay: 0; }

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ball-grid-pulse {
  width: 57px; }
  .ball-grid-pulse > div:nth-child(1) {
    -webkit-animation-delay: 0.58s;
            animation-delay: 0.58s;
    -webkit-animation-duration: 0.9s;
            animation-duration: 0.9s; }
  .ball-grid-pulse > div:nth-child(2) {
    -webkit-animation-delay: 0.01s;
            animation-delay: 0.01s;
    -webkit-animation-duration: 0.94s;
            animation-duration: 0.94s; }
  .ball-grid-pulse > div:nth-child(3) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
    -webkit-animation-duration: 1.43s;
            animation-duration: 1.43s; }
  .ball-grid-pulse > div:nth-child(4) {
    -webkit-animation-delay: -0.03s;
            animation-delay: -0.03s;
    -webkit-animation-duration: 0.74s;
            animation-duration: 0.74s; }
  .ball-grid-pulse > div:nth-child(5) {
    -webkit-animation-delay: 0.21s;
            animation-delay: 0.21s;
    -webkit-animation-duration: 0.68s;
            animation-duration: 0.68s; }
  .ball-grid-pulse > div:nth-child(6) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
    -webkit-animation-duration: 1.17s;
            animation-duration: 1.17s; }
  .ball-grid-pulse > div:nth-child(7) {
    -webkit-animation-delay: 0.46s;
            animation-delay: 0.46s;
    -webkit-animation-duration: 1.41s;
            animation-duration: 1.41s; }
  .ball-grid-pulse > div:nth-child(8) {
    -webkit-animation-delay: 0.02s;
            animation-delay: 0.02s;
    -webkit-animation-duration: 1.56s;
            animation-duration: 1.56s; }
  .ball-grid-pulse > div:nth-child(9) {
    -webkit-animation-delay: 0.13s;
            animation-delay: 0.13s;
    -webkit-animation-duration: 0.78s;
            animation-duration: 0.78s; }
  .ball-grid-pulse > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    display: inline-block;
    float: left;
    -webkit-animation-name: ball-grid-pulse;
            animation-name: ball-grid-pulse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 0;
            animation-delay: 0; }

@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.ball-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -10px; }
  .ball-spin-fade-loader > div:nth-child(1) {
    top: 25px;
    left: 0;
    -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
            animation: ball-spin-fade-loader 1s -0.96s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(2) {
    top: 17.04545px;
    left: 17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
            animation: ball-spin-fade-loader 1s -0.84s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(3) {
    top: 0;
    left: 25px;
    -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
            animation: ball-spin-fade-loader 1s -0.72s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(4) {
    top: -17.04545px;
    left: 17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
            animation: ball-spin-fade-loader 1s -0.6s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(5) {
    top: -25px;
    left: 0;
    -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
            animation: ball-spin-fade-loader 1s -0.48s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(6) {
    top: -17.04545px;
    left: -17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
            animation: ball-spin-fade-loader 1s -0.36s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(7) {
    top: 0;
    left: -25px;
    -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
            animation: ball-spin-fade-loader 1s -0.24s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(8) {
    top: 17.04545px;
    left: -17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
            animation: ball-spin-fade-loader 1s -0.12s infinite linear; }
  .ball-spin-fade-loader > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute; }

@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }

@keyframes ball-spin-loader {
  75% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }

.ball-spin-loader {
  position: relative; }
  .ball-spin-loader > span:nth-child(1) {
    top: 45px;
    left: 0;
    -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
            animation: ball-spin-loader 2s 0.9s infinite linear; }
  .ball-spin-loader > span:nth-child(2) {
    top: 30.68182px;
    left: 30.68182px;
    -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
            animation: ball-spin-loader 2s 1.8s infinite linear; }
  .ball-spin-loader > span:nth-child(3) {
    top: 0;
    left: 45px;
    -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
            animation: ball-spin-loader 2s 2.7s infinite linear; }
  .ball-spin-loader > span:nth-child(4) {
    top: -30.68182px;
    left: 30.68182px;
    -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
            animation: ball-spin-loader 2s 3.6s infinite linear; }
  .ball-spin-loader > span:nth-child(5) {
    top: -45px;
    left: 0;
    -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
            animation: ball-spin-loader 2s 4.5s infinite linear; }
  .ball-spin-loader > span:nth-child(6) {
    top: -30.68182px;
    left: -30.68182px;
    -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
            animation: ball-spin-loader 2s 5.4s infinite linear; }
  .ball-spin-loader > span:nth-child(7) {
    top: 0;
    left: -45px;
    -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
            animation: ball-spin-loader 2s 6.3s infinite linear; }
  .ball-spin-loader > span:nth-child(8) {
    top: 30.68182px;
    left: -30.68182px;
    -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
            animation: ball-spin-loader 2s 7.2s infinite linear; }
  .ball-spin-loader > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: green; }

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  66% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  66% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  66% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  66% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
      -ms-transform: translate(-15px, -15px);
          transform: translate(-15px, -15px); }
  .ball-zig-zag > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    margin-left: 15px;
    top: 4px;
    left: -7px; }
    .ball-zig-zag > div:first-child {
      -webkit-animation: ball-zig 0.7s 0s infinite linear;
              animation: ball-zig 0.7s 0s infinite linear; }
    .ball-zig-zag > div:last-child {
      -webkit-animation: ball-zag 0.7s 0s infinite linear;
              animation: ball-zag 0.7s 0s infinite linear; }

@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  34% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  84% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  34% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  84% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  34% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  84% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  34% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  84% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
      -ms-transform: translate(-15px, -15px);
          transform: translate(-15px, -15px); }
  .ball-zig-zag-deflect > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    margin-left: 15px;
    top: 4px;
    left: -7px; }
    .ball-zig-zag-deflect > div:first-child {
      -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
              animation: ball-zig-deflect 1.5s 0s infinite linear; }
    .ball-zig-zag-deflect > div:last-child {
      -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
              animation: ball-zag-deflect 1.5s 0s infinite linear; }

/**
 * Lines
 */
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.line-scale-party > div:nth-child(1) {
  -webkit-animation-delay: -0.09s;
          animation-delay: -0.09s;
  -webkit-animation-duration: 0.83s;
          animation-duration: 0.83s; }

.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: 0.33s;
          animation-delay: 0.33s;
  -webkit-animation-duration: 0.64s;
          animation-duration: 0.64s; }

.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
  -webkit-animation-duration: 0.39s;
          animation-duration: 0.39s; }

.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: 0.47s;
          animation-delay: 0.47s;
  -webkit-animation-duration: 0.52s;
          animation-duration: 0.52s; }

.line-scale-party > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: line-scale-party;
          animation-name: line-scale-party;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0; }

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale-pulse-out > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
          animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }
  .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
    -webkit-animation-delay: -0.4s !important;
            animation-delay: -0.4s !important; }
  .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
    -webkit-animation-delay: -0.2s !important;
            animation-delay: -0.2s !important; }

@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
          animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); }
  .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
    -webkit-animation-delay: -0.25s !important;
            animation-delay: -0.25s !important; }
  .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important; }

@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }

@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }

.line-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -4px; }
  .line-spin-fade-loader > div:nth-child(1) {
    top: 20px;
    left: 0;
    -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(2) {
    top: 13.63636px;
    left: 13.63636px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(3) {
    top: 0;
    left: 20px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(4) {
    top: -13.63636px;
    left: 13.63636px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(5) {
    top: -20px;
    left: 0;
    -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(6) {
    top: -13.63636px;
    left: -13.63636px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(7) {
    top: 0;
    left: -20px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(8) {
    top: 13.63636px;
    left: -13.63636px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out; }
  .line-spin-fade-loader > div {
    background-color: #fff;
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    width: 5px;
    height: 15px; }

/**
 * Misc
 */
@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }
@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }

.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
          animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }

@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }

@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }

.square-spin > div {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid red;
  -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
          animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }

@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); } }

@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); } }

@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
            transform: translate(-100px, -6.25px); } }

@keyframes pacman-balls {
  75% {
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
            transform: translate(-100px, -6.25px); } }

.pacman {
  position: relative; }
  .pacman > div:nth-child(2) {
    -webkit-animation: pacman-balls 1s -0.99s infinite linear;
            animation: pacman-balls 1s -0.99s infinite linear; }
  .pacman > div:nth-child(3) {
    -webkit-animation: pacman-balls 1s -0.66s infinite linear;
            animation: pacman-balls 1s -0.66s infinite linear; }
  .pacman > div:nth-child(4) {
    -webkit-animation: pacman-balls 1s -0.33s infinite linear;
            animation: pacman-balls 1s -0.33s infinite linear; }
  .pacman > div:nth-child(5) {
    -webkit-animation: pacman-balls 1s 0s infinite linear;
            animation: pacman-balls 1s 0s infinite linear; }
  .pacman > div:first-of-type {
    width: 0px;
    height: 0px;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-radius: 25px;
    -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
            animation: rotate_pacman_half_up 0.5s 0s infinite;
    position: relative;
    left: -30px; }
  .pacman > div:nth-child(2) {
    width: 0px;
    height: 0px;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-radius: 25px;
    -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
            animation: rotate_pacman_half_down 0.5s 0s infinite;
    margin-top: -50px;
    position: relative;
    left: -30px; }
  .pacman > div:nth-child(3),
  .pacman > div:nth-child(4),
  .pacman > div:nth-child(5),
  .pacman > div:nth-child(6) {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    width: 10px;
    height: 10px;
    position: absolute;
    -webkit-transform: translate(0, -6.25px);
        -ms-transform: translate(0, -6.25px);
            transform: translate(0, -6.25px);
    top: 25px;
    left: 70px; }

@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
            transform: translateX(50px) scale(0.5) rotate(-90deg); }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
            transform: translate(50px, 50px) rotate(-180deg); }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
            transform: translateY(50px) scale(0.5) rotate(-270deg); }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
            transform: translateX(50px) scale(0.5) rotate(-90deg); }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
            transform: translate(50px, 50px) rotate(-180deg); }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
            transform: translateY(50px) scale(0.5) rotate(-270deg); }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
      -ms-transform: translate(-25px, -25px);
          transform: translate(-25px, -25px); }
  .cube-transition > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    width: 10px;
    height: 10px;
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #fff;
    -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
            animation: cube-transition 1.6s 0s infinite ease-in-out; }
    .cube-transition > div:last-child {
      -webkit-animation-delay: -0.8s;
              animation-delay: -0.8s; }

@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden; }
  .semi-circle-spin > div {
    position: absolute;
    border-width: 0px;
    border-radius: 100%;
    -webkit-animation: spin-rotate 0.6s 0s infinite linear;
            animation: spin-rotate 0.6s 0s infinite linear;
    background-image: -webkit-linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
    background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
    width: 100%;
    height: 100%; }

@-webkit-keyframes bar-progress {
  0% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; }
  25% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  50% {
    -webkit-transform: translateX(20%) scaleY(20%);
            transform: translateX(20%) scaleY(20%);
    opacity: 1; }
  75% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  100% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; } }

@keyframes bar-progress {
  0% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; }
  25% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  50% {
    -webkit-transform: translateX(20%) scaleY(20%);
            transform: translateX(20%) scaleY(20%);
    opacity: 1; }
  75% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  100% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; } }

.bar-progress {
  width: 30%;
  height: 12px; }
  .bar-progress > div {
    position: relative;
    width: 20%;
    height: 12px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
            animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
    opacity: 1; }

@-webkit-keyframes bar-swing {
  0% {
    left: 0; }
  50% {
    left: 70%; }
  100% {
    left: 0; } }

@keyframes bar-swing {
  0% {
    left: 0; }
  50% {
    left: 70%; }
  100% {
    left: 0; } }

.bar-swing {
  width: 30%;
  height: 8px; }
  .bar-swing > div {
    position: relative;
    width: 30%;
    height: 8px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-animation: bar-swing 1.5s infinite;
            animation: bar-swing 1.5s infinite; }

@-webkit-keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px); }
  100% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px); }
  100% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

.bar-swing-container {
  width: 20%;
  height: 8px;
  position: relative; }
  .bar-swing-container div:nth-child(1) {
    position: absolute;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    height: 12px;
    border-radius: 10px; }
  .bar-swing-container div:nth-child(2) {
    position: absolute;
    width: 30%;
    height: 8px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
            animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
    margin: 2px 2px 0; }

/*==============================================================
*                        BREAKPOINTS
/*============================================================== */
@font-face {
  font-family: "Open Sans";
  src: url("../../../fonts/OpenSans/OpenSans-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../../../fonts/fonts/OpenSans/OpenSans-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../../../fonts/OpenSans/OpenSans-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Orbitron";
  src: url("../../../fonts/Orbitron/Orbitron-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

img,
picture {
  min-height: 1px;
  display: block;
}

input,
button,
textarea,
select {
  padding: 0;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 0;
  appearance: none;
}

input[type=submit],
button {
  cursor: pointer;
  appearance: none;
}

input:focus,
textarea:focus,
button:focus,
select:focus,
a:focus {
  outline: none;
}

body {
  font-family: "Open Sans";
  overflow-y: scroll;
}

.test-container {
  max-width: 1136px;
  padding: 0 25px;
  margin: 0 auto;
}
@media (max-width: 575.9px) {
  .test-container {
    padding: 0 15px;
  }
}

.text-content {
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
}
.text-content > *:first-child {
  margin-top: 0 !important;
}
.text-content > * {
  margin-bottom: 10px;
}
.text-content > *:last-child {
  margin-bottom: 0 !important;
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  font-weight: 600;
}
.text-content h1 {
  font-size: 36px;
}
.text-content h2 {
  font-size: 30px;
}
.text-content h3 {
  font-size: 24px;
}
.text-content h4 {
  font-size: 22px;
}
.text-content h5 {
  font-size: 18px;
}
.text-content a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.text-content a:hover {
  opacity: 0.6;
}
.text-content strong {
  font-weight: 600;
}
.text-content ul:not([class]) li {
  position: relative;
  padding-left: 20px !important;
}
.text-content ul:not([class]) li::before {
  content: "" !important;
  position: absolute;
  top: 10px;
  left: 0;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  width: 5px !important;
  height: 5px !important;
  background-color: #555;
  border-radius: 50%;
}
.text-content ol {
  counter-reset: olList;
}
.text-content ol li {
  position: relative;
  padding-left: 20px !important;
  counter-increment: olList;
}
.text-content ol li::before {
  content: counter(olList) "." !important;
  position: absolute;
  top: 0px;
  left: 0;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}
@media (max-width: 991.9px) {
  .text-content {
    font-size: 14px;
  }
  .text-content h1 {
    font-size: 28px;
  }
  .text-content h2 {
    font-size: 24px;
  }
  .text-content h3 {
    font-size: 20px;
  }
  .text-content h4 {
    font-size: 16px;
  }
}
@media (max-width: 575.9px) {
  .text-content {
    font-size: 14px;
  }
  .text-content h1 {
    font-size: 26px;
  }
  .text-content h2 {
    font-size: 22px;
  }
  .text-content h3 {
    font-size: 18px;
  }
  .text-content h4 {
    font-size: 14px;
  }
}

.question-icon {
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.question-icon img,
.question-icon svg {
  width: 25px;
  height: 25px;
}
.question-icon:hover {
  opacity: 0.6;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  outline: none;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 400;
  transition-property: background-color, border, opacity, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.btn.btn-blue, .section-hammer-offer .product-calc .wrapp_button .button_block a.btn {
  color: #fff;
  background-color: #3575cb;
  border-color: #3575cb;
}
.btn.btn-blue:hover, .section-hammer-offer .product-calc .wrapp_button .button_block a.btn:hover {
  color: #3575cb;
  background-color: #fff;
}
.btn.btn-dblue {
  color: #000;
  background-color: #fff;
  border-color: #3575cb;
}
.btn.btn-dblue:hover {
  color: #fff;
  background-color: #3575cb;
}

.tabs-wrapper .tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.tabs-wrapper .tabs-nav .tabs-nav-item {
  flex-shrink: 0;
  cursor: pointer;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
  font-weight: 600;
  transition-property: background-color, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.tabs-wrapper .tabs-nav .tabs-nav-item:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.tabs-wrapper .tabs-nav .tabs-nav-item.active {
  background-color: #3575cb;
  border-color: transparent;
}
.tabs-wrapper .tabs-nav .tabs-nav-item.active .text {
  color: #fff;
}
.tabs-wrapper .tabs-content .tabs-content-item {
  display: none;
}
.tabs-wrapper .tabs-content .tabs-content-item.active {
  display: block;
}
@media (max-width: 991.9px) {
  .tabs-wrapper .tabs-nav .tabs-nav-item {
    font-size: 14px;
  }
}

.accord .accord-trigger {
  cursor: pointer;
  padding: 20px 15px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.accord .accord-trigger .text {
  color: rgba(0, 0, 0, 0.8);
  font-size: 18px;
  font-weight: 600;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.accord .accord-trigger .icon {
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.accord .accord-trigger .icon img,
.accord .accord-trigger .icon svg {
  width: 13px;
  height: 19px;
}
.accord .accord-trigger .icon svg rect {
  transform-origin: left top;
  fill: #3575cb;
}
.accord .accord-body {
  overflow: hidden;
  max-height: 0;
  transition-property: max-height;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
.accord.active .accord-trigger {
  background-color: #3575cb;
}
.accord.active .accord-trigger .text {
  color: #fff;
}
.accord.active .accord-trigger .icon {
  transform: translateX(-7px) rotate(90deg);
}
.accord.active .accord-trigger .icon svg rect {
  fill: #fff;
}

.product-gallery-fancy {
  width: 100%;
  height: 100%;
}
.product-gallery-fancy .img-wrapper-big {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.product-gallery-fancy .img-wrapper-big .carousel__slide {
  width: 100%;
  height: 100%;
}
.product-gallery-fancy .img-wrapper-big .carousel__slide img {
  height: 100%;
  object-fit: cover;
}
.product-gallery-fancy .img-wrapper-small .carousel__viewport {
  margin: 0 32px;
}
.product-gallery-fancy .img-wrapper-small .carousel__button {
  width: 45px;
}
.product-gallery-fancy .img-wrapper-small .carousel__button.is-prev {
  justify-content: flex-start;
  left: 0;
}
.product-gallery-fancy .img-wrapper-small .carousel__button.is-next {
  justify-content: flex-end;
  right: 0;
}
.product-gallery-fancy .img-wrapper-small .carousel__slide {
  width: 50px;
  height: 50px;
  margin: 0 5px;
  padding: 0;
}
.product-gallery-fancy .img-wrapper-small .carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery-fancy .img-wrapper-small .carousel__slide.is-nav-selected {
  opacity: 1;
}
.product-gallery-fancy .carousel__viewport,
.product-gallery-fancy .carousel__track {
  height: 100%;
}

.fancybox__container .fancybox__toolbar__items--right > *:not(.fancybox__button--close) {
  display: none;
}

.tag-dropdown-wrap .dropdown-trigger {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #3575cb;
}
.tag-dropdown-wrap .dropdown-rest {
  transition: max-height 0.3s ease;
  overflow: hidden;
}
.tag-dropdown-wrap .dropdown-top,
.tag-dropdown-wrap .dropdown-rest {
  display: inline;
}
.tag-dropdown-wrap .dropdown-top div,
.tag-dropdown-wrap .dropdown-rest div {
  display: inline-block;
}
@media (max-width: 450px) {
  .tag-dropdown-wrap .dropdown-trigger {
    display: flex;
  }
  .tag-dropdown-wrap .dropdown-rest {
    max-height: 0;
  }
  .tag-dropdown-wrap .dropdown-top,
.tag-dropdown-wrap .dropdown-rest {
    display: block;
  }
}

.section-hammer-description .tabs-wrapper .tabs-nav .tabs-nav-item.active {
  color: #fff;
}

.viewed_block div.item-title {
  height: auto !important;
}

.section-knife-offer {
  padding-bottom: 50px;
}
.section-knife-offer .section-title {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 45px;
}
.section-knife-offer .offer-block {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 4;
  column-gap: 40px;
  row-gap: 20px;
  margin-bottom: 50px;
}
.section-knife-offer .offer-block .cell {
  grid-column: span 4;
}
.section-knife-offer .offer-block .cell .card {
  width: 100%;
  height: 100%;
}
.section-knife-offer .offer-block .cell.step-card .card {
  padding: 25px 20px;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
.section-knife-offer .offer-block .cell.step-card .card-head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.section-knife-offer .offer-block .cell.step-card .card-head .count {
  font-family: "Orbitron", sans-serif;
  margin-right: 20px;
  font-size: 40px;
  line-height: 1.25;
}
@supports (-webkit-text-stroke: 2px #3575cb) {
  .section-knife-offer .offer-block .cell.step-card .card-head .count {
    color: transparent;
    -webkit-text-stroke: 2px #3575cb;
  }
}
@supports not (-webkit-text-stroke: 2px #3575cb) {
  .section-knife-offer .offer-block .cell.step-card .card-head .count {
    color: #3575cb;
  }
}
.section-knife-offer .offer-block .cell.step-card .card-head .title {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
.section-knife-offer .offer-block .cell.step-card .card-text {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.8);
}
.section-knife-offer .offer-block .cell.img-card {
  grid-column: 5/9;
  grid-row: 1/4;
}
.section-knife-offer .offer-block .cell.img-card picture,
.section-knife-offer .offer-block .cell.img-card img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-knife-offer .offer-block .cell.info-card {
  grid-column: span 12;
}
.section-knife-offer .offer-block .cell.info-card .card {
  padding: 25px 0;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
.section-knife-offer .offer-block .cell.info-card .card-col {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  width: 100%;
  max-width: calc(100% / 3);
}
.section-knife-offer .offer-block .cell.info-card .card-col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.section-knife-offer .offer-block .cell.info-card .list-info {
  margin-bottom: -12px;
}
.section-knife-offer .offer-block .cell.info-card .list-info .list-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}
.section-knife-offer .offer-block .cell.info-card .list-info .list-item > * {
  margin-bottom: 12px;
}
.section-knife-offer .offer-block .cell.info-card .list-info .list-item > *:not(:last-child) {
  margin-right: 25px;
}
.section-knife-offer .offer-block .cell.info-card .list-info .text {
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}
.section-knife-offer .offer-block .cell.info-card .list-info strong {
  font-weight: 700;
}
.section-knife-offer .offer-block .cell.info-card .list-info a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.section-knife-offer .offer-block .cell.info-card .list-info a:hover {
  opacity: 0.6;
}
.section-knife-offer .notif-block {
  background-color: #eaeaea;
  padding: 30px 25px;
}
.section-knife-offer .notif-block .text {
  font-size: 22px;
  color: #000;
  text-align: center;
}
.section-knife-offer .btn {
  padding: 15px;
}
@media (max-width: 991.9px) {
  .section-knife-offer .section-title {
    display: none;
  }
  .section-knife-offer .offer-block {
    column-gap: 15px;
    row-gap: 20px;
    margin-bottom: 30px;
  }
  .section-knife-offer .offer-block .cell.step-card .card {
    padding: 15px;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head {
    margin-bottom: 7px;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head .count {
    margin-right: 10px;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head .title {
    font-size: 16px;
    word-break: break-all;
  }
  .section-knife-offer .offer-block .cell.step-card .card-text {
    font-size: 14px;
  }
  .section-knife-offer .offer-block .cell.img-card {
    grid-column: 1/13;
    grid-row: 2/3;
  }
  .section-knife-offer .offer-block .cell.info-card .card-col {
    padding: 0 15px;
  }
  .section-knife-offer .offer-block .cell.info-card .list-info .text {
    font-size: 16px;
  }
  .section-knife-offer .notif-block .text {
    font-size: 16px;
  }
}
@media (max-width: 767.9px) {
  .section-knife-offer .offer-block {
    column-gap: 11px;
    row-gap: 15px;
    grid-template-rows: auto;
  }
  .section-knife-offer .offer-block .cell.step-card {
    grid-column: span 6;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head .count {
    margin-right: 10px;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head .title {
    word-break: normal;
  }
  .section-knife-offer .offer-block .cell.step-card:nth-child(1) {
    grid-column: 1/13;
  }
  .section-knife-offer .offer-block .cell.step-card:nth-child(6) {
    grid-column: 1/13;
  }
  .section-knife-offer .offer-block .cell.info-card .card {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
  }
  .section-knife-offer .offer-block .cell.info-card .card-col {
    padding: 0;
    max-width: 100%;
    border-right: none !important;
  }
  .section-knife-offer .offer-block .cell.info-card .card-col:last-child .list-info {
    margin-bottom: -15px;
  }
  .section-knife-offer .offer-block .cell.info-card .list-info {
    margin-bottom: 0;
  }
  .section-knife-offer .offer-block .cell.info-card .list-info .text {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.9px) {
  .section-knife-offer .offer-block .cell.step-card .card {
    padding: 10px;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head {
    margin-bottom: 5px;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head .count {
    font-size: 30px;
  }
  .section-knife-offer .offer-block .cell.step-card .card-head .title {
    font-size: 14px;
  }
  .section-knife-offer .notif-block {
    padding: 20px 15px;
  }
  .section-knife-offer .notif-block .text {
    font-size: 16px;
  }
}
@media (max-width: 475px) {
  .section-knife-offer .offer-block .cell.step-card {
    grid-column: span 12;
  }
}

.section-knife-description {
  padding: 50px 0;
}
.section-knife-description .offer-block {
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}
.section-knife-description .offer-block .offer-block-head {
  background-color: #eaeaea;
  padding: 30px 25px;
}
.section-knife-description .offer-block .offer-block-head .title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.section-knife-description .offer-block .offer-block-body {
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-knife-description .offer-block .offer-block-body .text-content {
  max-width: 750px;
}
.section-knife-description .offer-block .offer-block-body .icon {
  display: flex;
  flex-shrink: 0;
  margin-left: 30px;
}
.section-knife-description .offer-block .offer-block-body .icon img {
  width: 150px;
  height: 150px;
}
.section-knife-description .video-block {
  display: flex;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
}
.section-knife-description .video-block video {
  width: 100%;
}
.section-knife-description .description-block {
  margin-bottom: 50px;
}
.section-knife-description .description-block .text-content {
  text-align: justify;
}
.section-knife-description .description-block .text-content > *:not(:last-child, hr) {
  margin-bottom: 20px;
}
.section-knife-description .description-block .text-content hr {
  margin: 40px auto;
  width: 5px;
  height: 40px;
  background-color: #3575cb;
  border-radius: 2px;
}
.section-knife-description .description-block .text-content p .icon {
  float: left;
  width: 200px;
  height: 200px;
  margin-right: 30px;
}
.section-knife-description .review-block {
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  padding: 45px;
  margin-bottom: 50px;
}
.section-knife-description .review-block .review-block-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 21px;
}
.section-knife-description .review-block .profile {
  display: flex;
  align-items: flex-start;
}
.section-knife-description .review-block .profile .img {
  display: flex;
  flex-shrink: 0;
  margin-right: 40px;
}
.section-knife-description .review-block .profile .img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #3575cb;
}
.section-knife-description .review-block .profile .info {
  display: flex;
  flex-direction: column;
}
.section-knife-description .review-block .profile .info .name {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
.section-knife-description .review-block .profile .info .position {
  margin-top: 10px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
}
.section-knife-description .review-block .icon {
  display: flex;
  flex-shrink: 0;
  margin-top: 5px;
  margin-left: 30px;
}
.section-knife-description .review-block .icon img {
  width: 80px;
  height: 80px;
}
.section-knife-description .seotext-block .text-content {
  position: relative;
  padding-left: 35px;
}
.section-knife-description .seotext-block .text-content:not(:last-child) {
  margin-bottom: 40px;
}
.section-knife-description .seotext-block .text-content > *:not(:last-child) {
  margin-bottom: 30px;
}
.section-knife-description .seotext-block .text-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 2px;
  background-color: #3575cb;
}
.section-knife-description .btn {
  padding: 15px;
}
@media (max-width: 991.9px) {
  .section-knife-description {
    padding: 40px 0;
  }
  .section-knife-description .offer-block {
    margin-bottom: 30px;
  }
  .section-knife-description .offer-block .offer-block-head .title {
    font-size: 18px;
  }
  .section-knife-description .offer-block .offer-block-body {
    padding: 15px 20px;
  }
  .section-knife-description .offer-block .offer-block-body .text-content {
    max-width: none;
  }
  .section-knife-description .offer-block .offer-block-body .icon img {
    width: 100px;
    height: 100px;
  }
  .section-knife-description .video-block {
    margin-bottom: 30px;
  }
  .section-knife-description .description-block .text-content {
    font-size: 16px;
  }
  .section-knife-description .description-block .text-content hr {
    margin: 30px auto;
  }
  .section-knife-description .description-block .text-content p .icon {
    width: 100px;
    height: 100px;
    margin-right: 20px;
  }
  .section-knife-description .review-block {
    padding: 30px;
  }
  .section-knife-description .review-block .profile .info .name {
    font-size: 20px;
  }
  .section-knife-description .review-block .profile .info .position {
    margin-top: 15px;
    font-size: 16px;
  }
  .section-knife-description .review-block .icon img {
    width: 60px;
    height: 60px;
  }
  .section-knife-description .review-block .text-content {
    font-size: 18px;
  }
  .section-knife-description .seotext-block .text-content {
    font-size: 16px;
  }
  .section-knife-description .seotext-block .text-content > *:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.9px) {
  .section-knife-description {
    padding: 30px 0;
  }
  .section-knife-description .offer-block {
    margin-bottom: 15px;
  }
  .section-knife-description .offer-block .offer-block-head {
    padding: 25px 15px;
  }
  .section-knife-description .offer-block .offer-block-head .title {
    font-size: 14px;
  }
  .section-knife-description .offer-block .offer-block-body {
    padding: 15px;
    align-items: flex-start;
  }
  .section-knife-description .offer-block .offer-block-body .icon {
    margin-left: 15px;
  }
  .section-knife-description .offer-block .offer-block-body .icon img {
    width: 60px;
    height: 60px;
  }
  .section-knife-description .video-block {
    margin-bottom: 30px;
  }
  .section-knife-description .description-block {
    margin-bottom: 30px;
  }
  .section-knife-description .description-block .text-content h3 {
    font-size: 20px;
  }
  .section-knife-description .description-block .text-content p .icon {
    margin-right: 10px;
  }
  .section-knife-description .review-block {
    padding: 20px;
    margin-bottom: 30px;
  }
  .section-knife-description .review-block .review-block-head {
    margin-bottom: 10px;
  }
  .section-knife-description .review-block .profile {
    display: flex;
    align-items: flex-start;
  }
  .section-knife-description .review-block .profile .img {
    margin-right: 10px;
  }
  .section-knife-description .review-block .profile .img img {
    width: 60px;
    height: 60px;
  }
  .section-knife-description .review-block .profile .info .name {
    font-size: 16px;
  }
  .section-knife-description .review-block .profile .info .position {
    margin-top: 5px;
    font-size: 14px;
  }
  .section-knife-description .review-block .icon {
    display: none;
  }
  .section-knife-description .review-block .text-content {
    font-size: 14px;
  }
  .section-knife-description .seotext-block .text-content {
    font-size: 14px;
    padding-left: 20px;
  }
  .section-knife-description .seotext-block .text-content:not(:last-child) {
    margin-bottom: 20px;
  }
  .section-knife-description .seotext-block .text-content > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .section-knife-description .seotext-block .text-content h3 {
    font-size: 16px;
  }
}

.section-hammer-offer {
  padding: 50px 0 18px;
  display: grid !important;
  grid-template-columns: repeat(11, 1fr);
  column-gap: 50px;
  row-gap: 40px;
}
.section-hammer-offer > *:not(.product-gallery, .product-summary, .product-calc, .product-char, .product-benefits) {
  grid-column: span 0;
  grid-row: 0;
}
.section-hammer-offer .img-wrapper-big .carousel__slide {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.section-hammer-offer .img-wrapper-big .carousel__slide.is-selected {
  opacity: 1;
}
.section-hammer-offer .product-gallery {
  position: relative;
  grid-column: span 4;
}
.section-hammer-offer .product-gallery .img-wrapper-big {
  height: 300px;
}
.section-hammer-offer .product-gallery .carousel__slide {
  display: flex;
  align-items: center;
  padding: 1px;
}
.section-hammer-offer .product-gallery .stickers {
  display: flex !important;
  flex-wrap: wrap;
  max-width: 100% !important;
  top: 10px !important;
  left: 10px !important;
}
.section-hammer-offer .product-summary {
  grid-column: span 3;
  color: rgba(0, 0, 0, 0.8);
}
.section-hammer-offer .product-summary .price {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.section-hammer-offer .product-summary .price .price-initial {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.section-hammer-offer .product-summary .price .price-initial .text {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin-right: 20px;
}
.section-hammer-offer .product-summary .price .sale-text {
  font-size: 18px;
  font-weight: 600;
  color: #f32637;
  margin-bottom: 5px;
}
.section-hammer-offer .product-summary .price .price-sale {
  display: flex;
  align-items: center;
}
.section-hammer-offer .product-summary .price .price-sale .text {
  font-size: 32px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  margin-right: 20px;
}
.section-hammer-offer .product-summary .rates {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.section-hammer-offer .product-summary .rates .rates-wrapper {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
.section-hammer-offer .product-summary .rates .rates-wrapper img,
.section-hammer-offer .product-summary .rates .rates-wrapper svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.section-hammer-offer .product-summary .rates .rates-wrapper img:not(:last-child),
.section-hammer-offer .product-summary .rates .rates-wrapper svg:not(:last-child) {
  margin-right: 8px;
}
.section-hammer-offer .product-summary .rates .count {
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: 600;
}
.section-hammer-offer .product-calc {
  grid-column: span 4;
}
.section-hammer-offer .product-calc .credit_calc .credit_calc_info > h3 {
  font-weight: 400;
  text-align: left;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 13px;
}
.section-hammer-offer .product-calc .credit_calc .credit_calc_block {
  background-color: #f5f5f5;
  padding: 15px 20px;
  margin-bottom: 10px;
}
.section-hammer-offer .product-calc .credit_calc .credit_calc_block > .title {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 7px;
}
.section-hammer-offer .product-calc .credit_calc .credit_calc_block .ik_select {
  margin-bottom: 15px;
}
.section-hammer-offer .product-calc .credit_calc .credit_calc_block .result {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}
.section-hammer-offer .product-calc .credit_calc .credit_calc_block .result span {
  padding: 0 5px;
  font-size: 22px !important;
  font-weight: 700;
  color: #3575cb;
}
.section-hammer-offer .product-calc .credit_calc_block .btn-item {
  margin-top: 0;
  height: 50px !important;
  align-items: center;
}
.section-hammer-offer .product-calc .wrapp_button {
  margin-top: 10px;
}
.section-hammer-offer .product-calc .wrapp_button .button_block {
  margin: 0;
  height: 50px;
}
.section-hammer-offer .product-calc .wrapp_button .button_block a.btn {
  height: 50px;
}
.section-hammer-offer .product-calc .wrapp_button .button_block a.btn:hover {
  color: #fff;
  background-color: #3575cb;
  border-color: #3575cb;
  opacity: 0.6;
}
.section-hammer-offer .product-calc .btn.btn-default {
  text-transform: none;
}
.section-hammer-offer .product-char {
  grid-column: span 4;
}
.section-hammer-offer .product-char .table-wrapper {
  margin-bottom: 15px;
}
.section-hammer-offer .product-char .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.section-hammer-offer .product-char .table-wrapper tr:nth-child(2n+1) {
  background-color: rgba(196, 196, 196, 0.07);
}
.section-hammer-offer .product-char .table-wrapper td {
  padding: 5px 10px;
}
.section-hammer-offer .product-char .table-wrapper td:first-child {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
}
.section-hammer-offer .product-char .table-wrapper td:last-child {
  text-align: right;
  font-size: 14px;
  font-weight: 300;
  color: #000;
}
.section-hammer-offer .product-char .link-item {
  font-size: 14px;
  font-weight: 400;
  color: #3575cb;
  transition: opacity 0.3s ease;
}
.section-hammer-offer .product-char .link-item:hover {
  opacity: 0.6;
}
.section-hammer-offer .product-benefits {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: min-content;
  column-gap: 50px;
  row-gap: 25px;
  margin-bottom: 32px;
}
.section-hammer-offer .product-benefits .benefit-item {
  position: relative;
  display: flex;
  align-items: center;
}
.section-hammer-offer .product-benefits .benefit-item .icon {
  display: flex;
  flex-shrink: 0;
  margin-right: 20px;
}
.section-hammer-offer .product-benefits .benefit-item .icon img,
.section-hammer-offer .product-benefits .benefit-item .icon svg {
  width: 40px;
  height: 40px;
}
.section-hammer-offer .product-benefits .benefit-item .text {
  max-width: 130px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  margin-right: 15px;
}
.section-hammer-offer .product-benefits .question-icon::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 6px 10px;
  background-color: #1976d2;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  z-index: 999;
}
.section-hammer-offer .product-benefits .question-icon:hover {
  opacity: 1;
}
.section-hammer-offer .product-benefits .question-icon:hover::before {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.section-hammer-offer .btn {
  padding: 15px;
}
.section-hammer-offer .preview-text-class {
  padding-top: 15px;
}
.section-hammer-offer .preview-text-class > *:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 991.9px) {
  .section-hammer-offer {
    padding: 30px 0 8px;
  }
  .section-hammer-offer .product-gallery {
    grid-column: span 6;
    grid-row: span 2;
  }
  .section-hammer-offer .product-summary {
    grid-column: span 5;
    grid-row: span 1;
  }
  .section-hammer-offer .product-summary .price {
    margin-bottom: 35px;
  }
  .section-hammer-offer .product-summary .price .price-sale .text {
    font-size: 26px;
  }
  .section-hammer-offer .product-calc {
    grid-column: span 5;
    grid-row: span 3;
  }
  .section-hammer-offer .product-calc .credit_calc .credit_calc_block {
    padding: 15px 10px;
  }
  .section-hammer-offer .product-char {
    grid-column: span 6;
    grid-row: span 2;
  }
  .section-hammer-offer .product-benefits {
    grid-column: span 11;
  }
}
@media (max-width: 767.9px) {
  .section-hammer-offer {
    column-gap: 30px;
    row-gap: 30px;
  }
}
@media (max-width: 575.9px) {
  .section-hammer-offer {
    padding: 30px 0 8px;
    column-gap: 0;
    row-gap: 30px;
  }
  .section-hammer-offer .product-gallery {
    grid-column: span 11;
  }
  .section-hammer-offer .product-gallery .img-wrapper-small .carousel__viewport {
    margin: 0 !important;
  }
  .section-hammer-offer .product-gallery .carousel__nav {
    display: none !important;
  }
  .section-hammer-offer .product-summary {
    grid-column: span 11;
    text-align: center;
  }
  .section-hammer-offer .product-summary .price {
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
    padding-right: 0;
  }
  .section-hammer-offer .product-summary .rates {
    justify-content: center;
  }
  .section-hammer-offer .product-calc {
    grid-column: span 11;
  }
  .section-hammer-offer .product-calc .credit_calc .credit_calc_block {
    padding: 15px 20px;
  }
  .section-hammer-offer .product-char {
    grid-column: span 11;
    grid-row-start: 3;
  }
  .section-hammer-offer .product-benefits {
    column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 22px;
  }
  .section-hammer-offer .product-benefits .benefit-item .icon {
    margin-right: 10px;
  }
  .section-hammer-offer .product-benefits .benefit-item .icon img,
.section-hammer-offer .product-benefits .benefit-item .icon svg {
    width: 30px;
    height: 30px;
  }
  .section-hammer-offer .product-benefits .benefit-item .text {
    font-size: 14px;
    max-width: 110px;
    margin-right: 5px;
  }
}
@media (max-width: 400px) {
  .section-hammer-offer .product-benefits {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .section-hammer-offer .product-benefits .benefit-item .text {
    max-width: none;
  }
  .section-hammer-offer .product-benefits .benefit-item .question-icon {
    margin-left: auto;
  }
}

.section-hammer-description .accordions-wrapper {
  display: none;
}
.section-hammer-description .accordions-wrapper .accord-body > * {
  padding: 40px 0 40px;
}
.section-hammer-description .accord .accord-body {
  transition-duration: 0.4s;
}
.section-hammer-description .accord.active .accord-body {
  max-height: none;
}
@media (max-width: 991.9px) {
  .section-hammer-description .tabs-nav,
.section-hammer-description .action-more {
    margin-left: -30px;
    margin-right: -65px;
  }
}
@media (max-width: 575.9px) {
  .section-hammer-description .tabs-wrapper {
    display: none;
  }
  .section-hammer-description .accordions-wrapper {
    display: block;
  }
}
.section-hammer-description .accordion .accordion-item::before {
  content: none !important;
}
.section-hammer-description .tabs-wrapper {
  margin-top: 20px;
}
.section-hammer-description .flex-direction-nav li,
.section-hammer-description .flex-direction-nav li a {
  width: 29px !important;
  height: 32px !important;
  background-color: #f7f7f7 !important;
  border: none !important;
}
.section-hammer-description .flex-direction-nav .flex-nav-prev a {
  background-position: 3px -20px !important;
}
.section-hammer-description .flex-direction-nav .flex-nav-next a {
  background-position: -72px -19px !important;
}
.section-hammer-description .flex-direction-nav .flex-nav-next .flex-next {
  border: none !important;
}
.section-hammer-description .border .flex-direction-nav li {
  border: none !important;
}
.section-hammer-description .flexslider div.item-title {
  padding: 0 10px;
}
@media (max-width: 470px) {
  .section-hammer-description .accord .accord-body {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .section-hammer-description .action-more {
    width: 100vw;
    margin-right: 0;
    margin-left: calc(50% - 50vw);
  }
}
@media (max-width: 440px) {
  .section-hammer-description .flex-direction-nav li a,
.section-hammer-description .flex-direction-nav li {
    width: 35px !important;
    height: 35px !important;
  }
  .section-hammer-description .flex-direction-nav .flex-nav-next a {
    background-position: -69px -17px !important;
  }
  .section-hammer-description .flex-direction-nav .flex-nav-prev a {
    background-position: 6px -18px !important;
  }
}

.tab-hammer-brand .brand-block {
  margin-bottom: 50px;
}
.tab-hammer-brand .brand-block > .title {
  font-size: 26px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  margin-bottom: 36px;
}
.tab-hammer-brand .brand-block .brand-block-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 65px;
  row-gap: 30px;
}
.tab-hammer-brand .brand-block .cell .card {
  width: 100%;
  height: 100%;
}
.tab-hammer-brand .brand-block .cell.text-card:nth-child(1), .tab-hammer-brand .brand-block .cell.text-card:nth-child(2) {
  grid-column: span 4;
}
.tab-hammer-brand .brand-block .cell.text-card:nth-child(3), .tab-hammer-brand .brand-block .cell.text-card:nth-child(4) {
  grid-column: span 6;
}
.tab-hammer-brand .brand-block .cell.text-card .card {
  background-color: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
}
.tab-hammer-brand .brand-block .cell.text-card .card .card-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 7px;
}
.tab-hammer-brand .brand-block .cell.text-card .card .card-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
.tab-hammer-brand .brand-block .cell.img-card {
  grid-column: 5/9;
  grid-row: 1/2;
}
.tab-hammer-brand .brand-block .cell.img-card img {
  max-width: 100%;
  width: 100%;
}
.tab-hammer-brand .brand-block .cell.cert-card {
  grid-column: span 12;
}
.tab-hammer-brand .brand-block .cell.cert-card .card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 65px;
}
.tab-hammer-brand .brand-block .cell.cert-card .card img {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 991.9px) {
  .tab-hammer-brand .brand-block > .title {
    margin-bottom: 30px;
  }
  .tab-hammer-brand .brand-block .brand-block-wrapper {
    column-gap: 40px;
    row-gap: 35px;
  }
  .tab-hammer-brand .brand-block .cell.text-card:nth-child(1), .tab-hammer-brand .brand-block .cell.text-card:nth-child(2), .tab-hammer-brand .brand-block .cell.text-card:nth-child(3), .tab-hammer-brand .brand-block .cell.text-card:nth-child(4) {
    grid-column: 1/7;
  }
  .tab-hammer-brand .brand-block .cell.img-card {
    grid-column: 7/13;
    grid-row: 1/2;
  }
  .tab-hammer-brand .brand-block .cell.cert-card {
    grid-column: 7/13;
    grid-row: 2/5;
  }
  .tab-hammer-brand .brand-block .cell.cert-card .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content;
    column-gap: 35px;
    row-gap: 10px;
  }
}
@media (max-width: 575.9px) {
  .tab-hammer-brand .brand-block > .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .tab-hammer-brand .brand-block .brand-block-wrapper {
    column-gap: 0;
    row-gap: 10px;
  }
  .tab-hammer-brand .brand-block .cell.text-card:nth-child(1), .tab-hammer-brand .brand-block .cell.text-card:nth-child(2), .tab-hammer-brand .brand-block .cell.text-card:nth-child(3), .tab-hammer-brand .brand-block .cell.text-card:nth-child(4) {
    grid-column: span 12;
  }
  .tab-hammer-brand .brand-block .cell.img-card {
    grid-column: span 12;
  }
  .tab-hammer-brand .brand-block .cell.cert-card {
    margin-top: 20px;
    grid-column: span 12;
    grid-row: auto;
  }
  .tab-hammer-brand .brand-block .cell.cert-card .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content;
    column-gap: 35px;
    row-gap: 15px;
  }
}

.tab-hammer-desc .description-block {
  margin-bottom: 50px;
}
.tab-hammer-desc .description-block > *:not(:last-child) {
  margin-bottom: 50px;
}
.tab-hammer-desc .description-block .text-content {
  font-size: 18px;
}
.tab-hammer-desc .description-block .text-content > *:not(:last-child) {
  margin-bottom: 20px;
}
.tab-hammer-desc .description-block .text-content > *:last-child {
  padding-bottom: 10px;
}
.tab-hammer-desc .description-block .text-content .icon {
  float: right;
  margin-left: 75px;
  margin-bottom: 15px;
  width: 300px;
  max-height: 175px;
}
.tab-hammer-desc .description-block .action-call {
  background-color: #f5f5f5;
  padding: 20px 15px;
  text-align: center;
}
.tab-hammer-desc .description-block .action-call .title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 10px;
}
.tab-hammer-desc .description-block .action-call .text {
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}
.tab-hammer-desc .action-order {
  margin-bottom: 50px;
  background-color: #3575cb;
  padding: 25px 15px;
}
.tab-hammer-desc .action-order .text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  font-weight: 600;
}
.tab-hammer-desc .action-more {
  padding: 30px;
  background-color: #f5f5f5;
  margin-bottom: 50px;
}
.tab-hammer-desc .action-more .title {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 15px;
}
.tab-hammer-desc .action-more .text {
  font-size: 16px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-bottom: 25px;
}
.tab-hammer-desc .action-more .btn {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 35px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  background-color: #3575cb;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.tab-hammer-desc .action-more .btn:hover {
  opacity: 0.6;
}
.tab-hammer-desc .notif-block .text-content {
  font-style: italic;
  font-style: 16px;
}
.tab-hammer-desc .notif-block .text-content > *:not(:last-child) {
  margin-bottom: 20px;
}
.tab-hammer-desc .btn {
  padding: 15px;
}
@media (max-width: 991.9px) {
  .tab-hammer-desc .description-block > *:not(:last-child) {
    margin-bottom: 30px;
  }
  .tab-hammer-desc .description-block .action-call {
    padding: 35px 15px;
  }
  .tab-hammer-desc .description-block .action-call .text {
    font-style: 16px;
  }
  .tab-hammer-desc .action-more {
    padding: 25px;
    margin-bottom: 40px;
  }
  .tab-hammer-desc .action-more .title {
    font-size: 16px;
  }
  .tab-hammer-desc .action-more .text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .tab-hammer-desc .notfi-block .text-content {
    font-size: 18px;
  }
}
@media (max-width: 575.9px) {
  .tab-hammer-desc .description-block {
    margin-bottom: 30px;
  }
  .tab-hammer-desc .description-block .action-call {
    padding: 30px 15px;
  }
  .tab-hammer-desc .description-block .action-call .text {
    font-size: 14px;
  }
  .tab-hammer-desc .description-block .text-content {
    font-size: 14px;
  }
  .tab-hammer-desc .description-block .text-content p .icon {
    float: none;
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
    max-height: none;
  }
  .tab-hammer-desc .action-order {
    padding: 10px;
  }
  .tab-hammer-desc .action-order .text {
    font-size: 14px;
  }
  .tab-hammer-desc .action-more {
    padding: 15px 10px;
  }
  .tab-hammer-desc .action-more .text {
    margin-bottom: 15px;
  }
  .tab-hammer-desc .action-more .btn {
    width: 100%;
  }
  .tab-hammer-desc .notfi-block .text-content {
    font-size: 14px;
  }
  .tab-hammer-desc .notfi-block .text-content > *:not(:last-child) {
    margin-bottom: 15px;
  }
}

/*# sourceMappingURL=index.min.css.map*/