/* Start Global Ruls */
:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
    --main-transition: 0.3s;
  }
* {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
}
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-track {
  background-color: white;
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--blue-alt-color);
}
/* End Global Ruls */

/* Start Sidebar */
.page {
    background-color: #f1f5f9;
    min-height: 100vh;
}
.sidebar {
    width: 250px;
    box-shadow: 0 0 10px #ddd;
  }
.sidebar > h3 {
    margin-bottom: 50px;
  }
.sidebar > h3::before,
.sidebar > h3::after {
    content: "";
    background-color: black;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
  }
.sidebar > h3::before {
    width: 80px;
    height: 3px;
    bottom: -20px;
  }
.sidebar > h3::after {
    bottom: -29px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 4px solid white;
  }
.sidebar ul li a {
    transition: var(--main-transition);
    margin-bottom: 5px;
  }
.sidebar ul li a:hover,
.sidebar ul li a.active {
    background-color: #f6f6f6;
  }
.sidebar ul li a span {
    font-size: 14px;
    margin-left: 10px;
  }
@media (max-width: 767px) {
    .sidebar {
      width: 58px;
      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;
    }
  }
/* End Sidebar */

/* Start Content */
.content {
  overflow: hidden;
}
.head .search::before {
  font-family: var(--fa-style-family-classic);
  content: "\f002";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--grey-color);
}
.head .search input {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-left: 5px;
  padding-left: 30px;
  width: 160px;
  transition: width var(--main-transition);
}
.head .search input:focus {
  width: 200px;
}
.head .search input:focus::placeholder {
  opacity: 0;
}
.head .icons .notification::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--red-color);
  border-radius: 50%;
  right: -5px;
  top: -5px;
}
.head .icons img {
  width: 32px;
  height: 32px;
  margin-left: 15px;
}
.page h1 {
  margin: 20px 20px 40px;
}
.page h1::before,
.page h1::after {
  content: "";
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.page h1::before {
  background-color: white;
  width: 120px;
}
.page h1::after {
  background-color: black;
  width: 40px;
}
.wrapper {
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .wrapper {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
/* End Content */

/* Start Welcome Widget */
.welcome {
  overflow: hidden;
}
.wrapper > div:hover h2 {
  color: var(--blue-alt-color);
}
.welcome .intro img {
  width: 200px;
  margin-bottom: -10px;
}
.welcome .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid white;
  padding: 2px;
  box-shadow: 0 0 5px #ddd;
  margin-left: 20px;
  margin-top: -32px;
}
.welcome .body {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}
.welcome .body > div {
  flex: 1;
}
.welcome .visit {
  margin: 0 15px 15px auto;
  transition: var(--main-transition);
}
.welcome .visit:hover {
  background-color: var(--blue-alt-color);
}
@media (max-width: 767px) {
  .welcome .intro {
    padding-bottom: 30px;
  }
  .welcome .avatar {
    margin-left: 0;
  }
  .welcome .body > div:not(:last-child) {
    margin-bottom: 20px;
  }
}
/* End Welcome Widget */

/* Satrt Quick Draft Widget */
.quick-draft textarea {
  resize: none;
  height: 180px;
}
.quick-draft .save {
  margin-left: auto;
  cursor: pointer;
  transition: var(--main-transition);
}
.quick-draft .save:hover {
  background-color: var(--blue-alt-color);
}
/* End Quick Draft Widget */

/* Start Targets */
.targets .target-row .icon {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}
.targets .details {
  flex: 1;
}
.targets .details .progress {
  height: 4px;
}
.targets .details .progress > span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.targets .details .progress > span span {
  position: absolute;
  bottom: 16px;
  right: -16px;
  color: white;
  padding: 2px 5px;
  border-radius: 6px;
  font-size: 13px;
}
.targets .details .progress > span span::after {
  content: "";
  border-color: transparent;
  border-width: 5px;
  border-style: solid;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.targets .details .progress > .blue span::after {
  border-top-color: var(--blue-color);
}
.targets .details .progress > .orange span::after {
  border-top-color: var(--orange-color);
}
.targets .details .progress > .green span::after {
  border-top-color: var(--green-color);
}
.blue .icon,
.blue .progress {
  background-color: rgb(0 117 255 / 20%);
}
.orange .icon,
.orange .progress {
  background-color: rgb(245 158 11 / 20%);
}
.green .icon,
.green .progress {
  background-color: rgb(34 197 94 / 20%);
}
/* End Targets */

/* Start Ticket Wedgit */
.tickets .box {
  border: 1px solid #ccc;
  width: calc(50% - 10px);
  transition: var(--main-transition);
  box-shadow: 0 2px 3px rgb(0 0 0 / 3%);
}
.tickets .box:hover {
  transform: translatey(-4px);
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
}
@media (max-width: 767px) {
  .tickets .box {
    width: 100%;
  }
}
/* End Ticket Wedgit */

/* Start Latest News */
.latest-news .news-row:not(:last-of-type) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.latest-news .news-row img {
  width: 100px;
  border-radius: 6px;
  margin-right: 15px;
}
.latest-news .info {
  flex-grow: 1;
}
.latest-news .info h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .latest-news .news-row {
    display: block;
  }
  .latest-news .news-row .label {
    width: fit-content;
    margin: 10px auto;
  }
}
/* End Latest News */

/* Start Tasks */
.tasks .task-row:not(:last-of-type) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.tasks .info {
  flex-grow: 1;
}
.tasks .done {
  opacity: 0.3;
}
.tasks .done h3,
.tasks .done p {
  text-decoration: line-through;
}
.tasks .delete {
  cursor: pointer;
  transition: var(--main-transition);
}
.tasks .delete:hover {
  transform: translateY(-2px);
}
.tasks .delete:hover {
  color: var(--red-color);
}
/* End Tasks */

/* Start Latest Uploads */
.latest-uploads ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.latest-uploads ul li img {
  width: 40px;
  height: 40px;
}
/* End Latest Uploads */

/* Start Last Project*/
.last-project ul::before {
  content: "";
  position: absolute;
  left: 11px;
  height: 100%;
  width: 2px;
  background-color: var(--blue-color);
}
.last-project ul li::before {
 content: "";
  margin-right: 15px;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background-color: white;
  border: 2px solid white;
  outline: 2px solid var(--blue-color);
  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;
}
.last-project .launch-icon {
  position: absolute;
  width: 160px;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}
/* End Last Project*/

/* Start Reminders */
.reminders ul li .key {
  width: 15px;
  height: 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);
}

/* End Reminders */

/* Start Latest Post */
.latest-post .top .avatar {
  width: 48px;
  height: 48px;
}
.latest-post .post-content {
  text-transform: capitalize;
  line-height: 1.8;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  min-height: 140px;
}
/* End Latest Post */

/* Start Social Media */
.social-media .box {
  padding-left: 70px;
}
.social-media .box i {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  transition: var(--main-transition);
}
.social-media .box i:hover {
  transform: 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: #1877f2;
}
.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(10 102 194 / 20%);
  color: #0a66c2;
}
.social-media .linkedin i,
.social-media .linkedin a {
  background-color: #0a66c2;
}
/* End Social Media */

