.popup-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
		display: none;
}

.popup-wrapper .popup-form {
    width: 100%;
    max-width: 500px;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
		position: relative;
    z-index: 1;
}

.popup-wrapper .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

.free-btn {
    background: #ff7a59;
    padding: 10px 15px;
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}