.cookieconsent-box {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 100000;
    text-align: center;
}

.cookieconsent-box h2 {
    font-size: 18px;
    font-weight: bold;
}

.cookieconsent-box h3 {
    font-size: 14px;
    font-weight: bold;
}

.cookieconsent-box > div {
    background-color: #fff;
    padding: 1.5rem;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    max-width: 90vw;
    width: 600px;
    max-height: 90vh;
}

.cookieconsent-box .cookieconsent-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-top: 3rem;
}

.cookieconsent-box .cookieconsent-buttons button {
    border: 3px solid #000;
    padding: .5rem 1rem;
    display: inline-block;
    background-color: transparent;
    border-radius: 99999px;
}

.cookieconsent-box .cookieconsent-buttons button.cookieconsent-acceptall {
    background-color: #000;
    color: #fff;
}

.cookieconsent-box .cookieconsent-buttons span {
    cursor: pointer;
}

.cookieconsent-options {
    text-align: left;
    max-height: 50vh;
    overflow-y: auto;
}

.cookieconsent-options > div > div:first-child {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookieconsent-options > div > div:first-child > div:nth-child(2) {
    flex: 1;
}

@media (max-width: 1024px) {
    .cookieconsent-box {
        font-size: 12px;
    }
    .cookieconsent-box h2 {
        font-size: 14px;
        font-weight: bold;
    }
    
    .cookieconsent-box h3 {
        font-size: 12px;
        font-weight: bold;
    }

    .cookieconsent-options {
        max-height: 30vh;
    }
}