.popup_holder{
	position:fixed;
	background-color: rgb(0 0 0 / 39%);
	width:100vw;
	height: 100dvh;
	z-index:9999;
	display: flex;
	top:0;
	left:0;
	opacity:0.0;
	transition: opacity .2s;
	justify-content: center;
	align-items: center;
}
.popup_holder.shown{
	opacity: 1.0;
}
.popup_holder .popup {
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 100px;
    max-height: calc(100dvh - 30px);
    position: relative;
    background-color: white;
    box-shadow: 0 0 12px 0px rgb(0 0 0 / 11%);
    padding: 30px 20px 20px;
    text-align: center;
    border-radius: var(--themeBorderRadius);
    bottom: 0;
    left: 0;
    transform:translateY(100%);
    transition:transform .2s;
    /* box-shadow0px 0px 37px rgba(0,0,0,0.3)); */
}

.popup_holder .popup.wide{
    max-width:1000px;
}

.popup_holder .popup.shown {
	transform:translateY(0);
}
.popup_holder .popup h2{
	margin: 0;
	text-align: center;
}
.popup_holder .popup figure + h2,
.popup_holder .popup figure + .popup-content{
	margin-top:20px;
}
.popup_holder .popup p{
    text-align: center;
    margin: 18px 0;
    line-height: 1.5em;
    font-size: 14px;
    color: #303030;
    width: 100%;
}
.popup_holder .popup img {
    max-width: 100px;
    margin-bottom: 10px;
}
.popup_holder .popup .popupIcon {
	font-size: 60px;
	color: #c51d74;
	padding: 0px 0 15px;
}
.popup_holder .popup .buttonHolder {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px -5px 0;
    justify-content: center;
    gap: 10px;
}
.popup_holder .popup .button{
	display: inline-block;
	width: 50%;
}

.popup_holder:not(.shown){
	/* display:none; */
}

.popup_holder .popup figure {
    --size: 80px;
    position: absolute;
    bottom: calc(100% - (var(--size)/1.6));
    height: var(--size);
    width: var(--size);
    left: calc(50% - (var(--size)/2));
    background-color: white;
    padding: 0px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_holder .popup figure *{
    max-width: 50px;
    max-height: 50px;
    width:auto;
    height:auto;
}

.popup_holder .popup.floatingPopup{
    max-width: calc(100% - 30px);
    margin: 15px;
    top: 50%;
    bottom: auto;
    border-radius: 10px;
    transform: translateY(-50%);
}
.popup_holder .popup .closePopup{
    position:absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    border-radius: 50%;
    min-width: 0;
}