
.container {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

.gdpr-consent {
    background-color: rgb(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    border: 2px solid #ffffff;
    padding: 20px;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 5px;
    border-radius: 15px 15px 15px 15px;
}

.gdpr-consent__description{
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
}

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

.gdpr-consent__button--accept {
    background-color: #3bb83b;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.gdpr-consent__button--accept:hover {
    background-color: #3e943e;
}

.gdpr-consent__button--reject {
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.gdpr-consent__button--reject:hover {
    background-color: #ccc;
}

.hide{
    display: none;
}

.show{
    display: block;
}

