

.info-popup{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    padding: 25px;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;

}

.info-popup-title{
    z-index: 50;
}
.info-popup-wrapper{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.info-popup-close{
    position: absolute;
    width: 20px;
    height: 20px;
    right: 13px;
    top: 5px;
    z-index: 99;
    -webkit-transform: translate3d(0, 0, 0);
}

.info-popup-btn{
    max-width: 280px;
    height: 45px;
    background-color: #b6ea7d;
    -webkit-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin: 25px 0px;
}
.info-popup-link{
    color: #0091FF;
    text-decoration: underline;
    margin-bottom: 10px;
}

.info-popup-title{
    font-weight: 500;
    max-width: 300px;
}


.info-popup img{
    max-width: 300px;


}