﻿.popup-holder {
    position: fixed;
    z-index: 9999;
    bottom: 85px;
    left: -12px;
    width: 450px;
    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: 94px;
    top: 12px;
    border: solid 1px;
    border-radius: 0px;
    background-color: #0A3835 !important;
    color: white;
    font-size: 0px;
    width: 22px;
}

.popup-item {
    line-height:normal;
    display: flex;
    padding: 3px;
    background-color: #FFF;
    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
}
.apply-code {
    background-color: #0A3835 !important;
    color: #FFF !important;
    text-align: center;
    align-content: center;
    font-weight: bold;
    /*border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;*/
    cursor: pointer;
}
.logo-holder {
    background: var(--theme-color1);
    width: 100px;
    /*border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;*/
    display: flex;
    align-items: center;
    justify-content: center;    
}
.logo-holder img {
    width: 60%;
}

.popup-item-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 2rem 0rem;
}

@-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;
        top: 70px;
        left: -12px;
        width: 420px !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: 105px;
        top: 18px;
        border: solid 1px;
        border-radius: 0px;
        background-color: var(--theme-color1);
        color: white;
        font-size: 0px;
        width: 22px;
    }
    .popup-holder-2 {
        position: fixed;
        z-index: 9999;
        top: 57px;
        left: -12px;
        width: 285px;
        -webkit-animation: slide 0.5s forwards;
        -webkit-animation-delay: 2s;
        animation: slide 0.5s forwards;
        animation-delay: 2s;
    }
}
