#divPopup {
    height: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.popup-content-modal {
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    padding-top: 10px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    -webkit-overflow-scrolling: touch;
}

.popup-content-cookies {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 5px 15px 0 rgba(128, 125, 128, 0.84);
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 50px 70px;
}

.popup-content-cookies p {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    padding: 0 20px;
    margin: 0;
    color: #333;
}

.popup-form-content .cookie-title{
    background-color: #F5FCFF;
    border: 1px solid #1CABE3;
    border-radius: 4px;
    padding: 25px 0;
}

.popup-cookies-inputs .checkbox input[type=checkbox] {
    width: 16px;
    height: 16px;
}

.popup-cookies-inputs .checkbox {
    float: left;
    line-height: 25px;
    margin: 30px 15px;
}

.popup-cookies-inputs .checkbox label{
    font-size: 14px;
    color: #333;
}

.popup-cookies-inputs .fa-cookie-bite {
    color: #ccc;
    font-size: 16px;
}