body {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

:root {
  --main-transition: 0.3s;
  --main-color: #f1f5f9;
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --red-color: #f44336;
  --green-color: #22c55e;
  --yellow-color: #f59e0b;
  --gray-color: #888;
  --border-b-color: #eee;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
  transition: var(--main-transition);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-alt-color);
}

/* Start Global Rules  */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

/* End Global Rules  */
/* Start Components  */

.page {
  display: flex;
}

.content {
  flex: 1;
  overflow: hidden;
  background-color: var(--main-color);
}

/* End Components  */

/* Start Dashboard  */
.dashboard {
  overflow: hidden;
  margin: 0 20px 20px;
}

@media (max-width: 767px) {
  .dashboard {
    margin: 0 10px 10px;
  }
}

.dashboard .boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .dashboard .boxes {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
  }
}

.dashboard .box {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.dashboard .box h2 {
  letter-spacing: -1px;
}

/* Start Welcome-col  */
.dashboard .welcome {
  padding: 0;
  padding-bottom: 20px;
  overflow: hidden;
}

.welcome .top {
  padding: 20px 20px 5px;
  background-color: #eee;
  display: flex;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 767px) {
  .welcome .top {
    padding: 35px 20px;
  }
}

.welcome .top h2 {
  margin: 0 0 10px;
  letter-spacing: -1px;
}

.welcome .top span {
  color: var(--gray-color);
}

.welcome .top .image img {
  max-width: 200px;
}

@media (max-width: 767px) {
  .welcome .top .image img {
    display: none;
  }
}

.welcome .top > img {
  width: 65px;
  position: absolute;
  bottom: 0;
  transform: translate(0, 50%);
  border: 4px solid white;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .welcome .top > img {
    left: 50%;
    transform: translate(-50%, 50%);
  }
}

.welcome .info {
  margin-top: 60px;
  border-top: 1px solid var(--border-b-color);
  border-bottom: 1px solid var(--border-b-color);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .welcome .info {
    flex-direction: column;
  }
}

.welcome .info .text {
  flex: 1;
  text-align: center;
}

@media (max-width: 767px) {
  .welcome .info .text:nth-child(2) {
    margin: 20px 0;
  }
}

.welcome .info .text h4 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 15px;
}

.welcome .info .text span {
  color: var(--gray-color);
  font-size: 14px;
}

.welcome ul li {
  flex-basis: calc(100% / 3);
  text-align: center;
}

.welcome a {
  display: block;
  width: fit-content;
  background-color: var(--blue-color);
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 20px 20px 0 auto;
  transition: var(--main-transition);
}

.welcome a:hover {
  background-color: var(--blue-alt-color);
}

/* End Welcome-col  */
/* Start Draft-col  */

.draft h2 {
  margin: 0;
}

.draft .text p {
  margin: 15px 0 0;
  font-size: 14px;
  color: var(--gray-color);
}

.draft form input[type="text"],
.draft form textarea {
  width: 100%;
  background-color: #eee;
  outline: none;
  border: none;
  margin: 25px 0 20px;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}

.draft form textarea {
  height: 180px;
  font-size: 12px;
  margin: 0;
  resize: none;
}

.draft form input[type="submit"] {
  display: block;
  background-color: var(--blue-color);
  color: white;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 5px;
  margin: 20px 0 0 auto;
  border: none;
  cursor: pointer;
  transition: var(--main-transition);
}

.draft form input[type="submit"]:hover {
  background-color: var(--blue-alt-color);
}

/* End Draft-col  */
/* Start Targets  */
.targets .text h2 {
  margin: 0 0 13px;
}

.targets .text p {
  margin: 0 0 20px;
  color: var(--gray-color);
}

/* Start The Three Info  */

.targets .info {
  display: flex;
  align-items: center;
}

.targets .info i {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 15px;
}

.targets .info .stat {
  flex: 1;
}

.targets .info .stat > span {
  color: var(--gray-color);
  font-size: 14px;
}

.targets .info h3 {
  margin: 10px 0;
  font-size: 16px;
}

.targets .progress {
  height: 4px;
}

.targets .progress h4 {
  margin: 0;
  position: absolute;
  right: 0;
  top: -34px;
  color: white;
  font-size: 13px;
  padding: 4px 5px;
  border-radius: 6px;
  transform: translateX(50%);
  font-weight: normal;
}

.targets .progress h4::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent;
}

.targets .progress span {
  position: relative;
  display: block;
  height: 100%;
}

/* End The Three Info  */

/* Start Money Colors  */

.targets .money i {
  background-color: rgb(0 117 255 / 20%);
  color: var(--blue-color);
}

