:root {
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
    --font-Aw-fam: "Font Awesome 5 Free";
}

body {
    /* font-family: 'Open Sans', sans-serif; */
    font-family: 'Cairo', sans-serif;
    /* font-family: "Poppins", sans-serif; */
    margin: 0;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: white;
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-alt-color);
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:767px) {
    .container {
        width: 100%;
    }
}

@media (min-width:768px) {
    .container {
        width: 750px;
    }
}

@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}



/* start Nav section  */
.Page {
    background-color: #f1f5f9;
}

.Page>.Nav {
    width: 250px;
    padding: 20px;
    background-color: white;
}

.Page>.Nav>h3 {
    position: relative;
    margin-bottom: 40px;
}

@media (min-width:768px) {

    .Page>.Nav>h3::before {
        content: "";
        position: absolute;
        width: 55%;
        height: 2px;
        background: black;
        bottom: -15px;
        left: 50%;
        transform: translate(-50%);
    }

    .Page>.Nav>h3::after {
        content: "";
        width: 10px;
        height: 10px;
        position: absolute;
        background: black;
        border: 2px solid white;
        border-radius: 50%;
        left: 50%;
        transform: translate(-50%);
        bottom: -20px;
    }
}

.Page>.Nav>ul>li>a {
    display: flex;
    align-items: center;
    font-size: 17px;
    color: black;
    padding: 12px 10px;
    margin-bottom: 5px;
    transition: .3s;
}

.Page>.Nav>ul>li>a:hover,
.Page>.Nav>ul>li>a.active {
    background-color: #cccccc5e;
    border-radius: 10px;
}

.Page>.Nav>ul>li>a>i {
    margin-right: 15px;
    font-size: 14px;
}

/* Nav responsive  */
@media (max-width:767px) {
    .Page>.Nav {
        width: 58px;
        padding: 15px 10px;
    }

    .Page>.Nav>h3 {
        position: relative;
        margin-bottom: auto;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .Page>.Nav>ul>li>a>span {
        display: none;
    }


}

/* end nav section  */
/* start content-section  */
.Page>.content {
    width: 100%;
}

.Page>.content>.bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-left: 1px solid #ccc;
}

.Page>.content>.bar>.search {
    position: relative;
}

.Page>.content>.bar>.search>input {
    outline: none;
    padding: 10px;
    border-radius: 12px;
    border: none;
    border: 1px solid #ccc;
    width: 165px;
    padding-left: 35px;
    transition: .3s;
    caret-color: var(--blue-color);
}

.Page>.content>.bar>.search>input:focus {
    width: 185px;
}

.Page>.content>.bar>.search>input:focus::placeholder {
    opacity: 0;
}

.Page>.content>.bar>.search::before {
    font-family: "Font Awesome 5 Free";
    content: "\f002";
    font-weight: 900;
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #b0acac;
    border-right: 2px solid #ccc;
    padding-right: 7px;
}

.Page>.content>.bar>.notifac {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Page>.content>.bar>.notifac>i {
    margin-right: 12px;
    font-size: 20px;
    position: relative;
}

.Page>.content>.bar>.notifac>i::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    background: red;
    border-radius: 50%;
    top: -15px;
    left: 14px;
}

.Page>.content>.bar>.notifac>img {
    width: 33px;
}

@media (max-width:767px) {

    .Page>.content>.bar {
        padding: 15px 10px;
    }
}

.Page>.content>h1 {
    margin: 40px 20px 40px 30px;
    position: relative;
    font-size: 38px;
    color: #444;
}

.Page>.content>h1::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: white;
    bottom: -9px;
    left: 15px;
    border-radius: 7px;
}

.Page>.content>h1::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #444;
    bottom: -9px;
    left: 0;
    border-radius: 7px;
}

@media (max-width:767px) {
    .Page>.content>h1 {
        margin: 20px 20px 40px 20px;
    }
}

/* start wrapper  */

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

@media (max-width:767px) {
    .wrapper {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        margin-left: 10px;
        margin-right: 10px;
    }
}


.wrapper>.welcome>.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #eee;
    padding-bottom: 40px;
}

.wrapper>.welcome>.intro>.text>h2 {
    margin: 0;
    font-size: 27px;
}

.wrapper>.welcome>.intro>.text>h4 {
    margin: 0;
    margin-top: 10px;
    font-size: 17px;
    color: #777;
    font-weight: normal;
}

.wrapper>.welcome>.intro>img {
    width: 230px;
}

.wrapper>.welcome>.info {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.wrapper>.welcome>.info>div {
    flex: 1;
    text-align: center;
    font-size: 20px;
}

.wrapper>.welcome>.info>div>span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #777;
}

.wrapper>.welcome>img {
    width: 65px;
    height: 65px;
    margin-left: 20px;
    margin-top: -35px;
    border: 3px solid white;
    border-radius: 50%;
}

