:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orang-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    background-color: #f1f5f9;
}
ul {
    list-style: none;
    padding: 0;
}
*:focus {
    outline: none;
}
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);
}
ul {
    list-style: none;
    padding: 0;
}
.page {
    min-height: 100vh;
}
/*start sidebar */
.sidebar {
    width: 250px;
    box-shadow: 0 0 10px #ddd;
}
.sidebar > h3 {
    margin-bottom: 50px;
    font-size: 23px;
}
.sidebar > h3::before {
    content: '';
    position: absolute;
    background-color: black;
    width: 80px;
    height: 2px;
    bottom: -20px;
    transform: translateX(-50%);
    left: 50%;
}
.sidebar > h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: black;
    bottom: -29px;
    border-radius: 50%;
    border: 4px solid white;
}
.sidebar ul li a {
    transition: .3s;
    margin-bottom: 5px;
}
.sidebar ul li a span {
    font-size: 14px;
    margin-left: 10px;
}
.sidebar ul li:hover,
.sidebar ul li a.active {
    background-color: #f6f6f6;
}
@media (max-width:767px) {
    .sidebar {
        width: 62px;
        padding: 10px;
    }
    .sidebar ul li a span {
        display: none;
    }
    .sidebar > h3 {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .sidebar > h3::before, 
    .sidebar > h3::after {
        display: none;
    }

}
/*end sidebar */
/*start content*/
.content {
    overflow: hidden;
}
.header .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);

}
.header .search input {
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-left: 5px;
    width: 160px;
    padding-left: 30px;
    padding-right: 0;
    transition: width .3s opacity .3s;
 }