/* Start Projects Table */
.projects .responsive-table {
  overflow-x: auto;
}
.projects table {
  min-width: 1000px;
  border-spacing: 0;
}
.projects thead td {
  background-color: #eee;
  font-weight: bold;
  transition: var(--main-transition);
}
.projects table td {
  padding: 15px;
}
.projects tbody td {
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
}
.projects table tbody tr td:last-child {
  border-right: 1px solid #eee;
}
.projects tbody tr:hover td {
  background-color: #faf7f7;
}
.projects table img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 2px;
  background-color: white;
}
.projects table img:not(:first-child) {
  margin-left: -20px;
}
.projects table .label {
  font-size: 13px;
}
/* End Projects Table */
/* Start Settings */
.settings-page {
  grid-template-columns: repeat(auto-fill, minmax(500px,1fr));
}
@media (max-width: 767px) {
  .settings-page {
    grid-template-columns: minmax(100px,1fr);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.settings-page > div {
  box-shadow: 0 2px 3px rgb(0 0 0 / 7%);
}
.settings-page div h2 {
  transition: var(--main-transition);

}
.settings-page div:hover h2 {
  color: var(--blue-color);
}
.settings-page .close-message {
  border: 1px solid #ccc;
  resize: none;
  height: 150px;
}
.settings-page .email {
  display: inline-flex;
  width: calc(100% - 80px);
}
.settings-page .sec-box {
  padding-bottom: 15px;
}
.settings-page .sec-box:not(:last-of-type) {
  border-bottom: 1px solid #eee;
}
.settings-page .sec-box .button {
  transition: var(--main-transition);
}
.settings-page .sec-box .button:hover {
  background-color: var(--blue-alt-color);
}
.settings-page .social-boxes i {
  width: 40px;
  height: 40px;
  background-color: #f6f6f6;
  border: 1px solid #DDD;
  border-right: none;
  border-radius: 6px 0px 0px 6px;
  transition: var(--main-transition);
}
.settings-page .social-boxes input {
  height: 40px;
  padding-left: 10px;
  border: 1px solid #ddd;
  background-color: #f6f6f6;
  border-radius: 0 6px 6px 0;
}
.settings-page .social-boxes > div:focus-within .twitter {
  color: #1da1f2;
}
.settings-page .social-boxes > div:focus-within .facebook {
  color: #1877f2;
}
.settings-page .social-boxes > div:focus-within .linkedin {
  color: #0a66c2;
}
.settings-page .social-boxes > div:focus-within .youtube {
  color: #ff0000;
}
.Widgets-control .control input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
}
.Widgets-control .control label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.Widgets-control .control label:hover::before {
  border-color: var(--blue-alt-color);
}
.Widgets-control .control label::before,
.Widgets-control .control label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  border-radius: 4px; 
}
.Widgets-control .control label::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--grey-color);
}
.Widgets-control .control label::after {
  font-family: var(--fa-style-family-classic);
  content: "\f00c";
  font-weight: 900;
  background-color: var(--blue-color);
  color: white;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--main-transition);
  transform: scale(0) rotate(360deg);
}
.Widgets-control .control input[type="checkbox"]:checked + label::after {
  transform: scale(1);
}
.backup-control input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
}
.backup-control .date label {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.backup-control .date label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--grey-color);
  margin-top: -11px;
}
.backup-control .date label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  background-color: var(--blue-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: var(--main-transition);
  transform: scale(0);
}
.backup-control .date input[type="radio"]:checked + label::before {
  border-color: var(--blue-color);
}
.backup-control .date input[type="radio"]:checked + label::after {
  transform: scale(1);
}
.backup-control .servers {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .backup-control .servers {
    flex-wrap: wrap;
  }
}
.backup-control .servers .server {
  position: relative;
  border: 2px solid #eee; 
  transition: var(--main-transition);
}
.backup-control .servers .server label {
  cursor: pointer;
}
.backup-control .servers input[type="radio"]:checked + .server {
  border-color: var(--blue-color);
  color: var(--blue-color);
}
.toggle-checkbox {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.toggle-switch {
  position: relative;
  width: 78px;
  height: 32px;
  background-color: #ccc;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--main-transition);
}
.toggle-switch::before {
  font-family: var(--fa-style-family-classic);
  content: "\f00d";
  font-weight: 900;
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: var(--main-transition);
}
.toggle-checkbox:checked +.toggle-switch {
  background-color: var(--blue-color);
}
.toggle-checkbox:checked + .toggle-switch::before {
  content: "\f00c";
  left: 50px;
  color: var(--blue-color);
}
.settings-page :disabled {
  cursor: no-drop;
  background-color: #F0F4F8;
  color: #BBB;
}
/* End Settings */
/* Start Profile Page */
@media (max-width: 767px) {
  .profile-page .overview {
    flex-direction: column;
  }
}
.profile-page .avatar-box {
  width: 300px;
}
@media (min-width: 768px) {
  .profile-page .avatar-box {
    border-right: 1px solid #eee;
  }
}
.profile-page .avatar-box > img {
  width: 120px;
  height: 120px;
}
.profile-page .avatar-box .level {
  height: 6px;
  overflow: hidden;
  margin: auto;
  width: 70%;
}
.profile-page .avatar-box .level span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 6px;
  background-color: var(--blue-color);
}
.profile-page .info-box .box {
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  transition: var(--main-transition);
}
.profile-page .info-box .box:hover {
  background-color: #F9F9F9;
}
.profile-page .info-box .box > div {
  min-width: 250px;
  padding: 10px 0 0;
}
.profile-page .info-box .box h4 {
  font-weight: normal;
}
.profile-page .info-box .toggle-switch {
  height: 20px;
}
@media (max-width: 767px) {
  .profile-page .info-box .toggle-switch {
    margin: auto;
  } 
}
.profile-page .info-box .toggle-switch::before  {
  width: 12px;
  height: 12px;
  font-size: 8px;
}
.profile-page .info-box .toggle-checkbox:checked + .toggle-switch::before  {
  left: 62px;
}
@media (max-width: 767px) {
  .profile-page .other-data {
    flex-direction: column;
  }
}
.profile-page .skills-cards {
  flex-grow: 1;
}
.profile-page .skills-cards ul li {
  padding: 15px 0;
}
.profile-page .skills-cards ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.profile-page .skills-cards ul li span {
  padding: 4px 10px;
  background-color: #eee;
  border-radius: 6px;
  font-size: 14px;
  display: inline-flex;
}
.profile-page .skills-cards ul li span:not(:last-child) {
  margin-right: 5px;
}
.profile-page .activities {
  flex-grow: 2;
}
.profile-page .activity:not(:last-of-type) {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.profile-page .activity img {
  width: 64px;
  height: 64px;
  margin-right: 10px;
}
@media(min-width: 768px) {
   .profile-page .activity .date {
      margin-left: auto;
      text-align: right;
  }
}
@media(max-width: 767px) {
  .profile-page .activity {
    flex-direction: column;
    margin: auto;
  }
  .profile-page .activity img {
    margin-right: 0;
    margin-bottom: 15px;  
  }
  .profile-page .activity .date {
    margin-top: 15px;
  }
}
/* Start Projects Page */
.projects-page {
  grid-template-columns: repeat(auto-fill, minmax(500px , 1fr));
}
@media(max-width: 767px) {
  .projects-page {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
.projects-page .project {
  transition: 0.5s
}
.projects-page .project:hover {
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
  transform: translateY(-6px);
}
.projects-page .project .date {
  position: absolute;
  right: 10px;
  top: 10px;
}
.projects-page .project h4 {
  color: #282828;
  transition: var(--main-transition);
}
.projects-page .project:hover h4 {
  color: var(--blue-color);
}
.projects-page .project .team {
  position: relative;
  min-height: 80px;
}
.projects-page .project .team a {
  position: absolute;
  left: 0;
  bottom: 0;
}
.projects-page .project .team a:nth-child(2) {
  left: 25px;
}
.projects-page .project .team a:nth-child(3) {
  left: 50px;
}
.projects-page .project .team a:nth-child(4) {
  left: 75px;
}
.projects-page .project .team a:nth-child(5) {
  left: 100px;
}
.projects-page .project .team a:hover {
  z-index: 1000;
}
.projects-page .project .team img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
}
.projects-page .project .do {
  justify-content: flex-end;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #eee;
}
.projects-page .project .do span {
  padding: 3px 8px;
  margin-left: 5px;
  width: fit-content;
}
@media(max-width: 767px) {
  .projects-page .project .do {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.projects-page .project .info {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #eee;
}
@media(max-width: 767px) {
  .projects-page .project .info {
    flex-direction: column;
  }
}
.projects-page .project .prog {
  position: relative;
  height: 8px;
  width: 260px;
  top: 0;
  left: 0;
  border-radius: 6px;
}
@media(max-width: 767px) {
  .projects-page .project .prog {
    margin-bottom: 15px;
  }
}
.projects-page .project .prog span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 6px;
}
/* Start Courses Page */
.courses-page {
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
}
@media (max-width: 767px) {
  .courses-page {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
.courses-page .course {
  overflow: hidden;
  transition: var(--main-transition);
}
.courses-page .course:hover {
  transform: translateY(-5px);
}
.courses-page .course .cover {
  max-width: 100%;
}
.courses-page .course:hover .cover {
  opacity: 0.9;
}
.courses-page .course .instructor {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 2px solid white;
  transition: var(--main-transition);
}
.courses-page .course:hover .instructor {
  transform: scale(1.5);
}
.courses-page .course .description {
  line-height: 1.6;
}
.courses-page .course .info {
  border-top: 1px solid #eee;
  font-size: 13px;
}
.courses-page .course .info .title {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
.courses-page .course:hover .user {
  color: var(--blue-color);
}
.courses-page .course:hover .dollar {
  color: var(--green-color);
}
/* End Courses Page */
/* Start Friends Page */
.friends-page {
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
}
.friends-page .friend {
  transition: var(--main-transition);
}
.friends-page .friend:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 10px 0px var(--blue-color);
}
.friends-page .friend:hover .vip {
  opacity: 0.7;
}
.friends-page .contact {
  position: absolute;
  top: 10px;
  left: 10px;
}
.friends-page .contact i {
  background-color: #eee;
  padding: 10px;
  border-radius: 50%;
  color: var(--grey-color);
  font-size: 13px;
  cursor: pointer;
  transition: var(--main-transition);
}
.friends-page .contact i:hover {
  background-color: var(--blue-color);
  color: white;
}
.friends-page .friend:hover h4 {
  color: var(--blue-color);
}
.friends-page .icons {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.friends-page .icons i {
  margin-right: 5px;
}
.friends-page .icons .vip {
  position: absolute;
  color: #ffe834;;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.2;
}
.friends-page .info a {
  transition: var(--main-transition);
}
.friends-page .info a:first-child:hover {
  background-color: var(--blue-alt-color);
}
.friends-page .info a:last-child:hover{
  background-color: #cd3b30;
}
/* End Friends Page */
/* Start files Page */
.files-page {
  flex-direction: row-reverse;
  align-items: start;
}
@media (max-width: 767px) {
  .files-page {
    flex-direction: column;
    align-items: normal;
  }
}
.files-page .files-stats {
  min-width: 260px;
}
.files-page .files-stats .icon {
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
.files-page .files-stats .size {
  margin-left: auto;
}
.files-page .files-stats .blue {
  background-color: rgb(0 117 255 / 20%);
}
.files-page .files-stats .green {
  background-color: rgb(34 197 94 / 20%);
}
.files-page .files-stats .red {
  background-color: rgb(255 0 0 / 20%);
}
.files-page .files-stats .orange {
  background-color: rgb(245 158 11 / 20%);
}
.files-page .files-stats .uploud {
  margin: 15px auto 0;
  padding: 10px 15px;
}
.files-page .files-stats .uploud:hover {
  background-color: var(--blue-alt-color);
}
.files-page .files-stats .uploud:hover i {
  animation: go-up 0.8s infinite;
}
.files-page .files-content {
  flex: 1;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
}
.files-page .files-content .file {
  transition: var(--main-transition);
}
.files-page .files-content .file div:nth-of-type(2) {
  transition: var(--main-transition);
}
.files-page .files-content .file:hover {
  transform: translateY(-5px);
}
.files-page .files-content .file:hover div:nth-of-type(2) {
  color: var(--blue-color);
  font-weight: bold;
}
.files-page .files-content i {
  cursor: pointer;
}
.files-page .files-content i:hover {
  color: var(--green-color);
}
.files-page .files-content img {
  width: 64px;
  height: 64px;
  transition: var(--main-transition);
}
.files-page .files-content .file:hover img {  
  transform: rotate(5deg);
}
.files-page .files-content .info {
  border-top: 1px solid #eee;
}
/* End files Page */
/* Start Plans Page */
.plans-page {
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}
@media (max-width: 767px) {
  .plans-page {
    grid-template-columns: minmax(250px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
.plans-page .plan {
  position: relative;
}
.plans-page .plan::before,
.plans-page .plan::after
 {
  content: "";
  position: absolute;
  height: 5px;
  width: 0;
  bottom: 0;
  transition: 0.5s;
}
.plans-page .plan.green:hover::before,
.plans-page .plan.green:hover::after {
  width: 50%;
}
.plans-page .plan.green::before{
  left: 16px;
  background-color: var(--green-color);
}
.plans-page .plan::after {
  right: 16px;
  background-color: var(--green-color);
}
.plans-page .plan.blue:hover::before,
.plans-page .plan.blue:hover::after {
  width: 50%;
}
.plans-page .plan.blue::before{
  left: 16px;
  background-color: var(--blue-color);
}
.plans-page .plan.blue::after {
  right: 16px;
  background-color: var(--blue-color);
}
.plans-page .plan.orange:hover::before,
.plans-page .plan.orange:hover::after {
  width: 50%;
}
.plans-page .plan.orange::before{
  left: 16px;
  background-color: var(--orange-color);
}
.plans-page .plan.orange::after {
  right: 16px;
  background-color: var(--orange-color);
}
.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;
  top: 0;
  font-size: 25px;
}
.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 .yes {
  color: var(--green-color);
}
.plans-page .plan ul li i:not(.yes,.help) {
  color: var(--red-color);
}
.plans-page .plan ul li i:first-child {
  font-size: 18px;
  margin-right: 5px;
}
.plans-page .plan ul li .help {
  color: var(--grey-color);
  margin-left: auto;
  cursor: pointer;
}
.plans-page .plan a {
  transition: var(--main-transition);
}
.plans-page .plan.green a:hover {
  background-color: #1ca14d;
}
.plans-page .plan.blue a:hover {
  background-color: var(--blue-alt-color);
}
/* End Plans Page */
/* Start Animation */
@keyframes change-color {
  from {
    background-color: var(--blue-color);
  }
  to {
    background-color: white;
  }
}
@keyframes go-up {
  0% ,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
/* End Animation */