.wrapper>.welcome>.link {
    padding: 20px;
    text-align: end;
}

.wrapper>.welcome>.link>a {
    padding: 3px 10px;
    color: white;
    background-color: var(--blue-color);
    border-radius: 6px;
    border: 2px solid white;
    transition: .3s;
}

.wrapper>.welcome>.link>a:hover {
    background-color: var(--blue-alt-color);
}

@media (max-width:767px) {
    .wrapper>.welcome>.intro {
        justify-content: center;
    }

    .wrapper>.welcome>.intro>.text>h4 {
        margin: auto;
        margin-bottom: 40px;
    }

    .wrapper>.welcome>.intro>img {
        display: none;
    }

    .wrapper>.welcome>.info {
        flex-direction: column;
    }

    .wrapper>.welcome>.info>div {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* -------------------- */
.Draft>.idea {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.Draft>.idea>input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    outline: none;
    background: #eee;
    border: none;
    padding-left: 15px;
    caret-color: var(--blue-color);
    border-radius: 5px;
}

.Draft>.idea>textarea {
    resize: none;
    margin-top: 7px;
    padding: 10px;
    outline: none;
    border: none;
    background: #eee;
    padding-left: 15px;
    caret-color: var(--blue-color);
    border-radius: 5px;
    min-height: 180px;
}

/* --------------------------- */
.YearlyTarget>.target {
    padding: 20px;
    display: flex;
}

.YearlyTarget>.target>.icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}


.YearlyTarget>.target>.details {
    flex: 1;
}

.YearlyTarget>.target>.details>span {
    font-size: 22px;
}

.YearlyTarget>.target>.details>h5 {
    margin-top: 13px;
    color: #777;
    font-size: 18px;
}

.YearlyTarget>.target>.details>div {
    width: 100%;
    height: 5px;
    border-radius: 2px;
    position: relative;
}

/* ------------------- */
.progress-blue-tabe {
    position: absolute;
    width: 80%;
    background: var(--blue-color);
    height: 100%;
    border-radius: 2px;
    left: 0;
}

.progress-blue-Arrow {
    position: absolute;
    top: -45px;
    right: -21px;
    background: var(--blue-color);
    padding: 4px 10px;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
}

.progress-blue-Arrow::after {
    content: "";
    position: absolute;
    border: 8px;
    border-color: var(--blue-color) transparent transparent;
    top: 28px;
    border-style: solid;
    right: 15px;
}

.progress-orange-tabe {
    position: absolute;
    width: 55%;
    background: var(--orange-color);
    height: 100%;
    border-radius: 2px;
    left: 0;
}

.progress-orange-Arrow {
    position: absolute;
    top: -45px;
    right: -21px;
    background: var(--orange-color);
    padding: 4px 10px;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
}

.progress-orange-Arrow::after {
    content: "";
    position: absolute;
    border: 8px;
    border-color: var(--orange-color) transparent transparent;
    top: 28px;
    border-style: solid;
    right: 15px;
}



.progress-green-tabe {
    position: absolute;
    width: 75%;
    background: var(--green-color);
    height: 100%;
    border-radius: 2px;
    left: 0;
}

.progress-green-Arrow {
    position: absolute;
    top: -45px;
    right: -21px;
    background: var(--green-color);
    padding: 4px 10px;
    border: 1px solid white;
    border-radius: 5px;
    color: white;
}

.progress-green-Arrow::after {
    content: "";
    position: absolute;
    border: 8px;
    border-color: var(--green-color) transparent transparent;
    top: 28px;
    border-style: solid;
    right: 15px;
}

@media (max-width:767px) {

    .YearlyTarget {
        text-align: start;
    }

    .YearlyTarget>.target {
        padding: 5px;
    }
}

/*-------------------- */

.Tickets>.box {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.Tickets>.box>.ticket {
    padding: 20px;
    width: calc(50% - 10px);
    border: 2px solid #ddd;
    border-radius: 10px;
}

.Tickets>.box>.ticket>h3 {
    font-size: 27px;
    margin-top: 17px;
    margin-bottom: 17px;
}


.Tickets>.box>.ticket>span {
    color: #777;
}

@media (max-width:767px) {
    .Tickets>.box {
        flex-direction: column;
    }

    .Tickets>.box>.ticket {
        padding: 20px;
        width: 100%;
    }
}

/* ------------------ */

.LatestNews>.new {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.LatestNews>.new>.desc {
    display: flex;
}

.LatestNews>.new>.desc>.image>img {
    width: 110px;
    border-radius: 8px;
}

.News-text {
    padding: 0;
    padding-left: 15px;
    font-size: 18px;
    line-height: 1.5;
    color: #777;
}

.News-text>h3 {
    margin: 0;
    font-size: 20px;
    color: black;
}

.LatestNews>.new>span {
    padding: 8px;
    border-radius: 5px;
    background: #dddddd94;
}

@media (max-width:767px) {
    .LatestNews>.new {
        flex-direction: column;
    }

    .LatestNews>.new>.desc {
        flex-direction: column;
    }

    .News-text {
        padding-left: 0;
        padding-bottom: 10px;
    }

    .News-text>h3 {
        font-size: 20px;
        color: black;
        margin: 10px 0;
    }
}

/* ----------------- */

.LatestTasks>.task {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.LatestTasks>.task>i {
    padding-right: 10px;
}

@media (max-width:767px) {

    .LatestTasks>.task {
        padding: 10px 10px;
    }

    .LatestTasks>.task>.News-text {
        text-align: start;
    }

    .LatestTasks>.task>.News-text>h3 {
        font-size: 17px;
    }

    .LatestTasks>.task>i {
        padding-right: 0;
    }
}

/* -------------------------- */

.Top-Search>.item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #777;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
}

.Top-Search>.item {
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.Top-Search>.item>h4 {
    font-size: 19px;
    font-weight: normal;
}

.Top-Search>.item>span {
    padding: 5px 12px;
    background: #eee;
    border-radius: 5px;
}

/* ------------------ */

.Latest-Upload>.Upload {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.Latest-Upload>.Upload>.element {
    display: flex;
}

.Latest-Upload>.Upload>.element>img {
    width: 50px;
    margin-right: 20px;
}

.Latest-Upload>.Upload>.element>div>h2 {
    margin: 0;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: normal;
}

.Latest-Upload>.Upload>.element>div>h4 {
    margin: 0;
    color: #777;

}

.Latest-Upload>.Upload>span {
    padding: 5px 12px;
    background: #eee;
    border-radius: 5px;
}

@media (max-width:767px) {
    .Latest-Upload>.Upload {
        padding: 10px;
    }

    .Latest-Upload>.Upload>.element>img {
        width: 40px;
        margin-right: 10px;
    }

}

/* ------------------- */

.Latest-Projects-Progress>ul {
    padding: 20px;
    position: relative;
    margin-left: 50px;
}

.Latest-Projects-Progress>img {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: .2;
    width: 150px;
}

.Latest-Projects-Progress>ul::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 18%;
    width: 1px;
    height: 65%;
    background: var(--blue-color);
    transform: translate(-50%);
}

.Latest-Projects-Progress>ul>li {
    padding: 12px;
    font-size: 20px;
    position: relative;
    display: flex;
}

.Latest-Projects-Progress>ul>li::before {
    content: "";
    width: 25px;
    display: block;
    height: 25px;
    border-radius: 50%;
    transform: translate(-50%);
    background: var(--blue-color);
    outline: 2px solid var(--blue-color);
    margin-right: 10px;
    border: 2px solid white;
}

.Latest-Projects-Progress>ul>.empty::before {
    background: white;
}

.Latest-Projects-Progress>ul>.custom::before {
    animation: flasher 2s linear infinite;
}

@media (max-width:767px) {
    .Latest-Projects-Progress>ul {
        padding: 20px;
        position: relative;
        margin-left: 0;
        padding-top: 0;
    }

    .Latest-Projects-Progress>ul::before {
        content: "";
        left: 30px;
        top: 13%;
    }

    .Latest-Projects-Progress>ul>li {
        padding: 12px 0;
        font-size: 13px;
        padding-left: 10px;
        align-items: center;
    }

    .Latest-Projects-Progress>ul>li::before {
        content: "";
        width: 15px;
        height: 15px;
        margin-right: 0;
    }

    .Latest-Projects-Progress>img {
        width: 120px;
    }


}

/* --------------- */

.Reminder>ul {
    padding: 0 20px;
}

.Reminder>ul>li {
    padding: 10px 0;
    position: relative;
    padding-left: 45px;
}

.Reminder>ul>li:before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: calc(77px / 2);
    transform: translateY(-50%);
    border-radius: 50%;
}

.Reminder>ul>li::after {
    content: "";
    position: absolute;
    left: 32px;
    height: 70%;
    width: 1px;
    transform: translateY(-50%);
}

.Reminder>ul>li:first-child::before,
.Reminder>ul>li:first-child::after {
    background-color: var(--blue-color);
}

.Reminder>ul>li:nth-child(2)::before,
.Reminder>ul>li:nth-child(2)::after {
    background-color: var(--green-color);
}

.Reminder>ul>li:nth-child(3)::before,
.Reminder>ul>li:nth-child(3)::after {
    background-color: var(--orange-color);
}

.Reminder>ul>li:last-child::before,
.Reminder>ul>li:last-child::after {
    background-color: var(--red-color);
}


@media (max-width:767px) {
    .Reminder>ul {
        padding: 0 21px;
    }

    .Reminder>ul>li {
        padding: 10px 0;
        font-size: 14px;
        text-align: end;
    }

    .Reminder>ul>li:before {
        content: "";
        width: 17px;
        height: 17px;
        left: -5px;
        top: calc(81px / 2);
        transform: translateY(0);
    }

    .Reminder>ul>li>h3 {
        font-size: 15px;
    }

    .Reminder>ul>li::after {
        content: "";
        position: absolute;
        left: 20px;
        height: 50px;
        width: 1px;
        transform: translateY(-50%);
        top: 50px;
    }
}

/* --------------- */
.Latest-Post>.heading {
    padding: 20px;
    display: flex;
    align-items: center;
}


.Latest-Post>.heading>img {
    width: 65px;
    height: 65px;
    margin-left: 20px;
    margin-top: 0;
    border: 3px solid white;
    border-radius: 50%;
}

.Latest-Post>p {
    padding: 30px 20px;
    font-size: 20px;
    line-height: 2;
    word-spacing: 1px;
    border-bottom: 1px solid #eee;
    margin: 0;
    border-top: 1px solid #eee;
}

.Latest-Post>.icons {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.Latest-Post>.icons>.icon {
    padding: 10px;
    padding-top: 5px;
    color: var(--blue-color);
}


.Latest-Post>.icons>.icon>i {
    margin-right: 5px;
}

@media (max-width:767px) {
    .Latest-Post>.heading {
        padding: 20px;
        justify-content: center;
    }

    .Latest-Post>.heading>img {
        width: 55px;
        height: 55px;
        margin-right: 15px;
        margin-left: 0;
    }

    .Latest-Post>.heading>.News-text {
        font-size: 15px;
    }

    .Latest-Post>p {
        padding: 20px 10px;
        font-size: 18px;
        line-height: 1.7;
        word-spacing: 1px;
    }
}

/* ------------------ */

.SocialMedia-Stats>ul {
    padding: 20px;
}

.SocialMedia-Stats>ul>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 7px;
    /* box-shadow: 0 0 10px rgb(0 119 181 / 40%); */
}

.SocialMedia-Stats>ul>li>.box {
    display: flex;
    align-items: center;
}

.SocialMedia-Stats>ul>li>.box>i {
    width: 60px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    transition: .3s;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
}

.SocialMedia-Stats>ul>li>.box>i:hover {
    transform: rotate(3deg);
}

.SocialMedia-Stats>ul>li>.box>h4 {
    font-size: 17px;
}


@media (max-width:767px) {
    .SocialMedia-Stats>ul {
        padding: 10px;
    }

    .SocialMedia-Stats>ul>li>.link {
        padding: 3px;
    }

    .SocialMedia-Stats>ul>li>.link>.button {
        padding: 3px 10px;
        color: white;
        background-color: var(--blue-color);
        border-radius: 6px;
        border: 2px solid white;
        transition: .3s;
    }

    .SocialMedia-Stats>ul>li>.box>i {
        width: 50px;
        height: 64px;
        margin-right: 5px;
    }
}

/* ---------------- */

.table {
    margin: 20px;
    padding: 20px;
}

.responsive-table {
    overflow-x: auto;
}

table {
    border: 0;
    width: 100%;
}

table>thead {
    background-color: #1da1f2;
}

table>thead>tr>td {
    padding: 10px;
    text-align: center;
    border: 0;
    color: white;
    font-size: 16px;
}

table>tbody>tr>td {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #eee;
}

table>tbody>tr>td>.link {
    padding: 10px;
}

table>tbody>tr:first-child>td>.link>span {
    background-color: var(--orange-color);
}

table>tbody>tr:nth-child(2)>td>.link>span {
    background-color: var(--blue-alt-color);
}

table>tbody>tr:nth-child(3)>td>.link>span {
    background-color: var(--green-color);
}

table>tbody>tr:nth-child(4)>td>.link>span {
    background-color: var(--green-color);
}

table>tbody>tr:nth-child(5)>td>.link>span {
    background-color: var(--red-color);
}

table>tbody>tr:last-child>td>.link>span {
    background-color: var(--green-color);
}

table>tbody>tr>td>img {
    width: 30px;
    border-radius: 50%;
    border: 2px solid white;
    background: white;
    margin-left: -15px;
}

table>tbody>tr {
    transition: .5s;
}

table>tbody>tr:hover {
    background-color: rgb(0 119 181 / 8%);
}

@media (max-width:992px) {
    .table {
        display: none;
    }
}


/* --  Start Setting Page !  */

/* toggle case  */

.toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
}

.toggle-switch {
    background-color: #ccc;
    width: 78px;
    height: 32px;
    position: relative;
    border-radius: 15px;
    cursor: pointer;
    transition: .3s;
}

.toggle-switch::before {
    content: "\f00d";
    font-family: var(--font-Aw-fam);
    font-weight: 900;
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    left: 4px;
    color: #ccc;
    transition: .3s;
}

.toggle-checkbox:checked+.toggle-switch {
    background-color: var(--blue-color);
}

.toggle-checkbox:checked+.toggle-switch::before {
    content: "\f00c";
    font-family: var(--font-Aw-fam);
    font-weight: 900;
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 4px;
    left: 50px;
    color: var(--blue-color);
}


.site-control>.open-close {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-control>.textArea {
    padding: 20px;
    padding-bottom: 0;
}

.site-control>.textArea>textarea {
    width: 100%;
    resize: none;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    outline: none;
}


@media (max-width:767px) {
    .site-control>.open-close {
        padding: 10px 10px;
    }

    .open-close .string>p {
        width: 135px;
    }
}

.general-info>form>label {
    color: #777;
}

.general-info>form>input {
    width: 100%;
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
}

.general-info>form>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.general-info>form>div>input {
    padding: 10px;
    margin: 13px 0;
    width: calc(100% - 80px);
    border-radius: 5px;
    outline: none;
    border: 1px solid #ccc;
    cursor: not-allowed;
    background-color: #f0f4f8;
    color: #bbb;
}

.general-info>form>div>a {
    display: block;
    flex: 1;
    text-align: center;
    font-size: 17px;
    color: var(--blue-color);
}

.Security-info {
    padding: 20px;
}

.Security-info>.pass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}



.Security-info .info>h4 {
    margin: 0;
}

.Security-info .info>p {
    margin-top: 10px;
    color: #777;
}

.Security-info .link {
    padding: 0;
}

.Security-info>.authen {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.Security-info>.devices {
    display: flex;
    align-items: center;
    margin-top: 25px;
    justify-content: space-between;
}


.Security-info>.devices>.link>a {
    background-color: #eee;
    color: black;
}

@media (max-width:767px) {

    .Security-info .info {
        text-align: start;
    }
}

.social-info>form>div {
    display: flex;
    align-items: center;
}

.social-info>form>div>i {
    width: 40px;
    height: 41.6px;
    justify-content: center;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #777;
    background-color: #f6f6f6;
}

.social-info>form>div>input {
    padding: 12px;
    outline: none;
    border: 1px solid #ccc;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 100%;
    transition: .3s;
    background-color: #f6f6f6;
}

.social-info>form>div:focus-within i {
    color: black;
}

.widget-control {
    margin-bottom: 20px;
}

.widget-control>form>div {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.widget-control>form>div>input {
    -webkit-appearance: none;
    appearance: none;
}

.widget-control>form>div>input:checked+label::after {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(360deg);
}

.widget-control>form>div>label {
    font-size: 18px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}

.widget-control>form>div>label::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    border: 1px solid var(--blue-alt-color);
    top: 50%;
    left: 0;
    border-radius: 3px;
    transform: translateY(-50%);
}

.widget-control>form>div>label::after {
    content: "\f00c";
    font-family: var(--font-Aw-fam);
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 13px;
    height: 18.6px;
    width: 18.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) scale(0.1);
    background: var(--blue-color);
    border-radius: 3px;
    color: white;
    opacity: 0;
    transition: .5s;
}

.backup-manager {
    margin-bottom: 20px;
}

.backup-manager>.first-form>div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.backup-manager>.first-form>div>input {
    -webkit-appearance: none;
    appearance: none;
}

.backup-manager>.first-form>div>input:checked+label::after {
    opacity: 1;
    transform: scale(1);
}

.backup-manager>.first-form>div>input:checked+label::before {
    border-color: var(--blue-alt-color);
}

.backup-manager>.first-form>div>label {
    position: relative;
    font-size: 19px;
    padding-left: 30px;
    cursor: pointer;
    transition: .3s;
}

.backup-manager>.first-form>div>label::before {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    border: 2px solid var(--grey-color);
    top: 1px;
    left: 1px;
    border-radius: 50%;
}

.backup-manager>.first-form>div>label::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--blue-color);
    border-radius: 50%;
    border: 2px solid white;
    opacity: 0;
    transition: .3s;
    transform: scale(0.1);
}

