html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.ngdialog, .ngdialog-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

@-webkit-keyframes ngdialog-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes ngdialog-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes ngdialog-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes ngdialog-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.ngdialog {
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000; }

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

.ngdialog.ngdialog-disabled-animation, .ngdialog.ngdialog-disabled-animation .ngdialog-content, .ngdialog.ngdialog-disabled-animation .ngdialog-overlay {
  -webkit-animation: none !important;
  animation: none !important; }

.ngdialog-overlay {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein .5s;
  animation: ngdialog-fadein .5s; }

.ngdialog-no-overlay {
  pointer-events: none; }

.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout .5s;
  animation: ngdialog-fadeout .5s; }

.ngdialog-content {
  background: #fff;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein .5s;
  animation: ngdialog-fadein .5s;
  pointer-events: all; }

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout .5s;
  animation: ngdialog-fadeout .5s; }

.ngdialog-close:before {
  font-family: Helvetica,Arial,sans-serif;
  content: '\00D7';
  cursor: pointer; }

body.ngdialog-open, html.ngdialog-open {
  overflow: hidden; }

@-webkit-keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@-webkit-keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
.ngdialog.ngdialog-theme-default {
  padding-bottom: 160px;
  padding-top: 160px; }

.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
  -webkit-animation: ngdialog-flyout .5s;
  animation: ngdialog-flyout .5s; }

.ngdialog.ngdialog-theme-default .ngdialog-content {
  -webkit-animation: ngdialog-flyin .5s;
  animation: ngdialog-flyin .5s;
  background: #f0f0f0;
  border-radius: 5px;
  color: #444;
  font-family: Helvetica,sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 450px; }

.ngdialog.ngdialog-theme-default .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0; }

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
  background: 0 0;
  border-radius: 3px;
  color: #bbb;
  content: '\00D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px; }

.ngdialog.ngdialog-theme-default .ngdialog-close:active:before, .ngdialog.ngdialog-theme-default .ngdialog-close:hover:before {
  color: #777; }

.ngdialog.ngdialog-theme-default .ngdialog-message {
  margin-bottom: .5em; }

.ngdialog.ngdialog-theme-default .ngdialog-input {
  margin-bottom: 1em; }

.ngdialog.ngdialog-theme-default .ngdialog-input input[type=text], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=email], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=url], .ngdialog.ngdialog-theme-default .ngdialog-input textarea {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%; }

.ngdialog.ngdialog-theme-default .ngdialog-input input[type=text]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=email]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=url]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: 0; }

.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
  content: '';
  display: table;
  clear: both; }

.ngdialog.ngdialog-theme-default .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: .8em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 0 0 .5em;
  padding: .75em 2em;
  text-transform: uppercase; }

.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
  -webkit-animation: ngdialog-pulse 1.1s infinite;
  animation: ngdialog-pulse 1.1s infinite;
  outline: 0; }

@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none; } }
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff; }

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777; }

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

a:focus {
  outline: none; }

render {
  display: block; }

.as-sortable-item, .as-sortable-placeholder {
  min-height: 20px; }

