html,
body {
  background-color: #f2f2f2;
  font-family: "Lato", sans-serif;
  height: 100%;
}

body.development #global_sidebar, body.testing #global_sidebar {
  background-color: #b80f6a;
}
body.development .btn.btn-primary, body.testing .btn.btn-primary {
  background-color: #b80f6a;
  border-color: #b80f6a;
}
body.ios #global_sidebar, body.android #global_sidebar {
  width: 56px;
}
body.ios #global_sidebar .menu .menu_group .menu_item i, body.ios #global_sidebar .menu .menu_group .menu_item svg, body.android #global_sidebar .menu .menu_group .menu_item i, body.android #global_sidebar .menu .menu_group .menu_item svg {
  min-width: 36px;
}
body.ios #workspace_container .with_sidebar, body.android #workspace_container .with_sidebar {
  margin-left: 56px;
}

.global_notice_wrapper {
  display: flex;
  height: 0;
  width: 100%;
  position: fixed;
  top: 5px;
  left: 0;
  z-index: 999999;
  justify-content: center;
}
.global_notice_wrapper .global_notice {
  font-size: 14px;
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  min-width: 200px;
  text-align: center;
  margin-bottom: 0;
}

header {
  background-color: #222;
  display: flex;
  font-size: 14px;
  position: fixed;
  height: 44px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 15px 0 10px;
}
header .user_menu {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  margin-left: auto;
  align-items: center;
}
header .user_menu .text {
  margin-right: 5px;
}
header .user_menu a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  height: 100%;
  text-decoration: none;
  align-items: center;
  padding: 0 15px;
}
header .user_menu a:hover {
  background-color: #000;
  color: white;
}

#workspace_container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
#workspace_container .with_sidebar {
  flex: 1;
  margin-left: 200px;
}

.container-fluid {
  padding: 0 15px;
}

#global_sidebar {
  background-color: #17181b;
  width: 200px;
  height: 100%;
  position: fixed;
  left: 0;
  z-index: 999;
}
#global_sidebar .logo {
  display: flex;
  overflow: hidden;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  padding-left: 1px;
}
#global_sidebar .logo svg {
  width: 36px;
  height: 30px;
}
#global_sidebar .logo svg path {
  fill: white;
}
#global_sidebar .menu {
  font-size: 14px;
  padding: 0 10px;
}
#global_sidebar .menu .menu_group {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 0 5px;
}
#global_sidebar .menu .menu_group:first-child {
  border-top: 0 none;
}
#global_sidebar .menu .menu_group.user_menu_group {
  position: absolute;
  bottom: 15px;
  width: 100%;
}
#global_sidebar .menu .menu_group .menu_group_title {
  color: #999;
  display: none;
  font-weight: 500;
  align-items: center;
  padding-left: 5px;
  margin-bottom: 2px;
}
#global_sidebar .menu .menu_group .menu_group_title i {
  display: block;
  width: 30px;
  text-align: center;
}
#global_sidebar .menu .menu_group .menu_item {
  border-radius: 4px;
  color: #eee;
  display: flex;
  font-size: 14px;
  height: 30px;
  text-decoration: none;
  align-items: center;
  position: relative;
  margin-bottom: 5px;
}
#global_sidebar .menu .menu_group .menu_item i {
  font-size: 14px;
  margin-right: 5px;
  width: 36px;
  text-align: center;
}
#global_sidebar .menu .menu_group .menu_item .text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#global_sidebar .menu .menu_group .menu_item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#global_sidebar .menu .menu_group .menu_item.active {
  background-color: #0d6efd;
  color: #fff;
}
#global_sidebar .menu .menu_group .menu_item .count {
  background-color: #d00;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  position: absolute;
  right: 5px;
  height: 16px;
  line-height: 16px;
  padding: 0 5px;
  min-width: 16px;
}
#global_sidebar .menu .menu_group .menu_item .count.wemart {
  background-color: forestgreen;
}
#global_sidebar .menu .menu_group .secondary_menu_group .secondary_menu_item {
  border-radius: 4px;
  color: #eee;
  display: flex;
  font-size: 14px;
  height: 30px;
  text-decoration: none;
  align-items: center;
  position: relative;
  padding-left: 41px;
  margin-bottom: 5px;
}
#global_sidebar .menu .menu_group .secondary_menu_group .secondary_menu_item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#global_sidebar .menu .menu_group .secondary_menu_group .secondary_menu_item.active {
  background-color: #0d6efd;
  color: #fff;
}

#page_content {
  height: 100%;
  position: relative;
}
#page_content .page_navbar {
  background-color: #fff;
  display: flex;
  height: 40px;
  align-items: center;
}
#page_content .page_navbar .breadcrumb {
  font-size: 14px;
  margin-bottom: 0;
  padding: 0 15px;
}
#page_content .page_navbar .breadcrumb .breadcrumb-item:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#page_content .page_navbar .breadcrumb .breadcrumb-item a {
  text-decoration: none;
}
#page_content .page_header {
  background-color: #f2f2f2;
  display: flex;
  height: 50px;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 998;
}
#page_content .page_header .search_group #q_form {
  display: flex;
}
#page_content .page_header .search_group #q_form #id_field {
  margin-right: 2px;
  width: 60px;
}
#page_content .page_header .search_group #q_form #q_field {
  display: block;
  min-width: 200px;
}
#page_content .page_header .search_group #q_form button {
  margin-left: 10px;
}
#page_content .page_header .left_actions {
  display: flex;
}
#page_content .page_header .left_actions .btn {
  margin-right: 10px;
}
#page_content .page_header .right_actions {
  display: flex;
  margin-left: auto;
}
#page_content .page_header .right_actions .btn {
  min-width: 80px;
}
#page_content .page_header .right_actions a, #page_content .page_header .right_actions button, #page_content .page_header .right_actions form {
  margin-left: 5px;
}
#page_content .advanced_search_group {
  background-color: #fff;
  border: 1px solid #eee;
  display: none;
  margin-bottom: 10px;
  padding: 10px;
}
#page_content .advanced_search_group.true {
  display: block;
}

.btn {
  font-size: 14px;
  line-height: 20px;
  padding: 4px 15px;
}
.btn.btn-theme {
  background-color: #e70427;
  color: #fff;
}
.btn.btn-light {
  background-color: #fff;
  border-color: #ced4da;
}
.btn.btn-sm {
  display: flex;
  height: 30px;
  font-size: 12px;
  padding: 0 12px;
  align-items: center;
}
.btn.btn-sm i {
  font-size: 11px;
  margin-right: 10px;
}

.table {
  margin-bottom: 15px;
}
.table th.id,
.table td.id {
  width: 60px;
}
.table th.check,
.table td.check {
  width: 30px;
  padding: 0;
  text-align: center;
}
.table.thfw th {
  width: 120px;
}
.table tr {
  background-color: #fff;
}
.table tr.checked td {
  background-color: #fdd2b6;
}
.table tr:hover {
  background-color: #fef2df;
}
.table th,
.table td {
  font-size: 13px;
  padding: 5px 6px;
  line-height: 20px;
}
.table th a,
.table td a {
  text-decoration: none;
}
.table th {
  background-color: #fbfbfb;
  border: 1px solid #eee !important;
  color: #666;
  font-weight: normal;
  height: 30px;
  vertical-align: middle;
}
.table th.sort {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  cursor: pointer;
}
.table th.sort:hover {
  background-color: #f2f2f2;
  color: #000;
}
.table th.sort.asc, .table th.sort.desc {
  background-color: #e8e8e8;
  color: #000;
  font-weight: bold;
}
.table td {
  border: 1px solid #eee;
  color: #333;
  vertical-align: middle;
}
.table td.input {
  padding: 0;
}
.table td.input .form-control {
  border-radius: 0;
  border: 0 none;
  font-size: 13px;
}
.table td.input .chosen-container {
  width: 100% !important;
}
.table td.input .chosen-container .chosen-single {
  border: 0 none;
  width: 100% !important;
  min-width: 100% !important;
}
.table td.input .chosen-container .chosen-drop {
  border: 0 none;
}
.table td i.fa.fa-check {
  color: forestgreen;
}
.table td .actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.table td .actions a {
  text-decoration: none;
  margin-left: 15px;
}
.table td .actions a:first-child {
  margin-left: 0;
}
.table .inline {
  display: flex;
}
.table .inline .text {
  background-color: #f2f2f2;
  line-height: 28px;
  padding: 0 5px;
}

.status_indicator {
  border-radius: 50%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 2px;
}
.status_indicator.active {
  background-color: limegreen;
}
.status_indicator.inactive {
  background-color: red;
}

label.required::after {
  color: red;
  content: " *";
}

.attributes_block {
  display: flex;
  margin-bottom: 30px;
}
.attributes_block .attribute {
  margin-right: 30px;
}
.attributes_block .attribute .label {
  color: #789;
  font-size: 12px;
}

a {
  color: #0e55bd;
  outline: none;
  box-shadow: none;
}

.form-nav {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  padding: 0 15px;
  position: sticky;
  top: 50px;
  z-index: 998;
}
.form-nav a {
  border-bottom: 3px solid transparent;
  color: #333;
  display: block;
  font-size: 14px;
  padding: 10px 15px 7px;
  text-decoration: none;
}
.form-nav a.active {
  border-color: #e70427;
  color: #000;
}
.form-nav a.disabled {
  color: #ccc;
}
.form-nav a .counter {
  background-color: #d00;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-family: monospace;
  font-weight: bold;
  height: 16px;
  line-height: 16px;
  padding: 0 5px;
  margin-left: 2px;
}

.container-fluid {
  padding-bottom: 30px;
}

.form-section {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 15px;
  position: relative;
  z-index: 100;
}
.form-section .form-section-head {
  margin-bottom: 10px;
}
.form-section .right_actions {
  float: right;
}
.form-section .form-section-actions {
  margin-top: 5px;
}
.form-section .form-section-actions a {
  font-size: 14px;
  text-decoration: none;
}
.form-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
.form-section .form-group {
  margin-bottom: 15px;
  position: relative;
}
.form-section .form-group label {
  color: #666;
  font-size: 13px;
}
.form-section .form-group.form-inline {
  display: flex;
}
.form-section .form-group.form-inline .text {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  margin-right: 10px;
}
.form-section .form-group.form-inline .form-control,
.form-section .form-group.form-inline .form-select {
  display: inline-block;
  margin-right: 10px;
}
.form-section .form-group .table th {
  background-color: #e8e8e8;
  color: #333;
  font-weight: 500;
}
.form-section .form-group .table th label {
  color: #333;
}
.form-section .form-group .table th,
.form-section .form-group .table td {
  border-color: #ced4da !important;
}
.form-section .form-group .table th.unfillable,
.form-section .form-group .table td.unfillable {
  background-color: #f2f2f2;
}
.form-section .form-group .table .actions a {
  margin-left: 5px;
  padding: 0 2px;
}
.form-section .form-group .table input[type=checkbox] {
  margin-left: 8px;
}
.form-section .form-inline-group {
  display: flex;
}
.form-section .form-text {
  color: #666;
  font-size: 13px;
  margin-top: 10px;
}
.form-section .form-actions {
  margin-top: 30px;
}
.form-section .form-actions .btn {
  font-size: 14px;
  margin-right: 10px;
  min-width: 100px;
}
.form-section .table {
  margin-bottom: 0;
}

.modal .form-group {
  margin-bottom: 15px;
}
.modal .form-group label {
  color: #666;
  font-size: 14px;
}

select.form-control {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  height: 30px;
  padding-left: 2px;
}

.form-control,
.form-select {
  border-radius: 0;
  font-size: 14px;
  padding: 4px 6px;
  line-height: 20px;
}
.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}
.form-control.w-m,
.form-select.w-m {
  max-width: 500px;
}
.form-control.w-s,
.form-select.w-s {
  max-width: 200px;
}
.form-control.w-xs,
.form-select.w-xs {
  max-width: 100px;
}
.form-control.fillable,
.form-select.fillable {
  background-color: rgba(239, 241, 255, 0.6);
}