.header .search input:focus {
    width: 200px;
}
.header .search input::placeholder {
    transition: opacity .3s;
}
.header .search input:focus::placeholder {
    opacity: 0;
}
.header .icons .notification::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;
    right: -5px;
    background-color: var(--red-color);
    border-radius: 50%;
}
.header .icons img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    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;
    row-gap: 25px;
}
@media (max-width:767px) {
    .wrapper {
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
/*end content*/

/* ========one page ======== */

/* start welcome widget*/
.welcome {
    overflow: hidden;
}
.welcome .intro img {
    width: 170px;
    margin-bottom: -44px;
    margin-top: -30px;
    max-width: 100%;
}
.welcome > img {
    width: 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-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.welcome .body > div {
    flex: 1;
}
.welcome .visit {
    margin: 0 15px 15px auto;
    transition: .3s;
}
.welcome .visit:hover {
    background-color: var(--blue-alt-color);
}
@media(max-width:767px) {
    .welcome .intro {
        padding-bottom: 30px;
    }
    .welcome > img {
        margin-left: 0;
    }
    .welcome .body > div:not(:last-child) {
        margin-bottom: 20px;
    }
}
/* end welcome widget*/
/*start quick draft widget*/
.quick-draft textarea{
    resize: none;
    min-height: 180px;
}
.quick-draft .save {
    margin-left: auto;
    cursor: pointer;
    transition: .3s;
}
.quick-draft .save:hover {
    background-color: var(--blue-alt-color);
}
/*end quick draft widget*/
/*starat 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 !important;
    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: 12px;
}
.targets .details .progress > span span::after {
    content: '';
    position: absolute;
    border-color: transparent;
    border-width: 5px;
    border-style: solid;
    bottom: -10px;
    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(--orang-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 widget*/
.tickets .box {
    border: 1px solid #ccc;
    width: calc(50% - 10px);
}
@media(max-width:767px) {
    .tickets .box {
        width: 100%;
    }
}
/*end ticket widget*/
/*start news */
.news .news-row:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.news .news-row img {
    width: 100px;
    height: 80px;
    border-radius: 6px;
    margin-right: 15px;
}
.news .news-row .info {
    flex-grow: 1;
}
.news .news-row .info h3 {
    margin:  0 0 5px;
    font-size: 16px;
}
@media(max-width:767px) {
    .news .lable {
        width: fit-content;
        margin: 10px auto; 
    }
    .news .news-row img {
        margin-bottom: 5px;
    }
}
/*end news */
/*start tasks*/
.tasks .task-row:not(:last-of-type) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.tasks .task-row .info {
    flex-grow: 1;
}
.tasks .done {
    opacity: .4;
}
.tasks .done h3,
.tasks .done p {
    text-decoration: line-through;
}
.tasks .delete {
    cursor: pointer;
    transition: .3s;
}
.tasks .delete:hover {
    color: var(--red-color);
}
/*end tasks*/
/*start latest-uploads */
.latest-uploads ul li:not(:last-of-type) {
    border-bottom: 1px solid #eee ;
}
/*end latest-uploads */
/*start last project*/
/*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;
    z-index: 0; 
    display: block;
    border-radius: 50%;
    background-color: white;
    border: 2px solid white;
    outline: 2px solid var(--blue-color);
    margin-right: 15px;
}
.last-project ul li.done::before {
    background-color: var(--blue-alt-color);
}
.last-project ul li.current::before {
    animation: change-color 1s infinite alternate;
}
.last-project .launch-icon {
    position: absolute;
    width: 140px;
    right: 0;
    bottom: 0;
    opacity: .1;
}
/*end last project progress*/
/*start reminders*/
.reminders ul li .key {
    width: 15px;
    height: 15px;
}
.reminders ul li > .blue {
    border-left: 2px solid var(--blue-color);
}
.reminders ul li > .red {
    border-left: 2px solid var(--red-color);
}
.reminders ul li > .green {
    border-left: 2px solid var(--green-color);
}
.reminders ul li > .orange {
    border-left: 2px solid var(--orang-color);
}
/*end reminders*/
/*start latest post widget*/
.latest-post .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 widget*/
/*start social media */
.social-media .box {
    padding-left: 70px;
}
.social-media .box i {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    transition: .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(0 119 181 / 20%);
    color: #0077b5;
}
.social-media .linkedin i ,
.social-media .linkedin a {
    background-color: #0077b5;
}
/*end social media */
/*start project table*/
.prjects .responsive-table {
    overflow-x: auto;
}
.prjects table {
    min-width: 1000px;
    border-spacing: 0;
}
.prjects thead td {
    background-color: #eee;
    font-weight: bold;
}
.prjects table td {
    padding: 15px;
}
.prjects tbody td {
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    transition: .3s;
}
.prjects tbody tr:hover td {
    background-color: #faf7f7;
}
.prjects tbody td:last-child {
    border-right: 1px solid #eee;
}
.prjects table img {
    background-color: white;
    padding: 2px;
}
.prjects table img:not(:first-child) {
    margin-left: -20px;
}
/*end project table*/

/*=========page two=========*/

/* start settings page */
.settings-page {
    grid-template-columns: repeat(auto-fill,minmax(500px,1fr));
}
@media(max-width: 767px) {
    .settings-page {
        grid-template-columns: repeat(1,1fr);
        margin-left: 10px;
        margin-right: 10px;
        gap: 10px;
    }
}
.settings-page .close-message {
    border: 1px solid #ccc;
    resize: none;
    min-height: 150px;
    caret-color: var(--blue-color);
    transition: .3s;
}
.settings-page .close-message::placeholder {
    transition: .3s;
}
.settings-page .close-message:focus::placeholder {
    opacity: 0;
}
.settings-page .close-message:focus {
    border-color: var(--blue-color);
}
/* end settings page */
/* start general info */
.settings-page .email {
    display: inline-flex;
    width: calc(100% - 80px);
}
.settings-page .f-name,
.settings-page .l-name {
    caret-color: var(--blue-color);
    transition: .3s;
}
.settings-page .f-name::placeholder,
.settings-page .l-name::placeholder {
    transition: .3s;
}
.settings-page .f-name:focus::placeholder,
.settings-page .l-name:focus::placeholder {
    opacity: 0;
}
.settings-page .f-name:focus,
.settings-page .l-name:focus {
    border-color: var(--blue-color);
}
.settings-page :disabled {
    cursor: no-drop;
    background-color: #f0f4f8;
    color: #bbb;
}
/* end general info */
/* start security box */
.settings-page .sec-box {
    padding-bottom: 15px;
}
.settings-page .sec-box:not(:last-of-type) {
    border-bottom: 1px solid #eee;
}
.settings-page .button {
    transition: .3s;
}
.settings-page .button:hover {
    background-color: var(--blue-alt-color);
}
/* end security box */
/* start social media */
.settings-page .social-box i {
    width: 40px;
    height: 40px;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    transition: .3s;
}
.settings-page .social-box input {
    height: 40px;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    border-radius: 0 6px 6px 0;
    padding-left: 10px;
}
.settings-page .social-box > div:focus-within i {
    color: black;
}
/* end social media */
/* start widged controal */
.widged-controal  .control label {
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}
.widged-controal  .control label::before {
    content: '';
    position: absolute;
    border-radius: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 2px solid var(--grey-color);
}
.widged-controal  .control label:hover::before {
    border-color: var(--blue-alt-color);
}
.widged-controal  .control label::after {
    font-family: var(--fa-style-family-classic);
    content: "\f00c";
    font-size: 12px;
    border-radius: 4px;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    display: flex;
    color: white;
    font-weight: 900;
    position: absolute;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(360deg);
    background-color: var(--blue-color);
    transition: .3s;
}
.widged-controal  .control input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
.widged-controal  .control input[type="checkbox"]:checked + label::after {
    transform: scale(1);
}
/* end widged controal */
/* start backup manger */
.backup-control .date  label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}
.backup-control .date label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--grey-color) ;
    border-radius: 50%;
}
.backup-control .date label::after {
    font-family: var(--fa-style-family-classic);
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    transform: scale(0) translateY(-50% );
    width: 12px;
    height: 12px;
    background-color: var(--blue-color);
    border-radius: 50%;
    transition: .3s;
    
}
.backup-control .date input[type="radio"]:checked + label::after {
    transform: scale(1) translateY(-50%);
}
.backup-control .date input[type="radio"]:checked + label::before {
    border-color: var(--blue-color);
}
.backup-control input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
.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 {
    border: 2px solid #eee;
    position: relative;
    margin: 5px;
}
.backup-control .servers .server label {
    cursor: pointer;
}
.backup-control .servers input[type="radio"]:checked + .server {
    border-color: var(--blue-color);
    color: var(--blue-color);
}

