:root {
  --blue-color: #0075ff;
  --blue-alt-color: #0d69d5;
  --orange-color: #f59e0b;
  --green-color: #22c55e;
  --red-color: #f44336;
  --grey-color: #888;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Open Sans',sans-serif;
}
*:focus{
    outline: none;
}
a{
    text-decoration: none;
    display: block
}
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);
}
.page{
    min-height: 300vh;
      background-color: #f1f5f9;

}

/* sidbar */
.sidebar{
width: 250px;
/* height: 100vh; */
box-shadow: 0 0 10px #ddd;}

.sidebar > h3{
  margin-bottom: 50px;

}
.sidebar > h3::before{
content: "";
background-color: black;
width: 100px;
height: 2px;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
position: absolute;
}
.sidebar > h3::after{
content: "";
position: absolute;
bottom: -29px;
height: 12px;
width: 12px;
left: 50%;
transform: translateX(-50%);
background-color: black;
border: 4px solid white;
border-radius: 50%;
}

.sidebar ul li a {
    transition: 0.3s;
    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;
  }
}

.content{
overflow: hidden;
}
.head{
padding: 25px;
}
.head .search::before{
  font-family: "Font Awesome 6 Free";
  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 0.3s;
}
.head .search input:focus{
  width: 200px;

}
.head .search input:focus::placeholder{
  opacity: 0;
}
/* .icons{
    justify-content: flex-end;
} */

.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;
}

h1{
margin: 20px 20px 40px;
}
h1::before,h1::after{
  position: absolute;
  content: "";
  left: 0;
  height: 3px;
  bottom: -10px;
}
h1::before{
  width: 140px;
  background-color: white;
}
h1::after{
  width: 60px;
  background-color: black;
}
.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;
}
}

/* start widget */
.welcome{
  overflow: hidden;
}
.welcome .intro{
  background-color: #eee;
}
.welcome .intro img{
  width: 170px;
  margin-bottom: -10px;
}
.welcome .avatar{
position: absolute;
width: 64px;
height: 64px;
border: 2px solid white;
border-radius: 50%;
padding: 2px;
box-shadow:  0 0 5px #ddd;
margin-left: 20px;
margin-top: -32px;
}

.welcome .body{
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px;
  /* justify-content: space-around; */
}
.welcome .body > div{
  flex: 1;
}
.welcome .visit{
  margin: 0 15px 15px auto;

  transition: 0.3s;
}
.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 widget */
/* start Quick draft */
.quick-draft{
  overflow: hidden;

}

.quick-draft textarea{
  height: 300px;
}
.quick-draft .save{
  margin-left: auto;
  transition: 0.3s;
  cursor: pointer;
}
.quick-draft .save:hover{
  background-color: var(--blue-alt-color);
}
/* End Quick draft */
/* start target */
.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;
  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,
