.popup_div{
    width: 90%;
    margin: 0 auto;
    background: #a5a08f;
    min-height: 100px;
    padding: 25px;
    border-radius: 2rem;
}
.cookie-main{
    position:fixed;
    bottom:5rem;
    color: #ffff;
    font-weight: 600;
    z-index: 99;
}
#cookie-main-div p{color:#fff;}


.cookie-container{
    position: absolute;
    z-index:9999;
}

.accpet-btn{
    background: #203f5b !important;
    color: #fff !important;
}
.accpet-btn:hover{
    background: #203f5b !important;
    color: #fff !important;
}
@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both;
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}


@keyframes fadeInDown {
    from {
        transform: translate3d(0,0,0);
        opacity: 1
    }
    to {
      transform: translate3d(0,500px,0)
    }
}

@-webkit-keyframes fadeInDown {
    from {
        transform: translate3d(0,0,0);
        opacity: 1
    }

    to {
         transform: translate3d(0,500px,0)
    }
}

/* .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
} */

.animatedFadeInDown {
    opacity: 0
}


.fadeInDown {
    opacity: 0;
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
}
@media(max-width:1100px){
    .cookie-main{margin: 0 1.5rem 0 0;}
}