/* ---------------------- */

.backup-manager>.second-form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.backup-manager>.second-form>div {
    flex: 1;
    color: black;
}

.backup-manager>.second-form>div>input {
    -webkit-appearance: none;
    appearance: none;
}

.backup-manager>.second-form>div>input:checked+label {
    border: 2px solid var(--blue-alt-color);
    color: var(--blue-alt-color);
}


.backup-manager>.second-form>div>label {
    width: 100%;
    position: relative;
    font-size: 19px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border: 2px solid #ccc;
    border-radius: 10px;
}

.backup-manager>.second-form>div>label>i {
    margin-bottom: 10px;
}

@media (max-width:767px) {
    .backup-manager>.second-form {
        flex-direction: column;
    }

    .backup-manager>.second-form>div {
        width: 100%;
    }
}

/* ---------------------- */

@media (max-width:767px) {
    .Overview {
        flex-direction: column;
    }

}

.Overview>.avatar-box {
    width: 300px;
}

@media (min-width:768px) {
    .Overview>.avatar-box {
        border-right: 1px solid #eee;
    }

}

.Overview>.avatar-box>img {
    width: 120px;
}

.Overview>.avatar-box>.rate {
    height: 4px;
    width: 40%;
    margin: auto;
    background: #eee;
    border-radius: 5px;
}

