#blazor-error-ui {
  display: none;
}

#blazor-error-ui .modal-background {
  background-color: rgba(0, 0, 0, 0.5);
}

#blazor-error-ui .modal-content {
  width: 380px;
}

:root {
  --form-small: 600px;
  --form-medium: 1064px;
  --form-large: 1200px;
  --form-full: calc(100vw - 40px);
  --color-main: #f36400;
  --color-hover: #d15600;
}

html {
  background: #fff;
  overflow-y: auto;
}

body {
  width: 100%;
  color: #34302a;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  margin: 0px auto;
}

hr {
  background-color: #b2aaa2;
  height: 1px;
}

.suggest {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 100%;
  margin-top: 0px;
  background: #fff;
  _border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  z-index: 20;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 300px;
}

  .suggest .rsitem {
    border-bottom: 1px solid #eee;
    padding: 6px 10px;
    position: relative;
    color: #333;
    font-size: 13px;
    cursor: pointer;
  }

    .suggest .rsitem.seleted,
    .suggest .rsitem:hover {
      background: #f7f6f6;
    }

    .suggest .rsitem:last-child {
      border-bottom: 0px;
    }

strong {
  color: inherit;
}

.content {
  word-break: break-word;
}

.image img {
  object-fit: cover;
  height: 100%;
}

.image.is-rounded img {
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
}

.icon-text {
  align-items: center;
  flex-wrap: nowrap;
  max-width: 100%;
  line-height: inherit;
}

a.icon-text:hover {
  color: var(--color-hover);
}

div.icon-text > *:not(.icon) {
  flex-grow: 1;
}

.icon-text.is_title {
  background-color: #f8efe6;
}

.icon.is_red::after,
.icon.is_yellow::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ba1b1b;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.icon.is_yellow::after {
  background-color: #f4d154;
}

.icon.r45 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.icon.r90 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.icon.r180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.is-vcentered {
  align-items: center;
}

.is-centered {
  justify-content: center;
}

.has-text-yellow {
  color: #f4d154 !important;
}

.has-background-warning-light {
  background-color: #ffede5 !important;
}

.has-text-danger {
  color: #ba1b1b !important;
}

.has-background-danger {
  background-color: #ba1b1b !important;
}

.has-text-success {
  color: #006e28 !important;
}

.has-background-success {
  background-color: #006e28 !important;
}

.has-background-grey {
  background-color: #635d57 !important;
}

.has-text-warning {
  color: var(--color-main) !important;
}

a.has-text-warning:focus,
a.has-text-warning:hover {
  color: var(--color-hover) !important;
}

.input,
.textarea,
select {
  font-family: inherit;
}

.input:not(.is-small),
.select:not(.is-small),
.select:not(.is-small) select,
.textarea:not(.is-small) {
  font-size: 12px;
  font-family: inherit;
  height: 36px;
}

.input.is_line {
  padding-left: 0px;
  padding-right: 0px;
  border: 0px;
  border-radius: 0px;
  box-shadow: none;
  background: transparent;
}

.input.is_line:hover,
.input.is_line:focus {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
}

.input > input {
  border: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
  box-shadow: none !important;
  outline: none;
  font-size: inherit;
  font-family: inherit;
}

.input.is-transparent {
  background-color: transparent;
  border-color: transparent;
  outline: none;
  box-shadow: none;
}

.select.is-transparent,
.select.is-transparent select {
  background-color: transparent;
  border-color: transparent;
  outline: none;
  box-shadow: none;
}

.checkbox,
.radio {
  display: inline-flex;
  align-items: center;
}

.button:not(.is-small) {
  font-weight: 600;
  font-size: 12px;
  font-family: inherit;
  height: 36px;
}

.button:not(.is-small) .icon:not(.is-small) {
  width: 24px;
  height: 24px;
  font-size: 20px;
}

.button .icon:first-child:not(:last-child) {
  margin-left: 0px;
}

.button > small {
  background: #fff;
  border: 1px solid var(--color-main);
  border-radius: 4px;
  color: var(--color-main);
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 16px;
  height: 16px;
}

.button.is-warning {
  background-color: var(--color-main);
  border-color: transparent;
  color: #fff;
}

.button.is-warning:hover {
  background-color: var(--color-hover);
  border-color: transparent;
  color: #fff;
}

.button.is-grey {
  background-color: #635d57;
  border-color: transparent;
  color: #fff;
}

