.popupiframe {
  width: 100%;
  height: 85%;
  border: 5px solid var(--primary-color); 
}

.popupTitle {
    font-size: 32px;
    font-weight: 600;
}


.button {
    appearance: none;
    border: none;
    outline: none;

    display: inline-block;
    background-color: #FE4880;
    color: #FFF;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: 0px 15px;
}

.button.large {
    font-size: 24px;
    padding: 15px 30px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.popup.is-active {
    opacity: 1;
    pointer-events: all;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

.popup-inner {
    position: relative;
    z-index: 999;
    width: 85%;
	height: 85%;
    padding: 15px 25px 25px;
    background-color: var(--secondary-color);
	border: 10px solid var(--secondary-color);


    border-radius: 16px;
	
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.75);
	font-family: 'Work Sans', sans-serif;
	color: var(--text-color);
}



.popup p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.popup p:last-of-type {
    margin-bottom: 30px;
}