.pagination_group {
  background-color: #fbfbfb;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 5px 15px;
}
.pagination_group .entries_info {
  color: #666;
  font-size: 14px;
  line-height: 30px;
}
.pagination_group .entries_info b,
.pagination_group .entries_info strong {
  color: #000;
}
.pagination_group .batch_actions {
  margin-left: 30px;
}
.pagination_group .batch_actions .btn-light {
  border-color: #eee;
  color: #666;
  font-size: 14px;
}
.pagination_group .pagination_wrapper {
  margin-left: auto;
}

.pagination_wrapper {
  display: flex;
}
.pagination_wrapper .pagination {
  margin-left: auto;
  margin-bottom: 0;
}
.pagination_wrapper .pagination .page-item {
  margin-left: 5px;
}
.pagination_wrapper .pagination .page-item.active .page-link {
  border-color: #e70427;
  color: #e70427;
}
.pagination_wrapper .pagination .page-item.disabled .page-link {
  background-color: transparent;
  border-color: transparent;
  color: #ccc;
}
.pagination_wrapper .pagination .page-item .page-link {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
  color: #666;
  font-size: 14px;
  line-height: 22px;
  padding: 3px 8px;
  min-width: 30px;
  text-align: center;
}

.highlight {
  background-color: yellow;
  color: #000;
  font-weight: bold;
}

#error_explanation {
  background-color: red;
  border-radius: 4px;
  color: #fff;
  line-height: 30px;
}

form {
  position: relative;
}
.text-success {
  color: limegreen !important;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
}

.chosen-container {
  display: block;
}
.chosen-container.has_error .chosen-single {
  border-color: red !important;
}
.chosen-container .chosen-single {
  background: none;
  border-radius: 0;
  border-color: #ced4da;
  box-shadow: none;
  height: 30px;
  padding: 0 6px;
  line-height: 28px;
}
.chosen-container .chosen-drop {
  border-radius: 0;
}
.chosen-container .chosen-drop .chosen-results li.highlighted {
  background: #0d6efd;
}

h1 {
  font-size: 30px;
  margin-bottom: 30px;
}

.tile_group {
  margin-bottom: 45px;
}
.tile_group h2 {
  font-size: 20px;
  margin-bottom: 10px;
}
.tile_group .tiles {
  display: flex;
}
.tile_group .tiles .tile {
  background-color: #fff;
  border-radius: 10px;
  width: 120px;
  height: 120px;
  margin-right: 20px;
}
.tile_group .tiles .tile a {
  color: #333;
  display: flex;
  font-size: 14px;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
}
.tile_group .tiles .tile a .count {
  background-color: #d00;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  position: absolute;
  right: -8px;
  top: -8px;
  height: 24px;
  line-height: 24px;
  padding: 0 5px;
  min-width: 24px;
}
.tile_group .tiles .tile a .count.wemart {
  background-color: forestgreen;
}

input[type=text].has_error,
input[type=password].has_error,
input[type=number].has_error,
input[type=date].has_error,
input[type=datetime-local].has_error,
textarea.has_error,
select.has_error {
  border-color: red;
}

.text-danger {
  color: red !important;
}

.report_group {
  margin-bottom: 30px;
}

#authentication_login {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  display: flex;
  height: 100vh;
  overflow: hidden;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  #authentication_login {
    background-size: 1200% 400%;
  }
}
#authentication_login .circle_wrapper {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
#authentication_login .container {
  position: relative;
  z-index: 20;
}
#authentication_login .logo {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 60px;
  margin-left: 5px;
}
#authentication_login .login_form_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#authentication_login .login_form_container #login_form {
  max-width: 430px;
  width: 100%;
  padding: 30px;
  margin: 0 auto;
}
#authentication_login .login_form_container #login_form .form-group {
  margin-bottom: 15px;
}
#authentication_login .login_form_container #login_form .form-group label {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 15px;
  margin-bottom: 3px;
}
#authentication_login .login_form_container #login_form input {
  background-color: rgba(255, 255, 255, 0.5);
  border: 0 none;
  border-radius: 15px;
  height: 44px;
  line-height: 44px;
  padding: 0 15px;
}
#authentication_login .login_form_container #login_form input:focus {
  background-color: rgba(255, 255, 255, 0.85);
}
#authentication_login .login_form_container #login_form #login_button {
  background-color: #000;
  border: 0 none;
  border-radius: 15px;
  display: block;
  font-family: Nunito, sans-serif;
  height: 44px;
  line-height: 44px;
  padding: 0 15px;
  width: 100%;
  max-width: 180px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
