.popUpWrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popUpContainer{
    position: relative;
    width: auto;
    height: auto;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
}

.closePopUp{
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 10px;
}

.popUpTitle{
    color: var(--mainColorCatalogue);
}

.btnDisabledPrestation, .btnDisabledFamille{
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
}

.btnDisabledTrue{
    border: 1px solid red;
}

.btnDisabledTrue>span{
    color: red !important;
}

.btnDisabledFalse{
    border: 1px solid green;
}

.btnDisabledFalse>span{
    color: green !important;
}

.popUpForm{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
}

.popUpRowForm{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
}

.popUpRowForm select, .popUpRowForm input, .popUpRowForm textarea{
    border-radius: 5px;
    border: 1px solid lightgray;
    width: 250px;
}

.confirmationButtonsContainer{
    display: none;
}

.confirmationButtons{
    display: flex;
    gap: 20px;
}

.btnAccept{
    background: var(--mainColorCatalogue);
}

.btnAccept>span{
    color: white !important;
}