@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Colors */
/* Font */
/* Spacing */
/* Border radius */
/*** Inputs ***/
.form-control {
  outline: 0;
  border: 1px solid rgb(175, 175, 175);
  border-radius: 0.25rem;
  padding: 0.65em 1em;
  width: 100%;
  transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  -ms-transition: 0.1s ease-in;
  -moz-transition: 0.1s ease-in;
  -webkit-transition: 0.1s ease-in;
}

.form-control::placeholder,
.form-control::-moz-placeholder {
  color: rgb(175, 175, 175);
}

.form-control:focus {
  box-shadow: 0 0 6px rgba(0, 16, 32, 0.4);
  border: 1px solid rgba(0, 16, 32, 0.4);
}

.input-group-search {
  position: relative;
}

.input-group-search .form-control {
  border: 0;
  border-radius: 0 !important;
  border-bottom: 1px solid rgb(175, 175, 175);
  padding: 0.5em 0 0.5em 1.75em;
}

.input-group-search .form-control:focus {
  box-shadow: 0 0 0px rgba(0, 16, 32, 0.4);
  border: 0px solid rgba(0, 16, 32, 0.4);
  border-bottom: 1px solid #001020;
}

.input-group-search button {
  position: absolute;
  left: 1.25em;
  top: 45%;
  transform: translate(-50%, -50%);
}

.input-group {
  display: flex;
}

.input-group > button {
  border-radius: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  z-index: 9;
  margin: auto -3px auto auto;
}

.input-group > input ~ button {
  border-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  z-index: 9;
  margin: auto auto auto -3px;
}

.input-group-file {
  display: flex;
  align-items: center;
}

.input-files-container {
  width: 100%;
  display: flex;
  align-items: center;
  outline: 0;
  border: 1px solid rgb(175, 175, 175);
  border-radius: 0.25rem;
  height: 38.5px;
  transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  -ms-transition: 0.1s ease-in;
  -moz-transition: 0.1s ease-in;
  -webkit-transition: 0.1s ease-in;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-color: rgb(175, 175, 175) #f1f1f1;
  scrollbar-width: thin !important;
}

.input-files-container::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.input-files-container::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: inset 0 0 5px #f1f1f1;
  border-radius: 4px;
  border-left: 1.5px solid transparent;
  border-right: 1.5px solid transparent;
}

.input-files-container::-webkit-scrollbar-thumb {
  background: #E8E8E8;
  border-radius: 4px;
}

.input-files-container::-webkit-scrollbar-thumb:hover {
  background: rgb(175, 175, 175);
}

.input-files-container p {
  font-size: 12px;
  padding-left: 1em;
  color: rgb(126, 126, 126) !important;
}

.input-files-container ~ button,
.input-group-file > button:first-child {
  border-radius: 0;
  z-index: 9;
}

.input-files-container ~ button {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  margin: auto auto auto -3px;
}

.input-group-file > button:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  margin: auto -3px auto auto;
}

.input-files-container ~ button.btn-primary {
  border: 2px solid #00298A;
}

.input-files-container ~ button.btn-primary:hover {
  border: 2px solid #204aaa;
}

.file-input-items {
  display: flex;
  align-items: center;
  padding: 0 1em;
}

.file-input-items:first-child {
  margin-left: 1em;
}

.file-input-items {
  background-color: #E8E8E8;
  font-size: 12px;
  padding: 1px 6px;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  margin-right: 1em;
}

