@import url(theme-root.css);

/*
Developer:      Muhammad Salam
Developer URL:  https://www.linkedin.com/in/salamaslamofficial/
Company:        ICTechnology, Australia
Company URL:    ictechnology.com.au
Descriptipon:   This file contains all styling properties for the User Profile.
*/


.profile-navigation-bar-list{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
.profile-navigation-bar-list-item{
    margin-right: 20px;
    line-height: 100%;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
}
.after-slash-border::after{
    content: "/";
    padding-left: 20px;
    color: var(--light-secondary);
}
.profile-navigation-bar-list .active{
    font-size: 24px;
    color: var(--primary-text);
}
.user-information-row{
    display: flex;
    justify-content: flex-start;
    margin-top: 60px;
    margin-bottom: 20px;
}
.user-profile-details{
    width: 33.5%;
    padding: 25px 36px;
    background-color: var(--primary-text);
}
.donation-details{
    width: 22.5%;
}
.profile-picture{
    height: 100px;
    width: 100px;
    border-radius: 50px;
    background-position: center !important;
    background-size: cover !important;
}
.user-name{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.profile-status{
    font-size: 14px;
    font-weight: 500;
}
.user-profile-details:first-child{
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
}
.user-profile-details:last-child{
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
}
.user-profile-details-right-border{
    border-right: 2px solid var(--off-bg);
}
.profile-donation-title{
    font-size: 18px;
    margin-bottom: 8px;
}
.profile-donation-value{
    font-size: 36px;
    line-height: 100%;
}
.border-top-round-12{
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}
.border-bottom-round-12{
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}
.profile-block{
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    margin-bottom:60px;
}
.col-title{
    font-size: 14px;
    line-height: 100%;
    padding-bottom: 12px;
    color: var(--secondary-text);
}

 /* Media query for smaller screens (e.g., tablets) */
 @media only screen and (max-width: 768px) {
    .user-information-row{
        display: block;
        margin-top:40px;
    }
    .user-profile-details{
        width: 100%;
        border-radius: 0px !important;
        border-right: none !important;
    }
    .user-profile-details:first-child{
        border-top-right-radius: 12px !important;
        border-top-left-radius: 12px !important;
    }
    .user-profile-details:last-child{
        border-bottom-right-radius: 12px !important;
        border-bottom-left-radius: 12px !important;
    }
    .profile-navigation-bar{
        max-width: 100%;
        overflow-x: scroll;
    }
    .profile-navigation-bar-list{
        display: -webkit-inline-box;
    }
    .card-details{
        display: flex;
        justify-content: space-between !important;
        align-items: center;
    }
    .donation-details{
        display: block !important;
    }
    .profile-donation-title{
        font-size: 14px;
    }
    .profile-picture{
        width: 60px;
        height: 60px;
    }
    .user-name{
        font-size: 20px;
    }
    .user-profile-details{
        border-bottom: 1px solid white;
    }
    .profile-block{
        font-size:20px;
    }
    .col-title{
        padding-top: 20px;
    }
    .col-title-first{
        padding-top: 0;
    }
 }

/* Media query for even smaller screens (e.g., smartphones) */
@media only screen and (max-width: 480px) {
    .user-information-row{
        display: block;
        margin-top:40px;
    }
    .user-profile-details{
        width: 100%;
        border-radius: 0px !important;
        border-right: none !important;
    }
    .user-profile-details:first-child{
        border-top-right-radius: 12px !important;
        border-top-left-radius: 12px !important;
    }
    .user-profile-details:last-child{
        border-bottom-right-radius: 12px !important;
        border-bottom-left-radius: 12px !important;
    }
    .profile-navigation-bar{
        max-width: 100%;
        overflow-x: scroll;
    }
    .profile-navigation-bar-list{
        display: -webkit-inline-box;
    }
    .card-details{
        display: flex;
        justify-content: space-between !important;
        align-items: center;
    }
    .donation-details{
        display: block !important;
    }
    .profile-donation-title{
        font-size: 14px;
    }
    .profile-picture{
        width: 60px;
        height: 60px;
    }
    .user-name{
        font-size: 20px;
    }
    .user-profile-details{
        border-bottom: 1px solid white;
    }
    .profile-block{
        font-size:20px;
    }
    .col-title{
        padding-top: 20px;
    }
    .col-title-first{
        padding-top: 0;
    }
    .profile-personal-info{
        width:165px !important;
    }
    .user-profile-details{
        padding:25px 15px !important;
    }
    .profile-card-detail{
        padding:0px !important;
    }
    .profile-donation-title{
        margin-bottom:0px !important;
    }
    .profile-donation-value{
        font-size:24px;
    }
    
}