@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Nunito:400,900&display=swap");
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

.none {
  display: none !important;
}

.block {
  display: block;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container .options {
  position: relative;
}

.container .options form {
  position: relative;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .options form .switch-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0.5rem;
  position: relative;
}

.container .options form .switch-main .switch {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 34px;
}

.container .options form .switch-main .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.container .options form .switch-main .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.24);
  -webkit-transition: .4s;
  transition: .4s;
}

.container .options form .switch-main .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.container .options form .switch-main .checked:checked + .slider {
  background-color: #333;
}

.container .options form .switch-main .checked:focus + .slider {
  -webkit-box-shadow: 0 0 1px #333;
          box-shadow: 0 0 1px #333;
}

.container .options form .switch-main .checked:checked + .slider:before {
  -webkit-transform: translateX(32px);
          transform: translateX(32px);
}

.container .options form .is-floating-label {
  position: relative;
  margin: 0 0.5rem;
  display: table;
}

.container .options form .is-floating-label input {
  border: 0;
  padding: 3px 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
  outline: 0;
  padding: 14px 10px;
  border: 1px solid #333;
  font-size: 16px;
  padding-top: 22px;
  font-family: 'Nunito', sans-serif;
  width: calc(100% - 20px);
  border-radius: 0;
}

.container .options form .is-floating-label label {
  left: 10px;
  color: #333;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  opacity: 0.54;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 100ms;
  transition: 100ms;
  top: 18px;
}

.container .options form .is-focused label {
  -webkit-transform: translateY(-12px) scale(0.74);
          transform: translateY(-12px) scale(0.74);
  opacity: 1;
}

.container .options form .searcher {
  display: table;
  position: relative;
}

.container .options form .searcher .cities-suggestion {
  z-index: 1;
  margin-top: -1px;
  min-width: 450px;
  max-height: 424px;
  overflow-y: scroll;
  position: absolute;
  left: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 4px 7px 8px 5px rgba(0, 0, 0, 0.14);
          box-shadow: 4px 7px 8px 5px rgba(0, 0, 0, 0.14);
  border: 1px solid #333;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.container .options form .searcher .cities-suggestion .content {
  position: relative;
}

