:root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --blue-color: #0075ff;
    --blue-alt-color: #0d69d5;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --red-color: #f44336;
    --grey-color: #888;
    --border-color: #ccc;
}
@media (max-width: 767px) {
    .overview {
        flex-direction: column;
    }
}
.profile-page .avatar-box {
    width: 300px;
    border-radius: 1px solid #eee;
}
@media (min-width: 768px) {
    .profile-page .avatar-box {
        border-right: 1px solid #eee;
    }
}
.profile-page .avatar-box > img {
    width: 120px;
    height: 120px;
}
.profile-page .avatar-box .level {
    height: 6px;
    overflow: hidden;
    margin: auto;
    width: 70%;
    position: relative
}
.profile-page .avatar-box .level span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 6px;
}
.profile-page .info-box .box {
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}
.profile-page .info-box .box:hover {
    background-color: #f9f9f9;
}
.profile-page .info-box .box > div {
    min-width: 250px;
    padding: 10px 0 0;
}
.profile-page .info-box h4 {
    font-weight: normal;
}
/* Start Training Code */
.profile-page .info-box .toggle-switch {
    height: 20px;
}
@media (max-width: 767px) {
    .profile-page .info-box .toggle-switch {
    margin: auto;
    }
}
.profile-page .info-box .toggle-switch::before {
    width: 12px;
    height: 12px;
    font-size: 8px;
}
.profile-page .info-box .toggle-checkbox:checked + .toggle-switch::before {
    left: 62px;
}
/* Start Other Data */
@media (max-width: 767px) {
    .profile-page .other-data {
        flex-direction: column;
    }
}
.other-data .skills-card {
    flex-grow: 1;
}
.other-data .skills-card ul li {
    padding: 15px 0;
}
.other-data .skills-card ul li span {
    display: inline-flex;
    padding: 4px 10px;
    background-color: #eee;
    border-radius: 6px;
    font-size: 14px;
}
.other-data .skills-card ul li span:not(:last-child) {
    margin-right: 5px;
} 
.other-data .skills-card ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.other-data .activities-cards {
    flex-grow: 2;
}
.other-data .activities-cards .activity:not(:last-of-type) {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.other-data .activities-cards .activity img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
@media (min-width: 768px) {
    .other-data .activities-cards .activity .date {
        margin-left: auto;
        text-align: right;
    }
    .other-data .activities-cards .activity img {
        margin-right: 10px;
    }
}
@media (max-width: 767px) {
    .other-data {
        flex-direction: column;
    }
    .other-data > div {
        width: 100%
    }
    .other-data .activities-cards .activity {
        flex-direction: column;
    }
    .other-data .activities-cards .activity img {
        margin-bottom: 15px;
    }
    .other-data .activities-cards .activity .date {
        margin-top: 15px;
    }
}
/* Start Acivities */
/* End Acivities */
/* End Other Data */