.cookie-bar-wrapper {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    background: #262938;
    box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.4);
    z-index: 5;

    .cookie {
        display: flex;
        padding: 15px 0;
        align-items: center;
    }

    .cookie-text {
        flex-grow: 1;
        color: #c2c2c2;

        > span {
            margin-right: 20px;
        }
    }

    .cookie-button {
        flex-grow: 0;
    }

    .btn-cookie {
        padding: 6px 20px;
    }
}

@media screen and (max-width: $md) {
    .cookie-bar-wrapper {
        .cookie {
            display: block;
            padding: 20px 0;
        }

        .cookie-text {
            text-align: center;
            flex-grow: 0;

            > span {
                margin-right: 0;
            }
        }

        .btn-cookie {
            display: table;
            margin: 15px auto 0;
        }
    }
}
