﻿.cookie-policy-confirmation {
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    z-index: 999999999;
    width: 100%;
    max-width: 100%;
    min-width: 320px;
    font-size: 12px;
    background-color: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    line-height: 1.3;
    box-shadow: rgba(0, 0, 0, 0.5) 10px 10px 155px 0px;
    display: none;
    position: fixed;
}

    .cookie-policy-confirmation .wrapper {
        width: 100%;
        padding: 5px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cookie-policy-confirmation .info a {
        color: #666;
        font-weight: bold;
        text-decoration: underline;
    }

    .cookie-policy-confirmation .buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .cookie-policy-confirmation .buttons .btn {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            width: 100px;
            height: 30px;
            background: #000000;
            color: white;
            font-size: 12px;
            font-weight: bold;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            cursor: pointer;
        }

        .cookie-policy-confirmation .buttons .policy-close {
            width: 30px;
            height: 30px;
            margin: 0 0 0 30px;
            color: #333;
            line-height: 0px;
            font-weight: bold;
            font-size: 19px;
            background-color: #f2f2f2;
            cursor: pointer;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }
@media only screen and (max-width: 768px) {
.cookie-policy-confirmation .buttons {
    flex-direction: column-reverse;
}
    .cookie-policy-confirmation .buttons .policy-close {
        margin: 0px 0 20px auto;
    }
}
