/* GENERAL STYLINGS */
* {
  outline: none;
}
a {
  text-decoration: none;
}
body {
  background-color: #e8eaed;
}
body::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: rgba(150,163,182,0.4);
}
body::-webkit-scrollbar-button {
  display: block;
  width: 2px;
  height: 0;
}
.container-fluid {
  max-width: 1300px;
  margin: 0 auto;
}
.box {
  border-radius: 4px;
  border: 1px solid #fff;
  background-color: #fff !important;
}
.box.no-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.separator {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.side-bar >.list-group-item {
  background-color: #fff;
}
.side-bar >.list-group-item.active {
  background: #29aae2;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #000;
  background-color: #fff;
  border-color: #fff #fff #fff;
}
.nav-tabs {
  border-bottom: 1px solid #fff;
}
.nav-tabs .nav-item {
  cursor: pointer;
}
.hidden {
  display: none !important;
}
.no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.date-piker {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.success-badge {
  border-left: 7px solid #5fc45f;
}
.danger-badge {
  border-left: 7px solid #ea7171;
}
.warning-badge {
  border-left: 7px solid #ffd400;
}
.info-badge {
  border-left: 7px solid #29aae2;
}
.select {
  color: #000 !important;
}
.text-secondary {
  color: #29aae2 !important;
}
.table > thead {
  font-weight: bold;
}
.table > thead i {
  margin-right: 10px;
}
.fluid {
  width: 100%;
}
/* CONNECT BOX */
.connect {
  width: 95%;
  max-width: 320px;
  margin: 100px auto 0;
}
.connect > img {
  max-width: 60%;
  display: block;
  margin: 0 auto 40px;
}
.custom-tooltip {
  background: #e8eaed;
  padding: 10px 20px;
}
.toUpperCase {
  text-transform: uppercase;
}
.toCapitalize {
  text-transform: capitalize;
}
.no-round {
  border-radius: 0 !important;
}
label {
  color: #fff !important;
}
.export-page .list,
.export-page ul {
  color: #fff;
}
.export-page .list > li,
.export-page ul > li {
  text-decoration: none;
  background: #e8eaed !important;
}
.export-page .list > li:nth-child(odd),
.export-page ul > li:nth-child(odd) {
  background: #2c3034 !important;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: none;
}
.modal.show {
  display: block;
}
.modal.hide {
  display: none !important;
}
.modal > .blur-wrapper {
  -webkit-transition: 0.17s all ease;
  transition: 0.17s all ease;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.modal > .blur-wrapper.show {
  background: rgba(0,0,0,0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.modal > .blur-wrapper.hide {
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  background: rgba(0,0,0,0);
}
.modal > .blur-wrapper > .modal-box {
  width: 350px;
  background: #030305;
  border-radius: 5px;
  margin: 25vh auto 10vh;
  position: relative;
  opacity: 0;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 576px) {
  .modal > .blur-wrapper > .modal-box {
    width: 100%;
    height: 100vh;
  }
}
.modal > .blur-wrapper > .modal-box.show {
  opacity: 1;
  margin-top: 15vh;
}
@media screen and (max-width: 576px) {
  .modal > .blur-wrapper > .modal-box.show {
    margin-top: 0;
  }
}
.modal > .blur-wrapper > .modal-box.hide {
  opacity: 0;
  margin-top: 25vh;
}
@media screen and (max-width: 576px) {
  .modal > .blur-wrapper > .modal-box.hide {
    margin-top: 15vh;
  }
}
.modal > .blur-wrapper > .modal-box > .fa-times {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  color: #999;
  cursor: pointer;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.modal > .blur-wrapper > .modal-box > .fa-times:hover {
  color: #fff;
}
.modal > .blur-wrapper > .modal-box > .title {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 20px;
}
.modal > .blur-wrapper > .modal-box > .modal-body {
  overflow-y: scroll;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.modal > .blur-wrapper > .modal-box > .modal-body::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.modal > .blur-wrapper > .modal-box > .modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.modal > .blur-wrapper > .modal-box > .modal-body::-webkit-scrollbar-thumb {
  background: rgba(150,163,182,0.4);
}
.modal > .blur-wrapper > .modal-box > .modal-body::-webkit-scrollbar-button {
  display: block;
  width: 2px;
  height: 0;
}
.modal > .blur-wrapper > .modal-box > .modal-footer {
  border-top: 0;
}
