@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
.navigation * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
}
:root {
  --blue: #287dff;
  --white: #fff;
  --grey: #f5f5f5;
  --black1: #222;
  --black2: #999;
  --shadow: #94b1dd63;
}
.hidden {
  display: none !important;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  text-align: center;
  font-size: 1em;
}
.container {
  position: relative;
  width: 100%;
}
.navigation {
  position: fixed;
  width: 300px;
  height: 100%;
  background: var(--blue);
  border-left: 10px solid var(--blue);
  transition: 0.5s;
  overflow: hidden;
}
/* ::-webkit-scrollbar {
  width: 4px;
  background-color: #287dff3f;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue);
  border-radius: 2px;
} */
.navigation.active {
  width: 80px;
}
.navigation ul {
  position: absolute;
  top: 0;
  left: 0;
  /*width: 100%;*/
  width: calc(100% - 10px);
}
.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  cursor: pointer;
}
.navigation ul li.hovered {
  background: var(--white);
}
.navigation ul li:nth-child(1) {
  margin-bottom: 40px;
  pointer-events: none;
}
.navigation ul li .nav-elem {
  position: relative;
  width: 100%;
  /*width: calc(100% - 15px);*/
  display: flex;
  text-decoration: none;
  color: var(--white);
}
.navigation ul li.hovered .nav-elem {
  color: var(--blue);
}
.navigation ul li .nav-elem .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  top: 8px;
}
.navigation ul li .nav-elem .icon ion-icon {
  font-size: 1.75em;
}
.navigation ul li .nav-elem .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  text-align: start;
  white-space: nowrap;
}
.navigation ul li.hovered .nav-elem::before {
  content: "";
  position: absolute;
  right: 0;
  width: 50px;
  top: -50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 35px 35px 0 10px var(--white);
  pointer-events: none;
}
.navigation ul li.hovered .nav-elem::after {
  content: "";
  position: absolute;
  right: 0;
  width: 50px;
  bottom: -50px;
  height: 50px;
  background: transparent;
  border-radius: 50%;
  box-shadow: 35px -35px 0 10px var(--white);
  pointer-events: none;
}

/* main */
.main {
  position: absolute;
  padding: 0 10px;
  width: calc(100% - 300px);
  left: 300px;
  min-height: 100vh;
  background: var(--white);
  transition: 0.5s;
}
.main.active {
  width: calc(100% - 80px);
  left: 80px;
}
.topbar {
  width: calc(100% - 40px);
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  cursor: pointer;
}
.header {
  position: relative;
  width: 400px;
  margin: 0 10px;
  text-align: center;
  position: relative;
  width: 100%;
}
.header span {
  width: 100%;
  height: 40px;
  border-radius: 40px;
  padding: 5px 20px;
  outline: none;
  font-size: 1.2em;
}
.dashboard.active {
  display: block;
}
.dashboard {
  display: none;
}
.accounts.active {
  display: block;
}
.accounts {
  display: none;
  padding: 20px;
}
.products.active {
  display: block;
}
.products {
  display: none;
  padding: 20px;
}
.form-settings.active {
  display: block;
}
.form-settings {
  display: none;
}
.summary-filters.active {
  display: block;
}
.summary-filters {
  display: none;
}
.base-filters.active {
  display: block;
}
.base-filters {
  display: none;
}
.antidouble.active {
  display: block;
}
.antidouble {
  display: none;
}
.set-filters.active {
  display: block;
}
.set-filters {
  display: none;
}
.webinar-stars.active {
  display: block;
}
.webinar-stars {
  display: none;
}
button {
  width: 150px;
  height: 35px;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-family: inherit;
  font-weight: 600;
  margin: 2px;
  cursor: pointer;
}
input:not([type="checkbox"]),
textarea,
select {
  height: 20px;
  width: 220px;
  padding: 3px 7px;
  border: 2px solid var(--blue);
  border-radius: 10px;
}
input[type="checkbox"] {
  margin-right: 15px;
}
textarea {
  height: 46px;
}
select {
  height: 30px;
  width: 238px;
}
.full-width {
  width: 100%;
}
.error {
  border: 2px solid red !important;
}
.delete {
  cursor: pointer;
  color: red;
}