.Overview>.avatar-box>.rate>span {
    position: absolute;
    width: 65%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--blue-color);
    border-radius: 5px;
}

.Overview>.avatar-box>.stars {
    margin-top: 10px;
    margin-bottom: 5px;
}

.Overview>.Info-box>.box {
    flex-wrap: wrap;
    transition: .4s;
    border-bottom: 1px solid #eee;
    padding: 20px 0 20px 20px;
}

.Overview>.Info-box>.box:hover {
    flex-wrap: wrap;
}

.Overview>.Info-box>.box>div:not(:last-child) {
    padding-top: 10px;
}

@media (min-width:768px) {
    .Overview>.Info-box>.box>div {
        width: 250px;
    }
}

@media (min-width:992px) {
    .Overview>.Info-box>.box {
        padding-right: 20px;
    }
}

@media (max-width:767px) {
    .Overview>.avatar-box {
        width: 100%;
    }

    .Overview>.Info-box>.box {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .Overview>.Info-box>.box span {
        display: inline-block;
        padding-bottom: 5px;
    }
}

.Other-data>.Skills {
    flex-grow: 1;
}

.Other-data>.Activites {
    flex-grow: 2;
}

.Other-data>.Skills>ul>li {
    padding: 15px 0;
}

.Other-data>.Skills>ul>li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.Other-data>.Skills>ul>li>span {
    padding: 5px;
    background: #eee;
    display: inline-block;
    border-radius: 6px;
    font-size: 16px;
    transition: .4s;
}

.Other-data>.Skills>ul>li>span:not(:last-child) {
    margin-right: 5px;
}

.Other-data>.Skills>ul>li>span:hover {
    background-color: #eeeeeed8;
}

.Activites>.element {
    justify-content: space-between;
    padding: 20px 0;
}

.Activites>.element:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.Activites>.element img {
    width: 64px;
}

.Activites>.element .explain {
    margin-left: 8px;
    font-size: 17px;
}

.Activites>.element .explain>p {
    margin: 0;
    margin-top: 8px;
}

.Activites>.element>.date>span {
    display: block;
}

@media (max-width:767px) {

    .Other-data {
        flex-direction: column;
    }

    .Activites>.element {
        flex-direction: column;
        gap: 10px;
    }

    .Activites>.element>div:first-child {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}



.title>h3 {
    margin: 0;
    font-weight: normal;
}

.title>p {
    margin-top: 10px;
    color: #777;
}

.wrapper>.Project>.details {
    padding-bottom: 25px;
}

.wrapper>.Project>.details>.info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.wrapper>.Project>.details>.info>p {
    margin-top: -5px;
    color: #777;
    font-size: 14px;
}


.wrapper>.Project>.details>.members>img {
    width: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.wrapper>.Project>.details>.members>img:not(:first-child) {
    margin-left: -15px;
}

.wrapper>.Project>.tools {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: end;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.wrapper>.Project>.tools>span {
    padding: 6px;
    background: #eee;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 15px;
}


.wrapper>.Project>.red-cost-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 5px 15px;
}

.wrapper>.Project>.red-cost-progress>div {
    background: #eee;
    width: 40%;
    height: 9px;
    position: relative;
    border-radius: 10px;
}

.wrapper>.Project>.red-cost-progress>div>span {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--red-color);
    width: 60%;
    height: 100%;
    border-radius: 10px;
}

.wrapper>.Project>.red-cost-progress>span {
    color: #777;
}

/* ========== */

.wrapper>.Project>.blue-cost-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 5px 15px;
}

.wrapper>.Project>.blue-cost-progress>div {
    background: #eee;
    width: 40%;
    height: 9px;
    position: relative;
    border-radius: 10px;
}

.wrapper>.Project>.blue-cost-progress>div>span {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--blue-color);
    width: 40%;
    height: 100%;
    border-radius: 10px;
}

