.gdpr-consent {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 5px;
    border: 1px solid var(--gray-400);
    border-radius: 15px 15px 15px 15px;
}

.gdpr-consent__description {
    display: flex;
    justify-content: center;
}

.gdpr-consent__choice {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
}

.gdpr-consent__choice {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
}

.gdpr-consent__button--accept {
    background-color: var(--green-400);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--gray-400);
}

.gdpr-consent__button--accept:hover {
    background-color: var(--green-500);
}

.gdpr-consent__button--reject {
    background-color: var(--red-500);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--gray-400);
}

.gdpr-consent__button--reject:hover {
    background-color: var(--red-600);
}

.hide {
    display: none;
}

.show {
    display: block;
}
