:root {
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --orange-color: #f59e0b;
  --green-color: #22c55e;
  --red-color: #f44336;
  --grey-color: #888;
}

* {
  box-sizing: border-box;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
  transition-duration: 0.3s;
}
::-webkit-scrollbar-thumb:hover  {
  background-color: var(--blue-alt-color);
}
body {
  font-family: "open Sans", sans-serif;
  margin: 0;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

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

.page {
  display: flex;
  min-height: 100vh;
  background-color: #f1f5f9;
  justify-content: space-between;
}

/* Start sidebar  */
.sidebar {
  background-color: white;
  position: relative;
  width: 250px;
  box-shadow: 0 0 10px #DDD;
  padding: 20px;
}

.sidebar>h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  position: relative;
}

.sidebar>h3::before,
.sidebar>h3::after {
  content: '';
  background-color: black;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);

}

.sidebar>h3::before {
  bottom: -20px;
  width: 80px;
  height: 2px;
}

.sidebar>h3::after {
  width: 12px;
  height: 12px;
  bottom: -29px;
  border: 4px solid white;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.sidebar ul li {
  display: flex;

}

.sidebar li i {
  margin-right: 10px;
}

.sidebar ul li a {
  color: black;
  padding: 10px;
  font-size: 14px;
  width: 100%;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  margin-bottom: 5px;
  transition-duration: 0.3s;
}

@media (max-width : 767px) {
  .sidebar {
    width: 60px;
    padding: 10px;
  }

  .sidebar h3 {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .sidebar h3::before,
  .sidebar h3::after {
    display: none;
  }

  .sidebar ul li a span {
    display: none;
  }
}

.sidebar ul li a:hover,
.sidebar ul li .active {
  background-color: #f6f6f6;
}

.sidebar ul li a:focus {
  background-color: #f6f6f6;
}

.page .content {
  width: 100%;
  overflow: hidden;
}

/* End sidebar  */
/* start header  */
.page .content>header {
  background-color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page .content .icons {
  display: flex;
  align-items: center;
}

.page .search {
  position: relative;
}

.page .search::before {
  font-family: var(--fa-style-family-classic);
  content: "\f002";
  font-weight: 900;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 15px;
  color: #777;
  font-size: 14px;
}

.page .search input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 160px;
  padding-left: 30px;
  margin-left: 5px;
  transition-duration: 0.3s;
  font-size: 14px;
}

.page .search input:focus {
  width: 200px;
}

.page .search input:focus::placeholder {
  opacity: 0;
}

.page .search input::placeholder {
  color: #777;
  font-size: 14px;
  transition-duration: 0.3s;
}

.page .content .icons span {
  position: relative;
  margin-right: 10px;
}

.page .content .icons span::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--red-color);
  position: absolute;
  right: -4px;
  border-radius: 50%;
  top: -7px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.page .content>header img {
  width: 34px;
}

/* end header  */
.page .content>h1 {
  position: relative;
  margin: 20px 20px 40px;
}

.page .content>h1::before,
.page .content>h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  height: 3px;
}

.page .content>h1::before {
  background-color: black;
  width: 40px;
}

.page .content>h1::after {
  background-color: white;
  width: 80px;
  left: 40px;
}

/* start wraper  */
.page .content .box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

/* start welcome  */
.page .content .box .welcome .head {
  display: flex;
  justify-content: space-between;
  background-color: #eee;
}

