.popup {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}
.france-link {
    word-break:normal;
}
.popup__content {
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.france-popup {
    word-break: keep-all;
    padding: 0 28px;
    margin: 0;
    width: 100%
}

.popup__text {
    /*text-align: center;*/
    margin-bottom: 30px;
}

.popup__btn-container {
    text-align: center;
}

/* Checkbox */
/* Customize the label (the container) */
.checkbox-container {
    /*display: block;*/
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    /* font-size: 22px; */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
}

    /* Hide the browser's default checkbox */
    .checkbox-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: none;
    border: 1px solid #bfc3c5;
    border-radius: 4px;
    transition: all 0.1s ease-in-out;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-checkmark {
    background-color: none;
}

.checkbox-container:hover input:checked ~ .checkbox-checkmark {
    background-color: #0095a0;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: #4cb5bd;
    border: 1px solid #4cb5bd;
}

.checkbox-container input:disabled ~ .checkmark,
.checkbox-container input:checked:disabled ~ .checkbox-checkmark {
    background-color: #a4a4a4;
    border: 1px solid #a4a4a4;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after {
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (max-width: 768px) {
    .popup__content {
        width: 90vw;
        padding: 30px;
        word-break:keep-all;
    }
}

@media only screen and (max-width: 400px) {
    .france-popup {
        padding: 0 20px;
    }
    .france-link {
        word-break: break-all;
    }
}