.greem .progress{
  background-color:rgb(34 197 94 /20%) ;
}
/* End target */
/* start tickets */
.tickets .box{
  width: calc(50% - 10px);
  border: 1px solid #CCC;
}
@media (max-width : 767px){
.tickets .box{
width: 100%;
}
}
/* End tickets */
/* start lastest  news */

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

}
.lastest-news .news .box {
  width: calc(100% - 10px);
}
.lastest-news  img{
  width: 100px;
  /* height:60px; */
  /* border: 1px solid white; */
  border-radius: 6px;
  margin-right: 15px;
  
}
.lastest-news .info{
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
.lastest-news .info h2{
margin: 0 0 6px;
font-size: 16px;
}

@media (max-width : 767px){
.lastest-news .news{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.lastest-news .label {
  margin-top:15px ;
}
}

/* End lastest  news */
/* start last tasks */
.lastest-tasks .task:not(:last-of-type){
    margin-bottom :15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.lastest-tasks .info{
  flex-grow: 1;
}
.lastest-tasks .done{
  opacity: 0.3;
}
.lastest-tasks .done h3,
.lastest-tasks .done p{
text-decoration: line-through;
}
.lastest-tasks .delete{
  cursor: pointer;
  transition: 0.3s;
}
.lastest-tasks .delete:hover{
  color: red;
}
/* End last tasks */
/* start uploads */

.upload .info{
  flex-grow: 1;
}
.upload .img{
  width: 40px;
  height: 40px;
  margin: 0px 10px;
}

.uploads .upload:not(:last-of-type){
    margin-bottom :10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
/* End uploads */

/* start last project progress */


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

.last-project ul li::before{
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
  outline: 2px solid var(--blue-color);
  background-color: white;
  display: block;
  margin-right: 20px;
  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.2;
}
@keyframes change-color {
  from{
    background-color: var(--blue-color);
  }
   to{
    background-color: white;
  }
}

/* End last project progress */
/* start reminders */
.reminders .box{
padding-left: 20px;
position: relative;
margin-left: 40px;
}
.reminders .blue{
  border-left: 3px solid var(--blue-color);
}
.reminders .orange{
  border-left: 3px solid var(--orange-color);

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

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

}
.reminders .box::before{
  position: absolute;
  content: "";
  left: -40px;
  top: 14px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.reminders .green::before{
    border: 2px solid var(--green-color);
  background-color: var(--green-color);
}
.reminders .blue::before{
    border: 2px solid var(--blue-color);
  background-color: var(--blue-color);
}
.reminders .orange::before{
    border: 2px solid var(--orange-color);
  background-color: var(--orange-color);
}
.reminders .red::before{
    border: 2px solid var(--red-color);
  background-color: var(--red-color);
}
/* End reminders */

/* start lastest post */

.post-content {
  text-transform: capitalize;
  line-height: 1.8;
  min-height: 1.8;
}
.last-post .info img{
  width: 40px;
  height: 40px;
}
.last-post div:not(:last-child){
  border-bottom:  1px solid #eee;
}

/* End lastest post */
/* start social meadi */
.social-media .box{
 padding-left: 70px;
}
.social-media .box  i {
position: absolute;
left: 0;
top: 0;
width: 52px;
transition: 0.3s;
}
.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 meadi */
/* start projects table */

.projects h2{
  letter-spacing: -1.7px;
}
.projects  .responsive-table{
  overflow-x: auto;
}
.projects  .responsive-table table{
    border-collapse: collapse;
    min-width: 1000px;
}
.projects  .responsive-table thead{
    background-color: #eee;
    font-weight: bold;
}
.projects .responsive-table  td{
  padding: 15px;
  border: 1px solid #eee;
}
.projects .responsive-table tbody  tr{
    transition: 0.3s;

}
.projects .responsive-table tbody tr:hover{
  background-color: #faf7f7;
    transition: 0.3s;

}
.projects .responsive-table tbody img{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
}
.projects .responsive-table tbody img:not(:first-child){
margin-left: -20px;
}


/* End projects table */
/* *****************start Setings************** */
.toggle-checkbox{
  -webkit-appearance:none ;
  appearance: none;

}
.toggle-switch{
  background-color: #ccc;
  width: 78px;
  height: 32px;
  border-radius: 16px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.toggle-switch::before{
  font-family: var(--fa-style-family-classic);
  content: "\f00d";
  font-weight: 900;
  background-color: white;
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eee;
  transition: 0.3s
}
.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;
}
/* Start Site Control */
.settings-page{
  grid-template-columns: repeat(auto-fill,minmax(450px, 1fr));
}
.settings-page textarea{
  height: 150px;
  border: 1px solid #ccc;
  resize: none;


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

/* End Site Control */
/* start General Info */
.general-info #email{
  width: calc(100% - 100px);
}
/* end General Info */
/* Start security  */
.security .box:not(:last-of-type){
border-bottom: 1px solid #eee;
}
/* End security  */

/* start Social Media */
.social-m div{
  background-color: #eee;
}
.social-m .box i{
width: 40px;
height: 40px;
background-color: #f6f6f6;
border: 1px solid #DDD;
border-right: none;
border-radius: 6px 0 0 6px;
transition: 0.3s;
}
.social-m input{
height: 40px;
background-color: #f6f6f6;
border: 1px solid #DDD;
padding-left: 15px;
border-radius: 0 6px 6px 0;

}

.social-m > div:focus-within i{
color: black;
}
/* End Social Media */
/* Start Widgets control */
.widgets input[type="checkbox"] {
-webkit-appearance:none ;
  appearance: none;}
.widgets  label{
padding-left :30px;
cursor: pointer;
position: relative;
}
.widgets  label::before{
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--grey-color);
  margin-top: -9px;
  border-radius: 4px;
  transition: 0.3s;
}
.widgets  label:hover::before{
  border-color: var(--blue-alt-color);
}
.widgets  label::after{
  position: absolute;
  font-family: var(--fa-style-family-classic);
  content: "\f00c";
  font-weight: 900;
  left: 0;
  top: 50%;
  margin-top: -9px;
  background-color: var(--blue-color);
  color: white;
  font-size: 12px;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0) rotate(360deg);
  border-radius: 4px;
  transition: 0.3s;

}
.widgets input[type="checkbox"]:checked +label::after{
  transform: scale(1);
  
}

/* End Widgets control */
/* **Start Backup Manager */
.backup input[type="radio"] {
-webkit-appearance:none ;
  appearance: none;
}

.backup  .control label{
padding-left :30px;
cursor: pointer;
position: relative;
}
.backup  .control label::before{
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--grey-color);
  margin-top: -11px;
  border-radius: 50%;
  transition: 0.3s;
}
.backup  .control label:hover::before{
  border-color: var(--blue-alt-color);
}
.backup  .control label::after{
  position: absolute;
  content: "";
  left: 5px;
  top: 5px;
  background-color: var(--blue-color);
  color: white;
  /* font-size: 12px; */
  width: 12px;
  height: 12px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  transform: scale(0) ;
  border-radius: 50%;
  transition: 0.3s;
  /* padding: 3px;
  outline: 2px solid var(--blue-color);
  border: 2px solid white; */

}
.backup  .controlinput[type="radio"]:checked +label::before{
  
  border-color:  var(--blue-color);

}
.backup .control input[type="radio"]:checked +label::after{
  transform: scale(1);

}

.backup .box div{
    border: 1px solid #ccc;
    width: calc((100% - 100px)/3);
    text-align: center;
    padding: 10px;

}
.backup  input[type ="radio"]{
 -webkit-appearance: none;
  appearance: none;
  }
  .backup .servers {
  border-top: 1px solid #EEE;
  padding-top: 20px;
  } 
   .backup .servers .server{
    border: 2px solid #EEE;
    position: relative;
    transition: 0.3s;
    margin-right: 20px;
  }
  @media (max-width : 767px){
      .backup .servers {
      flex-wrap: wrap;
      /* display: block; */
  }
  }
   .backup .servers .server label{
    cursor: pointer;
  }
   .backup .servers input[type= "radio"]:checked +.server{
      border-color:var(--blue-color) ;
      color: var(--blue-color);
  }

/* **End Backup Manager */

/* *****************End Setings************** */
/* *****************Start Profile************** */
.overview .avatar-box{
width: 300px;
}
@media (max-width:768px){
.overview{
  flex-direction: column;
} 
.overview .toggele{
      margin-left: calc(50% - 15px);
}
}
@media (min-width:768px){
.overview .avatar-box{
border-right: 1px solid #eee;
}

}
.overview .avatar-box img{
  width: 120px;
  height:120px;
}
.overview .avatar-box .level{
  height: 6px;
  overflow: hidden;
  margin: auto;
}
.overview .avatar-box .level span{
position: absolute;
left: 0;
top: 0;
height: 5px;
width: 100%;
margin-right: (50% - 15px);
}
.overview .info-box .box{
transition: 0.3s;
flex-wrap: wrap;
border-bottom: 1px solid #EEE;
}
.overview .info-box .box:hover{
background-color: #f9f9f9;
}
.overview .info-box .box > div{
min-width: 250px;
padding: 10px 0 0 ;
}
.overview .info-box .toggele{
  width: 30px;
max-width: 30px;
}
.overview .info-box .box h4{
font-weight: normal;
}

/********Start other data************** */
@media(max-width : 767px){
  .profile .other-data {
  flex-direction: column;
}
}
.profile .skills-card {
flex-grow: 1;
}
.profile .skills-card  ul li{
  padding:15px 0;
}
.profile .skills-card  ul li:not(:last-child){
  border-bottom: 1px solid #eee;
}
.profile .skills-card  ul li span{
  display: inline-flex;
  padding: 4px 10px;
  background-color: #eee;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 6px;
}

.profile .activities {
flex-grow: 2;
}
.profile .activities  img{
    width: 64px;
    height: 64px;
    margin-right: 10px;
    border-radius: 50%;
}
.profile .activities .activity:not(:last-child){
border-bottom: 1px solid #EEE;
padding-bottom: 20px;
margin-bottom: 20px;
}
.profile .activities .activity  .info{
  flex-grow: 1;
}

@media (max-width: 767px){
  .profile .activity{
    flex-direction: column;
  }
  .profile .activities  img{
    margin-bottom: 10px;
}
}
/********End other data************** */

/* *****************End Profile************** */
/* *****************Start Projects************** */
.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 .date {
  position: absolute;
  right: 10px;
  top: 10px;
}
.projects-page .project h4 {
  font-weight: normal;
}
.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: 2px solid white;
}
.projects-page .project .do {
  justify-content: flex-end;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .projects-page .project .do {
    flex-direction: column;
  }
}
.projects-page .project .do span {
  padding: 3px 8px;
  margin-left: 5px;
  width: fit-content;
}
@media (max-width: 767px) {
  .projects-page .project .do span:not(:last-child) {
    margin-bottom: 15px;
  }
}
.projects-page .project .info {
  border-top: 1px solid #eee;
  margin-top: 15px;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .projects-page .project .info {
    flex-direction: column;
  }
}
.projects-page .project .prog {
  height: 8px;
  width: 260px;
  position: relative;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .projects-page .project .prog {
    margin-bottom: 15px;
  }
}
.projects-page .project .prog span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 6px;
}/* *****************End Projects************** */
/* 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;
}
.courses-page .course .cover {
  max-width: 100%;
}
.courses-page .course .instructor {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  top: 20px;
  left: 20px;
  border: 2px solid white;
}
.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%);
  font-size: 13px;
}
/* End Courses Page */
/* Start Friends Page */
.friends-page {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media (max-width: 767px) {
  .friends-page {
    grid-template-columns: minmax(200px, 1fr);
    margin-left: 10px;
    margin-right: 10px;
    gap: 10px;
  }
}
.friends-page .contact {
  position: absolute;
  left: 10px;
  top: 10px;
}
.friends-page .contact i {
  background-color: #eee;
  padding: 10px;
  border-radius: 50%;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.friends-page .contact i:hover {
  background-color: var(--blue-color);
  color: white;
}
.friends-page .friend .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 .friend .icons i {
  margin-right: 5px;
}
.friends-page .info a{
  display: inline-flex;
}
.friends-page .friend .icons .vip {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.2;
}
/* End Friends Page */
/* Start Files Page */
.files-page {
  flex-direction: row-reverse;
  align-items: flex-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: 10px;
}
.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(244 67 54 / 20%);
}
.files-page .files-stats .orange {
  background-color: rgb(245 158 11 / 20%);
}
.files-page .files-stats .upload {
  margin: 15px auto 0;
  padding: 10px 15px;
  transition: 0.3s;
}
.files-page .files-stats .upload:hover {
  background-color: var(--blue-alt-color);
}
.files-page .files-stats .upload:hover i {
  animation: go-up 0.8s infinite;
}
@keyframes go-up {
0% ,100%{
  transform: translateY(0%);
}
50%{
  transform: translateY(-5px);
}
}
.files-page .files-content {
  flex: 1;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.files-page .files-content img {
  width: 64px;
  height: 64px;
  transition: 0.3s;
}
.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 .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;
}
/* End Plans Page */