.button.is-grey:hover {
  background-color: #444;
  border-color: transparent;
  color: #fff;
}

.button.is-danger {
  background-color: #ba1b1b;
}

.button.is-success {
  background-color: #006e28;
}

.button.is-transparent {
  background-color: transparent;
  border-color: transparent;
}

.button.is-transparent.is-loading::after {
  border-bottom-color: #333;
  border-left-color: #333;
}

.button.is-bordered {
  background-color: transparent;
  border-color: #cacaca;
}

.select.is-dark select {
  background: #6d6c6c;
  color: #fff;
}

.select.is-primary select {
  background-color: #ebfffc;
  color: #00947e;
}

.select.is-link select {
  background-color: #eef3fc;
  color: #2160c4;
}

.select.is-info select {
  background-color: #eef6fc;
  color: #1d72aa;
}

.select.is-success select {
  background-color: #effaf3;
  color: #257942;
}

.select.is-warning select {
  background-color: #fffbeb;
  color: #947600;
}

.select.is-danger select {
  background-color: #feecf0;
  color: #cc0f35;
}

.select select.is-danger {
  border-color: #cc0f35;
}

.label {
  font-size: inherit;
  color: inherit;
}

.control {
  font-size: inherit;
}

.control.has-icons-left .icon.is-left,
.control.has-icons-right .icon.is-right {
  height: 100%;
}

.control.has-icons-left a.icon.is-left,
.control.has-icons-right a.icon.is-right {
  pointer-events: auto;
}

.control.is_divider {
  width: 1px;
  background: #b2aaa2;
  height: 36px;
}

.field.is-grouped {
  align-items: center;
}

.column.is-narrow.is-small,
.modal-card.is-small {
  width: var(--form-small);
}

.column.is-narrow.is-medium,
.modal-card.is-medium {
  width: var(--form-medium);
}

.column.is-narrow.is-large,
.modal-card.is-large {
  width: var(--form-large);
}

.modal-card.is-full {
  width: var(--form-full);
}

.modal-card.is_noti {
  width: 500px;
  background: #fff;
  border-radius: 10px;
}

.modal-card.is_noti .has-text-grey {
  color: #34302a !important;
}

.modal-card.is-visible,
.modal-card.is-visible .modal-card-body {
  overflow: visible;
}

.modal-card:not(.is_noti) .modal-card-body:last-child {
  border-radius: 0px 0px 6px 6px;
}

.buttons.is-right .button:last-child {
  margin-right: 0px !important;
}

.columns.is-variable > .column {
  padding: var(--columnGap);
}

.dropdown-trigger {
  width: 100%;
}

.dropdown-trigger div.icon-text {
  width: 100%;
}

.dropdown-trigger div.icon-text span:not(.icon) {
  flex-grow: 1;
}

.dropdown-menu {
  min-width: 100%;
}

a.dropdown-item {
  padding: 0.375rem 0.5rem;
  font-size: inherit;
  text-align: left;
}

.dropdown-item.icon-text {
  display: flex;
  justify-content: space-between;
  padding-right: 0.5rem !important;
}

.dropdown.is-fullwidth,
.dropdown.is-fullwidth .dropdown-trigger,
.dropdown.is-fullwidth .dropdown-trigger .button {
  width: 100%;
}

.dropdown.is-fullwidth .dropdown-trigger .button {
  justify-content: space-between;
}

.dropdown-item .level_1 {
  font-size: 12px;
  font-weight: 600;
}

.dropdown-item .level_2 {
  font-size: 12px;
  margin-left: 15px;
}

.dropdown-item .level_3 {
  font-size: 12px;
  margin-left: 30px;
}

.card {
  border: 1px solid #b2aaa2;
  border-radius: 10px;
  box-shadow: none;
}

.modal-card-head {
  background-color: #fff;
  border-bottom: 0px;
  padding-bottom: 0px;
}

.modal-card-title {
  font-size: 1rem;
  font-weight: bold;
}

.modal-card-foot.is-right {
  background-color: #fff;
  border-top: 0px;
  justify-content: flex-end;
  padding-top: 0px;
}

.modal-card-foot label {
  flex-grow: 1;
}

.table {
  font-size: 12px;
}

.table > thead > tr > th {
  background-color: #635d57;
  border: 0px !important;
  color: #fff;
  font-weight: 500;
  vertical-align: middle;
}
.table > thead > tr > th.dark {
  background-color: #524e49;
}

