.co_stickymenu {
  position: fixed;
  top: 58px;
  right: 0;
  z-index: 1030
}

.co_hiden {
  display: none;
}

.co_inputchange {
  background-color: rgba(240, 130, 20, 0.2);
}

.co_span_kiongreen {
  background-color: #5AF0B4;
  color: var(--tblr-card-color);
  font-size: 14px;
}

.co_modal-full-width {
  max-width: none;
  margin: 1.5rem
}

.co_mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 3600;
}

.co_ovfHiden {
  overflow: hidden;
  height: 100%;
}

.co-pt-fadein {
  opacity: 0;
  transform: translateX(100%);
  animation: pt-fadeIn 2s ease-in-out forwards;
}

.co-kioncolor-text{
  color: #AE0055;
}

.co_log_bg{
  padding: 1rem;
  background: var(--tblr-bg-surface-dark);
  color: var(--tblr-light);
  border-radius: var(--tblr-border-radius);
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 85.714285%;
}

@keyframes pt-fadeIn {
  0% {
    opacity: 0;
    transform: translateX(15%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.loader {
  width: 250px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-weight: 900;
  color: white;
  letter-spacing: 0.2em;
  font-size: 20px;
}

.loader::before,
.loader::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: white;
  position: absolute;
  -webkit-animation: load 0.6s infinite alternate ease-in-out;
  animation: load 0.6s infinite alternate ease-in-out;
}

.loader::before {
  top: 0;
}

.loader::after {
  bottom: 0;
}

@-webkit-keyframes load {
  0% {
    left: 0;
    height: 40px;
    width: 10px;
    border-radius: 10px;
  }

  25% {
    top: 0;
    height: 10px;
    width: 20px;
  }

  50% {
    height: 8px;
    width: 40px;
  }

  75% {
    top: 0;
    height: 10px;
    width: 20px;
  }

  100% {
    left: 235px;
    height: 40px;
    width: 10px;
    border-radius: 10px;
  }
}

@keyframes load {
  0% {
    left: 0;
    height: 40px;
    width: 10px;
    border-radius: 10px;
  }

  25% {
    top: 0;
    height: 10px;
    width: 20px;
  }

  50% {
    height: 8px;
    width: 40px;
  }

  75% {
    top: 0;
    height: 10px;
    width: 20px;
  }

  100% {
    left: 235px;
    height: 40px;
    width: 10px;
    border-radius: 10px;
  }
}