#authentication_login .page_footer {
  position: fixed;
  left: 0;
  bottom: 30px;
  width: 100%;
}
#authentication_login .page_footer .copy {
  color: rgba(255, 255, 255, 0.5);
  font-family: Nunito, sans-serif;
  font-size: 14px;
  text-align: center;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#authentication_login .circle-container {
  position: absolute;
  transform: translateY(-10vh);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 100%;
  height: 100%;
}
#authentication_login .circle-container .circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  mix-blend-mode: screen;
  background-image: radial-gradient(hsl(180deg, 100%, 80%), hsl(180deg, 100%, 80%) 10%, hsla(180deg, 100%, 80%, 0) 56%);
  animation: fadein-frames 200ms infinite, scale-frames 2s infinite;
}
@keyframes fade-frames {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale-frames {
  0% {
    transform: scale3d(0.4, 0.4, 1);
  }
  50% {
    transform: scale3d(2.2, 2.2, 1);
  }
  100% {
    transform: scale3d(0.4, 0.4, 1);
  }
}
#authentication_login .circle-container:nth-child(1) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-1;
  animation-duration: 30741ms;
  animation-delay: 4599ms;
}
@keyframes move-frames-1 {
  from {
    transform: translate3d(75vw, 108vh, 0);
  }
  to {
    transform: translate3d(35vw, -135vh, 0);
  }
}
#authentication_login .circle-container:nth-child(1) .circle {
  animation-delay: 619ms;
}
#authentication_login .circle-container:nth-child(2) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-2;
  animation-duration: 28819ms;
  animation-delay: 26273ms;
}
@keyframes move-frames-2 {
  from {
    transform: translate3d(82vw, 105vh, 0);
  }
  to {
    transform: translate3d(71vw, -127vh, 0);
  }
}
#authentication_login .circle-container:nth-child(2) .circle {
  animation-delay: 2194ms;
}
#authentication_login .circle-container:nth-child(3) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-3;
  animation-duration: 29699ms;
  animation-delay: 9658ms;
}
@keyframes move-frames-3 {
  from {
    transform: translate3d(99vw, 103vh, 0);
  }
  to {
    transform: translate3d(93vw, -122vh, 0);
  }
}
#authentication_login .circle-container:nth-child(3) .circle {
  animation-delay: 3329ms;
}
#authentication_login .circle-container:nth-child(4) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-4;
  animation-duration: 28748ms;
  animation-delay: 22536ms;
}
@keyframes move-frames-4 {
  from {
    transform: translate3d(58vw, 101vh, 0);
  }
  to {
    transform: translate3d(49vw, -109vh, 0);
  }
}
#authentication_login .circle-container:nth-child(4) .circle {
  animation-delay: 2981ms;
}
#authentication_login .circle-container:nth-child(5) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-5;
  animation-duration: 34270ms;
  animation-delay: 28824ms;
}
@keyframes move-frames-5 {
  from {
    transform: translate3d(98vw, 107vh, 0);
  }
  to {
    transform: translate3d(93vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(5) .circle {
  animation-delay: 3255ms;
}
#authentication_login .circle-container:nth-child(6) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-6;
  animation-duration: 34598ms;
  animation-delay: 26574ms;
}
@keyframes move-frames-6 {
  from {
    transform: translate3d(87vw, 104vh, 0);
  }
  to {
    transform: translate3d(48vw, -109vh, 0);
  }
}
#authentication_login .circle-container:nth-child(6) .circle {
  animation-delay: 3127ms;
}
#authentication_login .circle-container:nth-child(7) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-7;
  animation-duration: 36207ms;
  animation-delay: 15374ms;
}
@keyframes move-frames-7 {
  from {
    transform: translate3d(69vw, 106vh, 0);
  }
  to {
    transform: translate3d(9vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(7) .circle {
  animation-delay: 2524ms;
}
#authentication_login .circle-container:nth-child(8) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-8;
  animation-duration: 34276ms;
  animation-delay: 13262ms;
}
@keyframes move-frames-8 {
  from {
    transform: translate3d(23vw, 104vh, 0);
  }
  to {
    transform: translate3d(17vw, -113vh, 0);
  }
}
#authentication_login .circle-container:nth-child(8) .circle {
  animation-delay: 2075ms;
}
#authentication_login .circle-container:nth-child(9) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-9;
  animation-duration: 33763ms;
  animation-delay: 34117ms;
}
@keyframes move-frames-9 {
  from {
    transform: translate3d(19vw, 106vh, 0);
  }
  to {
    transform: translate3d(19vw, -127vh, 0);
  }
}
#authentication_login .circle-container:nth-child(9) .circle {
  animation-delay: 1923ms;
}
#authentication_login .circle-container:nth-child(10) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-10;
  animation-duration: 34794ms;
  animation-delay: 11081ms;
}
@keyframes move-frames-10 {
  from {
    transform: translate3d(85vw, 106vh, 0);
  }
  to {
    transform: translate3d(24vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(10) .circle {
  animation-delay: 3091ms;
}
#authentication_login .circle-container:nth-child(11) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-11;
  animation-duration: 31025ms;
  animation-delay: 20107ms;
}
@keyframes move-frames-11 {
  from {
    transform: translate3d(26vw, 108vh, 0);
  }
  to {
    transform: translate3d(86vw, -120vh, 0);
  }
}
#authentication_login .circle-container:nth-child(11) .circle {
  animation-delay: 2448ms;
}
#authentication_login .circle-container:nth-child(12) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-12;
  animation-duration: 29309ms;
  animation-delay: 30461ms;
}
@keyframes move-frames-12 {
  from {
    transform: translate3d(50vw, 108vh, 0);
  }
  to {
    transform: translate3d(95vw, -116vh, 0);
  }
}
#authentication_login .circle-container:nth-child(12) .circle {
  animation-delay: 2748ms;
}
#authentication_login .circle-container:nth-child(13) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-13;
  animation-duration: 29643ms;
  animation-delay: 119ms;
}
@keyframes move-frames-13 {
  from {
    transform: translate3d(26vw, 107vh, 0);
  }
  to {
    transform: translate3d(91vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(13) .circle {
  animation-delay: 1262ms;
}
#authentication_login .circle-container:nth-child(14) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-14;
  animation-duration: 35163ms;
  animation-delay: 29414ms;
}
@keyframes move-frames-14 {
  from {
    transform: translate3d(1vw, 104vh, 0);
  }
  to {
    transform: translate3d(63vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(14) .circle {
  animation-delay: 584ms;
}
#authentication_login .circle-container:nth-child(15) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-15;
  animation-duration: 28517ms;
  animation-delay: 12863ms;
}
@keyframes move-frames-15 {
  from {
    transform: translate3d(80vw, 105vh, 0);
  }
  to {
    transform: translate3d(51vw, -106vh, 0);
  }
}
#authentication_login .circle-container:nth-child(15) .circle {
  animation-delay: 3418ms;
}
#authentication_login .circle-container:nth-child(16) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-16;
  animation-duration: 34570ms;
  animation-delay: 25892ms;
}
@keyframes move-frames-16 {
  from {
    transform: translate3d(7vw, 110vh, 0);
  }
  to {
    transform: translate3d(63vw, -140vh, 0);
  }
}
#authentication_login .circle-container:nth-child(16) .circle {
  animation-delay: 2722ms;
}
#authentication_login .circle-container:nth-child(17) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-17;
  animation-duration: 29511ms;
  animation-delay: 9318ms;
}
@keyframes move-frames-17 {
  from {
    transform: translate3d(34vw, 109vh, 0);
  }
  to {
    transform: translate3d(68vw, -126vh, 0);
  }
}
#authentication_login .circle-container:nth-child(17) .circle {
  animation-delay: 2474ms;
}
#authentication_login .circle-container:nth-child(18) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-18;
  animation-duration: 33883ms;
  animation-delay: 28092ms;
}
@keyframes move-frames-18 {
  from {
    transform: translate3d(82vw, 104vh, 0);
  }
  to {
    transform: translate3d(59vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(18) .circle {
  animation-delay: 1148ms;
}
#authentication_login .circle-container:nth-child(19) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-19;
  animation-duration: 33139ms;
  animation-delay: 35168ms;
}
@keyframes move-frames-19 {
  from {
    transform: translate3d(76vw, 110vh, 0);
  }
  to {
    transform: translate3d(86vw, -116vh, 0);
  }
}
#authentication_login .circle-container:nth-child(19) .circle {
  animation-delay: 2989ms;
}
#authentication_login .circle-container:nth-child(20) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-20;
  animation-duration: 33825ms;
  animation-delay: 14122ms;
}
@keyframes move-frames-20 {
  from {
    transform: translate3d(64vw, 102vh, 0);
  }
  to {
    transform: translate3d(68vw, -126vh, 0);
  }
}
#authentication_login .circle-container:nth-child(20) .circle {
  animation-delay: 861ms;
}
#authentication_login .circle-container:nth-child(21) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-21;
  animation-duration: 28878ms;
  animation-delay: 19008ms;
}
@keyframes move-frames-21 {
  from {
    transform: translate3d(31vw, 102vh, 0);
  }
  to {
    transform: translate3d(38vw, -118vh, 0);
  }
}
#authentication_login .circle-container:nth-child(21) .circle {
  animation-delay: 995ms;
}
#authentication_login .circle-container:nth-child(22) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-22;
  animation-duration: 29273ms;
  animation-delay: 10290ms;
}
@keyframes move-frames-22 {
  from {
    transform: translate3d(4vw, 104vh, 0);
  }
  to {
    transform: translate3d(17vw, -114vh, 0);
  }
}
#authentication_login .circle-container:nth-child(22) .circle {
  animation-delay: 3855ms;
}
#authentication_login .circle-container:nth-child(23) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-23;
  animation-duration: 31570ms;
  animation-delay: 35133ms;
}
@keyframes move-frames-23 {
  from {
    transform: translate3d(82vw, 109vh, 0);
  }
  to {
    transform: translate3d(28vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(23) .circle {
  animation-delay: 546ms;
}
#authentication_login .circle-container:nth-child(24) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-24;
  animation-duration: 30321ms;
  animation-delay: 17618ms;
}
@keyframes move-frames-24 {
  from {
    transform: translate3d(49vw, 105vh, 0);
  }
  to {
    transform: translate3d(83vw, -113vh, 0);
  }
}
#authentication_login .circle-container:nth-child(24) .circle {
  animation-delay: 2346ms;
}
#authentication_login .circle-container:nth-child(25) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-25;
  animation-duration: 29603ms;
  animation-delay: 28923ms;
}
@keyframes move-frames-25 {
  from {
    transform: translate3d(92vw, 103vh, 0);
  }
  to {
    transform: translate3d(49vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(25) .circle {
  animation-delay: 3812ms;
}
#authentication_login .circle-container:nth-child(26) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-26;
  animation-duration: 30053ms;
  animation-delay: 23203ms;
}
@keyframes move-frames-26 {
  from {
    transform: translate3d(71vw, 103vh, 0);
  }
  to {
    transform: translate3d(100vw, -105vh, 0);
  }
}
#authentication_login .circle-container:nth-child(26) .circle {
  animation-delay: 944ms;
}
#authentication_login .circle-container:nth-child(27) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-27;
  animation-duration: 36481ms;
  animation-delay: 33631ms;
}
@keyframes move-frames-27 {
  from {
    transform: translate3d(33vw, 106vh, 0);
  }
  to {
    transform: translate3d(99vw, -107vh, 0);
  }
}
#authentication_login .circle-container:nth-child(27) .circle {
  animation-delay: 747ms;
}
#authentication_login .circle-container:nth-child(28) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-28;
  animation-duration: 33348ms;
  animation-delay: 8605ms;
}
@keyframes move-frames-28 {
  from {
    transform: translate3d(17vw, 108vh, 0);
  }
  to {
    transform: translate3d(91vw, -134vh, 0);
  }
}
#authentication_login .circle-container:nth-child(28) .circle {
  animation-delay: 2925ms;
}
#authentication_login .circle-container:nth-child(29) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-29;
  animation-duration: 36136ms;
  animation-delay: 34243ms;
}
@keyframes move-frames-29 {
  from {
    transform: translate3d(5vw, 102vh, 0);
  }
  to {
    transform: translate3d(92vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(29) .circle {
  animation-delay: 220ms;
}
#authentication_login .circle-container:nth-child(30) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-30;
  animation-duration: 30784ms;
  animation-delay: 6370ms;
}
@keyframes move-frames-30 {
  from {
    transform: translate3d(9vw, 104vh, 0);
  }
  to {
    transform: translate3d(53vw, -131vh, 0);
  }
}
#authentication_login .circle-container:nth-child(30) .circle {
  animation-delay: 3916ms;
}
#authentication_login .circle-container:nth-child(31) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-31;
  animation-duration: 31393ms;
  animation-delay: 36958ms;
}
@keyframes move-frames-31 {
  from {
    transform: translate3d(49vw, 105vh, 0);
  }
  to {
    transform: translate3d(6vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(31) .circle {
  animation-delay: 2626ms;
}
#authentication_login .circle-container:nth-child(32) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-32;
  animation-duration: 30240ms;
  animation-delay: 5065ms;
}
@keyframes move-frames-32 {
  from {
    transform: translate3d(58vw, 108vh, 0);
  }
  to {
    transform: translate3d(68vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(32) .circle {
  animation-delay: 1755ms;
}
#authentication_login .circle-container:nth-child(33) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-33;
  animation-duration: 28746ms;
  animation-delay: 20602ms;
}
@keyframes move-frames-33 {
  from {
    transform: translate3d(83vw, 107vh, 0);
  }
  to {
    transform: translate3d(83vw, -114vh, 0);
  }
}
#authentication_login .circle-container:nth-child(33) .circle {
  animation-delay: 3206ms;
}
#authentication_login .circle-container:nth-child(34) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-34;
  animation-duration: 36036ms;
  animation-delay: 3408ms;
}
@keyframes move-frames-34 {
  from {
    transform: translate3d(16vw, 105vh, 0);
  }
  to {
    transform: translate3d(8vw, -129vh, 0);
  }
}
#authentication_login .circle-container:nth-child(34) .circle {
  animation-delay: 3385ms;
}
#authentication_login .circle-container:nth-child(35) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-35;
  animation-duration: 32921ms;
  animation-delay: 3016ms;
}
@keyframes move-frames-35 {
  from {
    transform: translate3d(53vw, 106vh, 0);
  }
  to {
    transform: translate3d(17vw, -130vh, 0);
  }
}
#authentication_login .circle-container:nth-child(35) .circle {
  animation-delay: 873ms;
}
#authentication_login .circle-container:nth-child(36) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-36;
  animation-duration: 33332ms;
  animation-delay: 15835ms;
}
@keyframes move-frames-36 {
  from {
    transform: translate3d(73vw, 104vh, 0);
  }
  to {
    transform: translate3d(40vw, -108vh, 0);
  }
}
#authentication_login .circle-container:nth-child(36) .circle {
  animation-delay: 552ms;
}
#authentication_login .circle-container:nth-child(37) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-37;
  animation-duration: 34824ms;
  animation-delay: 22061ms;
}
@keyframes move-frames-37 {
  from {
    transform: translate3d(26vw, 107vh, 0);
  }
  to {
    transform: translate3d(44vw, -123vh, 0);
  }
}
#authentication_login .circle-container:nth-child(37) .circle {
  animation-delay: 3350ms;
}
#authentication_login .circle-container:nth-child(38) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-38;
  animation-duration: 31713ms;
  animation-delay: 4439ms;
}
@keyframes move-frames-38 {
  from {
    transform: translate3d(13vw, 107vh, 0);
  }
  to {
    transform: translate3d(39vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(38) .circle {
  animation-delay: 1722ms;
}
#authentication_login .circle-container:nth-child(39) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-39;
  animation-duration: 35185ms;
  animation-delay: 24450ms;
}
@keyframes move-frames-39 {
  from {
    transform: translate3d(50vw, 108vh, 0);
  }
  to {
    transform: translate3d(66vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(39) .circle {
  animation-delay: 796ms;
}
#authentication_login .circle-container:nth-child(40) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-40;
  animation-duration: 31964ms;
  animation-delay: 4419ms;
}
@keyframes move-frames-40 {
  from {
    transform: translate3d(83vw, 103vh, 0);
  }
  to {
    transform: translate3d(38vw, -128vh, 0);
  }
}
#authentication_login .circle-container:nth-child(40) .circle {
  animation-delay: 3624ms;
}
#authentication_login .circle-container:nth-child(41) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-41;
  animation-duration: 31326ms;
  animation-delay: 12107ms;
}
@keyframes move-frames-41 {
  from {
    transform: translate3d(30vw, 106vh, 0);
  }
  to {
    transform: translate3d(25vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(41) .circle {
  animation-delay: 2401ms;
}
#authentication_login .circle-container:nth-child(42) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-42;
  animation-duration: 31764ms;
  animation-delay: 9856ms;
}
@keyframes move-frames-42 {
  from {
    transform: translate3d(81vw, 107vh, 0);
  }
  to {
    transform: translate3d(88vw, -126vh, 0);
  }
}
#authentication_login .circle-container:nth-child(42) .circle {
  animation-delay: 436ms;
}
#authentication_login .circle-container:nth-child(43) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-43;
  animation-duration: 34636ms;
  animation-delay: 18223ms;
}
@keyframes move-frames-43 {
  from {
    transform: translate3d(58vw, 110vh, 0);
  }
  to {
    transform: translate3d(82vw, -124vh, 0);
  }
}
#authentication_login .circle-container:nth-child(43) .circle {
  animation-delay: 2522ms;
}
#authentication_login .circle-container:nth-child(44) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-44;
  animation-duration: 33964ms;
  animation-delay: 8613ms;
}
@keyframes move-frames-44 {
  from {
    transform: translate3d(78vw, 103vh, 0);
  }
  to {
    transform: translate3d(24vw, -117vh, 0);
  }
}
#authentication_login .circle-container:nth-child(44) .circle {
  animation-delay: 3498ms;
}
#authentication_login .circle-container:nth-child(45) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-45;
  animation-duration: 29038ms;
  animation-delay: 16106ms;
}
@keyframes move-frames-45 {
  from {
    transform: translate3d(40vw, 105vh, 0);
  }
  to {
    transform: translate3d(62vw, -130vh, 0);
  }
}
#authentication_login .circle-container:nth-child(45) .circle {
  animation-delay: 2823ms;
}
#authentication_login .circle-container:nth-child(46) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-46;
  animation-duration: 35869ms;
  animation-delay: 21280ms;
}
@keyframes move-frames-46 {
  from {
    transform: translate3d(35vw, 105vh, 0);
  }
  to {
    transform: translate3d(93vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(46) .circle {
  animation-delay: 1281ms;
}
#authentication_login .circle-container:nth-child(47) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-47;
  animation-duration: 35038ms;
  animation-delay: 35431ms;
}
@keyframes move-frames-47 {
  from {
    transform: translate3d(98vw, 109vh, 0);
  }
  to {
    transform: translate3d(59vw, -131vh, 0);
  }
}
#authentication_login .circle-container:nth-child(47) .circle {
  animation-delay: 1390ms;
}
#authentication_login .circle-container:nth-child(48) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-48;
  animation-duration: 32376ms;
  animation-delay: 8212ms;
}
@keyframes move-frames-48 {
  from {
    transform: translate3d(19vw, 104vh, 0);
  }
  to {
    transform: translate3d(58vw, -134vh, 0);
  }
}
#authentication_login .circle-container:nth-child(48) .circle {
  animation-delay: 4000ms;
}
#authentication_login .circle-container:nth-child(49) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-49;
  animation-duration: 28011ms;
  animation-delay: 13343ms;
}
@keyframes move-frames-49 {
  from {
    transform: translate3d(40vw, 108vh, 0);
  }
  to {
    transform: translate3d(65vw, -114vh, 0);
  }
}
#authentication_login .circle-container:nth-child(49) .circle {
  animation-delay: 2152ms;
}
#authentication_login .circle-container:nth-child(50) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-50;
  animation-duration: 31703ms;
  animation-delay: 16215ms;
}
@keyframes move-frames-50 {
  from {
    transform: translate3d(28vw, 101vh, 0);
  }
  to {
    transform: translate3d(33vw, -124vh, 0);
  }
}
#authentication_login .circle-container:nth-child(50) .circle {
  animation-delay: 3059ms;
}
#authentication_login .circle-container:nth-child(51) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-51;
  animation-duration: 34535ms;
  animation-delay: 17718ms;
}
@keyframes move-frames-51 {
  from {
    transform: translate3d(90vw, 104vh, 0);
  }
  to {
    transform: translate3d(10vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(51) .circle {
  animation-delay: 3748ms;
}
#authentication_login .circle-container:nth-child(52) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-52;
  animation-duration: 28873ms;
  animation-delay: 34514ms;
}
@keyframes move-frames-52 {
  from {
    transform: translate3d(98vw, 109vh, 0);
  }
  to {
    transform: translate3d(60vw, -114vh, 0);
  }
}
#authentication_login .circle-container:nth-child(52) .circle {
  animation-delay: 3527ms;
}
#authentication_login .circle-container:nth-child(53) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-53;
  animation-duration: 30514ms;
  animation-delay: 6309ms;
}
@keyframes move-frames-53 {
  from {
    transform: translate3d(18vw, 107vh, 0);
  }
  to {
    transform: translate3d(17vw, -122vh, 0);
  }
}
#authentication_login .circle-container:nth-child(53) .circle {
  animation-delay: 3912ms;
}
#authentication_login .circle-container:nth-child(54) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-54;
  animation-duration: 30052ms;
  animation-delay: 22021ms;
}
@keyframes move-frames-54 {
  from {
    transform: translate3d(89vw, 107vh, 0);
  }
  to {
    transform: translate3d(94vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(54) .circle {
  animation-delay: 2939ms;
}
#authentication_login .circle-container:nth-child(55) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-55;
  animation-duration: 28252ms;
  animation-delay: 5252ms;
}
@keyframes move-frames-55 {
  from {
    transform: translate3d(55vw, 108vh, 0);
  }
  to {
    transform: translate3d(100vw, -118vh, 0);
  }
}
#authentication_login .circle-container:nth-child(55) .circle {
  animation-delay: 2774ms;
}
#authentication_login .circle-container:nth-child(56) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-56;
  animation-duration: 36000ms;
  animation-delay: 27404ms;
}
@keyframes move-frames-56 {
  from {
    transform: translate3d(21vw, 110vh, 0);
  }
  to {
    transform: translate3d(10vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(56) .circle {
  animation-delay: 2244ms;
}
#authentication_login .circle-container:nth-child(57) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-57;
  animation-duration: 29939ms;
  animation-delay: 22693ms;
}
@keyframes move-frames-57 {
  from {
    transform: translate3d(92vw, 105vh, 0);
  }
  to {
    transform: translate3d(98vw, -129vh, 0);
  }
}
#authentication_login .circle-container:nth-child(57) .circle {
  animation-delay: 2661ms;
}
#authentication_login .circle-container:nth-child(58) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-58;
  animation-duration: 33594ms;
  animation-delay: 9217ms;
}
@keyframes move-frames-58 {
  from {
    transform: translate3d(88vw, 101vh, 0);
  }
  to {
    transform: translate3d(14vw, -121vh, 0);
  }
}
#authentication_login .circle-container:nth-child(58) .circle {
  animation-delay: 468ms;
}
#authentication_login .circle-container:nth-child(59) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-59;
  animation-duration: 28192ms;
  animation-delay: 2135ms;
}
@keyframes move-frames-59 {
  from {
    transform: translate3d(71vw, 106vh, 0);
  }
  to {
    transform: translate3d(36vw, -121vh, 0);
  }
}
#authentication_login .circle-container:nth-child(59) .circle {
  animation-delay: 173ms;
}
#authentication_login .circle-container:nth-child(60) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-60;
  animation-duration: 33968ms;
  animation-delay: 28205ms;
}
@keyframes move-frames-60 {
  from {
    transform: translate3d(41vw, 110vh, 0);
  }
  to {
    transform: translate3d(93vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(60) .circle {
  animation-delay: 2150ms;
}
#authentication_login .circle-container:nth-child(61) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-61;
  animation-duration: 35622ms;
  animation-delay: 15720ms;
}
@keyframes move-frames-61 {
  from {
    transform: translate3d(92vw, 109vh, 0);
  }
  to {
    transform: translate3d(17vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(61) .circle {
  animation-delay: 3937ms;
}
#authentication_login .circle-container:nth-child(62) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-62;
  animation-duration: 30660ms;
  animation-delay: 7929ms;
}
@keyframes move-frames-62 {
  from {
    transform: translate3d(44vw, 101vh, 0);
  }
  to {
    transform: translate3d(96vw, -126vh, 0);
  }
}
#authentication_login .circle-container:nth-child(62) .circle {
  animation-delay: 1749ms;
}
#authentication_login .circle-container:nth-child(63) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-63;
  animation-duration: 36684ms;
  animation-delay: 7288ms;
}
@keyframes move-frames-63 {
  from {
    transform: translate3d(71vw, 101vh, 0);
  }
  to {
    transform: translate3d(58vw, -117vh, 0);
  }
}
#authentication_login .circle-container:nth-child(63) .circle {
  animation-delay: 1696ms;
}
#authentication_login .circle-container:nth-child(64) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-64;
  animation-duration: 34363ms;
  animation-delay: 16606ms;
}
@keyframes move-frames-64 {
  from {
    transform: translate3d(27vw, 105vh, 0);
  }
  to {
    transform: translate3d(47vw, -108vh, 0);
  }
}
#authentication_login .circle-container:nth-child(64) .circle {
  animation-delay: 898ms;
}
#authentication_login .circle-container:nth-child(65) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-65;
  animation-duration: 30304ms;
  animation-delay: 24205ms;
}
@keyframes move-frames-65 {
  from {
    transform: translate3d(91vw, 105vh, 0);
  }
  to {
    transform: translate3d(64vw, -122vh, 0);
  }
}
#authentication_login .circle-container:nth-child(65) .circle {
  animation-delay: 3433ms;
}
#authentication_login .circle-container:nth-child(66) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-66;
  animation-duration: 35164ms;
  animation-delay: 33068ms;
}
@keyframes move-frames-66 {
  from {
    transform: translate3d(36vw, 102vh, 0);
  }
  to {
    transform: translate3d(66vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(66) .circle {
  animation-delay: 390ms;
}
#authentication_login .circle-container:nth-child(67) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-67;
  animation-duration: 32937ms;
  animation-delay: 13960ms;
}
@keyframes move-frames-67 {
  from {
    transform: translate3d(51vw, 102vh, 0);
  }
  to {
    transform: translate3d(92vw, -107vh, 0);
  }
}
#authentication_login .circle-container:nth-child(67) .circle {
  animation-delay: 3574ms;
}
#authentication_login .circle-container:nth-child(68) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-68;
  animation-duration: 36710ms;
  animation-delay: 6420ms;
}
@keyframes move-frames-68 {
  from {
    transform: translate3d(78vw, 105vh, 0);
  }
  to {
    transform: translate3d(67vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(68) .circle {
  animation-delay: 658ms;
}
#authentication_login .circle-container:nth-child(69) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-69;
  animation-duration: 34108ms;
  animation-delay: 12708ms;
}
@keyframes move-frames-69 {
  from {
    transform: translate3d(90vw, 106vh, 0);
  }
  to {
    transform: translate3d(65vw, -109vh, 0);
  }
}
#authentication_login .circle-container:nth-child(69) .circle {
  animation-delay: 3668ms;
}
#authentication_login .circle-container:nth-child(70) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-70;
  animation-duration: 35916ms;
  animation-delay: 29509ms;
}
@keyframes move-frames-70 {
  from {
    transform: translate3d(32vw, 102vh, 0);
  }
  to {
    transform: translate3d(58vw, -114vh, 0);
  }
}
#authentication_login .circle-container:nth-child(70) .circle {
  animation-delay: 3097ms;
}
#authentication_login .circle-container:nth-child(71) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-71;
  animation-duration: 30018ms;
  animation-delay: 27198ms;
}
@keyframes move-frames-71 {
  from {
    transform: translate3d(77vw, 108vh, 0);
  }
  to {
    transform: translate3d(91vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(71) .circle {
  animation-delay: 176ms;
}
#authentication_login .circle-container:nth-child(72) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-72;
  animation-duration: 33867ms;
  animation-delay: 7194ms;
}
@keyframes move-frames-72 {
  from {
    transform: translate3d(21vw, 101vh, 0);
  }
  to {
    transform: translate3d(56vw, -107vh, 0);
  }
}
#authentication_login .circle-container:nth-child(72) .circle {
  animation-delay: 3743ms;
}
#authentication_login .circle-container:nth-child(73) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-73;
  animation-duration: 31880ms;
  animation-delay: 15174ms;
}
@keyframes move-frames-73 {
  from {
    transform: translate3d(7vw, 103vh, 0);
  }
  to {
    transform: translate3d(24vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(73) .circle {
  animation-delay: 3710ms;
}
#authentication_login .circle-container:nth-child(74) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-74;
  animation-duration: 29824ms;
  animation-delay: 36306ms;
}
@keyframes move-frames-74 {
  from {
    transform: translate3d(12vw, 106vh, 0);
  }
  to {
    transform: translate3d(5vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(74) .circle {
  animation-delay: 346ms;
}
#authentication_login .circle-container:nth-child(75) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-75;
  animation-duration: 33591ms;
  animation-delay: 13857ms;
}
@keyframes move-frames-75 {
  from {
    transform: translate3d(58vw, 104vh, 0);
  }
  to {
    transform: translate3d(35vw, -113vh, 0);
  }
}
#authentication_login .circle-container:nth-child(75) .circle {
  animation-delay: 3541ms;
}
#authentication_login .circle-container:nth-child(76) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-76;
  animation-duration: 35724ms;
  animation-delay: 24672ms;
}
@keyframes move-frames-76 {
  from {
    transform: translate3d(92vw, 101vh, 0);
  }
  to {
    transform: translate3d(97vw, -117vh, 0);
  }
}
#authentication_login .circle-container:nth-child(76) .circle {
  animation-delay: 1446ms;
}
#authentication_login .circle-container:nth-child(77) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-77;
  animation-duration: 36653ms;
  animation-delay: 1457ms;
}
@keyframes move-frames-77 {
  from {
    transform: translate3d(70vw, 102vh, 0);
  }
  to {
    transform: translate3d(51vw, -121vh, 0);
  }
}
#authentication_login .circle-container:nth-child(77) .circle {
  animation-delay: 2050ms;
}
#authentication_login .circle-container:nth-child(78) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-78;
  animation-duration: 32075ms;
  animation-delay: 5580ms;
}
@keyframes move-frames-78 {
  from {
    transform: translate3d(10vw, 101vh, 0);
  }
  to {
    transform: translate3d(23vw, -131vh, 0);
  }
}
#authentication_login .circle-container:nth-child(78) .circle {
  animation-delay: 2354ms;
}
#authentication_login .circle-container:nth-child(79) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-79;
  animation-duration: 31490ms;
  animation-delay: 14897ms;
}
@keyframes move-frames-79 {
  from {
    transform: translate3d(2vw, 101vh, 0);
  }
  to {
    transform: translate3d(33vw, -116vh, 0);
  }
}
#authentication_login .circle-container:nth-child(79) .circle {
  animation-delay: 2897ms;
}
#authentication_login .circle-container:nth-child(80) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-80;
  animation-duration: 36814ms;
  animation-delay: 14245ms;
}
@keyframes move-frames-80 {
  from {
    transform: translate3d(18vw, 109vh, 0);
  }
  to {
    transform: translate3d(31vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(80) .circle {
  animation-delay: 1866ms;
}
#authentication_login .circle-container:nth-child(81) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-81;
  animation-duration: 36236ms;
  animation-delay: 2961ms;
}
@keyframes move-frames-81 {
  from {
    transform: translate3d(95vw, 104vh, 0);
  }
  to {
    transform: translate3d(46vw, -106vh, 0);
  }
}
#authentication_login .circle-container:nth-child(81) .circle {
  animation-delay: 780ms;
}
#authentication_login .circle-container:nth-child(82) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-82;
  animation-duration: 32444ms;
  animation-delay: 1195ms;
}
@keyframes move-frames-82 {
  from {
    transform: translate3d(74vw, 103vh, 0);
  }
  to {
    transform: translate3d(60vw, -130vh, 0);
  }
}
#authentication_login .circle-container:nth-child(82) .circle {
  animation-delay: 3805ms;
}
#authentication_login .circle-container:nth-child(83) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-83;
  animation-duration: 33652ms;
  animation-delay: 27910ms;
}
@keyframes move-frames-83 {
  from {
    transform: translate3d(62vw, 105vh, 0);
  }
  to {
    transform: translate3d(29vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(83) .circle {
  animation-delay: 2020ms;
}
#authentication_login .circle-container:nth-child(84) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-84;
  animation-duration: 33063ms;
  animation-delay: 28931ms;
}
@keyframes move-frames-84 {
  from {
    transform: translate3d(67vw, 105vh, 0);
  }
  to {
    transform: translate3d(35vw, -126vh, 0);
  }
}
#authentication_login .circle-container:nth-child(84) .circle {
  animation-delay: 2086ms;
}
#authentication_login .circle-container:nth-child(85) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-85;
  animation-duration: 31042ms;
  animation-delay: 31236ms;
}
@keyframes move-frames-85 {
  from {
    transform: translate3d(72vw, 102vh, 0);
  }
  to {
    transform: translate3d(18vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(85) .circle {
  animation-delay: 3899ms;
}
#authentication_login .circle-container:nth-child(86) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-86;
  animation-duration: 31221ms;
  animation-delay: 2179ms;
}
@keyframes move-frames-86 {
  from {
    transform: translate3d(39vw, 109vh, 0);
  }
  to {
    transform: translate3d(99vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(86) .circle {
  animation-delay: 3124ms;
}
#authentication_login .circle-container:nth-child(87) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-87;
  animation-duration: 33277ms;
  animation-delay: 28273ms;
}
@keyframes move-frames-87 {
  from {
    transform: translate3d(21vw, 104vh, 0);
  }
  to {
    transform: translate3d(57vw, -133vh, 0);
  }
}
#authentication_login .circle-container:nth-child(87) .circle {
  animation-delay: 1368ms;
}
#authentication_login .circle-container:nth-child(88) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-88;
  animation-duration: 34249ms;
  animation-delay: 12189ms;
}
@keyframes move-frames-88 {
  from {
    transform: translate3d(79vw, 103vh, 0);
  }
  to {
    transform: translate3d(61vw, -106vh, 0);
  }
}
#authentication_login .circle-container:nth-child(88) .circle {
  animation-delay: 3315ms;
}
#authentication_login .circle-container:nth-child(89) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-89;
  animation-duration: 36976ms;
  animation-delay: 31747ms;
}
@keyframes move-frames-89 {
  from {
    transform: translate3d(90vw, 109vh, 0);
  }
  to {
    transform: translate3d(58vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(89) .circle {
  animation-delay: 2623ms;
}
#authentication_login .circle-container:nth-child(90) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-90;
  animation-duration: 34301ms;
  animation-delay: 20047ms;
}
@keyframes move-frames-90 {
  from {
    transform: translate3d(20vw, 102vh, 0);
  }
  to {
    transform: translate3d(82vw, -114vh, 0);
  }
}
#authentication_login .circle-container:nth-child(90) .circle {
  animation-delay: 3400ms;
}
#authentication_login .circle-container:nth-child(91) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-91;
  animation-duration: 31505ms;
  animation-delay: 30216ms;
}
@keyframes move-frames-91 {
  from {
    transform: translate3d(67vw, 101vh, 0);
  }
  to {
    transform: translate3d(61vw, -104vh, 0);
  }
}
#authentication_login .circle-container:nth-child(91) .circle {
  animation-delay: 1866ms;
}
#authentication_login .circle-container:nth-child(92) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-92;
  animation-duration: 34786ms;
  animation-delay: 24220ms;
}
@keyframes move-frames-92 {
  from {
    transform: translate3d(97vw, 106vh, 0);
  }
  to {
    transform: translate3d(84vw, -128vh, 0);
  }
}
#authentication_login .circle-container:nth-child(92) .circle {
  animation-delay: 2254ms;
}
#authentication_login .circle-container:nth-child(93) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-93;
  animation-duration: 33707ms;
  animation-delay: 18102ms;
}
@keyframes move-frames-93 {
  from {
    transform: translate3d(38vw, 103vh, 0);
  }
  to {
    transform: translate3d(71vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(93) .circle {
  animation-delay: 3205ms;
}
#authentication_login .circle-container:nth-child(94) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-94;
  animation-duration: 35065ms;
  animation-delay: 32229ms;
}
@keyframes move-frames-94 {
  from {
    transform: translate3d(67vw, 108vh, 0);
  }
  to {
    transform: translate3d(94vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(94) .circle {
  animation-delay: 1778ms;
}
#authentication_login .circle-container:nth-child(95) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-95;
  animation-duration: 35078ms;
  animation-delay: 24054ms;
}
@keyframes move-frames-95 {
  from {
    transform: translate3d(7vw, 106vh, 0);
  }
  to {
    transform: translate3d(25vw, -136vh, 0);
  }
}
#authentication_login .circle-container:nth-child(95) .circle {
  animation-delay: 2598ms;
}
#authentication_login .circle-container:nth-child(96) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-96;
  animation-duration: 29893ms;
  animation-delay: 21794ms;
}
@keyframes move-frames-96 {
  from {
    transform: translate3d(65vw, 102vh, 0);
  }
  to {
    transform: translate3d(15vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(96) .circle {
  animation-delay: 3977ms;
}
#authentication_login .circle-container:nth-child(97) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-97;
  animation-duration: 30739ms;
  animation-delay: 528ms;
}
@keyframes move-frames-97 {
  from {
    transform: translate3d(67vw, 107vh, 0);
  }
  to {
    transform: translate3d(79vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(97) .circle {
  animation-delay: 1086ms;
}
#authentication_login .circle-container:nth-child(98) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-98;
  animation-duration: 34054ms;
  animation-delay: 7906ms;
}
@keyframes move-frames-98 {
  from {
    transform: translate3d(83vw, 106vh, 0);
  }
  to {
    transform: translate3d(66vw, -134vh, 0);
  }
}
#authentication_login .circle-container:nth-child(98) .circle {
  animation-delay: 1259ms;
}
#authentication_login .circle-container:nth-child(99) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-99;
  animation-duration: 34927ms;
  animation-delay: 9751ms;
}
@keyframes move-frames-99 {
  from {
    transform: translate3d(15vw, 104vh, 0);
  }
  to {
    transform: translate3d(71vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(99) .circle {
  animation-delay: 1663ms;
}
#authentication_login .circle-container:nth-child(100) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-100;
  animation-duration: 36880ms;
  animation-delay: 3658ms;
}
@keyframes move-frames-100 {
  from {
    transform: translate3d(68vw, 110vh, 0);
  }
  to {
    transform: translate3d(52vw, -121vh, 0);
  }
}
#authentication_login .circle-container:nth-child(100) .circle {
  animation-delay: 3029ms;
}
#authentication_login .circle-container:nth-child(101) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-101;
  animation-duration: 32656ms;
  animation-delay: 30856ms;
}
@keyframes move-frames-101 {
  from {
    transform: translate3d(69vw, 108vh, 0);
  }
  to {
    transform: translate3d(29vw, -123vh, 0);
  }
}
#authentication_login .circle-container:nth-child(101) .circle {
  animation-delay: 215ms;
}
#authentication_login .circle-container:nth-child(102) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-102;
  animation-duration: 34422ms;
  animation-delay: 2841ms;
}
@keyframes move-frames-102 {
  from {
    transform: translate3d(59vw, 102vh, 0);
  }
  to {
    transform: translate3d(51vw, -129vh, 0);
  }
}
#authentication_login .circle-container:nth-child(102) .circle {
  animation-delay: 313ms;
}
#authentication_login .circle-container:nth-child(103) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-103;
  animation-duration: 36884ms;
  animation-delay: 26717ms;
}
@keyframes move-frames-103 {
  from {
    transform: translate3d(17vw, 101vh, 0);
  }
  to {
    transform: translate3d(100vw, -106vh, 0);
  }
}
#authentication_login .circle-container:nth-child(103) .circle {
  animation-delay: 3259ms;
}
#authentication_login .circle-container:nth-child(104) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-104;
  animation-duration: 31282ms;
  animation-delay: 27778ms;
}
@keyframes move-frames-104 {
  from {
    transform: translate3d(90vw, 106vh, 0);
  }
  to {
    transform: translate3d(34vw, -107vh, 0);
  }
}
#authentication_login .circle-container:nth-child(104) .circle {
  animation-delay: 11ms;
}
#authentication_login .circle-container:nth-child(105) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-105;
  animation-duration: 29966ms;
  animation-delay: 1438ms;
}
@keyframes move-frames-105 {
  from {
    transform: translate3d(40vw, 109vh, 0);
  }
  to {
    transform: translate3d(60vw, -118vh, 0);
  }
}
#authentication_login .circle-container:nth-child(105) .circle {
  animation-delay: 2129ms;
}
#authentication_login .circle-container:nth-child(106) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-106;
  animation-duration: 35893ms;
  animation-delay: 10318ms;
}
@keyframes move-frames-106 {
  from {
    transform: translate3d(92vw, 110vh, 0);
  }
  to {
    transform: translate3d(52vw, -134vh, 0);
  }
}
#authentication_login .circle-container:nth-child(106) .circle {
  animation-delay: 1250ms;
}
#authentication_login .circle-container:nth-child(107) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-107;
  animation-duration: 34427ms;
  animation-delay: 34599ms;
}
@keyframes move-frames-107 {
  from {
    transform: translate3d(60vw, 107vh, 0);
  }
  to {
    transform: translate3d(58vw, -133vh, 0);
  }
}
#authentication_login .circle-container:nth-child(107) .circle {
  animation-delay: 2967ms;
}
#authentication_login .circle-container:nth-child(108) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-108;
  animation-duration: 32181ms;
  animation-delay: 6550ms;
}
@keyframes move-frames-108 {
  from {
    transform: translate3d(66vw, 104vh, 0);
  }
  to {
    transform: translate3d(12vw, -126vh, 0);
  }
}
#authentication_login .circle-container:nth-child(108) .circle {
  animation-delay: 3980ms;
}
#authentication_login .circle-container:nth-child(109) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-109;
  animation-duration: 30811ms;
  animation-delay: 24966ms;
}
@keyframes move-frames-109 {
  from {
    transform: translate3d(90vw, 110vh, 0);
  }
  to {
    transform: translate3d(51vw, -140vh, 0);
  }
}
#authentication_login .circle-container:nth-child(109) .circle {
  animation-delay: 3460ms;
}
#authentication_login .circle-container:nth-child(110) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-110;
  animation-duration: 28809ms;
  animation-delay: 22531ms;
}
@keyframes move-frames-110 {
  from {
    transform: translate3d(93vw, 103vh, 0);
  }
  to {
    transform: translate3d(57vw, -120vh, 0);
  }
}
#authentication_login .circle-container:nth-child(110) .circle {
  animation-delay: 3906ms;
}
#authentication_login .circle-container:nth-child(111) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-111;
  animation-duration: 28954ms;
  animation-delay: 6112ms;
}
@keyframes move-frames-111 {
  from {
    transform: translate3d(9vw, 110vh, 0);
  }
  to {
    transform: translate3d(83vw, -130vh, 0);
  }
}
#authentication_login .circle-container:nth-child(111) .circle {
  animation-delay: 3784ms;
}
#authentication_login .circle-container:nth-child(112) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-112;
  animation-duration: 30813ms;
  animation-delay: 28183ms;
}
@keyframes move-frames-112 {
  from {
    transform: translate3d(4vw, 106vh, 0);
  }
  to {
    transform: translate3d(57vw, -131vh, 0);
  }
}
#authentication_login .circle-container:nth-child(112) .circle {
  animation-delay: 2111ms;
}
#authentication_login .circle-container:nth-child(113) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-113;
  animation-duration: 28309ms;
  animation-delay: 31131ms;
}
@keyframes move-frames-113 {
  from {
    transform: translate3d(44vw, 109vh, 0);
  }
  to {
    transform: translate3d(59vw, -130vh, 0);
  }
}
#authentication_login .circle-container:nth-child(113) .circle {
  animation-delay: 142ms;
}
#authentication_login .circle-container:nth-child(114) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-114;
  animation-duration: 30966ms;
  animation-delay: 257ms;
}
@keyframes move-frames-114 {
  from {
    transform: translate3d(1vw, 110vh, 0);
  }
  to {
    transform: translate3d(90vw, -124vh, 0);
  }
}
#authentication_login .circle-container:nth-child(114) .circle {
  animation-delay: 1522ms;
}
#authentication_login .circle-container:nth-child(115) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-115;
  animation-duration: 33735ms;
  animation-delay: 27669ms;
}
@keyframes move-frames-115 {
  from {
    transform: translate3d(78vw, 108vh, 0);
  }
  to {
    transform: translate3d(15vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(115) .circle {
  animation-delay: 3812ms;
}
#authentication_login .circle-container:nth-child(116) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-116;
  animation-duration: 29887ms;
  animation-delay: 20366ms;
}
@keyframes move-frames-116 {
  from {
    transform: translate3d(20vw, 101vh, 0);
  }
  to {
    transform: translate3d(3vw, -106vh, 0);
  }
}
#authentication_login .circle-container:nth-child(116) .circle {
  animation-delay: 343ms;
}
#authentication_login .circle-container:nth-child(117) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-117;
  animation-duration: 33953ms;
  animation-delay: 27657ms;
}
@keyframes move-frames-117 {
  from {
    transform: translate3d(61vw, 104vh, 0);
  }
  to {
    transform: translate3d(46vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(117) .circle {
  animation-delay: 1392ms;
}
#authentication_login .circle-container:nth-child(118) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-118;
  animation-duration: 34563ms;
  animation-delay: 19576ms;
}
@keyframes move-frames-118 {
  from {
    transform: translate3d(21vw, 108vh, 0);
  }
  to {
    transform: translate3d(98vw, -128vh, 0);
  }
}
#authentication_login .circle-container:nth-child(118) .circle {
  animation-delay: 3772ms;
}
#authentication_login .circle-container:nth-child(119) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-119;
  animation-duration: 34515ms;
  animation-delay: 24513ms;
}
@keyframes move-frames-119 {
  from {
    transform: translate3d(4vw, 104vh, 0);
  }
  to {
    transform: translate3d(20vw, -113vh, 0);
  }
}
#authentication_login .circle-container:nth-child(119) .circle {
  animation-delay: 384ms;
}
#authentication_login .circle-container:nth-child(120) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-120;
  animation-duration: 34847ms;
  animation-delay: 21019ms;
}
@keyframes move-frames-120 {
  from {
    transform: translate3d(39vw, 109vh, 0);
  }
  to {
    transform: translate3d(98vw, -120vh, 0);
  }
}
#authentication_login .circle-container:nth-child(120) .circle {
  animation-delay: 3413ms;
}
#authentication_login .circle-container:nth-child(121) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-121;
  animation-duration: 28791ms;
  animation-delay: 19382ms;
}
@keyframes move-frames-121 {
  from {
    transform: translate3d(80vw, 105vh, 0);
  }
  to {
    transform: translate3d(97vw, -106vh, 0);
  }
}
#authentication_login .circle-container:nth-child(121) .circle {
  animation-delay: 3952ms;
}
#authentication_login .circle-container:nth-child(122) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-122;
  animation-duration: 29559ms;
  animation-delay: 21122ms;
}
@keyframes move-frames-122 {
  from {
    transform: translate3d(33vw, 107vh, 0);
  }
  to {
    transform: translate3d(77vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(122) .circle {
  animation-delay: 3252ms;
}
#authentication_login .circle-container:nth-child(123) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-123;
  animation-duration: 35735ms;
  animation-delay: 22524ms;
}
@keyframes move-frames-123 {
  from {
    transform: translate3d(58vw, 104vh, 0);
  }
  to {
    transform: translate3d(51vw, -129vh, 0);
  }
}
#authentication_login .circle-container:nth-child(123) .circle {
  animation-delay: 3905ms;
}
#authentication_login .circle-container:nth-child(124) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-124;
  animation-duration: 32923ms;
  animation-delay: 27828ms;
}
@keyframes move-frames-124 {
  from {
    transform: translate3d(50vw, 107vh, 0);
  }
  to {
    transform: translate3d(97vw, -129vh, 0);
  }
}
#authentication_login .circle-container:nth-child(124) .circle {
  animation-delay: 1932ms;
}
#authentication_login .circle-container:nth-child(125) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-125;
  animation-duration: 35725ms;
  animation-delay: 10977ms;
}
@keyframes move-frames-125 {
  from {
    transform: translate3d(42vw, 104vh, 0);
  }
  to {
    transform: translate3d(4vw, -130vh, 0);
  }
}
#authentication_login .circle-container:nth-child(125) .circle {
  animation-delay: 579ms;
}
#authentication_login .circle-container:nth-child(126) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-126;
  animation-duration: 33158ms;
  animation-delay: 10816ms;
}
@keyframes move-frames-126 {
  from {
    transform: translate3d(98vw, 103vh, 0);
  }
  to {
    transform: translate3d(69vw, -121vh, 0);
  }
}
#authentication_login .circle-container:nth-child(126) .circle {
  animation-delay: 2294ms;
}
#authentication_login .circle-container:nth-child(127) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-127;
  animation-duration: 34579ms;
  animation-delay: 23736ms;
}
@keyframes move-frames-127 {
  from {
    transform: translate3d(14vw, 109vh, 0);
  }
  to {
    transform: translate3d(8vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(127) .circle {
  animation-delay: 3704ms;
}
#authentication_login .circle-container:nth-child(128) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-128;
  animation-duration: 35523ms;
  animation-delay: 4594ms;
}
@keyframes move-frames-128 {
  from {
    transform: translate3d(4vw, 108vh, 0);
  }
  to {
    transform: translate3d(27vw, -120vh, 0);
  }
}
#authentication_login .circle-container:nth-child(128) .circle {
  animation-delay: 1610ms;
}
#authentication_login .circle-container:nth-child(129) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-129;
  animation-duration: 36824ms;
  animation-delay: 35032ms;
}
@keyframes move-frames-129 {
  from {
    transform: translate3d(74vw, 109vh, 0);
  }
  to {
    transform: translate3d(65vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(129) .circle {
  animation-delay: 3779ms;
}
#authentication_login .circle-container:nth-child(130) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-130;
  animation-duration: 30330ms;
  animation-delay: 11860ms;
}
@keyframes move-frames-130 {
  from {
    transform: translate3d(28vw, 108vh, 0);
  }
  to {
    transform: translate3d(12vw, -116vh, 0);
  }
}
#authentication_login .circle-container:nth-child(130) .circle {
  animation-delay: 3844ms;
}
#authentication_login .circle-container:nth-child(131) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-131;
  animation-duration: 31221ms;
  animation-delay: 1114ms;
}
@keyframes move-frames-131 {
  from {
    transform: translate3d(11vw, 106vh, 0);
  }
  to {
    transform: translate3d(20vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(131) .circle {
  animation-delay: 3998ms;
}
#authentication_login .circle-container:nth-child(132) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-132;
  animation-duration: 33150ms;
  animation-delay: 20451ms;
}
@keyframes move-frames-132 {
  from {
    transform: translate3d(54vw, 106vh, 0);
  }
  to {
    transform: translate3d(69vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(132) .circle {
  animation-delay: 2829ms;
}
#authentication_login .circle-container:nth-child(133) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-133;
  animation-duration: 35511ms;
  animation-delay: 22719ms;
}
@keyframes move-frames-133 {
  from {
    transform: translate3d(79vw, 108vh, 0);
  }
  to {
    transform: translate3d(28vw, -122vh, 0);
  }
}
#authentication_login .circle-container:nth-child(133) .circle {
  animation-delay: 854ms;
}
#authentication_login .circle-container:nth-child(134) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-134;
  animation-duration: 31278ms;
  animation-delay: 30886ms;
}
@keyframes move-frames-134 {
  from {
    transform: translate3d(29vw, 102vh, 0);
  }
  to {
    transform: translate3d(48vw, -118vh, 0);
  }
}
#authentication_login .circle-container:nth-child(134) .circle {
  animation-delay: 192ms;
}
#authentication_login .circle-container:nth-child(135) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-135;
  animation-duration: 34943ms;
  animation-delay: 2869ms;
}
@keyframes move-frames-135 {
  from {
    transform: translate3d(53vw, 108vh, 0);
  }
  to {
    transform: translate3d(18vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(135) .circle {
  animation-delay: 885ms;
}
#authentication_login .circle-container:nth-child(136) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-136;
  animation-duration: 29339ms;
  animation-delay: 7358ms;
}
@keyframes move-frames-136 {
  from {
    transform: translate3d(8vw, 102vh, 0);
  }
  to {
    transform: translate3d(42vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(136) .circle {
  animation-delay: 2689ms;
}
#authentication_login .circle-container:nth-child(137) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-137;
  animation-duration: 33420ms;
  animation-delay: 17400ms;
}
@keyframes move-frames-137 {
  from {
    transform: translate3d(30vw, 102vh, 0);
  }
  to {
    transform: translate3d(88vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(137) .circle {
  animation-delay: 1845ms;
}
#authentication_login .circle-container:nth-child(138) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-138;
  animation-duration: 35675ms;
  animation-delay: 15081ms;
}
@keyframes move-frames-138 {
  from {
    transform: translate3d(96vw, 101vh, 0);
  }
  to {
    transform: translate3d(66vw, -113vh, 0);
  }
}
#authentication_login .circle-container:nth-child(138) .circle {
  animation-delay: 3969ms;
}
#authentication_login .circle-container:nth-child(139) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-139;
  animation-duration: 32111ms;
  animation-delay: 6636ms;
}
@keyframes move-frames-139 {
  from {
    transform: translate3d(69vw, 109vh, 0);
  }
  to {
    transform: translate3d(44vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(139) .circle {
  animation-delay: 7ms;
}
#authentication_login .circle-container:nth-child(140) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-140;
  animation-duration: 35194ms;
  animation-delay: 31921ms;
}
@keyframes move-frames-140 {
  from {
    transform: translate3d(72vw, 105vh, 0);
  }
  to {
    transform: translate3d(88vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(140) .circle {
  animation-delay: 1818ms;
}
#authentication_login .circle-container:nth-child(141) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-141;
  animation-duration: 36854ms;
  animation-delay: 11893ms;
}
@keyframes move-frames-141 {
  from {
    transform: translate3d(93vw, 107vh, 0);
  }
  to {
    transform: translate3d(2vw, -108vh, 0);
  }
}
#authentication_login .circle-container:nth-child(141) .circle {
  animation-delay: 789ms;
}
#authentication_login .circle-container:nth-child(142) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-142;
  animation-duration: 33556ms;
  animation-delay: 19630ms;
}
@keyframes move-frames-142 {
  from {
    transform: translate3d(76vw, 104vh, 0);
  }
  to {
    transform: translate3d(3vw, -131vh, 0);
  }
}
#authentication_login .circle-container:nth-child(142) .circle {
  animation-delay: 2084ms;
}
#authentication_login .circle-container:nth-child(143) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-143;
  animation-duration: 34624ms;
  animation-delay: 33715ms;
}
@keyframes move-frames-143 {
  from {
    transform: translate3d(83vw, 108vh, 0);
  }
  to {
    transform: translate3d(91vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(143) .circle {
  animation-delay: 2613ms;
}
#authentication_login .circle-container:nth-child(144) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-144;
  animation-duration: 31957ms;
  animation-delay: 26902ms;
}
@keyframes move-frames-144 {
  from {
    transform: translate3d(58vw, 108vh, 0);
  }
  to {
    transform: translate3d(23vw, -136vh, 0);
  }
}
#authentication_login .circle-container:nth-child(144) .circle {
  animation-delay: 59ms;
}
#authentication_login .circle-container:nth-child(145) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-145;
  animation-duration: 36123ms;
  animation-delay: 34870ms;
}
@keyframes move-frames-145 {
  from {
    transform: translate3d(11vw, 103vh, 0);
  }
  to {
    transform: translate3d(97vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(145) .circle {
  animation-delay: 330ms;
}
#authentication_login .circle-container:nth-child(146) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-146;
  animation-duration: 31369ms;
  animation-delay: 24598ms;
}
@keyframes move-frames-146 {
  from {
    transform: translate3d(85vw, 104vh, 0);
  }
  to {
    transform: translate3d(76vw, -129vh, 0);
  }
}
#authentication_login .circle-container:nth-child(146) .circle {
  animation-delay: 3693ms;
}
#authentication_login .circle-container:nth-child(147) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-147;
  animation-duration: 35624ms;
  animation-delay: 9692ms;
}
@keyframes move-frames-147 {
  from {
    transform: translate3d(43vw, 103vh, 0);
  }
  to {
    transform: translate3d(99vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(147) .circle {
  animation-delay: 3750ms;
}
#authentication_login .circle-container:nth-child(148) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-148;
  animation-duration: 30772ms;
  animation-delay: 27303ms;
}
@keyframes move-frames-148 {
  from {
    transform: translate3d(22vw, 101vh, 0);
  }
  to {
    transform: translate3d(22vw, -105vh, 0);
  }
}
#authentication_login .circle-container:nth-child(148) .circle {
  animation-delay: 3887ms;
}
#authentication_login .circle-container:nth-child(149) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-149;
  animation-duration: 33953ms;
  animation-delay: 2787ms;
}
@keyframes move-frames-149 {
  from {
    transform: translate3d(76vw, 104vh, 0);
  }
  to {
    transform: translate3d(17vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(149) .circle {
  animation-delay: 3460ms;
}
#authentication_login .circle-container:nth-child(150) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-150;
  animation-duration: 31557ms;
  animation-delay: 16455ms;
}
@keyframes move-frames-150 {
  from {
    transform: translate3d(7vw, 101vh, 0);
  }
  to {
    transform: translate3d(80vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(150) .circle {
  animation-delay: 3167ms;
}
#authentication_login .circle-container:nth-child(151) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-151;
  animation-duration: 32335ms;
  animation-delay: 34018ms;
}
@keyframes move-frames-151 {
  from {
    transform: translate3d(34vw, 103vh, 0);
  }
  to {
    transform: translate3d(17vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(151) .circle {
  animation-delay: 1754ms;
}
#authentication_login .circle-container:nth-child(152) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-152;
  animation-duration: 33805ms;
  animation-delay: 35997ms;
}
@keyframes move-frames-152 {
  from {
    transform: translate3d(4vw, 110vh, 0);
  }
  to {
    transform: translate3d(43vw, -130vh, 0);
  }
}
#authentication_login .circle-container:nth-child(152) .circle {
  animation-delay: 3608ms;
}
#authentication_login .circle-container:nth-child(153) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-153;
  animation-duration: 33521ms;
  animation-delay: 4421ms;
}
@keyframes move-frames-153 {
  from {
    transform: translate3d(15vw, 109vh, 0);
  }
  to {
    transform: translate3d(42vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(153) .circle {
  animation-delay: 151ms;
}
#authentication_login .circle-container:nth-child(154) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-154;
  animation-duration: 33979ms;
  animation-delay: 14374ms;
}
@keyframes move-frames-154 {
  from {
    transform: translate3d(92vw, 104vh, 0);
  }
  to {
    transform: translate3d(4vw, -109vh, 0);
  }
}
#authentication_login .circle-container:nth-child(154) .circle {
  animation-delay: 2084ms;
}
#authentication_login .circle-container:nth-child(155) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-155;
  animation-duration: 30979ms;
  animation-delay: 4117ms;
}
@keyframes move-frames-155 {
  from {
    transform: translate3d(81vw, 101vh, 0);
  }
  to {
    transform: translate3d(85vw, -105vh, 0);
  }
}
#authentication_login .circle-container:nth-child(155) .circle {
  animation-delay: 1401ms;
}
#authentication_login .circle-container:nth-child(156) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-156;
  animation-duration: 31107ms;
  animation-delay: 22744ms;
}
@keyframes move-frames-156 {
  from {
    transform: translate3d(84vw, 104vh, 0);
  }
  to {
    transform: translate3d(86vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(156) .circle {
  animation-delay: 2687ms;
}
#authentication_login .circle-container:nth-child(157) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-157;
  animation-duration: 36157ms;
  animation-delay: 22046ms;
}
@keyframes move-frames-157 {
  from {
    transform: translate3d(79vw, 103vh, 0);
  }
  to {
    transform: translate3d(25vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(157) .circle {
  animation-delay: 3246ms;
}
#authentication_login .circle-container:nth-child(158) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-158;
  animation-duration: 35127ms;
  animation-delay: 32954ms;
}
@keyframes move-frames-158 {
  from {
    transform: translate3d(8vw, 106vh, 0);
  }
  to {
    transform: translate3d(61vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(158) .circle {
  animation-delay: 1814ms;
}
#authentication_login .circle-container:nth-child(159) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-159;
  animation-duration: 34696ms;
  animation-delay: 10239ms;
}
@keyframes move-frames-159 {
  from {
    transform: translate3d(63vw, 109vh, 0);
  }
  to {
    transform: translate3d(10vw, -128vh, 0);
  }
}
#authentication_login .circle-container:nth-child(159) .circle {
  animation-delay: 1498ms;
}
#authentication_login .circle-container:nth-child(160) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-160;
  animation-duration: 31548ms;
  animation-delay: 20365ms;
}
@keyframes move-frames-160 {
  from {
    transform: translate3d(29vw, 108vh, 0);
  }
  to {
    transform: translate3d(84vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(160) .circle {
  animation-delay: 3063ms;
}
#authentication_login .circle-container:nth-child(161) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-161;
  animation-duration: 35823ms;
  animation-delay: 9731ms;
}
@keyframes move-frames-161 {
  from {
    transform: translate3d(71vw, 109vh, 0);
  }
  to {
    transform: translate3d(53vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(161) .circle {
  animation-delay: 2911ms;
}
#authentication_login .circle-container:nth-child(162) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-162;
  animation-duration: 30926ms;
  animation-delay: 14711ms;
}
@keyframes move-frames-162 {
  from {
    transform: translate3d(6vw, 105vh, 0);
  }
  to {
    transform: translate3d(63vw, -135vh, 0);
  }
}
#authentication_login .circle-container:nth-child(162) .circle {
  animation-delay: 477ms;
}
#authentication_login .circle-container:nth-child(163) {
  width: 2px;
  height: 2px;
  animation-name: move-frames-163;
  animation-duration: 32776ms;
  animation-delay: 32365ms;
}
@keyframes move-frames-163 {
  from {
    transform: translate3d(74vw, 107vh, 0);
  }
  to {
    transform: translate3d(45vw, -129vh, 0);
  }
}
#authentication_login .circle-container:nth-child(163) .circle {
  animation-delay: 96ms;
}
#authentication_login .circle-container:nth-child(164) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-164;
  animation-duration: 29907ms;
  animation-delay: 19912ms;
}
@keyframes move-frames-164 {
  from {
    transform: translate3d(77vw, 106vh, 0);
  }
  to {
    transform: translate3d(80vw, -128vh, 0);
  }
}
#authentication_login .circle-container:nth-child(164) .circle {
  animation-delay: 3321ms;
}
#authentication_login .circle-container:nth-child(165) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-165;
  animation-duration: 36314ms;
  animation-delay: 32337ms;
}
@keyframes move-frames-165 {
  from {
    transform: translate3d(65vw, 102vh, 0);
  }
  to {
    transform: translate3d(62vw, -107vh, 0);
  }
}
#authentication_login .circle-container:nth-child(165) .circle {
  animation-delay: 2682ms;
}
#authentication_login .circle-container:nth-child(166) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-166;
  animation-duration: 36164ms;
  animation-delay: 35396ms;
}
@keyframes move-frames-166 {
  from {
    transform: translate3d(42vw, 105vh, 0);
  }
  to {
    transform: translate3d(72vw, -113vh, 0);
  }
}
#authentication_login .circle-container:nth-child(166) .circle {
  animation-delay: 1685ms;
}
#authentication_login .circle-container:nth-child(167) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-167;
  animation-duration: 33619ms;
  animation-delay: 16828ms;
}
@keyframes move-frames-167 {
  from {
    transform: translate3d(93vw, 104vh, 0);
  }
  to {
    transform: translate3d(67vw, -109vh, 0);
  }
}
#authentication_login .circle-container:nth-child(167) .circle {
  animation-delay: 1783ms;
}
#authentication_login .circle-container:nth-child(168) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-168;
  animation-duration: 33205ms;
  animation-delay: 16007ms;
}
@keyframes move-frames-168 {
  from {
    transform: translate3d(52vw, 106vh, 0);
  }
  to {
    transform: translate3d(7vw, -133vh, 0);
  }
}
#authentication_login .circle-container:nth-child(168) .circle {
  animation-delay: 526ms;
}
#authentication_login .circle-container:nth-child(169) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-169;
  animation-duration: 33036ms;
  animation-delay: 31625ms;
}
@keyframes move-frames-169 {
  from {
    transform: translate3d(67vw, 107vh, 0);
  }
  to {
    transform: translate3d(26vw, -134vh, 0);
  }
}
#authentication_login .circle-container:nth-child(169) .circle {
  animation-delay: 2237ms;
}
#authentication_login .circle-container:nth-child(170) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-170;
  animation-duration: 31068ms;
  animation-delay: 13993ms;
}
@keyframes move-frames-170 {
  from {
    transform: translate3d(53vw, 106vh, 0);
  }
  to {
    transform: translate3d(13vw, -122vh, 0);
  }
}
#authentication_login .circle-container:nth-child(170) .circle {
  animation-delay: 771ms;
}
#authentication_login .circle-container:nth-child(171) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-171;
  animation-duration: 36706ms;
  animation-delay: 16683ms;
}
@keyframes move-frames-171 {
  from {
    transform: translate3d(51vw, 110vh, 0);
  }
  to {
    transform: translate3d(62vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(171) .circle {
  animation-delay: 3795ms;
}
#authentication_login .circle-container:nth-child(172) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-172;
  animation-duration: 28193ms;
  animation-delay: 5343ms;
}
@keyframes move-frames-172 {
  from {
    transform: translate3d(23vw, 108vh, 0);
  }
  to {
    transform: translate3d(38vw, -115vh, 0);
  }
}
#authentication_login .circle-container:nth-child(172) .circle {
  animation-delay: 477ms;
}
#authentication_login .circle-container:nth-child(173) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-173;
  animation-duration: 28494ms;
  animation-delay: 14993ms;
}
@keyframes move-frames-173 {
  from {
    transform: translate3d(70vw, 109vh, 0);
  }
  to {
    transform: translate3d(66vw, -131vh, 0);
  }
}
#authentication_login .circle-container:nth-child(173) .circle {
  animation-delay: 3236ms;
}
#authentication_login .circle-container:nth-child(174) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-174;
  animation-duration: 31730ms;
  animation-delay: 16998ms;
}
@keyframes move-frames-174 {
  from {
    transform: translate3d(97vw, 106vh, 0);
  }
  to {
    transform: translate3d(67vw, -118vh, 0);
  }
}
#authentication_login .circle-container:nth-child(174) .circle {
  animation-delay: 531ms;
}
#authentication_login .circle-container:nth-child(175) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-175;
  animation-duration: 28775ms;
  animation-delay: 8913ms;
}
@keyframes move-frames-175 {
  from {
    transform: translate3d(25vw, 110vh, 0);
  }
  to {
    transform: translate3d(64vw, -121vh, 0);
  }
}
#authentication_login .circle-container:nth-child(175) .circle {
  animation-delay: 2859ms;
}
#authentication_login .circle-container:nth-child(176) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-176;
  animation-duration: 32881ms;
  animation-delay: 13461ms;
}
@keyframes move-frames-176 {
  from {
    transform: translate3d(26vw, 109vh, 0);
  }
  to {
    transform: translate3d(1vw, -137vh, 0);
  }
}
#authentication_login .circle-container:nth-child(176) .circle {
  animation-delay: 1086ms;
}
#authentication_login .circle-container:nth-child(177) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-177;
  animation-duration: 31917ms;
  animation-delay: 23837ms;
}
@keyframes move-frames-177 {
  from {
    transform: translate3d(55vw, 109vh, 0);
  }
  to {
    transform: translate3d(63vw, -112vh, 0);
  }
}
#authentication_login .circle-container:nth-child(177) .circle {
  animation-delay: 3728ms;
}
#authentication_login .circle-container:nth-child(178) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-178;
  animation-duration: 33523ms;
  animation-delay: 27960ms;
}
@keyframes move-frames-178 {
  from {
    transform: translate3d(49vw, 104vh, 0);
  }
  to {
    transform: translate3d(36vw, -105vh, 0);
  }
}
#authentication_login .circle-container:nth-child(178) .circle {
  animation-delay: 3794ms;
}
#authentication_login .circle-container:nth-child(179) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-179;
  animation-duration: 31323ms;
  animation-delay: 29133ms;
}
@keyframes move-frames-179 {
  from {
    transform: translate3d(49vw, 109vh, 0);
  }
  to {
    transform: translate3d(24vw, -118vh, 0);
  }
}
#authentication_login .circle-container:nth-child(179) .circle {
  animation-delay: 539ms;
}
#authentication_login .circle-container:nth-child(180) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-180;
  animation-duration: 36283ms;
  animation-delay: 26488ms;
}
@keyframes move-frames-180 {
  from {
    transform: translate3d(95vw, 107vh, 0);
  }
  to {
    transform: translate3d(92vw, -109vh, 0);
  }
}
#authentication_login .circle-container:nth-child(180) .circle {
  animation-delay: 737ms;
}
#authentication_login .circle-container:nth-child(181) {
  width: 3px;
  height: 3px;
  animation-name: move-frames-181;
  animation-duration: 32308ms;
  animation-delay: 25412ms;
}
@keyframes move-frames-181 {
  from {
    transform: translate3d(73vw, 109vh, 0);
  }
  to {
    transform: translate3d(97vw, -121vh, 0);
  }
}
#authentication_login .circle-container:nth-child(181) .circle {
  animation-delay: 1237ms;
}
#authentication_login .circle-container:nth-child(182) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-182;
  animation-duration: 35576ms;
  animation-delay: 33696ms;
}
@keyframes move-frames-182 {
  from {
    transform: translate3d(12vw, 107vh, 0);
  }
  to {
    transform: translate3d(21vw, -128vh, 0);
  }
}
#authentication_login .circle-container:nth-child(182) .circle {
  animation-delay: 647ms;
}
#authentication_login .circle-container:nth-child(183) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-183;
  animation-duration: 31484ms;
  animation-delay: 190ms;
}
@keyframes move-frames-183 {
  from {
    transform: translate3d(58vw, 105vh, 0);
  }
  to {
    transform: translate3d(12vw, -114vh, 0);
  }
}
#authentication_login .circle-container:nth-child(183) .circle {
  animation-delay: 2168ms;
}
#authentication_login .circle-container:nth-child(184) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-184;
  animation-duration: 35952ms;
  animation-delay: 6570ms;
}
@keyframes move-frames-184 {
  from {
    transform: translate3d(90vw, 105vh, 0);
  }
  to {
    transform: translate3d(16vw, -107vh, 0);
  }
}
#authentication_login .circle-container:nth-child(184) .circle {
  animation-delay: 3016ms;
}
#authentication_login .circle-container:nth-child(185) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-185;
  animation-duration: 31075ms;
  animation-delay: 13911ms;
}
@keyframes move-frames-185 {
  from {
    transform: translate3d(85vw, 102vh, 0);
  }
  to {
    transform: translate3d(33vw, -120vh, 0);
  }
}
#authentication_login .circle-container:nth-child(185) .circle {
  animation-delay: 1573ms;
}
#authentication_login .circle-container:nth-child(186) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-186;
  animation-duration: 32461ms;
  animation-delay: 5405ms;
}
@keyframes move-frames-186 {
  from {
    transform: translate3d(46vw, 102vh, 0);
  }
  to {
    transform: translate3d(46vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(186) .circle {
  animation-delay: 2900ms;
}
#authentication_login .circle-container:nth-child(187) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-187;
  animation-duration: 28078ms;
  animation-delay: 18804ms;
}
@keyframes move-frames-187 {
  from {
    transform: translate3d(21vw, 109vh, 0);
  }
  to {
    transform: translate3d(40vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(187) .circle {
  animation-delay: 2148ms;
}
#authentication_login .circle-container:nth-child(188) {
  width: 4px;
  height: 4px;
  animation-name: move-frames-188;
  animation-duration: 29870ms;
  animation-delay: 25953ms;
}
@keyframes move-frames-188 {
  from {
    transform: translate3d(23vw, 102vh, 0);
  }
  to {
    transform: translate3d(12vw, -125vh, 0);
  }
}
#authentication_login .circle-container:nth-child(188) .circle {
  animation-delay: 1864ms;
}
#authentication_login .circle-container:nth-child(189) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-189;
  animation-duration: 34875ms;
  animation-delay: 34315ms;
}
@keyframes move-frames-189 {
  from {
    transform: translate3d(24vw, 109vh, 0);
  }
  to {
    transform: translate3d(9vw, -120vh, 0);
  }
}
#authentication_login .circle-container:nth-child(189) .circle {
  animation-delay: 2035ms;
}
#authentication_login .circle-container:nth-child(190) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-190;
  animation-duration: 36399ms;
  animation-delay: 16258ms;
}
@keyframes move-frames-190 {
  from {
    transform: translate3d(81vw, 108vh, 0);
  }
  to {
    transform: translate3d(91vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(190) .circle {
  animation-delay: 2727ms;
}
#authentication_login .circle-container:nth-child(191) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-191;
  animation-duration: 30405ms;
  animation-delay: 3194ms;
}
@keyframes move-frames-191 {
  from {
    transform: translate3d(2vw, 108vh, 0);
  }
  to {
    transform: translate3d(76vw, -136vh, 0);
  }
}
#authentication_login .circle-container:nth-child(191) .circle {
  animation-delay: 1473ms;
}
#authentication_login .circle-container:nth-child(192) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-192;
  animation-duration: 35557ms;
  animation-delay: 12271ms;
}
@keyframes move-frames-192 {
  from {
    transform: translate3d(2vw, 102vh, 0);
  }
  to {
    transform: translate3d(51vw, -132vh, 0);
  }
}
#authentication_login .circle-container:nth-child(192) .circle {
  animation-delay: 1920ms;
}
#authentication_login .circle-container:nth-child(193) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-193;
  animation-duration: 31767ms;
  animation-delay: 35061ms;
}
@keyframes move-frames-193 {
  from {
    transform: translate3d(86vw, 103vh, 0);
  }
  to {
    transform: translate3d(91vw, -111vh, 0);
  }
}
#authentication_login .circle-container:nth-child(193) .circle {
  animation-delay: 33ms;
}
#authentication_login .circle-container:nth-child(194) {
  width: 7px;
  height: 7px;
  animation-name: move-frames-194;
  animation-duration: 30488ms;
  animation-delay: 10841ms;
}
@keyframes move-frames-194 {
  from {
    transform: translate3d(81vw, 105vh, 0);
  }
  to {
    transform: translate3d(41vw, -110vh, 0);
  }
}
#authentication_login .circle-container:nth-child(194) .circle {
  animation-delay: 1204ms;
}
#authentication_login .circle-container:nth-child(195) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-195;
  animation-duration: 32347ms;
  animation-delay: 21424ms;
}
@keyframes move-frames-195 {
  from {
    transform: translate3d(43vw, 107vh, 0);
  }
  to {
    transform: translate3d(14vw, -123vh, 0);
  }
}
#authentication_login .circle-container:nth-child(195) .circle {
  animation-delay: 1465ms;
}
#authentication_login .circle-container:nth-child(196) {
  width: 1px;
  height: 1px;
  animation-name: move-frames-196;
  animation-duration: 35078ms;
  animation-delay: 27214ms;
}
@keyframes move-frames-196 {
  from {
    transform: translate3d(56vw, 102vh, 0);
  }
  to {
    transform: translate3d(29vw, -118vh, 0);
  }
}
#authentication_login .circle-container:nth-child(196) .circle {
  animation-delay: 2802ms;
}
#authentication_login .circle-container:nth-child(197) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-197;
  animation-duration: 30002ms;
  animation-delay: 28732ms;
}
@keyframes move-frames-197 {
  from {
    transform: translate3d(21vw, 104vh, 0);
  }
  to {
    transform: translate3d(81vw, -131vh, 0);
  }
}
#authentication_login .circle-container:nth-child(197) .circle {
  animation-delay: 393ms;
}
#authentication_login .circle-container:nth-child(198) {
  width: 6px;
  height: 6px;
  animation-name: move-frames-198;
  animation-duration: 34264ms;
  animation-delay: 22631ms;
}
@keyframes move-frames-198 {
  from {
    transform: translate3d(45vw, 108vh, 0);
  }
  to {
    transform: translate3d(75vw, -124vh, 0);
  }
}
#authentication_login .circle-container:nth-child(198) .circle {
  animation-delay: 2368ms;
}
#authentication_login .circle-container:nth-child(199) {
  width: 5px;
  height: 5px;
  animation-name: move-frames-199;
  animation-duration: 29054ms;
  animation-delay: 14781ms;
}
@keyframes move-frames-199 {
  from {
    transform: translate3d(65vw, 102vh, 0);
  }
  to {
    transform: translate3d(81vw, -122vh, 0);
  }
}
#authentication_login .circle-container:nth-child(199) .circle {
  animation-delay: 315ms;
}
#authentication_login .circle-container:nth-child(200) {
  width: 8px;
  height: 8px;
  animation-name: move-frames-200;
  animation-duration: 30101ms;
  animation-delay: 20423ms;
}
@keyframes move-frames-200 {
  from {
    transform: translate3d(92vw, 106vh, 0);
  }
  to {
    transform: translate3d(67vw, -119vh, 0);
  }
}
#authentication_login .circle-container:nth-child(200) .circle {
  animation-delay: 679ms;
}
#authentication_login .paused {
  animation-play-state: paused;
}