/* end backup manger */
/*start switch-lable */
.toggle-checkbox {
    display: none;
}
.toggle-switch {
    background-color: #ccc;
    width: 78px;
    height: 32px;
    border-radius: 16px;
    position: relative;
    transition: .3s;
    cursor: pointer;
}
.toggle-switch::before {
    font-family: var(--fa-style-family-classic);
    content: "\f00d";
    position: absolute;
    font-weight: 900;
    background-color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    top: 4px;
    left: 4px;
    transition: .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);
}
/*end switch-lable */

/*============ page =========== */
/*============ three ==========*/

/* start overview */
@media(max-width: 767px) {
    .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: 100px;
    height: 100px;
}
.profile-page .avatar-box .level {
    height: 6px;
    overflow: hidden;
    margin: auto;
    width: 70%;
}
.profile-page .avatar-box .level span {
    position: absolute;
    left: 0;
    top: 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: .3s;
}
.profile-page .info-box .box:hover {
    background-color: #f6f6f6;
}
.profile-page .info-box .box > div  {
    min-width: 200px;
    padding: 10px 0 5px;
}
.profile-page .info-box .box h4 {
    font-weight: normal;
}
.profile-page .info-box .box .toggle-switch {
    height: 20px;
}
@media(max-width: 767px) {
    .profile-page .info-box label {
        margin: auto;
        margin-top: 5px;
    }
}
.profile-page .info-box .box .toggle-switch::before {
    width: 12px;
    height: 12px;
    font-size: 8px;
    display: flex;
}
.profile-page .toggle-checkbox:checked + .toggle-switch {
    background-color: var(--blue-color);
}
.profile-page .toggle-checkbox:checked + .toggle-switch::before {
    content: "\f00c";
    left: 62px;
    color: var(--blue-color);
}
/* end overview */
/* Start Training Code */
@media(max-width: 767px) {
    .profile-page .other-data {
        flex-direction: column;
    }
}
.profile-page .skills-card {
    flex-grow: 1;
}
.profile-page .skills-card ul li {
    padding: 15px 0;
}
.profile-page .skills-card ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.profile-page .skills-card ul li span {
    display: inline-flex;
    padding: 4px 10px;
    background-color: #eee;
    border-radius: 6px;
    font-size: 14px;
}
.profile-page .skills-card 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;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--orang-color);
}
@media(min-width : 768px) {
    .profile-page .activity .data {
        margin-left: auto;
        text-align: right;
    }
}
@media(max-width : 767px) {
    .profile-page .activity {
        flex-direction: column;
    }
    .profile-page .activity img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .profile-page .activity .data {
        margin-top: 15px;
    }
}
/* end Training Code */

