.profile-page {
    margin-bottom: 20px;
    padding: 20px;
}
.profile-page .overview {
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
}
.profile-page .overview .avatar-box {
    width: 300px;
    text-align: center;
    padding: 20px;
}
@media (max-width: 767px) {
    .profile-page .overview {
        flex-direction: column;
    }
    .profile-page .overview .avatar-box {
        border-right: 1px solid #eee;
    }
}
.profile-page .overview .avatar-box > img{
    border-radius: 50%;
    margin-bottom: 10px;
    width: 120px;
    height: 120px;
}
.profile-page .overview .avatar-box h3 {
    margin: 0;
}
.profile-page .overview .avatar-box p {
    opacity: .5;
    margin-top: 10px;
}
.profile-page .overview .avatar-box .level {
    border-radius: 10px;
    background-color: #eee;
    position: relative;
    height: 6px;
    overflow: hidden;
    margin: auto;
    width: 70%;
}
.profile-page .overview .avatar-box .level span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 6px;
}
.profile-page .overview .avatar-box .rating {
    margin: 10px 0;
}
.profile-page .overview .avatar-box .rating i {
    font-size: 13px;
    color: var(--orange-color);
}
.profile-page .info-box {
    width: 100%;
}
.profile-page .info-box .box {
    padding: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    transition: .3s;
}
.profile-page .info-box .box:hover {
    background-color: #f9f9f9;
}
.profile-page .info-box .box > div {
    min-width: 250px;
    padding: 10px 0 0;
    font-size: 14px;
}
@media (max-width: 767px) {
    .profile-page .info-box .box {
        justify-content: center;
    }
}
.profile-page .info-box h4 {
    opacity: .5;
    font-size: 15px;
    width: 100%;
    margin: 0;
    font-weight: normal;
}
.profile-page .info-box .box > div span:first-child {
    opacity: .5;
}
.profile-page .info-box .toggle-switch {
    height: 20px;
}
.profile-page .info-box .toggle-switch::before {
    width: 15px;
    height: 15px;
    top: 2px;
    font-size: 10px;
}
.profile-page .info-box .toggle-checkbox:checked + .toggle-switch::before {
    left: 58px;
}
@media (max-width: 767px) {
    .profile-page .info-box {
        text-align: center;
    }
    .profile-page .info-box h4 {
        margin: 0 0 0 20px;
    }
    .profile-page .info-box .toggle-switch {
        margin: auto;
    }
}
.profile-page .other-data {
    display: flex;
    gap: 20px;
}
@media (max-width: 767px) {
    .profile-page .other-data {
        flex-direction: column;
    }
}
.profile-page .other-data .skills-card {
    flex-grow: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}
.profile-page .other-data .skills-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
}
.profile-page .other-data .skills-card p {
    margin-top: 0;
    margin-bottom: 20px;
    opacity: .5;
    font-size: 15px;
}
.profile-page .other-data .skills-card ul {
    padding: 0;
    list-style: none;
}
.profile-page .other-data .skills-card ul li {
    padding: 15px 0;
}
.profile-page .other-data .skills-card ul li:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.profile-page .other-data .skills-card ul li span {
    display: inline-flex;
    padding: 4px 10px;
    background-color: #eee;
    border-radius: 6px;
    font-size: 14px;
}
.profile-page .other-data .skills-card ul li span:not(:last-child) {
    margin-right: 5px;
}
.profile-page .activities {
    flex-grow: 2;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}
@media (max-width: 767px) {
    .profile-page .other-data .skills-card p {
        margin-bottom: 0px;
    }
    .profile-page .other-data .skills-card ul li span {
        margin-top: 10px;
    }
}
.profile-page .activities h2 {
    margin-top: 0;
    margin-bottom: 10px;
}
.profile-page .activities p {
    margin-top: 0;
    margin-bottom: 20px;
    opacity: .5;
    font-size: 15px;
}
.profile-page .activities .activity {
    display: flex;
    /* align-items: center; */
}
.profile-page .activity:not(:last-of-type) {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.profile-page .activity img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 10px;
}
@media (max-width: 767px) {
    .profile-page .activities .activity {
        text-align: center;
    }
}
.profile-page .activities .activity .date {
    text-align: right;
    margin-left: auto;
}
.profile-page .activities .activity .info span:first-of-type,
.profile-page .activities .activity .date span:first-of-type {
    display: block;
    margin-bottom: 10px;
}
.profile-page .activities .activity .info span:last-of-type, 
.profile-page .activities .activity .date span:last-of-type {
    opacity: .5;
}
@media (max-width: 767px) {
    .profile-page .activities .activity {
        flex-direction: column;
        align-items: center;
    }
    .profile-page .activity img {
        margin: 0 0 8px;
    }
    .profile-page .activities .activity .date {
        text-align: center;
        margin: 14px 0 0;
    }
}