.table > thead > tr > th,
.table > tbody > tr > td {
  height: 40px;
  padding: 5px;
}

.table.is-vcentered > thead > tr > th,
.table.is-vcentered > tbody > tr > td {
  vertical-align: middle;
}

.table.is-outlined > thead > tr > th {
  font-weight: inherit;
  vertical-align: middle;
  background: none;
  color: #333;
}

.table.is-outlined > tbody > tr > td {
  height: auto;
}

.table.is-fullwidth {
  table-layout: fixed;
}

.table-fixed:not(.is-fullwidth) {
  width: max-content;
  min-width: 100%;
}

.table-fixed > thead {
  position: sticky;
  z-index: 10;
  top: 0px;
}

  .table-fixed > tbody > tr:hover {
    z-index: 9;
    position: relative;
  }

.table-fixed .is_sticky {
  position: sticky;
  z-index: 8;
}

.table-fixed > tbody > tr > td {
  border-top: 1px solid #dbdbdb !important;
  border-bottom: 1px solid #dbdbdb !important;
}

.table-fixed > tbody > tr > td.is_sticky {
  background: #fff;
}

.table-fixed .is_sticky.is_last {
  box-shadow: inset -2px 0px 0px 0px #635d57;
}

.table-edit .is-static {
  pointer-events: none;
}
.table-edit .is-static > * {
  opacity: 0.3;
}

.table-edit .input {
  height: 28px;
}

.table-edit:not(".resize-table") .dropdown {
  max-width: 110px;
}
.table-edit .drop_full .dropdown {
  max-width: 100%;
}
.table-edit .dropdown.is-active:not(:hover) .dropdown-menu {
  display: none;
}
.table-edit .dropdown .dropdown-content {
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 30%);
}
.table-edit .dropdown-trigger .button {
  border: 0px;
  padding: 0px 16px 0px 0px;
  height: 28px;
  background-color: transparent;
}
.table-edit .dropdown-menu .dropdown-item a.has-text-dark {
  white-space: nowrap;
}
.table-edit .dropdown-trigger .button span:not(.icon) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.table-edit .dropdown-trigger .button span.icon:not(.image) {
  position: absolute;
  right: 1px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  margin: 0px;
}

.table-week > tbody > tr > td {
  height: 180px;
}

.daterangepicker .today {
  font-weight: bold;
  background: #eee;
}

#login {
  background-image: url("/images/login.jpg");
  background-position: center;
  background-size: cover;
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login::before {
  content: "";
  width: 190px;
  height: 80px;
  position: absolute;
  top: 20px;
  left: 20px;
  background-image: url("/images/logo.png");
  background-size: contain;
  background-position: center;
}

#login > section {
  max-width: 1000px;
}

#main {
  display: flex;
  height: 100vh;
  width: 100%;
}

#sidebar {
  width: 240px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  transition: all 0.1s;
  transition-delay:200ms;
}

#sidebar ul.scroll {
  overflow-y:hidden;
}

  #sidebar ul.scroll:hover {
    overflow-y: auto;
  }

#sidebar ul {
  height: 100%;
  padding: 10px 0px;
  position: relative;
}

  #sidebar .sidebar_item {
    padding: 8px 20px;
    display: flex;
    height: 40px;
    overflow: visible;
  }

    #sidebar .sidebar_item:not(:has( .icon-sticky)) {
      overflow: hidden;
    }

    #sidebar .sidebar_item:hover {
      color: var(--color-main);
      background: #f9f9f9;
    }

#sidebar .sidebar_item.is-active {
  background-color: var(--color-main);
  color: #fff;
}
  #sidebar .sidebar_item.is-active li.is-active, #sidebar .sidebar_item.is-active li, #sidebar .sidebar_item.is-active .custom_datepicker_icon {
    color: #635d57;
  }
  #sidebar .sidebar_item .icon i {
    font-size: 22px;
  }

#sidebar .sidebar_item span:not(.icon) {
  flex-grow: 1;
  padding-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#sidebar .sidebar_item small {
  min-width: 20px;
  height: 20px;
  background-color: #777;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 2px;
  font-size: 10px;
}

#sidebar .sidebar_item.is-active small {
  background-color: #fff;
  color: var(--color-main);
}

