/* Start Global Rules  */
:root {
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --orange-color: #f59e0b;
  --green-color: #22c55e;
  --red-color: #f44336;
  --gray-color: #888;
  --main-transition: 0.3s;

}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
:focus {
  outline: none;
}
input {
  outline: none;
  border: none;
}
textarea {
  outline: none;
  border: none;
  resize: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "open sans", sans-serif;
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Mobile */
@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
/* Start Page */
::-webkit-scrollbar {
  width: 12px;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background-color: white;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-alt-color);
}
.page {
  background-color: #f1f5f9;
  min-height: 100vh;
  position: relative;
}
.page h3 {
  position: relative;
}
/* End Page */
/* Start Sidebar */
.sidebar {
  width: 250px;
  box-shadow: 0 0 10px #ddd;
}
.sidebar > h3 {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .sidebar {
    width: 70px;
    padding: 10px;
  }
  .sidebar > h3 {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .sidebar > h3::before,
  .sidebar > h3::after {
    display: none;
  }
}
.sidebar > h3::before {
  content: "";
  position: absolute;
  background-color: black;
  height: 2px;
  width: 100px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.sidebar > h3::after {
  content: "";
  position: absolute;
  background-color: black;
  width: 13px;
  height: 13px;
  border: 4px solid white;
  border-radius: 50%;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
}

.sidebar ul li a {
  transition: var(--main-transition);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .sidebar ul li a {
    display: flex;
    justify-content: center;
  }
}
.sidebar ul li a:hover {
  transform: translateX(10px);
}
.sidebar ul li a:hover,
.sidebar ul li a.active {
  background-color: #f6f6f6;
}
.sidebar ul li a span {
  font-size: 14px;
  margin-left: 10px;
}
/* End Sidebar */
/* Start Content */
.content {
  overflow: hidden;
}
.content .head {
  box-shadow: 0 0 10px #ddd;
}

.content .head .search {
  position: relative;
}
.content .head .search i {
  font-weight: 900;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--gray-color);
}
.content .head .search input {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding-left: 35px;
  width: 185px;
  transition: width var(--main-transition);
}
.content .head .search input::placeholder {
  transition: var(--main-transition);
}
.content .head .search input:focus {
  width: 240px;
}
.content .head .search input:focus::placeholder {
  opacity: 50%;
}

.content .head .icons .notification {
  position: relative;
  cursor: pointer;
}

.content .head .icons .notification::before {
  content: "";
  position: absolute;
  right: -5px;
  top: -5px;
  background-color: var(--red-color);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.content .head .icons img {
  width: 35px;
  height: 35px;
  margin-left: 15px;
  cursor: pointer;
}
.page h1 {
  position: relative;
  margin: 20px 20px 40px;
}
.page h1::before,
.page h1::after {
  content: "";
  position: absolute;
  height: 3px;
  bottom: -10px;
  left: 0;
}
.page h1::before {
  background-color: white;
  width: 120px;
}
.page h1::after {
  background-color: black;
  width: 50px;
}
/* End Content */
.wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin: 0 20px;
}
@media (max-width: 767px) {
  .wrapper {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
    margin: 0 10px;
  }
}
/* Start Welcome Widget */
.wrapper .welcome {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
.wrapper .welcome .intro {
  background-color: #eee;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  padding-bottom: 30px;
}
.wrapper .welcome .intro h2 {
  margin: 0;
}
.wrapper .welcome .intro p {
  color: var(--gray-color);
  margin-top: 5px;
}
.wrapper .welcome .intro img {
  width: 170px;
  margin-bottom: -10px;
}

.welcome img.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 0 5px #ddd;
  margin-left: 20px;
  margin-top: -32px;
  background-color: white;
}
@media (max-width: 767px) {
  .welcome img.avatar {
    margin-left: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.wrapper .welcome .body {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 2px solid #eee;
  border-bottom: 1px solid #eee;
}
.wrapper .welcome .body > div {
  flex: 1;
}
.wrapper .welcome .body div {
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper .welcome .body div:not(:last-child) {
    margin-bottom: 20px;
  }
}

.wrapper .welcome .body div span {
  display: block;
  color: var(--gray-color);
  font-size: 14px;
  margin-top: 10px;
}
.wrapper .welcome .body + a.visit {
  display: block;
  font-size: 14px;
  border-radius: 6px;
  background-color: var(--blue-color);
  color: white;
  width: fit-content;
  margin: 0 15px 15px auto;
  padding: 5px 10px;
  transition: var(--main-transition);
}
.wrapper .welcome .body + a.visit:hover {
  background-color: var(--blue-alt-color);
}
/* End Welcome Widget */
/* Start Quick Draft Widget */
.quick-draft {
  background-color: white;
  padding: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.quick-draft h2 {
  margin: 0;
  margin-bottom: 10px;
}
.quick-draft p {
  color: #777;
  margin-top: 0;
  margin-bottom: 20px;
}
.quick-draft form {
  display: flex;
  flex-direction: column;
}
.quick-draft form > input {
  background-color: #eee;
  border: none;
  outline: none;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 10px;
}
.quick-draft form > input:focus::placeholder {
  opacity: 50%;
}
.quick-draft form textarea {
  background-color: #eee;
  border: none;
  outline: none;
  border-radius: 6px;
  min-height: 150px;
  padding: 10px;
  resize: none;
}
.quick-draft form textarea:focus::placeholder {
  opacity: 50%;
}
.quick-draft form textarea + input {
  display: block;
  font-size: 14px;
  border-radius: 6px;
  background-color: var(--blue-color);
  color: white;
  width: fit-content;
  margin: 20px 15px 15px auto;
  padding: 5px 10px;
  transition: var(--main-transition);
  cursor: pointer;
}
.quick-draft form textarea + input:hover {
  background-color: var(--blue-alt-color);
}
/* End Quick Draft Widget */
/* Start Yearly Target Widget */
.targets {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.targets h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.targets p {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--gray-color);
  font-size: 15px;
}
.targets .target-row {
  display: flex;
  align-items: center;
}
.targets .target-row:not(:last-child) {
  margin-bottom: 20px;
}
.targets .target-row .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  background-color: rgba(0, 119, 255, 0.2);
}
.targets .target-row .icon i {
  color: var(--blue-color);
}
.targets .target-row .details {
  flex: 1;
}
.targets .target-row .details span:first-child {
  display: block;
  margin-bottom: 5px;
  color: var(--gray-color);
  font-size: 15px;
}
.targets .target-row .details span:first-child + span {
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}
.targets .target-row .details .progress {
  position: relative;
  background-color: rgba(0, 119, 255, 0.2);
  height: 5px;
}
.targets .target-row .details .progress > span {
  background-color: var(--blue-color);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.targets .target-row .details .progress > span span {
  position: absolute;
  color: white;
  background-color: var(--blue-color);
  bottom: 10px;
  right: -17px;
  padding: 3px 5px;
  border-radius: 6px;
}
.targets .target-row .details .progress > span span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-color: var(--blue-color) transparent transparent transparent;
  border-style: solid;
  border-width: 5px;
}
.targets .target-row:nth-of-type(2) .icon {
  background-color: rgb(245 158 11 / 20%);
}
.targets .target-row:nth-of-type(2) .icon i {
  color: var(--orange-color);
}
.targets .target-row:nth-of-type(2) .progress {
  background-color: rgb(245 158 11 / 20%);
}
.targets .target-row:nth-of-type(2) .progress > span {
  background-color: var(--orange-color);
}
.targets .target-row:nth-of-type(2) .progress > span span {
  background-color: var(--orange-color);
}
.targets .target-row:nth-of-type(2) .progress > span span::before {
  border-top-color: var(--orange-color);
}
.targets .target-row:nth-of-type(3) .icon {
  background-color: rgb(34 197 94 / 20%);
}
.targets .target-row:nth-of-type(3) .icon i {
  color: var(--green-color);
}
.targets .target-row:nth-of-type(3) .progress {
  background-color: rgb(34 197 94 / 20%);
}
.targets .target-row:nth-of-type(3) .progress > span {
  background-color: var(--green-color);
}
.targets .target-row:nth-of-type(3) .progress > span span {
  background-color: var(--green-color);
}
.targets .target-row:nth-of-type(3) .progress > span span::before {
  border-top-color: var(--green-color);
}
/* End Yearly Target Widget */
/* Start Tickets Statistics */
.tickets {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
.tickets h2 {
  margin: 0;
  margin-bottom: 10px;
}
.tickets p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--gray-color);
}
.tickets .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.tickets .content .box {
  border: 1px solid var(--gray-color);
  width: 45%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.tickets .content .box i {
  margin: auto;
}
.tickets .content .box h2 {
  margin: 0;
}
.tickets .content .box p {
  margin: 0;
}
.tickets .content .box:nth-of-type(1) i {
  color: var(--orange-color);
}
.tickets .content .box:nth-of-type(2) i {
  color: var(--blue-color);
}
.tickets .content .box:nth-of-type(3) i {
  color: var(--green-color);
}
.tickets .content .box:nth-of-type(4) i {
  color: var(--red-color);
}
/* End Tickets Statistics */
/* Start Latest News */
.latest-news {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.latest-news h2 {
  margin-top: 0;
  margin-bottom: 15px;
}
.latest-news .news-row {
  margin-top: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .latest-news .news-row {
    display: block;
  }
}
.latest-news .news-row:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.latest-news .news-row img {
  width: 100px;
  border-radius: 6px;
  margin-right: 15px;
}
.latest-news .news-row .info {
  flex: 1;
}
.latest-news .news-row .info h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 16px;
}
.latest-news .news-row .info p {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
}
.latest-news .news-row .label {
  background-color: #eee;
  font-size: 13px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .latest-news .news-row .label {
    margin: 10px auto 0;
  }
}
/* End Latest News */
/* Start Latest Tasks */
.latest-tasks {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.latest-tasks h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.latest-tasks .task-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--main-transition);
}
.latest-tasks .task-row:nth-of-type(4) {
  opacity: 0.3;
  cursor: pointer;
}
.latest-tasks .task-row:nth-of-type(4) h3,
.latest-tasks .task-row:nth-of-type(4) p {
  text-decoration: line-through;
}

.latest-tasks .task-row:hover {
  opacity: 40%;
}
.latest-tasks .task-row i {
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .latest-tasks .task-row i {
    margin-left: 20px;
  }
}
.latest-tasks .task-row i .latest-tasks .task-row i:hover {
  transform: scale(1.2);
  color: var(--red-color);
}
.latest-tasks .task-row:hover i {
  cursor: pointer;
}
.latest-tasks .task-row:not(:last-of-type) {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.latest-tasks .task-row .info h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
}
.latest-tasks .task-row .info p {
  margin: 0;
  color: var(--gray-color);
  font-size: 14px;
}
/* End Latest Tasks */
/* Start Search Items */
.search-items {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.search-items h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.search-items .items-head {
  display: flex;
  justify-content: space-between;
  color: var(--gray-color);
  margin-bottom: 15px;
}
.search-items .items {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.search-items .items:last-of-type {
  padding-bottom: 0;
}
.search-items .items span:nth-child(2) {
  background-color: #eee;
  font-size: 13px;
}
/* End Search Items */
/* Start Latest Upload */
.latest-uploads {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.latest-uploads ul {
  margin: 0;
}
.latest-uploads ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.latest-uploads ul li:first-of-type {
  padding-top: 0;
}
.latest-uploads ul li:not(:last-of-type) {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.latest-uploads ul li > div {
  display: flex;
  align-items: center;
}
.latest-uploads ul li img {
  margin-right: 10px;
  width: 40px;
}
.latest-uploads ul li div img + div span {
  margin-bottom: 5px;
}
.latest-uploads ul li span.btn {
  background-color: #eee;
  font-size: 13px;
}
/* End Latest Upload */
/* Start Last Project */
.last-project {
  position: relative;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.last-project h2 {
  margin: 0;
  margin-bottom: 20px;
}
.last-project ul {
  margin: 0;
  position: relative;
}
.last-project ul::before {
  content: "";
  position: absolute;
  left: 11px;
  width: 2px;
  height: 100%;
  background-color: var(--blue-color);
}
.last-project ul li {
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.last-project ul li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid white;
  outline: 2px solid var(--blue-color);
  margin-right: 15px;
  z-index: 1;
}
.last-project ul li.done::before {
  background-color: var(--blue-color);
}
.last-project ul li.current::before {
  animation: change-color 0.8s infinite alternate;
}
@keyframes change-color {
  from {
    background-color: var(--blue-color);
  }
  to {
    background-color: white;
  }
}
.last-project ul + img {
  position: absolute;
  width: 150px;
  right: 0;
  bottom: 0;
  opacity: 20%;
}
/* End Last Project */
/* Start Reminders */
.reminders {
  position: relative;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}
.reminders h2 {
  margin: 0;
  margin-bottom: 25px;
}
.reminders ul {
  margin: 0;
}
.reminders ul li {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.reminders ul li > span {
  margin-right: 15px;
  display: block;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.reminders ul li div {
  padding-left: 15px;
}
.reminders ul li .blue {
  border-left: 2px solid var(--blue-color);
}
.reminders ul li .green {
  border-left: 2px solid var(--green-color);
}
.reminders ul li .orange {
  border-left: 2px solid var(--orange-color);
}
.reminders ul li .red {
  border-left: 2px solid var(--red-color);
}
.reminders ul li div p {
  font-size: 14px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 5px;
}
.reminders ul li div span {
  font-size: 13px;
  color: var(--gray-color);
}

/* End Reminders */
/* Start Latest Post */
.latest-post {
  padding: 20px;
  position: relative;
  border-radius: 10px;
  background-color: white;
}
.latest-post h2 {
  margin: 0;
  margin-bottom: 25px;
}
.latest-post .top {
  display: flex;
  align-items: center;
}
.latest-post .top img {
  margin-right: 15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.latest-post .top .info > span {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.latest-post .top .info > span + span {
  color: var(--gray-color);
}
.latest-post .post-content {
  padding: 20px 0;
  margin: 20px 0;
  line-height: 1.7;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
  .latest-post .post-content {
    text-align: center;
  }
}
.post-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray-color);
}
/* End Latest Post */
/* Start Social Media */
.social-media {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  position: relative;
}
.social-media h2 {
  margin: 0;
  margin-bottom: 20px;
}
.social-media .box {
  padding: 15px;
  padding-left: 70px;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-media .box.twitter {
  background-color: hwb(212 0% 0% / 0.2);
  color: var(--blue-color);
}
.social-media .box.twitter i,
.social-media .box.twitter a {
  background-color: var(--blue-color);
}
.social-media .box.facebook {
  background-color: hwb(212 5% 16% / 0.4);
  color: var(--blue-alt-color);
}
.social-media .box.facebook i,
.social-media .box.facebook a {
  background-color: var(--blue-alt-color);
}
.social-media .box.youtube {
  background-color: hsla(4, 90%, 58%, 0.4);
  color: var(--red-color);
}
.social-media .box.youtube i,
.social-media .box.youtube a {
  background-color: var(--red-color);
}
.social-media .box.linkedin {
  background-color: hwb(212 5% 16% / 0.4);
  color: var(--blue-alt-color);
}
.social-media .box.linkedin i,
.social-media .box.linkedin a {
  background-color: var(--blue-alt-color);
}
.social-media .box i {
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-color);
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  transition: var(--main-transition);
}

.social-media .box a {
  font-size: 13px;
  color: white;
  background-color: var(--blue-color);
}
/* End Social Media */
/* Start Project Table */
.project {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
}
.project h2 {
  margin: 0;
  margin-bottom: 20px;
}
.project .table {
  overflow-x: auto;
}
.project table {
  font-size: 15px;
  min-width: 1000px;
  width: 100%;
  border-spacing: 0;
}
.project .table table td {
  padding: 15px;
}
.project .table table thead td {
  background-color: #eee;
  font-weight: bold;
}
.project .table table tbody td {
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  transition: var(--main-transition);
}
.project .table table tbody tr td:last-child {
  border-right: 1px solid #eee;
}
.project .table table tbody tr:hover td {
  background-color: #faf7f7;
}
.project .table table tbody img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid white;
}
.project .table table tbody img:not(:first-of-type) {
  margin-left: -18px;
}
.project .table table tbody span {
  color: white;
}
.project .table table tbody tr:first-of-type span {
  background-color: var(--orange-color);
}
.project .table table tbody tr:nth-child(2) span {
  background-color: var(--blue-color);
}
.project .table table tbody tr:nth-child(3) span {
  background-color: var(--green-color);
}
.project .table table tbody tr:nth-child(4) span {
  background-color: var(--green-color);
}
.project .table table tbody tr:nth-child(5) span {
  background-color: var(--red-color);
}
.project .table table tbody tr:nth-child(6) span {
  background-color: var(--green-color);
}

/* End Project Table */

/* Start Settings */
.settings-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
  margin: 20px;
}
@media (max-width: 767px) {
  .settings-page {
    display: grid;
    grid-template-columns: minmax(100px, 1fr);
    gap: 10px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* Start Control Box */
.settings-page .control {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.settings-page .control > h2 {
  margin: 0;
  margin-bottom: 10px;
}
.settings-page .control > h2 + p {
  margin: 0;
  margin-bottom: 20px;
  color: var(--gray-color);
  font-size: 15px;
}
.settings-page .control .cont {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.settings-page .control .cont > div p {
  color: var(--gray-color);
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 13px;
}
.settings-page .control .cont > div span {
  margin-bottom: 10px;
  display: block;
}
.settings-page .control label .toggle-checkbox {
  -webkit-appearance: none;
  appearance: none;
}
.settings-page .control label .toggle-switch {
  background-color: #ccc;
  width: 78px;
  height: 32px;
  border-radius: 15px;
  position: relative;
  transition: var(--main-transition);
  cursor: pointer;
}
.settings-page .control label .toggle-switch::before {
  content: "\f00d";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
  background-color: white;
  transition: var(--main-transition);
}
.settings-page .control label .toggle-checkbox:checked + .toggle-switch {
  background-color: var(--blue-color);
}
.settings-page
  .control
  label
  .toggle-checkbox:checked
  + .toggle-switch::before {
  content: "\f00c";
  top: 4px;
  left: 50px;
}
.settings-page .control textarea {
  min-height: 200px;
  width: 100%;
  padding: 15px;
  resize: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 20px 0;
}
.settings-page .control textarea::placeholder {
  transition: var(--main-transition);
}
.settings-page .control textarea:focus::placeholder {
  opacity: 50%;
}
/* End Control Box */
/* Start General Box */
.general {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
.general h2 {
  margin: 0;
  margin-bottom: 10px;
}
.general p {
  margin: 0;
  margin-bottom: 25px;
  color: var(--gray-color);
}
.general form label {
  display: block;
  margin-bottom: 10px;
  color: var(--gray-color);
}
.general form input {
  width: 100%;
  background-color: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 25px;
}
.general form input[type="email"] {
  background-color: #eee;
  display: inline-flex;
  width: calc(100% - 80px);
}
.general form input[type="email"] + a {
  color: var(--blue-color);
  font-weight: bold;
  margin-left: 10px;
}
.general form input::placeholder {
  transition: var(--main-transition);
}
.general form input:focus::placeholder {
  opacity: 40%;
}

/* End General Box */
/* Start Security Box */
.security {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
}
.security .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.security .box h3 {
  font-weight: 600;
}
.security .box:last-of-type {
  border: none;
}
.security .box a.change {
  color: white;
  background-color: var(--blue-color);
}
.security label .toggle-checkbox {
  -webkit-appearance: none;
  appearance: none;
}
.security label .toggle-switch {
  background-color: #ccc;
  width: 78px;
  height: 32px;
  border-radius: 15px;
  position: relative;
  transition: var(--main-transition);
  cursor: pointer;
}
.security label .toggle-switch::before {
  content: "\f00d";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 4px;
  background-color: white;
  transition: var(--main-transition);
}
.security label .toggle-checkbox:checked + .toggle-switch {
  background-color: var(--blue-color);
}
.security label .toggle-checkbox:checked + .toggle-switch::before {
  content: "\f00c";
  top: 4px;
  left: 50px;
}
.security .box a.devices {
  background-color: #eee;
  color: black;
}
/* End Security Box */
/* Start Social Box */
.social {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
}
.social .box {
  margin-bottom: 20px;
  width: 100%;
  background-color: #eee;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  transition: var(--main-transition);
  cursor: pointer;
}
.social .box:hover {
  background-color: #dfdfdf;
}
.social .box i {
  padding: 20px;
  padding-right: 35px;
  border-right: 1px solid #ccc;
  margin-right: 20px;
  font-size: 22px;
  color: var(--gray-color);
}
.social .box p {
  color: var(--gray-color);
}
/* End Social Box */
/* Start Widget Control */
.widgets-control {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
}
.widgets-control div {
  margin-bottom: 20px;
}
.widgets-control div input {
  -webkit-appearance: none;
  appearance: none;
  margin-right: 10px;
  background-color: var(--blue-color);
}
.widgets-control div label {
  font-size: 20px;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.widgets-control div label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid;
  border-color: #777;
  margin-top: -10px;
  transition: var(--main-transition);
  border-radius: 50%;
}
.widgets-control div label:hover::before {
  border: 2px solid var(--blue-alt-color);
}
.widgets-control div label::after {
  content: "\f00c";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  font-size: 12px;
  color: #777;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--blue-color);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  background-color: var(--blue-color);
  color: white;
  transform: scale(0) rotate(360deg);
  transition: var(--main-transition);
}
.widgets-control div input[type="checkbox"]:checked + label:after {
  transform: scale(1) rotate(0deg);
}
/* End Widget Control */
/* Start Backup Manager */
.backup-manager {
  background-color: white;
  border-radius: 6px;
  padding: 20px;
}
.backup-manager .box {
  margin-bottom: 15px;
}
.backup-manager .box input {
  -webkit-appearance: none;
  appearance: none;
}
.backup-manager .box label {
  position: relative;
  font-size: 20px;
  cursor: pointer;
  padding-left: 30px;
}
.backup-manager .box label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--blue-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.backup-manager .box label::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 28%;
  transform: scale(0);
  background-color: var(--blue-color);
  transition: var(--main-transition);
}
.backup-manager .box input[type="checkbox"]:checked + label::after {
  transform: scale(1);
}
.backup-manager .info {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.backup-manager .info div {
  padding: 10px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid#ccc;
  border-radius: 10px;
  flex: 1;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--main-transition);
}
.backup-manager .info div:hover {
  border-color: var(--blue-color);
  color: var(--blue-color);
}
/* End Backup Manager */

/* End Settings */

/* Start Profile page */
/* Start Overview */
.profile-page {
  margin: 20px;
}
.profile-page .overview {
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .profile-page .overview {
    flex-direction: column;
  }
}
.profile-page .overview .avatar-box {
  width: 300px;
  padding: 20px;
  text-align: center;
}
@media (min-width: 767px) {
  .profile-page .overview .avatar-box {
    border-right: 1px solid #eee;
  }
}
.profile-page .overview .avatar-box img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}
.profile-page .overview .avatar-box .level {
  position: relative;
  border-radius: 6px;
  background-color: #eee;
  width: 150px;
  height: 10px;
  margin: auto;
}
.profile-page .overview .avatar-box .level span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 6px;
  background-color: var(--blue-color);
}

.profile-page .overview .info-box .box {
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  transition: var(--main-transition);
}
@media (max-width: 767px) {
  .profile-page .overview .info-box .box {
    flex-direction: column;
  }
}

.profile-page .overview .info-box .box > div {
  min-width: 250px;
  padding: 10px 0 0;
}

.profile-page .overview .info-box .box:hover {
  background-color: #f8f8f8;
}
.profile-page .overview .info-box .box:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.profile-page .info-box .box div label .toggle-checkbox {
  -webkit-appearance: none;
  appearance: none;
}
.profile-page .info-box .box div label .toggle-switch {
  width: 90px;
  height: 24px;
  background-color: #ccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: var(--main-transition);
}
.profile-page .info-box .box div label .toggle-switch::before {
  content: "\f00d";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  font-size: 10px;
  color: gray;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  left: 5px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--main-transition);
}

.profile-page
  .info-box
  .box
  div
  label
  .toggle-checkbox:checked
  + .toggle-switch {
  background-color: var(--blue-color);
}
.profile-page
  .info-box
  .box
  div
  label
  .toggle-checkbox:checked
  + .toggle-switch::before {
  content: "\f00c";
  top: 5px;
  left: 70px;
}

/* End Overview */
/* Start Other Data */
.profile-page .other-data {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .profile-page .other-data {
    flex-direction: column;
  }
}
.profile-page .other-data .skills {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  flex-grow: 1;
}

.profile-page .other-data .skills ul li {
  padding: 15px 0;
  display: flex;
  gap: 10px;
}
.profile-page .other-data .skills ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.profile-page .other-data .skills ul li span {
  background-color: #eee;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
}
.profile-page .other-data .activities {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  flex-grow: 2;
}
.profile-page .other-data .activities .activity {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .profile-page .other-data .activities .activity {
    flex-direction: column;
  }
  .profile-page .other-data .activities .activity img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .profile-page .other-data .activities .activity .info {
    margin-bottom: 15px;
  }
}

.profile-page .other-data .activities .activity:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.profile-page .other-data .activities .activity img {
  width: 64px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .profile-page .other-data .activities .activity .date {
    margin-left: auto;
    text-align: right;
  }
}
/* End Other Data */
/* End Profile page */

/* Start Projects page*/
.projects-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin: 20px;
}
@media (max-width: 767px) {
  .projects-page {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
.projects-page .project {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin: 0;
}
.projects-page .project span.date {
  position: absolute;
  right: 20px;
  top: 20px;
}
.projects-page .project .team {
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.team img {
  width: 50px;
  border-radius: 50%;
  border: 3px solid white;
}
.projects-page .project .team a:not(:first-of-type) {
  margin-left: -25px;
}
.projects-page .project .task {
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
  .projects-page .project .task {
    flex-wrap: wrap;
  }
}
.projects-page .project .task span {
  background-color: #eee;
  border-radius: 6px;
}
.projects-page .project .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.projects-page .project .info .prog {
  background-color: #eee;
  width: 50%;
  height: 10px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.projects-page .project .info .prog span {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
/* End Projects page*/
/* Start Courses Page */
.courses-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px;
}
@media (max-width: 767px) {
  .courses-page {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
.courses-page .course {
  background-color: white;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.courses-page .course p {
  line-height: 1.6;
}
.courses-page .course img.cover {
  width: 100%;
}
.courses-page .course img.team {
  width: 64px;
  border-radius: 50%;
  border: 3px solid white;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
.courses-page .info {
  border-top: 1px solid #eee;
  padding: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.courses-page .info .title {
  position: absolute;
  height: 27px;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
/* End Courses Page */
/* Start Friends Page */
.friends-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px;
}
@media (max-width: 767px) {
  .friends-page {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
.friends-page .friend {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  position: relative;
}
.friends-page .friend .contact {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 15px;
  left: 15px;
  color: gray;
}
.friends-page .friend .contact i {
  background-color: #eee;
  color: var(--gray-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.friends-page .friend div img {
  width: 150px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 20px;
  margin-top: 20px;
}
.friends-page .friend div h4 {
  font-weight: bold;
  font-size: 19px;
}
.friends-page .friend .icons {
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.friends-page .friend .icons i {
  margin-right: 10px;
}
.friends-page .friend span.vip {
  font-weight: bold;
  color: var(--orange-color);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 50px;
  opacity: 30%;
}
.friends-page .friend .info {
  padding: 20px 0;
}
/* End Friends Page */
/* Start Files Page */
.files-page {
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
  gap: 20px;
  margin: 20px;
}
@media (max-width: 767px) {
  .files-page {
    flex-direction: column;
    align-items: normal;
  }
}
.files-page .files-stats {
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  min-width: 260px;
}
.files-page .files-stats .box {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 15px;
}
.files-page .files-stats .box .info {
  margin-right: 10px;
}
.files-page .files-stats .box .size {
  margin-left: auto;
}
.files-page .files-stats .box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.files-page .files-stats .box:nth-of-type(1) i {
  background-color: rgba(0, 119, 255, 0.2);
}
.files-page .files-stats .box:nth-of-type(2) i {
  background-color: rgba(34, 197, 94, 0.2);
}
.files-page .files-stats .box:nth-of-type(3) i {
  background-color: rgba(244, 67, 54, 0.2);
}
.files-page .files-stats .box:nth-of-type(4) i {
  background-color: rgba(245, 159, 11, 0.2);
}
.files-page .files-stats a.upload {
  margin: 15px auto 0;
  display: block;
  padding: 10px 20px;
  width: fit-content;
  transition: var(--main-transition);
}
.files-page .files-stats a.upload i {
  margin-right: 10px;
  font-size: 13px;
}
.files-page .files-stats a.upload:hover {
  background-color: var(--blue-alt-color);
}
.files-page .files-stats a.upload:hover i {
  animation: go-up 0.8s infinite;
}
@keyframes go-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.files-page .files-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  align-items: start;
  flex: 1;
}
.files-page .files-content img {
  width: 64px;
  height: 64px;
  transition: var(--main-transition);
}
.files-page .files-content .file {
  position: relative;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}
.files-page .files-content .file:hover img {
  transform: scale(1.07);
}
.files-page .files-content .file > i {
  position: absolute;
}
.files-page .files-content .file .info {
  border-top: 1px solid #eee;
}
/* End Files Page */
/* Start Plans Page */
.plans-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin: 20px;
}
@media (max-width: 767px) {
  .plans-page {
    grid-template-columns: minmax(250px, 1fr);
    gap: 10px;
    margin-right: 10px;
    margin-left: 10px;
  }
}
.plans-page .plan .top {
  border: 3px solid white;
  outline: 3px solid transparent;
}
.plans-page .plan.green .top {
  outline-color: var(--green-color);
}
.plans-page .plan.blue .top {
  outline-color: var(--blue-color);
}
.plans-page .plan.orange .top {
  outline-color: var(--orange-color);
}
.plans-page .plan .price {
  position: relative;
  font-size: 40px;
  width: fit-content;
  margin: auto;
}
.plans-page .plan .price span {
  position: absolute;
  left: -20px;
  font-size: 21px;
}
.plans-page .plan ul li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}
.plans-page .plan ul li i:first-child {
  font-size: 18px;
  margin-right: 5px;
}
.plans-page .plan ul li i.yes {
  color: var(--green-color);
}
.plans-page .plan ul li i.help {
  color: var(--gray-color);
  margin-left: auto;
  cursor: pointer;
}
.plans-page .plan ul li i:not(.yes, .help) {
  color: var(--red-color);
}
/* End Plans Page */
