:root {
    --blue-color--: #0075ff;
    --blue-alt-color--: #0d69d5;
    --orange-color--: #f59e0b;
    --green-color--: #22c55e;
    --red-color--: #f44336;
    --grey-color--: #888;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
}

*:focus {
    outline: none;
}

input {
    appearance: none;
}

input[type="checkbox"] {
    display: none;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

textarea {
    resize: none;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: white;
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue-color--);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-alt-color--);
}

.page {
    min-height: 100vh;
    background-color: #f1f5f9;
}

/* ----- Start Sidebar ----- */
.sidebar {
    position: fixed;
    width: 200px;
    box-shadow: 0 0 10px #ddd;
}

.sidebar>h3 {
    margin-bottom: 50px;
}

.sidebar ul li a {
    transition: .3s;
    margin-bottom: 5px;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    background-color: #f6f6f6;
}

.sidebar ul li a span {
    margin-left: 10px;
}

@media(max-width: 767px) {
    .sidebar {
        width: 70px;
        padding: 10px;
    }

    .sidebar>h3 {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .sidebar ul li a i {
        margin: auto;
    }

    .sidebar ul li a span {
        display: none;
    }
}

@media(min-width:768px) {

    .sidebar>h3::before,
    .sidebar>h3::after {
        content: "";
        position: absolute;
        background-color: black;
        left: 50%;
        transform: translateX(-50%);
    }

    .sidebar>h3::before {
        width: 100px;
        height: 2px;
        bottom: -15px;
    }

    .sidebar>h3::after {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 4px solid white;
        bottom: -24px;
    }
}

/* ----- End Sidebar ----- */
/* ----- Start Content Head ----- */
.content {
    overflow: hidden;
    margin-left: 200px;
}

@media(max-width: 767px) {
    .content {
        margin-left: 70px;
    }
}

.head .search::before {
    font-family: "Font Awesome 5 Free";
    content: "\f002";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--grey-color--);
}

.head .search input {
    margin-left: 5px;
    padding-left: 30px;
    width: 150px;
    transition: width .3s;
}

.head .search input:focus {
    width: 200px;
}

.head .search input:focus::placeholder {
    opacity: 0;
}

.head .icon span::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--red-color--);
    border-radius: 50%;
    right: -3px;
    top: -3px;
}

