.fx-tab-widget-wrapper {
	width: 100%;
  }
  
  .fx-tab-layout {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
  }
  
  .fx-tab-column-left,
  .fx-tab-column-right {
	flex: 1 1 100%;
	max-width: 100%;
  }
  .tab-content .fx-tab-image{
	display: block;
  }
  .fx-tab-widget-tabs {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
  }
  
  .fx-tab-widget-tabs li {
	margin: 0;
  }
  
  .fx-tab-button {
	width: 100%;
	background-color: transparent;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #E3E3E3;
	padding: 10px 20px;
	text-align: left;
	cursor: pointer;
	font-family: var(--e-global-typography-primary-font-family);
	font-size: var(--e-global-typography-primary-font-size);
	transition: all 0.3s ease;
	color: var(--e-global-color-text);
  }
  
  .fx-tab-button.active,
  .fx-tab-button:hover {

	color: var(--e-global-color-primary);
	border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: var(--e-global-color-accent);

  }
  
  .tab-panels .fx-tab-panel {
	display: block;
  }
  
 
  
  .fx-tab-title {
	margin-top: 0;
	color: var(--e-global-color-primary);
	font-family: var(--e-global-typography-primary-font-family);
	font-size: var(--e-global-typography-primary-font-size);
  }
  
  .fx-tab-content {
	margin-bottom: 15px;
	margin-top: 20px;
	color: var(--e-global-color-text);
  }
  
  .fx-tab-link {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	background-color: var(--e-global-color-accent);
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease;
  }
  
  .fx-tab-link:hover {
	background-color: var(--e-global-color-secondary);
  }
  
  .fx-tab-image-panel {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.5s ease, width 0.5s ease ,transform 0.5s ease;
	width: 0;
	height: 100%;
	position: relative;
  }
  
  .fx-tab-image-panel.active {
	opacity: 1;
	transform: translateX(0);
	width: 100%;
	
  }
  
  .fx-tab-image-panel img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 5px;
  }
  .fx-tab-widget-tabs {
	display: none;
  }
  .tab-content .fx-tab-image {
	padding-bottom: 30px;
  }
  .tab-content .fx-tab-image img {
	width: 100%;
  }
  .fx-tab-column-right {
	display: none;
  }
  .tab-panels {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
  }
  @media (min-width: 768px) {
	.fx-tab-column-left,
	.fx-tab-column-right {
	  flex: 1 1 50%;
	  max-width: 50%;
	}
	
	.fx-tab-layout {
		align-items: center;
	}
	.tab-content .fx-tab-image{
		display: none;
	  }
	  .fx-tab-widget-tabs {
		display: flex;
		row-gap: 20px;
	  }
	  .fx-tab-column-right {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}
	  .tab-panels .fx-tab-panel {
		display: none;
	  }
	  
	  .tab-panels .fx-tab-panel.active {
		display: block;
	  }
	  .fx-tab-image-panel img{
		height: 80vh ;
	  }
  }
  
  