.logo-custom {
  width: 200px;
}

/* SCROLL  */
.content::-webkit-scrollbar {
  width: 8px;
}

.content::-webkit-scrollbar-thumb {
  background: rgba(41, 49, 52, 0.5) !important;
  border-radius: 10px;
}

/* SELECT 2  */
.select2-container .select2-selection--single {
  height: calc(1.5em + 0.75rem + 3px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 35px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px !important;
}

/* END SELECT 2  */

.dropdown-menu {
  padding: 0 !important;
}

.text-box {
  overflow: hidden;
}

.text-box .text {
  position: relative;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}

.text.sec-text {
  color: #fec32f;
}

.text.sec-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #5066e1;
  border-left: 2px solid #fec32f;
  animation: animate 4s steps(19) infinite;
  -webkit-animation: animate 4s steps(19) infinite;
}

@keyframes animate {
  40%,
  60% {
    left: 100%;
  }

  100% {
    left: 0;
  }
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:invalid ~ .invalid-feedback {
  text-align: left !important;
}

/* custom card  */
.card-custom {
  margin: 50px 30px 20px 30px;
  position: relative;
  width: 250px;
  height: 150px;
  background: #fff;
  transition: 0.5s;
}

.card-custom .lines {
  position: absolute;
  inset: 0;
  background: #5066e1;
  overflow: hidden;
}

.card-custom .lines::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 120px;
  background: linear-gradient(transparent, #fec32f, #fec32f, #fec32f, transparent);
  animation: animatecardcustom 4s linear infinite;
}

@keyframes animatecardcustom {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.card-custom .lines::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
}

.card-custom .imgbox {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 100px;
  height: 80px;
  transform: translateX(-50%);
  background: #5066e1;
  transition: 0.5s;
  z-index: 10;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-custom .imgbox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 50px;
  transform: translate(-50%, -50%);
  background: linear-gradient(transparent, #fec32f, #fec32f, #fec32f, transparent);
  animation: animatecardcustom2 4s linear infinite;
}

@keyframes animatecardcustom2 {
  0% {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.card-custom .imgbox::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
}

.card-custom .imgbox i {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  width: 100px;
  z-index: 1;
  color: #5066e1;
}

.card-custom .content-custom {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.card-custom .content-custom .content-custom-details {
  padding: 30px;
  text-align: center;
  width: 100%;
  transform: translateY(20px);
}

.card-custom .content-custom .content-custom-details h2 {
  font-size: 1.3em;
  font-weight: 700;
  color: #5066e1;
  line-height: 1.2em;
}

/* custom  */
/* .avatar .avatar-title {
  background: #5066e1 !important;
  color: #fec32f !important;
} */

/* scan  */
.scan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 130px;
}

.scan .fingerprint {
  position: relative;
  width: 150px;
  height: 226px;
  background-repeat: no-repeat;
  background-size: 150px;
}

.scan .fingerprint::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 150px;
  animation: animatekyc 4s ease-in-out infinite;
  background-repeat: no-repeat;
}

@keyframes animatekyc {
  0%,
  100% {
    height: 0%;
  }

  50% {
    height: 100%;
  }
}

.scan .fingerprint::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fec32f;
  border-radius: 8px;
  filter: drop-shadow(0 0 20px #fec32f) drop-shadow(0 0 60px #fec32f);
  animation: animatekycline 4s ease-in-out infinite;
}

@keyframes animatekycline {
  0%,
  100% {
    top: 0%;
  }

  50% {
    top: 100%;
  }
}

.scan h3 {
  text-transform: uppercase;
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-top: 20px;
  color: #00405d;
  filter: drop-shadow(0 0 20px #00405d) drop-shadow(0 0 60px #00405d);
  animation: animatekyctext 0.5s steps(1) infinite;
}

@keyframes animatekyctext {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .card-custom {
    margin: 50px 0;
  }
}

@media (max-width: 992px) {
  /* datatable  */
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter {
    text-align: left !important;
    margin-top: 10px !important;
  }

  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin-top: 10px !important;
    justify-content: center !important;
  }

  .col-sm-12.col-md-5,
  .col-sm-12.col-md-6,
  .col-sm-12.col-md-7 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 1200px) {
  .header .header-body {
    background-color: #5066e1 !important;
    justify-content: space-around !important;
  }
}