#home_index {
  padding: 15px;
}
#home_index .report_group .chart {
  background-color: #fff;
  padding: 20px;
}

#profile_index {
  padding: 15px;
}

#profile_change_password {
  padding-top: 10px;
}
#profile_change_password form {
  padding: 15px;
}
#profile_change_password form .label {
  color: #666;
  font-size: 12px;
}
#profile_change_password form .requirements_list li {
  color: #bbb;
  font-size: 14px;
}
#profile_change_password form .requirements_list li.ok {
  color: limegreen;
}

#sales_orders_show {
  padding-bottom: 60px;
}
#sales_orders_show .item_description_group {
  display: flex;
}
#sales_orders_show .item_description_group .package_size {
  color: #666;
  margin-top: 5px;
}
#sales_orders_show .item_image {
  background-color: #f2f2f2;
  margin-right: 10px;
  width: 60px;
  height: 60px;
}
#sales_orders_show .item_image img {
  width: 60px;
  height: 60px;
}
#sales_orders_show .item_name .actions {
  display: block;
  margin-left: auto;
}
#sales_orders_show .item_name .actions a {
  color: #999;
  display: block;
  float: left;
  height: 19px;
  line-height: 19px;
  padding: 0 5px;
  margin: 0;
}
#sales_orders_show .item_name .actions a:hover {
  color: #333;
}

#sales_orders_index #sales_order_export_form {
  display: flex;
}
#sales_orders_index #sales_order_export_form .form-control {
  margin-right: 5px;
  width: 120px;
}
