*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --background: #191919;
    --secondary-background: #eee;
    --color-white: white;
    --background-hover: #f6f6f6;
    --color-black: black;
    --transition: 0.3s;
    --page-background: #f1f5f9;
    --border-color: #b8b8b8;
    --color-blue: #0075ff;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --color-blue-hover: #0d69d5;
    --text-color: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background: var(--color-blue);
}

/* 
****************************************************
==========                          ==========
                global classes
==========                          ==========
****************************************************
*/

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul>li>a {
    color: var(--color-black);
}

a {
    text-decoration: none;
}

.custom-button {
    color: var(--color-white);
    background-color: var(--color-blue);
    padding: 10px 15px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px 20px 20px auto;
    border: none;
}

.custom-button:hover {
    cursor: pointer;
}


.line-through {
    text-decoration: line-through;
}

.opacity-5 {
    opacity: 0.5;
}

.opacity-2 {
    opacity: 0.2;
}

/* 
****************************************************
==========                          ==========
                sidebar section
==========                          ==========
****************************************************
*/

.page {
    background-color: var(--page-background);
    min-height: 100vh;
}

.page .content {
    overflow: hidden;
}

.page .sidebar {
    background-color: white;
    flex-basis: 60px;
    z-index: 1;
    padding: 10px;
}

@media (min-width: 768px) {
    .page .sidebar {
        flex-basis: 250px;
        padding: 20px;
    }

    .page .content {
        flex-basis: calc(100% - 250px);
    }
}

.page .sidebar .sidebar-logo {
    margin-bottom: 20px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .page .sidebar .sidebar-logo {
        margin-bottom: 50px;
        font-size: 18px;
    }

    .page .sidebar .sidebar-logo::before,
    .page .sidebar .sidebar-logo::after {
        position: absolute;
        content: "";
        background-color: var(--background);
        transform: translateX(-50%);
        left: 50%;
    }

    .page .sidebar .sidebar-logo::before {
        width: 50%;
        height: 2px;
        bottom: -15px;
    }

    .page .sidebar .sidebar-logo::after {
        border: 3px solid var(--color-white);
        width: 15px;
        height: 15px;
        border-radius: 50%;
        bottom: -22px;
    }
}

.page .sidebar .sidebar-list li a {
    transition: var(--transition);
    justify-content: center;
}

@media (min-width: 768px) {
    .page .sidebar .sidebar-list li a {
        justify-content: left;
    }
}

.page .sidebar .sidebar-list li a.active {
    background-color: var(--secondary-background);
}

.page .sidebar .sidebar-list li:hover a {
    background-color: var(--secondary-background);
}

.page .sidebar .sidebar-list li a span {
    display: none;
}

@media (min-width: 768px) {
    .page .sidebar .sidebar-list li a span {
        display: block;
    }
}

/* 
****************************************************
==========                          ==========
                content section
==========                          ==========
****************************************************
*/


.page .content {
    flex-basis: calc(100% - 60px);
}

@media (min-width: 768px) {
    .page .content {
        flex-basis: calc(100% - 250px);
    }
}

.page .content .header .header-search::before {
    position: absolute;
    content: "\f002";
    font: var(--fa-font-solid);
    color: var(--border-color);
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    z-index: 1;
}

.page .content .header .header-search input[type="search"] {
    border: 1px solid var(--border-color);
    padding-left: 30px;
    width: 160px;
    transition: var(--transition);
}

@media (min-width: 375px) {
    .page .content .header .header-search input[type="search"]:focus {
        width: 190px;
    }
}

.page .content .header .header-search input[type="search"]:focus-visible {
    border: 1px solid var(--border-color);
    outline: none;
    caret-color: var(--border-color);
}

.page .content .header .header-search input[type="search"]::placeholder {
    color: var(--border-color);
    text-transform: capitalize;
    transition: var(--transition);
}

.page .content .header .header-search input[type="search"]:focus::placeholder {
    opacity: 0;
}

.page .content .header .icon::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    top: -5px;
    right: -7px;
}

.page .content .header .user-img {
    width: 32px;
    height: 32px;
}

/* 
****************************************************
==========                          ==========
                page-name section
==========                          ==========
****************************************************
*/

.page .content .page-name>h1 {
    width: -moz-fit-content;
    width: fit-content;
}

