﻿.popup-holder {
    position: fixed;
    z-index: 9999;
    bottom: 70%;
    right: -12px;
    width: 420px;
    height:fit-content;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s    
}
.popup-holder-close {
    z-index: 99999;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    border: solid 1px;
    border-radius: 0px;
    background-color: #b58e3e;
    color: white;
    font-size: 0px;
    width: 22px;
}
.popup-item {
    padding: 1rem;
    line-height: normal;
    display: flex;
    /*padding: 3px;*/
    background-color: #EEE;
    margin: 1rem;
    /*border-radius: 1rem;*/
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px 7px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.theme-bg {
    background-color: #8E7037 !important;
    color: #FFF !important
}
.popup-item-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes slide {
    100% {
        right: 0;
    }
}

@keyframes slide {
    100% {
        right: 0;
    }
}
@media (max-width: 600px) {
    .logo-holder{
        display:none !important;
    }
    .popup-holder {
        width: auto !important;
        height: fit-content !important;
    }
    .popup-holder {
        position: fixed;
        z-index: 9999;
        bottom: 3%;
        right: 10px;
        width: 330px !important;
        height: fit-content !important;
        -webkit-animation: slide 0.5s forwards;
        -webkit-animation-delay: 2s;
        animation: slide 0.5s forwards;
        animation-delay: 2s;
    }
    .popup-holder-close {
        z-index: 99999;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 10px;
        border: solid 1px;
        border-radius: 0px;
        background-color: black;
        color: white;
        font-size: 0px;
        width: 22px;
    }
}
