@media only screen and (max-width: 1024px) {
	.glossary-tooltip {
		height:45% !important;
		margin-right:auto !important;
		margin-left:auto !important
		
	}
	.glossary-tooltip-img {
		display:none !important;
	}
	
	.glossary-tooltip-text {
		width:100% !important;
		height:100%;
		vertical-align:bottom	;
	}

}

.glossary-term {
   background-color:var(--alternative-background);
	padding:4px 6px;
	border-radius:60px;
	color:#0F1111;
	text-decoration:none !important;
	/*border-bottom: 3px dotted #323A3A;*/
}


.glossary-term:hover {
   background-color:#323A3A;
	color:#FDF7F0;
	/*border-bottom-color: #323A3A;*/
}

.glossary-tooltip-root {
  box-sizing: border-box;
}

.glossary-tooltip {
   background: var(--alternative-background);
   color: #0F1111;
   border-radius :24px;
	width:812px;
	height:200px;
	max-width:90vw;
	max-height:30em;
	z-index: 10000;
	overflow-y:hidden;
	display: none;
	box-sizing: border-box;
}

glossary-tooltip:after {
	content: "";
  display: table;
  clear: both;
}

.glossary-tooltip-header {
	position:relative;
}

.glossary-tooltip-definition {
	position:relative;
    line-height: 16px;
}

.glossary-tooltip-clic {
	position:absolute;
	bottom:10px;
}
.glossary-tooltip-img {
	width:25%;
	background-color:#FDF7F0;
	border-radius: 0px 20px 20px 0px;
	padding:auto;
	margin-top:auto;
	margin-bottom:auto;
	height:100%;
	float:left;
  box-sizing: border-box;
	position:relative;
}

.glossary-tooltip-img img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}
.glossary-tooltip-text {
	width:75%;
	float:left;
  box-sizing: border-box;
	padding:15px;
	font-size:14px;
}

.glossary-tooltip-text h2 {
	color:#323A3A;
	font-size:24px;
	font-weight:700;
	margin-top : 5px;
}
.glossary-tooltip p:last-child {
   margin-bottom: 0;
}

.glossary-tooltip[data-show] {
   display: block;
}