.page .content .page-name>h1::before,
.page .content .page-name>h1::after {
    position: absolute;
    content: "";
    height: 3px;
    bottom: -10px;
    left: 0;
}

.page .content .page-name>h1::before {
    width: 100%;
    background-color: var(--color-white);
}

.page .content .page-name>h1::after {
    background-color: var(--background);
    width: 40%;
}

/* 
****************************************************
==========                          ==========
                content-container section
==========                          ==========
****************************************************
*/

.content-container {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
}

@media (min-width: 768px) {
    .content-container {
        grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    }
}

/* 
****************************************************
==========                          ==========
                welcome section
==========                          ==========
****************************************************
*/

.content-container {
    margin: 0 20px 20px 20px;
}

.content-container .welcome-header {
    background-color: var(--secondary-background);
    justify-content: space-between;
    align-items: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.content-container .welcome-header p {
    color: var(--text-color);
    margin-top: 8px;
    margin-bottom: 15px;
}

.content-container .welcome-header img {
    display: none;
}

@media (min-width: 768px) {
    .content-container .welcome-header img {
        width: 200px;
        margin-bottom: -20px;
        margin-top: -20px;
        display: block;
    }
}

.content-container .welcome .user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    box-shadow: 0 0 5px #ddd;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}

@media (min-width: 768px) {
    .content-container .welcome .user-avatar {
        left: 20px;
        top: -30px;
        transform: translate(0);
    }
}

.content-container .welcome .welcome-info {
    border-top: 1px solid var(--secondary-background);
    border-bottom: 1px solid var(--secondary-background);
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .content-container .welcome .welcome-info {
        flex-direction: row;
        gap: 20px;
    }
}

.content-container .welcome .welcome-info div {
    flex: 1;
}

.content-container .welcome .welcome-info div .gray-text {
    color: var(--text-color);
}

/* 
****************************************************
==========                          ==========
                draft section
==========                          ==========
****************************************************
*/

.content-container .draft p {
    margin-top: 8px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-container .draft form {
    flex-direction: column;
}

.content-container .draft form textarea {
    height: 200px;
    resize: none;
}

.content-container .draft form input[type="text"],
.content-container .draft form textarea {
    background-color: var(--secondary-background);
    border: none;
}

.content-container .draft form input[type="text"]::placeholder,
.content-container .draft form textarea::placeholder {
    color: var(--border-color);
    text-transform: capitalize;
    transition: var(--transition);
}

.content-container .draft form input[type="text"]:focus,
.content-container .draft form textarea:focus {
    outline-color: #0075ff;
}

.content-container .draft form input[type="text"]:focus::placeholder,
.content-container .draft form textarea:focus::placeholder {
    opacity: 0;
}

/* 
****************************************************
==========                          ==========
                Target section
==========                          ==========
****************************************************
*/

.content-container .target p {
    margin-top: 8px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.target .target-content {
    margin-bottom: 20px;
    display: flex;
    justify-content: left;
    align-items: stretch;
    flex-direction: column;
}

@media (min-width: 575px) {
    .target .target-content {
        align-items: center;
        flex-direction: row;
    }
}

.content-container .target .target-content .target-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    margin-right: 0;
}

@media (min-width: 575px) {
    .content-container .target .target-content .target-icon {
        margin-right: 15px;
        margin-bottom: 0;
    }
}


.content-container .target .target-info {
    flex-direction: column;
    flex: 1;
}

.content-container .target .target-info span:nth-child(1) {
    color: var(--text-color);
}

.content-container .target .target-info span:nth-child(2) {
    margin-top: 8px;
    margin-bottom: 15px;
    font-weight: bold;
}

.content-container .target .target-info .progress-holder,
.content-container .target .target-info .progress-holder .progress {
    height: 4px;
}

.content-container .target-content.target-money .target-info .progress {
    width: 80%;
}

.content-container .target-content.target-project .target-info .progress {
    width: 55%;
}

.content-container .target-content.target-team .target-info .progress {
    width: 75%;
}

.content-container .target .target-info .progress-holder .progress::before {
    position: absolute;
    content: attr(data-progress);
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px;
    background: chocolate;
    color: white;
    border-radius: 6px;
    right: -10px;
    top: -40px;
    z-index: 1;
}

.content-container .target .target-info .progress-holder .progress::after {
    position: absolute;
    content: "";
    border-width: 10px;
    border-style: solid;
    border-color: chocolate transparent transparent transparent;
    right: 1px;
    top: -15px;
}

.content-container .target-content.target-project .progress-holder .progress::before {
    background: var(--orange-color);
}

.content-container .target-content.target-project .progress-holder .progress::after {
    border-color: var(--orange-color) transparent transparent transparent;
}

.content-container .target-content.target-money .progress-holder .progress::before {
    background: var(--color-blue);
}

.content-container .target-content.target-money .progress-holder .progress::after {
    border-color: var(--color-blue) transparent transparent transparent;
}


.content-container .target-content.target-team .progress-holder .progress::before {
    background: var(--green-color);
}

.content-container .target-content.target-team .progress-holder .progress::after {
    border-color: var(--green-color) transparent transparent transparent;
}

/* 
****************************************************
==========                          ==========
                statistics section
==========                          ==========
****************************************************
*/

.statistics h2+p {
    margin-top: 8px;
    margin-bottom: 15px;
}

.statistics .statistics-wrapper {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.statistics .statistics-wrapper .statistics-info {
    border: 1px solid var(--border-color);
    flex-direction: column;
    padding: 30px 20px;
}

/* 
****************************************************
==========                          ==========
                news section
==========                          ==========
****************************************************
*/

.news .new-holder {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.news .new-holder:not(:last-child) {
    border-bottom: 1px solid var(--secondary-background);
}

@media (min-width: 575px) {
    .news .new-holder {
        flex-direction: row;
        text-align: left;
    }
}

.news .new-holder img {
    width: 100px;
    flex-basis: 100px;
}

@media (min-width: 575px) {
    .news .new-holder img {
        margin-right: 15px;
    }
}

.news .new-holder .new-info {
    margin-top: 15px;
}

@media (min-width: 575px) {
    .news .new-holder .new-info {
        margin-top: initial;
        flex: 1;
    }

}

.news .new-holder .news-date {
    padding: 4px 10px;
    background-color: var(--secondary-background);
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 15px;
}

@media (min-width: 575px) {
    .news .new-holder .news-date {
        margin-left: 15px;
        margin-top: initial;
    }
}


/* 
****************************************************
==========                          ==========
                tasks section
==========                          ==========
****************************************************
*/


.tasks .task-holder {
    display: flex;
    align-items: center;
}

.tasks .task-holder:not(:last-child) {
    border-bottom: 1px solid var(--secondary-background);
}

.tasks .task-holder:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.tasks .task-holder i {
    transition: var(--transition);
}

.tasks .task-holder i:hover {
    color: red;
    cursor: pointer;
}

.tasks .task-holder .task-details {
    flex-grow: 1;
    justify-content: center;
    flex-direction: column;
}

/* 
****************************************************
==========                          ==========
                tasks section
==========                          ==========
****************************************************
*/

.search-details {
    padding: 15px 0;
}

.search-details p:nth-child(even) {
    padding: 7px;
}

/* 
****************************************************
==========                          ==========
                tasks section
==========                          ==========
****************************************************
*/


.uploads .upload-details:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--secondary-background);
}

.uploads .upload-details img {
    height: 40px;
    width: 40px;
    margin-right: 15px;
}

.uploads .upload-details .upload-data {
    flex-direction: column;
    flex-grow: 1;
}

.uploads .upload-details .upload-data .username-uploader {
    margin-top: 5px;
}

.uploads .upload-details .file-size {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
}

.uploads .upload-details .file-size .unit {
    margin-left: 3px;
}

/* 
****************************************************
==========                          ==========
                project section
==========                          ==========
****************************************************
*/

.last-project h2 {
    margin-bottom: 30px;
}

.project-progress-list::before {
    content: "";
    position: absolute;
    left: 8px;
    height: 100%;
    width: 2px;
    background-color: var(--color-blue);
}

.project-progress-list li {
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 40px;
}

.project-progress-list li:not(:last-child) {
    margin-bottom: 30px;
}

.project-progress-list li::before {
    position: absolute;
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    outline: 2px solid var(--color-blue);
    background-color: #0075ff;
    left: 0;
}

.project-progress-list li.active::before {
    background-color: var(--color-white);
    animation: flash-circle 3s infinite;
}

@keyframes flash-circle {
    100%, 0% {
        background-color: var(--color-white);
    }

    50% {
        background-color: var(--color-blue);
    }
}

.project-progress-list li.step-stone::before {
    background-color: var(--color-white);
}

.img-project {
    width: 160px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: none;
}

@media (min-width :575px) {
    .img-project {
        display: block;
    }
}

/* 
****************************************************
==========                          ==========
                reminders section
==========                          ==========
****************************************************
*/

.reminders h2 {
    margin-bottom: 30px;
}

.reminders .reminders-list li {
    margin-bottom: 20px;
}

.side-ball {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--color-blue);
    border-radius: 50%;
    position: relative;
    flex-basis: 20px;
}

.side-ball.green {
    background-color: var(--green-color);
}

.side-ball.orange {
    background-color: var(--orange-color);
}

.side-ball.red {
    background-color: red;
}

.reminder-wrapper {
    padding-left: 25px;
    position: relative;
    flex: 1;
}

.reminder-wrapper::after {
    content: "";
    position: absolute;
    height: 100%;
    border-left: 2px solid var(--color-blue);
    top: 0;
    left: 10px;
}

.reminder-wrapper.orange::after {
    border-left: 2px solid var(--orange-color);
}

.reminder-wrapper.green::after {
    border-left: 2px solid var(--green-color);
}

.reminder-wrapper.red::after {
    border-left: 2px solid red;
}

/* 
****************************************************
==========                          ==========
                latest post section
==========                          ==========
****************************************************
*/

.latest-post .latest-post-holder {
    min-height: 180px;
    border-top: 1px solid var(--secondary-background);
    border-bottom: 1px solid var(--secondary-background);
}

.latest-post .latest-post-holder p {
    line-height: 2;
}

.latest-post .latest-user-info img {
    width: 48px;
    height: 48px;
}

.latest-post .latest-post-bottom {
    color: var(--text-color);
}

/* 
****************************************************
==========                          ==========
                social status section
==========                          ==========
****************************************************
*/

.social-item {
    padding-left: 70px;
}

.social-item>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    transition: var(--transition);
}