.head .icon img {
    width: 36px;
    height: 36px;
    margin-left: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

/* ----- End Content Head ----- */
/* ----- Start Title Heading ----- */
.page h1 {
    margin: 20px 20px 40px;
}

.page h1::before,
.page h1::after {
    content: "";
    position: absolute;
    height: 3px;
    bottom: -10px;
    left: 0;
}

.page h1::before {
    background-color: white;
    width: 120px;
}

.page h1::after {
    background-color: black;
    width: 50px;
}

/* ----- End Title Heading ----- */
.wrapper {
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
}

@media(max-width: 767px) {
    .wrapper {
        grid-template-columns: minmax(200px, 1fr);
        margin: 0 10px;
        gap: 10px;
    }
}

/* ----- Start Welcome Widget -----  */
.welcome {
    overflow: hidden;
}

.welcome .intro img {
    width: 150px;
    margin-bottom: -50px;
}

.welcome img.avater {
    width: 50px;
    margin-left: 20px;
    margin-top: -17px;
    padding: 2px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.welcome .body>div {
    flex: 1;
    line-height: 1;
    font-weight: bold;
    font-size: 14px;
}

.welcome .visit {
    margin: 50px 15px 15px auto;
    transition: .3s;
}

.welcome .visit:hover {
    background-color: var(--blue-alt-color--);
}

@media(max-width: 767px) {
    .welcome .intro {
        padding-bottom: 30px;
    }

    .welcome img.avater {
        margin-left: 0;
    }

    .welcome .body :not(:last-child) {
        margin-bottom: 30px;
    }

    .welcome .visit {
        margin: 0 15px 15px auto;
    }
}

/* ----- End Welcome Widget -----  */
/* ----- Start Quick Draft Widget ----- */
.quick-draft textarea {
    min-height: 180px;
}

.quick-draft .save {
    margin-left: auto;
    cursor: pointer;
    transition: .3s;
}

.quick-draft .save:hover {
    background-color: var(--blue-alt-color--);
}

/* ----- End Quick Draft Widget ----- */
/* ----- Start Targets Widget ----- */
.targets .target-row .icon {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.targets .target-row .details {
    flex: 1;
}

@media(max-width:767px) {
    .targets .target-row .details span:nth-child(2) {
        display: inline-block;
        margin-bottom: 45px;
        margin-left: 25px;
    }
}

.targets .target-row .details .progress {
    height: 4px;
}

.targets .target-row .details .progress>span {
    position: absolute;
    height: 100%;
}

.targets .target-row .details .progress>span span {
    position: absolute;
    bottom: 20px;
    right: -16px;
    padding: 2px 5px;
}

.targets .target-row .details .progress>span span::after {
    content: "";
    position: absolute;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.targets .target-row .details .progress>.blue span::after {
    border-top-color: var(--blue-color--);
}

.targets .target-row .details .progress>.orange span::after {
    border-top-color: var(--orange-color--);
}

.targets .target-row .details .progress>.green span::after {
    border-top-color: var(--green-color--);
}

.money .icon,
.money .progress {
    background-color: rgb(0 117 255 / 20%);
}

.project .icon,
.project .progress {
    background-color: rgb(245 158 11 / 20%);
}

.team .icon,
.team .progress {
    background-color: rgb(34 197 94 / 20%);
}

/* ----- End Targets Widget ----- */
/* ----- Start Ticket Widget ----- */
.ticket .box {
    width: calc(50% - 10px);
}

@media(max-width: 767px) {
    .ticket .box {
        width: 100%;
    }
}

/* ----- End Ticket Widget ----- */
/* ----- Start Latest News Widget ----- */
.latest-news .news-row img {
    width: 100px;
    border-radius: 6px;
    margin-right: 15px;
}

.latest-news .info {
    flex-grow: 1;
}

@media(max-width: 767px) {
    .latest-news .news-row .label {
        margin: 10px auto;
    }
}

/* ----- End Latest News Widget ----- */
/* ----- Start Tasks Widget ----- */
.tasks .task-row .info {
    flex-grow: 1;
}

.tasks .done {
    opacity: 0.3;
}

.tasks .done h3,
.tasks .done p {
    text-decoration: line-through;
}

.tasks .delete {
    cursor: pointer;
    transition: .3s;
}

.tasks .delete:hover {
    color: var(--red-color--);
}

/* ----- End Tasks Widget ----- */
/* ----- Start Latest Uploads Widget ----- */
.latest-uploads ul li img {
    width: 40px;
}

/* ----- End Latest Uploads Widget ----- */
/* ----- Start Current Project Widget ----- */
.current-project ul::before {
    content: "";
    position: absolute;
    left: 11px;
    width: 2px;
    height: 97%;
    background-color: var(--blue-color--);
}

.current-project ul li::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: white;
    outline: 2px solid var(--blue-color--);
    margin-right: 15px;
    z-index: 1;
}

.current-project ul li.done::before {
    background-color: var(--blue-color--);
}

.current-project ul li.current::before {
    animation: change-color .8s infinite alternate;
    -webkit-animation: change-color .8s infinite alternate;
}

/* ----- End Current Project Widget ----- */
/* ----- Start Reminder Widget ----- */
.reminders ul li .key {
    width: 15px;
    height: 15px;
}

.reminders ul li>.blue {
    border-left: 2px solid var(--blue-color--);
}

.reminders ul li>.green {
    border-left: 2px solid var(--green-color--);
}

.reminders ul li>.orange {
    border-left: 2px solid var(--orange-color--);
}

.reminders ul li>.red {
    border-left: 2px solid var(--red-color--);
}

/* ----- End Reminder Widget ----- */
/* ----- Start Latest Post Widget ----- */
.latest-post .top .avater {
    width: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.latest-post .post-content {
    line-height: 1.8;
}

/* ----- End Latest Post Widget ----- */
/* ----- Start Social Media Widget ----- */
.social-media .box {
    padding-left: 60px;
}

.social-media .box i {
    position: absolute;
    left: 0;
    width: 50px;
    transition: .3s;
}

.social-media .box:hover i {
    transform: rotate(5deg);
}

.social-media .box,
.social-media .box i {
    border-radius: 5px;
}

.social-media .twitter {
    background-color: rgb(29 161 242 / 20%);
    color: #1da1f2;
}

.social-media .facebook {
    background-color: rgb(24 119 242 / 20%);
    color: #1da1f2;
}

.social-media .youtube {
    background-color: rgb(255 0 0 / 20%);
    color: #ff0000;
}

.social-media .linkedin {
    background-color: rgb(0 119 181 / 20%);
    color: #0075ff;
}

/* ----- End Social Media Widget ----- */
/* ----- Start Projects Table ----- */
.projects .responsive-table {
    overflow-x: auto;
}

.projects .responsive-table table {
    min-width: 1000px;
    border-spacing: 1px;
}

.projects table td {
    padding: 15px;
}

.projects table thead td {
    background-color: #eee;
    font-weight: bold;
}

.projects table tbody td {
    border-bottom: 1px solid #eee;
    border-left: 1px solid #eee;
    transition: .3s;
}

.projects table tbody td:last-child {
    border-right: 1px solid #eee;
}

.projects table tbody tr:hover td {
    background-color: #faf7f7;
}

.projects table img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 2px;
    background-color: white;
}

.projects table img:not(:first-child) {
    margin-left: -15px;
}

/* ----- End Projects Table ----- */
/* ----- Start Setting -----  */
.setting-page {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

@media(max-width: 767px) {
    .setting-page {
        grid-template-columns: minmax(100px, 1fr);
        margin: 0 10px;
        gap: 10px;
    }

    .setting-page .site-control .control {
        display: block;
    }
}

.close-message {
    min-height: 120px;
}

.setting-page .general-box .email {
    display: inline-flex;
    width: calc(100% - 80px);
}

.setting-page :disabled {
    cursor: no-drop;
    background-color: #f0f4f8;
    color: #bbb;
}

@media(max-width:767px) {
    .setting-page .security-box>div {
        flex-direction: column;
        align-items: flex-start;
    }
}

.setting-page .social-boxes i {
    width: 40px;
    height: 40px;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    transition: .3s;
    display: flex;
}

.setting-page .social-boxes input {
    height: 40px;
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    border-radius: 0 6px 6px 0;
    padding-left: 10px;
}

.setting-page .social-boxes>div:focus-within .twitter,
.setting-page .social-boxes>div:focus-within .facebook {
    color: #1da1f2;
}

.setting-page .social-boxes>div:focus-within .youtube {
    color: #FF0000;
}

.setting-page .social-boxes>div:focus-within .linkedin {
    color: #0075FF;
}

.setting-page .widgets-control .control label {
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}

.setting-page .widgets-control .control label::before,
.setting-page .widgets-control .control label::after {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -8px;
}

.setting-page .widgets-control .control label::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid var(--grey-color--);
}

.setting-page .widgets-control .control label:hover::before {
    border-color: var(--blue-alt-color--);
}

.setting-page .widgets-control .control label::after {
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    font-weight: 900;
    background-color: var(--blue-color--);
    color: white;
    font-size: 11px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(360deg);
    transition: .3s;
}

.setting-page .widgets-control .control input[type="checkbox"]:checked+label::after {
    transform: scale(1);
}

.setting-page .backup-control .time label {
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}

.setting-page .backup-control .time label::before,
.setting-page .backup-control .time label::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 50%;
}

.setting-page .backup-control .time label::before {
    width: 18px;
    height: 18px;
    border: 2px solid var(--grey-color--);
    margin-top: -10px;
}

.setting-page .backup-control .time label::after {
    background-color: var(--blue-color--);
    width: 12px;
    height: 12px;
    left: 5px;
    margin-top: -5px;
    transition: .3s;
    transform: scale(0);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.setting-page .backup-control .time input[type="radio"]:checked+label::before {
    border-color: var(--blue-color--);
}

.setting-page .backup-control .time input[type="radio"]:checked+label::after {
    transform: scale(1);
}

@media(max-width: 767px) {
    .setting-page .backup-control .servers {
        flex-wrap: wrap;
    }
}

.setting-page .backup-control .servers .server {
    border: 2px solid #eee;
    position: relative;
}

.setting-page .backup-control .servers .server label {
    cursor: pointer;
}

.setting-page .backup-control .servers input[type="radio"]:checked+.server {
    border-color: var(--blue-color--);
    color: var(--blue-color--);
}

/* ----- End Setting -----  */
/* ----- Start Profile -----  */
@media(max-width: 768px) {
    .profile-page .overview {
        flex-direction: column;
    }
}

@media(min-width: 768px) {
    .profile-page .avater-box {
        width: 300px;
        border-right: 1px solid #eee;
    }
}

.profile-page .avater-box>img {
    width: 120px;
    border: 3px solid #eee;
    border-radius: 50%;
    box-shadow: 0px 0 10px #eee;
}

.profile-page .avater-box .level {
    height: 4px;
    width: 70%;
    margin: auto;
    overflow: hidden;
}

.profile-page .avater-box .level span {
    position: absolute;
    background-color: var(--blue-color--);
    height: 100%;
    border-radius: 6px;
    left: 0;
    top: 0;
}

.profile-page .info-box {
    flex-grow: 1;
}

.profile-page .info-box .box {
    flex-wrap: wrap;
    transition: .3s;
}

.profile-page .info-box .box:hover {
    background-color: #f9f9f9;
}

.profile-page .info-box .box>div {
    min-width: 150px;
    padding-top: 10px;
}

.profile-page .info-box .box>div span {
    padding-right: 4px;
}

@media(max-width:767px) {
    .profile-page .other-data {
        flex-direction: column;
    }
}

.profile-page .other-data .skills-card {
    flex-grow: 1;
}

.profile-page .other-data .skills-card ul li {
    padding: 15px 0;
}

.profile-page .other-data .skills-card ul li span {
    background-color: #eee;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 6px;
}

.profile-page .other-data .skills-card ul li span:not(:last-child) {
    margin-right: 5px;
}

.profile-page .other-data .skills-card ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.profile-page .other-data .activities {
    flex-grow: 3;
}

.profile-page .other-data .activities .activity img {
    width: 64px;
    margin-right: 10px;
}

@media(min-width:768px) {
    .profile-page .other-data .activities .activity .date {
        margin-left: auto;
        text-align: right;
    }
}

@media(max-width:767px) {
    .profile-page .other-data .activities .activity {
        flex-direction: column;
    }

    .profile-page .other-data .activities .activity img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .profile-page .other-data .activities .activity .date {
        margin-top: 15px;
    }
}

/* ----- End Profile -----  */
/* ----- Start Project Page -----  */
.projects-page {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.projects-page .project .date {
    position: absolute;
    right: 10px;
    top: 10px;
}

.projects-page .project .team {
    min-height: 60px;
}

.projects-page .project .team a {
    position: absolute;
    left: 0;
    bottom: 0;
}

.projects-page .project .team a:nth-child(2) {
    left: 25px;
}

.projects-page .project .team a:nth-child(3) {
    left: 50px;
}

.projects-page .project .team a:nth-child(4) {
    left: 75px;
}

.projects-page .project .team a:nth-child(5) {
    left: 100px;
}

.projects-page .project .team a:hover {
    z-index: 3;
}

.projects-page .project .team a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.projects-page .project .info .prog {
    height: 6px;
    width: 260px;
}

@media(max-width:767px) {
    .projects-page {
        grid-template-columns: minmax(200px, 1fr);
        margin: 0 10px;
        gap: 10;
    }

    .projects-page .project .serv {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .projects-page .project .serv span {
        margin: 0 10px 10px 0;
    }

    .projects-page .project .info {
        flex-wrap: wrap;
    }

    .projects-page .project .info .prog {
        margin-bottom: 10px;
    }
}

/* ----- End Project Page -----  */
/* ----- Start Courses Page -----  */
.courses-page {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

@media (max-width: 767px) {
    .courses-page {
        grid-template-columns: minmax(200px, 1fr);
        margin: 0 10px;
        gap: 10;
    }
}

.courses-page .course {
    overflow: hidden;
}


.courses-page .course img.cover {
    width: 100%;
}

.courses-page .course img.instructor {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 20px;
    left: 20px;
    border: 2px solid white;
}

.courses-page .course .description {
    line-height: 1.6;
}

.courses-page .course .info {
    border-top: 1px solid #eee;
}

.courses-page .course .info .title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -13px;
    padding: 5px 15px;
}


/* ----- End Courses Page -----  */
/* ----- Start Friends Page -----  */
.friends-page {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

@media(max-width: 767px) {
    .friends-page {
        grid-template-columns: minmax(200px, 1fr);
        margin: 0 10px;
        gap: 10;
    }
}

.friends-page .friend .contact {
    position: absolute;
    left: 10px;
    top: 10px;
}

.friends-page .friend .contact i {
    color: #666;
    cursor: pointer;
    transition: .4s;
}

.friends-page .friend .contact i:hover {
    background-color: var(--blue-color--);
    color: white;
}

.friends-page .friend img {
    width: 30%;
}

.friends-page .friend .icons .vip {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    opacity: 0.4;
}

/* ----- End Friends Page -----  */
/* ----- Start Files Page -----  */
.files-page {
    flex-direction: row-reverse;
    align-items: start;
}

@media (max-width:767px) {
    .files-page {
        flex-direction: column;
        align-items: normal;
    }

}

.files-page .icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.files-page .files-stats .blue {
    background-color: rgb(0 117 255 / 20%);
}

.files-page .files-stats .green {
    background-color: rgb(34 197 94 / 20%);
}

.files-page .files-stats .red {
    background-color: rgb(244 67 54 / 20%);
}

.files-page .files-stats .orange {
    background-color: rgb(245 158 11 / 20%);
}

.files-page .files-stats .size {
    margin-left: 40px;
}

.files-page .files-stats .upload {
    margin: 15px auto 0;
    padding: 10px 15px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.files-page .files-stats .upload:hover {
    background-color: var(--blue-alt-color--);
}

.files-page .files-stats .upload:hover i {
    animation: go-up .8s infinite;
    -webkit-animation: go-up .8s infinite;
}

.files-page .files-content {
    flex: 1;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.files-page .files-content .down-icon {
    position: absolute;
}

.files-page .files-content img {
    width: 64px;
    height: 64px;
}

.files-page .files-content .info {
    border-top: 1px solid #eee;
}

/* ----- End Files Page -----  */

/* ----- Start Plans Page -----  */
.plans-page {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

@media(max-width: 767px) {
    .plans-page {
        grid-template-columns: minmax(250px, 1fr);
        margin: 0 10px;
        gap: 10;
    }
}

.plans-page .plan-top {
    border: 3px solid white;
    outline: 3px solid transparent;
}

.plans-page .plan.green .plan-top {
    outline-color: var(--green-color--);
}

.plans-page .plan.blue .plan-top {
    outline-color: var(--blue-color--);
}

.plans-page .plan.orange .plan-top {
    outline-color: var(--orange-color--);
}

.plans-page .plan .price {
    position: relative;
    font-size: 40px;
    width: fit-content;
    margin: auto;
}

.plans-page .plan .price span {
    position: absolute;
    left: -20px;
    top: 0;
    font-size: 26px;
}

.plans-page .plan ul li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.plans-page .plan ul li .yes {
    color: var(--green-color--);
}

.plans-page .plan ul li i:not(.yes, .help) {
    color: var(--red-color--);
}

.plans-page .plan ul li i:first-child {
    font-size: 16px;
    margin-right: 10px;
}

.plans-page .plan ul li .help {
    color: var(--grey-color--);
    margin-left: auto;
    cursor: pointer;
}

.plans-page .plan a {
    padding: 15px;
}

/* ----- End Plans Page -----  */

/* ----- Start Animation -----  */
@keyframes change-color {
    from {
        background-color: var(--blue-color--);
    }

    to {
        background-color: white;
    }
}

@keyframes go-up {

    0%,
    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
    }

}

/* ----- End Animation -----  */
.toggle-switch {
    background-color: #ccc;
    height: 24px;
    width: 60px;
    border-radius: 15px;
    position: relative;
    transition: .3s;
    cursor: pointer;
}

.toggle-switch::before {
    font-family: "Font Awesome 5 Free";
    content: "\f00d";
    font-weight: 900;
    background-color: white;
    position: absolute;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    transition: .3s;
    font-size: 11px;
}

.toggle-checkbox:checked+.toggle-switch {
    background-color: var(--blue-color--);
}

.toggle-checkbox:checked+.toggle-switch::before {
    content: "\f00c";
    left: 40px;
    color: var(--blue-color--);
}