.PagePopup,
.PagePopup__content {
    display: none;
}
.PagePopup.active {
    display: flex;
}
.PagePopup__content.active {
    display: block;
}
.df {
    display: flex;
}
.df > div {
    width: 100%;
} 
@media (max-width: 1023px) {
    .df {
        flex-direction: column;
    }
}
.section-download {
    background-color: #333;
    padding-top: 100px;
    padding-bottom: 60px;
}
.tx-w {
    color: white;
}
.tc {
    text-align: center;
}
.x-fieldset {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
}
.x-fieldset input,
.x-fieldset select {
    width: calc(50% - 10px);
    margin-bottom: 10px;
    padding: 10px 5px;
    border: none;
    border-bottom: 1px solid grey;
}
@media (max-width: 639px) {
    .x-fieldset input,
    .x-fieldset select {
        width: 100%;
    }
}
.x-fieldset select {
    margin-right: 50%;
}
.x-fieldset input,
.x-fieldset select {
    outline: none;
}
.pb-20 {
    padding-bottom: 20px;
}
.consents  input[type=checkbox] {
    margin-right: 10px;
}
.non-valid {
    border-bottom: 1px solid red !important;
}
label.non-valid {
    border: none !important;
    position: relative;
}
label.non-valid::after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    border: 1px solid red;
    border-radius: 3px;
    position: absolute;
    top: 4px;
    left: 0;
}
.popupArea {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
}