@font-face {
  font-family: "work sans";
  font-weight: 300;
  font-display: block;
  src: url("../fonts/Work_Sans/WorkSans-Light.ttf");
}
@font-face {
  font-family: "work sans";
  font-weight: 400;
  font-display: block;
  src: url("../fonts/Work_Sans/WorkSans-Regular.ttf");
}
@font-face {
  font-family: "work sans";
  font-weight: 500;
  font-display: block;
  src: url("../fonts/Work_Sans/WorkSans-Medium.ttf");
}
@font-face {
  font-family: "work sans";
  font-weight: 600;
  font-display: block;
  src: url("../fonts/Work_Sans/WorkSans-Bold.ttf");
}
::-moz-selection {
  color: transparent;
  color: inherit;
}
::selection {
  color: transparent;
  color: inherit;
}

:root {
  --main-color: #0075FF;
}

*, ::after, ::before {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "work sans";
  min-height: 100vh;
  grid-template-rows: 65px 1fr;
  grid-template-columns: 65px 1fr;
}
@media (max-width: 575px) {
  body {
    grid-template-rows: 50px 1fr;
    grid-template-columns: 50px 1fr;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

header, main, aside {
  position: relative;
}
header:not(main), main:not(main), aside:not(main) {
  background-color: white;
}

header {
  grid-column: 2/3;
  grid-row: 1/2;
  z-index: 2;
  font-size: 14px;
}
header .search {
  color: #D0D9E4;
  margin-left: 20px;
  cursor: pointer;
}
header .left {
  margin-left: 20px;
  color: #D0D9E4;
  position: relative;
  display: none;
  background-color: #fff;
  z-index: 5;
}
header .left.active {
  display: block;
}
header .left button {
  position: absolute;
  background-color: transparent;
  border: none;
  outline: none;
  color: inherit;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .left button i {
  padding: 0 4px;
}
header .left input {
  outline: none;
  border: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--main-color);
}
header .left input::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}
header .right {
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
@media (max-width: 767px) {
  header .right {
    margin-right: 30px !important;
  }
}
header .right img {
  width: 35px;
}
@media (max-width: 575px) {
  header .right img {
    width: 29px;
    margin-right: 10px !important;
  }
}
header .right span.arrow {
  position: absolute;
  top: 13px;
  right: -20px;
  border-width: 6px 4px;
  border-style: solid;
  border-color: #D0D9E4 transparent transparent transparent;
  cursor: pointer;
}
header .right .multi-users {
  top: 50px;
  left: -10px;
  width: 178px;
  padding: 0 10px;
  background-color: #ddd;
  border-radius: 0 0 5px 5px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
  z-index: 100;
}
@media (max-width: 575px) {
  header .right .multi-users {
    top: 40px;
  }
}
header .right .multi-users .user {
  cursor: pointer;
  margin-top: 8px;
}
header .right .multi-users .user:hover {
  background-color: #eee;
}
header .right .multi-users.opened {
  height: auto;
  padding: 10px;
}

aside {
  grid-column: 1/2;
  grid-row: 1/3;
  border: 1px solid #E4EAF0;
  z-index: 3;
}
aside .top {
  height: 65px;
}
aside .top img {
  width: 25px;
  margin-top: 20px;
  cursor: pointer;
}
@media (max-width: 575px) {
  aside .top img {
    margin-top: 13px;
    width: 22px;
  }
}
aside .center {
  height: calc(100% - 65px);
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  aside .center {
    margin-top: 50px;
  }
}
aside .center i {
  color: #D0D9E4;
  display: block;
  width: 100%;
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 24px 0;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 575px) {
  aside .center i {
    font-size: 17px;
  }
}
aside .center i:hover {
  color: var(--main-color);
}
aside .center i.active {
  color: var(--main-color);
  position: relative;
}
aside .center i.active::after {
  content: "";
  width: 3px;
  height: 36px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  top: -8px;
}

main {
  background-color: #F7F9FA;
  z-index: 1;
  padding: 40px;
}
main::before {
  content: "OVERVIEW";
  position: absolute;
  top: 10px;
  color: #D0D9E4;
  font-size: 14px;
}
@media (max-width: 767px) {
  main {
    padding: 20px;
  }
  main::before {
    content: "";
  }
}
@media (max-width: 575px) {
  main {
    padding: 0px;
  }
}
main .content {
  border: 1px solid #E4EAF0;
  padding: 30px;
}
@media (max-width: 575px) {
  main .content {
    padding: 15;
  }
}
main .content .cards {
  padding-bottom: 5px;
  border-bottom: 2px solid #DDE3E9;
}
main .content .acard {
  padding: 20px;
  width: 220px;
  height: 350px;
  background-image: url("../imgs/1.png");
  margin-bottom: 40px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 575px) {
  main .content .acard {
    margin-left: 0px;
    margin-right: 0px;
  }
}
main .content .acard p {
  font-size: 14px;
  cursor: pointer;
}
main .content .acard P:nth-child(1) {
  height: 160px;
}
main .content .acard h2 {
  font-weight: 400;
  font-size: 30px !important;
  margin-bottom: 35px;
}
main .content .bcard {
  width: 220px;
  height: 350px;
  margin-bottom: 40px;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 575px) {
  main .content .bcard {
    margin-left: 0px;
    margin-right: 0px;
  }
}
main .content .bcard img {
  max-width: 100%;
}
main .content .bcard p:nth-of-type(1) {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 5px;
}
main .content .bcard p:nth-of-type(2), main .content .bcard span:nth-of-type(2) {
  color: #AEBCC8;
  font-size: 14px;
}
main .content .bcard span:nth-of-type(1) {
  color: var(--main-color);
  font-size: 15px;
}
main .content .bcard div {
  display: flex;
  justify-content: space-between;
}
main .content div span:first-child {
  cursor: pointer;
}
main .content .under {
  padding-top: 70px;
}
@media (max-width: 991px) {
  main .content .under {
    flex-wrap: wrap;
  }
}
main .content .under img {
  width: 220px;
  max-width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 575px) {
  main .content .under img {
    margin-left: 0px;
    margin-right: 0px;
  }
}
main .content .under .bottom {
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 575px) {
  main .content .under .bottom {
    margin: auto;
  }
}
main .content .under .bottom > div.top span:first-child {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 5px;
  display: inline-block;
}
main .content .under .bottom > div.top span:last-child {
  font-size: 13px;
  margin-top: 25px;
  margin-bottom: 5px;
  color: var(--main-color);
  margin-left: 20px;
  background-color: #E5F1FF;
  padding: 2px 12px;
  cursor: pointer;
}
@media (max-width: 575px) {
  main .content .under .bottom > div.top span:last-child {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
main .content .under .bottom p:nth-of-type(1), main .content .under .bottom span:nth-of-type(2) {
  color: #AEBCC8;
  font-size: 14px;
}
main .content .under .bottom div.bott {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
}
main .content .under .bottom div.bott span:nth-of-type(1) {
  color: var(--main-color);
  font-size: 15px;
}/*# sourceMappingURL=main.css.map */