.backgroundPopin {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
    z-index: 100;
}

.displayMessageInPopin {
    position: fixed;
    left: 50%;
    top: 50%;
    background-color: white;
    color: black;
    z-index: 101;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.button-remove-popin{
    position: absolute;
    top: -13px;
    right: -7px;
    padding: 2px 5px;
    border-radius: 50%
}
