#gdpr-cookie-message {
    position: fixed;
    right: 25px;
    bottom: 36px;
    width: 350px;
    height: 80px;
    z-index: 999;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 13px 1px rgb(20 20 20 / 15%);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

#gdpr-cookie-message div {
    color: #232323;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}

#gdpr-cookie-message a {
    text-decoration: none;
        color: #D41F27;
/*    font-size: 14px;*/
    padding-bottom: 2px;
    border-bottom: 1px dotted #D41F27;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message a:hover {
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button {
    border: 1px solid #fff;
    background: #D41F27;
    color: #fff;
    line-height: 32px;
    letter-spacing: 1px;
    font-size: 13px;
    padding: 3px 23px;
    border-radius: 30px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:hover {
    background: #fff;
    color: #D41F27;
    border: 1px solid #D41F27;
    transition: all 0.3s ease-in;
}

@media (max-width: 768px) {
    #gdpr-cookie-message {
        display: flex;
        flex-direction: column;
        bottom: 0;
        right: 0;
        border-radius: 0;
        height: 10rem;
        text-align: center;
        z-index: 10250;
        width: 95%;
    }

    #gdpr-cookie-message button {
        /*  margin-left: 0px;*/
        /*  margin-top: 10px;*/
        font-size: 13px;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    #gdpr-cookie-message {
        height: 90px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    #gdpr-cookie-message {
        height: 75px;
        width: 100%;
    }
}