.wrapper>.Project>.blue-cost-progress>span {
    color: #777;
}

/* ============== */

.wrapper>.Project>.green-cost-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 5px 15px;
}

.wrapper>.Project>.green-cost-progress>div {
    background: #eee;
    width: 40%;
    height: 9px;
    position: relative;
    border-radius: 10px;
}

.wrapper>.Project>.green-cost-progress>div>span {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--green-color);
    width: 80%;
    height: 100%;
    border-radius: 10px;
}

.wrapper>.Project>.green-cost-progress>span {
    color: #777;
}

@media (max-width:767px) {
    .wrapper>.Project>.details>.info {
        flex-direction: column-reverse;
    }

    .title {
        margin-top: 15px;
    }

    .title>p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.5;
    }

    .wrapper>.Project>.tools {
        flex-direction: column;
        align-items: start;
    }

    .wrapper>.Project>.tools>span {

        margin-bottom: 10px;
        font-size: 15px;
        margin-left: 0;
    }

    .wrapper>.Project>.red-cost-progress,
    .wrapper>.Project>.green-cost-progress,
    .wrapper>.Project>.blue-cost-progress {
        padding: 20px 0 0;
    }

    .wrapper>.Project>.red-cost-progress>div,
    .wrapper>.Project>.green-cost-progress>div,
    .wrapper>.Project>.blue-cost-progress>div {
        width: 55%;
    }
}


