


.gdpr-consent {
    background-color: #fc7c54;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: auto 6rem;
    border: 2px solid gray;
    border-radius: 15px 15px 15px 15px;
    z-index: 1000;
    opacity: 0.8
}

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

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

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

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

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

.hide{
    display: none;
}

.show{
    display: block;
}
