.b-top-active-3 {
  border-top: 3px solid #007bff;
}

.b-bot-active-3 {
  border-bottom: 3px solid #007bff;
}

.b-left-active-3 {
  border-left: 3px solid #007bff;
}

.blue-bg {
  background-color: #007bff !important;
  color: #ffffff;
}

.list-group .list-group-item {
  background-color: #ffffff;
}

.list-group .list-group-item.active-list {
  background-color: #ffffff;
  color: #495057;
  border-color: #e7eaec;
  border-left: 3px solid #007bff;
}

.form-control:focus {
  border-color: #007bff !important;
}

.cursor-pointer {
  cursor: pointer;
}

.show-content {
  display: block !important;
}

.hide-content {
  display: none !important;
}

.badge-remove {
  position: absolute;
  right: 0;
  transform: translate(-19px, -12px);
  cursor: pointer;
}

.capture-video {
  width: 100% !important;
  height: auto !important;
}

.error-message {
  font-size: 12px;
}

.map-box {
  width: 100%;
  height: 300px;
}

/* video js override */

.video-js {
  width: 100%;
  margin: 0 auto;
  height: 100% !important;
}

.container-video {
  width: 100%;
}

.login-box {
  background-color: white;
}

.login-box .my-logo {
  background-image: var(--mylogo);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.login-box .form {
  padding: 2.5rem;
  max-height: 100%;
}

.login-box .title {
  display: block;
  font-size: 14pt;
  font-weight: 600;
}

@media only screen and (max-width: 575px) {
  .login-box .bannerContainer {
    display: none !important;
  }
}

.box-loader {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 9999;
}

.hide-box-loader {
  display: none;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70px;
  display: flex;
  align-items: center;
}

.loading-bar {
  width: 7px;
  height: 70px;
  background: #e62b1e;
  margin: 0 4px;
  border-radius: 10px;
  -webkit-animation: loading 0.8s infinite;
          animation: loading 0.8s infinite;
}

.loading-bar:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.loading-bar:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loading-bar:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.loading-bar:nth-child(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    height: 70px;
  }

  50% {
    height: 0;
  }

  100% {
    height: 70px;
  }
}

@keyframes loading {
  0% {
    height: 70px;
  }

  50% {
    height: 0;
  }

  100% {
    height: 70px;
  }
}

