﻿.cookie-policy-popup {
    position: fixed;
    bottom: 15px;
    z-index: 999;
    left: 15px;
    padding: 20px;
    background: #fff;
    display: block;
    float: left;
    text-align: center;
    box-shadow: 0 0 15px #ccc;
    max-width: 360px;
    border: 12px outset #9b0238;
    -moz-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    animation: popinanimation 1s linear forwards;
}

.cookie-policy-close {
    position: absolute;
    right: 8px;
    top: 5px;
    font-size: 16px;
}
.cookie-policy-close .fa{color:red;}
    .cookie-policy-close:hover {
        cursor: pointer;
    }

.cookie-policy-title {
    font-size: 18px;
}

#CookiePolicyAccepted {
    border: 12px outset #000;
}

@media(max-width:767px) {
    .cookie-policy-popup {
        max-width: 100%;
        right: 15px;
        z-index: 99999999999;
        bottom: 10px;
    }
}

@keyframes popinanimation {
    0% {
        margin-bottom: -375px;
    }

    100% {
        margin-bottom: 0px;
    }
}

@-moz-keyframes popinanimation {
    0% {
        margin-bottom: -375px;
    }

    100% {
        margin-bottom: 0px;
    }
}

@-webkit-keyframes popinanimation {
    0% {
        margin-bottom: -375px;
    }

    100% {
        margin-bottom: 0px;
    }
}
