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

/*.gdpr-consent {*/
/*    background-color: rgba(255, 255, 255, 0.95);*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    padding: 10px;*/
/*    margin: 5px 15px 5px 15px;*/
/*    border: 2px rgba(39, 140, 39, 0.96) solid;*/
/*    border-radius: 5px 5px 5px 5px;*/
/*}*/

/*.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: #d5f5d5;*/
/*    padding: 10px;*/
/*    border-radius: 10px;*/
/*    border: 1px solid gray;*/
/*}*/

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

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

/*.gdpr-consent__button--reject:hover {*/
/*    background-color: #747475;*/
/*}*/

/*.hide{*/
/*    display: none;*/
/*}*/

/*.show{*/
/*    display: block;*/
/*}*/

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

.gdpr-consent {
    background-color: rgba(255, 255, 255, var(--background-opacity));
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 5px 15px;
    border: 2px var(--border-color) solid;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.gdpr-consent__description {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.gdpr-consent__description p {
    margin-right: 20px;
    font-size: 14px;
}

.cookie-image {
    max-width: 100px;
    height: auto;
}

.gdpr-consent__choice {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.gdpr-consent__button--accept,
.gdpr-consent__button--reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    outline: none;
}

.gdpr-consent__button--accept {
    background-color: var(--accept-button-bg);
    color: #fff;
    transition: background-color 0.3s;
}

.gdpr-consent__button--accept:hover {
    background-color: var(--accept-button-hover-bg);
}

.gdpr-consent__button--reject {
    background-color: var(--reject-button-bg);
    color: #000;
    transition: background-color 0.3s;
}

.gdpr-consent__button--reject:hover {
    background-color: var(--reject-button-hover-bg);
}

.hide {
    display: none;
}

.show {
    display: block;
}

@media (min-width: 768px) {
    .gdpr-consent {
        max-width: 500px;
        margin: 5px auto;
        right: 0;
        left: auto;

    }

}