
#cookies-using-message {
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    align-items: center;
    vertical-align: middle;
    padding: 20px;
    background-color: #18a3cc;
    z-index: 999999999;
    color: #fff;
    display: none;
}

.btn.btn-type-2-inverted {
    border: 2px solid #FFF;
    background-color: #00B8E4;
    color: #fff;
}

.btn.btn-type-2-inverted {
    text-decoration: none;
    white-space: normal;
}

#cookies-using-message > .message {
    margin-right: 20px;
}

.controls-cookie {
    display: flex;
}

.controls-cookie > button {
    margin-right: 10px;
    cursor: pointer;
}

#cookie-small-bar {
    position: fixed;
    bottom: 0;
    z-index: 99999999999;
    left: 0;
    overflow: hidden;
    width: 100px;
    height: 100px;
    display: none;
}

#cookie-small-bar > .cookie-image {
    background-image: url('/assets/img/cookie.svg');
    position: fixed;
    bottom: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background-color: #18a3cc;
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center 5px;
    cursor: pointer;
    transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
    #cookies-using-message > .message {
        margin-right: 0;
    }

    #cookies-using-message {
        flex-direction: column;
    }
}