/* rubik-300 - latin */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/rubik-v14-latin/rubik-v14-latin-300.aa1b035cff7c.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.aa1b035cff7c.eot?#iefix") format("embedded-opentype"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.528a497d62ed.woff2") format("woff2"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.a72320a5b709.woff") format("woff"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.0f2b545691a8.ttf") format("truetype"), url("../fonts/rubik-v14-latin/rubik-v14-latin-300.485d9480b3ce.svg#Rubik") format("svg");
  /* Legacy iOS */
}
*,
body {
  font-family: "Rubik", sans-serif;
}

body {
  background-color: #f3f2f2;
}

/* width */
::-webkit-scrollbar {
  width: 0.8vw;
  height: 0.8vw;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f3f2f2;
  border-radius: 0.5vw;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 0.5vw;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.dim {
  /* For Internet Explorer */
  box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5) !important;
  /* For other browsers */
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.5) !important;
}

.table td,
.table th {
  vertical-align: middle;
}
.table tbody > tr > td > a {
  display: flex;
  color: #2196f3;
  padding: 0.5rem 1rem;
  transition: 0.2s;
}
.table tbody > tr > td > a:hover {
  background-color: rgba(157, 220, 223, 0.3);
  border-radius: 0.2em;
}
.table tbody > tr > td > a:focus {
  box-shadow: 0 0 0 0.3rem rgba(127, 190, 193, 0.5);
}
.table input {
  padding: 10px;
  max-width: 130px;
  border-style: none;
  border: 1px solid #bbbbbb;
  border-radius: 0.25rem;
  transition: 0.3s;
}
.table input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.table .dropdown #dropdownMenuButton {
  color: #999;
}

.table-title {
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px;
  margin: 10px 0;
  color: #2196f3;
}

#main {
  padding-bottom: 3rem;
  transition: 0.5s;
}

@media (max-width: 800px) {
  #main {
    padding-top: 115px;
  }
}
/*======================================
  //--//-->   Top Navigation
  ======================================*/
#top-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 300px;
  -webkit-margin-start: -10px;
  z-index: 90;
  /*padding: 0.4rem 1rem;*/
  background: #ffffff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
#top-navbar .nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top-navbar .nav-wrapper .form-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex: 0.8;
}
#top-navbar .nav-wrapper .form-header .au-input {
  flex: 0.9;
}
#top-navbar .nav-wrapper .form-header button {
  flex: 0.1;
}
#top-navbar .nav-wrapper .toggle-btn {
  cursor: pointer;
  padding: 0.2rem 0.5rem;
}
#top-navbar .nav-wrapper .toggle-btn:hover {
  background-color: #fff;
}
#top-navbar.toggle-active {
  left: 0;
}

@media (max-width: 800px) {
  #top-navbar .nav-wrapper .form-header {
    order: 2;
  }
  #top-navbar .nav-wrapper .toggle-btn {
    order: 1;
  }
  #top-navbar .nav-wrapper .dropdown {
    order: 3;
  }
}
.manage-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 300px;
  padding: 0.5rem;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid #6c757d;
  transition: 0.3s;
}
.manage-wrap.toggle-active {
  left: 0;
}

/* ########################## Form ########################## */
.au-input {
  display: flex;
  width: auto;
  line-height: 40px;
  border: 1px solid #e5e5e5;
  font-family: inherit;
  font-size: 13px;
  color: #666;
  padding: 0 17px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.au-input:focus {
  border: 1px solid #343a40;
}

.au-input--xl {
  min-width: 935px;
}

@media (max-width: 1600px) {
  .au-input--xl {
    min-width: 500px;
  }
}
@media (max-width: 1000px) {
  .au-input--xl {
    min-width: 150px;
  }
}
@media (max-width: 767px) {
  .au-input--xl {
    min-width: 150px;
    max-height: 45px;
  }
}
@media (max-width: 800px) {
  .nav-wrapper .form-header {
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .nav-wrapper .form-header .au-input--xl {
    width: 100%;
  }
  .nav-wrapper .toggle-btn {
    -ms-flex-order: 2;
    order: 2;
  }
  .nav-wrapper .dropdown {
    -ms-flex-order: 3;
    order: 3;
  }
}
/* #################################################################### */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar img:hover {
  filter: contrast(0.9);
}
.avatar.avatar-md {
  width: 60px;
  height: 60px;
}
.avatar.avatar-lg {
  width: 80px;
  height: 80px;
}

/*======================================
  //--//-->   Drop Down Navigation
  ======================================*/
.dropdown-menu {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}
.dropdown-menu .dropdown-item {
  padding-top: 8px;
  padding-bottom: 8px;
}

@keyframes grow-top {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
/*======================================
  //--//-->   Side Navigation
  ======================================*/
#side-nav {
  width: 300px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  overflow-y: auto;
  resize: horizontal;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16), 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}
#side-nav i {
  margin-right: 8px;
}
#side-nav footer {
  margin-top: 4rem;
}
#side-nav .top-side {
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  padding: 0.5rem 2rem;
}
#side-nav .top-side .desktop-hide {
  display: none;
}
#side-nav .top-side .desktop-hide .toggle-btn {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  color: #f2f2f2;
  padding: 0 1rem;
  border-radius: 2px;
  cursor: pointer;
  margin-left: auto;
  transition: 0.5s;
}
#side-nav .top-side .desktop-hide .toggle-btn i {
  color: #999;
  margin: 0 auto;
}
#side-nav .top-side .desktop-hide .toggle-btn i:hover {
  color: #666;
  transition: 0.2s;
}
#side-nav .top-side .logo img {
  width: 90%;
}
#side-nav ul {
  padding: 0;
}
#side-nav ul li {
  list-style: none;
}
#side-nav ul li:last-child {
  border-bottom: none;
}
#side-nav ul li a {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  color: #666;
  border-radius: 0 2em 2em 0;
  transition: 0.25s;
}
#side-nav ul li a:hover {
  color: #007bff;
  background: rgba(0, 111, 255, 0.1);
}
#side-nav ul li.active a {
  background: var(--bs-primary);
  color: #fff;
}
#side-nav.toggle-active {
  box-shadow: 0px 0px 0px 0px #dbdbdb;
  left: -300px;
}