.social-item>i:hover {
    transform: rotate(-5deg);
}

.social-item.twitter {
    color: #1da1f2;
    background-color: rgba(29, 161, 242, 20%);
}

.social-item.twitter>i, .social-item.twitter a {
    background-color: #1da1f2;
}

.social-item.facebook {
    color: #1877f2;
    background-color: rgba(24, 119, 242, 20%);
}

.social-item.facebook>i, .social-item.facebook a {
    background-color: #1877f2;
}

.social-item.youtube {
    color: #ff0000;
    background-color: rgba(255, 0, 0, 20%);
}

.social-item.youtube>i, .social-item.youtube a {
    background-color: #ff0000;
}

.social-item.linkedin {
    color: #0077b5;
    background-color: rgba(0, 119, 181, 20%);
}

.social-item.linkedin>i, .social-item.linkedin a {
    background-color: #0077b5;
}

.social-status .social-button {
    padding: 5px 10px;
    color: var(--color-white);
}

/* 
****************************************************
==========                          ==========
                projects section
==========                          ==========
****************************************************
*/
.projects {
    margin: 0 20px 20px 20px;
}

.projects .responsive-table {
    overflow-x: auto;
}

.projects table {
    min-width: 1000px;
    width: 100%;
    border-collapse: collapse;
}