/* ========= page =========*/
/* ========= four =========*/

/* 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);
        gap: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
.projects-page .project .data {
    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: 100;
}
.projects-page .project .team a:hover img {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.671);
    width: 42px;
    height: 42px;
}
.projects-page .project .team a img {
    border: 2px solid white;
    width: 40px;
    height: 40px;
    transition: .3s;
}
.projects-page .project .techs {
    justify-content: flex-end;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}
@media(max-width: 767px) {
    .projects-page .project .techs,
    .projects-page .project .info  {
        flex-direction: column;
    }
}
.projects-page .project .techs span {
    padding: 3px 8px;
    margin-left: 5px;
    width: fit-content;
}
@media(max-width: 767px) {
    .projects-page .project .techs span:not(:last-child) {
        margin-bottom: 20px;
    }
}
.projects-page .project .info {
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
}
.projects-page .project .prog {
    height: 8px;
    width: 260px;
    position: relative;
    border-radius: 6px;
    margin-bottom: 15px;
}
.projects-page .project .prog span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 6px;
}
/* end projects */

/* ========= page =========*/
/* ========= five =========*/

/* 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);
        gap: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
.courses-page .course {
    overflow: hidden;
}
.courses-page .course .cover {
    width: 400px;
    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 .info {
    border-top: 1px solid #eee;
    font-size: 13px;
}
.courses-page .course .description {
    line-height: 1.6;
}
.courses-page .course  .info .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    top: -13px;
}
/* end courses page */

/* ========= page =========*/
/* ========= six =========*/

/* start Friends widget content */
.friends-page { 
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
}
@media(max-width: 767px) {
    .friends-page  {
        grid-template-columns: minmax(200px,1fr);
        gap: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
.friends-page .contact {
    position: absolute;
    top: 10px;
    left: 10px;
}
.friends-page .contact i {
    background-color: #eee;
    padding: 10px;
    border-radius: 50%;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: .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: 10px;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}  
.friends-page .friend .icons i {
    margin-right: 5px;
}  
.friends-page .friend .icons .vip {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    opacity: .5;
}  
/* end Friends widget content */

/* ========= page =========*/
/* ========= one + six =========*/

/* start Files widget content */
.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(255 0 0 / 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: .3s;
    text-transform: capitalize;
}
.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;
}
.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: .3s;
}
.files-page .files-content .file:hover img {
    transform: rotate(5deg);
}
.files-page .files-content .info {
    border-top: 1px solid #eee;
}
.files-page .files-content .file > i {
    cursor: pointer;
}
/* end Files widget content */

/* ========= page =========*/
/* ========= two + six =========*/

/* 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);
        gap: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
.plans-page .plan .top {
    border: 3px solid white;   
    outline: 3px solid transparent;
}
.plans-page .plan.green .top {
    outline: 3px solid var(--green-color);
}
.plans-page .plan.blue .top {
    outline: 3px solid var(--blue-color);
}
.plans-page .plan.orange .top {
    outline: 3px solid var(--orang-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: 26px;
}
.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);
    cursor: pointer;
    margin-left: auto;
}
/* end plans page */

/*start animation */
@keyframes change-color {
    from {
        background-color: var(--blue-color);
    }
    to {
        background-color: white;
    }
}
@keyframes go-up {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}
/*end animation */