:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --gray-color: gray;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

::-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);
}

body {
    font-family: "Open Sans", sans-serif;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

*:focus {
    outline: none;
}

.page {
    display: flex;
}

/* Start Page  */
/* Start side bar  */
.page .side-bar {
    width: 220px;
    background-color: white;
    text-align: center;
    position: relative;
    min-height: 100vh;
    transition: .3s;
    border-right: 1px solid #ccc;
}

@media(max-width:767px) {
    .page .side-bar {
        margin-top: 0;
    }
}

.page .side-bar.close {
    width: 65px;
}



@media(max-width: 767px) {
    .page .side-bar {
        width: 65px;
    }
}

.page .side-bar h4 {
    font-size: 18px;
    margin: 50px 0 30px;
    position: relative;
}

.page .side-bar.close h4 {
    font-size: 12px;
    margin: 40px 0 20px;
}

.page .side-bar h4::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 1px;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    background-color: black;
}

.page .side-bar h4::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    background-color: black;
    border-radius: 50%;
    border: 3px solid white;
}

.page .side-bar.close h4::before,
.page .side-bar.close h4::after {
    display: none;
}

@media(max-width: 767px) {
    .page .side-bar h4 {
        font-size: 12px;
        margin: 10px 0;
    }

    .page .side-bar h4::before,
    .page .side-bar h4::after {
        display: none;
    }
}

.page .side-bar .links {
    margin: 15px;
    padding: 0;
    text-align: left;
}


.page .side-bar .links li {
    margin-bottom: 7px;
    border-radius: 5px;
    transition: .3s;
}

@media(max-width:767px) {
    .page .side-bar .links li {
        width: 37px;
    }
}

.page .side-bar .links li:hover,
.page .side-bar .links li.active {
    background-color: #eee;

}

.page .side-bar .links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 35px;
    font-size: 14px;
    color: black;
    border-radius: 4px;
    padding-left: 9px;

}


.page .side-bar .links li a i {
    font-size: 18px;
    /* مهم جداً */
    display: inline-flex;
    /* مهم */
    justify-content: center;
    align-items: center;
}

@media(max-width: 767px) {
    .page .side-bar .links li a span {
        display: none;
    }
}

.page .side-bar .links.hide li span {
    display: none;
}


.side-bar .side-bar-control {
    position: absolute;
    left: 50%;
    top: 3px;
    transform: translateX(-50%);
    color: #2563EB;
    width: 30px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #fbfdff;
    border: 2px solid #93C5FD;
    margin-top: 5px;
    z-index: 1000;
}

@media(max-width:767px) {
    .side-bar .side-bar-control {
        display: none;
    }
}

/* Start side bar  */

/* Start Header  */
.page .page-content {
    flex: 1;
    background-color: #f1f5f9;
    overflow: hidden;
}

.page .page-content.notification {
    overflow: visible;
    min-height: 100vh;
}

.page .page-content .header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: white;
}

.page .page-content .header .search {
    position: relative;
}

.page .page-content .header .search::before {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
    z-index: 1;
}

.page .page-content .header .search input {
    padding: 8px 8px 8px 30px;
    width: 160px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: .3s;
}


.page .page-content .header .search input::placeholder {
    color: gray;
    font-size: 13px;
}

.page .page-content .header .search input:focus {
    width: 200px;
}

.page .page-content .header .search input:focus::placeholder {
    color: transparent;
    transition: .3s;
}

.page .page-content .header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.page .page-content .header .logo i {
    cursor: pointer;
    color: color;
}

.page .page-content .header .logo .menu-nota {
    position: absolute;
    top: 40px;
    left: -575px;
    background-color: #f6f6f6;
    padding: 15px;
    border-radius: 8px;
    width: 600px;
    display: none;
    z-index: 10000;
}


@media(max-width:767px) {
    .page .page-content .header .logo .menu-nota {
        width: 260px;
        left: -235px;
    }
}

.page .page-content .header .logo .menu-nota.show {
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #E2E8F0;
}

.page .page-content .header .logo .menu-nota::before {
    content: "";
    position: absolute;
    border-style: solid;
    border-width: 8px;
    border-color: transparent transparent #e9e9e9 transparent;
    top: -16px;
    right: 8px;
}

.page .page-content .header .logo .menu-nota .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 0 0;
}

.page .page-content .header .logo .menu-nota span.readAll,
.page .page-content .header .logo .menu-nota a {
    height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
}

@media(max-width:767px) {

    .page .page-content .header .logo .menu-nota span.readAll,
    .page .page-content .header .logo .menu-nota a {
        font-size: 12px;
        height: 24px;
    }
}

.page .page-content .header .logo .menu-nota span.readAll {
    background-color: transparent;
    border: 1px solid #CBD5E1;
    color: #334155;
}

.page .page-content .header .logo .menu-nota span.readAll:hover {
    background: #F1F5F9;
    border-color: #94A3B8;
}

.page .page-content .header .logo .menu-nota .details a {
    background: #2563EB;
    border: 1px solid #2563EB;
    color: #fff;
}

.page .page-content .header .logo .menu-nota .details a:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
}

.page .page-content .header .logo .menu-nota .menu li {
    height: 40px;
}

/* .page .page-content .header .logo .menu-nota .menu li:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #2563EB;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 12px;
} */

.page .page-content .header .logo .menu-nota .menu li:hover {
    background-color: #F1F5F9;
}

.page .page-content .header .logo .menu-nota .menu li:not(:first-child) {
    padding: 10px 0;
}


.page .page-content .header .logo .menu-nota .menu li:first-child {
    padding-bottom: 10px;
}

.page .page-content .header .logo .menu-nota .menu li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dedede;
    font-size: 15px;
}



.page .page-content .header .logo .menu-nota .menu li span:first-child {
    font-weight: bold;
}

.page .page-content .header .logo .menu-nota .menu li span:last-child {
    font-size: 12px;
    color: #64748B;
}


@media(max-width:767px) {
    .page .page-content .header .logo .menu-nota .menu li span:first-child {
        font-size: 12px;
    }

    .page .page-content .header .logo .menu-nota .menu li span:last-child {
        font-size: 10px;
    }
}