#sidebar .is_last {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 10px;
  margin-bottom: 0px;
}

#sidebar_container:not(:hover) #sidebar.is-small:not(:hover) {
  width: 60px;
}

#sidebar.is-small:not(:hover) .sidebar_item {
  position: relative;
  padding: 8px 18px;
}

  #sidebar .sidebar_item:hover a.icon-text {
    color:inherit;
  }

#sidebar.is-small:not(:hover) .sidebar_item.dropdown:not(.custom_datepicker) > .dropdown-menu {
  left: calc(60px) !important;
  transform: translateY(-40px);
}
.sidebar_item.dropdown:not(.custom_datepicker) > .dropdown-menu {
  transition: left 200ms ease;
  transition-delay: 200ms;
}

#sidebar:not(.is-small) .sidebar_item.dropdown:not(.custom_datepicker) > .dropdown-menu, #sidebar:hover .sidebar_item.dropdown:not(.custom_datepicker) > .dropdown-menu {
  left: calc(240px) !important;
  transform: translateY(-40px);
}

#sidebar.is-small:not(:hover) .sidebar_item .icon {
  margin: 0px;
}

#sidebar.is-small:not(:hover) .sidebar_item:not(.dropdown) span:not(.icon) {
  width:0px;
}

#sidebar.is-small:not(:hover) .sidebar_item small {
  font-size: 0;
  padding: 0;
  height: 8px;
  width: 8px;
  min-width: 0;
  position: absolute;
  top: 10px;
  right: 12px;
}

#content {
  flex-grow: 1;
  width: calc(100% - 240px);
  height: 100%;
  position: relative;
  transition:all 200ms ease;
}

#sidebar.is-small:not(:hover) + #content {
  width: calc(100% - 60px);
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

#components-reconnect-modal {
  width: 28px;
  height: 28px;
  background: none !important;
  left: calc(50% - 14px) !important;
  top: calc(50% - 14px) !important;
}

#components-reconnect-modal h5 {
  display: none;
}

#tagline {
  bottom: 20px;
  right: 20px;
  left: auto;
  top: auto;
  overflow: visible;
  z-index: 41;
}

#tagline .modal-card {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}

#tagline .modal-close {
  background-color: rgba(10, 10, 10, 0.3);
  top: -7px;
  right: -7px;
  display: none;
  position: absolute;
}

#tagline:hover .modal-close {
  display: inline-block;
}

.font_10 {
  font-size: 10px !important;
}

.font_13 {
  font-size: 13px !important;
}

.font_14 {
  font-size: 14px !important;
}

.text_inline:not(.is-show) {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.text_1_line:not(.is-show) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.text_2_line:not(.is-show) {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 3em;
}

.text_3_line:not(.is-show) {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 4.5em;
}

.text_4_line:not(.is-show) {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 6em;
}

.text_5_line:not(.is-show) {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: 7.5em;
}

.text_break {
  word-break: break-word;
}

.textarea.is_auto {
  min-height: 36px;
  overflow: hidden;
}

.user_item {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.user_item .image {
  border-radius: 50%;
  margin-right: 0.5rem;
  object-fit: cover;
  flex-grow: 0;
  flex: none;
}

.user_item > * {
  flex-grow: 1;
}

.action_bar {
  background-color: #eae1d8;
  min-height: 52px;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
}

.scroll {
  overflow: hidden;
  width: 100%;
}

.scroll.is_x {
  overflow-x: scroll;
}

  .scroll.is_y {
    overflow-y: scroll;
  }

.scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.scroll:hover::-webkit-scrollbar-track {
  background: #f9f9f9;
}
  .scroll::-webkit-scrollbar-track {
    background: transparent;
  }

.scroll:hover::-webkit-scrollbar-thumb {
  background: #eaebeb;
}

  .scroll::-webkit-scrollbar-thumb {
    background: transparent;
  }

.scroll::-webkit-scrollbar-thumb:hover {
  background: #bebfbf;
}

.scroll_table {
  height:fit-content;
  max-height: calc(100vh - 140px);
}
.scroll_table.has_bar {
  height:fit-content;
  max-height: calc(100vh - 180px);
}

.box_loading {
  position: relative;
}
.box_loading::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  display: block;
  background: rgb(255 255 255 / 30%);
}
.box_loading::after {
  content: "";
  z-index: 101;
  position: absolute;
  left: calc(50% - 1rem);
  top: calc(50% - 1rem);
  -webkit-animation: spinAround 0.5s infinite linear;
  animation: spinAround 0.5s infinite linear;
  border: 2px solid #333;
  border-color: transparent transparent #000 #000;
  border-radius: 9999px;
  display: block;
  height: 2rem;
  width: 2rem;
}

td > .is_opa50 > a {
  opacity: 0.5;
}

.is_opa50 > td {
  background: #f2f2f2 !important;
}

.is_opa50 > td > * {
  opacity: 0.8;
}

.is_draft::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid #f36400;
  border-left: 10px solid transparent;
  position: absolute;
  top: 0px;
  right: 0px;
}

