@font-face {
    font-family: 'Balsamiq-bold';
    src: url('BALSAMIQSANS-BOLD.woff') format('woff');
   
}
.playbees-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    /* background: #fff; */
    /* border-radius: 10px; */
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    transform: translateY(120%);
    transition: .35s ease;
    z-index: 9999;
}

.playbees-popup.show {
    transform: translateY(0);
    display: flex !important;
}

.playbees-close {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background: none;
    font-size: 9px;
    cursor: pointer;
    color: white;
    background: black;
    border-radius: 15px;
    font-weight: 600;
}
.close-btn{
    font-size: 11px;
}

.playbees-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.playbees-buttons a {
    display: inline-block;
    padding: 2px 12px 0px 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    max-width: 162px;
}

.playbees-qr img {
    width: 90px;
    margin-top: 10px;
}

.playbees-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* background: rgba(0,0,0,0.4); */
    background: transparent;
}

.playbees-popup-box {
    background: #fff;
    border-radius: 20px;
    padding: 6px;
    max-width: 470px;
    width: 90%;
    /* box-shadow: 0 4px 24px rgba(0,0,0,0.15); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
}
.playbees-popup-header{
    /* background: #6846e1; */
    /* background-image: url('img/blue-bg.png'); */
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 0px 0px;
    padding: 18px 16px 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    /*margin-bottom: 18px;*/
}

.logo-img{
    width:90px; 
    height:90px; 
    border-radius:12px;
    flex-shrink:0;
}

.app-heading{
    font-family: 'Balsamiq-bold';
    font-size: 16px;
    color: #fff;
    text-align: left;
    letter-spacing: 0.5px;
}
.stars-img{
    width: 19px;
    height: auto;
    display: block;
    margin-bottom: 8px;
}

.stars-container{
    display: flex;
    gap: 5px;
    margin-bottom: 4px;
}
.popup-body{
    border-radius: 0px 0px 16px 16px;
    background-image: url('img/popup.jpg');
    background-size: cover;
    background-position: bottom;
    padding: 18px 16px 14px 16px;
}
.options-icon{
    display: flex;
    align-items: center;
    gap: 21px;
    justify-content: space-around;
    margin-bottom: 18px;
}
.options-img{
    width: 21%;
}
.scanner-section{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.qr-code{
    width: 35%;
}
/* Mobile styles: popup at bottom */
@media (max-width: 767px) {
    .playbees-popup.show{
        top: unset;
        bottom: 0px;
        width: 100%;
        transform: unset;
        position: fixed;
    }
    .playbees-popup {
        /* align-items: flex-end; */
        justify-content: center;
        height: 100vh;
        /* background: rgba(0,0,0,0.2); */
    }
    .playbees-popup-box {
        border-radius: 19px 19px 0 0;
        width: 100vw;
        /* max-width: 100vw; */
        margin: 0;
        padding: 4px;
        top: unset;
        bottom: 0px;
        transform: unset;
        left: unset;
        position: fixed;
    }

    .popup-body{
        background-image: url('img/popup2.jpg');
        background-position: center;
        padding: 14px 10px 10px 10px;
    }
    .app-heading{
        font-size: 16px;
        letter-spacing: 0.5px;
       
    }
    .options-img {
        width: 20%;
    }
    .playbees-buttons a {
        max-width: 189px;
        padding: 0px;
    }
    .logo-img {
        width: 75px;
        height: 75px;
    }
    .options-icon {
        margin-bottom: 12px;
    }
    .playbees-close {
        right: 8px;
        top: 8px;
    }

}
@media (max-width: 450px) {
    .app-heading {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.5px;
    }
}
@media (max-width: 370px) {
    .playbees-popup-header{
        padding: 18px 7px 14px 14px;
    }
}