.file-input-remove-btn {
  margin-left: 6px;
  height: 12px;
  width: 12px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001020;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.input-hidden-file-container {
  height: 0px;
  width: 0px;
  overflow: hidden;
}

.form-select {
  position: relative;
  width: 100%;
  border: 1px solid rgb(175, 175, 175);
  padding: 0.65em 1em;
  border-radius: 0.25rem;
  color: #001020;
  background: #fff;
  background-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-appearance: none;
  background-position-x: calc(100% - 5px);
  outline: 0;
}

/*** KBD ***/
kbd {
  background-color: #001020;
  color: #fff;
  border-radius: 4px;
  padding: 0.15em 0.33em;
}

/*** Code ***/
code {
  color: #A80202;
}

/*** Alert ***/
.alert {
  padding: 1em;
  border-radius: 5px;
}

.alert-success {
  background-color: #02A83F;
  color: #fff;
}

.alert-primary {
  background-color: #00298A;
  color: #fff;
}

.alert-warning {
  background-color: #FFECB8;
  color: #001020;
}

.alert-danger {
  background-color: #A80202;
  color: #fff;
}

.alert-info {
  background-color: #73cef1;
  color: #fff;
}

/*** Table ***/
.table-responsive {
  max-width: 100%;
  overflow: auto;
}

.table {
  border-collapse: collapse;
  width: 100%;
  border: 0;
}

.table thead {
  background-color: #001020;
}

.table tr {
  border-radius: 10px;
}

.table tr th {
  color: #fff;
  text-align: left;
  padding: 0.5em 0.5em 0.5em 1.5em;
}

.table tr th:first-child {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.table tr th:last-child {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.table tbody:before {
  content: "@";
  display: block;
  line-height: 20px;
  text-indent: -99999px;
}

.table tbody tr td {
  padding-left: 1.5em;
}

/*** Dropdown ***/
.dropdown,
.dropup {
  position: relative;
  display: inline-block !important;
}

.dropdown-static {
  position: static;
}

.dropdown-static-js {
  position: static;
}

.dropdown-relative-js {
  position: relative !important;
}

.dropdown-active {
  background-color: rgb(207, 207, 207) !important;
}

@media screen and (max-width: 500px) {
  .dropdown,
  .dropup {
    position: static;
  }
}
.dropdown-menu {
  margin: 0;
  position: absolute;
  display: none;
  background-color: #fff;
  text-decoration: none;
  list-style: none;
  padding: 0;
  box-shadow: 0 0px 12px rgba(51, 51, 51, 0.25);
  border-radius: 0.25rem;
  transform: translate(0%, 0);
  left: 0%;
  right: auto;
  width: 82vw;
  max-width: 450px;
  min-width: 50px;
  z-index: 999 !important;
  margin: 20px 0;
}

@media screen and (max-width: 500px) {
  .dropdown-menu {
    transform: translate(0%, 0) !important;
    left: 0% !important;
    right: 0%;
    width: 90%;
    margin: 20px auto;
  }
}
.dropdown-start .dropdown-menu {
  left: 0%;
  right: auto;
}

.dropdown-end .dropdown-menu {
  left: auto;
  right: 0%;
}

.dropdown-center .dropdown-menu {
  left: 50%;
  transform: translate(-50%, 0);
  right: 0%;
}

.dropup .dropdown-menu {
  left: 0%;
  right: auto;
}

.dropup-end .dropdown-menu {
  left: auto;
  right: 0%;
}

.dropdown-menu li {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #E8E8E8;
  width: 100%;
}

.dropdown-menu li:hover {
  background-color: rgba(232, 232, 232, 0.4);
}

.dropdown-menu li:last-child {
  border-bottom: 0px solid transparent;
}

.dropdown-item {
  color: #001020;
  text-decoration: none;
  width: 100%;
}

.dropdown-start-js .dropdown-menu {
  transform: translate(0%, 0) !important;
  right: auto !important;
  left: 0% !important;
}

.dropdown-end-js .dropdown-menu {
  transform: translate(0%, 0) !important;
  right: 0% !important;
  left: auto !important;
}

.dropdown-block {
  left: 0%;
  right: 0%;
  width: 90%;
  margin: 0 auto;
}

.dropup-center .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
}

.dropdown-block-js .dropdown-menu {
  transform: translate(0%, 0) !important;
  left: 0% !important;
  right: 0% !important;
  width: 90% !important;
  margin: 0 auto !important;
}

.dropdown-center-js .dropdown-menu {
  left: 50% !important;
  transform: translate(-50%, 0) !important;
  right: 0% !important;
  bottom: auto;
}

.dropup-center-js .dropdown-menu {
  left: 50% !important;
  transform: translate(-50%, 0) !important;
  bottom: auto !important;
}

.dropup-down-js .dropdown-menu {
  bottom: auto !important;
}

/*** Sidebar ***/
aside {
  position: absolute;
}

.sidebar-layout {
  position: relative;
}

.nav-wrapper {
  min-width: 275px;
}

.sidebar-layout {
  width: 275px;
  height: 100vh;
}

.sidebar {
  position: fixed;
  height: 100vh;
  width: 275px;
  box-shadow: 0 0 8px rgba(0, 16, 32, 0.4);
  background-color: #fff;
  z-index: 999 !important;
  transition: width 0.3s ease-in, transform 0.25s linear;
  -o-transition: width 0.3s ease-in, transform 0.25s linear;
  -moz-transition: width 0.3s ease-in, transform 0.25s linear;
  -ms-transition: width 0.3s ease-in, transform 0.25s linear;
  -webkit-transition: width 0.3s ease-in, transform 0.25s linear;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  .nav-wrapper {
    min-width: 0;
  }
  .sidebar-layout {
    width: 62px;
    z-index: 994 !important;
  }
}
.sidebar.toggled-open .sidebar-layout {
  width: 275px;
}

.sidebar.toggled-open .nav-wrapper {
  min-width: 275px;
}

/* @media screen and (max-width: 992px) {
  .sidebar {
    width: 62px;
  }
} */
.sidebar.toggled-open {
  width: 275px;
}

/* @media screen and (max-width: 992px) {
  .menu-text {
    display: none;
  }
} */
.sidebar.toggled-open .menu-text {
  display: block;
}

.sidebar-logo {
  border-bottom: 1px solid rgb(175, 175, 175);
  width: 85%;
  margin: 0 auto;
  height: 90px;
}

@media screen and (max-width: 992px) {
  .sidebar-logo {
    height: 85px;
  }
}
.sidebar-logo-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
}

.sidebar-logo-desktop .sidebar-logo-desktop-image {
  max-width: 180px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .sidebar-logo-desktop {
    display: block;
  }
}
.sidebar-contents {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sidebar-toggler-wrapper {
  margin-top: -10px;
  position: relative;
  border-bottom: 1px solid #E8E8E8;
  height: 40px;
  padding-bottom: 5em;
  width: 100%;
}

.sidebar-toggler {
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  font-size: 16px;
  background-color: #001020;
  color: #fff;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(175, 175, 175);
  border: 0;
  cursor: pointer;
}

.sidebar-toggler .icon {
  margin-bottom: -2px;
}

.sidebar-toggler .icon.toggled {
  transform: rotate(180deg) !important;
}

.sidebar-toggler .bi {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.sidebar .menu-item {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  color: #001020;
  margin-bottom: 1rem;
  overflow: hidden;
}

.sidebar .sidebar-links {
  margin: 16px 4px 4px 0;
  overflow-y: auto;
  position: relative;
}

.sidebar .sidebar-links::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1), #fff 85%);
  top: 0;
  left: 0;
  z-index: 999;
}

.sidebar .sidebar-links::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), #fff 85%);
  bottom: 0;
  left: 0;
  z-index: 999;
}

