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

.gdpr-consent {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    margin: 5px;
    border: 2px solid #89A1BA;
    border-radius: 15px;
    background-color: #434E5B;
    max-width: 350px;
    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: #89A1BA;
    padding: 10px;
    border-radius: 10px;
    border: transparent;
}

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

.gdpr-consent__button--reject {
    padding: 10px;
    border-radius: 10px;
    border: transparent;
}

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

.hide{
    display: none;
}

.show{
    display: block;
}

