.cookiebot-dailog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background-color: #fff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
    height: auto;
    max-height: 70vh;
    max-width: 100vw;
    min-width: 100vw;
    padding: 24px;
    width: 100vw;
    font-family: sans-serif;
    box-sizing: border-box;
    transform: translate(0, 100%);
    transition: all .9s ease;
    overflow: hidden;
}

.cookiebot-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
}

.cookiebot-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookiebot-left img {
    max-width: 110px;
}

.cookiebot-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cookiebot-button {
    background-color: #1032CF;
    border-color: #1032CF;
    color: #ffffff;
    max-width: none;
    width: 286px;
    border: 2px solid #1032CF;
    border-radius: .25em;
    display: block;
    font-weight: 600;
    padding: 1em;
    text-align: center;
    user-select: none;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    cursor: pointer;
}

.cookiebot-text {
    padding: 0 50px;
}

@media screen and (max-width: 1279px) {
    .cookiebot-dailog {
        top: 10%;
        bottom: auto;
        max-width: 95%;
        min-width: auto;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

    .cookiebot-container {
        flex-direction: column;
    }

    .cookiebot-text {
        padding-left: 10px;
        padding-right: 10px;
    }

    .cookiebot-left>div:first-child {
        display: none;
    }

    .cookiebot-dailog h2 {
        font-size: 20px;
    }

    .cookiebot-dailog p {
        font-size: 14px;
    }
}