/* latin-ext */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url('fonts/lato/UyBMtLsHKBKXelqf4x7VRQ.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url('fonts/lato/1YwB1sO8YE1Lyjf12WNiUA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Lato', serif;
  margin: 0;
  padding: 0;
  font-size: 14px;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
}
html {
  box-sizing: border-box;
}
body {
  font-family: 'lato', sans-serif;
  background: #131216;
  overflow: hidden;
  position: relative;
  color: #000;
}
body .note {
  position: absolute;
  font-size: 2vmax;
  color: #fff;
  left: 0;
  right: 0;
  bottom: 26%;
  text-align: center;
  z-index: -1000;
}
@media (max-device-width: 414px) {
  body .note {
    bottom: 30%;
  }
}
@media (max-width: 1130px) {
  body .note {
    bottom: 25%;
  }
}
body .clock-wrapper {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}
body .clock-wrapper .clock {
  font-size: 14vw;
  position: relative;
  width: 40%;
  padding: 0 34px 0 0;
  margin: 0;
  transition: all 1s ease;
}
body .clock-wrapper .clock .arrow {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  transition: all 1s ease;
  /*z-index: 30;*/
}
body .clock-wrapper .clock .arrow.hours .hand {
  background-color: #8d45e5;
  width: 4%;
  margin-top: 0;
  height: 4%;
}
body .clock-wrapper .clock .arrow.minutes .hand {
  background-color: #4183e8;
  width: 8%;
  margin-top: 0;
  height: 8%;
}
body .clock-wrapper .clock .arrow.seconds .hand {
  width: 12px;
  margin-top: 13px;
  background-color: rgba(255, 255, 255, 0.1);
  height: 38%;
}
body .clock-wrapper .clock .arrow .hand {
  background: #fff;
  margin: 0 auto 0;
  border: 4px solid #322f34;
  -webkit-user-select: auto;
  /* Chrome all / Safari all */
  -moz-user-select: all;
  /* Firefox all */
  -ms-user-select: all;
  /* IE 10+ */
  user-select: all;
  /* Likely future */
}
body .clock-wrapper .clock .analog {
  /*z-index: 99999;*/
  display: flex;
  white-space: nowrap;
  /* Если фонт сайз слишком большой */
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  text-align: center;
  left: 0;
}
body .clock-wrapper .clock .analog div span.hours {
  color: #8d45e5;
}
body .clock-wrapper .clock .analog div span.minutes {
  color: #4183e8;
}
body .clock-wrapper .clock .analog div span.dot {
  color: #4183e8;
}
body .clock-wrapper .clock .analog div span.filter {
  color: #131216 !important;
}
body .clock-wrapper .clock:after {
  display: block;
  padding-bottom: 100%;
  width: 100%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  /*border: solid 16px rgba(255, 255, 255, .1);*/
  border: solid 16px #322f34;
  content: "";
}
@media (max-width: 904px) {
  body .clock-wrapper .clock {
    width: 70%;
    font-size: 20vw;
  }
}
body .clock-wrapper .block {
  width: 50%;
  font-weight: 600;
  font-size: 6vmax;
  text-align: center;
}
body .clock-wrapper .block .date {
  color: #8d45e5;
  font-size: 8vmax;
}
body .clock-wrapper .block .day {
  color: #4183e8;
}
body .clock-wrapper .block .temperature {
  color: #fff;
  font-size: 8vmax;
}
body .glitch {
  position: relative;
}
body .glitch.hours:after,
body .glitch.hours:before {
  color: #8d45e5;
  text-shadow: 1px 0 #8d45e5;
}
body .glitch.minutes:after,
body .glitch.minutes:before {
  color: #4183e8;
  text-shadow: 1px 0 #4183e8;
}
body .glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  background: #131216;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  animation: noise-anim 2s infinite cubic-bezier(0, 0, 0.2, 1) alternate-reverse;
}
body .glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  top: 0;
  background: #131216;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  animation: noise-anim-2 2s infinite cubic-bezier(0, 0, 0.2, 1) alternate-reverse;
}
@keyframes noise-anim {
  0% {
    -webkit-clip-path: polygon(0 35%, 100% 35%, 100% 8%, 0 8%);
    clip-path: polygon(0 35%, 100% 35%, 100% 8%, 0 8%);
  }
  5% {
    -webkit-clip-path: polygon(0 48%, 100% 48%, 100% 9%, 0 9%);
    clip-path: polygon(0 48%, 100% 48%, 100% 9%, 0 9%);
  }
  10% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 68%, 0 68%);
    clip-path: polygon(0 90%, 100% 90%, 100% 68%, 0 68%);
  }
  15% {
    -webkit-clip-path: polygon(0 11%, 100% 11%, 100% 72%, 0 72%);
    clip-path: polygon(0 11%, 100% 11%, 100% 72%, 0 72%);
  }
  20% {
    -webkit-clip-path: polygon(0 13%, 100% 13%, 100% 63%, 0 63%);
    clip-path: polygon(0 13%, 100% 13%, 100% 63%, 0 63%);
  }
  25% {
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 64%, 0 64%);
    clip-path: polygon(0 55%, 100% 55%, 100% 64%, 0 64%);
  }
  30% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 67%, 0 67%);
    clip-path: polygon(0 40%, 100% 40%, 100% 67%, 0 67%);
  }
  35% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 36%, 0 36%);
    clip-path: polygon(0 75%, 100% 75%, 100% 36%, 0 36%);
  }
  40% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 91%, 0 91%);
    clip-path: polygon(0 80%, 100% 80%, 100% 91%, 0 91%);
  }
  45% {
    -webkit-clip-path: polygon(0 29%, 100% 29%, 100% 43%, 0 43%);
    clip-path: polygon(0 29%, 100% 29%, 100% 43%, 0 43%);
  }
  50% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 0, 0 0);
    clip-path: polygon(0 40%, 100% 40%, 100% 0, 0 0);
  }
  55% {
    -webkit-clip-path: polygon(0 26%, 100% 26%, 100% 99%, 0 99%);
    clip-path: polygon(0 26%, 100% 26%, 100% 99%, 0 99%);
  }
  60% {
    -webkit-clip-path: polygon(0 8%, 100% 8%, 100% 87%, 0 87%);
    clip-path: polygon(0 8%, 100% 8%, 100% 87%, 0 87%);
  }
  65% {
    -webkit-clip-path: polygon(0 66%, 100% 66%, 100% 33%, 0 33%);
    clip-path: polygon(0 66%, 100% 66%, 100% 33%, 0 33%);
  }
  70% {
    -webkit-clip-path: polygon(0 73%, 100% 73%, 100% 81%, 0 81%);
    clip-path: polygon(0 73%, 100% 73%, 100% 81%, 0 81%);
  }
  75% {
    -webkit-clip-path: polygon(0 51%, 100% 51%, 100% 34%, 0 34%);
    clip-path: polygon(0 51%, 100% 51%, 100% 34%, 0 34%);
  }
  80% {
    -webkit-clip-path: polygon(0 64%, 100% 64%, 100% 84%, 0 84%);
    clip-path: polygon(0 64%, 100% 64%, 100% 84%, 0 84%);
  }
  85% {
    -webkit-clip-path: polygon(0 31%, 100% 31%, 100% 84%, 0 84%);
    clip-path: polygon(0 31%, 100% 31%, 100% 84%, 0 84%);
  }
  90% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 60%, 0 60%);
    clip-path: polygon(0 20%, 100% 20%, 100% 60%, 0 60%);
  }
  95% {
    -webkit-clip-path: polygon(0 97%, 100% 97%, 100% 82%, 0 82%);
    clip-path: polygon(0 97%, 100% 97%, 100% 82%, 0 82%);
  }
  100% {
    -webkit-clip-path: polygon(0 71%, 100% 71%, 100% 9%, 0 9%);
    clip-path: polygon(0 71%, 100% 71%, 100% 9%, 0 9%);
  }
}
@keyframes noise-anim-2 {
  0% {
    -webkit-clip-path: polygon(0 39%, 100% 39%, 100% 33%, 0 33%);
    clip-path: polygon(0 39%, 100% 39%, 100% 33%, 0 33%);
  }
  5% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 4%, 0 4%);
    clip-path: polygon(0 90%, 100% 90%, 100% 4%, 0 4%);
  }
  10% {
    -webkit-clip-path: polygon(0 96%, 100% 96%, 100% 75%, 0 75%);
    clip-path: polygon(0 96%, 100% 96%, 100% 75%, 0 75%);
  }
  15% {
    -webkit-clip-path: polygon(0 23%, 100% 23%, 100% 4%, 0 4%);
    clip-path: polygon(0 23%, 100% 23%, 100% 4%, 0 4%);
  }
  20% {
    -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 21%, 0 21%);
    clip-path: polygon(0 63%, 100% 63%, 100% 21%, 0 21%);
  }
  25% {
    -webkit-clip-path: polygon(0 57%, 100% 57%, 100% 98%, 0 98%);
    clip-path: polygon(0 57%, 100% 57%, 100% 98%, 0 98%);
  }
  30% {
    -webkit-clip-path: polygon(0 6%, 100% 6%, 100% 52%, 0 52%);
    clip-path: polygon(0 6%, 100% 6%, 100% 52%, 0 52%);
  }
  35% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 51%, 0 51%);
    clip-path: polygon(0 90%, 100% 90%, 100% 51%, 0 51%);
  }
  40% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 57%, 0 57%);
    clip-path: polygon(0 10%, 100% 10%, 100% 57%, 0 57%);
  }
  45% {
    -webkit-clip-path: polygon(0 57%, 100% 57%, 100% 26%, 0 26%);
    clip-path: polygon(0 57%, 100% 57%, 100% 26%, 0 26%);
  }
  50% {
    -webkit-clip-path: polygon(0 21%, 100% 21%, 100% 20%, 0 20%);
    clip-path: polygon(0 21%, 100% 21%, 100% 20%, 0 20%);
  }
  55% {
    -webkit-clip-path: polygon(0 4%, 100% 4%, 100% 78%, 0 78%);
    clip-path: polygon(0 4%, 100% 4%, 100% 78%, 0 78%);
  }
  60% {
    -webkit-clip-path: polygon(0 9%, 100% 9%, 100% 5%, 0 5%);
    clip-path: polygon(0 9%, 100% 9%, 100% 5%, 0 5%);
  }
  65% {
    -webkit-clip-path: polygon(0 8%, 100% 8%, 100% 77%, 0 77%);
    clip-path: polygon(0 8%, 100% 8%, 100% 77%, 0 77%);
  }
  70% {
    -webkit-clip-path: polygon(0 4%, 100% 4%, 100% 76%, 0 76%);
    clip-path: polygon(0 4%, 100% 4%, 100% 76%, 0 76%);
  }
  75% {
    -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 2%, 0 2%);
    clip-path: polygon(0 63%, 100% 63%, 100% 2%, 0 2%);
  }
  80% {
    -webkit-clip-path: polygon(0 97%, 100% 97%, 100% 88%, 0 88%);
    clip-path: polygon(0 97%, 100% 97%, 100% 88%, 0 88%);
  }
  85% {
    -webkit-clip-path: polygon(0 63%, 100% 63%, 100% 84%, 0 84%);
    clip-path: polygon(0 63%, 100% 63%, 100% 84%, 0 84%);
  }
  90% {
    -webkit-clip-path: polygon(0 8%, 100% 8%, 100% 72%, 0 72%);
    clip-path: polygon(0 8%, 100% 8%, 100% 72%, 0 72%);
  }
  95% {
    -webkit-clip-path: polygon(0 43%, 100% 43%, 100% 74%, 0 74%);
    clip-path: polygon(0 43%, 100% 43%, 100% 74%, 0 74%);
  }
  100% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 92%, 0 92%);
    clip-path: polygon(0 20%, 100% 20%, 100% 92%, 0 92%);
  }
}
/*# sourceMappingURL=base-dark.css.map */