    .cookiesaccept_file {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin: 0;
        padding: 20px;
        max-width: 600px;
        width: 90%;
        color: #262626;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0px 4px 43.5px 0px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100001;
        font-family: Arial, sans-serif;
        font-size: 14px;
    }
    .cookiesaccept-text {
        font-size: 15px;
        line-height: 125%;
    }
    .cookiesaccept_file a, .cookiesaccept a:visited {
        display: inline;
        color: inherit;
        text-decoration: underline;
    }
    .cookiesaccept-button {
        display: block;
        padding: 0 25px;
        min-width: 150px;
        height: 40px;
        color: #ffffff;
        font-weight: 500;
        font-size: 14px;
        text-align: center;
        text-decoration: none;
        background: rgba(0, 159, 227, .9);
        border-radius: 4px;
        cursor: pointer;
        white-space: nowrap;
        box-sizing: border-box;
        line-height: 40px;
        transition: all .2s ease;
        user-select: none;
    }
    .cookiesaccept-button:hover {
        background: #005bb5;
    }