.targets .money .progress {
  background-color: rgb(0 117 255 / 20%);
}

.targets .money .progress span {
  background-color: var(--blue-color);
}

.targets .money .progress h4 {
  background-color: var(--blue-color);
}

.targets .money .progress h4::before {
  border-color: var(--blue-color) transparent transparent transparent;
}

/* End Money Colors  */

/* Start Projects Colors  */

.targets .projects {
  margin: 20px 0 20px 0;
}

.targets .projects i {
  background-color: rgb(245 158 11 / 20%);
  color: var(--yellow-color);
}

.targets .projects .progress {
  background-color: rgb(245 158 11 / 20%);
}

.targets .projects .progress span {
  background-color: var(--yellow-color);
}

.targets .projects .progress h4 {
  background-color: var(--yellow-color);
}

.targets .projects .progress h4::before {
  border-color: var(--yellow-color) transparent transparent transparent;
}

/* End Projects Colors  */
/* Start team Colors  */

.targets .team i {
  background-color: rgb(34 197 94 / 20%);
  color: var(--green-color);
}

.targets .team .progress {
  background-color: rgb(34 197 94 / 20%);
}

.targets .team .progress span {
  background-color: var(--green-color);
}

.targets .team .progress h4 {
  background-color: var(--green-color);
}

.targets .team .progress h4::before {
  border-color: var(--green-color) transparent transparent transparent;
}

/* End team Colors  */
/* End Targets  */
/* Start Stats  */

.stats h2 {
  margin: 0;
}

.stats .text p {
  color: var(--gray-color);
  font-size: 14px;
}

.stats .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .stats .container {
    flex-direction: column;
  }
}

.stats .card {
  flex-basis: calc(50% - 10px);
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px 0;
}

.stats .card i {
  font-size: 27px;
}

.stats .card h2 {
  margin: 15px 0 5px;
}

.stats .card span {
  color: var(--gray-color);
  font-size: 14px;
}

.stats .total i {
  color: var(--yellow-color);
}

.stats .pending i {
  color: var(--blue-color);
}

.stats .closed i {
  color: var(--green-color);
}

.stats .deleted i {
  color: var(--red-color);
}

/* End Stats  */
/* Start News  */

.news h2 {
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .news h2 {
    text-align: center;
  }
}

.news .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .news .card {
    flex-direction: column;
  }
}

