.cookie-bar {
    background: #000000;
    padding: 0 2.25em;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 90;
    float: left;
    overflow: hidden;
    display: flex;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    box-sizing: border-box;
}

    .cookie-bar p {
        color: #fff;
        font-size: 0.875em;
        margin: 0;
        float: left;
        width: 80%;
        padding: 2.75em 0;
    }

    .cookie-bar .btnarea {
        float: right;
        position: relative;
        width: 20%;
        padding-top: 15px;
    }

        .cookie-bar .btnarea .close-c-bar {
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            right: 2px;
            width: 1.375em;
            height: 1.375em;
        }

            .cookie-bar .btnarea .close-c-bar img {
                width: 1.375em;
            }

        .cookie-bar .btnarea .btn-hollow {
            color: #fff;
            text-transform: uppercase;
            font-size: 0.8125em;
            text-align: center;
            border: 1px solid #fff;
            float: right;
            width: 6.875em;
            height: 2.875em;
            line-height: 2.875em;
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            right: 20%;
            padding: 0;
        }

    .cookie-bar.inactive {
        opacity: 0;
        filter: alpha(opacity=0);
    }

@media (min-width: 1200px) and (max-width: 1366px) {
    .cookie-bar p {
        font-size: 1em;
    }
}

@media (min-width: 1200px) {
    .cookie-bar .btn-hollow span {
        position: relative;
        z-index: 9;
    }

    .cookie-bar .btn-hollow:before {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 0;
        z-index: 1;
        border-radius: 0.25rem;
        content: "";
        background: red;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .cookie-bar .btn-hollow:hover:before {
        left: 0;
        right: auto;
        width: 100%;
    }

    .cookie-bar .close-c-bar {
        position: relative;
    }

        .cookie-bar .close-c-bar img {
            position: relative;
            z-index: 2;
        }

        .cookie-bar .close-c-bar:before {
            content: "";
            border-radius: 50%;
            background: #c00;
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            -webkit-transform: scale(0);
            -moz-transform: scale(0);
            -ms-transform: scale(0);
            -o-transform: scale(0);
            transform: scale(0);
        }

        .cookie-bar .close-c-bar:hover:before {
            -webkit-transform: scale(2);
            -moz-transform: scale(2);
            -ms-transform: scale(2);
            -o-transform: scale(2);
            transform: scale(2);
        }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .cookie-bar p {
        font-size: 1.125em;
        padding: 1.875em 0;
    }

    .cookie-bar .btnarea .btn-hollow {
        right: 30%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .cookie-bar p {
        font-size: 1.125em;
        padding: 1.5em 0;
    }

    .cookie-bar .btnarea .btn-hollow {
        right: 30%;
    }
}

@media (max-width: 767px) {
    .cookie-bar {
        padding-left: 15px;
        padding-right: 15px;
    }

        .cookie-bar p {
            font-size: 1em;
            padding: 1em 0;
        }

        .cookie-bar .btnarea .btn-hollow {
            right: 30%;
        }

    .cookie-bar {
        display: block;
        text-align: center;
        height: auto;
    }

        .cookie-bar p {
            font-size: 1em;
            max-width: 100%;
            width: 100%;
            padding: 1em 0;
        }

        .cookie-bar .btnarea {
            width: 100%;
            padding-top: 0;
            margin-bottom: 1.2em;
            position: relative;
        }

            .cookie-bar .btnarea .btn-hollow {
                float: none;
                display: inline-block;
                position: relative;
                margin: 0 auto;
                right: 0;
            }

            .cookie-bar .btnarea .close-c-bar {
                position: absolute;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
            }
}