.bg_red {
  background-color: #ffede9;
}

.is_filter .dropdown-menu {
  width: 320px;
}

.is_filter .dropdown-item {
  padding: 5px 1rem;
  font-size: inherit;
}

.is_filter .dropdown-item.is-active {
  background-color: #eae1d8;
}

  .is_filter .dropdown-item ul:not(.custom_datepicker_body) {
    display: none;
    position: absolute;
    top: 0px;
    left: calc(100% + 5px);
    width: 220px;
    padding: 4px 0px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%);
  }

.is_filter .dropdown-item.is-active ul {
  display: block;
  max-height: 300px;
}

.is_filter .dropdown-item ul li {
  padding: 0.5rem 1rem;
}

.is_filter .dropdown-item .icon-text {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.is_filter .dropdown-item .icon-text > span:not(.icon) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tree_views ul {
  position: relative;
  margin-left: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.tree_views ul::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -10px;
  width: 8px;
  height: calc(100% - 8px);
  border-left: 1px solid #b2aaa2;
}

.tree_views ul li {
  position: relative;
  padding-left: 10px;
  padding-top: 4px;
}

.tree_views ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-left: 1px solid #b2aaa2;
  border-bottom: 1px solid #b2aaa2;
  border-radius: 0px 0px 0px 8px;
}

.tree_views .icon-text a {
  color: #34302a;
}

.tree_views .icon-text a:hover {
  color: var(--color-main);
}

.tree_views .icon-text a:nth-child(2),
.tree_views .icon-text span:nth-child(2) {
  width: 250px;
  flex: none;
}

.tree_views .icon-text a:nth-child(3),
.tree_views .icon-text span:nth-child(3) {
  flex-grow: 0;
}

.tree_views .icon-text a:nth-child(3){
   display:none;
}

.tree_views .icon-text:hover a:nth-child(3) {
   display: inline-flex;
}

.level_1 {
   margin-left: 10px;
}
.level_2 {
  margin-left: 25px;
}
.level_3 {
  margin-left: 40px;
}

.view_mode .dropdown .button,
.view_mode .input,
.view_mode .select,
.view_mode .select select {
  pointer-events: none;
  border-color: transparent;
  box-shadow: none;
  padding-left: 0px;
}
.view_mode .select::after,
.view_mode .dropdown .button .icon:not(.image),
.view_mode .has-icons-right > .icon {
  display: none !important;
}
.view_mode .field > .has-text-danger {
  display: none;
}

.contract_item .due {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #ffff;
}

.contract_item .icon.status.has-text-dark {
  display: none;
}
.contract_item:hover .icon.status.has-text-dark {
  display: inline-flex;
}

.movingBallG {
  position: relative;
  width: 100%;
}

.movingBallG::before {
  content: "";
  background-color: rgb(203, 70, 47);
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  animation-name: bounce_movingBallG;
  -o-animation-name: bounce_movingBallG;
  -ms-animation-name: bounce_movingBallG;
  -webkit-animation-name: bounce_movingBallG;
  -moz-animation-name: bounce_movingBallG;
  animation-duration: 2s;
  -o-animation-duration: 2s;
  -ms-animation-duration: 2s;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
}

@keyframes bounce_movingBallG {
  0% {
    left: 0px;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0px;
  }
}

@-o-keyframes bounce_movingBallG {
  0% {
    left: 0px;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0px;
  }
}

@-ms-keyframes bounce_movingBallG {
  0% {
    left: 0px;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0px;
  }
}

@-webkit-keyframes bounce_movingBallG {
  0% {
    left: 0px;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0px;
  }
}

@-moz-keyframes bounce_movingBallG {
  0% {
    left: 0px;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0px;
  }
}