#headerSection,
#searchSection,
#membersList {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

#headerSection {
    margin-top: 20px;
    margin-bottom: 40px;
}

.header-section-content {
    margin-bottom: 26px;
}

.header-section-title {
    display: flex;
    align-items: center;
}

.deco-bar {
    width: -webkit-fill-available;
}

.members-return {
    text-transform: capitalize;
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

h2 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 10px;
    width: 240px;
    margin-right: 10px;
}

h3 {
    font-size: 15px;
    color:  var(--primary);
    line-height: 25px;
}

.header-section-total {
    font-size: 12px;
    color: var(--lightBlue);
    font-weight: 600;
}

#searchSection {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.search-box {
    background-color: #F0F3F6;
    border-radius: 8px;
    height: 36px;
    display: flex;
    justify-content: space-between;
    width: 461px;
    margin-bottom: 40px;
    align-self: end;
}

.search-icon,
.search-btn {
    width: 60px;
}

.search-input {
    width: 318px;
    border: none;
    color: var(--secondary);
}
.search-input::placeholder {
    font-size: 15px;
    color: var(--lightBlue);
}
.search-icon,
.search-btn,
.search-input {
    height: 36px;
    background-color: transparent;
}

.search-icon {
    border-right: 2px solid var(--lightBlue);
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-btn {
    border: none;
    border-left: 2px solid var(--lightBlue);
    cursor: pointer;
}


.search-alphabet {
    display: flex;
    justify-content: space-between;
}



.alphabet-filter {
    -width: 20px;
    color: var(--lightBlue);
    text-align: center;
}

.alphabet-filter-active,
#click_Tous {
    color: var(--secondary);
}

.alphabet-filter-active:hover,
#click_Tous:hover {
    color: var(--primary);
    cursor: pointer;
}

.sublist {
    margin-bottom: 30px;
}

.sublist-header{
    color: var(--lightBlue);
    padding-left: 30px;
}

.sublist-list {
    padding-inline-start: 1rem;
    column-count: 3;
    column-width: 305px;
    column-gap:85px;
}

hr {
    border-top: 2px solid var(--lightBlue);
    margin-top: 15px;
    margin-bottom: 15px;
}

.sublist-item {
    text-transform: uppercase;
    color: var(--secondary);
    line-height: 23px;
    font-size: 12px;
    width: 33%;
}

.clickable:hover {
    color: var(--primary);
    cursor: pointer;
}


/* Modale */

#membersModal {
    width: 630px;
    border-top: 2px solid var(--primary);
    border-radius: 11.18px;
    box-shadow: 4px 4px 15px 2px rgba(0, 0, 0, .25);
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 45px;
    background-color: #F7FAFD;
    position: absolute;
    display: none;
}

.members-modal-header-logo {
    height: 105px;
    width: 105px;
    border-radius: 50%;
    border: 1px solid var(--lightBlue);
    position: relative;
    top: -50px;
    margin-right: auto;
    margin-left: auto;
    background-color: white;
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
}

.members-modal-info,
.members-modal-content{
    width: 74.5%;
    margin-left:auto;
    margin-right: auto;
}

.members-modal-info {
    text-align:center;
}

.members-modal-info > hr {
    border: 0.7px solid var(--lightBlue);
}

.members-company-name {
    color: var(--secondary);
    font-weight: 700;
    font-size: 26px;
    line-height: 31px;
}

.members-company-site {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 15px;
    color: var(--lightBlue);
}

.members-modal-content {
    margin-bottom: 33px;

    height: 300px;
    overflow: auto;
}

.members-modal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 12px;
    padding: 7.45px 33px 7.45px 11.18px;
    margin-bottom: 12px;
}

.members-modal-item-identity {
    display: flex;
    align-items: center;
}

.members-modal-item-pp {
    height: 62px;
    width: 62px;
    background-color: var(--lightBlue);
    border: 1.5px solid var(--lightBlue);
    border-radius: 50%;
    margin-right: 7.5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.members-modal-item-name {
    font-weight: 700;
    font-size: 12px;
}

.members-modal-item-name > .first-name {
    text-transform: capitalize;
}

.members-modal-item-name > .name {
    text-transform: uppercase;
}

.members-modal-item-social-icon {
    height: 20px;
    width: auto;
}

#membersModalLogoClose {
    box-sizing: border-box;
    height: 41.85px;
    border: 1.49036px solid var(--lightBlue);
    border-radius: 5.96146px;
    color: var(--lightBlue);
    text-transform: uppercase;
    margin-right: auto;
    margin-left: auto;
    display: block;
    cursor: pointer;
}
#membersModalLogoClose:hover {
    color: var(--primary);
    border-color: var(--primary);
}


/* Responsive */

@media screen and (max-width: 1064px) {
    #headerSection,
    #membersList {
        width: 80%;
    }

}

@media screen and (max-width: 500px) {
    #headerSection,
    #membersList {
        width: 90%;
    }

    #membersModal {
        width: 85%;
    }
    .sublist-list {

    }

}