@media screen and (max-width: 1150px) {
  #side-nav .top-side {
    padding-top: 3rem;
  }
  #side-nav .top-side .desktop-hide {
    display: block;
  }
}
#main.toggle-active {
  box-shadow: 0px 0px 0px 0px #dbdbdb;
  padding-left: 0px;
}

@media screen and (max-width: 1150px) {
  #side-nav {
    left: -300px;
  }
  #side-nav.toggle-active {
    left: 0;
    -webkit-box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5);
  }
  #main {
    padding-left: 0;
  }
  #top-navbar {
    left: 0;
  }
  .manage-wrap {
    left: 0;
  }
}
/*======================================
  //--//-->   Breadcrump
  ======================================*/
#input-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
  color: #fd7e14;
  border-radius: 3px;
  background-color: #fff !important;
  box-shadow: inset 0 0 2.5rem rgba(0, 0, 0, 0.2);
}
#input-nav a {
  color: #007bff;
}
#input-nav a:hover {
  text-decoration: underline;
}
#input-nav a::after {
  content: ">";
  color: #666;
  margin: 0 5px;
  vertical-align: middle;
}

/*======================================
  //--//-->   End Navigation
  ======================================*/
.footer {
  top: 100%;
  bottom: 0;
  display: block;
  text-align: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  margin-top: 4rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

.title-1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 24px;
  border-radius: 0.2em;
}
.title-1 i {
  margin-right: 8px;
}

