#cookies-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    z-index: 1000;
    display: none;
    padding: 20px;
    z-index: 9999;
}
#cookies-settins-wrapper {
    position: fixed;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    display: none;

    overflow-y: auto;
    background-color: rgb(0 0 0 / 59%);
    z-index: 99999;
}

#cookies-settins-form {
    position: fixed;
    max-width: 600px;
    width: 90vw;
    height: 90vh;
    max-height: fit-content;
    background-color: white;
    z-index: 1002;
    padding: 20px 40px;
    overflow-y: auto;
}

#checkboxes {
    overflow-y: scroll;
    display: block;
    height: 40vh;
    margin-bottom: 40px;
    padding-right: 20px;
}

@media screen and (max-width: 490px) {
    #buttons {
        display: flex;
        flex-direction: column;
    }
    #buttons .btn-primary {
        margin-top: 5px;
    }
    #cookies-settins-form {
        width: 95%;
        padding: 20px;
        height: 95%;
    }
    
    #cookies-settins-form-buttons {
        display: flex;
        flex-direction: column;
    }
    #cookies-settins-form-buttons .btn {
        margin-top: 5px;
    }
}