.projects table td {
    padding: 15px;
}

.projects table thead td {
    font-weight: bold;
    background-color: var(--secondary-background);
}

.projects table tbody td {
    border-left: 1px solid var(--secondary-background);
    border-bottom: 1px solid var(--secondary-background);
}

.projects table tbody td:last-child {
    border-right: 1px solid var(--secondary-background);
}

.projects table tbody tr {
    transition: var(--transition);
}

.projects table tbody tr:hover {
    background-color: var(--secondary-background);
}

.projects table tbody td .team img {
    width: 32px;
    height: 32px;
    margin-left: -20px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
}

.projects table tbody td .team img:first-child {
    margin-left: initial;
}

.projects table tbody td .table-status {
    display: block;
    color: var(--color-white);
}

.projects table tbody td .table-status {
    padding: 7px 10px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
}

/* 
********************************************************************************************************
                            ==========                          ==========
                                            settings page  section
                            ==========                          ==========
********************************************************************************************************
*/

.settings-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

@media (min-width: 768px) {
    .settings-container {
        grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    }
}

/* 
****************************************************
==========                          ==========
                projects section
==========                          ==========
****************************************************
*/

.site-control .control-holder {
    justify-content: space-between;
    align-items: center;
}

.toggle-switch {
    width: 70px;
    height: 32px;
    background: #ccc;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--secondary-background);
    transition: var(--transition);
}

