@keyframes circular_loader1 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-90deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes circular_loader2 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.preloader {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.circular-container {
  width: 10%;
  margin: 0 auto;
}

.circle {
  border: 5px solid transparent;
  border-radius: 50%;
}

.circular-loader1 {
  width: 100px;
  height: 100px;
  display: table;
  padding: 10px;
  border-top: 5px solid #006495;
  border-bottom: 5px solid #006495;
  animation: circular_loader1 linear 2s infinite;
}

.circular-loader2 {
  width: 10px;
  height: 10px;
  display: table-cell;
  border-right: 5px solid #3498db;
  border-left: 5px solid #3498db;
  animation: circular_loader2 linear 2s infinite;
}

.active_content {
  display: none;
}

.active_content.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}

.stacktable {
  width: 100%;
}

.st-head-row {
  padding-top: 1em;
}

.st-head-row.st-head-row-main {
  font-size: 1.5em;
  padding-top: 0;
}

.st-key {
  width: 49%;
  text-align: right;
  padding-right: 1%;
}

.st-val {
  width: 49%;
  padding-left: 1%;
}

.stacktable.large-only {
  display: table;
}

.stacktable.small-only {
  display: none;
}

@media (max-width: 800px) {
  .stacktable.large-only {
    display: none;
  }

  .stacktable.small-only {
    display: table;
  }
}

@media (max-width: 768px) {
  .nav.nav-tabs {
    display: flex;
    flex-direction: column;
  }

  .nav-tabs>li {
    margin: 2px 0px;
    border: 1px solid #00000030;
  }

  .nav-tabs>li.active {
    margin: 2px 0px;
    border: 1px solid green;
  }
}

.d-flex {
  display: flex !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-grow {
  flex-grow: 1 !important;
}
.flex-between {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-start !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.flex-centered {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.flex-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
}
.flex-no-wrap {
  display: flex !important;
  flex-wrap: nowrap !important;
}
.space-right {
  margin-right: 10px !important;
}
.space-left {
  margin-left: 10px !important;
}
.space-top {
  margin-top: 10px !important;
}
.space-bottom {
  margin-bottom: 10px !important;
}
.pad {
  padding: 10px !important;
}
.pad-small {
  padding: 5px !important;
}
.gap   { gap: 5px  !important; }
.gap-2 { gap: 10px !important; }
.gap-3 { gap: 15px !important; }
.gap-4 { gap: 20px !important; }
.gap-5 { gap: 25px !important; }
.gap-6 { gap: 30px !important; }
.gap-7 { gap: 35px !important; }

.m-0 { margin: 0 !important; }
.p-0 { padding: 0 !important; }
.w-100 { width: 100% !important; }
.w-75 { width: 75% !important; }
.w-50 { width: 50% !important; }
.w-25 { width: 25% !important; }
.h-100 { height: 100% !important; }
.h-75 { height: 75% !important; }
.max-h-70vh { max-height: 70vh !important; }
.h-50 { height: 50% !important; }
.h-25 { height: 25% !important; }

.ellipsis {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden
}

.overflow-auto {
  overflow: auto !important;
}
.pretty-scrollbar {
  overflow: auto;
  scroll-behavior: smooth;
}
.pretty-scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.pretty-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}
.pretty-scrollbar::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 20px;
  border: 1px solid transparent;
  background-clip: content-box;
}
.pretty-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

.pointer {
  cursor: pointer !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}


.table-bordered {
  border: 1px solid #f4f4f4
}

.table-bordered>thead>tr>th,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>tbody>tr>td,
.table-bordered>tfoot>tr>td {
  border: 1px solid #f4f4f4
}

.table-bordered>thead>tr>th,
.table-bordered>thead>tr>td {
  border-bottom-width: 2px
}