/* Start Variables */
:root{
    --blue-color: #0075ff;
    --blue-alt-color: #1c5ea8;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
    --section-background: #eee;
    --main-transition : 0.3s;
    --main-padding : 100px;
    --paragraph-color: #777;
}
/* End Variables */
/* Start Global Rules */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: "Inter" , sans-serif;
}
*:focus{
    outline: none;
}
ul{
    list-style: none;
    padding: 0;
}
a{
    text-decoration: none;
}
::-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 Rules */
.page{
    background-color: #f1f6f9;
}
/* Start Sidebar */
.sidebar{
    width: 250px;
    box-shadow: 0 0 10px #ddd;
}
.sidebar > h3{
    margin-bottom: 50px;
    padding-bottom: 15px;
}
.sidebar > h3::before,
.sidebar > h3::after{
    content: "";
    position: absolute;
    background-color: black;
    left: 50%;
}
.sidebar > h3::before{
    width: 70px;
    height: 2px;
    bottom: 0;   
    transform: translateX(-50%);
}
.sidebar > h3::after{
    width: 12px;
    height: 12px;
    border: 4px solid white;
    border-radius: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
}
.sidebar li a{
    transition: var(--main-transition);
    margin-bottom: 5px;
}
.sidebar li a.active,
.sidebar li a:hover{
    background-color: #f6f6f9;
}
.sidebar li a span{
    margin-left: 10px;
}
@media (max-width: 767px) {
    .sidebar{
        width: 60px;
        padding: 10px;
    }
    .sidebar > h3{
        font-size: 12px;
        margin-bottom: 10px;
    }
    .sidebar > h3::before,
    .sidebar > h3::after{
        display: none;
    }
    .sidebar li a span{
        display: none;
    }
}
/* End Sidebar */
/* Start Content */
.content{
    overflow: hidden;
}
.content .head .search::before{
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    content: "\f002";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--grey-color);
}
.content .head input{
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-left: 5px;
    padding-left: 30px;
    width: 160px;
    transition: width var(--main-transition);
}
.content .head input:focus{
    width: 200px;
}
.content .head input:focus::placeholder{
    opacity: 0;
}
.content .head .icons .notification::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--red-color);
    border-radius: 50%;
    right: -5px;
    top: -5px;
}
.content .head .icons img{
    width: 32px;
    height: 32px;
    margin-left: 10px;
    cursor: pointer;
}
.page h1{
    padding-bottom: 10px;
    margin: 20px 20px 40px;
    position: relative;
}
.page h1::before,
.page h1::after{
    content: "";
    width: 140px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.page h1::before{
    background-color: white;
}
.page h1::after{
    width: 40px;
    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 Welcome wedgit*/
.welcome{
    overflow: hidden;
}
.welcome .intro img{
    width: 120px;
    max-width: 100%;
    margin-bottom: -20px;
}
.welcome .avatar{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: 15px;
    margin-top: -32px;
    box-shadow: 0 0 5px #ddd;
}
.welcome .body{
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}
.welcome .body > div{
    flex: 1;
}
.welcome .visit{
    margin: 0 15px 15px auto;
    transition: var(--main-transition);
}
.welcome .body .visit:hover{
    background-color: var(--blue-alt-color);
}
@media (max-width: 767px) {
    .welcome .into{
        padding-bottom: 30px;
    }
    .welcome .avatar{
        margin-left: 0px;
    }
    .welcome .body > div:not(:last-child) {
        margin-bottom: 20px;
    }
}
/* End Welcome wedget*/
/* Start Quick Draft */
.quick-draft textarea{
    resize: none;
    min-height: 180px;
}
.quick-draft .save{
    margin-left: auto;
    transition: var(--main-transition);
}
.quick-draft .save:hover{
    background-color: var(--blue-alt-color);
}
/* End Quick Draft */
/* 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;
    bottom: 0;
    height: 100%;  
}
.targets .details .progress > span span{
    position: absolute;
    right: -17px;
    bottom: 16px;
    color: white;
    padding: 2px 5px;
    font-size: 12px;
    border-radius: 6px;
}
.targets .details .progress > span span:after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border-style: solid;
    border-width: 5px;
}
.targets .details .progress > .blue span:after{
    border-color: var(--blue-color) transparent transparent;
}
.targets .details .progress > .orange span:after{
    border-color: var(--orange-color) transparent transparent;
}
.targets .details .progress > .green span:after{
    border-color: var(--green-color) transparent transparent;
}
.blue .icon,
.blue .progress{
    background-color:  #0077ff70;
}
.orange .icon,
.orange .progress{
    background-color:  rgba(254, 158, 11, 0.2);
}
.green .icon,
.green .progress{
    background-color:  rgba(43, 197, 94, 0.2);
}
/* End Targets */
/* Start Tickets */
.tickets .box{
    border: 1px solid #CCC;
    width: calc(50% - 10px);
}
@media (max-width: 767px) {
    .tickets .box{
        width: 100%;
    }
}
/* End Tickets */
/* Start Latest */
.latest .box:not(:last-of-type){
    border-bottom: 1px solid #EEE;
    margin-bottom: 10px;
    padding: 10px 0 20px;
}
.latest .box img{
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}
.latest .box span{
    font-size: 12px;
    padding: 3px 5px;
    margin-left: auto;
    width: 90px;
    text-align: center;
}
@media (max-width: 767px) {
    .latest .box span{
        width: fit-content;
        margin: 10px auto;
    }
}
/* End Latest */
/* Start Latest Tasks */
.latest-task .box:not(:last-of-type){
    border-bottom: 1px solid #EEE;
    margin-bottom: 10px;
    padding: 10px 0 20px;
}
.latest-task .done{
    opacity: 0.4; 
}
.latest-task .done h3,
.latest-task .done p{
    text-decoration: line-through;
}
.latest-task .delete{
    transition: var(--main-transition);
    cursor: pointer;
}
.latest-task .delete:hover{
    color: var(--red-color);
}
/* End Latest Tasks */
/* Start uploads */
.uploads .box:not(:last-of-type){
    border-bottom: 1px solid #EEE;
    margin-bottom: 10px;
    padding: 5px 0 10px;
}
.uploads .box img{
    width: 40px;
    margin-right: 15px;
}
@media (max-width: 767px){
    .uploads .box .info h3{
        font-size: 14px;
    }
    .uploads .box .info p{
        font-size: 13px;
    }
    .uploads .box span{
        padding: 3px 6px;
        font-size: 10px;
    }
}
/* End uploads */
/* Start project */
.project{
    background-image: url("../Images/rocket.png");
    background-position: calc(100% - 20px) calc(100% - 40px);
    background-repeat: no-repeat;
    background-size: 160px 160px;
    position: relative;
}
@media (max-width: 600px) {
  .project {
    background-image: none;
  }
}
.project::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
}
.project .box span{
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--blue-color);
    margin-right: 15px;
    border-radius: 50%;
    box-shadow:
    0 0 0 2px white,       
    0 0 0 4px var(--blue-color); 
    position: relative;
}
.project .box:not(:last-of-type) span::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 50px;
    background-color: var(--blue-color);
    left: 50%;
    transform: translateX(-50%);
    top: 110%;
}
.project .box .load{
    animation: ligthing 2s linear infinite;
}
.project .box .empty{
    background-color: white;
}
/* End project */
/* Start Reminders */
.reminder .box .info{
    border-left: 2px solid var(--blue-color);
    padding-left: 10px;
}
.reminder .box span{
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--blue-color);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}
.reminder .box .info.green{
    border-color: var(--green-color);
}
.reminder .box .info.orange{
    border-color: var(--orange-color);
}
.reminder .box .info.red{
    border-color: var(--red-color);
}
.reminder .box span.green{
    background-color: var(--green-color);
}
.reminder .box span.orange{
    background-color: var(--orange-color);
}
.reminder .box span.red{
    background-color: var(--red-color);
}
/* End Reminders */
/* Start Post */
.post .head img{
    width: 50px;
    margin-right: 15px;
}
.post .foot i span{
    margin-left: 8px;
    color: gray;
}
.post .foot i.heart{
    color: var(--red-color);
    cursor: pointer;
}
.post .foot i.comments{
    color: var(--blue-color);
    cursor: pointer;
}
@media (max-width:767px){
    .post .head .info h3,
    .post .body p {
        font-size: 14px;
    }
    .post .head .info p{
        font-size: 12px;
    }
    .post .foot i{
        font-size: 13px;
    }
}
/* End Post */
/* Start Social */
.social .box{
    padding-right: 15px;
}
.social .box > i{
    background-color: var(--blue-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: var(--main-transition);
}
.social .box > i:hover{
    transform: rotate(5deg);
}
.social .box.face{
    background-color: rgba(43, 106, 243, 0.301);
}
.social .box.utube{
    background-color: rgba(255, 58, 58, 0.479);
}
.social .box.utube >i ,
.social .box.utube a{
    background-color: red;
}
.social .box.linkin{
    background-color: rgba(81, 124, 243, 0.39);
}
@media (max-width:767px) {
    .social .box {
        padding-right: 5px;
    }
    .social .box p {
        font-size: 14px;
    }
    .social .box a {
        font-size: 12px;
    }
    .social .box > i {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
/* End Social */
/* Start Project Table */
.project-table .responsive-table{
    overflow-x: auto;
}
.project-table .responsive-table table{
    width: 100%;
    min-width: 1000px;
    border-spacing: 0;
}
.project-table table thead td{
    background-color: var(--section-background);
    font-weight: bold;
}
.project-table table td{
    padding: 15px;
}
.project-table table tbody td{
    border-left: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}
.project-table table tbody tr td:last-child{
    border-right: 1px solid #EEE;
}
.project-table tbody img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 2px;
    background-color: white;
}
.project-table tbody img:not(:first-child){
    margin-left: -15px;
}
/* End Project Table */
/* End Content */
/* Start Setting */
.toggle-checkbox{
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
.toggle-switch{
    width: 78px;
    height: 32px;
    background-color: #eee;
    border-radius: 15px;
    position: relative;
    transition: var(--main-transition);
    cursor: pointer;
}
.toggle-switch::before{
    content: "\f00d";
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    transition: var(--main-transition);
    color: #aaa;
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toggle-checkbox:checked + .toggle-switch{
    background-color: var(--blue-color);
}
.toggle-checkbox:checked + .toggle-switch::before{
    content: "\f00c";
    color: var(--blue-color);
    left: 50px;
}
/* Start Control Box */
.setting{
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .setting{
        grid-template-columns: minmax(200px, 1fr);
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
.control textarea{
    width: 100%;
    min-height: 120px;
    resize: none;
    padding: 10px;
    border: 1px solid #ccc;
    caret-color: #333;
}
.control textarea::placeholder{
    color: var(--grey-color);
}
/* End Control Box */
/* Start General */
.general input[type="text"]{
    border: 1px solid #ccc;
    padding: 8px;
}
.general .email input[type="text"]{
    cursor: not-allowed;
    background-color: #f5f5f5;
}
/* End General */
/* Start security */
.security button{
    transition: var(--main-transition);
}
@media (max-width: 767px) {
    .security button{
        width: 100px;
        font-size: 12px;
        padding: 5px 6px;
    }
}
.security > div button:hover{
    background-color: var(--blue-alt-color);
}
.security .gray:hover{
    background-color: #ddd;
}
/* End security */
/* Start Social-info */
.social-info i{
    width: 40px;
    height: 40px;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    transition: var(--main-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-info input{
    height: 40px;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    border-radius: 0 6px 6px 0;
    padding-left: 10px;
}
.box:focus-within i {
    color: #1877f2;
}
.box:focus-within i.linkedin{
    color: var(--blue-alt-color);
}
.box:focus-within i.youtube{
    color: var(--red-color);
}
/* End Social-info */
/* Start Wedgits */
.wedgits .control input[type="checkbox"]{
    -webkit-appearance: none;
    appearance: none;
}
.wedgits .control label{
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}
.wedgits .control label::before,
.wedgits .control label::after{
    content: "";
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
}
.wedgits .control label::before{
    width: 18px;
    height: 18px;
    transition: var(--main-transition);
    border: 2px solid var(--grey-color);
}
.wedgits .control label:hover::before{
    border-color: var(--blue-alt-color);
}
.wedgits .control label::after{
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    font-size: 12px;
    background-color: var(--blue-color);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transform: scale(0) rotate(360deg);
    transition: var(--main-transition);
}
.wedgits .control input[type="checkbox"]:checked + label::after{
    transform: scale(1);
}
/* End Wedgits */
/* Start Backup */
.backup input[type="radio"]{
    -webkit-appearance: none;
    appearance: none;
}
.backup .control label{
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}
.backup .control label::before{
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    margin-top: -11px;
    border: 2px solid var(--grey-color);
    top: 50%;
    left: 0;
    border-radius: 50%;
    transition: var(--main-transition);
}
.backup .control label::after{
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--blue-color);
    top: 4px;
    left: 5px;
    border-radius: 50%;
    transform: scale(0);
    transition: var(--main-transition);
}
.backup .control input[type="radio"]:checked + label::before{
    border-color: var(--blue-color);
}
.backup .control input[type="radio"]:checked + label::after{
    transform: scale(1);
}
.backup .servers{
    border-top: 1px solid #EEE;
    padding-top: 20px;
    position: relative;
}
@media (max-width: 767px) {
    .backup .servers{
        flex-wrap: wrap;
    }
}
.backup .servers .server{
    border: 2px solid #EEE;
    position: relative;
}
.backup .mid-serv{
    margin-left: 10px;
    margin-right: 10px;
}
.backup .servers .server label{
    cursor: pointer;
}
.backup .servers input[type="radio"]:checked + .server{
    border-color: var(--blue-color);
    color: var(--blue-color);
}
/* End Backup */
/* End Setting */
/* Start Profile section*/
@media (max-width: 767px) {
    .profile .overview {
        flex-direction: column;
    }
}
.profile .overview .avatar{
    width: 300px;
}
@media (min-width: 767px){
    .profile .overview .avatar{
        border-right: 1px solid #eee;
    }
}
.profile .overview .avatar > img{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: white;
    margin-bottom: 10px;
}
.profile .overview .avatar .progress{
    width: 70%;
    height: 6px;
    overflow: hidden;
    margin: auto;
}
.profile .overview .avatar .progress span{
    position: absolute;
    height: 6px;
    background-color: var(--blue-color);
    top: 0;
    left: 0;
    border-radius: 10px;
}
.general-info .box{
    flex-wrap: wrap; /* So the h4 and the info after it can be coulmn notice we give h4 f-width */
    border-bottom: 1px solid #EEE;
    transition: var(--main-transition);
}
.general-info .box:hover{
    background-color: #f9f9f9;
}
.general-info .box > div{
    min-width: 200px;
    padding: 10px 0;
}
.general-info .box > div:not(:first-of-type) span:first-of-type{
    padding-left: 15px;
}
.info-switch{
    height: 22px;
}
.info-switch::before{
    font-size: 8px;
    height: 14px;
    width: 14px;
}
.toggle-checkbox:checked + .info-switch::before{
    left: calc(78px - 18px);
}
@media (max-width: 767px) {
    .general-info .box > div,
    .general-info .box label{
        width: 100%;
    }
    .general-info .box label > div{
        margin: 0 auto;
    }
}
/* End Profile section*/
/* Start Other */
@media (max-width: 767px) {
    .other{
        flex-direction: column;
    }
}
.other .skills{
    flex-grow: 1;
}
.other .activites{
    flex-grow: 2;
}
.other ul li{
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.other ul li:last-child{
    border-bottom: none;
}
.other ul li > span{
    display: inline-flex;
    padding: 5px 10px;
    font-size: 13px;
    background-color: #eee;
    margin: 0 5px;
    border-radius: 6px;
}
@media (max-width: 767px){
    .other ul li > span{
        margin: 0 5px 8px;
    }
}
/* End Other */
/* Start Activites */
@media (max-width: 767px){
    .activites .activity{
        flex-direction: column;
    }
    .activites .activity > div{
        flex-direction: column;
    }
}
.activites .activity:not(:last-of-type){
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.activites .activity img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: white;
    margin-right: 15px;
}
@media (max-width: 767px){
    .activites .activity img{
        margin-right: 0;
        margin-bottom: 10px;
    }
    .activites .activity .time{
        margin: 15px auto 0;
        
    }
}
/* End Activites */
/* Start Projects Section */
.projects .wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .projects .wrapper{
        grid-template-columns: minmax(200px, 1fr);
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
.projects .box .head span{
    margin-top: -20px;
    font-size: 12px;
}
.projects .box .images img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    padding: 2px;
    z-index: 1;
    margin-bottom: 10px;
    position: relative;
}
.projects .box .images a:not(:first-child){
    margin-left: -15px;
}
.projects .box .images a:hover img{
    z-index: 2;
}
.projects .box .skill ul li{
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    text-align: right;
}
.projects .box .skill ul li span{
    background-color: #eee;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    margin-left: 10px;
}
.projects .box .foot{
    padding: 15px 0 10px ;
}
.projects .box .foot .progress {
    width: 240px;
    height: 8px;
    border-radius: 10px;
    background-color: #eee;
    position: relative;
}
.projects .box .foot .progress span{
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    border-radius: 10px;
    background-color: var(--red-color);
}
.projects .box .foot .progress span.done{
    background-color: var(--green-color);
}
.projects .box .foot .progress span.inprog{
    background-color: var(--blue-color);
}
@media (max-width: 767px) {
    .projects .box .skill ul li span{
        width: fit-content;
        display: block;
    }
    .projects .box .skill ul li span:not(:last-child){
        margin-bottom: 10px;
    }
    .projects .box .foot{
        flex-direction: column;
    }
    .projects .box .foot p{
        padding-top: 10px;
    }
}
/* End Projects Section */
/* Start Courses */
.courses .wrapper{
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .courses .wrapper{
        grid-template-columns: minmax(200px, 1fr);
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
.courses .course{
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.courses .course:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .courses .course:hover {
    transform: none; /* or translateY(0) */
  }
}
.courses .course > img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid white;
}
.courses .course .image img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.courses .course .details p{
    line-height: 1.7;
}
.courses .course span{
    width: fit-content;
    display: block;
    padding: 3px 8px;
    background-color: var(--blue-color);
    color: white;
    font-size: 13px;
    border-radius: 6px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.courses .course .info{
    position: relative;
}
.courses .course .info::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    bottom: calc(100% + 11px);
    left: 0;
    transform: translateY(-50%);
}
/* End Courses */
/* Stat Friends */
.friends .wrapper{
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .friends .wrapper{
        grid-template-columns: minmax(200px, 1fr);
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
.friends .friend .head .contact i{
    background-color: #eee;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    color: var(--grey-color);
    transition: var(--main-transition);
}
.friends .friend .head .contact i:hover{
    background-color: var(--blue-color);
    color: white;
}
.friends .friend .head img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.friends .body{
    padding: 15px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    position: relative;
}
.friends .body img{
    width: 80px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    opacity: 0.8;
}
.friends .foot .info span{
    transition: var(--main-transition);
}
.friends .foot .info span.profile:hover{
    background-color: var(--blue-alt-color);
}
.friends .foot .info span.remove:hover{
    background-color: red;
}
@media (max-width: 767px) {
    .friends .friend .head .contact {
        margin-top: -10px;
        margin-left: -10px;
    }
    .friends .foot .data,
    .friends .foot .info{
        font-size: 12px;
    }
}
/* End Friends */
/* Start Files */
.files{
    flex-direction: row-reverse;
    align-items: flex-start;
}
@media (max-width: 767px) {
    .files{
        flex-direction: column;
        align-items: normal;
    }
}
.files .file-stats{
    min-width: 260px;
}
.files .file-stats .icon{
    width: 40px;
    height: 40px;
    background-color: rgba(0, 132, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.files .file-stats .icon.red{
    background-color: rgba(156, 35, 35, 0.26);
}
.files .file-stats .icon.green{
    background-color: rgba(40, 165, 40, 0.13);
}
.files .file-stats .upload{
    transition: var(--main-transition);
    margin: 15px auto 0;
}
.files .file-stats .upload:hover{
    background-color: var(--blue-alt-color);
}
.files .file-stats .upload:hover i{
    animation: go-up 0.8s infinite;
}
/* Start files content */
.files .files-content{
    flex: 1;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .files .files-content{
        grid-template-columns: minmax(200px, 1fr);
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
.files .file > i{
    position: absolute;
    top: 10px;
    left: 10px;
    transition: var(--main-transition);
}
.files .file > i:hover{
    color: black;
}
.files .file .icon img{
    width: 64px;
    height: 64px;
    transition: 0.3s;
}
.files .file .icon img:hover{
    transform: rotate(5deg);
}
/* End Files */
/* Stat Plans */
.plans {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    margin-left: 20px;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .plans {
        grid-template-columns: minmax(200px, 1fr);
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
.plans .plan .head{
    padding: 20px ;
    background-color: var(--green-color);
    border: 5px solid white;
    outline: 3px solid var(--green-color);
    margin-bottom: 20px;
}
.plans .plan .head.blue{
    background-color: var(--blue-color);
    outline: 3px solid var(--blue-color);
}
.plans .plan .head.orange{
    background-color: var(--orange-color);
    outline: 3px solid var(--orange-color);
}
.plans .plan .head span{
    font-size: 50px;
}
.plans .plan .head span::before{
    font-family: "Font Awesome 5 free";
    content: "\24";
    font-weight: 900;
    position: absolute;
    font-size: 22px;
    top: 0;
    left: -18px;
}
.plans .plan .body ul li p::before{
    font-family: "Font Awesome 5 free";
    content: "\f00c";
    font-weight: 900;
    position: absolute;
    font-size: 22px;
    top: -2px;
    left: -20px;
    color: green;
}
.plans .plan .body ul li p.none::before{
    content: "\f00d";
    color: var(--red-color);
}
.plans .plan .body a{
    margin: 10px auto 0;
    padding: 10px 15px;
    transition: var(--main-transition);
}
.plans .plan .body a:hover{
    opacity: 0.8;
}
/* End Plans */
/* Start Animation */
@keyframes ligthing {
    0%, 100%{
        /* top: 0; */
        background-color: var(--blue-color);
    }
    50%{
        background-color: white;
    }
}
@keyframes go-up {
    0% , 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-5px);
    }
}
/* End Animation */