@media (max-width : 767px) {
  .page .content .welcome .body {
    flex-direction: column;
    gap: 20px;
  }

  .page .content .welcome .avatar {
    margin: -32px auto 30px;
    display: block;
  }

  .page .welcome .head img {
    display: none;
  }

  .page .content .box {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}

.page .content .box .welcome {
  overflow: hidden;
}

.welcome .head img {
  width: 200px;
  margin-bottom: -10px;
}

.welcome .avatar {
  width: 64px;
  margin-left: 20px;
  border: 4px solid white;
  margin-top: -32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 0 0 5px #ddd;
}

.welcome .body {
  margin-bottom: 20px;
  margin-top: 20px;
  border-top: 0.5px solid #ddd;
  border-bottom: 0.5px solid #ddd;
  align-items: center;
}

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

.welcome .body span {
  margin-top: 10px;
}

.welcome>a {
  background-color: var(--blue-color);
  margin: 0 15px 15px auto;
  width: fit-content;
  transition-duration: 0.3s;
}

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

/* End welcome  */

/* start quick draft */
.quick-draft .form {
  flex-direction: column;
  margin-top: 20px;

}

.quick-draft .form input {
  margin-bottom: 20px;
}

.quick-draft .form textarea {
  resize: none;
  min-height: 180px;
}

.quick-draft>a {
  background-color: var(--blue-color);
  width: fit-content;
  margin: 15px 0px 15px auto;
}

/* end quick draft */

/* start early targets */
.early .icon {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.early .blue .icon {
  background-color: rgb(0 117 255 / 20%);

}

.early .orange .icon {
  background-color: rgb(245 158 11 / 20%);
}

.early .green .icon {
  background-color: rgb(34 197 94 / 20%)
}

.early .details {
  flex: 1;
}

.early .details .progress {
  width: 100%;
  height: 4px;
}

.early .details .progress.blue {
  background-color: rgb(0 117 255 / 20%);
}

.early .details .progress.orange {
  background-color: rgb(245 158 11 / 20%);
}

.early .details .progress.green {
  background-color: rgb(34 197 94 / 20%);
}

.early .details .progress>span {
  height: 4px;
  position: relative;
}

.early .progress>span span {
  position: absolute;
  right: -17px;
  top: -30px;
  color: hwite;
  color: white;
  padding: 2px 5px;
  font-size: 13px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.early .progress>span span::before {
  content: '';
  border: 5px solid green;
  border-color: var(--blue-color) transparent transparent transparent;
  bottom: -10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.early .orange .progress>span span::before {
  border-color: var(--orange-color) transparent transparent transparent;
}

.early .green .progress>span span::before {
  border-color: var(--green-color) transparent transparent transparent;
}

/* end early targets */
/* start tickets */
.tickets .all {
  flex-wrap: wrap;
  gap: 20px;
}

.tickets .all .boxes {
  border: 1px solid #ccc;
  width: calc(50% - 10px);
}

@media (max-width : 767px) {
  .tickets .all .boxes {
    width: 100%;
  }
}

/* end tickets */
/* start latest */
.latest .news .new img {
  width: 100px;
  margin-right: 20px;
}

.latest .news {
  flex-direction: column;
}

.latest .new .info {
  flex: 1;
}

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

@media (max-width:767px) {
  .latest .new {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .latest h2 {
    text-align: center;
  }

  .latest .new img {
    margin-right: 0 !important;
  }
}

/* end latest */
/* start tasks */
.tasks .task:not(:last-of-type) {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.tasks .task:nth-of-type(4) {
  opacity: 0.3;
}

.tasks .task:nth-of-type(4)>div {
  text-decoration: line-through;
}

/* end tasks */
/* start top search  */
.top-search .grey:not(:last-of-type) {
  margin-bottom: 30px;
}

/* end top search  */
/* start files  */
.files .file img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.files .file div {
  flex: 1;
}

.files .file:not(:last-of-type) {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

/* end files  */
/* start last project */

.last-project img {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
}

.last-project ul {
  border-left: 2px solid var(--blue-color);
  margin-left: 10px;
}

.last-project ul li {
  position: relative;
  margin-top: 25px;
  padding-left: 30px;
}

.last-project ul li::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid white;
  outline: 2px solid var(--blue-color);
  background-color: var(--blue-color);
  left: -13px;
}

.last-project ul li:last-child::before {
  background-color: white;
}

.last-project ul .test::before {
  animation: blinking 1s alternate infinite;
  -webkit-animation: blinking 1s alternate infinite;
}


/* end last project */
/* start reminders */
.reminders ul {
  margin-left: 30px;
}

.reminders ul li {
  margin-bottom: 15px;
  border-left: 2px solid var(--blue-color);
  padding-left: 10px;
}

.reminders ul li::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: var(--blue-color);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: -30px;
}

.reminders ul .green {
  border-left: 2px solid var(--green-color);
}

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

.reminders ul .orange {
  border-left: 2px solid var(--orange-color);
}

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

.reminders ul .red {
  border-left: 2px solid var(--red-color);
}

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

/* end reminders */
/* start latest post  */
.latest-post div+p {
  line-height: 1.8;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* end latest post  */
/* start social media  */
.social-media .social {
  padding: 15px;
  position: relative;
  padding-left: 70px;
  margin-bottom: 10px;
}

.social-media .social i {
  position: absolute;
  left: 0;
  height: 100%;
  width: 50px;
  transition-duration: 0.3s;
}

.social-media i:hover {
  rotate: 5deg;
}

.social-media .twitter {
  background-color: rgb(29 161 242 / 20%);
  color: #1da1f2;
}

.social-media .twitter i,
.social-media .twitter a {
  background-color: #1da1f2;
}

.social-media .facebook {
  background-color: rgb(24 119 242 / 20%);
  color: #1da1f2;
}

.social-media .facebook i,
.social-media .facebook a {
  background-color: #1877f2;
}

.social-media .youtube {
  background-color: rgb(255 0 0 / 20%);
  color: #ff0000;
}

.social-media .youtube i,
.social-media .youtube a {
  background-color: #ff0000;
}

.social-media .linkedin {
  background-color: rgb(0 119 181 / 20%);
  color: #0077b5;
}

.social-media .linkedin i,
.social-media .linkedin a {
  background-color: #0077b5;
}

/* end social media  */
/* End wraper  */

/* start projects */
.content .projects {
  margin: 20px;
}

.content .projects .respo-table {
  overflow-x: auto;
}

.content .projects table {
  border: 1px solid #eee;
  text-align: left;
  border-spacing: 0;
  min-width: 1000px;
  width: 100%;
}

.content .projects thead {
  background-color: #eee;
}

.content .projects tbody tr:hover {
  background-color: #ecebeb47;
}

.content .projects tr {
  transition-duration: 0.3s;
}

.content .projects table th,
.content .projects td {
  padding: 15px;
  font-size: 15px;
}

.content .projects td {
  font-size: 15px;
  padding: 15px;
}

.content .projects tr:not(:last-of-type) td {
  border-bottom: 1px solid #eee;
}

.content .projects .pic img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: white;
  padding: 2px;
}

.content .projects .pic img:not(:first-child) {
  margin-left: -20px;
}

.content .projects td:not(:first-of-type) {
  border-left: 1px solid #eee;
}

/* end projects */
/* start settings  */
.settings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  gap: 20px;
}

@media (max-width :1199px) {
  .settings {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 20px;
    margin-right: 20px;
    gap: 10px;
  }
}

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

/* start site control */
.site-control textarea {
  resize: none;
  min-height: 150px;
  border: 1px solid #ccc;
}

/* end site control */
/* start genral info  */
.genral-info div>input {
  border: 1px solid #ccc;
}

.genral-info div>input[type="email"] {
  flex: 1;
  background-color: #f0f4f8;
  cursor: no-drop;
}

.genral-info div>input[type="email"]::placeholder {
  color: #bbb;
}

.genral-info .email {
  gap: 10px;
}

.genral-info input+span {
  cursor: pointer;
}

/* end genral info  */
/* start security info  */
.security>div:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 15px;
}

.security>div:first-of-type a {
  transition-duration: 0.3s;
}

.security>div:first-of-type a:hover {
  background-color: var(--blue-alt-color);
}

/* end security info  */
/* start social info  */
.social-info div {
  background-color: #f6f6f6;
  height: 40px;
}

.social-info div:not(:last-of-type) {
  margin-bottom: 15px;

}

.social-info div i {
  width: 40px;
  height: 40px;
  background-color: #f6f6f6;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 6px 0 0 6px;
}

.social-info div i+span {
  border-left: 1px solid #ddd;
  display: flex;
  align-items: center;
  height: 40px;
  padding-left: 10px;
  border: 1px solid #ddd;
  border-radius: 0 6px 6px 0;
  -webkit-border-radius: 0 6px 6px 0;
  -moz-border-radius: 0 6px 6px 0;
  -ms-border-radius: 0 6px 6px 0;
  -o-border-radius: 0 6px 6px 0;
}

/* end social info  */
/* start widgets  */
.widgets input[type="checkbox"] {
  appearance: none;
}

.widgets>div {
  margin-bottom: 15px;
}

.widgets label {
  padding-left: 30px;
  cursor: pointer;
}

.widgets label::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid var(--grey-color);
  position: absolute;
  left: 0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition-duration: 0.3s;

}

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

.widgets label::after {
  font-family: var(--fa-style-family-classic);
  content: "\f00c";
  font-weight: 900;
  background-color: var(--blue-color);
  color: white;
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  font-size: 12px;
  transition-duration: 0.3s;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.widgets input[type="checkbox"]:checked+label::after {
  transform: scale(1) rotate(1turn);
  -webkit-transform: scale(1) rotate(1turn);
  -moz-transform: scale(1) rotate(1turn);
  -ms-transform: scale(1) rotate(1turn);
  -o-transform: scale(1) rotate(1turn);
}

/* end widgets  */
/* start backup manager */
.back-up .radio input[type="radio"] {
  appearance: none;
}

.back-up .radio {
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.back-up .radio>div {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.back-up .radio label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

.back-up .radio label::before {
  content: '';
  width: 17px;
  height: 17px;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #b0afaf;
  background-color: white;
  left: 0;
  top: -1px;
  transition-duration: 0.3s;
}

.back-up .radio input:checked+label::before {
  border-color: var(--blue-color);
}

.back-up .radio label::after {
  content: '';
  transform: scale(0);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 5px;
  background-color: var(--blue-color);
  bottom: 3px;
  transition-duration: 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  width: 11px;
  height: 11px;
}

.back-up .radio input:checked+label::after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.back-up .mega {
  gap: 10px;
  align-items: center;
  /* padding: 10px; */
}
@media (max-width:767px) {
  .back-up .mega{
    flex-direction: column;
    gap: 5px;
    /* padding: 0; */
  }
}

.back-up .mega>div {
  width: 100%;
  margin-top: 10px;
}

.back-up .mega input {
  appearance: none;
}

.back-up .mega label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 2px solid #cccccc83;
  flex: 1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: border color;
}

.back-up .mega input:checked+label {
  border: 2px solid var(--blue-color);
  color: var(--blue-color);
}

/* end backup manager */

/* end settings  */
/* start profile page  */
/* start avatar-box  */

.profile .avatar-box {
  width: 300px;
  border-right: 1px solid #eee;
}

.profile .avatar-box img {
  width: 120px;
  margin-bottom: 10px;
}

.profile .avatar-box .level {
  margin: auto;
  height: 6px;
  width: 70%;
}

.profile .avatar-box .level span {
  background-color: var(--blue-color);
  height: 6px;
  position: absolute;
  left: 0;
}

.profile .avatar-box div>i {
  color: var(--orange-color);
  margin-right: 5px;
}

/* end avatar-box  */
/* start info-box  */

.profile .info-box>div {
  flex-wrap: wrap;
  transition-duration: 0.3s;
}

.profile .info-box>div:hover {
  background-color: #eeeeee56;
}

@media (max-width : 767px) {
  .profile .avatar-box {
    border: none;
  }

  .profile .info-box div {
    display: block;
    text-align: center;
  }

  .profile .info-box .toggle-switch {
    /* display: block; */
    margin: auto;
  }
}

.profile .info-box>div:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.profile .info-box>div>div {
  min-width: 250px;
  padding-top: 10px;
}

.profile .info-box>div>h4 {
  font-weight: normal;
  font-size: 15px;
}

.profile .info-box input~.toggle-switch {
  height: 20px;
}

.profile .info-box input~.toggle-switch::before {
  font-size: 9px;
  width: 15px;
  height: 15px;
  top: 2.5px;
}

.profile .info-box input:checked~.toggle-switch::before {
  left: 58.5px;
}

/* end info-box  */

/* start split  */
.profile .split {
  gap: 20px;
}

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

  .profile .latest-activites>div {
    flex-direction: column;
    gap: 10px;
  }

  .profile .latest-activites>div span {
    margin: 6px;
  }
}

.profile .split .my-skills {
  flex-grow: 1;
}

.profile .split .latest-activites {
  flex-grow: 2;
}

.profile .split ul {
  padding-top: 20px;
  margin-bottom: 0;
}

.profile .split .my-skills ul li {
  padding-bottom: 20px;
}

.profile .split .my-skills ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;

}

.latest-activites img {
  width: 64px;
  margin-right: 10px;
}

.latest-activites>div:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.latest-activites>div span {
  margin-bottom: 12px;
}

/* end split  */
/* end  profile page  */

/* start projects  */
.projects-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  margin-left: 20px;
  margin-right: 20px;
  gap: 20px;
}

@media (max-width:1199px) {
  .projects-page {
    grid-template-columns: minmax(250px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}

.projects-page>div>span {
  position: absolute;
  right: 10px;
  top: 10px;
}

.projects-page div img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
}

.projects-page div img:hover {
  z-index: 10;
}

.projects-page div img:not(:first-of-type) {
  margin-left: -15px;
}

.projects-page .project-box {
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.projects-page div ul {
  justify-content: flex-end;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

@media (max-width : 767px) {
  .projects-page div ul {
    flex-direction: column;
    gap: 10px;
  }

  .projects-page div ul li {
    width: fit-content;
  }

  .projects-page>div>div:last-child>div:last-child {
    flex-direction: column;
    gap: 15px;
  }
}

.projects-page div ul li {
  margin-left: 5px;
}

.projects-page .progress {
  background-color: #eee;
  width: 260px;
  height: 8px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.projects-page .progress span {
  position: absolute;
  left: 0;
  height: 100%;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

/* end projects  */
/* start courses  */
.courses {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 0 20px;
}

.courses .courses-box div:first-of-type {
  padding: 20px;
}

.courses-box img:nth-of-type(2) {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 20px;
  border: 2px solid white;
}

.courses .courses-box div p {
  line-height: 1.7;
  /* margin-top: 0; */
}

.courses-box div:last-of-type {
  border-top: 1px solid #eee;
}

.courses-box div:last-of-type span:first-child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  top: -11px;
}

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

.friend-box>div:nth-of-type(3) {
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.friend-box .icons {
  position: absolute;
  top: 10px;
  left: 10px;
}

.friend-box .icons i {
  padding: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #eee;
  color: #666;
  font-size: 13px;
  margin-right: 5px;
  cursor: pointer;
  transition-duration: 0.3s;
}

.friend-box .icons i:hover {
  background-color: var(--blue-color);
  color: white;
}

.friend-box>div:nth-of-type(3)>div:not(:last-child) {
  margin-bottom: 10px;
}

.friend-box>div:nth-of-type(3)>div i {
  margin-right: 5px;
}

.vip {
  font-size: 40px;
  color: var(--orange-color);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  opacity: 0.2;
  font-weight: bold;
}

/* end friends  */
/* start files  */
.files {
  gap: 20px;
  align-items: flex;
  margin: 20px;
}

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

.files .folders div i {
  top: 0;
  left: 0;
}

.files .folders img {
  width: 64px;
  height: 64px;
  transition-duration: 0.3s;
  margin: 15px 0;
}

.files .folders>div:hover img {
  transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
}

.files .folders p+div {
  border-top: 1px solid #eee;
}

/* end folders  */
/* start side  */
.files .side {
  min-width: 260px;
  height: fit-content;
}

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

  .files .side {
    width: 100%;
    order: -1;
  }

}

.files .side>div {
  padding: 10px;
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.files .side>div i {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  font-size: 16px;
}

.files .side>div:first-of-type i {
  background-color: rgb(0 117 255 / 20%);
}

.files .side>div:last-of-type i {
  background-color: rgb(245 158 11 / 20%);
}

.files .side>div:nth-of-type(3) i {
  background-color: rgb(244 67 54 / 20%);
}

.files .side>div:nth-of-type(2) i {
  background-color: rgb(34 197 94 / 20%);
}

.files .side a {
  background-color: var(--blue-color);
  font-size: 13px;
  padding: 10px 15px;
  margin: 15px auto 0;
  display: block;
  width: fit-content;
  transition-duration: 0.3s;
}

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

.files .side a:hover i {
  animation: up-and-down  infinite 0.8s;
  -webkit-animation: up-and-down  infinite 0.8s;
}

.files .side a i {
  margin-right: 10px;

}

/* end side  */

/* end files  */
/* start plans  */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(400px,1fr));
  margin:20px;
  gap: 20px;
}
@media (max-width : 767px) {
  .plans {
    grid-template-columns: minmax(250px,1fr);
    margin:10px;
    gap: 10px;
  }
}
.plans .plan:first-of-type > div:first-child {
  outline: 3px solid var(--green-color);
  border: 3px solid white;
}
.plans .plan:nth-of-type(2) > div:first-child {
  outline: 3px solid var(--blue-color);
  border: 3px solid white;
}
.plans .plan:last-of-type > div:first-child {
  outline: 3px solid var(--orange-color);
  border: 3px solid white;
}
.plans .plan h2 {
  font-size: 24px;
}
.plans .plan h2 + div {
  font-size: 40px;
  width: fit-content;
  margin: auto;
}
.plans .plan h2 + div span {
  position: absolute;
  font-size: 25px;
  left: -20px;
  top: 0;
}
.plans .plan > span {
  margin: auto;
  display: block;
}
.plans ul li {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.plans ul li .yes {
  color: var(--green-color);
  font-size: 18px;
}
.plans ul li .no {
  color: var(--red-color);
  font-size: 18px;
}
.plans ul li i:last-child {
  color: var(--grey-color);
}
.plans ul li span {
  flex: 1;
  margin-left: 5px;
}
/* end plans  */



/*start animation */
@keyframes blinking {
  100% {
    background-color: white;
  }
}

@keyframes up-and-down {
  50% {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
  }
20% {
  
}
  100% ,0%{
    transform: translateY(1px);
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
}

}

/*end animation */