.news .card:not(:last-child) {
  border-bottom: 1px solid var(--border-b-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.news .card .data img {
  width: 100px;
  border-radius: 6px;
}

.news .card .data {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .news .card .data {
    flex-direction: column;
    text-align: center;
  }
}

.news .card .data .text {
  margin-left: 15px;
}

@media (max-width: 767px) {
  .news .card .data .text {
    margin: 10px 0;
  }
}

.news .card .data h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.news .card .data p {
  color: var(--gray-color);
  font-size: 14px;
  margin: 0;
}

.news .card span {
  font-size: 13px;
  background-color: #eee;
  padding: 5px 10px;
  border-radius: 7px;
}

@media (max-width: 767px) {
  .news .card span {
    margin-bottom: 15px;
  }
}

/* End News  */
/* Start Tasks  */

.tasks h2 {
  margin: 0 0 20px;
}

.tasks .card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tasks .card:not(:last-child) {
  border-bottom: 1px solid var(--border-b-color);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.tasks .card h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.tasks .card p {
  margin: 0;
  color: var(--gray-color);
}

@media (max-width: 767px) {
  .tasks .card p {
    font-size: 14px;
  }
}

.tasks .card i:not(.done i) {
  transition: var(--main-transition);
  cursor: pointer;
}

.tasks .card i:hover:not(.done i) {
  color: var(--red-color);
}

.tasks .done {
  opacity: 0.3;
}

.tasks .done .text {
  text-decoration: line-through;
}

/* End Tasks  */

/* Start Search-Items  */
.search-items h2 {
  margin: 0 0 20px;
}

.search-items .title {
  display: flex;
  justify-content: space-between;
  color: var(--gray-color);
  margin-bottom: 10px;
}

.search-items .skill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.search-items .skill h4 {
  margin: 0;
  font-weight: 500;
}

.search-items .skill span {
  display: block;
  background-color: #eee;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 13px;
}

/* End Search-Items  */
/* Start Uploads  */
.uploads h2 {
  margin: 0 0 20px;
}

.uploads .files {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uploads .files:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

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

.uploads .file img {
  width: 40px;
  height: 40px;
}

.uploads .text {
  margin-left: 10px;
}

.uploads .file h4 {
  margin: 0 0 5px;
  font-weight: 600;
}

.uploads .file .text span {
  font-size: 15px;
  color: var(--gray-color);
}

.uploads .files > span {
  font-size: 13px;
  background-color: #eee;
  border-radius: 6px;
  padding: 5px 9px;
}

/* End Uploads  */
/* Start Last-Pro  */
.last-pro h2 {
  margin: 0 0 20px;
}

.last-pro ul {
  position: relative;
}

.last-pro ul::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--blue-color);
  left: 10px;
}

.last-pro ul li {
  display: flex;
}

.last-pro ul li:not(:last-child) {
  margin-bottom: 25px;
}

.last-pro ul li::before {
  content: "";
  display: block;
  margin-right: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid white;
  outline: 2px solid var(--blue-color);
  z-index: 1;
}

.last-pro ul li.done::before {
  background-color: var(--blue-color);
}

.last-pro ul li.anime::before {
  animation: change-color 0.8s infinite alternate;
}

@keyframes change-color {
  from {
    background-color: var(--blue-color);
  }

  to {
    background-color: white;
  }
}

.last-pro img {
  width: 160px;
  opacity: 0.1;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .last-pro img {
    display: none;
  }
}

/* End Last-Pro  */
/* Start Reminders  */
.reminders h2 {
  margin: 0 0 20px;
}

.reminders .text {
  border-left: 2px solid;
  padding-left: 15px;
  margin-bottom: 15px;
  border-left: 2px solid;
  margin-left: 30px;
  position: relative;
}

.reminders .text::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.reminders .text h4 {
  margin: 0 0 5px;
  font-size: 15px;
}

.reminders .text span {
  font-size: 13px;
  color: var(--gray-color);
}

.reminders .blue {
  border-color: var(--blue-color);
}

.reminders .blue::before {
  background-color: var(--blue-color);
}

.reminders .green {
  border-color: var(--green-color);
}

.reminders .green::before {
  background-color: var(--green-color);
}

.reminders .yellow {
  border-color: var(--yellow-color);
}

.reminders .yellow::before {
  background-color: var(--yellow-color);
}

.reminders .red {
  border-color: var(--red-color);
}

.reminders .red::before {
  background-color: var(--red-color);
}

/* End Reminders  */
/* Start Post  */
.post h2 {
  margin: 0 0 20px;
}

.post .profile {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.post .profile img {
  width: 50px;
}

.post .text {
  margin-left: 15px;
}

.post .text h4 {
  margin: 0 0 5px;
}

.post .text span {
  font-size: 15px;
  color: var(--gray-color);
}

@media (max-width: 767px) {
  .post .text span {
    font-size: 14px;
  }
}

.post .des {
  margin: 0;
  padding: 20px 0px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .post .des {
    text-align: center;
  }
}

.post .info {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.post .icon {
  color: var(--gray-color);
}

/* End Post  */
/* Start Media Stats  */
.media-stats h2 {
  margin: 0 0 20px;
}

.media-stats .social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-right: 15px;
}

.media-stats .social h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .media-stats .social .icon h3 {
    font-size: 14px;
    margin-left: 15px;
  }
}

.media-stats .social a {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 6px;
  color: white;
}

@media (max-width: 767px) {
  .media-stats .social a {
    font-size: 13px;
  }
}

.media-stats .social .icon {
  display: flex;
  align-items: center;
}

.media-stats .social .icon i {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  transition: var(--main-transition);
}

.media-stats .social .icon i:hover {
  transform: rotate(5deg);
}

/* Start Twitter  */

.media-stats .twitter {
  background-color: rgb(29 161 242 / 20%);
}

.media-stats .twitter .icon i {
  background-color: #1da1f2;
}

.media-stats .twitter h3 {
  color: #1da1f2;
}

.media-stats .twitter a {
  background-color: #1da1f2;
}

/* End Twitter  */
/* Start Facebook  */
.media-stats .facebook {
  background-color: rgb(24 119 242 / 20%);
}

.media-stats .facebook .icon i {
  background-color: #1877f2;
}

.media-stats .facebook h3 {
  color: #1877f2;
}

.media-stats .facebook a {
  background-color: #1877f2;
}

/* End Facebook  */
/* Start Youtube  */
.media-stats .youtube {
  background-color: rgb(255 0 0 / 20%);
}

.media-stats .youtube .icon i {
  background-color: red;
}

.media-stats .youtube h3 {
  color: red;
}

.media-stats .youtube a {
  background-color: red;
}

/* End Youtube  */
/* Start Linkedin  */
.media-stats .linkedin {
  background-color: rgb(10 102 194 / 20%);
}

.media-stats .linkedin .icon i {
  background-color: #0a66c2;
}

.media-stats .linkedin h3 {
  color: #0a66c2;
}

.media-stats .linkedin a {
  background-color: #0a66c2;
}

/* End Linkedin  */

/* End Media Stats  */

/* Start Project  */
.project {
  background-color: white;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
}

.project .responsive-table {
  overflow-x: auto;
}

.project h2 {
  margin: 0 0 20px;
}

table {
  border-spacing: 0;
  border-right: 1px solid var(--border-b-color);
  min-width: 1000px;
  width: 100%;
}

table thead {
  background-color: #eee;
}

table thead td {
  font-weight: bold;
  padding: 15px;
  font-size: 16px;
}

table tbody tr {
  transition: var(--main-transition);
}

table tbody td {
  border-bottom: 1px solid var(--border-b-color);
  border-left: 1px solid var(--border-b-color);
  padding: 15px;
  font-size: 15px;
}

table tbody tr:hover {
  background-color: rgb(238 238 238 / 40%);
}

table tbody img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
}

table tbody img:not(:first-child) {
  margin-left: -20px;
}

table tbody td:last-child span {
  padding: 4px 9px;
  color: white;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

table tbody .yellow td:last-child span {
  background-color: var(--yellow-color);
}

table tbody .blue td:last-child span {
  background-color: var(--blue-color);
}

table tbody .green td:last-child span {
  background-color: var(--green-color);
}

table tbody .red td:last-child span {
  background-color: var(--red-color);
}

/* End Project  */
/* End Dashboard  */
/* Start Settings  */
.settings {
  margin: 0 20px 20px;
}

@media (max-width: 767px) {
  .settings {
    margin: 0 10px 10px;
  }
}

.settings .boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .settings .boxes {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
  }
}

.settings .box {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}

/* Start Site-Control  */
.site-control h2 {
  margin: 0 0 15px;
  letter-spacing: -1px;
  font-size: 25px;
}

.site-control > p {
  color: var(--gray-color);
  margin: 0;
  font-size: 15px;
}

.site-control .web-control {
  margin: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-control .web-control p {
  font-size: 13px;
  color: var(--gray-color);
  margin: 10px 0 0;
}

.site-control textarea {
  resize: none;
  width: 100%;
  min-height: 160px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 10px;
  font-size: 12px;
  padding: 10px;
  letter-spacing: 1px;
}

/* End Site-Control  */

/* Start General Info  */
.general-info h2 {
  margin: 0 0 15px;
}

.general-info > p {
  color: var(--gray-color);
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .general-info > p {
    font-size: 15px;
  }
}

.general-info form label {
  display: inline-block;
  color: var(--gray-color);
  font-size: 14px;
  margin-bottom: 10px;
}

.general-info form input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  outline: none;
  border-radius: 5px;
  margin-bottom: 20px;
}

.general-info form .mail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.general-info form .mail input {
  cursor: no-drop;
  margin: 0;
  background-color: #f0f4f8;
  color: #bbb;
}

.general-info form .mail a {
  color: var(--blue-color);
  margin-left: 15px;
  font-size: 15px;
  font-weight: 600;
}

/* End General Info  */

/* Start Security Info  */
.security-info h2 {
  margin: 0;
}

.security-info > p {
  margin: 20px 0 25px;
  color: var(--gray-color);
  font-size: 15px;
}

.security-info .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.security-info .row:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 20px;
}