.sidebar .sidebar-links::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
}

.sidebar .sidebar-links::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: #f1f1f1;
}

.sidebar .sidebar-links::-webkit-scrollbar-thumb:hover {
  background-color: rgb(175, 175, 175);
}

.sidebar .sidebar-links .menu-item:first-child {
  margin-top: 1rem;
}

.sidebar .sidebar-links .menu-item:last-child {
  margin-bottom: 1rem;
}

.sidebar .sidebar-links .menu-item .menu-link {
  overflow: hidden;
  background-color: #fff;
  z-index: 100;
}

.sidebar .sidebar-links .menu-item .menu-link::before {
  content: "";
  height: 50px;
  width: 54px;
  position: absolute;
  background-color: #001020;
  top: 0%;
  left: 0%;
  border-top-right-radius: 0%;
  border-bottom-right-radius: 0%;
  transition: 0.115s linear;
  -o-transition: 0.115s linear;
  -ms-transition: 0.115s linear;
  -moz-transition: 0.115s linear;
  -webkit-transition: 0.115s linear;
  transition-delay: 50ms;
  -o-transition-delay: 50ms;
  -ms-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -webkit-transition-delay: 50ms;
  z-index: -1;
  transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  border-top-right-radius: 45%;
  border-bottom-right-radius: 45%;
}

