.popup .overlay
{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 600;
    display: none;
}

.popup .content
{
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle,#573517 5%, black 110%);
    width: 900px;
    height: 640px;
    z-index: 604;
    text-align: center;
    padding:20px;
    box-sizing: border-box;
    color: #fff;
    border-radius: 20px;

}

.popup .content .content-text
{
    font-size: 20px;
    border-radius: 10px;
    transform: translate(+95%, -12%);
    max-width: 450px;
    /*min-height: 800px;*/
    min-width: 600px;
    background-color: rgba(0, 0, 0, 0.9);
    top: 50% + 100px;
    left: 50% + 100px;
    padding: 40px;

    -webkit-box-shadow: 0px 0px 34px 1px rgba(0,0,0,0.94);
-moz-box-shadow: 0px 0px 34px 1px rgba(0,0,0,0.94);
box-shadow: 0px 0px 34px 1px rgba(0,0,0,0.94);
}

.popup .content .content-image
{
    position: fixed;
}

.popup .content-overlay
{
    position: fixed;
    top: 50%;
    left: 50%;
    height: 640px;
    width: 900px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 602;
    transform: translate(-50%, -50%) scale(0);
}


.popup .content-text .links
{
    margin-top: 30px;
}
.popup .content-text .fa
{
    font-size: 3em;
    color: white;
}

.popup .content-text .iconify
{
    font-size: 3em;
    color: white;
}

.popup .content-text .fab
{
    font-size: 3em;
    color: white;
}


.popup .close-btn
{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color:#fff;
    font-size: 25px;
    font-weight: 605;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.popup.active .overlay
{
    display:block;
}

.popup.active .content
{
    transition:all 300ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}