.gdpr-notice-policy-container {
        box-sizing: border-box;
        position: fixed;
        min-height: 50px;
        bottom: 0;
        width: 100%;
        z-index: 1000;
        background: #32353b;
        color: #ffffff;
        font-size: unset;
        display: flex;
        align-items: center;
        display: none;
    }

.gdpr-notice-policy-container.active {
    display: flex;
}

.gdpr-notice-policy-container .gdpr-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.gdpr-notice-policy-container .info-icon {
    display: flex;
    justify-content: center;
    width: 15%;
}

.gdpr-notice-policy-container .close-button-gdpr {
    width: 15%;
    text-align: center;
    height: 20px;
}

.gdpr-notice-policy-container .info-icon svg path {
    fill: #ffffff !important;
}

.gdpr-notice-policy-container .gdpr-content {
    width: 70%;
    padding: 0 10px;
}

.gdpr-notice-policy-container .gdpr-content p {
    font-size: 12px;
    color: #ffffff;
    font-family: "Arial";
    line-height: 18px;
    margin: 5px 0;
}

.gdpr-notice-policy-container .gdpr-content p a {
    color: #039be5;
    display: inline-block;
}

.gdpr-notice-policy-container .button-wrapper {
    display: flex;
    align-items: center;
    width: 20%;
}

.gdpr-notice-policy-container .button-wrapper button {
    background: #ffffff;
    color: #32353b;
    border-radius: 3px;
    text-decoration: none;
    padding: 5px 10px;
    font-family: "Arial";
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
}

.gdpr-notice-policy-container .button-wrapper button:first-child {
    margin: 0 10px;
}

.gdpr-notice-policy-container .close-button-gdpr .btn-close-gdpr {
    background: transparent !important;
    border: none !important;
    display: inline-block !important;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.gdpr-notice-policy-container .close-button-gdpr .btn-close-gdpr svg path {
    fill: white !important;
}

@media (max-width: 1200px) {
    .gdpr-notice-policy-container .button-wrapper button {
        padding: 5px 7px;
    }
    .gdpr-notice-policy-container .button-wrapper {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .gdpr-notice-policy-container .gdpr-wrapper {
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        grid-template-areas: "info text close" ". button .";
    }

    .gdpr-notice-policy-container .info-icon {
        width: 100%;
        grid-area: info;
    }

    .gdpr-notice-policy-container .close-button-gdpr {
        width: 100%;
        grid-area: close;
    }
    .gdpr-notice-policy-container .button-wrapper {
        width: 100%;
        grid-area: button;
        padding: 10px 0;
    }
    .gdpr-notice-policy-container .gdpr-content {
        grid-area: text;
        width: 100%;
        padding-top: 10px;
    }
}