.sidebar .active {
  position: relative;
}

.sidebar .sidebar-links .menu-item.active .menu-link::before {
  content: "";
  height: 50px;
  width: 54px;
  position: absolute;
  background-color: #001020;
  top: 0%;
  left: 0%;
  border-top-right-radius: 45%;
  border-bottom-right-radius: 45%;
  z-index: -1;
  transform: translateX(0%);
  -o-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

.active .menu-icon {
  color: #fff !important;
}

.sidebar .sidebar-links .menu-item:hover .menu-link::before {
  transform: translateX(0%);
}

.sidebar .menu-item .menu-link {
  color: #001020;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  min-height: 50px;
  display: flex;
  align-items: flex-start;
  z-index: 299;
}

.sidebar .menu-item .menu-icon {
  font-size: 24px;
  color: #001020;
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 0.75em;
}

@media screen and (max-width: 992px) {
  .sidebar .menu-item .menu-icon {
    min-width: 50px;
  }
}
.sidebar .menu-item:hover .menu-icon {
  transition: 0.115s linear;
  -o-transition: 0.115s linear;
  -ms-transition: 0.115s linear;
  -moz-transition: 0.115s linear;
  -webkit-transition: 0.115s linear;
  transition-delay: 10ms;
  -o-transition-delay: 10ms;
  -ms-transition-delay: 10ms;
  -moz-transition-delay: 10ms;
  -webkit-transition-delay: 10ms;
  color: #fff;
}

.sidebar .menu-item .menu-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.sidebar .menu-item .menu-icon image {
  width: 20px;
}

.sidebar .menu-item .menu-icon svg {
  display: inline-block;
  margin-top: 30% !important;
}

.sidebar .menu-item .menu-text {
  margin-top: 13px;
  width: 60%;
}

.sidebar.toggled-open .menu-text {
  animation: delayDisplayBlock 0.25s linear forwards 0.1s, delayOpacityShow 0.15s forwards 0.3s;
  position: absolute;
  opacity: 0;
}

@keyframes delayDisplayBlock {
  to {
    position: static;
  }
}
@keyframes delayOpacityShow {
  to {
    opacity: 1;
  }
}
.sidebar .menu-toggle::after {
  position: absolute;
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  top: 14px;
  right: 7.5%;
  transition: 0.25s linear;
  -o-transition: 0.25s linear;
  -ms-transition: 0.25s linear;
  -moz-transition: 0.25s linear;
  -webkit-transition: 0.25s linear;
}

/* @media screen and (max-width: 992px) {
  .sidebar .menu-toggle::after {
    display: none;
  }
} */
/*  @media screen and (min-width: 992px) {
.sidebar-main-toggler-wrapper{}
 }
 */
.sidebar.toggled-open .menu-toggle::after {
  animation-delay: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: delayChangeColor;
  display: block;
}

@keyframes delayChangeColor {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.active .menu-icon {
  color: #fff !important;
}

.open .menu-toggle::after {
  transform: rotate(-180deg) !important;
}

.sidebar .menu-sub {
  padding: 0 0 0 1em;
  z-index: -1;
  height: 100%;
  transition: max-height 0.2s linear;
  -o-transition: max-height 0.2s linear;
  -ms-transition: max-height 0.2s linear;
  -moz-transition: max-height 0.2s linear;
  -webkit-transition: max-height 0.2s linear;
  max-height: 0;
}

/* @media screen and (max-width: 992px) {
  .sidebar .menu-sub {
    display: none;
  }
} */
.sidebar.toggled-open .menu-sub {
  animation-delay: 270ms;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: delayChangeColor;
  display: block;
  opacity: 0;
}

.open .menu-sub {
  transition: max-height 0.2s linear;
  -o-transition: max-height 0.2s linear;
  -moz-transition: max-height 0.2s linear;
  -ms-transition: max-height 0.2s linear;
  -webkit-transition: max-height 0.2s linear;
  z-index: 98;
  opacity: 1;
}

.open-remove-transition .menu-sub {
  transition: max-height 0s linear;
  -o-transition: max-height 0s linear;
  -moz-transition: max-height 0s linear;
  -ms-transition: max-height 0s linear;
  -webkit-transition: max-height 0s linear;
}

.sidebar .menu-sub .menu-sub-link {
  text-decoration: none;
}

.sidebar .menu-sub li.active {
  background-color: rgba(232, 232, 232, 0.4);
}

.sidebar .menu-sub li {
  margin: 1rem;
  width: 80%;
  padding: 0.5em 1em;
  border-radius: 0.25rem;
  transition: 0.115s linear;
  -o-transition: 0.115s linear;
  -ms-transition: 0.115s linear;
  -moz-transition: 0.115s linear;
  -webkit-transition: 0.115s linear;
}

.sidebar .menu-sub li:hover {
  background-color: rgba(232, 232, 232, 0.4);
}

.sidebar .menu-sub li a {
  display: inline-block;
  width: 85%;
  color: #001020;
}

.sidebar-main-toggler-wrapper {
  position: relative;
  height: 0px;
  width: 100%;
}

.sidebar-main-toggler-wrapper .sidebar-main-toggler {
  position: absolute;
  top: -475px;
  right: -30px;
  border: 0;
  background-color: #001020;
  width: 30px;
  height: 30px;
  color: #fff;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 10px rgba(51, 51, 51, 0.25);
}

.sidebar-main-toggler-toggled .icon {
  transform: rotate(180deg);
}

.sidebar-main-toggler-toggled-js .icon {
  transform: rotate(180deg);
}

.sidebar-hidden {
  transition: transform 0.25s linear;
  -o-transition: transform 0.25s linear;
  -ms-transition: transform 0.25s linear;
  -moz-transition: transform 0.25s linear;
  -webkit-transition: transform 0.25s linear;
  transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}

.sidebar-shown {
  transform: translateX(0%);
  -o-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

.nav-wrapper-hidden {
  transition: min-width 0.25s linear;
  -o-transition: min-width 0.25s linear;
  -ms-transition: min-width 0.25s linear;
  -moz-transition: min-width 0.25s linear;
  -webkit-transition: min-width 0.25s linear;
  min-width: 0;
}

.nav-wrapper-shown {
  transition: min-width 0.25s linear;
  -o-transition: min-width 0.25s linear;
  -ms-transition: min-width 0.25s linear;
  -moz-transition: min-width 0.25s linear;
  -webkit-transition: min-width 0.25s linear;
  min-width: 275px;
}

@media screen and (max-width: 992px) {
  .nav-wrapper-shown {
    min-width: 0px;
  }
}
/*** Top navbar ***/
.top-navbar {
  height: 90px;
  width: 100%;
  background-color: #001020;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)), url(../../images/vendors-panel-topnav-bg.png);
  background-size: 1250px;
  position: fixed;
  right: 0;
  z-index: 995;
  transition: width 0.25s linear;
  -o-transition: width 0.25s linear;
  -ms-transition: width 0.25s linear;
  -moz-transition: width 0.25s linear;
  -webkit-transition: width 0.25s linear;
}

@media screen and (max-width: 992px) {
  .top-navbar {
    height: 85px;
    z-index: 1000;
    box-shadow: 0 0 8px rgba(0, 16, 32, 0.4);
  }
}
.top-navbar-logo {
  display: flex;
  align-items: center;
  margin: 0 calc(1em + 2.5vw) 0 1.5rem;
}

@media screen and (max-width: 540px) {
  .top-navbar-logo {
    margin: 0 0.5rem;
  }
}
.top-navbar-logo .top-navbar-logo-mobile-image {
  width: 100%;
  max-width: 160px;
}

.top-navbar-wrapper {
  width: auto;
  display: flex;
  align-items: center;
  padding-right: calc(1em + 2.5vw);
}

@media screen and (max-width: 540px) {
  .top-navbar-wrapper {
    padding-right: calc(0.5rem + 2px);
  }
}
.top-navbar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001020;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E8E8E8;
  transition: 0.075s ease-in;
  -o-transition: 0.075s ease-in;
  -ms-transition: 0.075s ease-in;
  -moz-transition: 0.075s ease-in;
  -webkit-transition: 0.075s ease-in;
}

.top-navbar-link .dropdown-toggle {
  color: #001020;
}

.top-navbar-link:hover {
  background-color: rgb(207, 207, 207);
}

.top-navbar-profile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001020;
  border-radius: 50%;
  background-color: #E8E8E8;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 992px) {
  .top-navbar-profile {
    display: block;
    width: 40px;
    height: 40px;
  }
}
.top-navbar-profile .back-data {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0%;
  left: 0%;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: 0.075s ease-in;
  -o-transition: 0.075s ease-in;
  -ms-transition: 0.075s ease-in;
  -moz-transition: 0.075s ease-in;
  -webkit-transition: 0.075s ease-in;
  opacity: 0;
}

@media screen and (max-width: 992px) {
  .top-navbar-profile .back-data {
    display: none;
  }
}
.top-navbar-profile:hover .back-data {
  opacity: 1;
}

.top-navbar-profile .back-data p {
  color: #fff;
  font-size: 10px;
}

.img-avatar {
  display: flex;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 992px) {
  .img-avatar {
    display: block;
    width: 40px;
    height: 40px;
  }
}
.navbar-nav {
  display: flex;
  text-decoration: none;
  list-style: none;
}

.nav-item {
  margin-right: 1rem;
}

@media screen and (max-width: 540px) {
  .nav-item {
    margin-right: 0.5rem;
  }
}
.nav-item:last-child {
  margin-right: 0;
}

/*** Linear gradient ***/
.bg-linear-gradient-dark {
  background-image: linear-gradient(to right, rgba(0, 16, 32, 0.7), rgba(0, 16, 32, 0.9) 50%);
  background-size: 1500px;
}

/*** Charts ***/
.charts {
  width: 100% !important;
  height: 100% !important;
  min-height: 175px;
  max-height: 500px;
}

/*** Card ***/
.card {
  position: relative;
  border-radius: 0.75rem;
  box-shadow: 0 1px 10px rgb(219, 219, 219);
}

.card-header {
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/*** Card shadow ***/
.sub-card-linear-gradient-light {
  box-shadow: 0 2px 6px rgb(206, 206, 206);
  background-image: linear-gradient(120deg, #e7e7e7, #fff 70%);
}

.sub-card-icon {
  font-size: 30px;
}

.sub-card-highlighted {
  font-size: 24px;
}

/*** Image ***/
.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*** Carousel ***/
.carousel-body {
  height: 100%;
}

.carousel-indicators {
  margin-top: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-indicators button {
  margin: 0.25em;
}

.carousel-indicators button:first-child {
  margin-left: 0 !important;
}

.carousel-indicators button:last-child {
  margin-right: 0 !important;
}

.carousel-indicators button {
  background-color: rgb(175, 175, 175);
  border: 0;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

.carousel-indicators button.active {
  background-color: #868686;
}

.carouselWrapper {
  height: 300px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: fit-content;
  max-width: 648px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (min-width: 1052px) {
  .carouselWrapper .active {
    scale: 1.125;
    z-index: 99;
  }
}
.carouselWrapper .card {
  transition: scale 0.5s ease;
  -o-transition: scale 0.5s ease;
  -moz-transition: scale 0.5s ease;
  -ms-transition: scale 0.5s ease;
  -webkit-transition: scale 0.5s ease;
}

@media screen and (max-width: 1052px) {
  .carouselWrapper {
    max-width: 429px;
  }
}
@media screen and (max-width: 760px) {
  .carouselWrapper {
    max-width: 429px;
  }
}
@media screen and (max-width: 540px) {
  .carouselWrapper {
    max-width: 200px;
  }
}
.button-wrapper {
  width: 80px;
  position: absolute;
  bottom: -4%;
  left: 51%;
  transform: translate(-50%, -50%);
}

.button-wrapper button {
  border: none;
  outline: 0;
  background-color: transparent;
  color: #001020;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.15s ease;
  -o-transition: 0.15s ease;
  -ms-transition: 0.15s ease;
  -moz-transition: 0.15s ease;
  -webkit-transition: 0.15s ease;
}

.button-wrapper button:hover {
  background-color: #E8E8E8;
  border-radius: 0.25rem;
}

.carousel {
  margin: 0 0 2.5em 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  left: 0;
  transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
}

.carousel .card {
  width: 200px;
  height: 200px;
  margin-right: 1.5rem;
  display: inline-block;
  box-shadow: none;
}

.carousel .card:last-child {
  margin-right: 0;
}

.carousel img {
  border-radius: 14px;
  width: 200px;
}

.btn-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/*** Tab ***/
.nav-wrapper-tab {
  box-shadow: 0 1px 10px rgb(219, 219, 219);
  border-radius: 0.75rem;
}

.nav-tabs-overflow-wrapper {
  max-width: 100%;
  overflow-y: auto;
  flex-direction: row !important;
  scrollbar-color: rgb(175, 175, 175) #f1f1f1;
  scrollbar-width: thin !important;
}

.nav-tabs-overflow-wrapper::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.nav-tabs-overflow-wrapper::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: inset 0 0 5px #f1f1f1;
  border-radius: 4px;
  border-left: 1.5px solid transparent;
  border-right: 1.5px solid transparent;
}

.nav-tabs-overflow-wrapper::-webkit-scrollbar-thumb {
  background: #E8E8E8;
  border-radius: 4px;
}

.nav-tabs-overflow-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgb(175, 175, 175);
}

.nav-tabs {
  list-style: none;
  display: inline-flex;
  border-bottom: 1px solid #E8E8E8;
  margin: 0;
  width: 100%;
}

.nav-tabs .nav-item {
  margin: 0;
}

.nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border: 0;
  height: 100%;
  padding: 0.5em 1.5em;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap;
}

.nav-tabs .nav-item:first-child .nav-link {
  border-top-left-radius: 0.75rem;
}

.nav-tabs .nav-item .nav-link.active {
  background-color: #001020;
  color: #fff;
  opacity: 1;
}

.nav-tabs .nav-item .nav-link.active.fade {
  animation: tabFade 0.3s ease-in forwards;
  opacity: 0.5;
}

.tab-content {
  padding: 1.5rem;
}

.nav-wrapper-tab .tab-pane {
  display: none;
}

.nav-wrapper-tab .tab-pane.active {
  display: block;
}

.nav-wrapper-tab .tab-pane.fade {
  opacity: 1;
}

.nav-wrapper-tab .tab-pane.fade.show {
  animation: tabFade 0.3s ease-in forwards;
  opacity: 0.25;
}

@keyframes tabFade {
  to {
    opacity: 1;
  }
}
/*** Toast ***/
.toast {
  padding: 0.5em 1em;
  opacity: 0;
  transition: opacity 0.4s linear;
}

.toast.show {
  max-height: 500px;
  opacity: 1;
  z-index: 1000 !important;
  opacity: 1;
}

.toast .btn-close {
  padding: 0;
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
  padding: 0.05em;
  font-size: 16px;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  transition: border 0.1s ease;
  -o-transition: border 0.1s ease;
  -ms-transition: border 0.1s ease;
  -moz-transition: border 0.1s ease;
  -webkit-transition: border 0.1s ease;
}

.toast .btn-close > * {
  display: flex;
}

.toast .btn-close:active {
  border: 1px solid rgb(175, 175, 175);
}

.toast-primary {
  border-bottom: 2px solid #00298A;
  box-shadow: 0 2px 10px rgba(0, 41, 138, 0.4);
  border-radius: 0.25rem;
}

.toast-success {
  border-bottom: 2px solid #02A83F;
  box-shadow: 0 2px 10px rgba(2, 168, 63, 0.4);
  border-radius: 0.25rem;
}

.toast-danger {
  border-bottom: 2px solid #A80202;
  box-shadow: 0 2px 10px rgba(168, 2, 2, 0.4);
  border-radius: 0.25rem;
}

.toast-warning {
  border-bottom: 2px solid #ffc107;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.5);
  border-radius: 0.25rem;
}

.toast-info {
  border-bottom: 2px solid #73cef1;
  box-shadow: 0 2px 10px rgba(115, 206, 241, 0.4);
  border-radius: 0.25rem;
}

.toast-light {
  border-bottom: 2px solid rgb(175, 175, 175);
  box-shadow: 0 2px 10px rgba(51, 51, 51, 0.25);
  border-radius: 0.25rem;
}

.toast-header {
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.toast-header-body {
  display: flex;
  align-items: center;
  width: 100%;
}

.toast-header .toast-icon {
  position: relative;
  height: 25px;
  width: 25px;
  border-radius: 0.25rem;
  margin-right: 0.75em;
  color: #001020;
}

.toast-primary .toast-icon {
  background-color: rgba(0, 41, 138, 0.2);
}

.toast-success .toast-icon {
  background-color: rgba(2, 168, 63, 0.2);
}

.toast-danger .toast-icon {
  background-color: rgba(168, 2, 2, 0.2);
}

.toast-warning .toast-icon {
  background-color: rgba(255, 193, 7, 0.2);
}

.toast-info .toast-icon {
  background-color: rgba(115, 206, 241, 0.2);
}

.toast-light .toast-icon {
  background-color: rgba(175, 175, 175, 0.2);
}

.toast-header .toast-icon * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.toast-header .toast-icon i {
  display: flex;
}

/*** Modal ***/
.modal {
  display: none;
  top: 0;
  left: 0;
  position: fixed;
  height: 100vh;
  width: 100%;
  overflow-y: auto;
  z-index: 9999 !important;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
}

@keyframes showModal {
  to {
    opacity: 1;
  }
}
.modal.show {
  animation: showModal 0.25s linear forwards;
}

.modal-dialog {
  display: flex;
  justify-content: center;
  padding: 2em 1em;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E8E8E8;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  padding: 0.5em 1em;
}

.modal-header .btn-close {
  position: relative;
  background-color: transparent;
  outline: 0;
  border: 0;
  font-size: 16px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 0.25rem;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
}

.modal-header .btn-close > * {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-header .btn-close:focus {
  border: 1px solid rgb(175, 175, 175);
}

@media (min-width: 992px) {
  .modal-lg .modal-content,
  .modal-xl .modal-content {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl .modal-content {
    max-width: 1140px;
  }
}
@media screen and (min-width: 576px) {
  .modal-content {
    max-width: 500px;
  }
  .modal-sm .modal-content {
    max-width: 300px;
  }
}
.modal-body {
  padding: 0.5em 1em;
  border-bottom: 1px solid #E8E8E8;
}

.modal-footer {
  display: flex;
  justify-content: end;
  padding: 0.5em 1em;
}

.modal.hidden {
  animation: hideModal 0.25s linear forwards;
}

@keyframes hideModal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/*# sourceMappingURL=components.css.map */