.security-info .row .text h4 {
  margin: 0 0 10px;
  font-weight: 600;
}

.security-info .row .text p {
  margin: 0;
  font-size: 13px;
  color: var(--gray-color);
}

.security-info .row.pass a,
.security-info .row.devices a {
  padding: 5px 10px;
  border-radius: 6px;
  transition: var(--main-transition);
}

.security-info .row.pass a {
  background-color: var(--blue-color);
  color: white;
}

.security-info .row.devices a {
  background-color: #eee;
  color: black;
}

.security-info .row.pass a:hover {
  background-color: var(--blue-alt-color);
}

/* End Security Info  */
/* Start Social Info  */
.social-info h2 {
  margin: 0;
}

.social-info > p {
  margin: 15px 0;
  color: var(--gray-color);
}

.social-info .social {
  display: flex;
}

.social-info .social:not(:last-child) {
  margin-bottom: 15px;
}

.social-info .social i {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-right: none;
  color: var(--gray-color);
  transition: var(--main-transition);
  background-color: #f6f6f6;
  border-radius: 6px 0 0 6px;
}

.social-info .social input {
  display: block;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border: 1px solid #ddd;
  background-color: #f6f6f6;
  outline: none;
  padding-left: 10px;
  border-radius: 0px 6px 6px 0px;
}

.social-info .social:focus-within .twitter {
  color: #1da1f2;
}

