﻿.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 solid #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;
    text-transform: none;
}
.cookie-policy-close {
    position: absolute;
    right: 8px;
    top: 5px;
    font-size: 16px;
}
    .cookie-policy-close .fa {
        color: #333;
    }
    .cookie-policy-close:hover {
        cursor: pointer;
    }
#CookiePolicyAccepted p {
    font-size: 14px;
}
#CookiePolicyAccepted p.cookie-policy-title {
    font-size: 18px;
}


#CookiePolicyAccepted {
    border: 12px solid #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;
    }
}

.btn-product-list, .btn-product-list:hover, .btn-product-list:visited, .btn-product-list:active, .btn-product-list:focus {
    border-color: #de5683;
    background-color: #de5683;
    color: white;
    text-transform: capitalize;
    padding: 4px 6px;
    float: right;
    font-size: 14px;
}
a.here-link, a.here-link:hover {
    color: #de5683;
}