@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Lato&family=Mulish&family=Open+Sans&family=Poppins:wght@300;400;500;600;700;800&family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  width: 100vw;
  height: 100vh;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow-x: hidden;
  color: #363949;
  background-color: #f6f6f9;
}

a {
  color: #363949;
}

img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

h1 {
  font-weight: 800;
  font-size: 1.8rem;
}

h2 {
  font-weight: 600;
  font-size: 1.4rem;
}

h3 {
  font-weight: 500;
  font-size: 0.87rem;
}

p {
  color: #677483;
}

b {
  color: #363949;
}

.text-muted {
  color: #7d8da1;
}

.primary {
  color: #6c9BCF;
}

.danger {
  color: #ff0060;
}

.success {
  color: #1B9C85;
}

.warning {
  color: #f7D060;
}

.container {
  display: grid;
  gap: 1.8rem;
  margin: 0 auto;
  width: 96%;
  grid-template-columns: 12rem auto 23rem;
}

aside {
  height: 100vh;
}
aside .toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
}
aside .toggle .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
aside .toggle .logo img {
  width: 2rem;
}
aside .toggle .logo h2 {
  margin-left: 0.4rem;
}
aside .toggle .close {
  display: none;
}
aside .sidebar {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  height: 88vh;
  background-color: #fff;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  position: relative;
  top: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
aside .sidebar:hover {
  box-shadow: none;
}
aside .sidebar a {
  display: flex;
  align-items: center;
  color: #7d8da1;
  height: 3.7rem;
  gap: 1rem;
  position: relative;
  margin-left: 2rem;
  transition: all 0.3s ease;
}
aside .sidebar a:hover {
  color: #6c9BCF;
}
aside .sidebar a:hover span {
  margin-left: 0.6rem;
}
aside .sidebar a:last-child {
  position: absolute;
  bottom: 2rem;
  width: 100%;
}
aside .sidebar a.active {
  width: 100%;
  color: #6c9BCF;
  background-color: rgba(132, 139, 200, 0.18);
  margin-left: 0;
}
aside .sidebar a.active::before {
  content: "";
  width: 6px;
  height: 18px;
  background-color: #6c9BCF;
}
aside .sidebar a.active span {
  color: #6c9BCF;
  margin-left: calc(1rem - 3px);
}
aside .sidebar a span {
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
aside .sidebar a .message-count {
  font-size: 11px;
  padding: 2px 6px;
  background-color: #ff0060;
  color: #fff;
  border-radius: 0.4rem;
}

main {
  margin-top: 1.4rem;
}
main .analyse {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
main .analyse > div {
  background-color: #fff;
  padding: 1.8rem;
  border-radius: 2rem;
  margin-top: 1rem;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  cursor: pointer;
  transition: all 0.3s ease;
}
main .analyse > div:hover {
  box-shadow: none;
}
main .analyse .sales svg circle {
  stroke: #1B9C85;
  stroke-dashoffset: -30;
  stroke-dasharray: 200;
}
main .analyse .visits svg circle {
  stroke: #ff0060;
  stroke-dashoffset: -50;
  stroke-dasharray: 200;
}
main .analyse .searches svg circle {
  stroke: #6c9BCF;
  stroke-dashoffset: -10;
  stroke-dasharray: 200;
}
main .analyse .status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .analyse h3 {
  margin-left: 0.6rem;
  font-size: 1rem;
}
main .analyse .progress {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
}
main .analyse .progress svg {
  width: 7rem;
  height: 7rem;
}
main .analyse .progress svg circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transform: translate(5px, 5px);
}
main .analyse .progress .percentage {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  top: -3px;
  left: -1px;
}
main .new-users {
  margin-top: 1.3rem;
}
main .new-users .user-list {
  background-color: #fff;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  padding: 1.8rem;
  border-radius: 2rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
main .new-users .user-list:hover {
  box-shadow: none;
}
main .new-users .user-list .user {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .new-users .user-list .user img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 0.4rem;
  border-radius: 50%;
}
main .recent-orders {
  margin-top: 1.3rem;
}
main .recent-orders h2 {
  margin-bottom: 0.8rem;
}
main .recent-orders table {
  background-color: #fff;
  width: 100%;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  border-radius: 2rem;
  transition: all 0.3s ease;
}
main .recent-orders table:hover {
  box-shadow: none;
}
main .recent-orders table tr {
  color: #677483;
}
main .recent-orders table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(132, 139, 200, 0.18);
}
main .recent-orders table tr:last-child td {
  border: none;
}
main .recent-orders a {
  text-align: center;
  display: block;
  margin: 1rem auto;
  color: #6c9BCF;
}

.right-section {
  margin-top: 1.4rem;
}
.right-section .nav {
  display: flex;
  justify-content: end;
  gap: 2rem;
}
.right-section .nav button {
  display: none;
}
.right-section .dark-mode {
  background-color: rgba(132, 139, 200, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1.6rem;
  width: 4.2rem;
  border-radius: 0.4rem;
}
.right-section .dark-mode span {
  font-size: 1.2rem;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-section .dark-mode span.active {
  background-color: #6c9BCF;
  color: white;
  border-radius: 0.4rem;
}
.right-section .profile {
  display: flex;
  gap: 2rem;
  text-align: right;
}
.right-section .profile .profile-photo {
  width: 2.8rem;
  border-radius: 50%;
  overflow: hidden;
}
.right-section .user-profile {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 1rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  cursor: pointer;
  transition: all 0.3s ease;
}
.right-section .user-profile:hover {
  box-shadow: none;
}
.right-section .user-profile img {
  width: 11rem;
}
.right-section .user-profile h2 {
  margin-bottom: 0.2rem;
}
.right-section .reminders {
  margin-top: 2rem;
}
.right-section .reminders .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.right-section .reminders .header span {
  padding: 10px;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  background-color: #fff;
  border-radius: 50%;
}
.right-section .reminders .notification {
  background-color: #fff;
  box-shadow: 0 2rem 3rem rgba(132, 139, 200, 0.18);
  border-radius: 1.2rem;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.right-section .reminders .notification:hover {
  box-shadow: none;
}
.right-section .reminders .notification .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  width: 100%;
}
.right-section .reminders .notification .icon {
  padding: 0.6rem;
  color: #fff;
  background-color: #1B9C85;
  border-radius: 20%;
  display: flex;
}
.right-section .reminders .notification.deactive .icon {
  background-color: #ff0060;
}/*# sourceMappingURL=main.css.map */