:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
}
* {
    box-sizing: border-box;
}
body {
    font-family: "Open Sans", sans-serif;
    margin: 0px;
}
*:focus {
    outline: none;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0px;
}
::-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 {
    background-color: #f1f5f9;
}
/* start components */
.toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
.toggle-switch {
    background-color: #ccc;
    width: 78px;
    height: 32px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}
.toggle-switch::before {
    position: absolute;
    font-family: var(--fa-style-family-classic);
    content: "\f00d";
    font-weight: 900;
    background-color: white;
    color: #aaa;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 4px;
    left: 4px;
    transform: rotate(0.01deg);
    transition: 0.3s;
}
.toggle-checkbox:checked + .toggle-switch {
    background-color: var(--blue-color);
}
.toggle-checkbox:checked + .toggle-switch::before {
    content: "\f00c";
    transform: rotate(359.9deg);
    left: 50px;
    color: var(--blue-color);
}
/* end components */
/* start sidebar */
.sidebar {
    width: 250px;
    box-shadow: 0px 0px 10px #ddd;
}
.sidebar > h3 {
    margin-bottom: 50px;
}
.sidebar > h3::before,
.sidebar > h3::after {
    content: "";
    position: absolute;
    background-color: black;
    left: 50%;
    transform: translateX(-50%);
}
.sidebar > h3::before {
    width: 80px;
    height: 2px;
    bottom: -20px;
}
.sidebar > h3::after {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 4px solid white;
    bottom: -29px;
}
.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;
    }
}
/* 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 0.3s;
}
.head .search input:focus {
    width: 200px;
}
.head .search input:focus::placeholder {
    transition: 0.3s;
    opacity: 0;
}
.head .icons .notification-hover {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: -5px;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
}
.head .icons .notification {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.head .icons .notification-hover:hover {
    background-color: #f6f6f6;
}
.head .icons .notification::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--red-color);
    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: "";
    position: absolute;
    left: 0px;
    bottom: -10px;
    height: 3px;
}
.page h1::before {
    background-color: white;
    width: 120px;
}
.page h1::after {
    background-color: black;
    width: 40px;
}
/* end content */
/* start wrapper */
.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 wrapper */
/* start welcome widget */
.welcome {
    overflow: hidden;
}
.welcome .intro img {
    width: 200px;
    margin-bottom: -10px;
}
.welcome .avatar {
    width: 64px;
    height: 64px;
    border: 2px solid white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0px 0px 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: 0px 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: 0px;
    }
    .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;
    transition: 0.3s;
    cursor: pointer;
}
.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: 0px;
    bottom: 0px;
    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: -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(--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 widget */
.tickets .box {
    border: 1px solid #ccc;
    width: calc(50% - 10px);
}
@media (max-width: 767px) {
    .tickets .box {
        width: 100%;
    }
}
/* end ticket widget */
/* start latest news */
.latest-news .news-row:not(:last-of-type) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.latest-news .news-row .info h3 {
    margin: 0px 0px 6px;
    font-size: 16px;
}
.latest-news .news-row .info {
    flex-grow: 1;
}
.latest-news .news-row img {
    width: 100px;
    border-radius: 6px;
    margin-right: 15px;
}
@media (max-width: 767px) {
    .latest-news .news-row {
        display: block;
    }
    .latest-news .news-row img {
        margin: 0px;
    }
    .latest-news .news-row .label {
        margin: 10px auto;
        width: fit-content;
    }
}
/* end latest news */
/* start tasks */
.tasks .task-row:not(:last-of-type) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.tasks .task-row .done h3,
.tasks .task-row .done p {
    text-decoration: line-through;
}
.tasks .task-row.done {
    opacity: 0.3;
}
.tasks .task-row .delete {
    cursor: pointer;
    transition: 0.3s;
}
.tasks .task-row .delete:hover {
    color: var(--red-color);
}
/* end tasks */
/* start latest upload widget */
.latest-uploads ul li img {
    width: 40px;
    height: 40px;
}
.latest-uploads ul li:not(:last-of-type) {
    border-bottom: 1px solid #eee;
}
/* end latest upload widget */
/* start last project progress widget */
.last-project .launch-icon {
    position: absolute;
    width: 160px;
    right: 0px;
    bottom: 0px;
    opacity: 0.1;
    transition: 1s;
}
.last-project .launch-icon:hover {
    opacity: 1;
}
.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;
    display: block;
    border-radius: 50%;
    background-color: white;
    border: 2px solid white;
    outline: 2px solid var(--blue-color);
    margin-right: 15px;
    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;
}
/* end last project progress widget */
/* start reminders widget */
.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 widget */
/* start latest post widget */
.latest-post .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 widget */
/* start social media stats widget */
.social-media .box {
    padding-left: 70px;
}
.social-media .box i {
    position: absolute;
    left: 0px;
    top: 0px;
    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: #1da1f2;
}
.social-media .facebook i,
.social-media .facebook a {
    background-color: #1877f2;
}
.social-media .youtube {
    background-color: rgb(255 0 0 / 20%);
    color: #ff0000;
}
.social-media .youtube i,
.social-media .youtube a {
    background-color: #ff0000;
}
.social-media .linkedin {
    background-color: rgb(0 119 181 / 20%);
    color: #0077b5;
}
.social-media .linkedin i,
.social-media .linkedin a {
    background-color: #0077b5;
}
/* end social media stats widget */
/* start projects table */
.projects .responsive-table {
    overflow-x: auto;
}
.projects table {
    min-width: 1000px;
    border-spacing: 0;
}
.projects table td {
    padding: 15px;
}
.projects thead td {
    background-color: #eee;
    font-weight: bold;
}
.projects tbody td {
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    transition: 0.3s;
}
.projects tbody 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 .label {
    font-size: 13px;
}
/* end projects table */
/* start settings page */
.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;
        gap: 10px;
    }
}
/* end settings page */
/* start settings box */
.settings-page textarea {
    border: 1px solid #ccc;
    resize: none;
    min-height: 150px;
}
/* end settings box */
/* start settings general info */
.settings-page :disabled {
    cursor: no-drop;
    background-color: #f0f4f8;
    color: #bbb;
}
.settings-page .email {
    display: inline-flex;
    width: calc(100% - 80px);
}
.settings-page .change {
    transition: 0.3s;
}
.settings-page .change:hover {
    color: var(--blue-alt-color);
}
/* end settings general info */
/* start settings security info */
.settings-page .button {
    transition: 0.3s;
}
.settings-page .button.bg-blue:hover {
    background-color: var(--blue-alt-color);
}
.settings-page .button.bg-eee:hover {
    background-color: #ddd;
}
.settings-page .sec-box {
    padding-bottom: 15px;
}
.settings-page .sec-box:not(:last-child) {
    border-bottom: 1px solid #eee;
}
/* end settings security info */
/* start settings social info */
.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: 0.3s;
}
.settings-page .social-boxes input {
    height: 40px;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    border-radius: 0px 6px 6px 0px;
    padding-left: 10px;
}
.settings-page .social-boxes > div:focus-within i {
    color: black;
}
/* end settings social info */
/* start widgets control */
.settings-page .widgets-control .control input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
}
.settings-page .widgets-control .control label {
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}
.settings-page .widgets-control .control label:hover::before {
    border-color: var(--blue-alt-color);
}
.settings-page .widgets-control .control label::before,
.settings-page .widgets-control .control label::after {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -9px;
    border-radius: 4px;
}
.settings-page .widgets-control .control label::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid var(--grey-color);
}
.settings-page .widgets-control .control label::after {
    font-family: var(--fa-style-family-classic);
    content: "\f00c";
    font-weight: 900;
    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);
    transition: 0.3s;
}
.settings-page .widgets-control .control input[type="checkbox"]:checked + label::after {
    transform: scale(1);
}
/* end widgets control */
/* start backup control */
.settings-page .backup-control input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
.settings-page .backup-control .date label {
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}
.settings-page .backup-control .date label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: -11px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--grey-color);
    border-radius: 50%;
}
.settings-page .backup-control .date label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--blue-color);
    border-radius: 50%;
    transition: 0.3s;
    transform: scale(0);
}
.settings-page .backup-control .date input[type="radio"]:checked + label::before {
    border-color: var(--blue-color);
}
.settings-page .backup-control .date input[type="radio"]:checked + label::after {
    transform: scale(1);
}
.settings-page .backup-control .servers {
    border-top: 1px solid #eee;
    padding-top: 20px;
    gap: 10px;
}
@media (max-width: 767px) {
    .settings-page .backup-control .servers {
        flex-wrap: wrap;
    }
}
.settings-page .backup-control .servers .server {
    border: 2px solid #eee;
    position: relative;
}
.settings-page .backup-control .servers .server label {
    cursor: pointer;
}
.settings-page .backup-control .servers input[type="radio"]:checked + .server {
    border-color: var(--blue-color);
    color: var(--blue-color);
}
/* end backup control */
/* start profile page overview */
.profile-page .overview .avatar-box {
    width: 300px;
}
@media (max-width: 767px) {
    .profile-page {
        margin-left: 10px;
        margin-right: 10px;
    }
}
@media (min-width: 768px) {
    .profile-page .overview .avatar-box {
        border-right: 1px solid #eee;
    }
}
@media (max-width: 767px) {
    .profile-page .overview {
        flex-direction: column;
    }
}
.profile-page .overview .avatar-box > img {
    width: 120px;
    height: 120px;
}
.profile-page .overview .avatar-box .level {
    height: 6px;
    width: 70%;
    margin: auto;
    overflow: hidden;
}
.profile-page .overview .avatar-box .level span {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 6px;
}
.profile-page .overview .info-box .box {
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}
@media (max-width: 767px) {
    .profile-page .overview .info-box .box {
        margin-left: 10px;
        margin-right: 10px;
    }
}
.profile-page .overview .info-box .box:hover {
    background-color: #f9f9f9;
}
@media (max-width: 767px) {
    .profile-page > div:not(:first-child) {
        gap: 0px;
    }
}
.profile-page .overview .info-box .box h4 {
    font-weight: normal;
}
.profile-page .overview .info-box .box > div {
    min-width: 250px;
    padding: 10px 0px 0px;
}
.profile-page .overview .info-box .box .toggle-switch {
    height: 20px;
}
.profile-page .overview .info-box .box .toggle-switch::before {
    width: 12px;
    height: 12px;
    font-size: 8px;
}
.profile-page .overview .info-box .box .toggle-checkbox:checked + .toggle-switch::before {
    left: 62px;
}
@media (max-width: 767px) {
    .profile-page .overview .info-box .box .toggle-switch {
        margin: auto;
    }
}
/* end profile page overview */
/* start profile page other data */
@media (max-width: 767px) {
    .profile-page .other-data {
        flex-direction: column;
    }
    .profile-page .other-data > div {
        margin-top: 10px;
    }
}
.profile-page .other-data .skills-card {
    flex-grow: 1;
}
.profile-page .other-data .skills-card ul li {
    padding: 15px 0;
}
.profile-page .other-data .skills-card ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.profile-page .other-data .skills-card ul li span {
    display: inline-flex;
    padding: 4px 10px;
    background-color: #eee;
    border-radius: 6px;
    font-size: 14px;
}
.profile-page .other-data .skills-card ul li span:not(:last-child) {
    margin-right: 5px;
}
.profile-page .other-data .activities {
    flex-grow: 2;
}
.profile-page .other-data .activities .activity:not(:last-child) {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.profile-page .other-data .activities .activity img {
    width: 64px;
    height: 64px;
    margin-right: 10px;
}
@media (min-width: 768px) {
    .profile-page .other-data .activities .activity .date {
        margin-left: auto;
        text-align: right;
    }
}
@media (max-width: 767px) {
    .profile-page .other-data .activities .activity {
        flex-direction: column;
    }
    .profile-page .other-data .activities .activity img {
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .profile-page .other-data .activities .activity .date {
        margin-top: 15px;
    }
}
/* end profile page other data */
/* 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 span {
    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: 0px;
    bottom: 0px;
}
.projects-page .project .team a:hover {
    z-index: 1000;
}
.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 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;
    font-size: 13px;
    background-color: #eee;
    border-radius: 6px;
    width: fit-content;
    margin-left: 5px;
}
@media (max-width: 767px) {
    .projects-page .project .do span:not(:last-child) {
        margin-bottom: 15px;
    }
}
.projects-page .project .info {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}
@media (max-width: 767px) {
    .projects-page .project .info {
        flex-direction: column;
    }
}
.projects-page .project .info .prog {
    height: 8px;
    width: 260px;
    border-radius: 6px;
    position: relative;
}
@media (max-width: 767px) {
    .projects-page .project .info .prog {
        margin-bottom: 15px;
    }
}
.projects-page .project .info .prog span {
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 6px;
    height: 100%;
    animation: loading 1s 1 linear;
}
/* end projects page */
/* 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 {
    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 .section {
    min-height: 157.8px;
}
.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%);
    transition: 0.3s;
    cursor: pointer;
}
.courses-page .course .info .title:hover {
    background-color: var(--blue-alt-color);
}
/* 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;
    top: 10px;
    left: 10px;
    color: #666;
}
.friends-page .contact i {
    transition: 0.3s;
    cursor: pointer;
}
.friends-page .contact i:hover {
    background-color: var(--blue-color);
    color: white;
}
.friends-page .icons {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.friends-page .icons i {
    margin-right: 5px;
}
.friends-page .icons .vip {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    opacity: 0.2;
}
.friends-page .info a {
    transition: 0.3s;
}
.friends-page .info a:hover:nth-child(1) {
    background-color: var(--blue-alt-color);
}
.friends-page .info a:hover:nth-child(2) {
    background-color: #d32f2f;
}
/* end friends page */
/* start files page */
.files-page {
    align-items: flex-start;
}
@media (max-width: 767px) {
    .files-page {
        flex-direction: column-reverse;
        align-items: normal;
        margin-left: 10px;
        margin-right: 10px;
    }
}
.files-page .files-content {
    flex: 1;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.files-page .files-content .file > i {
    cursor: pointer;
    transition: 0.3s;
}
.files-page .files-content .file > i:hover {
    color: var(--blue-color);
}
.files-page .files-content .file img {
    width: 64px;
    height: 64px;
    transition: 0.3s;
}
.files-page .files-content .file :hover img {
    transform: rotate(5deg);
} 
.files-page .files-content .file .info {
    border-top: 1px solid #eee;
    padding-top: 10px;
}
.files-page .files-stats {
    min-width: 260px;
}
.files-page .files-stats .icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.files-page .files-stats .icon.blue {
    background-color: rgb(0 117 255 / 20%);
}
.files-page .files-stats .icon.green {
    background-color: rgb(34 197 94 / 20%);
}
.files-page .files-stats .icon.red {
    background-color: rgb(244 67 54 / 20%);
}
.files-page .files-stats .icon.orange {
    background-color: rgb(245 158 11 / 20%);
}
.files-page .files-stats .size {
    margin-left: auto;
}
.files-page .files-stats .upload {
    margin: 15px auto 0px;
    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;
}
/* 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 .top.bg-green {
    outline-color: var(--green-color);
}
.plans-page .plan .top.bg-blue {
    outline-color: var(--blue-color);
}
.plans-page .plan .top.bg-orange {
    outline-color: var(--orange-color);
}
.plans-page .plan .price {
    position: relative;
    font-size: 40px;
    color: white;
    width: fit-content;
    margin: auto;
}
.plans-page .plan .price span {
    position: absolute;
    font-size: 25px;
    left: -20px;
}
.plans-page .plan ul li {
    padding: 15px 0px;
    display: flex;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}
.plans-page .plan ul li i:first-child {
    font-size: 18px;
    margin-right: 5px;
}
.plans-page .plan ul li i.yes {
    color: var(--green-color);
}
.plans-page .plan ul li i:not(.yes, .help) {
    color: var(--red-color);
}
.plans-page .plan ul li i.help {
    color: var(--grey-color);
    margin-left: auto;
    cursor: pointer;
}
.plans-page .plan a {
    transition: 0.3s;
}
.plans-page .plan a.bg-green:hover {
    background-color: #1b9e4d;
}
.plans-page .plan a.bg-blue:hover {
    background-color: var(--blue-alt-color);
}
/* end plans page */
/* start animation */
@keyframes change-color {
    0% {
        background-color: var(--blue-color);
    }
    100% {
        background-color: white;
    }
}
@keyframes loading {
    0% {
        width: 0%;
    }
}
@keyframes go-up {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}
/* end animation */

/* Responsive Website */