.social-info .social:focus-within .facebook {
  color: #1877f2;
}

.social-info .social:focus-within .linkedin {
  color: #0a66c2;
}

.social-info .social:focus-within .youtube {
  color: red;
}

.social-info .social span {
  position: absolute;
  top: 0;
  left: 55px;
  height: 100%;
  font-size: 14px;
  display: flex;
  align-items: center;
}

/* End Social Info  */

/* Start Widgets Control  */
.widgets-control h2 {
  margin: 0;
}

.widgets-control p {
  margin: 15px 0 20px;
  color: var(--gray-color);
  font-size: 15px;
}

.widgets-control .check {
  margin-bottom: 15px;
}

.widgets-control .check input {
  -webkit-appearance: none;
  appearance: none;
}

.widgets-control .check label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

.widgets-control .check label::before,
.widgets-control .check label::after {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
  transition: var(--main-transition);
}

.widgets-control .check label::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--gray-color);
}

.widgets-control .check label:hover::before {
  border-color: var(--blue-color);
}

.widgets-control .check label::after {
  content: "\f00c";
  font-family: "font awesome 5 free";
  font-weight: 900;
  width: 18px;
  height: 18px;
  color: white;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0);
}

.widgets-control .check input:checked + label::after {
  background-color: var(--blue-color);
  transform: scale(1) rotate(1turn);
}

/* End Widgets Control  */

/* Start Backup Manager  */
.backup-manager h2 {
  margin: 0;
}

.backup-manager > p {
  margin: 15px 0 20px;
  color: var(--gray-color);
  font-size: 15px;
}

.backup-manager .choose:not(:last-child) {
  margin-bottom: 17px;
}

.backup-manager .choose input {
  -webkit-appearance: none;
  appearance: none;
}

.backup-manager .choose label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.backup-manager .choose label::before,
.backup-manager .choose label::after {
  content: "";
  position: absolute;
  transition: var(--main-transition);
  border-radius: 50%;
}

.backup-manager .choose label::before {
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-color);
}

.backup-manager .choose label::after {
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  transform: scale(0);
}

.backup-manager .choose input:checked + label::before {
  border-color: var(--blue-color);
}

.backup-manager .choose input:checked + label::after {
  background-color: var(--blue-color);
  transform: scale(1);
}

@media (min-width: 768px) {
  .backup-manager .servers {
    display: flex;
    gap: 10px;
  }
}

.backup-manager .servers {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.backup-manager .server input {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.backup-manager .server input:checked + label {
  color: var(--blue-color);
  border-color: var(--blue-color);
}

.backup-manager .server label {
  padding: 15px 0;
  display: block;
  cursor: pointer;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .backup-manager .server label {
    margin-bottom: 20px;
  }
}

.backup-manager .server {
  flex: 1;
}

.backup-manager .server .size {
  border: 1px solid #eee;
  padding: 15px 0;
}

.backup-manager .server span {
  display: block;
  margin-top: 10px;
}

/* End Backup Manager  */

/* End Settings  */
/* Start Profile-page  */

.profile-page {
  margin: 0 20px 20px;
}

@media (max-width: 767px) {
  .profile-page {
    margin: 0 10px 10px;
  }
}

/* Start pro-employee  */
/* Start employee-stats  */
.profile-page .pro-employee {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .profile-page .pro-employee {
    flex-direction: column;
  }
}

.profile-page .employee-stats {
  width: 300px;
  text-align: center;
  padding: 20px;
}

@media (min-width: 768px) {
  .profile-page .employee-stats {
    border-right: 1px solid #eee;
  }
}

.profile-page .employee-stats img {
  width: 120px;
  height: 120px;
}

.profile-page .employee-stats h3 {
  margin: 15px 0 10px;
}

.profile-page .employee-stats .level {
  color: var(--gray-color);
}

.profile-page .employee-stats .prog {
  height: 6px;
  background-color: #eee;
  width: 70%;
  border-radius: 10px;
  position: relative;
  margin: 20px auto 15px;
}

.profile-page .employee-stats .prog span {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  height: 100%;
  background-color: var(--blue-color);
}

.profile-page .employee-stats .icon i {
  color: var(--yellow-color);
  font-size: 13px;
}

.profile-page .employee-stats .rating {
  color: var(--gray-color);
  font-size: 13px;
  display: inline-block;
  margin-top: 15px;
}

/* End employee-stats  */
/* Start Info  */
.profile-page .info {
  width: 100%;
}

.profile-page .info .info-user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  transition: var(--main-transition);
}

.profile-page .info .info-user:hover {
  background-color: #f9f9f9;
}

@media (max-width: 767px) {
  .profile-page .info .info-user {
    text-align: center;
  }
}

.profile-page .info .info-user:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}

