@keyframes zoomInSide {
	0% {
	  transform: translate( 0, 0 ) scale(0.8) ;
	  opacity: 0;
	}
	100% {
	  transform: translate( 0, 0 ) scale(1);
	  opacity: 1;
	}
}

@keyframes zoomOutSide {
	0% {
		transform: translate( 0, 0 ) scale(1);
		opacity: 1;
	}
	100% {
		transform: translate( 0, 0 ) scale(0.8);
		opacity: 0;
	}
}

.glozin-popup-type--popup {
	z-index: 1100;
	--gz-modal-content-border-radius: 10px;
}

.glozin-popup-type--popup .glozin-popup__close:hover {
	transform: rotate(180deg);
}

.glozin-popup-type--popup .glozin-popup__wrapper {
	--gz-modal-content-padding-y: 0;
	--gz-modal-content-padding-x: 0;

	overflow: visible;
	z-index: 2;
}

.glozin-popup-type--slide .panel__header {
	padding: 0;
}

.glozin-popup-type--slide .panel__container {
	padding: 0;
	overflow-y: auto;

	scrollbar-width: 1px;
	scrollbar-color: var(--gz-color-light-grey);
	border-radius: var(--gz-modal-content-border-radius);
}

.glozin-popup-type--slide .panel__container::-webkit-scrollbar {
	width: 5px;
}

.glozin-popup-type--slide .panel__container::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 8px;
}

.glozin-popup-type--slide .panel__container::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.16);
}

.glozin-popup-type--slide .panel__container::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0.05);
}

.glozin-popup-type--slide .panel__content {
	padding: 0;
}

body.single-glozin_popup .glozin-popup__backdrop {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
	
}

body.single-glozin_popup .glozin-popup__wrapper {
	margin: 0 auto;
	position: relative;
}

body.single-glozin_popup .glozin-popup__wrapper .elementor-section-wrap {
	overflow: hidden;
	border-radius: 15px;
	background-color: #fff;
}

body.single-glozin_popup .glozin-popup__close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 13px;
	z-index: 10; 
	cursor: pointer;
	transition: color .4s;
	color:rgba(0, 0, 0, 0.7);
}

body.single-glozin_popup .glozin-popup__close:hover {
	color:rgba(0, 0, 0, 1);
}

body.single-glozin_popup .elementor-add-section {
	background-color: #fff;
}

@media (min-width: 1200px) {
	.glozin-popup-type--popup .glozin-popup__content {
		--gz-modal-container-padding: 0px;
	}
}

@media (min-width: 768px) {
	.glozin-popup-position--left-bottom.modal--open:not(.loading) .modal__container {
		animation: zoomInSide .35s ease forwards;
	}

	.glozin-popup-position--left-bottom.modal--closing .modal__container {
		animation: zoomOutSide .35s ease forwards;
	}

	.glozin-popup-position--right-bottom.modal--open:not(.loading) .modal__container {
		animation: zoomInSide .35s ease forwards;
	}

	.glozin-popup-position--right-bottom.modal--closing .modal__container {
		animation: zoomOutSide .35s ease forwards;
	}

	.glozin-popup-position--left-top.modal--open:not(.loading) .modal__container {
		animation: zoomInSide .35s ease forwards;
	}

	.glozin-popup-position--left-top.modal--closing .modal__container {
		animation: zoomOutSide .35s ease forwards;
	}

	.glozin-popup-position--right-top.modal--open:not(.loading) .modal__container {
		animation: zoomInSide .35s ease forwards;
	}

	.glozin-popup-position--right-top.modal--closing .modal__container {
		animation: zoomOutSide .35s ease forwards;
	}

	.glozin-popup-type--popup .glozin-popup__close {
		right: 20px;
		top: 20px;
	}

	.rtl .glozin-popup-type--popup .glozin-popup__close {
		right: auto;
		left: 20px;
	}

	.glozin-popup-position--left-bottom .glozin-popup__content {
		top: auto;
		bottom: 40px;
		left: 30px;
		right: auto;
		transform: translateX(-100%);
		transform: none;
	}

	.glozin-popup-position--right-bottom .glozin-popup__content {
		top: auto;
		bottom: 40px;
		left: auto;
		right: 30px;
		transform: translateX(100%);
		transform: none;
	}

	.glozin-popup-position--left-top .glozin-popup__content {
		top: 40px;
		bottom: auto;
		left: 30px;
		right: auto;
		transform: translateX(100%);
		transform: none;
	}

	.glozin-popup-position--center-bottom .glozin-popup__content {
		top: auto;
		bottom: auto;
		left: 30px;
		right: auto;
		transform: translateY(-100%);
		transform: none;
	}

}

@media (max-width: 767px) {
	.glozin-popup-type--popup .glozin-popup.modal {
		--gz-modal-content-width: 100%;
	}

	.glozin-popup-type--popup .glozin-popup__close {
		top: 24px;
		right: 24px;
	}

	.glozin-popup-type--popup .glozin-popup__content {
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
	}

	.glozin-popup-type--popup .glozin-popup__wrapper {
		max-height: 80%;
		overflow-y: auto;
		overflow-x: hidden;
	}
}