

#consentBox {
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: fixed;
    z-index: 1000;
    bottom: 0;
    right: 0;
}

#consentBox.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

::selection {
    color: #fff;
    background: #229a0f;
}

#consentContent p {
    color: #111211;
    margin: 10px 0 20px 0;
}

#consentContent .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.consentButton,
.rejectButton {
    padding: 9px 22px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consentButton {
    background: #f5ba16;
    margin-right: 10px;
}

.rejectButton {
    color: #111211;
    background: transparent;
    border: 2px solid #f5ba16;
    text-decoration: none;
}

#consentBox img {
    max-width: 90px;
}

#consentBox figcapture{
    font-size: 25px;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 0.08em;
	color: #111211;
}



