.cookie-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    .coockie {
        background: #F0F4F9;
        border-radius: 20px;
        padding: 20px 24px;
        max-width: 512px;
        box-shadow: 0px 4px 4px -4px #0C0C0D0D, 0px 16px 32px -4px #0C0C0D1A;
        margin: auto;
        display: flex;
        gap: 16px;
        align-items: center;
        margin-bottom: 24px;
    }

    .coockie-text {
        font-family: Manrope;
        font-variation-settings: 'wght' 450;
        font-size: 12px;
        line-height: 150%;
        color: #1A1A1A;
    }

    .coockie-button {
        background: #1A1A1A;
        padding: 32px;
        border-radius: 40px;
        box-shadow: 16px 16px 24px -16px #0000004D inset, -16px -16px 24px -16px #FFFFFF1A inset;
        height: 56px;
        display: flex;
        align-items: center;

        color: #FFFFFF;
        font-family: Manrope;
        font-variation-settings: 'wght' 500;
        font-size: 16px;
        line-height: 56px;
        text-align: center;
    }

    .coockie-button:hover {
        background: rgba(78, 79, 80, 1);
    }

    .coockie-href {
        color: #3D65C9;
    }

    @media (max-width: 599px) {
        .coockie-container {
            padding: 0px 16px;
        }

        .coockie {
            flex-direction: column;
        }

        .coockie-button {
            width: 100%;
            justify-content: center;
        }
    }
}