.premium {
    position:relative;
}
.premium_desc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    
    height: 90%;
    width: 90%;
    max-width: 500px;
    max-height: 400px;

    display: none;
    color:black;
    background-color:  rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    box-shadow: 0px 0px 20px 3px;
    padding:30px;
    
}

.premium:hover .premium_desc {
    z-index: 1;
    display:inline;
}

.premium_desc_content {
    display: flex;
    width: 100%;
    height: 100%;

    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: Arial;
    font-size: 13px;
    padding: 5px;
}   

.premium_desc_content_btn {
    padding: 3px;
    background-color: #30D59B;
    border: 1px solid #30D59B;
    border-radius: 8px;
    color:white;
    width: max-content;
    padding: 10px;
    font-size: 1.2em;
    cursor:pointer;
    text-decoration: none;

}

.premium_desc_content_btn_txt {
    font-size: 1.5em;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 720px) {
    .premium_desc {
        z-index: 1;
        display:inline;
    
    }
}