.container .options form .searcher .cities-suggestion .content a {
  text-decoration: none;
  width: 100%;
  outline: none;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

.container .options form .searcher .cities-suggestion .content a .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .options form .searcher .cities-suggestion .content a .group .name {
  list-style: circle;
  padding: 0.5rem;
  text-align: left;
  font-weight: bold;
  color: #008eff;
  font-size: 18px;
}

.container .options form .searcher .cities-suggestion .content a .group .city {
  text-align: left;
  color: #212121;
  font-size: 16px;
}

.container .options form .searcher .none-suggestions {
  z-index: 1;
  margin-top: -1px;
  min-width: 201px;
  height: 40px;
  /* overflow-y: scroll; */
  position: absolute;
  left: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 4px 7px 8px 5px rgba(0, 0, 0, 0.14);
  box-shadow: 4px 7px 8px 5px rgba(0, 0, 0, 0.14);
  border: 1px solid #333;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  bottom: -41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  color: red;
}

.container .options form .kilometers {
  max-width: 90px;
}

.container .options form .kilometers-block {
  display: table;
  position: relative;
}

.container .options form .kilometers-block .content {
  min-width: 90px;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .options form .kilometers-block .content h3 {
  margin: 0;
}

.container .options form .kilometers-block .summary {
  position: absolute;
  bottom: -45px;
  width: 250px;
  text-align: center;
}

.container .options form .kilometers-block .summary:hover {
  z-index: 6666;
}

.container .options form .add {
  position: relative;
  margin-left: 0.5rem;
  display: table;
  min-width: 100px;
  min-height: 60px;
  background: #333;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.container .options form .add:hover {
  background: #F72759;
}

.container .options form .add a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  min-height: 60px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  border: 2px solid transparent;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.container .table-content {
  width: 85%;
  margin: 0 auto;
  padding: 2rem 0;
}

.container .table-content table {
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.28);
  border-spacing: 1;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  margin: 0;
}

.container .table-content table:hover {
  z-index: 1111;
}

.container .table-content table tr th {
  position: relative;
  color: #36304a;
  font-size: 0 !important;
  min-width: 75px;
}

.container .table-content table tr th:after {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-family: 'Nunito', sans-serif;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 6px;
}

.container .table-content table tr th:nth-child(1):after {
  content: "Datum";
}

.container .table-content table tr th:nth-child(2):after {
  content: "Odkud";
}

.container .table-content table tr th:nth-child(3):after {
  content: "Město";
}

.container .table-content table tr th:nth-child(4):after {
  content: "Firma";
}

.container .table-content table tr th:nth-child(5):after {
  content: "Počet Km";
}

.container .table-content .cross {
  color: #ff0000;
  position: absolute;
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: -70px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.container .table-content .cross:hover:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.container .table-content .cross:hover:before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.container .table-content .cross:after, .container .table-content .cross:before {
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  position: absolute;
  left: 15px;
  content: ' ';
  height: 14px;
  width: 2px;
  background-color: #333;
}

.container .table-content .cross:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.container .table-content .cross:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.container .table-content .copy-line {
  position: absolute;
  background: url("copy.svg");
  background-repeat: no-repeat;
  background-size: cover;
  right: -70px;
  height: 45px;
  width: 45px;
  background-size: auto;
  cursor: pointer;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  right: -110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: contain;
  margin-top: 3px;
}

.container .table-content .distance {
  position: relative;
}

.container .table-content .distance #text {
  display: none;
}

.container .table-content .distance:after {
  content: "Km";
  position: absolute;
  top: 0;
  left: 60px;
  font-family: 'Nunito', sans-serif;
  height: 100%;
  width: 100%;
  font-size: 1rem;
  width: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .table-content .table-around {
  position: relative;
}

.container .table-content .table-around .sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container .table-content .table-around .sort button {
  background: #36304a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  width: 35px;
  height: 35px;
  border: none;
  outline: 0;
  cursor: pointer;
  border-radius: 0;
}

.container .table-content .table-around .sort button:first-child {
  border-top-left-radius: 2px;
}

.container .table-content .table-around .sort button:last-child {
  border-top-right-radius: 2px;
}

.container .table-content .table-around .sort button:hover {
  background: #F72759;
}

.container .table-content table * {
  position: relative;
}

.container .table-content table td,
.container .table-content table th {
  padding-left: 8px;
}

.container .table-content table thead tr {
  height: 60px;
  background: #36304a;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.container .table-content table tbody tr {
  height: 50px;
}

.container .table-content table tbody tr:last-child {
  border: 0;
}

.container .table-content table td,
.container .table-content table th {
  text-align: left;
}

.container .table-content table td.l,
.container .table-content table th.l {
  text-align: right;
}

.container .table-content table td.c,
.container .table-content table th.c {
  text-align: center;
}

.container .table-content table td.r,
.container .table-content table th.r {
  text-align: center;
}

.container .table-content .table100-head th {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  font-weight: unset;
}

.container .table-content tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

.container .table-content tbody tr {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #808080;
  line-height: 1.2;
  font-weight: unset;
}

.container .table-content tbody tr:hover {
  color: #555555;
  background-color: #f5f5f5;
}

.container .table-content tbody tr:last-of-type {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.container .table-content tbody tr:last-of-type:hover {
  color: #555555;
  background-color: #f5f5f5;
}

@media screen and (max-width: 992px) {
  .container .table-content table {
    display: block;
  }
  .container .table-content table > *,
  .container .table-content table tr,
  .container .table-content table td,
  .container .table-content table th {
    display: block;
  }
  .container .table-content table thead {
    display: none;
  }
  .container .table-content table tbody tr {
    height: auto;
    padding: 37px 0;
  }
  .container .table-content table tbody tr td {
    padding-left: 40% !important;
    margin-bottom: 24px;
  }
  .container .table-content table tbody tr td:last-child {
    margin-bottom: 0;
  }
  .container .table-content table tbody tr td:before {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #999999;
    line-height: 1.2;
    font-weight: unset;
    position: absolute;
    width: 40%;
    left: 30px;
    top: 0;
  }
  .container .table-content table tbody tr td:nth-child(1):before {
    content: "Date";
  }
  .container .table-content table tbody tr td:nth-child(2):before {
    content: "Order ID";
  }
  .container .table-content table tbody tr td:nth-child(3):before {
    content: "Name";
  }
  .container .table-content table tbody tr td:nth-child(4):before {
    content: "Price";
  }
  .container .table-content table tbody tr td:nth-child(5):before {
    content: "Quantity";
  }
  .container .table-content table tbody tr td:nth-child(6):before {
    content: "Total";
  }
  .container .table-content .column4,
  .container .table-content .column5,
  .container .table-content .column6 {
    text-align: left;
  }
  .container .table-content .column4,
  .container .table-content .column5,
  .container .table-content .column6,
  .container .table-content .column1,
  .container .table-content .column2,
  .container .table-content .column3 {
    width: 100%;
  }
  .container .table-content tbody tr {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .container .table-content .container-table100 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container .controllers {
  position: fixed;
  bottom: 0;
  z-index: 111;
}

.container .controllers .content input[type="file"] {
  visibility: hidden;
  position: absolute;
}

.container .controllers .content .import {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  min-width: 185px;
  max-width: 185px;
}

.container .controllers .content .import input {
  display: none;
}

.container .controllers .content .import a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container .controllers .content label,
.container .controllers .content a,
.container .controllers .content button {
  -webkit-animation: animationOn 1000ms linear both;
          animation: animationOn 1000ms linear both;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 185px;
  max-width: 185px;
  padding: 20px;
  border: 2px solid transparent;
  border-radius: 0;
  background: #333;
  font-family: monospace;
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.container .controllers .content label:hover,
.container .controllers .content a:hover,
.container .controllers .content button:hover {
  background: #F72759;
}

.message {
  position: fixed;
  bottom: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.message .content {
  color: #fff;
  border-radius: 5px;
  padding: 1rem;
  display: table;
  background: #212121;
  -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.28);
          box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.28);
}

.off {
  -webkit-animation: animationOff 800ms linear both;
          animation: animationOff 800ms linear both;
}

.onAnimation {
  -webkit-animation: animationOn 1000ms linear both;
          animation: animationOn 1000ms linear both;
}

.removed .content {
  background: #ffa5a5;
  color: #000;
  -webkit-box-shadow: 0px 3px 8px rgba(255, 0, 0, 0.28);
          box-shadow: 0px 3px 8px rgba(255, 0, 0, 0.28);
}

.alert .content {
  background: #ffa5a5;
  color: #000;
  -webkit-box-shadow: 0px 3px 8px rgba(255, 0, 0, 0.28);
          box-shadow: 0px 3px 8px rgba(255, 0, 0, 0.28);
}

.alert-import .content {
  background: #ffa5a5;
  color: #000;
  -webkit-box-shadow: 0px 3px 8px rgba(255, 0, 0, 0.28);
          box-shadow: 0px 3px 8px rgba(255, 0, 0, 0.28);
}

@-webkit-keyframes animationOn {
  0% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.514, 0, 0, 0, 0, 0.514, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.514, 0, 0, 0, 0, 0.514, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.879, 0, 0, 0, 0, 0.879, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.879, 0, 0, 0, 0, 0.879, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1.052, 0, 0, 0, 0, 1.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.052, 0, 0, 0, 0, 1.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1.093, 0, 0, 0, 0, 1.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.093, 0, 0, 0, 0, 1.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1.021, 0, 0, 0, 0, 1.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.021, 0, 0, 0, 0, 1.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(0.994, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.994, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes animationOn {
  0% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.514, 0, 0, 0, 0, 0.514, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.514, 0, 0, 0, 0, 0.514, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.879, 0, 0, 0, 0, 0.879, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.879, 0, 0, 0, 0, 0.879, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(1.052, 0, 0, 0, 0, 1.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.052, 0, 0, 0, 0, 1.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(1.093, 0, 0, 0, 0, 1.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.093, 0, 0, 0, 0, 1.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(1.021, 0, 0, 0, 0, 1.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.021, 0, 0, 0, 0, 1.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(0.994, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.994, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@-webkit-keyframes animationOff {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.486, 0, 0, 0, 0, 0.486, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.486, 0, 0, 0, 0, 0.486, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.121, 0, 0, 0, 0, 0.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.121, 0, 0, 0, 0, 0.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(-0.052, 0, 0, 0, 0, -0.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.052, 0, 0, 0, 0, -0.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(-0.093, 0, 0, 0, 0, -0.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.093, 0, 0, 0, 0, -0.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(-0.021, 0, 0, 0, 0, -0.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.021, 0, 0, 0, 0, -0.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(0.006, 0, 0, 0, 0, 0.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.006, 0, 0, 0, 0, 0.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}

@keyframes animationOff {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.3% {
    -webkit-transform: matrix3d(0.486, 0, 0, 0, 0, 0.486, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.486, 0, 0, 0, 0, 0.486, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.61% {
    -webkit-transform: matrix3d(0.121, 0, 0, 0, 0, 0.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.121, 0, 0, 0, 0, 0.121, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.91% {
    -webkit-transform: matrix3d(-0.052, 0, 0, 0, 0, -0.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.052, 0, 0, 0, 0, -0.052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  17.22% {
    -webkit-transform: matrix3d(-0.093, 0, 0, 0, 0, -0.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.093, 0, 0, 0, 0, -0.093, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  28.33% {
    -webkit-transform: matrix3d(-0.021, 0, 0, 0, 0, -0.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(-0.021, 0, 0, 0, 0, -0.021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.44% {
    -webkit-transform: matrix3d(0.006, 0, 0, 0, 0, 0.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.006, 0, 0, 0, 0, 0.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  61.66% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.98% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
/*# sourceMappingURL=style.css.map */