﻿.cookie-policy-popup {
    position: fixed;
    bottom: 15px;
    z-index: 999;
    left: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    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: 16px;
    margin-bottom: 5px;
}

#CookiePolicyAccepted {
    border: 12px outset #4d4d4d;
    color: #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;
    }
}

@media(max-width:767px) {
    .cookie-policy-popup {
        background: rgba(255, 255, 255, 0.9);
        color: #000;
        margin: 0;
        padding: 10px;
        width: auto;
        bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        max-height: 120px;
        left: 15px;
        right: 15px;
        -moz-transition: none;
        -o-transition: none;
        -webkit-transition: none;
        transition: none;
        animation: none;
    }
    #CookiePolicyAccepted {
        border: 10px solid #000;
        color: #000;
    }
    .cookie-policy-close .fa{
        color:red;
    }
    .cookie-policy-title a {
        color: #000;
        display:inline-block!important;
        font-weight:bold;

    }
    .cookie-policy-title {
        margin-top: 5px;
        font-size: 20px;
        margin-bottom: 10px;
        font-weight:bold;  

    }
    .mob-text {
        font-size: 16px;
    }
}


@media(max-width:320px) {
    .cookie-policy-title {
        font-size: 18px;
    }
    .mob-text {
        font-size: 14px;
    }
}