@keyframes lineAnim {
  0% {
    width: 0px;
    height: 4px;
  }
  60% {
    width: 50%;
    height: 4px;
  }
  100% {
    width: 50%;
    height: 15px;
  }
}
.form-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 17px;
  padding: 10px;
  background: -o-linear-gradient(50deg, #45cafc, #303f9f);
  background: linear-gradient(40deg, #45cafc, #303f9f);
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.form-title i {
  margin-right: 8px;
}

.news {
  background: -o-linear-gradient(50deg, #45cafc, #303f9f) !important;
  background: linear-gradient(40deg, #45cafc, #303f9f) !important;
  color: #fff;
}

.events {
  background: -o-linear-gradient(50deg, #ad86f6, #572ca7) !important;
  background: linear-gradient(40deg, #ad86f6, #572ca7) !important;
  color: #fff;
}

.allocate-btn {
  /* flex: 1; */
  text-align: center;
  width: auto;
  /* min-width: 50px; */
  padding: 10px 20px;
  /* margin: 5px auto; */
  cursor: pointer;
  color: #5c6ac4;
  border: 1px solid #ddd;
  border-radius: 2rem;
  transition: 0.2s;
}

.allocate-btn:hover {
  background: #ddd;
}

.link {
  color: #2196f3;
  margin-top: 40px;
  transition: 0.2s;
}

.link:hover {
  color: #0b21ad;
}

/* ################################################################################################# */
.score-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  width: 7rem;
  height: 7rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #d5dce4;
  border-radius: 50%;
  box-shadow: 0px 0px 3px 10px #f0f0f0;
  /* full side shadow */
}

.score-wrapper > .score-wrapper-bar {
  position: absolute;
  bottom: 0;
  width: 100%;
  transition: width 6s ease;
}

.score-wrapper > .score-wrapper-text {
  position: absolute;
  font-size: 20px;
  height: 100%;
  width: 100%;
  z-index: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.score-wrapper .bg-success {
  background-color: #6cbd45 !important;
}

.score-wrapper .bg-warning {
  background-color: #ffc107 !important;
}

.score-wrapper .bg-danger {
  background-color: #f53d3d !important;
}

.bg-sub-info {
  background-color: rgb(53, 182, 204) !important;
  color: #fff;
}

.main-progress {
  animation: main-progress1 7s ease-in-out forwards;
}

@keyframes main-progress1 {
  0% {
    transform: scale(0);
  }
  95% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
#progress-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

/* ############################################################### */
/* loader */
.loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 5.6;
  animation: loader-in-out 7s ease-in-out forwards;
}

@keyframes loader-in-out {
  0% {
    transform: scale(0);
  }
  10% {
    transform: scale(1);
  }
  95% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.progress-bar {
  animation: loader-bar ease-in-out 7s forwards;
}

@keyframes loader-bar {
  0%, 10% {
    width: 0%;
  }
  50%, 70% {
    width: 50%;
  }
  80%, 95% {
    width: 97%;
  }
  100% {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .content-center {
    display: block;
  }
  .mobile-hide-500 {
    display: none;
  }
  .save-btn {
    font-size: 14px;
  }
  .title-1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .mobile-hide-450 {
    display: none;
  }
  /* .drop-down{
    display: block;
  } */
}
.edit-btn i {
  margin-right: 10px;
}

@media screen and (max-width: 450px) {
  .edit-btn i {
    margin-right: 0;
  }
}
/* =============================================== */
/* switch */
/* ================================================== */
.switch.switch-text {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 48px;
  height: 24px;
  background-color: transparent;
  cursor: pointer;
}

.switch.switch-text .switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch.switch-text .switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #dc3545;
  /* border: 1px solid #f2f2f2; */
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  transition: opacity background-color 0.15s ease-out;
}

.switch.switch-text .switch-label::before,
.switch.switch-text .switch-label::after {
  position: absolute;
  top: 50%;
  width: 50%;
  margin-top: -0.5em;
  line-height: 1;
  text-align: center;
  -webkit-transition: inherit;
  -o-transition: inherit;
  -moz-transition: inherit;
  transition: inherit;
}

.switch.switch-text .switch-label::before {
  right: 1px;
  color: #e9ecef;
  content: attr(data-off);
}

.switch.switch-text .switch-label::after {
  left: 1px;
  color: #fff;
  content: attr(data-on);
  opacity: 0;
}

.switch.switch-text .switch-input:checked ~ .switch-label::before {
  opacity: 0;
}

.switch.switch-text .switch-input:checked ~ .switch-label::after {
  opacity: 1;
}

.switch.switch-text .switch-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-color: #fff;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

.switch.switch-text .switch-input:checked ~ .switch-handle {
  left: 26px;
}

.switch.switch-text.switch-lg {
  width: 56px;
  height: 28px;
}

.switch.switch-text.switch-lg .switch-label {
  font-size: 12px;
}

.switch.switch-text.switch-lg .switch-handle {
  width: 24px;
  height: 24px;
}

.switch.switch-text.switch-lg .switch-input:checked ~ .switch-handle {
  left: 30px;
}

.switch.switch-text.switch-sm {
  width: 40px;
  height: 20px;
}

.switch.switch-text.switch-sm .switch-label {
  font-size: 8px;
}

.switch.switch-text.switch-sm .switch-handle {
  width: 16px;
  height: 16px;
}

.switch.switch-text.switch-sm .switch-input:checked ~ .switch-handle {
  left: 22px;
}

.switch.switch-text.switch-xs {
  width: 32px;
  height: 16px;
}

.switch.switch-text.switch-xs .switch-label {
  font-size: 7px;
}

.switch.switch-text.switch-xs .switch-handle {
  width: 12px;
  height: 12px;
}

.switch.switch-text.switch-xs .switch-input:checked ~ .switch-handle {
  left: 18px;
}

.switch-pill .switch-label,
.switch.switch-3d .switch-label,
.switch-pill .switch-handle,
.switch.switch-3d .switch-handle {
  -webkit-border-radius: 50em !important;
  -moz-border-radius: 50em !important;
  border-radius: 50em !important;
}

.switch-pill .switch-label::before,
.switch.switch-3d .switch-label::before {
  right: 2px !important;
}

.switch-pill .switch-label::after,
.switch.switch-3d .switch-label::after {
  left: 2px !important;
}

.switch-success > .switch-input:checked ~ .switch-label {
  background: #28a745 !important;
  border-color: #1e7e34;
}

.switch-success > .switch-input:checked ~ .switch-handle {
  border-color: #1e7e34;
}

.switch-success-outline > .switch-input:checked ~ .switch-label {
  background: #fff !important;
  border-color: #28a745;
}

.switch-success-outline > .switch-input:checked ~ .switch-label::after {
  color: #28a745;
}

.switch-success-outline > .switch-input:checked ~ .switch-handle {
  border-color: #28a745;
}

.switch-success-outline-alt > .switch-input:checked ~ .switch-label {
  background: #fff !important;
  border-color: #28a745;
}

.switch-success-outline-alt > .switch-input:checked ~ .switch-label::after {
  color: #28a745;
}

.switch-success-outline-alt > .switch-input:checked ~ .switch-handle {
  background: #28a745 !important;
  border-color: #28a745;
}

.fas,
.fa {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: rgba(0, 0, 0, 0.093);
  border-radius: 50%;
}

/* Exclude styles for .fas and .fa elements inside dashboard page */
.card-count .fas,
.card-count .fa {
  font-size: 24px;
  display: initial;
  align-items: initial;
  justify-content: initial;
  width: initial;
  height: initial;
  background-color: initial;
  border-radius: initial;
}
