﻿
.cookies {
    position: fixed;
    width: 400px;
    top: 50%;
    left: 50%;
    margin-top: -200px; /* Negative half of height. */
    margin-left: -200px; /* Negative half of width. */


    padding: 20px 25px;
    background-color: rgba(233, 34, 35, 0.9);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 6500;
    border-bottom: 2px solid #000;
    border-radius: 6px;
}

    .cookies section {
        float: left;
        width: 100%;
    }

    .cookies strong {
        float: left;
        width: 100%;
        margin: -5px 0 5px 0;
        font-size: 14px;
    }

    .cookies article {
        float: left;
        width: 100%;
    }

    .cookies a {
        color: #FFF;
        font-weight: 500;
    }

        .cookies a:hover {
            text-decoration: underline;
        }

.cookies-ok {
    float: left;
    width: 100%;
    margin-top: 14px;
    line-height: 30px;
}

    .cookies-ok a {
        float: left;
        margin-right: 20px;
        color: #FFF;
        text-decoration: underline;
    }

        .cookies-ok a:hover {
            text-decoration: none;
        }

    .cookies-ok i {
        font-style: normal;
        float: left;
        padding: 0 25px;
        background-color: #000;
        font-weight: 600;
        border-radius: 15px;
        cursor: pointer;
    }

        .cookies-ok i:hover {
            color: #ea3738;
            background-color: #FFF;
        }

.cookies-close {
    position: absolute;
    top: -12px;
    right: 20px;
    width: 24px;
    height: 24px;
}

    .cookies-close span {
        text-align: center;
        line-height: 20px;
        color: #fff;
        float: left;
        width: 100%;
        height: 100%;
        position: relative;
        background: #000;
        cursor: pointer;
        border-radius: 50%;
    }
