.popup-img,
.popup-text,
.popup-btn,
.popup-highlight {
    transition: all 0.5s ease;
}

.case-fade-out {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(5px);
}

.case-fade-in {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}

.popup-holder{
	position: fixed;
	background-color: #26465F;
	width: 100vw;
	bottom: -160px;
	height: 195px;
	opacity: 0;
	transition: opacity 0.5s ease, bottom 0.5s ease;
	z-index: 99999999;
	transition: background-color 0.5s ease;
	overflow: hidden;

}
.popup-cont{
	width: 100vw;
}
.popup-show {
	opacity: 1;
	bottom: 0px;
}
.popup-img{
	display: none;
}
.popup-highlight{
	font-family: 'Display Bold';
}
.popup-text{
	position: absolute;
	font-family: 'Display';
	line-height: 98%;
	font-size: 18px;
	color: #FFFBF9;
	left: 20px;
	top:30px;
}

.popup-btn{
	position: absolute;
	left: 20px;
	top: 95px;
	background-color: #f7f2ef;
	color: #2F5677;
	font-family: 'nText';
	font-size: 12px;
	letter-spacing: 0.72px;
	line-height: 120%;
	margin-top: 15px;
	transition: background-color 0.3s ease;
	text-align: center;
	width: 200px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2.6px;

}

.popup-btn:hover
{
	background-color: #f4e8e2;
	cursor: pointer;
}

.popup-btn-text{
	position: relative;
	padding-right: 16px;
}

.popup-btn-text::after {
	padding-right: 16px;
    content: "→";
    position: absolute;
    right: -15px;
    top: 45%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 12px;
}

.popup-btn-text.hover-effect::after {
    transform: translate(10px, -50%) scaleX(1.2);
}
#popup_close{
	width: 32px;
	cursor: pointer;
	transition: transform 0.3s ease;
	position: absolute;
	top: 20px;
	right: 20px;
}

#popup_close:hover{
	transform: scale(1.1);
}
.case-buttons{
    position: absolute;
    display: flex;
    gap: 12px;
    right: 30px;
    bottom: 20px;
}

.case-buttons img {
    cursor: pointer;
    display: block;
    transition: filter 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    width: 46px;
}

@media (min-width: 850px) {
	.popup-holder{
		height: 167px;
		bottom: -125px;
		left: 50%;
		transform: translateX(-50%);
		justify-content: center;
		align-items: center;
		border-radius: 3px;
		border-radius: 8px;
	}

	.popup-cont{
		position: relative;
		height: 167px;
	}

	.popup-img{
		width: 265px;
		left: 0px;
		height: 167px;
		bottom: 0px;
		display: block;
		position: absolute;
	}

	.popup-text{
		top:30px;
		left: 295px;
		font-size: 14px;
	}

	.popup-show {
		opacity: 1;
		bottom: 15px;
	}

	.salto {
		display: none;
	}

	.popup-btn{
		top: 85px;
		left: 295px;
	}

	#popup_close{
		position: absolute;
		top: 10px;
		right: 10px;
	}

}
@media (min-width: 1050px) {

	.popup-holder{
		width: 1046px;      
	}
	.popup-cont{
		width: 1046px;      
	}

	.popup-text{
		font-size: 20px;
	}
}
