.cookie-alert {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #63666A;
    padding: 20px 15px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .95;
    transition: all .5s;
    transform: translateY(100%);
    box-sizing:  border-box;
}
    .cookie-alert .btn {
        border: none;
        border-radius: 15px;
        padding: 10px 15px;
        color: #fff;
        background-color: #DA291C;
    }
    .cookie-alert.open {
        transform: translateY(0);
    }

    .cookie-alert .cookie-alert--text {
        max-width: 68%;
        flex-basis: 70%;
        margin: 0 15px 0 0;
        color: #fff;
        font-size: 16px;
		font-family:"Martian B Thai",Arial,sans-serif;
    }

        .cookie-alert .cookie-alert--text a {
            color: #DA291C;
        }

@media(max-width: 767px) {
    .cookie-alert .cookie-alert--text {
        max-width: 83%;
        flex-basis: 98%;
    }
}

@media(max-width: 575px) {
    .cookie-alert {
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px;
    }

        .cookie-alert .cookie-alert--alert {
            max-width: 100%;
            flex-basis: 100%;
            margin: 0 0 10px 0;
        }
}