.tab {
    overflow: hidden;
}

.delete-btn {
    width: 34px;
}

.circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

#event_selection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new_notif {
    display: none;
    background: #c91864;
    color: #ffffff;
    font-size: 13px;
}

.info_number {
    margin: 5px;
    padding: 7px;
}

.number_participant {
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 26px;
    padding: 0 22px 0 22px;
    border-radius: 3px;
    background: #f7b969;
    color: #ffffff;
    display: flex;
    margin: auto 30px auto 0;
}

.tab {
    display: flex;
}

.tab > div {
    display: flex;
}

#new_participant_form {
    width: 100%;
    display: none;
    align-items: center;
    flex-direction: column;
    border: 1px solid #80808040;
    margin-bottom: 25px;
}

#search_participant {
    float: left;
}

#new_participant_form > * {
    margin: 5px 0 5px 0;
}

.new_participant_input {
    margin-left: 5px;
}

.new_participant_button {
    background: #c72564;
    /*float: right;*/
    /*margin-top: -13px;*/
    margin : 2px;

}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    outline: none;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    font-weight: bold;
    font-size: 20px;
    -webkit-tap-highlight-color: transparent;
}

/* Change background color of buttons on hover */
.tab button:hover {
    color: #da5e8c;
}

.table_responsive {
    display: flex;
    justify-content: center;
}

.table_responsive > table {
    width: inherit;
}

tbody tr:nth-child(odd) {
    background-color: white;
    color: black;
}

tbody tr:nth-child(even) {
    background-color: #e4e4e4;
    color: black;
}

.button_td {
    border: black;
    background-color: white;
}

.info_text_table_div {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.info_text_table_div > * {
    padding-bottom: 2%;
    display: flex;
}

.info_text_table {
    font-size: 26px;
    color: black;
}

.number_participant_div {
    display: flex;
    padding-bottom: 40px;
}

.number_participant_div > * {
    margin: auto;
    background-color: #efefef;
    padding: 1% 10% 1% 10%;
}

.text_info {
    font-size: 48px;
}

.number_participant_div > * > * {
    display: flex;
    flex-direction: column;
}

.button_td > span {
    padding: 10px 20px;
    font-size: 15px;
}

.button_td > img {
    width: 34px;
}

.family_title {
    padding-bottom: 20px;
}

.phone_info {
    padding: 20px 0 20px 0;
}

hr {
    width: 100%;
    border: 1px solid #80808040;
    border-radius: 2px;
    margin-bottom: 12px;
}

@media (max-width: 905px) {
    .tab button {
        font-size: 15px;
    }

    .number_participant_div > * {
        margin: auto;
        background-color: #efefef;
        padding: 1% 4% 1% 10%;
    }

    .number_participant {
        padding: 0 10px 0 10px;
        margin: auto 10px auto 0;
    }

    .new_notif {
        font-size: 0;
        width: 5px;
        height: 5px;
    }

    .button_td > span {
        padding: 9px 8px;
    }

    .new_participant_button {
        float: initial;
        margin-bottom: 25px;
    }
}