.Courses-Area {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.Courses-Area>.course {
    border-radius: 10px;
    overflow: hidden;
}

.Courses-Area>.course>.imgs {
    width: 100%;
    position: relative;
}

.Courses-Area>.course>.imgs>img:first-child {
    width: 70px;
    border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    top: 25px;
    left: 20px;
}

.Courses-Area>.course>.imgs>img:last-child {
    min-width: 100%;
    max-width: 100%;
}

.Courses-Area>.course>.text>h3 {
    color: black;
    margin: 0;
    font-size: 18px;
}

.Courses-Area>.course>.text>p {
    font-size: 16px;
}

.Courses-Area>.course>.course-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 0;
    position: relative;
    border-top: 1px solid #eee;
    color: #777;
}

.Courses-Area>.course>.course-info>a {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    padding: 7px;
    border-radius: 5px;
    background: var(--blue-color);
    margin-top: -17px;
    color: white;
    font-size: 15px;
}

@media (max-width:767px) {
    .Courses-Area {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .Courses-Area>.course {
        text-align: start;
    }

    .Courses-Area>.course>.text>p {
        line-height: 1.5;
    }

    .Courses-Area>.course>.imgs>img:first-child {
        width: 60px;
        top: 5px;
        left: 5px;
    }
}

.friends {

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;

}

.friends>.friend>.icons>a:hover i {
    background-color: var(--blue-color);
    color: white;
}

.friends>.friend>.icons>a>i {
    padding: 10px;
    border-radius: 50%;
    background: #eee;
    margin-right: 5px;
    font-size: 14px;
    color: #777;
    transition: .3s;
}

.friends>.friend>.person {
    text-align: center;
    padding-bottom: 22px;
}

.friends>.friend>.person>img {
    width: 120px;
    border-radius: 50%;
}

.friends>.friend>.person>.title>h3 {
    margin: 15px 0 0;
    font-weight: bold;
}

.friends>.friend>.person>.title>p {
    margin-top: 5px;
    margin-bottom: 0;
}

.friends>.friend>.info {
    padding: 22px 0;
    position: relative;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.friends>.friend>.info>span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 5px;
    font-size: 45px;
    color: navajowhite;
    opacity: 0.4;
    font-weight: bold;
}

.friends>.friend>.info>ul>li:not(:last-child) {
    margin-bottom: 12px;
}

.friends>.friend>.info>ul>li>span {
    margin-left: 5px;
}

.friends>.friend>.date-links {
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.friends>.friend>.date-links>span {
    color: #777;
    font-size: 15px;
}

.friends>.friend>.date-links>.links>a:first-child {
    padding: 1px 5px;
    border-radius: 7px;
    background: var(--blue-color);
    color: white;
    font-size: 15px;
    border: 1px solid #eee;
}

.friends>.friend>.date-links>.links>a:last-child {
    padding: 1px 7px;
    border-radius: 7px;
    background: var(--red-color);
    color: white;
    font-size: 15px;
    border: 1px solid #eee;
}

@media (max-width:767px) {
    .friends {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .friends>.friend {
        text-align: start;
    }

    .friends>.friend>.date-links {
        flex-direction: column;
    }

    .friends>.friend>.date-links>.links {
        margin-top: 15px;
    }
}



.files-Statistics {
    display: flex;
    gap: 20px;
    margin: 20px;
}

@media (max-width:767px) {
    .files-Statistics {
        flex-direction: column-reverse;
    }
}

.files-Statistics>.Files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    flex: 3;
}

.files-Statistics>.Files>.file {
    padding: 10px;
    transition: .5s;
}

.files-Statistics>.Files>.file:hover {
    background-color: #eeeeee4d;
}

.files-Statistics>.Files>.file>i {
    color: #777;
}

.files-Statistics>.Files>.file>.file-kind {
    text-align: center;
    padding: 20px 0 0;
}

.files-Statistics>.Files>.file>.file-kind>img {
    width: 70px;
}

.files-Statistics>.Files>.file>div>.title {
    margin: 10px 0;
}


.files-Statistics>.Files>.file>span {
    font-size: 14px;
    color: #777;
    padding-bottom: 15px;
    display: block;
}

.files-Statistics>.Files>.file>.footer {
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #777;
    font-size: 15px;
    border-top: 1px solid #eee;
}

/* ------------------------ */

.statistics {
    height: fit-content;
    padding: 20px 15px;
}

.statistics>h3 {
    margin: 0;
    margin-bottom: 15px;
    text-align: center;
}

.statistics>div:not(:last-child) {
    margin-top: 15px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    justify-content: space-between;
    transition: .5s;
}

.statistics>div:not(:last-child):hover {
    background-color: #eeeeee4d;
}

.icon-title {
    display: flex;
    align-items: center;
}

.statistics>div>.icon-title>.icon {
    width: 40px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.statistics>div>.icon-title>.title {
    margin-left: 10px;
    font-size: 14px;
    padding: 5px;
    margin-top: 0;
}

.statistics>div>.icon-title>.title>span {
    display: block;
}

.statistics>div>.icon-title>.title>span:not(:last-child) {
    margin-bottom: 5px;
}

.statistics>div>span {
    font-size: 14px;
    padding: 5px;
    margin-left: 15px;
    color: #777;
}

.statistics>.link {
    padding: 0;
}

.statistics>.link>a {
    color: white;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--blue-color);
    padding: 17px 20px;
    margin: 20px auto 0;
    width: fit-content;
    border-radius: 7px;
    font-size: 14px;
    transition: .4s;
    border: 1px solid #eee;
}

.statistics>.link>a>i {
    margin-right: 7px;
}

/* Animation  */

@keyframes topBottom {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0px);
    }
}