/* Dashboard */
.cards {
  position: relative;
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.card {
  position: relative;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  text-align: start;
}
.card .numbers {
  position: relative;
  font-weight: 500;
  font-size: 1.5em;
  color: var(--blue);
}
.card .numbers .base-state {
  font-size: 1.8em;
}
.card .card-name {
  color: var(--black2);
  font-size: 1.1em;
  margin-top: 5px;
}
.card .icon {
  font-size: 3.5em;
  color: var(--black2);
}
.false-table {
  position: relative;
  width: calc(100% - 40px);
  min-height: 300px;
  background: var(--white);
  padding: 20px;
  margin: 5px 20px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}
.false-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  text-align: start;
}
.false-table table a {
  color: inherit;
}
.false-table table thead th {
  font-weight: 600;
}
.false-table table tr {
  color: var(--black1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.false-table table tr:last-child {
  border-bottom: none;
}
.repeat {
  font-size: 22px;
  color: var(--blue);
  cursor: pointer;
}
.false-table table tbody tr:hover {
  background: var(--blue);
  color: var(--white);
}
.false-table table tbody tr:hover .repeat {
  color: var(--white);
}
.false-table table tr td {
  padding: 5px;
  overflow-wrap: anywhere;
  min-width: 75px;
}
.false-table table tr td:last-child {
  text-align: end;
  min-width: 0;
}
.false-table pre {
  margin: 0;
  background-color: var(--grey);
  color: var(--black1);
  border-radius: 5px;
  padding: 2px 10px;
  max-width: 30vw;
  overflow: auto;
}

/* Accounts */
.pipedrive {
  position: relative;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 7px 25px var(--shadow);
  border-radius: 20px;
  margin: 0 30px;
}
.pipe-approve,
.pipe-connect {
  display: flex;
  flex-wrap: wrap;
}
.pipe-fields {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px;
}
.pipe-fields input {
  width: 240px !important;
}
.pipedrive .string {
  display: flex;
}
.pipedrive .word,
.pipedrive .inputs {
  margin: 10px;
}
.word {
  font-weight: 500;
}
.word:first-child {
  text-align: start;
}
.word:last-child {
  text-align: end;
}
.pipedrive .one-btn {
  position: absolute;
  margin: 0;
  right: 50px;
  top: 45px;
  display: flex;
  gap: 24px;
}
.pipedrive input {
  width: 320px;
}
.crm-popup .crm-allStages {
  padding: 8px;
  margin-top: 16px;
  border-radius: 12px;
  box-shadow: 0 7px 25px var(--shadow);
}
.crm-popup .crm-allStages ion-icon {
  font-size: 22px;
  cursor: pointer;
}
.crm-popup #crm-pipelines {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.crm-popup .crm-pipeline {
  padding: 8px;
  border-radius: 12px;
  border: 2px solid var(--shadow);
}
.crm-popup .crm-stages {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px;
  gap: 8px;
}
.crm-popup .crm-title {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.other-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 15px;
}
.accounts-other {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
}
.connected {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.current-account {
  padding: 10px 20px;
  width: 360px;
  border-radius: 20px;
  box-shadow: 0 7px 25px var(--shadow);
  margin: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.current-account .string {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  padding: 5px 0;
}

/* Summary Filters */
.summary-filters,
.base-filters,
.set-filters,
.webinar-stars {
  position: relative;
  margin-top: 20px;
}
.summary-headers,
.product-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px 0 15px;
}
.current-summary-filters,
.current-webinars {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.current-filter,
.current-webinar {
  margin: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5px 15px;
  width: calc((100% - 65px) / 3);
  min-width: 380px;
  border-radius: 20px;
  box-shadow: 0 7px 25px var(--shadow);
}
.current-form {
  margin: 10px;
  padding: 5px 15px;
  width: calc(100% - 65px);
  border-radius: 20px;
  box-shadow: 0 7px 25px var(--shadow);
}
.current-form .form-data {
  display: grid;
  justify-content: space-around;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 15px;
  padding: 10px;
}
.current-filter .string,
.current-form .string,
.current-webinar .string {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  padding: 3px 0;
}
.current-form .string:has(button) {
  justify-content: space-evenly;
}
.current-filter .conditions,
.current-filter .actions,
.current-filter .associations,
.current-form .payments,
.current-form .contacts,
.current-form .deals,
.current-form .updDeals,
.current-form .formComment,
.current-form .payComment {
  border: 2px solid var(--shadow);
  border-radius: 10px;
  padding: 2px 5px;
  margin: 10px 0;
}
.current-filter .summary-conditions,
.current-filter .base-conditions,
.current-filter .base-actions,
.current-filter .set-conditions,
.current-filter .set-associations,
.current-form .payment-fields,
.current-form .contact-fields,
.current-form .deal-fields,
.current-form .updDeal-fields {
  padding-left: 20px;
  text-align: start;
  margin: 5px;
}
.current-form .text {
  padding: 8px;
  text-align: start;
}
/* Base Filters */
.base-headers,
.set-headers,
.form-headers,
.ws-headers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 15px;
}
.current-base-filters,
.current-set-filters,
.current-form-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.current-filter .actions,
.current-filter .associations,
.current-form .updDeals,
.current-form .formComment,
.current-form .payComment {
  margin-top: -8px;
}
.base-filter,
.set-filter,
.current-form-settings {
  overflow: auto;
  height: calc(100vh - 120px);
  width: calc(100% - 10px);
}

/* Popup Forms */
.log-page,
.account-page,
.form-page,
.summary-page,
.base-page,
.login-page,
.set-page,
.product-page,
.promocode-page,
.webinar-page,
.web-help-page,
.crm-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.log-popup,
.account-popup,
.product-popup,
.promocode-popup,
.form-popup,
.summary-popup,
.base-popup,
.login-popup,
.set-popup,
.webinar-popup,
.crm-popup {
  position: relative;
  padding: 30px 40px;
  background-color: var(--white);
  border-radius: 25px;
  border: 3px solid var(--blue);
}
.summary-popup,
.base-popup {
  width: 550px;
}
.form-popup {
  max-height: 92vh;
  width: auto;
  overflow-y: auto;
}
.contact-settings,
.deal-settings,
.payment-settings,
.updDeal-settings,
.comment-settings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-settings > div,
.deal-settings > div,
.payment-settings > div,
.updDeal-settings > div {
  width: 350px;
}
.contact-settings > div:first-child,
.deal-settings > div:first-child,
.payment-settings > div:first-child,
.updDeal-settings > div:first-child {
  width: 400px;
  padding-right: 5px;
  margin-right: 5px;
  border-right: 2px solid var(--grey);
}
.form-popup .comment-settings .inputs {
  display: grid;
  grid-gap: 4px;
  padding: 0 5px;
}
.comment-settings textarea {
  width: 320px;
}
.set-popup {
  width: 530px;
}
.popup-header {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  margin-bottom: 20px;
}
.popup-header .subtitle-base,
.popup-header .subtitle-set,
.popup-header .subtitle-form,
.popup-header .subtitle-promocode,
.popup-header .subtitle-webinar {
  margin: 0;
  font-size: 14px;
  text-align: start;
  color: var(--black2);
}
.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}
.account-popup .connection {
  width: 380px;
}
.product-popup {
  width: 500px;
}
.account-popup .inputs,
.form-popup .inputs,
.added-product .inputs,
.added-summary-filter .inputs,
.added-base-filter .inputs,
.added-set-filter .inputs,
.login-popup .inputs,
.webinar-popup .inputs,
.crm-popup .inputs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
  gap: 12px;
}
.added-base-filter .inputs.kwiga-emails {
  display: flex;
}
.added-base-filter .inputs.kwiga-emails > div {
  width: 50%;
  text-align: start;
}
.account-popup select {
  width: 100%;
  margin: 0;
}
.account-popup input {
  margin: 0;
}
.account-popup .inputs:has(button),
.product-popup .inputs:has(button),
.webinar-popup .inputs:has(button),
.crm-popup .inputs:has(button) {
  justify-content: center;
}
.added-summary-filter .conditions,
.added-base-filter .conditions,
.added-base-filter .actions,
.added-set-filter .conditions,
.added-set-filter .associations,
.form-popup .contact-settings,
.form-popup .deal-settings,
.form-popup .updDeal-settings,
.form-popup .payment-settings,
.form-popup .comment-settings,
.form-popup .task-settings,
.form-popup .notif-settings {
  border: 2px solid var(--shadow);
  border-radius: 10px;
  padding: 2px 5px;
}
.form-popup .task-settings,
.form-popup .notif-settings {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}
.form-popup .task-settings .task-block,
.form-popup .notif-settings .notif-block {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
}
.append.sendpulse-variable,
.append.getresponse-variable {
  border: 2px solid var(--shadow);
  border-radius: 10px;
}
.added-summary-filter .current-summary-condition,
.added-base-filter .current-base-condition,
.added-base-filter .current-action,
.added-set-filter .current-set-condition,
.added-set-filter .current-association,
.contact-fields .current-contact-fields,
.deal-fields .current-deal-fields,
.payment-fields .current-payment-fields,
.updDeal-fields .current-updDeal-fields,
.sp-appendList,
.gr-appendList {
  padding-left: 20px;
  text-align: start;
}
.added-summary-filter .inputs:has(button),
.added-base-filter .inputs:has(button),
.added-set-filter .inputs:has(button),
.login-popup .inputs:has(button),
.form-popup .inputs:has(button) {
  justify-content: center;
}
.base-action {
  overflow-wrap: break-word;
}
.login-popup {
  width: 450px;
}
.login-popup .showPass {
  position: absolute;
  top: 116px;
  right: 46px;
  cursor: pointer;
  font-size: 20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
.quest {
  display: inline-block;
  border: 2px solid var(--shadow);
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.help-btn {
  position: absolute;
  right: 26px;
  top: 6px;
  border-radius: 50%;
  border: 2px solid var(--black2);
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.help-text {
  display: none;
  position: absolute;
  right: -34px;
  bottom: 36px;
  border: 2px solid var(--black2);
  border-radius: 10px;
  background-color: var(--grey);
  text-align: start;
  padding: 5px;
  z-index: 999999;
}
.help-text pre {
  margin: 0;
}
.help-text p {
  margin: 3px 0;
  color: var(--black2);
}
.help-btn:hover ~ .help-text {
  display: block;
}

.product-block {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.product-elem {
  margin: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5px 15px;
  width: calc((100% - 65px) / 3);
  min-width: 400px;
  border-radius: 20px;
  box-shadow: 0 7px 25px var(--shadow);
}
.product-elem .string {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 3px 0;
}
.product-elem .header {
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
}
.product-elem .word.state-create {
  padding: 4px 12px;
  border-radius: 8px;
  background-color: #f9c922;
}
.product-elem .word.state-active {
  padding: 4px 12px;
  border-radius: 8px;
  background-color: #09ff00;
}
.product-elem .word.state-cancel {
  padding: 4px 12px;
  border-radius: 8px;
  background-color: #f92222;
}
.promocode-popup textarea {
  width: 350px;
  height: 100px;
}

.web-help-page .popup-body {
  max-height: calc(90vh - 200px);
  overflow: auto;
  width: 540px;
}
.web-help-page .webhook {
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: 8px;
  padding: 12px 0;
}
.web-help-page .webhook input {
  width: 500px;
}
.web-help-page label {
  font-size: 18px;
  font-weight: 500;
}
.web-help-page .fields {
  text-align: start;
}
.web-help-page ul p {
  margin: 2px;
  font-size: 14px;
  padding-left: 36px;
  color: var(--black2);
}

/* AntoDouble */

.ad-headers {
  padding: 20px;
  text-align: start;
  font-size: 22px;
}
.ad-block {
  margin: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 5px 15px;
  width: calc(100% - 40px);
  min-width: 400px;
  border-radius: 20px;
  box-shadow: 0 7px 25px var(--shadow);
  font-size: 18px;
  text-align: start;
}
.ad-block ul {
  list-style: none;
  padding: 0;
}
.antidouble-elem {
  display: flex;
  align-content: center;
  align-items: center;
}
.antidouble-elem span {
  padding: 6px;
  font-size: 24px;
  display: flex;
  color: var(--black2);
}
.antidouble-elem.state-off span ion-icon {
  transform: rotate(180deg);
}
.antidouble-elem.state-on span {
  color: #02bd02;
}

/* Adaptive */

@media (max-width: 1300px) {
  .current-form .form-data {
    grid-template-columns: repeat(2, 1fr);
  }
  .current-form .payments {
    margin-top: -8px;
  }
  .current-form.true-pay .dealInf {
    order: 1;
  }
  .current-form .baseInf {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 900px) {
  .current-form .form-data {
    grid-template-columns: repeat(1, 1fr);
  }
  .current-form .payments,
  .current-form .deals {
    margin-top: -8px;
  }
}
@media (max-width: 1150px) {
  .navigation {
    width: 80px;
  }
  .navigation.active {
    width: 300px;
  }
  .main {
    width: calc(100% - 80px);
    left: 80px;
  }
  .main.active {
    width: calc(100% - 300px);
    left: 300px;
  }
}
@media (max-width: 750px) {
  .base-selector {
    text-align: start;
  }
}
@media (max-width: 500px) {
  .main p,
  .main span,
  .main li,
  .main div.word,
  .main button {
    font-size: 0.8em;
  }
  .current-filter {
    min-width: 300px;
  }
  .accounts {
    padding: 0;
  }
  .pipedrive .one-btn {
    position: inherit;
  }
  .current-account {
    width: 280px;
  }
  .base-headers,
  .set-headers {
    padding: 0;
    padding-right: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

/* Loader */
.form-n-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #64b7ee54;
  backdrop-filter: blur(4px);
  z-index: 99999999;
}

.form-n-loader > div {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.form-n-loader > div:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.form-n-loader > div:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
