.contact_us {
    display: flex;
    padding: 50px;
    width: 400px;
    height: auto;
    flex-direction: column;
}

.conversationContainer, .createProfileBtnSection {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
}

.createProfileBtnSection {
    margin-bottom: 100px;
}

.contactInput {
    margin: 10px 0;
}

.contactInfo {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 0.9) 21%, rgba(158, 86, 120, 0.9) 94%);
    display: flex;
    flex-direction: column;
    padding: 50px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;

}

.contactInfoheader {
    border-bottom: darkgoldenrod 1px solid;
    border-image: linear-gradient(to right, darkgoldenrod 10%, transparent 30%) 100% 1;
    color: deeppink;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contactInfobody {
    color: ghostwhite;
    /*margin-top: 30px;*/
}

.contactInfobody p {

    margin-top: 30px;
}

.sub_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sub_container input {
    max-width: 95%;
}


/*

Profile non edit

*/

.my_profile_view {
    display: flex;
    padding: 50px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.profile_tile {
    display: flex;
    padding: 50px;
    width: 400px;
    height: auto;
    flex-direction: column;
    margin: 20px;
}

.fieldName {
    font-weight: 700;
    margin-right: 10px
}


.about_info_view {
    order: 1;
}

.contact_info_view {
    order: 2;
}

.address_info_view {
    order: 3;
}

.social_info_view {
    order: 4;
}

.actionBtns {
    justify-content: center;
    display: flex;
    padding: 0 50px;
    width: 400px;
    margin: 0 20px;
}

.editmode {
    display: none;
}

.collection_page_section {
    margin-bottom: 200px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 130px;
    gap: 20px;
    justify-content: flex-start;
}

@media (max-width: 992px) {
    .collection_page_section {
        justify-content: center;
        margin-left: 0;
    }
}