.overlayNota {
    position: fixed;
    z-index: 1000;
    background-color: transparent;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.page .page-content .header .logo .menu-nota.read .menu li {
    opacity: 0.3;
}

.page .page-content .header .logo::before {
    content: attr(data-notification);
    position: absolute;
    left: 11px;
    top: 3px;
    width: 17px;
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DC2626;
    /* color: red; */
    border: 1px solid #e2f0ff;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.page .page-content .header .logo.hide::before {
    display: none;
}

.page .page-content .header .logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

/* End Header  */

/* Start Wrapper  */
.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
    padding: 30px 15px 15px 15px;
    margin: auto;
}

@media (max-width: 767px) {
    .wrapper {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        padding: 10px;
    }
}

/* End Wrapper  */
/* Start Dashboard Page*/
.start-page h1 {
    position: relative;
    padding-left: 20px;
    width: fit-content;
}

.start-page h1::before {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: black;
}

.start-page h1::after {
    content: "";
    position: absolute;
    left: 60px;
    bottom: -10px;
    width: 90px;
    height: 3px;
    background-color: white;
}

/* Start Welcome  */
.wrapper .welcome {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.wrapper .welcome .top {
    background-color: #eee;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}


.wrapper .welcome .top .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.wrapper .welcome .top .text span {
    color: var(--gray-color);
}

.wrapper .welcome .top .image img {
    width: 200px;
}

.wrapper .welcome .bottom {
    position: relative;
}

.wrapper .welcome .bottom .avatar {
    position: absolute;
    top: -91px;
    left: 30px;
}

.wrapper .welcome .bottom .avatar img {
    width: 64px;
    height: 64px;
    padding: 2px;
    background: transparent;
    border-radius: 50%;
    border: 3px solid white;

}

.wrapper .welcome .bottom .info {
    margin: 60px 0 0;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.wrapper .welcome .bottom .info span {
    display: block;
}

.wrapper .welcome .bottom .info span:last-child {
    color: var(--gray-color);
    margin-top: 5px;
    font-size: 14px;
}

.wrapper .welcome .bottom .btn {
    text-align: right;
    margin: 20px 20px 40px 0;
}

.wrapper .welcome .bottom .btn a {
    background-color: var(--blue-color);
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/* End Welcome  */

/* Start Quick Draft  */
.quick-draft {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.quick-draft .text {
    margin-bottom: 30px;
}

.quick-draft .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.quick-draft .text span {
    color: var(--gray-color);
    font-size: 15px;
}

.quick-draft form input,
.quick-draft form textarea {
    width: 100%;
    background-color: #eee;
    border: none;
    border-radius: 6px;
}

.quick-draft form input:focus,
.quick-draft form textarea:focus {
    outline: none;
}

.quick-draft form input::placeholder,
.quick-draft form textarea::placeholder {
    font-size: 14px;
}

.quick-draft form input {
    margin-bottom: 20px;
    padding: 8px;
}

.quick-draft form textarea {
    padding: 8px;
    resize: none;
    height: 180px;
}

.quick-draft .save {
    margin: 20px 0 0;
    text-align: right;
}

.quick-draft .save button {
    background-color: var(--blue-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

/* End Quick Draft  */

/* Start Yearly Targets  */
.yearly-targets {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.yearly-targets .text {
    margin-bottom: 30px;
}

.yearly-targets .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.yearly-targets .text span {
    color: var(--gray-color);
    font-size: 15px;
}

.yearly-targets .targets-content .target-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.yearly-targets .targets-content .target-box .icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yearly-targets .targets-content .target-box.blue .icon {
    background-color: rgb(0 117 255 / 20%);
    color: var(--blue-color);
}

.yearly-targets .targets-content .target-box.orange .icon {
    background-color: rgb(245, 158, 11, 20%);
    color: var(--orange-color);
}

.yearly-targets .targets-content .target-box.green .icon {
    background-color: rgb(34, 197, 94, 20%);
    color: var(--green-color);
}

.yearly-targets .targets-content .target-box .details {
    flex: 1;
}

.yearly-targets .targets-content .target-box .details p {
    margin: 0 0 5px;
    font-size: 14px;
    color: var(--gray-color);
}

.yearly-targets .targets-content .target-box .details span {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
}

.yearly-targets .targets-content .target-box .progress {
    width: 100%;
    height: 2px;
}

.yearly-targets .targets-content .target-box.blue .progress {
    background-color: rgb(0 117 255 / 20%);
}

.yearly-targets .targets-content .target-box.orange .progress {
    background-color: rgb(245, 158, 11, 20%);
}

.yearly-targets .targets-content .target-box.green .progress {
    background-color: rgb(34, 197, 94, 20%);
}

.yearly-targets .targets-content .target-box .progress span {
    height: 100%;
    width: 0;
    transition: 3s;
    position: relative;
}


.yearly-targets .targets-content .target-box.blue .progress span {
    background-color: var(--blue-color);
}

.yearly-targets .targets-content .target-box.orange .progress span {
    background-color: var(--orange-color);
}

.yearly-targets .targets-content .target-box.green .progress span {
    background-color: var(--green-color);
}

.yearly-targets .targets-content .target-box .progress span::before {
    content: attr(data-progress);
    position: absolute;
    right: -15px;
    top: -31px;
    padding: 4px;
    font-size: 12px;
    border-radius: 4px;
    color: white;
    text-align: center;
}

.yearly-targets .targets-content .target-box .progress span::after {
    content: "";
    border-style: solid;
    border-width: 8px;
    position: absolute;
    left: right;
    bottom: -4px;
    right: -7px;
}

.yearly-targets .targets-content .target-box.blue .progress span::before {
    background-color: var(--blue-color);
}

.yearly-targets .targets-content .target-box.blue .progress span::after {
    border-color: var(--blue-color) transparent transparent transparent;
}

.yearly-targets .targets-content .target-box.orange .progress span::before {
    background-color: var(--orange-color);
}

.yearly-targets .targets-content .target-box.orange .progress span::after {
    border-color: var(--orange-color) transparent transparent transparent;
}

.yearly-targets .targets-content .target-box.green .progress span::before {
    background-color: var(--green-color);
}

.yearly-targets .targets-content .target-box.green .progress span::after {
    border-color: var(--green-color) transparent transparent transparent;
}

/* End Yearly Targets  */

/* Start Tickets Statistics  */
.tickets-statistics {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.tickets-statistics .text {
    margin-bottom: 20px;
}

.tickets-statistics .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.tickets-statistics .text span {
    color: var(--gray-color);
    font-size: 15px;
}

.tickets-statistics .tickets-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.tickets-statistics .tickets-content .tickets-box {
    padding: 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    gap: 10px;
}

.tickets-statistics .tickets-content .tickets-box .number {
    font-size: 24px;
    font-weight: bold;
}

.tickets-statistics .tickets-content .tickets-box .text-span {
    font-size: 14px;
    color: var(--gray-color);

}

.tickets-statistics .tickets-content .tickets-box.orange i {
    color: var(--orange-color);
}

.tickets-statistics .tickets-content .tickets-box.blue i {
    color: var(--blue-color);
}

.tickets-statistics .tickets-content .tickets-box.green i {
    color: var(--green-color);
}

.tickets-statistics .tickets-content .tickets-box.red i {
    color: var(--red-color);
}

/* End Tickets Statistics  */

/* Start Latest News  */
.latest-news {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.latest-news .text {
    margin-bottom: 15px;
}

.latest-news .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.latest-news .news-box .box {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media(max-width: 767px) {
    .latest-news .news-box .box {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.latest-news .news-box .box:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.latest-news .news-box .box img {
    width: 100px;
    border-radius: 4px;
}

.latest-news .news-box .box .info {
    flex: 1;
}

.latest-news .news-box .box .info p {
    margin: 0 0 5px;
    font-weight: bold;
}

.latest-news .news-box .box .info span {
    font-size: 14px;
    color: var(--gray-color);
}

.latest-news .news-box .box .date {
    font-size: 13px;
    background-color: #eee;
    padding: 6px 8px;
    border-radius: 6px;
}

/* End Latest News  */

/* Start Latest Tasks  */
.latest-tasks {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.latest-tasks .text {
    margin-bottom: 15px;
}

.latest-tasks .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.latest-tasks .tasks-box .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.latest-tasks .tasks-box .box.disable {
    opacity: 0.5;
}

.latest-tasks .tasks-box .box:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.latest-tasks .tasks-box .box .info p {
    margin: 0 0 5px;
    font-weight: bold;
}

.latest-tasks .tasks-box .box .info span {
    color: var(--gray-color);
}

.latest-tasks .tasks-box .box.disable .info p,
.latest-tasks .tasks-box .box.disable .info span {
    text-decoration: line-through;
}

.latest-tasks .tasks-box .box .icon .delete {
    cursor: pointer;
    transition: .3s;
}

.latest-tasks .tasks-box .box .icon .delete:not(.disable):hover {
    color: red;
}

/* End Latest Tasks  */

/* Start Top Search Items */
.top-search {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.top-search .text {
    margin-bottom: 15px;
}

.top-search .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.top-search .heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.top-search .heading span {
    color: var(--gray-color);
}

.top-search .items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-search .items:not(:last-child) {
    margin-bottom: 5px;
}

.top-search .items span {
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #eee;
}

/* End Top Search Items */

/* Start Latest Uploads */
.latest-uploads {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.latest-uploads .text {
    margin-bottom: 15px;
}

.latest-uploads .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.latest-uploads .uploads-box .box {
    display: flex;
    align-items: center;
    gap: 10px;

}

.latest-uploads .uploads-box .box:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.latest-uploads .uploads-box .box img {
    width: 40px;
    transition: .3s;
}

.latest-uploads .uploads-box .box:hover img {
    rotate: 6deg;
}

.latest-uploads .uploads-box .box .info {
    flex: 1;
}

.latest-uploads .uploads-box .box .info p {
    margin: 0 0;
}

.latest-uploads .uploads-box .box .info span {
    color: var(--gray-color);
}

.latest-uploads .uploads-box .box .size {
    font-size: 13px;
    padding: 4px 6px;
    background-color: #eee;
    border-radius: 6px;
}

/* End Latest Uploads */

/* Start Last Project Progress */
.latest-project {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.latest-project .text {
    margin-bottom: 20px;
}

.latest-project .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.latest-project .latest-project-content {
    display: flex;
    justify-content: space-between;
    align-items: self-end;
}

.latest-project .latest-project-content ul {
    position: relative;
}

.latest-project .latest-project-content ul::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--blue-color);
}

.latest-project .latest-project-content ul li {
    position: relative;
    margin-left: 30px;
}

.latest-project .latest-project-content ul li::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--blue-color);
    border: 2px solid white;
    border-radius: 50%;
    outline: 2px solid var(--blue-color);
}

.latest-project .latest-project-content ul li.active::before {
    animation: flash 1.5s infinite;
}

@keyframes flash {

    0% {
        background-color: white;
    }

    50% {
        background-color: var(--blue-color);
    }

    100% {
        background-color: white;
    }
}

.latest-project .latest-project-content ul li.passive::before {
    background-color: white;
}

.latest-project .latest-project-content ul li:not(:last-child) {
    margin-bottom: 30px;
}

.latest-project .latest-project-content .image img {
    width: 160px;
    opacity: 0.1;
}

@media (max-width:767px) {
    .latest-project .latest-project-content .image img {
        display: none;
    }
}

/* End Last Project Progress */

/* Start Reminders */
.reminders {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.reminders .text {
    margin-bottom: 30px;
}

.reminders .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.reminders .reminders-content .box {
    margin-bottom: 20px;
    margin-left: 40px;
    position: relative;
}

.reminders .reminders-content .box::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 2px;
    height: 100%;
}

.reminders .reminders-content .box.blue::before {
    background-color: var(--blue-color);
}

.reminders .reminders-content .box.green::before {
    background-color: var(--green-color);
}

.reminders .reminders-content .box.orange::before {
    background-color: var(--orange-color);
}

.reminders .reminders-content .box.red::before {
    background-color: var(--red-color);
}

.reminders .reminders-content .box::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: -46px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.reminders .reminders-content .box.blue::after {
    background-color: var(--blue-color);
}

.reminders .reminders-content .box.green::after {
    background-color: var(--green-color);
}

.reminders .reminders-content .box.orange::after {
    background-color: var(--orange-color);
}

.reminders .reminders-content .box.red::after {
    background-color: var(--red-color);
}

.reminders .reminders-content .box span {
    display: block;
    font-size: 14px;
}

.reminders .reminders-content .box span:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.reminders .reminders-content .box span:last-child {
    color: var(--gray-color);
}

/* End Reminders */

/* Start Latest Post */
.latest-post {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.latest-post .text {
    margin-bottom: 30px;
}

.latest-post .text h4 {
    margin: 0 0 5px;
    font-size: 24px;
}

.latest-post .post-content .username {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.latest-post .post-content .username img {
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.latest-post .post-content .username .details span {
    display: block;
}

.latest-post .post-content .username .details .name {
    font-weight: bold;
    margin-bottom: 5px;
}

.latest-post .post-content .username .details .time {
    color: var(--gray-color);
}

.latest-post .post-content .post-text {
    text-transform: capitalize;
    margin: 30px 0;
    line-height: 1.6;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .latest-post .post-content .post-text {
        text-align: center;
        margin-bottom: 30px;
    }
}

.latest-post .post-content .interaction {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.latest-post .post-content .interaction span {
    color: var(--gray-color);
}

.latest-post .post-content .interaction i.like {
    color: var(--red-color);
}

.latest-post .post-content .interaction i.comment {
    color: var(--blue-color);
}

/* End Latest Post */

/* Start Social Media Stats */
.social-media {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.social-media .text {
    margin-bottom: 30px;
}

.social-media .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.social-media .webs-content .box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-media .webs-content .box:not(:last-child) {
    margin-bottom: 15px;
}

.social-media .webs-content .box.twitter {
    background-color: rgb(29 161 242 / 20%);
    color: #1da1f2;
}

.social-media .webs-content .box.facebook {
    background-color: rgb(24 119 242 / 20%);
    color: #1da1f2;
}

.social-media .webs-content .box.youtube {
    background-color: rgb(255 0 0 / 20%);
    color: red;
}

.social-media .webs-content .box.linkedin {
    background-color: rgb(0 119 181 / 20%);
    color: #0077b5;
}

.social-media .webs-content .box .icon i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: .3s
}

.social-media .webs-content .box .icon i:hover {
    rotate: 6deg;
}

.social-media .webs-content .box.twitter .icon i {
    background-color: #1da1f2;
}

.social-media .webs-content .box.facebook .icon i {
    background-color: #1877f2;
}

.social-media .webs-content .box.youtube .icon i {
    background-color: #ff0000;
}

.social-media .webs-content .box.linkedin .icon i {
    background-color: #0077b5;
}

.social-media .webs-content .box .details {
    flex: 1;
}

.social-media .webs-content .box button {
    margin-right: 15px;
    padding: 6px 8px;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}


.social-media .webs-content .box.twitter button {
    background-color: #1da1f2;
}

.social-media .webs-content .box.facebook button {
    background-color: #1877f2;
}

.social-media .webs-content .box.youtube button {
    background-color: #ff0000;
}

.social-media .webs-content .box.linkedin button {
    background-color: #0077b5;
}

/* End Social Media Stats */

/* Start Table  */
.projects {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 0 20px 20px 20px;
}

.projects .text {
    margin-bottom: 20px;
}

.projects .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.projects .responsive-table {
    overflow-x: auto;
}

.projects table {
    width: 100%;
    min-width: 1000px;
    border-spacing: 0;
}

.projects table thead th {
    background-color: #eee;
    padding: 15px;
    text-align: left;
}

.projects table td {
    padding: 15px;
    border: 1px solid #f5f5f5;
    transition: .3s;
}

.projects table tr:hover td {
    background-color: #f5f5f5;
}

.projects table tbody td img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.projects table tbody td img:not(:first-child) {
    margin-left: -20px;
}

.projects table tbody td:last-child span {
    padding: 4px 10px;
    color: white;
    border-radius: 6px;
    font-size: 14px;
}

.projects table tbody td:last-child span.orange {
    background-color: var(--orange-color);
}

.projects table tbody td:last-child span.blue {
    background-color: var(--blue-color);
}

.projects table tbody td:last-child span.green {
    background-color: var(--green-color);
}

.projects table tbody td:last-child span.red {
    background-color: var(--red-color);
}

/* End Table  */

/* End Dashboard Page*/

/* Start Settings Page */

/* Start Site Control  */
.site-control {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.site-control .text {
    margin-bottom: 30px;
}

.site-control .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.site-control .text>span {
    font-size: 15px;
    color: var(--gray-color);
}

.site-control .control-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.site-control .control-content .details span {
    display: block;
}

.site-control .control-content .details span:first-child {
    margin-bottom: 5px;
}

.site-control .control-content .details span:last-child {
    color: var(--gray-color);
    font-size: 13px;
}

/* General Format Of Button  */
.toggle-checkbox {
    appearance: none;
    -webkit-appearance: none;
}

.toggle-switch {
    width: 78px;
    height: 32px;
    border-radius: 16px;
    background-color: #ccc;
    cursor: pointer;
    position: relative;
    transition: .3s;
}

.toggle-switch::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-color: white;
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    font-size: 13px;
    color: #AAA;
    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);
}

/* General Format Of Button  */
.site-control textarea {
    resize: none;
    height: 150px;
    width: 100%;
    border-color: #ccc;
    border-radius: 6px;
    padding: 10px;
}


.site-control textarea::placeholder {
    font-size: 14px;
}

/* End Site Control  */

/* Start General Info  */
.general-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.general-info .text {
    margin-bottom: 30px;
}

.general-info .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.general-info .text span {
    font-size: 15px;
    color: var(--gray-color);
}

.general-info form .first-name,
.general-info form .last-name {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.general-info form .email-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.general-info form .first-name span,
.general-info form .last-name span,
.general-info form .email .email-content span {
    font-size: 14px;
    color: var(--gray-color);
}

.general-info form input {
    padding: 8px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 4px;
}

.general-info form input[type="email"] {
    background-color: rgba(104, 173, 210, 0.2);
    cursor: not-allowed;
    color: #bcbcbc;
}

.general-info form input::placeholder {
    font-size: 14px;
}

.general-info form .email {
    display: flex;
    align-items: center;
    gap: 15px;
}

.general-info form .email .change {
    margin-top: 22px;
    margin-right: 4px;
}

.general-info form .email .change a {
    color: var(--blue-color);
}

/* End General Info  */

/* Start Security Info */
.security-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.security-info .text {
    margin-bottom: 30px;
}

.security-info .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.security-info .text span {
    font-size: 15px;
    color: var(--gray-color);
}

.security-info .security-box .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.security-info .security-box .box:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.security-info .security-box .box .content span {
    display: block;
}

.security-info .security-box .box .content span:first-child {
    margin-bottom: 5px;
}

.security-info .security-box .box .content span:last-child {
    font-size: 13px;
    color: var(--gray-color);
}

.security-info .security-box .box .change,
.security-info .security-box .box .devices {
    padding: 4px 8px;
    border-radius: 6px;
}

.security-info .security-box .box .change {
    background-color: var(--blue-color);
}

.security-info .security-box .box .change a {
    color: white;
}

.security-info .security-box .box .devices {
    background-color: #eee;
}

.security-info .security-box .box .devices a {
    color: black;
}

/* End Security Info */

/* Start Social Info  */
.social-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.social-info .text {
    margin-bottom: 20px;
}

.social-info .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.social-info .text span {
    color: var(--gray-color);
    font-size: 15px;
}

.social-info form .box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    flex-direction: row-reverse;
}

.social-info form .box:not(:last-child) {
    margin-bottom: 20px;

}

.social-info form .box i {
    color: var(--gray-color);
    font-size: 18px;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-right: 1px solid #ddd;
    transition: .3s;
}

.social-info form .box input {
    flex: 1;
    padding: 8px;
    background-color: #f6f6f6;
    border: none;
}

.social-info form .box input::placeholder {
    font-size: 14px;
}

.social-info form .box input:focus+i {
    color: black;
}

/* End Social Info  */

/* Start Widgets Control */
.widgets-control {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.widgets-control .text {
    margin-bottom: 20px;
}

.widgets-control .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.widgets-control .text span {
    color: var(--gray-color);
    font-size: 15px;
}


.widgets-control form .choice:not(:last-child) {
    margin-bottom: 20px;
}

.widgets-control form .choice label {
    cursor: pointer;
}

.widgets-control form .choice input {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    margin-left: 25px;
}

.widgets-control form .choice input::before {
    content: "";
    position: absolute;
    left: -25px;
    top: -13px;
    /* transform: translateY(-50%); */
    width: 15px;
    height: 15px;
    border: 2px solid var(--gray-color);
    border-radius: 4px;
}

.widgets-control form .choice input:checked::before {
    border-color: var(--blue-color);
}

.widgets-control form .choice input::after {
    font-family: var(--fa-style-family-classic);
    content: "";
    font-weight: 900;
    position: absolute;
    top: -13px;
    left: -24px;
    font-size: 12px;
    color: white;
    border-radius: 4px;
    transition: 0.3s;
    width: 0;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(360deg);
}

.widgets-control form .choice input:checked::after {
    background-color: var(--blue-color);
    content: "\f00c";
    rotate: 0deg;
    width: 18px;
    height: 18px;
    transform: rotate(0);
}

/* End Widgets Control */

/* Start Backup Manager */
.backup-manager {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.backup-manager .text {
    margin-bottom: 20px;
}

.backup-manager .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.backup-manager .text span {
    color: var(--gray-color);
    font-size: 15px;
}

.backup-manager form .radio1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.backup-manager form .radio1 .box {
    margin-bottom: 15px;
}

.backup-manager form .radio1 .box label {
    cursor: pointer;
}

.backup-manager form .radio1 .box input {
    appearance: none;
    -webkit-appearance: none;
    padding-left: 25px;
    position: relative;
}

.backup-manager form .radio1 .box input::before {
    content: "";
    position: absolute;
    left: 0;
    top: -16px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 2px solid #AAA;
}

.backup-manager form .radio1 .box input::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    left: 4px;
    top: -12px;
    transition: .3s;
}

.backup-manager form .radio1 .box input:checked:before {
    border-color: var(--blue-color);
}

.backup-manager form .radio1 .box input:checked:after {
    width: 16px;
    height: 16px;
    background-color: var(--blue-color);
}

.backup-manager form .radio2 {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}


.backup-manager form .radio2 .box {
    flex: 1;
}

@media(max-width: 767px) {
    .backup-manager form .radio2 {
        flex-direction: column;
    }

    .backup-manager form .radio2 .box {
        flex: 1;
    }
}

.backup-manager form .radio2 .box input {
    appearance: none;
}

.backup-manager form .radio2 .box .content {
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 6px;
}

.backup-manager form .radio2 .box .content label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    text-align: center;
}

.backup-manager form .radio2 .box input:checked+.content {
    border-color: var(--blue-color);
}

.backup-manager form .radio2 .box input:checked+.content label {
    color: var(--blue-color);
}

/* End Backup Manager */

/* End Settings Page */

/* Start Profile Page  */
.profile {
    background-color: white;
    margin: 50px 20px 20px 20px;
    ;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

@media(max-width:767px) {
    .profile {
        flex-direction: column;
        margin: 30px 10px 10px 10px;
    }
}

.profile .image-side {
    text-align: center;
    border-right: 1px solid #eee;
    min-width: 250px;
}

@media (max-width:767px) {
    .profile .image-side {
        border: none;
        padding: 20px;
    }
}

.profile .image-side img {
    width: 120px;
    cursor: pointer;
    border-radius: 50%;
}

.profile .image-side h3 {
    margin: 10px 0 0;
}

.profile .image-side>span {
    margin: 10px 0;
    display: block;
    color: var(--gray-color);
}

.profile .image-side .progress {
    position: relative;
    width: 130px;
    height: 6px;
    background-color: #eee;
    border-radius: 8px;
    margin: auto;
    overflow: hidden;
    transition: 8s;
}

.profile .image-side .progress span {
    position: absolute;
    height: 100%;
    width: 0;
    background-color: var(--blue-color);
    left: 0;
    transition: 1s;
}


.profile .image-side .stars {
    margin-top: 10px;
}

.profile .image-side .stars i {
    color: var(--orange-color);
    font-size: 14px;
}

.profile .image-side .rating {
    font-size: 14px;
    color: var(--gray-color);
}

.profile .content-side {
    flex: 1;
}

.profile .content-side hr {
    margin: 0;
    border: 1px solid #eee;
}

.profile .content-side .box {
    padding: 15px;
}

@media (max-width:767px) {
    .profile .content-side .box {
        text-align: center;
    }
}

.profile .content-side .box:hover {
    background-color: #f9f9f9;
}

.profile .content-side .box p {
    margin: 0 0 10px;
    color: var(--gray-color);
}

.profile .content-side .box .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

@media(max-width:767px) {
    .profile .content-side .box .info {
        justify-content: center;
    }
}

.profile .content-side .box .info .first,
.profile .content-side .box .info .second,
.profile .content-side .box .info .third {
    min-width: 250px;
}


@media(max-width:767px) {

    .profile .content-side .box .info .first,
    .profile .content-side .box .info .second,
    .profile .content-side .box .info .third {
        min-width: 100%;
    }

    .profile .content-side .box .info .first,
    .profile .content-side .box .info .second {
        margin-bottom: 10px;
    }
}

.profile .content-side .box .info span:first-child {
    color: var(--gray-color);
    font-size: 14px;
}

.profile .content-side .box .info span:last-child {
    font-size: 14px;
}


.button-profile {
    width: fit-content;
}

.button-profile .toggle-switch {
    height: 20px;
    width: 80px;
}

@media (max-width:767px) {
    .button-profile .toggle-switch {
        margin: auto;
    }

    .button-profile {
        margin: auto;
    }
}

.button-profile .toggle-switch::before {
    width: 14px;
    height: 14px;
    top: 3px;
    font-size: 8px;
    left: 3px;
}

.button-profile .toggle-checkbox:checked+.toggle-switch::before {
    left: 62px;
}

.boxImg-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.boxImg-popup img {
    width: 400px;
    border-radius: 50%;
}

.overlay-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.profile-container {
    display: flex;
    margin: 20px;
    gap: 20px;
}

@media(max-width:767px) {
    .profile-container {
        flex-direction: column;
        margin: 20px 10px 10px 10px;
    }
}

.profile-container .my-skills {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    flex: 1;
}

.profile-container .my-skills .text {
    margin-bottom: 30px;
}

.profile-container .my-skills .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.profile-container .my-skills .text span {
    color: var(--gray-color);
    font-size: 15px;
}

.profile-container .my-skills .skills li:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-container .my-skills .skills li span {
    padding: 4px 10px;
    background-color: #eee;
    font-size: 14px;
    margin-right: 2px;
    border-radius: 6px;
}

.profile-container .latest-activities {
    flex: 2;
}

.profile-container .latest-activities {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.profile-container .latest-activities .text {
    margin-bottom: 30px;
}

.profile-container .latest-activities .text h4 {
    font-size: 24px;
    margin: 0 0 5px;
}

.profile-container .latest-activities .text span {
    color: var(--gray-color);
    font-size: 15px;
}

.profile-container .latest-activities .activities-box .box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-container .latest-activities .activities-box .box:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 15px;
}

@media(max-width:767px) {
    .profile-container .latest-activities .activities-box .box {
        flex-direction: column;
    }
}

.profile-container .latest-activities .activities-box .box:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.profile-container .latest-activities .activities-box .box img {
    width: 64px;
}

.profile-container .latest-activities .activities-box .box .info {
    flex: 1;
}

@media(max-width:767px) {
    .profile-container .latest-activities .activities-box .box .info {
        text-align: center;
    }
}

.profile-container .latest-activities .activities-box .box .info span {
    display: block;
}

.profile-container .latest-activities .activities-box .box .info span:first-child {
    margin-bottom: 5px;
}

.profile-container .latest-activities .activities-box .box .info span:last-child {
    color: var(--gray-color);
}

.profile-container .latest-activities .activities-box .box .time {
    text-align: right;
}

@media(max-width:767px) {
    .profile-container .latest-activities .activities-box .box .time {
        text-align: center;
    }
}

.profile-container .latest-activities .activities-box .box .time span {
    display: block;
}

.profile-container .latest-activities .activities-box .box .time span:first-child {
    margin-bottom: 5px;
}

.profile-container .latest-activities .activities-box .box .time span:last-child {
    color: var(--gray-color);
}

/* End Profile Page  */

/* Start Projects Page */
.proj-box {
    background-color: white;
    padding: 20px 20px 10px 20px;
    border-radius: 10px;
}

.proj-box .info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.proj-box .info {
    position: relative;
}

.proj-box .info .text p {
    margin: 0 0 5px;
}

.proj-box .info .text span {
    color: var(--gray-color);
    font-size: 14px;
}

.proj-box .info .date span {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 13px;
    color: var(--gray-color);
}

.proj-box .users {
    display: flex;
    margin: 50px 0 10px;

}

.proj-box .users li:not(:first-child) {
    margin-left: -15px;
}

.proj-box .users li a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
    object-fit: cover;
}

.proj-box .users li a:hover img {
    z-index: 1;
}

.proj-box .skills {
    text-align: right;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.proj-box .skills span {
    font-size: 13px;
    margin-left: 2px;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: #eee;
}

.proj-box .details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 10px;
}

.proj-box .details .progress {
    position: relative;
    width: 250px;
    height: 8px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.proj-box .details .progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    border-radius: 10px;
    transition: 1s;
}

.proj-box .details.red .progress span {
    background-color: var(--red-color);
}

.proj-box .details.green .progress span {
    background-color: var(--green-color);
}

.proj-box .details.blue .progress span {
    background-color: var(--blue-color);
}

.proj-box .details .price span {
    font-size: 14px;
    color: var(--gray-color);
}

.overlay-projects {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 60%);
    z-index: 1001;
}

.user-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
}

.user-box img {
    border-radius: 50%;
    width: 400px;
    height: 400px;
    object-fit: cover;
}


/* End Projects Page */

/* Start Courses Page  */
.courses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px 20px 20px 20px;
}

@media (max-width:767px) {
    .courses {
        margin: 30px 10px 10px 10px;
    }
}

.courses .box {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.courses .box>img {
    width: 64px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    border: 2px solid white;
}


.courses .box .img-course img {
    width: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
}

.courses .box .text {
    padding: 20px;
}

.courses .box .text h4 {
    margin: 0 0 20px;
}

.courses .box .text span {
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.6;
}

.courses .box .course-info {
    position: absolute;
    padding: 4px 10px;
    background-color: var(--blue-color);
    color: white;
    border-radius: 4px;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    font-size: 13px;
    cursor: pointer;
}

.courses .box .details {
    margin-top: 20px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    color: var(--gray-color);
    font-size: 13px;
}

/* End Courses Page  */

/* Start Friends Page  */
.friends {
    margin: 50px 20px 20px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

@media(max-width:767px) {
    .friends {
        margin: 30px 10px 10px 10px;
    }
}

.friends .box {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
}

.friends .box .icons {
    display: flex;
    gap: 10px;
}

.friends .box .icons i {
    padding: 8px;
    border-radius: 50%;
    background-color: #EEE;
    color: var(--gray-color);
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.friends .box .icons i:hover {
    background-color: var(--blue-color);
    color: white;
}

.friends .box .avatar {
    text-align: center;
}

.friends .box .avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: pointer;
    object-fit: cover;
}

.friends .box .info {
    text-align: center;
}

.friends .box .info h4 {
    margin: 0 0 5px;
}

.friends .box .info span {
    color: var(--gray-color);
    font-size: 14px;
}

.friends .box .details {
    margin: 20px 0 0;
    padding: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
}

.friends .box .details .box-details {
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.friends .box .details .box-details:not(:last-child) {
    margin-bottom: 10px;
}

.friends .box .details .vip {
    position: absolute;
    font-size: 40px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange-color);
    font-weight: bold;
    opacity: .2;
}

.friends .box .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.friends .box .actions .date {
    font-size: 13px;
    color: var(--gray-color);
}

.friends .box .actions .choose {
    display: flex;
    gap: 5px;
}

.friends .box .actions .choose a {
    padding: 4px 8px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.friends .box .actions .choose a:first-child {
    background-color: var(--blue-color);
}

.friends .box .actions .choose a:last-child {
    background-color: var(--red-color);
}

.remove-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 195px;
    background-color: #d8e4f0;
    border-radius: 5px;
    z-index: 10000;
}

@media(max-width:767px) {
    .remove-popup {
        width: 260px;
        height: 125px;
    }
}

.box-image-h2 {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #bad9eb;
    color: #32283d;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px;
    width: 95%;
    box-shadow: 3px 5px 5px 0.5px #0000001c;
}

@media(max-width:767px) {
    .box-image-h2 {
        gap: 0;
        width: 95%;
        text-align: center;
        box-shadow: none;
    }
}

.remove-popup h2 {
    font-size: 17px;
    flex: 1;
}

@media(max-width:767px) {
    .remove-popup h2 {
        font-size: 10px;
    }
}

.remove-popup .box-choice {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

@media(max-width:767px) {
    .remove-popup .box-choice {
        gap: 10px;
        bottom: 12px;
    }
}

.remove-popup .box-choice button {
    padding: 6px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    width: 125px;
    height: 30px;
    transition: .3s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:767px) {
    .remove-popup .box-choice button {
        font-size: 11px;
        width: 80px;
        height: 20px;
    }
}

.remove-popup .box-choice button.no-rmv {
    background-color: #2563EB;
    color: white;
}

.remove-popup .box-choice button.no-rmv:hover {
    background-color: #1D4ED8;

}

.remove-popup .box-choice button.yes-rmv {
    background: #e74c3c;
    color: white;
    transition: .3s;
}

.remove-popup .box-choice button.yes-rmv:hover {
    background-color: RED;
}

.img-friend {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #EEE;
}

@media(max-width:767px) {
    .img-friend {
        display: none;
    }
}

/* End Friends Page  */

/* Start Files Page  */
.files {
    display: flex;
    align-items: start;
    margin: 50px 20px 20px 20px;
    gap: 20px;
}

@media(max-width: 767px) {
    .files {
        flex-direction: column-reverse;
        align-items: stretch;
        margin: 30px 10px 10px 10px;
    }
}

.files .files-content {
    flex: 4;
}

.files .files-upload {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.files .files-upload .text {
    margin-bottom: 20px;
}

.files .files-upload .text h4 {
    font-size: 24px;
    margin: 0;
}

@media(max-width:767px) {
    .files .files-upload .text h4 {
        text-align: center;
    }
}

.files .files-upload .box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.files .files-upload .box i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.files .files-upload .box i.blue {
    background-color: rgb(0 117 255 / 20%);
    color: var(--blue-color);
}

.files .files-upload .box i.green {
    background-color: rgb(34 197 94 / 20%);
    color: var(--green-color);
}

.files .files-upload .box i.red {
    background-color: rgb(244 67 54 / 20%);
    color: var(--red-color);
}

.files .files-upload .box i.orange {
    background-color: rgb(245 158 11 / 20%);
    color: var(--orange-color);
}

.files .files-upload .box .info {
    flex: 1;
}

.files .files-upload .box .info span {
    display: block;
    flex: 1;
}

.files .files-upload .box .info span:first-child {
    font-size: 13px;
    margin-bottom: 5px;
}

.files .files-upload .box .info span:last-child {
    font-size: 12px;
    color: var(--gray-color);
}

.files .files-upload .box .size {
    font-size: 13px;
    color: var(--gray-color);
}

.files .files-upload .upload {
    display: flex;
    gap: 15px;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 13px;
    color: white;
    background-color: var(--blue-color);
    border-radius: 4px;
    transition: 1s;
    font-size: 14px;
}

.files .files-upload .upload:hover {
    background-color: var(--blue-alt-color);
}

.files .files-upload .upload:hover i {
    animation: topAnddown 1s infinite normal;
}

@keyframes topAnddown {
    0% {
        transform: translateY(0);
    }

    50% {

        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);

    }
}

.files .files-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.files .files-content .box {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.files .files-content .box i {
    cursor: pointer;
}

.files .files-content .box:hover .image img {
    transform: rotate(6deg);
}

.files .files-content .box i {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--gray-color);
}

.files .files-content .box .image {
    text-align: center;
    margin-top: 10px;
}

.files .files-content .box .image img {
    width: 64px;
    transition: .3s;
}

.files .files-content .box .text {
    text-align: center;
    margin: 15px 0;
    font-size: 14px
}

.files .files-content .box .name {
    font-size: 13px;
    color: var(--gray-color);
    text-align: left;
    padding-bottom: 10px;
}

.files .files-content .box .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0 0;
    border-top: 1px solid #eee;
    color: var(--gray-color);
}

.files .files-content .box .bottom .date,
.files .files-content .box .bottom .size {
    font-size: 13px;
}

/* Start Files Page  */

/* Start Plans Page  */
.plans {
    margin: 50px 20px 20px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

@media(max-width: 767px) {
    .plans {
        margin: 30px 10px 10px 10px;
    }
}

.plans .box-plan {
    background-color: white;
    padding: 20px;
}

.plans .box-plan .header-plan {
    width: 100%;
    height: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    border: 3px solid white;
}

.plans .box-plan.green .header-plan {
    background-color: var(--green-color);
    outline: 3px solid var(--green-color);
}

.plans .box-plan.blue .header-plan {
    background-color: var(--blue-color);
    outline: 3px solid var(--blue-color);
}

.plans .box-plan.orange .header-plan {
    background-color: var(--orange-color);
    outline: 3px solid var(--orange-color);
}

.plans .box-plan .header-plan .type {
    font-size: 25px;
    font-weight: bold;
}

.plans .box-plan .header-plan .price {
    position: relative;
    font-size: 35px;
}

.plans .box-plan .header-plan .price span {
    position: absolute;
    top: 0;
    left: -20px;
    font-size: 24px;
}

.plans .box-plan .features {
    margin-top: 10px;
}

.plans .box-plan .features li {
    padding: 17px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plans .box-plan .features li i {
    font-size: 14px;
}

.plans .box-plan .features li i.yes {
    color: var(--green-color);
}

.plans .box-plan .features li i.fa-xmark {
    color: var(--red-color);
}

.plans .box-plan .features li i.help {
    color: var(--gray-color);
    cursor: pointer;
}

.plans .box-plan .features li span {
    flex: 1;
    font-size: 14px;
}

.plans .box-plan .join {
    display: block;
    padding: 4px 10px;
    width: fit-content;
    border-radius: 6px;
    color: white;
    margin-top: 15px;
}

.plans .box-plan.green .join {
    background-color: var(--green-color);
}

.plans .box-plan.blue .join {
    background-color: var(--blue-color);
}

.plans .box-plan .message {
    text-align: center;
    margin-top: 15px;
    color: var(--gray-color);
}

/* End Plans Page  */

/* Start Notification-page  */
.notification-page {
    padding: 20px;
}

.notification-page .head-notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: rgb(0 117 255 / 20%);
    border-radius: 6px;
}

.notification-page .head-notification h1 i {
    font-size: 28px;
    color: #f0ca00;
    margin-left: 8px;
}


.notification-page .head-notification h1 {
    color: rgb(34, 36, 45);
    font-weight: bolder;
}

.notification-page .head-notification button {
    cursor: pointer;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    background-color: #E2E8F0;
    color: #334155;

}

.notification-page .head-notification button:hover {
    background-color: #CBD5E1;
}

@media(max-width:767px) {
    .notification-page .head-notification {
        padding: 0 20px;
    }


    .notification-page .head-notification h1 {
        font-size: 22px;
    }

    .notification-page .head-notification h1 i {
        font-size: 20px;
    }

    .notification-page .head-notification button {
        font-size: 9px;
        padding: 4px 8px;
        border-radius: 4px;
    }
}

.notification-page .notifications-box {
    margin: 20px 0px;
}


.notification-page .notifications-box .box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: white;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #E2E8F0;
    transition: .3s;
}

@media(max-width:767px) {
    .notification-page .notifications-box .box {
        padding: 10px;
    }
}

.notification-page .notifications-box .box:hover {
    background-color: #2196f32e;
}


.notification-page .notifications-box .box .icon i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    border: 2px solid #93C5FD;
    color: white;
}

.notification-page .notifications-box .box .icon.bell i {
    background-color: var(--blue-color);
}

.notification-page .notifications-box .box .icon.check i {
    background-color: var(--orange-color);
}

.notification-page .notifications-box .box .icon.microphone i {
    background-color: #009688;
}

.notification-page .notifications-box .box .icon.user i {
    background-color: #9c27b0;
}

.notification-page .notifications-box .box .icon.days i {
    background-color: var(--red-color);
}

.notification-page .notifications-box .box .icon.star i {
    background-color: gold;
}


.notification-page .notifications-box .box .details {
    flex: 1;
}

.notification-page .notifications-box .box .details .describe {
    font-weight: bold;
    margin-bottom: 5px;
}

.notification-page .notifications-box .box .details .describe {
    color: #0f172a;
}

.notification-page .notifications-box .box.read .details .describe {
    font-weight: normal;
    opacity: .5;
}


.notification-page .notifications-box .box .details .time {
    font-size: 14px;
    color: #64748B;
}

@media(max-width:767px) {
    .notification-page .notifications-box .box .details .describe {
        font-size: 10px;
        margin-bottom: 0;
    }

    .notification-page .notifications-box .box .details .time {
        font-size: 8px;
    }
}

.notification-page .notifications-box .private .choice span {
    padding: 8px 14px;
    margin-left: 5px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
}

@media(max-width:767px) {
    .notification-page .notifications-box .private .choice span:not(:last-child) {
        display: block;
        margin-bottom: 10px;
    }
}

@media(max-width:767px) {
    .notification-page .notifications-box .private .choice span {
        font-size: 10px;
        padding: 4px 6px;
    }
}

.notification-page .notifications-box .private .choice span.accept {
    background-color: #2563EB;
    color: white;
}

.notification-page .notifications-box .private .choice span.accept:hover {
    background-color: #1D4ED8;
}

.notification-page .notifications-box .private .choice span.decline {
    background-color: white;
    color: #Ef4444;
    border: 1px solid #EF4444;
}

.notification-page .notifications-box .private .choice span.decline:hover {
    background-color: #FEE2E2;
}

/* End Notification-page  */
/* End Page  */