.custom-icon-hover-widget .icon-circle {
 /* width: 100px;*/
/*  height: 100px;*/
  border-radius: 50%;
 /* background: #f4f4f4;*/
  display: flex;
  align-items: center;   
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.custom-icon-hover-widget img {
  /*width: 40px;*/
  /*height: 40px;*/
  z-index: 2;
  transition: opacity 0.3s ease;
}

.custom-icon-hover-widget .hover-text {
  position: absolute;
  color: white;
  opacity: 0;
  font-size: 14px;
  text-align: center;
  padding: 5px;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.custom-icon-hover-widget .icon-circle:hover {
  background: var(--e-global-color-primary);
}

.custom-icon-hover-widget .icon-circle:hover img {
  opacity: 0;
}

.custom-icon-hover-widget .icon-circle:hover .hover-text {
  opacity: 1;
}

.mobile-text {
	text-align:center;
	color:	var(--e-global-color-primary);	
	display:none;
}



@media (max-width: 1024px) {	

	.mobile-text{
		display:block;
	}

  html body.front .custom-icon-hover-widget .icon-circle{
	     
	  .hover-text{
		 /* opacity:1 !important;*/
	  }
	  
	 /* background-color: var(--e-global-color-primary) !important;*/
	  img {
		/*opacity:0 !important;*/ 
	  }
  }
}