.toggle-checkbox:checked+.toggle-switch {
    background-color: var(--color-blue);
}

.toggle-checkbox:checked+.toggle-switch::before {
    color: var(--color-blue);
    content: "\f00c";
    left: 43px;
}

.toggle-switch::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: white;
    top: 4px;
    left: 6px;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.site-control .close-text {
    width: 100%;
    min-height: 180px;
    resize: none;
    border: 1px solid #cee
}

.site-control .close-text::placeholder {
    color: #888;
    text-transform: capitalize;
    transition: var(--transition);
    font-size: 14px;
}

.site-control .close-text:focus-within {
    outline-color: var(--color-blue);
}

.site-control .close-text:focus-within::placeholder {
    opacity: 0;
}

/* 
****************************************************
==========                          ==========
                general section
==========                          ==========
****************************************************
*/

.general-section .input-control input {
    width: 100%;
    border: 1px solid #ccc;
    transition: var(--transition);
}

.general-section .input-control input:focus {
    border: 1px solid var(--color-blue);
}

.general-section .input-control input:focus-within {
    outline: none;
}

.general-section .input-control input:disabled {
    background-color: var(--secondary-background);
    cursor: no-drop;
    opacity: 0.6;
}

.general-section .input-control .email-input {
    display: inline-flex;
    width: calc(100% - 80px);
}

.change-email {
    cursor: pointer;
    color: var(--color-blue);
}

/* 
****************************************************
==========                          ==========
                security section
==========                          ==========
****************************************************
*/

.security-border-bottom {
    border-bottom: 1px solid #eee;
}

.security-changePass {
    color: var(--color-white);
    background-color: var(--color-blue);
    transition: var(--transition);
}

.security-changePass:hover {
    background-color: var(--color-blue-hover);
}

/* 
****************************************************
==========                          ==========
                security section
==========                          ==========
****************************************************
*/

.security-devices {
    color: black;
    background-color: #eee;
}

/* 
****************************************************
==========                          ==========
                social section
==========                          ==========
****************************************************
*/


.social-box:focus-within i {
    color: black;
}

.social-box i {
    border: 1px solid #ccc;
    background-color: #eee;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    transition: var(--transition);
}

.social-box input {
    border: 1px solid #ccc;
    background-color: #eee;
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    outline: none;
}

.social-box input::placeholder {
    font-size: 14px;
    text-transform: capitalize;
    transition: var(--transition);
}

.social-box input:focus-within::placeholder {
    opacity: 0;
}

.widgets .input-control input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
}


/* 
****************************************************
==========                          ==========
                widgets section
==========                          ==========
****************************************************
*/
.checkbox-label::before {
    width: 18px;
    height: 18px;
    content: "";
    border-radius: 4px;
    background-color: white;
    border: 2px solid var(--text-color);
    position: absolute;
    left: 0;
}

.widgets input[type="checkbox"]+.checkbox-label::after {
    width: 19px;
    height: 19px;
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    color: white;
    background-color: var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    border-radius: 4px;
    font-size: 13px;
    transform: scale(0);
    transition: var(--transition);
}

.widgets input[type="checkbox"]:checked+.checkbox-label::after {
    transform: scale(1) rotate(360deg);
}

/* 
****************************************************
==========                          ==========
                backup section
==========                          ==========
****************************************************
*/

.backup-section .backup-holder {
    border-bottom: 1px solid #eee;
}

.backup-section .input-control input[type="radio"] {
    appearance: none;
}

.backup-section .backup-holder .input-control input[type="radio"]:checked+.radio-label::before {
    border-color: var(--color-blue);
}

.backup-section .backup-holder .input-control .radio-label::before {
    position: absolute;
    content: "";
    left: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
}

