/* ================= LOADER  ==================== */
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes pulse {
  50% {
    background: white;
  }
}
@keyframes pulse {
  50% {
    background: white;
  }
}
.loading {
  margin: 20px auto;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 0.25rem solid rgba(0, 0, 0, 0.5);
  border-top-color: #ccc;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}

.loading-double {
  border-style: double;
  border-width: 0.5rem;
}

.loading-pulse {
  position: relative;
  width: 6px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-animation: pulse 750ms infinite;
  animation: pulse 750ms infinite;
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}

.loading-pulse:before,
.loading-pulse:after {
  content: "";
  position: absolute;
  display: block;
  height: 16px;
  width: 6px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: pulse 750ms infinite;
  animation: pulse 750ms infinite;
}

.loading-pulse:before {
  left: -12px;
}

.loading-pulse:after {
  left: 12px;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}

.form-group {
  margin-bottom: 1rem;
}

.form-control {
  padding: 0.5rem 0.75rem;
}

i.bi {
  line-height: 16px;
}

#auth #auth-left .auth-title {
  color: #0063d2 !important;
}

#auth #auth-right {
  background-color: #0063d2 !important;
  background: none;
}

#main #main-content {
  padding: 1rem;
}

.burger-btn, .sidebar-hide {
  cursor: pointer;
}

#sidebar .logo {
  position: relative;
}
#sidebar .logo a {
  display: block;
  max-width: 150px;
}

.sidebar-wrapper {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.04);
}

.sidebar-wrapper .sidebar-header img {
  height: auto;
  width: 100%;
}

.navbar {
  height: 90px;
  padding: 1rem;
}

.btn-primary {
  background-color: #0063d2;
}

.sidebar-wrapper .menu .sidebar-item.active > .sidebar-link {
  background-color: #0063d2 !important;
}

.custom-header-table {
  background: #f2f7ff;
}

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

.page-title {
  padding: 15px;
  border-top-left-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}

.table td {
  padding: 1rem;
  font-size: 14px;
}

.table thead th {
  font-size: 12px;
  padding: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #e9ecef;
}

.table tbody tr:hover {
  background: #0063d2;
  color: #fff;
}

.pagination.pagination-primary .page-item.active .page-link {
  background-color: #0063d2;
  border-color: #0063d2;
  box-shadow: 0 2px 5px rgba(67, 94, 190, 0.3);
}

.sidebar-wrapper .menu .submenu .submenu-item.active {
  position: relative;
  background: #fd0;
  border-radius: 0.5rem;
}

.sidebar-wrapper .menu .submenu .submenu-item a {
  padding: 0.7rem 1rem;
}

.sidebar-wrapper .menu .submenu .submenu-item {
  margin-top: 5px;
}

.sidebar-wrapper .menu .sidebar-item.has-sub.active .sidebar-link:after {
  color: #fff;
}

.hide {
  display: none !important;
}

.form-control.v-select {
  padding: 0.245rem 0.25rem;
}

.vs__actions {
  padding: 0 3px;
}

.vs--searchable .vs__dropdown-toggle {
  padding: 0;
  border: none;
}

.btn-success {
  background-color: #489f0b;
  border-color: #489f0b;
}

.btn-danger {
  background-color: #d43d4c;
  border-color: #d43d4c;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 1s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.card-header.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropzone {
  border: 1px solid #dce7f1 !important;
}
.dropzone .thumb {
  position: relative;
}
.dropzone .thumb img {
  width: 100%;
}
.dropzone .thumb .delete-image {
  position: absolute;
  background: #fff;
  right: 5px;
  top: 5px;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  color: #c00;
  cursor: pointer;
}
.dropzone .thumb .delete-image i {
  line-height: 16px;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upload-placeholder i {
  font-size: 35px;
  display: block;
  width: 40px;
  height: 40px;
  color: #0063d2;
}
.upload-placeholder span {
  font-size: 12px;
}

.ptb-20 {
  padding: 20px 0;
}

.message-box {
  background-color: #249724;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin: 30px 0;
}
.message-box h4 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}
.message-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}
.message-box .btn {
  margin: 20px 0 0 0;
}
.message-box i {
  font-size: 30px;
  margin: 20px auto;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 100px;
  color: #249724;
  line-height: 50px;
  text-align: center;
  display: block;
}

.message-box.default {
  background-color: #f2f2f2;
  color: #333;
}

textarea {
  height: 70px;
}

.help-block {
  font-weight: normal;
  color: #c00;
  font-size: 12px;
}
.help-block strong {
  font-weight: normal;
  color: #c00;
  font-size: 12px;
}
