/* Custom Popup Widget CSS */
.custom-popup-widget {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-popup-widget.img-active {
	object-fit: cover;
	display: flex;
	justify-content: center;
	align-items: end;
	padding-bottom: 40px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.custom-popup-widget .popup-btn {
  font-family: "Roboto", Sans-serif !important;
font-weight: 300;
background-color: #A28155;
padding: 15px 36px 15px 36px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff !important;
}
 .custom-popup-widget .popup-btn.btn-no-text {
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	 color: transparent !important;
	  background-color: transparent !important;
} 
.custom-popup-widget .popup-btn:hover {
  cursor: pointer;
}
.custom-popup-widget .my-icon-wrapper i {
	font-size: 62px;
	color: #fff;
}
.custom-popup-widget .my-icon-wrapper {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
}
.custom-popup-widget .popup-title-wrapper {
	display: none;
	transition: 1.5s ease-in-out;
	transform: translateY(20px);
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	padding: 15px 5px 0 10px;
	color: #fff;
	font-weight: bold;
	background-color: var( --e-global-color-text );
}
.custom-popup-widget:hover .popup-title-wrapper {
	display: block;
	transform: translateY(-20px);
	transition: 1.5s ease-in-out;
}
.custom-popup-widget .popup-content {
 display: none;
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  overflow: auto;
  max-height: none;
  font-family: "Roboto", Sans-serif;
}
.custom-popup-widget .popup-content .elementor-cont {
    display: flex;
    justify-content: center;
    height: 100%;
align-content: center;
align-items: center;
}
.custom-popup-widget .popup-content .elementor-cont > div {
max-width: 900px;
}
.custom-popup-widget .popup-content .elementor-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  color: #000;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-popup-widget .popup-content .elementor-popup-close-button:hover {
  color: #cccccc;
}