@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.background_light_primary {
  background: #feffff;
  transition: 0.3s;
}

.background_light_secondary {
  background: #ffffff;
  transition: 0.3s;
}

.background_light_tertiary {
  background: #fcfcfc;
  transition: 0.3s;
}

.background_dark_primary {
  background: #161618;
}

.background_dark_secondary {
  background: #202022;
}

.background_dark_tertiary {
  background: #131313;
}

.border_color_light_mode {
  border-color: rgba(84, 84, 84, 0.2);
  transition: 0.3s;
}

.border_color_dark_mode {
  border-color: #3d3d3d;
  transition: 0.3s;
}

.color_light_primary {
  color: #1b1b20;
  transition: 0.3s;
}

.color_light_secondary {
  color: #676d7c;
  transition: 0.3s;
}

.color_light_tertiary {
  color: #a0a6b1;
  transition: 0.3s;
}

.color_dark_primary {
  color: #f8f8fb;
}

.color_dark_secondary {
  color: #c8ccd4;
}

.color_dark_tertiary {
  color: #90949a;
}

.dashboard {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.dashboard .dashboard-container {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 773px) {
  .dashboard .dashboard-container {
    flex-direction: column;
  }
}
.dashboard .dashboard-container .dashboard-sidebar-applications {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 773px) {
  .dashboard .dashboard-container .dashboard-sidebar-applications {
    height: 50px;
    width: 100%;
  }
}
.dashboard .dashboard-container .dashboard-sidebar-applications .dashboard-sidebar-applications-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media only screen and (max-width: 773px) {
  .dashboard .dashboard-container .dashboard-sidebar-applications .dashboard-sidebar-applications-content {
    flex-direction: row;
    justify-content: center;
  }
}
.dashboard .dashboard-container .dashboard-sidebar-applications .dashboard-sidebar-applications-content .dashboard-sidebar-application {
  cursor: pointer;
  font-size: 22px;
  padding: 10px 0;
  text-align: center;
  width: 55px;
  transition: 0.3s;
}
.dashboard .dashboard-container .dashboard-sidebar-applications .dashboard-sidebar-applications-content .dashboard-sidebar-application:hover {
  background: rgba(37, 130, 255, 0.2);
}
.dashboard .dashboard-container .dashboard-sidebar-applications .dashboard-sidebar-applications-content .dashboard-sidebar-application-active {
  background: #2582ff;
  color: #f8f8fb;
}
.dashboard .dashboard-container .dashboard-content {
  box-shadow: 0px 0px 26px -20px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 26px -20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 26px -20px rgba(0, 0, 0, 0.75);
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.dashboard .dashboard-container .dashboard-content .dashboard-main {
  position: relative;
  width: 85%;
}
@media only screen and (max-width: 1200px) {
  .dashboard .dashboard-container .dashboard-content .dashboard-main {
    width: 80%;
  }
}
@media only screen and (max-width: 900px) {
  .dashboard .dashboard-container .dashboard-content .dashboard-main {
    width: 75%;
  }
}
@media only screen and (max-width: 773px) {
  .dashboard .dashboard-container .dashboard-content .dashboard-main {
    width: 100%;
  }
}
.dashboard .dashboard-container .dashboard-content .dashboard-main .dashboard-main-content {
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 3px 30px -20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 3px 30px -20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 3px 30px -20px rgba(0, 0, 0, 0.5);
  max-height: calc(100% - 60px);
  overflow: auto;
  overflow-x: hidden;
  padding: 15px;
  position: relative;
  z-index: 1;
}
.dashboard .dashboard-container .dashboard-content .dashboard-main .dashboard-main-content::-webkit-scrollbar {
  -webkit-appearance: none;
  padding: 10px 0;
  width: 5px;
}
.dashboard .dashboard-container .dashboard-content .dashboard-main .dashboard-main-content::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: rgba(218, 218, 218, 0.4);
}
@media only screen and (max-width: 590px) {
  .dashboard .dashboard-container .dashboard-content .dashboard-main .dashboard-main-content::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
  }
}

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