.backup-section .backup-holder .input-control input[type="radio"]+.radio-label::after {
    position: absolute;
    content: "";
    left: 4px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: var(--color-blue);
    bottom: 2px;
    transform: scale(0);
    transition: var(--transition);
}

.backup-section .backup-holder .input-control input[type="radio"]:checked+.radio-label::after {
    transform: scale(1);
}

.backup-section .servers-holder {
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.backup-section .servers-holder .input-control {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.backup-section .servers-holder .input-control label {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #ccc;
    border-radius: 10px;
    transition: var(--transition);
}

.backup-section .servers-holder .input-control input[type="radio"]:checked+label {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

/* 
********************************************************************************************************
                            ==========                          ==========
                                            Profile page  section
                            ==========                          ==========
********************************************************************************************************
*/
.profile-user {
    flex-direction: column;
}

@media(min-width: 992px) {
    .profile-user {
        flex-direction: row;
    }
}

.profile-user .profile-avatar-section {
    flex-basis: 300px;
}

@media(min-width: 992px) {
    .profile-user .profile-avatar-section {
        border-right: 1px solid #eee;
    }
}

.profile-user .profile-information-section {
    flex-basis: calc(100% - 300px);
}

.profile-user .profile-information-section span {
    display: inline-block;
}

.profile-user .profile-information-section .profile-box {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

@media(min-width: 992px) {
    .profile-user .profile-information-section .profile-box {
        padding: 20px;
    }
}

.profile-user .profile-information-section .profile-box h4 {
    text-align: center;
}

@media(min-width: 992px) {
    .profile-user .profile-information-section .profile-box h4 {
        text-align: left;
    }
}

.profile-user .profile-information-section .profile-box:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.profile-user .profile-information-section .profile-box>div {
    min-width: 200px;
}

.profile-user .profile-avatar-section img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.profile-user .profile-avatar-section .level-progress {
    height: 6px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.profile-user .profile-avatar-section .level-progress span {
    position: absolute;
    height: 100%;
    background-color: var(--color-blue);
    left: 0;
    top: 0;
}

.profile-user-skills {
    flex-basis: clamp(300px, 50%, 600px);
    align-self: flex-start;
}

.profile-user-activity {
    flex-basis: 100%
}

.profile-user-data {
    flex-direction: column;
}

@media(min-width: 992px) {
    .profile-user-data {
        flex-direction: row;
    }
}

.user-skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.user-skill-list li {
    padding: 15px;
    background-color: #eee;
    border-radius: 12px;
    width: -moz-fit-content;
    width: fit-content;
}

.profile-user-activity .activity {
    gap: 20px;
    flex-direction: column;
    text-align: center;
}

@media(min-width: 768px) {
    .profile-user-activity .activity {
        flex-direction: row;
        text-align: left;
    }

    .profile-user-activity .profile-user-date {
        margin-left: auto;
    }
}

.profile-user-activity .activity:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-user-activity .activity img {
    height: 60px;
    width: 60px;
}


/* 
********************************************************************************************************
                            ==========                          ==========
                                            Projects page  section
                            ==========                          ==========
********************************************************************************************************
*/

.projects-container {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
}

@media (min-width: 992px) {
    .projects-container {
        grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    }
}

.project h4 {
    margin-top: 15px;
}

@media (min-width: 576px) {
    .project h4 {
        margin-top: 0;
    }
}

.project .project-date {
    right: 18px;
    top: 16px;
}

.project .project-team {
    margin-top: 40px;
}

.project .project-team a:not(:first-child) {
    margin-left: -23px;
}

.project .project-team a {
    display: inline-block;
    position: relative;
}

.project .project-team a:hover {
    z-index: 1;
}

.project .project-team a img {
    max-width: 100%;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 4px solid var(--color-white)
}

.project-category {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    flex-wrap: wrap;
}

.project-category span {
    background-color: #e4e4e4;
    padding: 5px 10px;
    border-radius: 4px;
}

.project .project-progress-cost {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.project .project-progress-cost .project-progress-holder {
    height: 8px;
    width: 150px;
    border-radius: 6px;
}

@media (min-width: 425px) {
    .project .project-progress-cost {
        flex-direction: row;
    }

    .project .project-progress-cost .project-progress-holder {
        width: 180px;
    }
}

@media (min-width: 576px) {
    .project .project-progress-cost .project-progress-holder {
        width: 250px;
    }
}

.project .project-progress-cost .project-progress-holder>span {
    height: 100%;
    border-radius: 6px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

/* 
********************************************************************************************************
                            ==========                          ==========
                                            Projects page  section
                            ==========                          ==========
********************************************************************************************************
*/
.courses-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (min-width: 768px) {
    .courses-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.courses-container .course .course-cover {
    max-width: 100%;
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.courses-container .course .course-instructor {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 50%;
    border: 4px solid var(--color-white);
}

.course .course-content p {
    line-height: 1.6;
}

.course .course-info-holder {
    border-top: 1px solid #eee;
}

.course .course-info-holder .course-info {
    position: absolute;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 6px;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
}

/* 
********************************************************************************************************
                            ==========                          ==========
                                            Projects page  section
                            ==========                          ==========
********************************************************************************************************
*/

.friends-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (min-width: 768px) {
    .friends-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.friend .friend-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.friend .friend-contact a {
    background-color: #eee;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.friend .friend-contact a i {
    font-size: 18px;
    transition: var(--transition);
    color: #666;
}

.friend .friend-contact a:not(:first-child) {
    margin-left: 10px;
}

.friend .friend-contact a:hover i {
    color: var(--color-blue);
}


.friend .friend-info img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin: 10px 0;
}

.friend .friend-details {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 15px 0;
    padding: 15px 0;
}

.friend .friend-details .friend-vip {
    position: absolute;
    font-size: 34px;
    right: 20px;
    top: 50%;
    color: var(--orange-color);
    transform: translateY(-50%);
    opacity: 0.2;
    font-weight: bold;
}

.friend-user-container {
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .friend-user-container {
        flex-direction: row;
    }

}

.friend-remove-profile {
    color: white;
    gap: 10px;
}

.friend-remove-profile span {
    padding: 7px 15px;
    border-radius: 6px;
}

/* 
********************************************************************************************************
                            ==========                          ==========
                                            files page  section
                            ==========                          ==========
********************************************************************************************************
*/
.files-container {
    flex-direction: column;
}

@media (min-width: 576px) {
    .files-container {
        flex-direction: row-reverse;
        align-items: flex-start;

    }
}

.files-status {
    min-width: 210px;
}

@media (min-width: 375px) {
    .files-status {
        min-width: 240px;
    }
}

@media (min-width: 768px) {
    .files-status {
        min-width: 260px;
    }
}

.file-wrapper {
    flex: 1;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.file i {
    top: 15px;
    left: 15px;
}

.file-info {
    border-top: 1px solid #eee;
}

.file-img-holder {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}

.file-status {
    border: 1px solid #eee;
}

.file-status .file-icon {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.files-information {
    display: flex;
    flex-direction: column;
}

.file-status .files-total-size {
    margin-left: auto;
}

.files-status .upload-button {
    color: var(--color-white);
    padding: 10px 15px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: var(--transition);
}

.files-container .files-status .upload-button:hover {
    background-color: var(--color-blue-hover);
}

.files-container .files-status .upload-button:hover i {
    animation: arrow-up 0.7s infinite;
}

@keyframes arrow-up {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* 
********************************************************************************************************
                            ==========                          ==========
                                            plan page  section
                            ==========                          ==========
********************************************************************************************************
*/

.plans-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media (min-width: 575px) {
    .plans-container {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

.plan .plan-header {
    color: var(--color-white);
    border: 2px solid var(--color-white);
    outline: 2px solid var(--green-color);
}

.plan .plan-header.bg-blue {
    outline: 2px solid var(--color-blue);
}

.plan .plan-header.bg-orange {
    outline: 2px solid var(--orange-color);
}

.plan .plan-header h2 {
    padding-bottom: 10px;
}

.plan .plan-price sup {
    font-size: 25px;
    padding-right: 5px;
    top: -15px;
}

.plan .plan-price span {
    font-size: 40px;
}

.plan-list-holder ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.plan-list-holder ul li p {
    display: inline-flex;
    flex: 1;
}

.plan-list-holder ul li i.plan-info {
    color: #888;
    margin-left: auto;
}

.plan a {
    color: white;
    display: inline-block;
    padding: 10px 15px;
}