.as-sortable-placeholder {
  border: 1px dashed #fff;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.1); }

.as-sortable-drag {
  opacity: .8; }

@font-face {
  font-family: 'icomoon';
  src: url("fonts/iconmoon/icomoon.ttf?uk57si");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"]:before, [class*=" icon-"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-reload:before {
  content: "\e910"; }

.icon-ad:before {
  content: "\e90e"; }

.icon-customize:before {
  content: "\e90f"; }

.icon-dashboard:before {
  content: "\e90d"; }

.icon-restore:before {
  content: "\e90c"; }

.icon-hourglass_empty:before {
  content: "\e90b"; }

.icon-alarm:before {
  content: "\e908"; }

.icon-access_time:before {
  content: "\e909"; }

.icon-timer:before {
  content: "\e90a"; }

.icon-star:before {
  content: "\e907"; }

.icon-menu:before {
  content: "\e906"; }

.icon-close:before {
  content: "\e905"; }

.icon-search:before {
  content: "\e904"; }

.icon-settings:before {
  content: "\e903"; }

.icon-apps:before {
  content: "\e902"; }

.icon-notifications:before {
  content: "\e901"; }

.icon-location_on:before {
  content: "\e900"; }

@font-face {
  font-family: 'icons';
  src: url("fonts/iconmoon/icons.ttf?1yn1pw");
  font-weight: normal;
  font-style: normal; }
[class^="icons-"], [class*=" icons-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icons-news_24px:before {
  content: "\e900"; }

.icons-notes_24px:before {
  content: "\e901"; }

.icons-star_24px:before {
  content: "\e902"; }

.icons-time_24px:before {
  content: "\e903"; }

.icons-weather_24px:before {
  content: "\e904"; }

.icons-youtube_24px:before {
  content: "\e905"; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html, body {
  min-height: 100%; }

body {
  overflow: hidden;
  min-width: 800px; }
  body.second {
    overflow: auto; }
  body.with-bookmarks {
    padding-top: 41px; }
  body.theme_mac {
    font-family: Arial, sans-serif; }
  body.theme_windows {
    font-family: Arial, sans-serif; }

input, button {
  border: none;
  padding: 0px;
  outline: none;
  border-radius: 0px;
  font-family: 'San Francisco', Arial, sans-serif; }

.clearfix {
  zoom: 1;
  display: block; }

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.blink {
  animation: blink-animation 1.5s steps(5, start) infinite;
  -webkit-animation: blink-animation 1.5s steps(5, start) infinite; }

@keyframes blink-animation {
  to {
    visibility: hidden; } }
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden; } }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button,
input::-webkit-clear-button {
  -webkit-appearance: none;
  margin: 0; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

header, section {
  padding: 0px 20px; }

.main {
  height: calc(100vh - 120px);
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 60px;
  z-index: 50;
  min-height: 390px; }
  .main.second {
    height: auto; }
  .main.contacts {
    min-height: 600px; }

.ngdialog-content *::-webkit-scrollbar {
  width: 6px; }

.ngdialog-content *::-webkit-scrollbar-thumb {
  background: #ccc; }

.green-link {
  color: #06b25c;
  text-decoration: none; }
  .green-link:hover {
    color: #4285f4; }

.bookmarks-bar {
  height: 41px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 8px 14px 0px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998; }
  .bookmarks-bar .bookmarks-list {
    white-space: nowrap; }
    .bookmarks-bar .bookmarks-list:after {
      content: "";
      display: block;
      width: 40px;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      background: -webkit-linear-gradient(left, rgba(153, 153, 153, 0) 0%, white 60%, white 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right, rgba(153, 153, 153, 0) 0%, white 60%, white 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
    .bookmarks-bar .bookmarks-list::-webkit-scrollbar {
      display: none; }
  .bookmarks-bar .bookmarks-list > li {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    white-space: nowrap; }
    .bookmarks-bar .bookmarks-list > li > span {
      max-width: 160px; }
      .bookmarks-bar .bookmarks-list > li > span:after {
        left: 130px;
        right: auto; }
    .bookmarks-bar .bookmarks-list > li span:after {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      top: 0px;
      bottom: 0px;
      height: 100%;
      background: -webkit-linear-gradient(left, rgba(153, 153, 153, 0) 0%, white 80%, white 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right, rgba(153, 153, 153, 0) 0%, white 80%, white 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      width: 30px; }
    .bookmarks-bar .bookmarks-list > li span:hover:after {
      border-radius: 4px 4px 0px 0px;
      background: -webkit-linear-gradient(left, rgba(153, 153, 153, 0) 0%, #e9e9e9 80%, #e9e9e9 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(to right, rgba(153, 153, 153, 0) 0%, #e9e9e9 80%, #e9e9e9 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
    .bookmarks-bar .bookmarks-list > li .empty {
      color: #aaa;
      text-align: center;
      height: 20px;
      line-height: 20px; }
    .bookmarks-bar .bookmarks-list > li ul {
      position: absolute;
      left: 100%;
      display: none;
      background: #fff;
      -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35);
      -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35);
      box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35); }
    .bookmarks-bar .bookmarks-list > li > ul {
      left: 0px;
      top: 100%;
      margin-top: 12px;
      width: 210px;
      padding: 6px; }
      .bookmarks-bar .bookmarks-list > li > ul:before {
        content: "";
        position: absolute;
        top: -4px;
        left: 20px;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 4px 4px 4px;
        border-color: transparent transparent #ffffff transparent; }
      .bookmarks-bar .bookmarks-list > li > ul > li {
        display: block;
        position: relative; }
        .bookmarks-bar .bookmarks-list > li > ul > li:not(:last-child) {
          margin-bottom: 8px; }
      .bookmarks-bar .bookmarks-list > li > ul ul {
        top: -6px;
        left: 208px;
        padding: 6px;
        width: 210px;
        z-index: 1; }
        .bookmarks-bar .bookmarks-list > li > ul ul li {
          position: relative; }
    .bookmarks-bar .bookmarks-list > li img {
      position: relative;
      top: 3px; }
    .bookmarks-bar .bookmarks-list > li span {
      cursor: pointer;
      display: block;
      padding: 0px 5px 0px 26px;
      height: 26px;
      line-height: 26px;
      overflow: hidden;
      font-size: 13px;
      position: relative;
      white-space: nowrap; }
      .bookmarks-bar .bookmarks-list > li span img {
        position: absolute;
        left: 5px;
        top: 5px; }
      .bookmarks-bar .bookmarks-list > li span:hover {
        background: #e9e9e9;
        border-radius: 4px; }

.ngdialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center; }
  .ngdialog.ratePopup .ngdialog-content {
    position: relative;
    padding-top: 165px;
    overflow: hidden; }
    .ngdialog.ratePopup .ngdialog-content .top {
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      width: 100%;
      height: 140px;
      background: #3B99FC;
      display: flex;
      align-items: center;
      justify-content: center; }
      .ngdialog.ratePopup .ngdialog-content .top .stars-holder i {
        display: inline-block;
        vertical-align: top;
        width: 40px;
        height: 38px;
        background-image: url("../images/2x/star-off@2x.png");
        background-size: cover;
        margin: 0px 5px; }
        .ngdialog.ratePopup .ngdialog-content .top .stars-holder i.active {
          background-image: url("../images/2x/star-on@2x.png"); }
  .ngdialog.text-dialog .ngdialog-content {
    width: 550px;
    padding-right: 5px; }
    .ngdialog.text-dialog .ngdialog-content .popup-footer {
      padding-right: 25px; }
  .ngdialog .widgets-list {
    font-size: 0;
    text-align: center; }
    .ngdialog .widgets-list li {
      display: inline-block;
      margin-right: 36px;
      margin-top: 22px; }
      .ngdialog .widgets-list li:nth-child(3n) {
        margin-right: 0px; }
    .ngdialog .widgets-list label {
      display: block;
      width: 90px;
      height: 90px;
      border: 1px solid #d7d7d7;
      border-radius: 2px;
      cursor: pointer;
      background: #f1f1f1; }
      .ngdialog .widgets-list label:before {
        color: #8e8e93;
        font-size: 56px;
        line-height: 90px; }
    .ngdialog .widgets-list input {
      display: none; }
      .ngdialog .widgets-list input:checked + label {
        background: #5390f4;
        border-color: transparent; }
        .ngdialog .widgets-list input:checked + label:before {
          color: #fff; }
    .ngdialog .widgets-list span {
      color: #44444d;
      display: block;
      margin-top: 8px;
      font-size: 14px; }
  .ngdialog .ngdialog-content {
    background: #fff;
    width: 450px;
    padding: 25px 30px;
    border-radius: 4px;
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3); }
    .ngdialog .ngdialog-content h2 {
      font-size: 24px;
      display: block; }
    .ngdialog .ngdialog-content p {
      font-size: 14px;
      line-height: 1.4;
      color: #7B7C82;
      margin-top: 18px; }
    .ngdialog .ngdialog-content .radio-row, .ngdialog .ngdialog-content .input-row {
      margin-top: 22px; }
      .ngdialog .ngdialog-content .radio-row > label, .ngdialog .ngdialog-content .input-row > label {
        display: block;
        font-size: 14px;
        color: #000;
        margin-bottom: 14px; }
    .ngdialog .ngdialog-content .input-row {
      margin-top: 22px; }
      .ngdialog .ngdialog-content .input-row input {
        font-size: 16px;
        color: #000;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        padding-bottom: 14px;
        border-bottom: 1px solid #c9c9d0; }
        .ngdialog .ngdialog-content .input-row input:focus {
          border-color: #4688f1; }
      .ngdialog .ngdialog-content .input-row.location {
        position: relative; }
        .ngdialog .ngdialog-content .input-row.location button {
          display: none; }
    .ngdialog .ngdialog-content .radio-row .radios {
      margin-top: 10px; }
    .ngdialog .ngdialog-content .text-holder {
      max-height: 300px;
      overflow-y: auto;
      padding-right: 35px;
      margin-top: 25px;
      text-align: justify; }
      .ngdialog .ngdialog-content .text-holder p {
        margin-top: 15px; }
        .ngdialog .ngdialog-content .text-holder p:first-child {
          margin-top: 0px; }
      .ngdialog .ngdialog-content .text-holder h3:not(:first-child) {
        margin-top: 35px; }
      .ngdialog .ngdialog-content .text-holder a {
        color: #00ACE5;
        text-decoration: none; }
        .ngdialog .ngdialog-content .text-holder a:hover {
          opacity: 0.8; }
    .ngdialog .ngdialog-content .colors-list {
      font-size: 0px;
      margin-top: 14px;
      margin-bottom: 10px; }
      .ngdialog .ngdialog-content .colors-list li {
        display: inline-block;
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        position: relative;
        cursor: pointer; }
        .ngdialog .ngdialog-content .colors-list li:hover:before, .ngdialog .ngdialog-content .colors-list li.active:before {
          content: "";
          display: block;
          position: absolute;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%;
          background-color: rgba(255, 255, 255, 0.2); }
        .ngdialog .ngdialog-content .colors-list li.active:before {
          background-image: url("../images/2x/active@2x.png");
          background-size: cover;
          background-color: transparent; }
        .ngdialog .ngdialog-content .colors-list li:first-child {
          border: 2px solid #dbdbdb; }
          .ngdialog .ngdialog-content .colors-list li:first-child.active:before {
            background-image: url("../images/2x/active-grey@2x.png"); }
        .ngdialog .ngdialog-content .colors-list li:not(:nth-child(8n)) {
          margin-right: 10px; }
    .ngdialog .ngdialog-content .popup-footer {
      text-align: right;
      margin-top: 40px; }
      .ngdialog .ngdialog-content .popup-footer .btn {
        text-transform: uppercase;
        font-size: 14px;
        color: #010101;
        cursor: pointer;
        margin-left: 25px; }
        .ngdialog .ngdialog-content .popup-footer .btn:hover {
          color: #00ACE5; }
        .ngdialog .ngdialog-content .popup-footer .btn.blue {
          color: #3B99FC; }
          .ngdialog .ngdialog-content .popup-footer .btn.blue:hover {
            color: #010101; }

.suggestions {
  position: absolute;
  top: 100%;
  margin-top: 5px;
  padding: 7px 0;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 5;
  background: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3); }
  .suggestions li {
    height: 34px;
    line-height: 34px;
    position: relative;
    padding: 0 15px;
    margin: 3px 0;
    display: block;
    width: 100%;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer; }
    .suggestions li em {
      font-weight: bold; }
    .suggestions li:hover, .suggestions li.active {
      background: #3B99FC;
      color: #fff; }
  .suggestions .enter {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: -38px;
    cursor: default; }
    .suggestions .enter:hover {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.3); }
  .suggestions .nothing {
    color: #999;
    cursor: default; }
    .suggestions .nothing:hover {
      background-color: transparent;
      color: #999; }

header {
  height: 60px;
  padding-top: 20px;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 100;
  position: absolute;
  width: 100%; }
  header .pull-right {
    font-size: 0px; }
    header .pull-right > * {
      display: inline-block;
      vertical-align: middle; }
  header nav a {
    color: #323232;
    text-decoration: none;
    font-size: 16px;
    margin-right: 30px; }
    header nav a:hover {
      color: #48ACFD; }
  header .item {
    margin-right: 30px;
    position: relative; }
    header .item .dropdown {
      display: none; }
      header .item .dropdown.active {
        display: block; }
    header .item > i:before {
      color: #8e8e93;
      font-size: 22px;
      cursor: pointer; }
    header .item:last-child {
      margin-right: 0px; }
    header .item > i:hover:before {
      color: #606060; }
    header .item .icon-notifications {
      position: relative; }
      header .item .icon-notifications span {
        display: block;
        cursor: pointer;
        position: absolute;
        font-size: 12px;
        color: #fff;
        background: #ED4148;
        padding: 0px 6px;
        height: 16px;
        line-height: 16px;
        border-radius: 2px;
        top: -26px;
        right: -8px; }

.dropdown {
  background: #fff;
  position: absolute;
  right: -10px;
  top: 40px;
  z-index: 100;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35); }
  .dropdown:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -5px; }
  .dropdown.settings {
    width: 240px; }
    .dropdown.settings:before {
      right: 16px; }
    .dropdown.settings ul {
      padding: 15px 20px 20px 20px;
      color: #525252; }
      .dropdown.settings ul li {
        font-size: 14px;
        cursor: pointer;
        transition: all .3s; }
        .dropdown.settings ul li:not(:last-child) {
          margin-bottom: 15px; }
        .dropdown.settings ul li:hover {
          color: #3B99FC; }
        .dropdown.settings ul li a {
          color: #525252;
          text-decoration: none; }
          .dropdown.settings ul li a:hover {
            color: #3B99FC; }
        .dropdown.settings ul li.checkbox-holder {
          padding-left: 0px !important; }
          .dropdown.settings ul li.checkbox-holder label {
            font-size: 18px;
            padding-left: 32px; }
            .dropdown.settings ul li.checkbox-holder label:before {
              left: 2px; }
      .dropdown.settings ul.top {
        border-bottom: 1px solid #d8d8d8;
        padding-top: 20px; }
        .dropdown.settings ul.top li {
          font-size: 18px;
          position: relative; }
          .dropdown.settings ul.top li:hover:before {
            color: #606060; }
          .dropdown.settings ul.top li:before {
            position: absolute;
            left: 0px;
            color: #8e8e93;
            font-size: 24px;
            line-height: 18px; }
          .dropdown.settings ul.top li:not(:last-child) {
            margin-bottom: 26px; }
  .dropdown .homepage-settings {
    border-bottom: 1px solid #D8D8D8;
    padding: 20px; }
    .dropdown .homepage-settings__title {
      font-size: 14px;
      line-height: 14px;
      font-weight: bold;
      margin-bottom: 15px; }
    .dropdown .homepage-settings .checkbox-holder,
    .dropdown .homepage-settings .radio-holder {
      display: block;
      margin-left: 0 !important;
      margin-bottom: 15px; }
      .dropdown .homepage-settings .checkbox-holder:last-child,
      .dropdown .homepage-settings .radio-holder:last-child {
        margin-bottom: 0; }
    .dropdown .homepage-settings .checkbox-holder label {
      font-size: 14px;
      color: #696974;
      padding-left: 24px;
      position: relative;
      cursor: pointer; }
      .dropdown .homepage-settings .checkbox-holder label:before {
        width: 15px;
        height: 15px;
        margin-top: -8px;
        left: 0; }
  .dropdown.apps {
    width: 330px;
    padding: 10px 24px;
    right: -22px; }
    .dropdown.apps:before {
      right: 28px; }
    .dropdown.apps .items {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between; }
    .dropdown.apps a {
      width: 30%;
      color: inherit;
      padding: 8px 0;
      font-size: 13px;
      text-align: center;
      text-decoration: none;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      border: 1px solid transparent;
      margin-bottom: 10px;
      transition: all .3s; }
      .dropdown.apps a:nth-child(10), .dropdown.apps a:nth-child(11), .dropdown.apps a:nth-child(12) {
        margin-bottom: 0px; }
      .dropdown.apps a:hover {
        border-color: #e5e5e5; }
      .dropdown.apps a img {
        height: 64px;
        display: inline-block; }
      .dropdown.apps a span {
        display: block; }

.links {
  width: 100%;
  margin-top: 50px;
  text-align: center; }
  .links a {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 4px;
    margin: 10px;
    position: relative;
    text-align: center;
    padding-top: 8px;
    padding-left: 8px;
    transition: all .3s; }
    .links a:hover {
      box-shadow: 0 2px 20px 0 rgba(98, 156, 255, 0.8), 0 2px 8px 0 #669EFF; }
    .links a img {
      display: block;
      height: 64px; }
    .links a.new {
      padding-top: 18px;
      padding-left: 18px; }
      .links a.new img {
        height: 42px; }

.banner728x90 {
  width: 728px;
  height: 90px;
  background: url("../images/banner.jpg");
  margin: 0px auto 20px; }

.search-holder {
  width: 100%;
  max-width: 600px;
  margin: 0 auto; }
  .search-holder .search-form {
    position: relative; }
    .search-holder .search-form input[type="text"] {
      width: 100%;
      height: 50px;
      padding: 0px 15px;
      font-size: 16px;
      color: #000;
      border-radius: 4px; }
      .search-holder .search-form input[type="text"]:focus {
        border-color: #fff !important;
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3); }
  .search-holder .search-small-text {
    font-size: 11px;
    color: #c9c9d0;
    margin-top: 6px; }

.widgets-holder {
  display: flex;
  justify-content: center; }
  .widgets-holder > .column {
    width: 390px; }
    .widgets-holder > .column:not(:last-child) {
      margin-right: 15px; }

.widget {
  /* start weather widget */
  /* end weather widget */ }
  .widget.weather-widget {
    position: absolute;
    left: 0;
    bottom: -185px;
    width: 100%;
    color: #323232;
    z-index: 100;
    background-color: #fff;
    padding-right: 30px;
    transition: all 0.3s;
    box-sizing: border-box; }
    .widget.weather-widget.active {
      bottom: -60px; }
    .widget.weather-widget .geo {
      display: block;
      position: absolute;
      left: 0;
      top: -28px;
      background-color: rgba(255, 255, 255, 0.4);
      height: 28px;
      line-height: 28px;
      color: #fff;
      font-size: 15px;
      padding: 0 15px;
      border-radius: 0 6px 0 0; }
      .widget.weather-widget .geo:before {
        display: inline-block;
        content: '';
        width: 10px;
        height: 14px;
        background-image: url("../images/2x/current-location@2x.png");
        background-size: 10px 14px;
        position: relative;
        top: 1px;
        margin-right: 5px; }
      .widget.weather-widget .geo .settings {
        display: inline-block;
        background-image: url("../images/2x/icon-settings@2x.png");
        width: 15px;
        height: 14px;
        background-size: 15px 14px;
        cursor: pointer;
        position: absolute;
        right: -25px;
        top: 6px;
        opacity: 0.6;
        transition: all 0.3s; }
        .widget.weather-widget .geo .settings:hover {
          opacity: 1; }
    .widget.weather-widget .widget-body {
      font-size: 12px; }
    .widget.weather-widget .wi {
      width: 48px;
      height: 48px;
      background-size: cover;
      display: block;
      margin: 0px auto;
      float: left; }
    .widget.weather-widget b {
      font-weight: bold; }
    .widget.weather-widget .main-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px 10px; }
      .widget.weather-widget .main-info .temp-holder {
        position: relative;
        top: -4px; }
      .widget.weather-widget .main-info .temp {
        font-size: 32px;
        font-weight: 400;
        display: inline-block;
        margin-left: 10px;
        margin-top: 7px;
        font-weight: bold; }
      .widget.weather-widget .main-info .units {
        vertical-align: top;
        display: inline-block;
        color: #323232;
        font-size: 32px;
        font-weight: 400; }
        .widget.weather-widget .main-info .units span {
          display: none;
          margin-top: 7px; }
          .widget.weather-widget .main-info .units span.active {
            display: block; }
      .widget.weather-widget .main-info .wind-icon {
        display: inline-block;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        margin-right: 6px;
        background-image: url("../images/2x/wind_direction@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .humidity-icon {
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        height: 20px;
        margin-right: 9px;
        background-image: url("../images/2x/humidity@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .sunrise-icon {
        display: inline-block;
        vertical-align: middle;
        width: 26px;
        height: 21px;
        margin-right: 9px;
        background-image: url("../images/2x/sunrise@2x.png");
        background-size: cover;
        margin-bottom: 5px; }
      .widget.weather-widget .main-info .sunset-icon {
        display: inline-block;
        vertical-align: middle;
        width: 25px;
        height: 21px;
        margin-right: 9px;
        margin-bottom: 5px;
        background-image: url("../images/2x/sunset@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .pressure-icon {
        display: inline-block;
        vertical-align: middle;
        width: 22px;
        height: 20px;
        margin-right: 9px;
        background-image: url("../images/2x/pressure@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .weather-item {
        color: #323232;
        vertical-align: middle;
        font-size: 14px; }
        .widget.weather-widget .main-info .weather-item.value {
          color: #323232; }
        .widget.weather-widget .main-info .weather-item.hum:after {
          content: "%"; }

.button {
  width: 80px;
  height: 34px;
  line-height: 34px;
  background: #4285f4;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px; }
  .button:hover {
    opacity: 0.8; }

.checkbox-holder input {
  display: none; }
.checkbox-holder input:checked + label:before {
  background-image: url("../images/2x/checkbox-square-on@2x.png"); }
.checkbox-holder label {
  font-size: 16px;
  color: #44444d;
  padding-left: 36px;
  position: relative;
  cursor: pointer; }
  .checkbox-holder label:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../images/2x/checkbox-square-off@2x.png");
    background-size: cover;
    position: absolute;
    left: 7px;
    top: 50%;
    margin-top: -9px; }

.radio-holder {
  margin-left: 26px;
  display: inline-block; }
  .radio-holder:first-child {
    margin-left: 15px; }
  .radio-holder input {
    display: none; }
  .radio-holder input:checked + label:before {
    background-image: url("../images/2x/radio-on@2x.png"); }
  .radio-holder label {
    font-size: 14px;
    color: #696974;
    padding-left: 24px;
    position: relative;
    cursor: pointer; }
    .radio-holder label:before {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background-image: url("../images/2x/radio-off@2x.png");
      background-size: cover;
      position: absolute;
      left: 0px;
      top: 50%;
      margin-top: -8px; }

.text-container {
  background-color: #fff;
  max-width: 700px;
  border-radius: 8px;
  margin: 40px auto;
  padding: 40px;
  width: 100%; }
  .text-container h2 {
    font-size: 36px;
    margin-bottom: 20px; }
  .text-container h3 {
    font-size: 24px; }
  .text-container p {
    margin-top: 15px; }
    .text-container p:first-child {
      margin-top: 0px; }
  .text-container h3:not(:first-child) {
    margin-top: 35px; }
  .text-container a {
    color: #00ACE5;
    text-decoration: none; }
    .text-container a:hover {
      opacity: 0.8; }

.form__footer {
  margin-top: 27px; }
.form__field {
  margin: 20px 0; }
.form__alert {
  float: left;
  font-size: 14px;
  color: #FF0A05;
  height: 44px;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -ms-flex-pack: center;
  flex-direction: column;
  -ms-flex-direction: column; }
.form__control {
  float: right; }
  .form__control .button[disabled] {
    cursor: not-allowed;
    opacity: .8; }

.input {
  width: 100%;
  height: 44px;
  line-height: 44px;
  border: 1px solid #C5C5C5;
  padding: 0 10px;
  outline: none;
  border-radius: 2px;
  font-size: 15px; }
  .input:focus {
    border-color: #217CE3; }
  .input.error {
    border-color: #FF0A05; }

.alert_success {
  color: #63B30C; }

.textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #C5C5C5;
  outline: none;
  border-radius: 2px;
  font-size: 15px;
  height: 100px; }
  .textarea:focus {
    border-color: #217CE3; }
  .textarea.error {
    border-color: #FF0A05; }

/* LOADER */
.spinner {
  position: absolute;
  top: 28px;
  left: 26px;
  z-index: 1;
  height: 30px;
  width: 30px; }

[class^="ball-"] {
  position: absolute;
  display: block;
  left: 24px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  transition: all 0.5s;
  animation: circleRotate 4s both infinite;
  transform-origin: 0 100% 0; }

@keyframes circleRotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(1440deg); } }
.ball-1 {
  z-index: -1;
  background-color: #2196F3;
  animation-timing-function: cubic-bezier(0.5, 0.3, 0.9, 0.9); }

.ball-2 {
  z-index: -2;
  background-color: #03A9F4;
  animation-timing-function: cubic-bezier(0.5, 0.6, 0.9, 0.9); }

.ball-3 {
  z-index: -3;
  background-color: #00BCD4;
  animation-timing-function: cubic-bezier(0.5, 0.9, 0.9, 0.9); }

.ball-4 {
  z-index: -4;
  background-color: #009688;
  animation-timing-function: cubic-bezier(0.5, 1.2, 0.9, 0.9); }

.ball-5 {
  z-index: -5;
  background-color: #4CAF50;
  animation-timing-function: cubic-bezier(0.5, 1.5, 0.9, 0.9); }

.ball-6 {
  z-index: -6;
  background-color: #8BC34A;
  animation-timing-function: cubic-bezier(0.5, 1.8, 0.9, 0.9); }

.ball-7 {
  z-index: -7;
  background-color: #CDDC39;
  animation-timing-function: cubic-bezier(0.5, 2.1, 0.9, 0.9); }

.ball-8 {
  z-index: -8;
  background-color: #FFEB3B;
  animation-timing-function: cubic-bezier(0.5, 2.4, 0.9, 0.9); }

.spinner-holder {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  margin: 0 auto; }

.loader-holder {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  visibility: visible;
  opacity: 1; }
  .loader-holder.fade-out {
    visibility: hidden;
    opacity: 0; }

body:not(.c0) header nav a, body:not(.c0) .main .search-holder .search-small-text {
  color: #fff; }
body:not(.c0) header .item i:before {
  transition: all .3s;
  color: #fff; }
body:not(.c0) header .item i:hover:before {
  color: #3B99FC; }
body:not(.c0) header .item i:active:before {
  color: rgba(0, 0, 0, 0.5); }
body:not(.c0) .main > .search-holder .search-form input[type="text"] {
  border-color: #fff;
  background-image: url("../images/searchbox_icon.png");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 28px; }
body:not(.c0) header nav a {
  transition: all .3s; }
  body:not(.c0) header nav a:hover {
    color: #3B99FC; }
  body:not(.c0) header nav a:active, body:not(.c0) header nav a.active {
    color: rgba(255, 255, 255, 0.5); }

ul[dnd-list],
ul[dnd-list] > li {
  position: relative; }

.dropzone ul[dnd-list] {
  min-height: 42px;
  margin: 0px;
  padding-left: 0px; }

.dndDragging {
  opacity: 0.7; }

.dndDraggingSource {
  display: none; }

.dndPlaceholder {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px dashed #fff;
  min-height: 200px;
  display: block;
  position: relative;
  margin-bottom: 14px; }

.trash .dndPlaceholder {
  display: none; }

.with-bookmarks .trash {
  top: 41px; }

.trash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(244, 44, 70, 0.9);
  z-index: 999;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 80px; }
  .trash.dndDragover {
    background: rgba(153, 3, 23, 0.9); }
  .trash span {
    position: relative;
    display: block; }
    .trash span:before {
      content: "";
      display: inline-block;
      vertical-align: middle;
      width: 14px;
      height: 19px;
      background-image: url("../images/2x/trash@2x.png");
      background-size: cover;
      position: relative;
      top: -2px;
      margin-right: 10px; }

#c {
  position: absolute;
  top: 0;
  left: 0; }

@keyframes move {
  100% {
    transform: translate3d(0, 0, -1000px); } }
.container {
  position: absolute;
  width: 100%;
  min-height: 100%;
  transform-style: preserve-3d;
  top: 50%;
  margin-top: -250px;
  left: 5%; }

@media (max-width: 1100px) {
  .weather-item:nth-child(6) {
    display: none; } }
@media (max-width: 990px) {
  .links {
    width: 500px;
    margin-right: auto;
    margin-left: auto; } }
@media (max-width: 900px) {
  .weather-item:nth-child(5) {
    display: none; } }
@media (max-width: 750px) {
  .weather-item:nth-child(4) {
    display: none; } }
@media (max-width: 500px) {
  .weather-item:nth-child(3) {
    display: none; } }
.show-more {
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background-color: #3E82F7;
  transition: all 0.3s;
  background-image: url("../images/2x/arrow-top@2x.png");
  background-repeat: no-repeat;
  background-position: center 35px;
  background-size: 8px 5px; }
  .show-more:hover {
    background-color: #5794FD; }

.weather-widget.active .show-more {
  background-image: url("../images/2x/arrow-bottom@2x.png");
  background-position: center center; }

.detail-info {
  border-top: 1px solid #D8D8D8;
  display: flex;
  overflow-x: auto;
  max-height: 125px;
  overflow-y: hidden; }
  .detail-info::-webkit-scrollbar {
    width: 0;
    height: 0; }
  .detail-info::-webkit-scrollbar-track {
    border-radius: 10px; }
  .detail-info::-webkit-scrollbar-thumb {
    border-radius: 10px; }
  .detail-info__city {
    width: 100%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-size: 36px;
    color: #323232;
    padding: 0 30px;
    border-left: 1px solid #D8D8D8;
    border-right: 1px solid #D8D8D8; }

.hourly {
  display: flex; }
  .hourly__item {
    height: 125px;
    width: 66px;
    border-right: 1px solid #D8D8D8;
    padding: 10px 0;
    flex-shrink: 0; }
    .hourly__item:last-child {
      border-right: none; }
  .hourly__time {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #7B8287;
    margin-bottom: 11px; }
  .hourly__icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 10px auto;
    background-size: contain;
    background-repeat: no-repeat; }
  .hourly__temp {
    display: block;
    color: #434A4F;
    text-align: center;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 5px;
    font-weight: bold; }
  .hourly__humidity {
    display: block;
    color: #3B99FC;
    font-size: 12px;
    font-weight: bold;
    text-align: center; }

.daily {
  display: flex; }
  .daily__item {
    height: 125px;
    width: 90px;
    flex-shrink: 0;
    border-right: 1px solid #D8D8D8;
    padding: 10px 0; }
    .daily__item:last-child {
      border-right: none; }
  .daily__day {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #323232; }
  .daily__icon {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 10px auto;
    background-size: contain;
    background-repeat: no-repeat; }
  .daily__temp {
    display: block;
    color: #434A4F;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 21px;
    margin-bottom: 6px; }
    .daily__temp_night {
      color: #7B8287;
      font-weight: normal; }
  .daily__humidity {
    display: block;
    color: #3B99FC;
    font-size: 12px;
    font-weight: bold;
    text-align: center; }

.weather-icon_32px.weather-icon_01d {
  background-image: url("../images/weather/icon_01d-32px.png"); }
.weather-icon_32px.weather-icon_02d {
  background-image: url("../images/weather/icon_02d-32px.png"); }
.weather-icon_32px.weather-icon_03d {
  background-image: url("../images/weather/icon_03d-32px.png"); }
.weather-icon_32px.weather-icon_04d {
  background-image: url("../images/weather/icon_04d-32px.png"); }
.weather-icon_32px.weather-icon_09d {
  background-image: url("../images/weather/icon_09d-32px.png"); }
.weather-icon_32px.weather-icon_10d {
  background-image: url("../images/weather/icon_10d-32px.png"); }
.weather-icon_32px.weather-icon_11d {
  background-image: url("../images/weather/icon_11d-32px.png"); }
.weather-icon_32px.weather-icon_13d {
  background-image: url("../images/weather/icon_13d-32px.png"); }
.weather-icon_32px.weather-icon_50d {
  background-image: url("../images/weather/icon_50d-32px.png"); }
.weather-icon_32px.weather-icon_01n {
  background-image: url("../images/weather/icon_01n-32px.png"); }
.weather-icon_32px.weather-icon_02n {
  background-image: url("../images/weather/icon_02n-32px.png"); }
.weather-icon_32px.weather-icon_03n {
  background-image: url("../images/weather/icon_03n-32px.png"); }
.weather-icon_32px.weather-icon_04n {
  background-image: url("../images/weather/icon_04n-32px.png"); }
.weather-icon_32px.weather-icon_09n {
  background-image: url("../images/weather/icon_09n-32px.png"); }
.weather-icon_32px.weather-icon_10n {
  background-image: url("../images/weather/icon_10n-32px.png"); }
.weather-icon_32px.weather-icon_11n {
  background-image: url("../images/weather/icon_11n-32px.png"); }
.weather-icon_32px.weather-icon_13n {
  background-image: url("../images/weather/icon_13n-32px.png"); }
.weather-icon_32px.weather-icon_50n {
  background-image: url("../images/weather/icon_50n-32px.png"); }
.weather-icon_32px.weather-icon_701 {
  background-image: url("../images/weather/icon_701-32px.png") !important; }
.weather-icon_32px.weather-icon_761 {
  background-image: url("../images/weather/icon_761-32px.png") !important; }
.weather-icon_32px.weather-icon_781 {
  background-image: url("../images/weather/icon_781-32px.png") !important; }
.weather-icon_32px.weather-icon_903 {
  background-image: url("../images/weather/icon_903-32px.png") !important; }
.weather-icon_32px.weather-icon_904 {
  background-image: url("../images/weather/icon_904-32px.png") !important; }
.weather-icon_32px.weather-icon_905 {
  background-image: url("../images/weather/icon_905-32px.png") !important; }
.weather-icon_32px.weather-icon_906 {
  background-image: url("../images/weather/icon_906-32px.png") !important; }
.weather-icon_32px.weather-icon_962 {
  background-image: url("../images/weather/icon_962-32px.png") !important; }

.weather-icon_48px.weather-icon_01d {
  background-image: url("../images/weather/icon_01d-48px.png"); }
.weather-icon_48px.weather-icon_02d {
  background-image: url("../images/weather/icon_02d-48px.png"); }
.weather-icon_48px.weather-icon_03d {
  background-image: url("../images/weather/icon_03d-48px.png"); }
.weather-icon_48px.weather-icon_04d {
  background-image: url("../images/weather/icon_04d-48px.png"); }
.weather-icon_48px.weather-icon_09d {
  background-image: url("../images/weather/icon_09d-48px.png"); }
.weather-icon_48px.weather-icon_10d {
  background-image: url("../images/weather/icon_10d-48px.png"); }
.weather-icon_48px.weather-icon_11d {
  background-image: url("../images/weather/icon_11d-48px.png"); }
.weather-icon_48px.weather-icon_13d {
  background-image: url("../images/weather/icon_13d-48px.png"); }
.weather-icon_48px.weather-icon_50d {
  background-image: url("../images/weather/icon_50d-48px.png"); }
.weather-icon_48px.weather-icon_01n {
  background-image: url("../images/weather/icon_01n-48px.png"); }
.weather-icon_48px.weather-icon_02n {
  background-image: url("../images/weather/icon_02n-48px.png"); }
.weather-icon_48px.weather-icon_03n {
  background-image: url("../images/weather/icon_03n-48px.png"); }
.weather-icon_48px.weather-icon_04n {
  background-image: url("../images/weather/icon_04n-48px.png"); }
.weather-icon_48px.weather-icon_09n {
  background-image: url("../images/weather/icon_09n-48px.png"); }
.weather-icon_48px.weather-icon_10n {
  background-image: url("../images/weather/icon_10n-48px.png"); }
.weather-icon_48px.weather-icon_11n {
  background-image: url("../images/weather/icon_11n-48px.png"); }
.weather-icon_48px.weather-icon_13n {
  background-image: url("../images/weather/icon_13n-48px.png"); }
.weather-icon_48px.weather-icon_50n {
  background-image: url("../images/weather/icon_50n-48px.png"); }
.weather-icon_48px.weather-icon_701 {
  background-image: url("../images/weather/icon_701-48px.png") !important; }
.weather-icon_48px.weather-icon_761 {
  background-image: url("../images/weather/icon_761-48px.png") !important; }
.weather-icon_48px.weather-icon_781 {
  background-image: url("../images/weather/icon_781-48px.png") !important; }
.weather-icon_48px.weather-icon_903 {
  background-image: url("../images/weather/icon_903-48px.png") !important; }
.weather-icon_48px.weather-icon_904 {
  background-image: url("../images/weather/icon_904-48px.png") !important; }
.weather-icon_48px.weather-icon_905 {
  background-image: url("../images/weather/icon_905-48px.png") !important; }
.weather-icon_48px.weather-icon_906 {
  background-image: url("../images/weather/icon_906-48px.png") !important; }
.weather-icon_48px.weather-icon_962 {
  background-image: url("../images/weather/icon_962-48px.png") !important; }

/* Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .weather-icon_32px.weather-icon_01d {
    background-image: url("../images/weather/icon_01d-64px.png"); }
  .weather-icon_32px.weather-icon_02d {
    background-image: url("../images/weather/icon_02d-64px.png"); }
  .weather-icon_32px.weather-icon_03d {
    background-image: url("../images/weather/icon_03d-64px.png"); }
  .weather-icon_32px.weather-icon_04d {
    background-image: url("../images/weather/icon_04d-64px.png"); }
  .weather-icon_32px.weather-icon_09d {
    background-image: url("../images/weather/icon_09d-64px.png"); }
  .weather-icon_32px.weather-icon_10d {
    background-image: url("../images/weather/icon_10d-64px.png"); }
  .weather-icon_32px.weather-icon_11d {
    background-image: url("../images/weather/icon_11d-64px.png"); }
  .weather-icon_32px.weather-icon_13d {
    background-image: url("../images/weather/icon_13d-64px.png"); }
  .weather-icon_32px.weather-icon_50d {
    background-image: url("../images/weather/icon_50d-64px.png"); }
  .weather-icon_32px.weather-icon_01n {
    background-image: url("../images/weather/icon_01n-64px.png"); }
  .weather-icon_32px.weather-icon_02n {
    background-image: url("../images/weather/icon_02n-64px.png"); }
  .weather-icon_32px.weather-icon_03n {
    background-image: url("../images/weather/icon_03n-64px.png"); }
  .weather-icon_32px.weather-icon_04n {
    background-image: url("../images/weather/icon_04n-64px.png"); }
  .weather-icon_32px.weather-icon_09n {
    background-image: url("../images/weather/icon_09n-64px.png"); }
  .weather-icon_32px.weather-icon_10n {
    background-image: url("../images/weather/icon_10n-64px.png"); }
  .weather-icon_32px.weather-icon_11n {
    background-image: url("../images/weather/icon_11n-64px.png"); }
  .weather-icon_32px.weather-icon_13n {
    background-image: url("../images/weather/icon_13n-64px.png"); }
  .weather-icon_32px.weather-icon_50n {
    background-image: url("../images/weather/icon_50n-64px.png"); }
  .weather-icon_32px.weather-icon_701 {
    background-image: url("../images/weather/icon_701-64px.png") !important; }
  .weather-icon_32px.weather-icon_761 {
    background-image: url("../images/weather/icon_761-64px.png") !important; }
  .weather-icon_32px.weather-icon_781 {
    background-image: url("../images/weather/icon_781-64px.png") !important; }
  .weather-icon_32px.weather-icon_903 {
    background-image: url("../images/weather/icon_903-64px.png") !important; }
  .weather-icon_32px.weather-icon_904 {
    background-image: url("../images/weather/icon_904-64px.png") !important; }
  .weather-icon_32px.weather-icon_905 {
    background-image: url("../images/weather/icon_905-64px.png") !important; }
  .weather-icon_32px.weather-icon_906 {
    background-image: url("../images/weather/icon_906-64px.png") !important; }
  .weather-icon_32px.weather-icon_962 {
    background-image: url("../images/weather/icon_962-64px.png") !important; }

  .weather-icon_48px.weather-icon_01d {
    background-image: url("../images/weather/icon_01d-96px.png"); }
  .weather-icon_48px.weather-icon_02d {
    background-image: url("../images/weather/icon_02d-96px.png"); }
  .weather-icon_48px.weather-icon_03d {
    background-image: url("../images/weather/icon_03d-96px.png"); }
  .weather-icon_48px.weather-icon_04d {
    background-image: url("../images/weather/icon_04d-96px.png"); }
  .weather-icon_48px.weather-icon_09d {
    background-image: url("../images/weather/icon_09d-96px.png"); }
  .weather-icon_48px.weather-icon_10d {
    background-image: url("../images/weather/icon_10d-96px.png"); }
  .weather-icon_48px.weather-icon_11d {
    background-image: url("../images/weather/icon_11d-96px.png"); }
  .weather-icon_48px.weather-icon_13d {
    background-image: url("../images/weather/icon_13d-96px.png"); }
  .weather-icon_48px.weather-icon_50d {
    background-image: url("../images/weather/icon_50d-96px.png"); }
  .weather-icon_48px.weather-icon_01n {
    background-image: url("../images/weather/icon_01n-96px.png"); }
  .weather-icon_48px.weather-icon_02n {
    background-image: url("../images/weather/icon_02n-96px.png"); }
  .weather-icon_48px.weather-icon_03n {
    background-image: url("../images/weather/icon_03n-96px.png"); }
  .weather-icon_48px.weather-icon_04n {
    background-image: url("../images/weather/icon_04n-96px.png"); }
  .weather-icon_48px.weather-icon_09n {
    background-image: url("../images/weather/icon_09n-96px.png"); }
  .weather-icon_48px.weather-icon_10n {
    background-image: url("../images/weather/icon_10n-96px.png"); }
  .weather-icon_48px.weather-icon_11n {
    background-image: url("../images/weather/icon_11n-96px.png"); }
  .weather-icon_48px.weather-icon_13n {
    background-image: url("../images/weather/icon_13n-96px.png"); }
  .weather-icon_48px.weather-icon_50n {
    background-image: url("../images/weather/icon_50n-96px.png"); }
  .weather-icon_48px.weather-icon_701 {
    background-image: url("../images/weather/icon_701-96px.png") !important; }
  .weather-icon_48px.weather-icon_761 {
    background-image: url("../images/weather/icon_761-96px.png") !important; }
  .weather-icon_48px.weather-icon_781 {
    background-image: url("../images/weather/icon_781-96px.png") !important; }
  .weather-icon_48px.weather-icon_903 {
    background-image: url("../images/weather/icon_903-96px.png") !important; }
  .weather-icon_48px.weather-icon_904 {
    background-image: url("../images/weather/icon_904-96px.png") !important; }
  .weather-icon_48px.weather-icon_905 {
    background-image: url("../images/weather/icon_905-96px.png") !important; }
  .weather-icon_48px.weather-icon_906 {
    background-image: url("../images/weather/icon_906-96px.png") !important; }
  .weather-icon_48px.weather-icon_962 {
    background-image: url("../images/weather/icon_962-96px.png") !important; }

  .main > .search-holder .search-form input[type="text"] {
    background-image: url("../images/searchbox_icon@2x.png") !important; } }
body {
  background: #000;
  overflow: hidden; }

@-webkit-keyframes back1 {
  100% {
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }
@-moz-keyframes back1 {
  100% {
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }
@-o-keyframes back1 {
  100% {
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }
@keyframes back1 {
  100% {
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg); } }
@-webkit-keyframes move2 {
  100% {
    -ms-transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg); } }
@-moz-keyframes move2 {
  100% {
    -ms-transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg); } }
@-o-keyframes move2 {
  100% {
    -ms-transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg); } }
@keyframes move2 {
  100% {
    -ms-transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg); } }
@-webkit-keyframes back3 {
  100% {
    -ms-transform: rotate(-1080deg);
    -webkit-transform: rotate(-1080deg);
    transform: rotate(-1080deg); } }
@-moz-keyframes back3 {
  100% {
    -ms-transform: rotate(-1080deg);
    -webkit-transform: rotate(-1080deg);
    transform: rotate(-1080deg); } }
@-o-keyframes back3 {
  100% {
    -ms-transform: rotate(-1080deg);
    -webkit-transform: rotate(-1080deg);
    transform: rotate(-1080deg); } }
@keyframes back3 {
  100% {
    -ms-transform: rotate(-1080deg);
    -webkit-transform: rotate(-1080deg);
    transform: rotate(-1080deg); } }
@-webkit-keyframes move4 {
  100% {
    -ms-transform: rotate(1440deg);
    -webkit-transform: rotate(1440deg);
    transform: rotate(1440deg); } }
@-moz-keyframes move4 {
  100% {
    -ms-transform: rotate(1440deg);
    -webkit-transform: rotate(1440deg);
    transform: rotate(1440deg); } }
@-o-keyframes move4 {
  100% {
    -ms-transform: rotate(1440deg);
    -webkit-transform: rotate(1440deg);
    transform: rotate(1440deg); } }
@keyframes move4 {
  100% {
    -ms-transform: rotate(1440deg);
    -webkit-transform: rotate(1440deg);
    transform: rotate(1440deg); } }
@-webkit-keyframes back5 {
  100% {
    -ms-transform: rotate(-1800deg);
    -webkit-transform: rotate(-1800deg);
    transform: rotate(-1800deg); } }
@-moz-keyframes back5 {
  100% {
    -ms-transform: rotate(-1800deg);
    -webkit-transform: rotate(-1800deg);
    transform: rotate(-1800deg); } }
@-o-keyframes back5 {
  100% {
    -ms-transform: rotate(-1800deg);
    -webkit-transform: rotate(-1800deg);
    transform: rotate(-1800deg); } }
@keyframes back5 {
  100% {
    -ms-transform: rotate(-1800deg);
    -webkit-transform: rotate(-1800deg);
    transform: rotate(-1800deg); } }
@-webkit-keyframes move6 {
  100% {
    -ms-transform: rotate(2160deg);
    -webkit-transform: rotate(2160deg);
    transform: rotate(2160deg); } }
@-moz-keyframes move6 {
  100% {
    -ms-transform: rotate(2160deg);
    -webkit-transform: rotate(2160deg);
    transform: rotate(2160deg); } }
@-o-keyframes move6 {
  100% {
    -ms-transform: rotate(2160deg);
    -webkit-transform: rotate(2160deg);
    transform: rotate(2160deg); } }
@keyframes move6 {
  100% {
    -ms-transform: rotate(2160deg);
    -webkit-transform: rotate(2160deg);
    transform: rotate(2160deg); } }
@-webkit-keyframes back7 {
  100% {
    -ms-transform: rotate(-2520deg);
    -webkit-transform: rotate(-2520deg);
    transform: rotate(-2520deg); } }
@-moz-keyframes back7 {
  100% {
    -ms-transform: rotate(-2520deg);
    -webkit-transform: rotate(-2520deg);
    transform: rotate(-2520deg); } }
@-o-keyframes back7 {
  100% {
    -ms-transform: rotate(-2520deg);
    -webkit-transform: rotate(-2520deg);
    transform: rotate(-2520deg); } }
@keyframes back7 {
  100% {
    -ms-transform: rotate(-2520deg);
    -webkit-transform: rotate(-2520deg);
    transform: rotate(-2520deg); } }
@-webkit-keyframes move8 {
  100% {
    -ms-transform: rotate(2880deg);
    -webkit-transform: rotate(2880deg);
    transform: rotate(2880deg); } }
@-moz-keyframes move8 {
  100% {
    -ms-transform: rotate(2880deg);
    -webkit-transform: rotate(2880deg);
    transform: rotate(2880deg); } }
@-o-keyframes move8 {
  100% {
    -ms-transform: rotate(2880deg);
    -webkit-transform: rotate(2880deg);
    transform: rotate(2880deg); } }
@keyframes move8 {
  100% {
    -ms-transform: rotate(2880deg);
    -webkit-transform: rotate(2880deg);
    transform: rotate(2880deg); } }
@-webkit-keyframes back9 {
  100% {
    -ms-transform: rotate(-3240deg);
    -webkit-transform: rotate(-3240deg);
    transform: rotate(-3240deg); } }
@-moz-keyframes back9 {
  100% {
    -ms-transform: rotate(-3240deg);
    -webkit-transform: rotate(-3240deg);
    transform: rotate(-3240deg); } }
@-o-keyframes back9 {
  100% {
    -ms-transform: rotate(-3240deg);
    -webkit-transform: rotate(-3240deg);
    transform: rotate(-3240deg); } }
@keyframes back9 {
  100% {
    -ms-transform: rotate(-3240deg);
    -webkit-transform: rotate(-3240deg);
    transform: rotate(-3240deg); } }
@-webkit-keyframes move10 {
  100% {
    -ms-transform: rotate(3600deg);
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg); } }
@-moz-keyframes move10 {
  100% {
    -ms-transform: rotate(3600deg);
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg); } }
@-o-keyframes move10 {
  100% {
    -ms-transform: rotate(3600deg);
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg); } }
@keyframes move10 {
  100% {
    -ms-transform: rotate(3600deg);
    -webkit-transform: rotate(3600deg);
    transform: rotate(3600deg); } }
@-webkit-keyframes back11 {
  100% {
    -ms-transform: rotate(-3960deg);
    -webkit-transform: rotate(-3960deg);
    transform: rotate(-3960deg); } }
@-moz-keyframes back11 {
  100% {
    -ms-transform: rotate(-3960deg);
    -webkit-transform: rotate(-3960deg);
    transform: rotate(-3960deg); } }
@-o-keyframes back11 {
  100% {
    -ms-transform: rotate(-3960deg);
    -webkit-transform: rotate(-3960deg);
    transform: rotate(-3960deg); } }
@keyframes back11 {
  100% {
    -ms-transform: rotate(-3960deg);
    -webkit-transform: rotate(-3960deg);
    transform: rotate(-3960deg); } }
@-webkit-keyframes move12 {
  100% {
    -ms-transform: rotate(4320deg);
    -webkit-transform: rotate(4320deg);
    transform: rotate(4320deg); } }
@-moz-keyframes move12 {
  100% {
    -ms-transform: rotate(4320deg);
    -webkit-transform: rotate(4320deg);
    transform: rotate(4320deg); } }
@-o-keyframes move12 {
  100% {
    -ms-transform: rotate(4320deg);
    -webkit-transform: rotate(4320deg);
    transform: rotate(4320deg); } }
@keyframes move12 {
  100% {
    -ms-transform: rotate(4320deg);
    -webkit-transform: rotate(4320deg);
    transform: rotate(4320deg); } }
@-webkit-keyframes back13 {
  100% {
    -ms-transform: rotate(-4680deg);
    -webkit-transform: rotate(-4680deg);
    transform: rotate(-4680deg); } }
@-moz-keyframes back13 {
  100% {
    -ms-transform: rotate(-4680deg);
    -webkit-transform: rotate(-4680deg);
    transform: rotate(-4680deg); } }
@-o-keyframes back13 {
  100% {
    -ms-transform: rotate(-4680deg);
    -webkit-transform: rotate(-4680deg);
    transform: rotate(-4680deg); } }
@keyframes back13 {
  100% {
    -ms-transform: rotate(-4680deg);
    -webkit-transform: rotate(-4680deg);
    transform: rotate(-4680deg); } }
@-webkit-keyframes move14 {
  100% {
    -ms-transform: rotate(5040deg);
    -webkit-transform: rotate(5040deg);
    transform: rotate(5040deg); } }
@-moz-keyframes move14 {
  100% {
    -ms-transform: rotate(5040deg);
    -webkit-transform: rotate(5040deg);
    transform: rotate(5040deg); } }
@-o-keyframes move14 {
  100% {
    -ms-transform: rotate(5040deg);
    -webkit-transform: rotate(5040deg);
    transform: rotate(5040deg); } }
@keyframes move14 {
  100% {
    -ms-transform: rotate(5040deg);
    -webkit-transform: rotate(5040deg);
    transform: rotate(5040deg); } }
@-webkit-keyframes back15 {
  100% {
    -ms-transform: rotate(-5400deg);
    -webkit-transform: rotate(-5400deg);
    transform: rotate(-5400deg); } }
@-moz-keyframes back15 {
  100% {
    -ms-transform: rotate(-5400deg);
    -webkit-transform: rotate(-5400deg);
    transform: rotate(-5400deg); } }
@-o-keyframes back15 {
  100% {
    -ms-transform: rotate(-5400deg);
    -webkit-transform: rotate(-5400deg);
    transform: rotate(-5400deg); } }
@keyframes back15 {
  100% {
    -ms-transform: rotate(-5400deg);
    -webkit-transform: rotate(-5400deg);
    transform: rotate(-5400deg); } }
@-webkit-keyframes move16 {
  100% {
    -ms-transform: rotate(5760deg);
    -webkit-transform: rotate(5760deg);
    transform: rotate(5760deg); } }
@-moz-keyframes move16 {
  100% {
    -ms-transform: rotate(5760deg);
    -webkit-transform: rotate(5760deg);
    transform: rotate(5760deg); } }
@-o-keyframes move16 {
  100% {
    -ms-transform: rotate(5760deg);
    -webkit-transform: rotate(5760deg);
    transform: rotate(5760deg); } }
@keyframes move16 {
  100% {
    -ms-transform: rotate(5760deg);
    -webkit-transform: rotate(5760deg);
    transform: rotate(5760deg); } }
@-webkit-keyframes back17 {
  100% {
    -ms-transform: rotate(-6120deg);
    -webkit-transform: rotate(-6120deg);
    transform: rotate(-6120deg); } }
@-moz-keyframes back17 {
  100% {
    -ms-transform: rotate(-6120deg);
    -webkit-transform: rotate(-6120deg);
    transform: rotate(-6120deg); } }
@-o-keyframes back17 {
  100% {
    -ms-transform: rotate(-6120deg);
    -webkit-transform: rotate(-6120deg);
    transform: rotate(-6120deg); } }
@keyframes back17 {
  100% {
    -ms-transform: rotate(-6120deg);
    -webkit-transform: rotate(-6120deg);
    transform: rotate(-6120deg); } }
@-webkit-keyframes move18 {
  100% {
    -ms-transform: rotate(6480deg);
    -webkit-transform: rotate(6480deg);
    transform: rotate(6480deg); } }
@-moz-keyframes move18 {
  100% {
    -ms-transform: rotate(6480deg);
    -webkit-transform: rotate(6480deg);
    transform: rotate(6480deg); } }
@-o-keyframes move18 {
  100% {
    -ms-transform: rotate(6480deg);
    -webkit-transform: rotate(6480deg);
    transform: rotate(6480deg); } }
@keyframes move18 {
  100% {
    -ms-transform: rotate(6480deg);
    -webkit-transform: rotate(6480deg);
    transform: rotate(6480deg); } }
@-webkit-keyframes back19 {
  100% {
    -ms-transform: rotate(-6840deg);
    -webkit-transform: rotate(-6840deg);
    transform: rotate(-6840deg); } }
@-moz-keyframes back19 {
  100% {
    -ms-transform: rotate(-6840deg);
    -webkit-transform: rotate(-6840deg);
    transform: rotate(-6840deg); } }
@-o-keyframes back19 {
  100% {
    -ms-transform: rotate(-6840deg);
    -webkit-transform: rotate(-6840deg);
    transform: rotate(-6840deg); } }
@keyframes back19 {
  100% {
    -ms-transform: rotate(-6840deg);
    -webkit-transform: rotate(-6840deg);
    transform: rotate(-6840deg); } }
@-webkit-keyframes move20 {
  100% {
    -ms-transform: rotate(7200deg);
    -webkit-transform: rotate(7200deg);
    transform: rotate(7200deg); } }
@-moz-keyframes move20 {
  100% {
    -ms-transform: rotate(7200deg);
    -webkit-transform: rotate(7200deg);
    transform: rotate(7200deg); } }
@-o-keyframes move20 {
  100% {
    -ms-transform: rotate(7200deg);
    -webkit-transform: rotate(7200deg);
    transform: rotate(7200deg); } }
@keyframes move20 {
  100% {
    -ms-transform: rotate(7200deg);
    -webkit-transform: rotate(7200deg);
    transform: rotate(7200deg); } }
@-webkit-keyframes back21 {
  100% {
    -ms-transform: rotate(-7560deg);
    -webkit-transform: rotate(-7560deg);
    transform: rotate(-7560deg); } }
@-moz-keyframes back21 {
  100% {
    -ms-transform: rotate(-7560deg);
    -webkit-transform: rotate(-7560deg);
    transform: rotate(-7560deg); } }
@-o-keyframes back21 {
  100% {
    -ms-transform: rotate(-7560deg);
    -webkit-transform: rotate(-7560deg);
    transform: rotate(-7560deg); } }
@keyframes back21 {
  100% {
    -ms-transform: rotate(-7560deg);
    -webkit-transform: rotate(-7560deg);
    transform: rotate(-7560deg); } }
@-webkit-keyframes move22 {
  100% {
    -ms-transform: rotate(7920deg);
    -webkit-transform: rotate(7920deg);
    transform: rotate(7920deg); } }
@-moz-keyframes move22 {
  100% {
    -ms-transform: rotate(7920deg);
    -webkit-transform: rotate(7920deg);
    transform: rotate(7920deg); } }
@-o-keyframes move22 {
  100% {
    -ms-transform: rotate(7920deg);
    -webkit-transform: rotate(7920deg);
    transform: rotate(7920deg); } }
@keyframes move22 {
  100% {
    -ms-transform: rotate(7920deg);
    -webkit-transform: rotate(7920deg);
    transform: rotate(7920deg); } }
@-webkit-keyframes back23 {
  100% {
    -ms-transform: rotate(-8280deg);
    -webkit-transform: rotate(-8280deg);
    transform: rotate(-8280deg); } }
@-moz-keyframes back23 {
  100% {
    -ms-transform: rotate(-8280deg);
    -webkit-transform: rotate(-8280deg);
    transform: rotate(-8280deg); } }
@-o-keyframes back23 {
  100% {
    -ms-transform: rotate(-8280deg);
    -webkit-transform: rotate(-8280deg);
    transform: rotate(-8280deg); } }
@keyframes back23 {
  100% {
    -ms-transform: rotate(-8280deg);
    -webkit-transform: rotate(-8280deg);
    transform: rotate(-8280deg); } }
@-webkit-keyframes move24 {
  100% {
    -ms-transform: rotate(8640deg);
    -webkit-transform: rotate(8640deg);
    transform: rotate(8640deg); } }
@-moz-keyframes move24 {
  100% {
    -ms-transform: rotate(8640deg);
    -webkit-transform: rotate(8640deg);
    transform: rotate(8640deg); } }
@-o-keyframes move24 {
  100% {
    -ms-transform: rotate(8640deg);
    -webkit-transform: rotate(8640deg);
    transform: rotate(8640deg); } }
@keyframes move24 {
  100% {
    -ms-transform: rotate(8640deg);
    -webkit-transform: rotate(8640deg);
    transform: rotate(8640deg); } }
@-webkit-keyframes back25 {
  100% {
    -ms-transform: rotate(-9000deg);
    -webkit-transform: rotate(-9000deg);
    transform: rotate(-9000deg); } }
@-moz-keyframes back25 {
  100% {
    -ms-transform: rotate(-9000deg);
    -webkit-transform: rotate(-9000deg);
    transform: rotate(-9000deg); } }
@-o-keyframes back25 {
  100% {
    -ms-transform: rotate(-9000deg);
    -webkit-transform: rotate(-9000deg);
    transform: rotate(-9000deg); } }
@keyframes back25 {
  100% {
    -ms-transform: rotate(-9000deg);
    -webkit-transform: rotate(-9000deg);
    transform: rotate(-9000deg); } }
@-webkit-keyframes move26 {
  100% {
    -ms-transform: rotate(9360deg);
    -webkit-transform: rotate(9360deg);
    transform: rotate(9360deg); } }
@-moz-keyframes move26 {
  100% {
    -ms-transform: rotate(9360deg);
    -webkit-transform: rotate(9360deg);
    transform: rotate(9360deg); } }
@-o-keyframes move26 {
  100% {
    -ms-transform: rotate(9360deg);
    -webkit-transform: rotate(9360deg);
    transform: rotate(9360deg); } }
@keyframes move26 {
  100% {
    -ms-transform: rotate(9360deg);
    -webkit-transform: rotate(9360deg);
    transform: rotate(9360deg); } }
@-webkit-keyframes back27 {
  100% {
    -ms-transform: rotate(-9720deg);
    -webkit-transform: rotate(-9720deg);
    transform: rotate(-9720deg); } }
@-moz-keyframes back27 {
  100% {
    -ms-transform: rotate(-9720deg);
    -webkit-transform: rotate(-9720deg);
    transform: rotate(-9720deg); } }
@-o-keyframes back27 {
  100% {
    -ms-transform: rotate(-9720deg);
    -webkit-transform: rotate(-9720deg);
    transform: rotate(-9720deg); } }
@keyframes back27 {
  100% {
    -ms-transform: rotate(-9720deg);
    -webkit-transform: rotate(-9720deg);
    transform: rotate(-9720deg); } }
@-webkit-keyframes move28 {
  100% {
    -ms-transform: rotate(10080deg);
    -webkit-transform: rotate(10080deg);
    transform: rotate(10080deg); } }
@-moz-keyframes move28 {
  100% {
    -ms-transform: rotate(10080deg);
    -webkit-transform: rotate(10080deg);
    transform: rotate(10080deg); } }
@-o-keyframes move28 {
  100% {
    -ms-transform: rotate(10080deg);
    -webkit-transform: rotate(10080deg);
    transform: rotate(10080deg); } }
@keyframes move28 {
  100% {
    -ms-transform: rotate(10080deg);
    -webkit-transform: rotate(10080deg);
    transform: rotate(10080deg); } }
@-webkit-keyframes back29 {
  100% {
    -ms-transform: rotate(-10440deg);
    -webkit-transform: rotate(-10440deg);
    transform: rotate(-10440deg); } }
@-moz-keyframes back29 {
  100% {
    -ms-transform: rotate(-10440deg);
    -webkit-transform: rotate(-10440deg);
    transform: rotate(-10440deg); } }
@-o-keyframes back29 {
  100% {
    -ms-transform: rotate(-10440deg);
    -webkit-transform: rotate(-10440deg);
    transform: rotate(-10440deg); } }
@keyframes back29 {
  100% {
    -ms-transform: rotate(-10440deg);
    -webkit-transform: rotate(-10440deg);
    transform: rotate(-10440deg); } }
@-webkit-keyframes move30 {
  100% {
    -ms-transform: rotate(10800deg);
    -webkit-transform: rotate(10800deg);
    transform: rotate(10800deg); } }
@-moz-keyframes move30 {
  100% {
    -ms-transform: rotate(10800deg);
    -webkit-transform: rotate(10800deg);
    transform: rotate(10800deg); } }
@-o-keyframes move30 {
  100% {
    -ms-transform: rotate(10800deg);
    -webkit-transform: rotate(10800deg);
    transform: rotate(10800deg); } }
@keyframes move30 {
  100% {
    -ms-transform: rotate(10800deg);
    -webkit-transform: rotate(10800deg);
    transform: rotate(10800deg); } }
@-webkit-keyframes back31 {
  100% {
    -ms-transform: rotate(-11160deg);
    -webkit-transform: rotate(-11160deg);
    transform: rotate(-11160deg); } }
@-moz-keyframes back31 {
  100% {
    -ms-transform: rotate(-11160deg);
    -webkit-transform: rotate(-11160deg);
    transform: rotate(-11160deg); } }
@-o-keyframes back31 {
  100% {
    -ms-transform: rotate(-11160deg);
    -webkit-transform: rotate(-11160deg);
    transform: rotate(-11160deg); } }
@keyframes back31 {
  100% {
    -ms-transform: rotate(-11160deg);
    -webkit-transform: rotate(-11160deg);
    transform: rotate(-11160deg); } }
@-webkit-keyframes move32 {
  100% {
    -ms-transform: rotate(11520deg);
    -webkit-transform: rotate(11520deg);
    transform: rotate(11520deg); } }
@-moz-keyframes move32 {
  100% {
    -ms-transform: rotate(11520deg);
    -webkit-transform: rotate(11520deg);
    transform: rotate(11520deg); } }
@-o-keyframes move32 {
  100% {
    -ms-transform: rotate(11520deg);
    -webkit-transform: rotate(11520deg);
    transform: rotate(11520deg); } }
@keyframes move32 {
  100% {
    -ms-transform: rotate(11520deg);
    -webkit-transform: rotate(11520deg);
    transform: rotate(11520deg); } }
@-webkit-keyframes back33 {
  100% {
    -ms-transform: rotate(-11880deg);
    -webkit-transform: rotate(-11880deg);
    transform: rotate(-11880deg); } }
@-moz-keyframes back33 {
  100% {
    -ms-transform: rotate(-11880deg);
    -webkit-transform: rotate(-11880deg);
    transform: rotate(-11880deg); } }
@-o-keyframes back33 {
  100% {
    -ms-transform: rotate(-11880deg);
    -webkit-transform: rotate(-11880deg);
    transform: rotate(-11880deg); } }
@keyframes back33 {
  100% {
    -ms-transform: rotate(-11880deg);
    -webkit-transform: rotate(-11880deg);
    transform: rotate(-11880deg); } }
@-webkit-keyframes move34 {
  100% {
    -ms-transform: rotate(12240deg);
    -webkit-transform: rotate(12240deg);
    transform: rotate(12240deg); } }
@-moz-keyframes move34 {
  100% {
    -ms-transform: rotate(12240deg);
    -webkit-transform: rotate(12240deg);
    transform: rotate(12240deg); } }
@-o-keyframes move34 {
  100% {
    -ms-transform: rotate(12240deg);
    -webkit-transform: rotate(12240deg);
    transform: rotate(12240deg); } }
@keyframes move34 {
  100% {
    -ms-transform: rotate(12240deg);
    -webkit-transform: rotate(12240deg);
    transform: rotate(12240deg); } }
@-webkit-keyframes back35 {
  100% {
    -ms-transform: rotate(-12600deg);
    -webkit-transform: rotate(-12600deg);
    transform: rotate(-12600deg); } }
@-moz-keyframes back35 {
  100% {
    -ms-transform: rotate(-12600deg);
    -webkit-transform: rotate(-12600deg);
    transform: rotate(-12600deg); } }
@-o-keyframes back35 {
  100% {
    -ms-transform: rotate(-12600deg);
    -webkit-transform: rotate(-12600deg);
    transform: rotate(-12600deg); } }
@keyframes back35 {
  100% {
    -ms-transform: rotate(-12600deg);
    -webkit-transform: rotate(-12600deg);
    transform: rotate(-12600deg); } }
@-webkit-keyframes move36 {
  100% {
    -ms-transform: rotate(12960deg);
    -webkit-transform: rotate(12960deg);
    transform: rotate(12960deg); } }
@-moz-keyframes move36 {
  100% {
    -ms-transform: rotate(12960deg);
    -webkit-transform: rotate(12960deg);
    transform: rotate(12960deg); } }
@-o-keyframes move36 {
  100% {
    -ms-transform: rotate(12960deg);
    -webkit-transform: rotate(12960deg);
    transform: rotate(12960deg); } }
@keyframes move36 {
  100% {
    -ms-transform: rotate(12960deg);
    -webkit-transform: rotate(12960deg);
    transform: rotate(12960deg); } }
@-webkit-keyframes back37 {
  100% {
    -ms-transform: rotate(-13320deg);
    -webkit-transform: rotate(-13320deg);
    transform: rotate(-13320deg); } }
@-moz-keyframes back37 {
  100% {
    -ms-transform: rotate(-13320deg);
    -webkit-transform: rotate(-13320deg);
    transform: rotate(-13320deg); } }
@-o-keyframes back37 {
  100% {
    -ms-transform: rotate(-13320deg);
    -webkit-transform: rotate(-13320deg);
    transform: rotate(-13320deg); } }
@keyframes back37 {
  100% {
    -ms-transform: rotate(-13320deg);
    -webkit-transform: rotate(-13320deg);
    transform: rotate(-13320deg); } }
@-webkit-keyframes move38 {
  100% {
    -ms-transform: rotate(13680deg);
    -webkit-transform: rotate(13680deg);
    transform: rotate(13680deg); } }
@-moz-keyframes move38 {
  100% {
    -ms-transform: rotate(13680deg);
    -webkit-transform: rotate(13680deg);
    transform: rotate(13680deg); } }
@-o-keyframes move38 {
  100% {
    -ms-transform: rotate(13680deg);
    -webkit-transform: rotate(13680deg);
    transform: rotate(13680deg); } }
@keyframes move38 {
  100% {
    -ms-transform: rotate(13680deg);
    -webkit-transform: rotate(13680deg);
    transform: rotate(13680deg); } }
@-webkit-keyframes back39 {
  100% {
    -ms-transform: rotate(-14040deg);
    -webkit-transform: rotate(-14040deg);
    transform: rotate(-14040deg); } }
@-moz-keyframes back39 {
  100% {
    -ms-transform: rotate(-14040deg);
    -webkit-transform: rotate(-14040deg);
    transform: rotate(-14040deg); } }
@-o-keyframes back39 {
  100% {
    -ms-transform: rotate(-14040deg);
    -webkit-transform: rotate(-14040deg);
    transform: rotate(-14040deg); } }
@keyframes back39 {
  100% {
    -ms-transform: rotate(-14040deg);
    -webkit-transform: rotate(-14040deg);
    transform: rotate(-14040deg); } }
@-webkit-keyframes move40 {
  100% {
    -ms-transform: rotate(14400deg);
    -webkit-transform: rotate(14400deg);
    transform: rotate(14400deg); } }
@-moz-keyframes move40 {
  100% {
    -ms-transform: rotate(14400deg);
    -webkit-transform: rotate(14400deg);
    transform: rotate(14400deg); } }
@-o-keyframes move40 {
  100% {
    -ms-transform: rotate(14400deg);
    -webkit-transform: rotate(14400deg);
    transform: rotate(14400deg); } }
@keyframes move40 {
  100% {
    -ms-transform: rotate(14400deg);
    -webkit-transform: rotate(14400deg);
    transform: rotate(14400deg); } }
@-webkit-keyframes back41 {
  100% {
    -ms-transform: rotate(-14760deg);
    -webkit-transform: rotate(-14760deg);
    transform: rotate(-14760deg); } }
@-moz-keyframes back41 {
  100% {
    -ms-transform: rotate(-14760deg);
    -webkit-transform: rotate(-14760deg);
    transform: rotate(-14760deg); } }
@-o-keyframes back41 {
  100% {
    -ms-transform: rotate(-14760deg);
    -webkit-transform: rotate(-14760deg);
    transform: rotate(-14760deg); } }
@keyframes back41 {
  100% {
    -ms-transform: rotate(-14760deg);
    -webkit-transform: rotate(-14760deg);
    transform: rotate(-14760deg); } }
@-webkit-keyframes move42 {
  100% {
    -ms-transform: rotate(15120deg);
    -webkit-transform: rotate(15120deg);
    transform: rotate(15120deg); } }
@-moz-keyframes move42 {
  100% {
    -ms-transform: rotate(15120deg);
    -webkit-transform: rotate(15120deg);
    transform: rotate(15120deg); } }
@-o-keyframes move42 {
  100% {
    -ms-transform: rotate(15120deg);
    -webkit-transform: rotate(15120deg);
    transform: rotate(15120deg); } }
@keyframes move42 {
  100% {
    -ms-transform: rotate(15120deg);
    -webkit-transform: rotate(15120deg);
    transform: rotate(15120deg); } }
@-webkit-keyframes back43 {
  100% {
    -ms-transform: rotate(-15480deg);
    -webkit-transform: rotate(-15480deg);
    transform: rotate(-15480deg); } }
@-moz-keyframes back43 {
  100% {
    -ms-transform: rotate(-15480deg);
    -webkit-transform: rotate(-15480deg);
    transform: rotate(-15480deg); } }
@-o-keyframes back43 {
  100% {
    -ms-transform: rotate(-15480deg);
    -webkit-transform: rotate(-15480deg);
    transform: rotate(-15480deg); } }
@keyframes back43 {
  100% {
    -ms-transform: rotate(-15480deg);
    -webkit-transform: rotate(-15480deg);
    transform: rotate(-15480deg); } }
@-webkit-keyframes move44 {
  100% {
    -ms-transform: rotate(15840deg);
    -webkit-transform: rotate(15840deg);
    transform: rotate(15840deg); } }
@-moz-keyframes move44 {
  100% {
    -ms-transform: rotate(15840deg);
    -webkit-transform: rotate(15840deg);
    transform: rotate(15840deg); } }
@-o-keyframes move44 {
  100% {
    -ms-transform: rotate(15840deg);
    -webkit-transform: rotate(15840deg);
    transform: rotate(15840deg); } }
@keyframes move44 {
  100% {
    -ms-transform: rotate(15840deg);
    -webkit-transform: rotate(15840deg);
    transform: rotate(15840deg); } }
@-webkit-keyframes back45 {
  100% {
    -ms-transform: rotate(-16200deg);
    -webkit-transform: rotate(-16200deg);
    transform: rotate(-16200deg); } }
@-moz-keyframes back45 {
  100% {
    -ms-transform: rotate(-16200deg);
    -webkit-transform: rotate(-16200deg);
    transform: rotate(-16200deg); } }
@-o-keyframes back45 {
  100% {
    -ms-transform: rotate(-16200deg);
    -webkit-transform: rotate(-16200deg);
    transform: rotate(-16200deg); } }
@keyframes back45 {
  100% {
    -ms-transform: rotate(-16200deg);
    -webkit-transform: rotate(-16200deg);
    transform: rotate(-16200deg); } }
@-webkit-keyframes move46 {
  100% {
    -ms-transform: rotate(16560deg);
    -webkit-transform: rotate(16560deg);
    transform: rotate(16560deg); } }
@-moz-keyframes move46 {
  100% {
    -ms-transform: rotate(16560deg);
    -webkit-transform: rotate(16560deg);
    transform: rotate(16560deg); } }
@-o-keyframes move46 {
  100% {
    -ms-transform: rotate(16560deg);
    -webkit-transform: rotate(16560deg);
    transform: rotate(16560deg); } }
@keyframes move46 {
  100% {
    -ms-transform: rotate(16560deg);
    -webkit-transform: rotate(16560deg);
    transform: rotate(16560deg); } }
@-webkit-keyframes back47 {
  100% {
    -ms-transform: rotate(-16920deg);
    -webkit-transform: rotate(-16920deg);
    transform: rotate(-16920deg); } }
@-moz-keyframes back47 {
  100% {
    -ms-transform: rotate(-16920deg);
    -webkit-transform: rotate(-16920deg);
    transform: rotate(-16920deg); } }
@-o-keyframes back47 {
  100% {
    -ms-transform: rotate(-16920deg);
    -webkit-transform: rotate(-16920deg);
    transform: rotate(-16920deg); } }
@keyframes back47 {
  100% {
    -ms-transform: rotate(-16920deg);
    -webkit-transform: rotate(-16920deg);
    transform: rotate(-16920deg); } }
@-webkit-keyframes move48 {
  100% {
    -ms-transform: rotate(17280deg);
    -webkit-transform: rotate(17280deg);
    transform: rotate(17280deg); } }
@-moz-keyframes move48 {
  100% {
    -ms-transform: rotate(17280deg);
    -webkit-transform: rotate(17280deg);
    transform: rotate(17280deg); } }
@-o-keyframes move48 {
  100% {
    -ms-transform: rotate(17280deg);
    -webkit-transform: rotate(17280deg);
    transform: rotate(17280deg); } }
@keyframes move48 {
  100% {
    -ms-transform: rotate(17280deg);
    -webkit-transform: rotate(17280deg);
    transform: rotate(17280deg); } }
@-webkit-keyframes back49 {
  100% {
    -ms-transform: rotate(-17640deg);
    -webkit-transform: rotate(-17640deg);
    transform: rotate(-17640deg); } }
@-moz-keyframes back49 {
  100% {
    -ms-transform: rotate(-17640deg);
    -webkit-transform: rotate(-17640deg);
    transform: rotate(-17640deg); } }
@-o-keyframes back49 {
  100% {
    -ms-transform: rotate(-17640deg);
    -webkit-transform: rotate(-17640deg);
    transform: rotate(-17640deg); } }
@keyframes back49 {
  100% {
    -ms-transform: rotate(-17640deg);
    -webkit-transform: rotate(-17640deg);
    transform: rotate(-17640deg); } }
@-webkit-keyframes move50 {
  100% {
    -ms-transform: rotate(18000deg);
    -webkit-transform: rotate(18000deg);
    transform: rotate(18000deg); } }
@-moz-keyframes move50 {
  100% {
    -ms-transform: rotate(18000deg);
    -webkit-transform: rotate(18000deg);
    transform: rotate(18000deg); } }
@-o-keyframes move50 {
  100% {
    -ms-transform: rotate(18000deg);
    -webkit-transform: rotate(18000deg);
    transform: rotate(18000deg); } }
@keyframes move50 {
  100% {
    -ms-transform: rotate(18000deg);
    -webkit-transform: rotate(18000deg);
    transform: rotate(18000deg); } }
.circle:nth-child(1) {
  width: 900px;
  height: 900px;
  margin-left: -450px;
  margin-top: -450px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back1 100s infinite;
  -moz-animation: back1 100s infinite;
  -o-animation: back1 100s infinite;
  animation: back1 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(2) {
  width: 882px;
  height: 882px;
  margin-left: -441px;
  margin-top: -441px;
  border-bottom-color: #6200EA;
  -webkit-animation: move2 100s infinite;
  -moz-animation: move2 100s infinite;
  -o-animation: move2 100s infinite;
  animation: move2 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(3) {
  width: 864px;
  height: 864px;
  margin-left: -432px;
  margin-top: -432px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back3 100s infinite;
  -moz-animation: back3 100s infinite;
  -o-animation: back3 100s infinite;
  animation: back3 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(4) {
  width: 846px;
  height: 846px;
  margin-left: -423px;
  margin-top: -423px;
  border-bottom-color: #6200EA;
  -webkit-animation: move4 100s infinite;
  -moz-animation: move4 100s infinite;
  -o-animation: move4 100s infinite;
  animation: move4 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(5) {
  width: 828px;
  height: 828px;
  margin-left: -414px;
  margin-top: -414px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back5 100s infinite;
  -moz-animation: back5 100s infinite;
  -o-animation: back5 100s infinite;
  animation: back5 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(6) {
  width: 810px;
  height: 810px;
  margin-left: -405px;
  margin-top: -405px;
  border-bottom-color: #6200EA;
  -webkit-animation: move6 100s infinite;
  -moz-animation: move6 100s infinite;
  -o-animation: move6 100s infinite;
  animation: move6 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(7) {
  width: 792px;
  height: 792px;
  margin-left: -396px;
  margin-top: -396px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back7 100s infinite;
  -moz-animation: back7 100s infinite;
  -o-animation: back7 100s infinite;
  animation: back7 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(8) {
  width: 774px;
  height: 774px;
  margin-left: -387px;
  margin-top: -387px;
  border-bottom-color: #6200EA;
  -webkit-animation: move8 100s infinite;
  -moz-animation: move8 100s infinite;
  -o-animation: move8 100s infinite;
  animation: move8 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(9) {
  width: 756px;
  height: 756px;
  margin-left: -378px;
  margin-top: -378px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back9 100s infinite;
  -moz-animation: back9 100s infinite;
  -o-animation: back9 100s infinite;
  animation: back9 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(10) {
  width: 738px;
  height: 738px;
  margin-left: -369px;
  margin-top: -369px;
  border-bottom-color: #6200EA;
  -webkit-animation: move10 100s infinite;
  -moz-animation: move10 100s infinite;
  -o-animation: move10 100s infinite;
  animation: move10 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(11) {
  width: 720px;
  height: 720px;
  margin-left: -360px;
  margin-top: -360px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back11 100s infinite;
  -moz-animation: back11 100s infinite;
  -o-animation: back11 100s infinite;
  animation: back11 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(12) {
  width: 702px;
  height: 702px;
  margin-left: -351px;
  margin-top: -351px;
  border-bottom-color: #6200EA;
  -webkit-animation: move12 100s infinite;
  -moz-animation: move12 100s infinite;
  -o-animation: move12 100s infinite;
  animation: move12 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(13) {
  width: 684px;
  height: 684px;
  margin-left: -342px;
  margin-top: -342px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back13 100s infinite;
  -moz-animation: back13 100s infinite;
  -o-animation: back13 100s infinite;
  animation: back13 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(14) {
  width: 666px;
  height: 666px;
  margin-left: -333px;
  margin-top: -333px;
  border-bottom-color: #6200EA;
  -webkit-animation: move14 100s infinite;
  -moz-animation: move14 100s infinite;
  -o-animation: move14 100s infinite;
  animation: move14 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(15) {
  width: 648px;
  height: 648px;
  margin-left: -324px;
  margin-top: -324px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back15 100s infinite;
  -moz-animation: back15 100s infinite;
  -o-animation: back15 100s infinite;
  animation: back15 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(16) {
  width: 630px;
  height: 630px;
  margin-left: -315px;
  margin-top: -315px;
  border-bottom-color: #6200EA;
  -webkit-animation: move16 100s infinite;
  -moz-animation: move16 100s infinite;
  -o-animation: move16 100s infinite;
  animation: move16 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(17) {
  width: 612px;
  height: 612px;
  margin-left: -306px;
  margin-top: -306px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back17 100s infinite;
  -moz-animation: back17 100s infinite;
  -o-animation: back17 100s infinite;
  animation: back17 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(18) {
  width: 594px;
  height: 594px;
  margin-left: -297px;
  margin-top: -297px;
  border-bottom-color: #6200EA;
  -webkit-animation: move18 100s infinite;
  -moz-animation: move18 100s infinite;
  -o-animation: move18 100s infinite;
  animation: move18 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(19) {
  width: 576px;
  height: 576px;
  margin-left: -288px;
  margin-top: -288px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back19 100s infinite;
  -moz-animation: back19 100s infinite;
  -o-animation: back19 100s infinite;
  animation: back19 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(20) {
  width: 558px;
  height: 558px;
  margin-left: -279px;
  margin-top: -279px;
  border-bottom-color: #6200EA;
  -webkit-animation: move20 100s infinite;
  -moz-animation: move20 100s infinite;
  -o-animation: move20 100s infinite;
  animation: move20 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(21) {
  width: 540px;
  height: 540px;
  margin-left: -270px;
  margin-top: -270px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back21 100s infinite;
  -moz-animation: back21 100s infinite;
  -o-animation: back21 100s infinite;
  animation: back21 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(22) {
  width: 522px;
  height: 522px;
  margin-left: -261px;
  margin-top: -261px;
  border-bottom-color: #6200EA;
  -webkit-animation: move22 100s infinite;
  -moz-animation: move22 100s infinite;
  -o-animation: move22 100s infinite;
  animation: move22 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(23) {
  width: 504px;
  height: 504px;
  margin-left: -252px;
  margin-top: -252px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back23 100s infinite;
  -moz-animation: back23 100s infinite;
  -o-animation: back23 100s infinite;
  animation: back23 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(24) {
  width: 486px;
  height: 486px;
  margin-left: -243px;
  margin-top: -243px;
  border-bottom-color: #6200EA;
  -webkit-animation: move24 100s infinite;
  -moz-animation: move24 100s infinite;
  -o-animation: move24 100s infinite;
  animation: move24 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(25) {
  width: 468px;
  height: 468px;
  margin-left: -234px;
  margin-top: -234px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back25 100s infinite;
  -moz-animation: back25 100s infinite;
  -o-animation: back25 100s infinite;
  animation: back25 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(26) {
  width: 450px;
  height: 450px;
  margin-left: -225px;
  margin-top: -225px;
  border-bottom-color: #6200EA;
  -webkit-animation: move26 100s infinite;
  -moz-animation: move26 100s infinite;
  -o-animation: move26 100s infinite;
  animation: move26 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(27) {
  width: 432px;
  height: 432px;
  margin-left: -216px;
  margin-top: -216px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back27 100s infinite;
  -moz-animation: back27 100s infinite;
  -o-animation: back27 100s infinite;
  animation: back27 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(28) {
  width: 414px;
  height: 414px;
  margin-left: -207px;
  margin-top: -207px;
  border-bottom-color: #6200EA;
  -webkit-animation: move28 100s infinite;
  -moz-animation: move28 100s infinite;
  -o-animation: move28 100s infinite;
  animation: move28 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(29) {
  width: 396px;
  height: 396px;
  margin-left: -198px;
  margin-top: -198px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back29 100s infinite;
  -moz-animation: back29 100s infinite;
  -o-animation: back29 100s infinite;
  animation: back29 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(30) {
  width: 378px;
  height: 378px;
  margin-left: -189px;
  margin-top: -189px;
  border-bottom-color: #6200EA;
  -webkit-animation: move30 100s infinite;
  -moz-animation: move30 100s infinite;
  -o-animation: move30 100s infinite;
  animation: move30 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(31) {
  width: 360px;
  height: 360px;
  margin-left: -180px;
  margin-top: -180px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back31 100s infinite;
  -moz-animation: back31 100s infinite;
  -o-animation: back31 100s infinite;
  animation: back31 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(32) {
  width: 342px;
  height: 342px;
  margin-left: -171px;
  margin-top: -171px;
  border-bottom-color: #6200EA;
  -webkit-animation: move32 100s infinite;
  -moz-animation: move32 100s infinite;
  -o-animation: move32 100s infinite;
  animation: move32 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(33) {
  width: 324px;
  height: 324px;
  margin-left: -162px;
  margin-top: -162px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back33 100s infinite;
  -moz-animation: back33 100s infinite;
  -o-animation: back33 100s infinite;
  animation: back33 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(34) {
  width: 306px;
  height: 306px;
  margin-left: -153px;
  margin-top: -153px;
  border-bottom-color: #6200EA;
  -webkit-animation: move34 100s infinite;
  -moz-animation: move34 100s infinite;
  -o-animation: move34 100s infinite;
  animation: move34 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(35) {
  width: 288px;
  height: 288px;
  margin-left: -144px;
  margin-top: -144px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back35 100s infinite;
  -moz-animation: back35 100s infinite;
  -o-animation: back35 100s infinite;
  animation: back35 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(36) {
  width: 270px;
  height: 270px;
  margin-left: -135px;
  margin-top: -135px;
  border-bottom-color: #6200EA;
  -webkit-animation: move36 100s infinite;
  -moz-animation: move36 100s infinite;
  -o-animation: move36 100s infinite;
  animation: move36 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(37) {
  width: 252px;
  height: 252px;
  margin-left: -126px;
  margin-top: -126px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back37 100s infinite;
  -moz-animation: back37 100s infinite;
  -o-animation: back37 100s infinite;
  animation: back37 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(38) {
  width: 234px;
  height: 234px;
  margin-left: -117px;
  margin-top: -117px;
  border-bottom-color: #6200EA;
  -webkit-animation: move38 100s infinite;
  -moz-animation: move38 100s infinite;
  -o-animation: move38 100s infinite;
  animation: move38 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(39) {
  width: 216px;
  height: 216px;
  margin-left: -108px;
  margin-top: -108px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back39 100s infinite;
  -moz-animation: back39 100s infinite;
  -o-animation: back39 100s infinite;
  animation: back39 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(40) {
  width: 198px;
  height: 198px;
  margin-left: -99px;
  margin-top: -99px;
  border-bottom-color: #6200EA;
  -webkit-animation: move40 100s infinite;
  -moz-animation: move40 100s infinite;
  -o-animation: move40 100s infinite;
  animation: move40 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(41) {
  width: 180px;
  height: 180px;
  margin-left: -90px;
  margin-top: -90px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back41 100s infinite;
  -moz-animation: back41 100s infinite;
  -o-animation: back41 100s infinite;
  animation: back41 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(42) {
  width: 162px;
  height: 162px;
  margin-left: -81px;
  margin-top: -81px;
  border-bottom-color: #6200EA;
  -webkit-animation: move42 100s infinite;
  -moz-animation: move42 100s infinite;
  -o-animation: move42 100s infinite;
  animation: move42 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(43) {
  width: 144px;
  height: 144px;
  margin-left: -72px;
  margin-top: -72px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back43 100s infinite;
  -moz-animation: back43 100s infinite;
  -o-animation: back43 100s infinite;
  animation: back43 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(44) {
  width: 126px;
  height: 126px;
  margin-left: -63px;
  margin-top: -63px;
  border-bottom-color: #6200EA;
  -webkit-animation: move44 100s infinite;
  -moz-animation: move44 100s infinite;
  -o-animation: move44 100s infinite;
  animation: move44 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(45) {
  width: 108px;
  height: 108px;
  margin-left: -54px;
  margin-top: -54px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back45 100s infinite;
  -moz-animation: back45 100s infinite;
  -o-animation: back45 100s infinite;
  animation: back45 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(46) {
  width: 90px;
  height: 90px;
  margin-left: -45px;
  margin-top: -45px;
  border-bottom-color: #6200EA;
  -webkit-animation: move46 100s infinite;
  -moz-animation: move46 100s infinite;
  -o-animation: move46 100s infinite;
  animation: move46 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(47) {
  width: 72px;
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back47 100s infinite;
  -moz-animation: back47 100s infinite;
  -o-animation: back47 100s infinite;
  animation: back47 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(48) {
  width: 54px;
  height: 54px;
  margin-left: -27px;
  margin-top: -27px;
  border-bottom-color: #6200EA;
  -webkit-animation: move48 100s infinite;
  -moz-animation: move48 100s infinite;
  -o-animation: move48 100s infinite;
  animation: move48 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(49) {
  width: 36px;
  height: 36px;
  margin-left: -18px;
  margin-top: -18px;
  border-bottom-color: #00E5FF;
  -webkit-animation: back49 100s infinite;
  -moz-animation: back49 100s infinite;
  -o-animation: back49 100s infinite;
  animation: back49 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle:nth-child(50) {
  width: 18px;
  height: 18px;
  margin-left: -9px;
  margin-top: -9px;
  border-bottom-color: #6200EA;
  -webkit-animation: move50 100s infinite;
  -moz-animation: move50 100s infinite;
  -o-animation: move50 100s infinite;
  animation: move50 100s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear; }

.circle-wrap.paused .circle {
  animation-play-state: paused; }

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid transparent;
  border-radius: 50%; }

/*# sourceMappingURL=style.css.map */
