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

.content-gdpr-accept {
    padding: 20px;
    background-color: #1ad123;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
    }

.content-gdpr-not-chosen {
    padding: 20px;
    background-color: #ecb827;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
    }

.content-gdpr-reject {
    padding: 20px;
    background-color: #ec273e;
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
    }





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

.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__button--accept {
    background-color: #40f140;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
    color: black;
}

.gdpr-consent__button--accept:hover {
    background-color: #91ff91;
}

.gdpr-consent__button--reject {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
    background-color: white;
    color: black;
}

.hide{
    display: none;
}

.show{
    display: block;
}

