.header{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.header_title{
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 10px;
    padding: 0 30px;
    min-height: 60px;
    width: 100%;
}
.header_title > h3{
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.header_title > h3 > span{
    margin-left: 5px;
    font-size: 14px;
    color: var(--color-body);
    font-weight: 400;
}
.header_title > .header_title_action{
    flex: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_btns .btn{
    width: 230px;
    height: 60px;
    font-size: 16px;
    padding: 10px;
    gap: 12px;
    justify-content: flex-start;
}

/* profile section start */
.profile_wrapper{
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0px 12px 26px 0px rgb(177 193 224 / 10%);
    margin-bottom: 10px;
}
.profile_header{
    display: flex;
    align-items: center;
    padding: 30px 20px;
    gap: 15px;
    position: relative;
    z-index: 0;
}
.profile_section_icon{
    flex: none;
}
.profile_section_icon > svg{
    width: 34px;
    height: 34px;
}
.profile_section_title{
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    flex: 1 1;
}
.profile_section_actions{
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}
.profile_section_accordion_icon{
    width: 24px;
    height: 24px;
    border-radius: 50px;
    background-color: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.profile_section_accordion_icon:before{
    content: "";
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #9aa4cc;
}
.profile_body{
    padding: 30px;
    border-top: 1px solid #f5f7fa;
    display: none;
}
.active .profile_body{
    display: block;
}
/* profile section end */

/* element list start */
.element_list{
    display: grid;
    /* grid-template-columns: 170px 170px 170px; */
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 15px;
    justify-content: center;
}
.element_item{
    border: 1px solid #e5eaf2;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0px 12px 24px 0px rgba(177, 193, 224, 0.08);
    /* width: 168px; */
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
}
.element_item > p{
    margin: 0;
    font-size: 16px;
    color: #9aa4cc;
}
  
/* element list end */

@media (max-width: 768px) {
    .profile_wrapper{
        border-radius: 8px;
    }
    .profile_header{
        padding: 15px 10px;
        gap: 10px;
    }
    .profile_body{
        padding: 15px;
    }
    .header{
        flex-direction: column;
    }
}