.profile-page .info .info-user h3 {
  width: 100%;
  margin: 0;
  font-weight: 500;
  color: var(--gray-color);
  font-size: 15px;
}

.profile-page .info .info-user .data {
  min-width: 250px;
  margin-top: 10px;
}

.profile-page .info .info-user .data span {
  font-size: 14px;
}

.profile-page .info .info-user .data span:first-child {
  color: var(--gray-color);
}

.profile-page .info .info-user .toggle-switch {
  height: 25px;
  width: 70px;
  margin-top: 10px;
}

.profile-page .info .info-user .toggle-switch::before {
  width: 17px;
  height: 17px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .profile-page .info .info-user label .toggle-switch {
    margin: 10px auto 0;
  }
}

.profile-page .info .info-user label {
  width: 250px;
}

/* End Info  */

/* End pro-employee  */

/* Start Skills & Activites  */

.skill-active .skills {
  flex: 1;
}

@media (min-width: 768px) {
  .skill-active .skills ul li {
    margin-bottom: 4px;
  }
}

@media (max-width: 767px) {
}

@media (min-width: 768px) {
  .skill-active {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}

.skill-active .skills,
.skill-active .l-activites {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}

.skill-active .skills h2,
.skill-active .l-activites h2 {
  margin: 0 0 15px;
  letter-spacing: -1px;
}

.skill-active .skills p,
.skill-active .l-activites p {
  color: var(--gray-color);
  font-size: 15px;
  margin: 0;
}

@media (max-width: 767px) {
  .skill-active .skills {
    margin-bottom: 10px;
  }
}

.skill-active .skills p {
  margin-bottom: 40px;
}

.skill-active .skills ul:not(:last-of-type) {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .skill-active .skills ul {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .skill-active .skills .skill {
    text-align: center;
  }
}

.skill-active .skills ul li {
  background-color: #eee;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.skill-active .l-activites {
  flex: 2;
}

.skill-active .l-activites p {
  margin-bottom: 20px;
}

.skill-active .activite {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .skill-active .activite {
    display: block;
    text-align: center;
  }
}

.skill-active .activite:not(:last-of-type) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

@media (min-width: 767px) {
  .skill-active .activite .place {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

.skill-active .activite img {
  width: 65px;
  height: 65px;
}

.skill-active .activite .text p {
  margin: 15px 0 0;
}

@media (max-width: 767px) {
  .skill-active .activite .text span {
    display: block;
    margin-top: 10px;
  }
}

@media (min-width: 767px) {
  .skill-active .activite .time {
    text-align: right;
  }
}

.skill-active .activite .time span:first-of-type {
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .skill-active .activite .time span:first-of-type {
    margin: 15px 0;
  }
}

.skill-active .activite .time span:last-of-type {
  color: var(--gray-color);
}

/* End Skills & Activites  */

/* End Profile-page  */
/* Start Projects  */
.projects-page {
  margin: 0 20px 20px;
}

@media (max-width: 767px) {
  .projects-page {
    margin: 0 10px 10px;
  }
}

.boxes-pro {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .boxes-pro {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
  }
}

.boxes-pro .box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.boxes-pro .box h4 {
  margin: 0 0 15px;
  font-size: 17px;
}

.boxes-pro .box p {
  margin: 0;
  color: var(--gray-color);
  font-size: 14px;
}

.boxes-pro .box > span {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--gray-color);
  font-size: 13px;
}

.boxes-pro .box .image {
  margin-top: 50px;
}

.boxes-pro .box .image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  cursor: pointer;
}

.boxes-pro .box .image img:hover {
  position: relative;
}

.boxes-pro .box .image img:not(:first-child) {
  margin-left: -20px;
}

.boxes-pro .box ul {
  display: flex;
  justify-content: flex-end;
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .boxes-pro .box ul {
    flex-direction: column;
  }

  .boxes-pro .box ul li {
    width: fit-content;
    margin-bottom: 15px;
  }
}

.boxes-pro .box ul li {
  background-color: #eee;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 13px;
}

.boxes-pro .box ul li:not(:last-child) {
  margin-right: 5px;
}

.boxes-pro .box .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .boxes-pro .box .footer {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.boxes-pro .box .footer .prog {
  position: relative;
  height: 8px;
  width: 250px;
  border-radius: 10px;
  background-color: #eee;
}

.boxes-pro .box .footer .prog span {
  position: absolute;
  height: 100%;
  border-radius: 10px;
}

.boxes-pro .box .footer .price {
  color: var(--gray-color);
  font-size: 15px;
}

/* The Color Of Prog  */

.boxes-pro .elzero-dash .footer .prog span {
  background-color: var(--red-color);
}

.boxes-pro .academy-port .footer .prog span {
  background-color: var(--green-color);
}

.boxes-pro .chatting-app .footer .prog span {
  background-color: var(--blue-color);
}

.boxes-pro .mohamed-app .footer .prog span {
  background-color: var(--red-color);
}

.boxes-pro .ahmed-dash .footer .prog span,
.boxes-pro .ahmed-port .footer .prog span,
.boxes-pro .mohamed-dash .footer .prog span,
.boxes-pro .mohamed-port .footer .prog span,
.boxes-pro .ahmed-app .footer .prog span {
  background-color: var(--green-color);
}

/* The Color Of Prog  */

/* End Projects  */

/* Start Courses  */
.courses {
  margin: 0 20px 20px;
}

@media (max-width: 767px) {
  .courses {
    margin: 0 10px 10px;
  }
}

.courses .course {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .courses .course {
    grid-template-columns: minmax(200px, 1fr);
  }
}

.courses .box {
  background-color: white;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.courses .box .avatar {
  width: 60px;
  height: 60px;
  border: 1px solid white;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 20px;
}

.courses .box .big-img {
  width: 100%;
}

.courses .box .text-c {
  padding: 20px;
}

.courses .box h4 {
  margin: 0 0 15px;
}

.courses .box p {
  font-size: 14px;
  color: var(--gray-color);
  margin: 0;
  line-height: 1.6;
}

.courses .box .info-course {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding: 15px;
  margin-top: 20px;
  position: relative;
}

.courses .box .info-course span {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 600;
}

.courses .box .info-course span:first-child::before {
  font-family: "font awesome 5 free";
  content: "\f007";
  font-weight: 500;
  margin-right: 3px;
}

.courses .box .info-course span:last-child::before {
  font-family: "font awesome 5 free";
  content: "\24";
  font-weight: 900;
  margin-right: 3px;
}

.courses .box .info-course .c-info {
  font-size: 13px;
  background-color: var(--blue-color);
  padding: 5px 9px;
  border-radius: 6px;
  color: white;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

/* End Courses  */

/* Start Friends  */

.friends {
  margin: 0 20px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .friends {
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
    margin: 0 10px 10px;
  }
}

.friends .friend {
  position: relative;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}

.friends .friend .icon {
  position: absolute;
  left: 10px;
  top: 10px;
}

.friends .friend .icon i {
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  background-color: #eee;
  color: #5e5e5e;
  cursor: pointer;
  transition: var(--main-transition);
}

.friends .friend .icon i:first-child:hover {
  background-color: var(--green-color);
  color: white;
}

.friends .friend .icon i:last-child:hover {
  background-color: var(--blue-color);
  color: white;
}

.friends .friend .profile {
  text-align: center;
  margin-top: 5px;
}

.friends .friend .profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.friends .friend .profile h4 {
  margin: 15px 0 10px;
  font-size: 17px;
}

.friends .friend .profile p {
  margin: 0;
  font-size: 13px;
  color: var(--gray-color);
}

.friends .friend .vip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin: 15px 0;
}

.friends .friend .vip > span {
  font-size: 40px;
  font-weight: bold;
  color: rgb(245 158 11 / 20%);
}

.friends :not(.vip) .stats {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin: 15px 0;
}

.friends .friend .stats .stat {
  font-size: 14px;
}

.friends .friend .stats .stat:not(:last-child) {
  margin-bottom: 15px;
}

.friends .friend .stats .stat i {
  margin-right: 5px;
}

.friends .friend .joined {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.friends .friend .joined p {
  color: var(--gray-color);
  font-size: 13px;
  margin: 0;
}

.friends .friend .links a {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: white;
}

.friends .friend .links a:first-child {
  background-color: var(--blue-color);
}

.friends .friend .links a:last-child {
  background-color: var(--red-color);
}

/* End Friends  */

/* Start Files Page  */
.files-page {
  display: flex;
  gap: 20px;
  margin: 0 20px 20px;
}

@media (max-width: 767px) {
  .files-page {
    margin: 0 10px 10px;
    flex-direction: column-reverse;
  }
}

@media (min-width: 767px) {
  .files-page {
    align-items: flex-start;
  }
}

/* Start Files Cards  */

.files-page .files-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .files-page .files-cards {
    gap: 10px;
  }
}

.files-page .files-cards .file {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
}

.files-page .files-cards .file:hover img {
  transform: rotate(5deg);
}

.files-page .files-cards .file i {
  color: var(--gray-color);
}

.files-page .files-cards .file .image {
  text-align: center;
}

.files-page .files-cards .file .image img {
  width: 65px;
  height: 65px;
  transition: var(--main-transition);
}

.files-page .files-cards .file .image h4 {
  margin: 20px 0 15px;
  font-weight: 600;
  font-size: 13px;
}

.files-page .files-cards .file > span {
  font-size: 13px;
  color: var(--gray-color);
}

.files-page .files-cards .file .file-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-color);
  border-top: 1px solid #eee;
  margin-top: 15px;
  padding-top: 15px;
}

/* End Files Cards  */

/* Start Files Stats  */

.files-page .files-stats {
  background-color: white;
  min-width: 270px;
  padding: 20px;
  border-radius: 10px;
}

.files-page .files-stats h2 {
  margin: 5px 0 20px;
  letter-spacing: -1px;
}

@media (max-width: 767px) {
  .files-page .files-stats h2 {
    text-align: center;
  }
}

.files-page .files-stats .file-stat {
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
}

.files-page .files-stats .file-stat i {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.files-page .files-stats .file-stat span:first-child {
  display: inline-block;
  margin: 0 0 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -1px;
}

.files-page .files-stats .file-stat span {
  display: block;
  font-size: 14px;
  color: var(--gray-color);
}

.files-page .files-stats .file-stat .file-size {
  font-size: 15px;
  color: var(--gray-color);
  margin-left: auto;
}

/* Files Stats Colors  */

.files-page .files-stats .blue i {
  background-color: rgb(0 117 255 / 20%);
  color: var(--blue-color);
}

.files-page .files-stats .green i {
  background-color: rgb(34 197 94 / 20%);
  color: var(--green-color);
}

.files-page .files-stats .red i {
  background-color: rgb(244 67 54 / 20%);
  color: var(--red-color);
}

.files-page .files-stats .yellow i {
  background-color: rgb(245 158 11 / 20%);
  color: var(--yellow-color);
}

.files-page .files-stats a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: var(--blue-color);
  color: white;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 13px;
  transition: var(--main-transition);
}

.files-page .files-stats a:hover {
  background-color: var(--blue-alt-color);
}

.files-page .files-stats a i {
  margin: 0 5px;
  transition: var(--main-transition);
}

.files-page .files-stats a:hover i {
  animation: up 0.8s infinite;
}

@keyframes up {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Files Stats Colors  */

/* End Files Stats  */

/* End Files Page  */

/* Start Plans Page  */
.plans-page {
  margin: 0 20px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .plans-page {
    margin: 0 10px 10px;
    grid-template-columns: minmax(200px, 1fr);
    gap: 10px;
  }
}

.plans-page .plan {
  background-color: white;
  padding: 20px;
}

.plans-page .plan .price {
  text-align: center;
  color: white;
  padding: 20px 0;
  margin-bottom: 20px;
  border: 3px solid white;
  outline: 3px solid transparent;
}

.plans-page .plan .price h3 {
  margin: 0 0 5px;
  font-size: 25px;
  letter-spacing: -1px;
}

.plans-page .plan .price > div {
  width: fit-content;
  margin: auto;
  font-size: 40px;
  position: relative;
}

.plans-page .plan .price span {
  position: absolute;
  left: -20px;
  font-size: 26px;
  top: 0;
}

.plans-page .plan ul li {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.plans-page .plan ul li .yes {
  color: var(--green-color);
  margin-right: 5px;
  font-size: 18px;
}

.plans-page .plan ul li i:not(.yes, .help) {
  color: var(--red-color);
  margin-right: 5px;
  font-size: 18px;
}

.plans-page .plan ul li span {
  font-size: 15px;
}

.plans-page .plan ul li .help {
  display: block;
  width: fit-content;
  color: var(--gray-color);
  margin-left: auto;
}

.plans-page .plan a {
  display: block;
  width: fit-content;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 20px;
}

/* Plans Color  */

.plans-page .plan.free .price {
  background-color: var(--green-color);
}

.plans-page .plan.free .price {
  outline-color: var(--green-color);
}

.plans-page .plan.free a {
  background-color: var(--green-color);
}

.plans-page .plan.basic .price {
  background-color: var(--blue-color);
}

.plans-page .plan.basic .price {
  outline-color: var(--blue-color);
}

.plans-page .plan.basic a {
  background-color: var(--blue-color);
}

.plans-page .plan.premium .price {
  background-color: var(--yellow-color);
}

.plans-page .plan.premium .price {
  outline-color: var(--yellow-color);
}

.plans-page .plan.premium p {
  margin: 20px 0 0;
  text-align: center;
  color: var(--gray-color);
}

/* Plans Color  */

/* End Plans Page  */
