.consent {
    color: black;
    padding: 10px 25px 15px 25px;
    border-radius: 5px;
    z-index: 1000;
    position: fixed !important;
}

.consent h2 {
    color: black;
    margin: 0;
}

.consent p {
    margin-bottom: 10px;
}

.mobile {
    position: fixed !important;
    width: 80%;
    bottom: 20px;
}

.bottom-center {
    position: absolute;
    min-width: 350px;
    bottom: 20px;
    right: 20px;
    left: 20px;
}

.light {
    background: rgb(242, 242, 242);
}

.dark {
    background-color: #000;
    color: #fff;
}

.buttons {
    display: flex;
}

.btn {
    font-weight: 700;
    padding: 7px 10px;
    margin-right: 5px;
    border-radius: 5px;
}

.btn:hover {
    cursor: pointer;
}

.light .btn-agree {
    background-color: #00BCD4;
    color: white;
}

.light .btn-decline {
    background-color: #272833;
    color: white;
}

.dark .btn {
    background-color: rgb(255, 255, 0);
    color: #000;
}

.consent-hide {
    animation: fade-out 0.5s linear forwards;
}

@keyframes fade-out {
    100% {
        opacity: 0%;
        display: none;
    }
}