.statistics>.link>a:hover {
    background-color: var(--blue-alt-color);
}

.statistics>.link>a:hover i {
    animation: topBottom .6s linear infinite;
}

/* ========  Plans  ====== */

.Plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
    margin: 20px;
}

@media (max-width:767px) {
    .Plans {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.Plans>.plan {
    padding: 7px;
}

.Plans>.plan>.Salary {
    padding: 2px;
}

.Plans>.plan>.Salary>div {
    padding: 15px;
    text-align: center;
    font-size: 40px;
    color: white;
}

.Plans>.plan>.Salary>div>h5 {
    margin: 0;
    margin-bottom: 10px;
}

.Plans>.plan>.Salary>div>p {
    margin: 0;
    font-size: 33px;
}

.Plans>.plan>.advanteges>ul>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border-bottom: 1px solid #eee;
    transition: 1s;
}

.Plans>.plan>.advanteges>ul>li>div {
    display: flex;
    align-items: center;
}

.Plans>.plan>.advanteges>ul>li>div>i {
    margin-right: 7px;
}

.Plans>.plan>.advanteges>ul>li>div>h3 {
    font-size: 18px;
    font-weight: normal;
    margin: 15px;
}

.Plans>.plan>.advanteges>ul>li>i {
    color: #777;
}

.Plans>.plan>.advanteges>.Join-link>a {
    padding: 8px 17px;
    display: block;
    width: fit-content;
    margin: 12px 0 10px 10px;
    color: white;
    border-radius: 5px;
    border: 1px solid #eee;
    font-size: 17px;
    transition: .4s;
}

.CurrentPlan {
    color: #777;
    text-align: center;
    font-size: 16px;
}

/* Small  toggle case  */


.small-toggle-checkbox {
    -webkit-appearance: none;
    appearance: none;
}

.small-toggle-switch {
    background-color: #ccc;
    width: 60px;
    height: 19px;
    position: relative;
    border-radius: 15px;
    cursor: pointer;
    transition: .3s;
}

.small-toggle-switch::before {
    content: "\f00d";
    font-family: var(--font-Aw-fam);
    font-weight: 900;
    position: absolute;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
    left: 2px;
    color: #ccc;
    transition: .4s;
    font-size: 9px;
}

.small-toggle-checkbox:checked+.small-toggle-switch {
    background-color: var(--blue-color);
}

.small-toggle-checkbox:checked+.small-toggle-switch::before {
    content: "\f00c";
    font-family: var(--font-Aw-fam);
    font-weight: 900;
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
    left: 45px;
    font-size: 9px;
    color: var(--blue-color);
}