.faq-container {
  width: 100%;
  min-height: 500px;
  height: 100%;
  display: flex;
  flex-direction: row; /* Arrange items horizontally */
}

.faqDiv {
	flex: 1;
	width: 100%;
}

/* FAQ Item */
.faq-item {
    background: var(--lighter-grey-color);
    padding: 5px;
	border-radius: 3px;
    /*border: #8d8d89 1px solid;*/
    margin-bottom: 5px; /* Add space between items */
}

.category-header {
	text-transform: capitalize;
}
.category-cont {
	padding: 0px 10px 5px 10px;
}

/* FAQ Question */
.faq-item .question {
    cursor: pointer;
	
	display: flex;
	margin: 0 0px 0px 0px;
	font-family: var(--font-family-bold); 
	background: var(--light-grey-color);
	color: var(--secondary-color);
	padding: 10px;
	font-size: var(--font-size-medium-plus);
	flex-grow: 1;
	border-radius: 5px;
}

/* FAQ Answer */
.faq-item .answer {
	display: none;
    margin-left: 5px;
	padding: 10px;
	font-size: var(--font-size-medium);
	color: var(--secondary-color);
}
.faq-category:first-of-type .faq-item:first-of-type .answer {
	display: block;
}

/* Show answer when it has the 'show' class */
.faq-item .answer .show {
    display: block;
}

.extra-div {
    width: 200px;
    background-color: #f2f2f2;
	border-radius: 3px;
    border: #8d8d89 1px solid;
    padding: 10px;
	font-size: 11px;
	position: relative;
	margin-bottom: 6px;
}
.extra-div .first {
	height: 100px;
}
.extra-div .second {
	height: 200px;
}

.extra-div span {
	display: block;
	margin-bottom: 4px;
}

.mabbz-image {
	overflow: hidden;
	height: 90px;
	width: 58px;
	position: absolute;
	right: -14px;
	bottom: -16px;
	z-index: 2;
	user-select: none;
	pointer-events:none;
}
.mabbz-image img {
	position: absolute;
	top: -10px;
	right: -4px;
	user-select: none;
	pointer-events:none;
	image-rendering: pixelated;
}
.email-bubble {
	border-radius: 10px;
    border: #240c0c 1px solid;
	height: 28px;
	overflow: hidden;
	position: relative;
}
.email-bubble .icon-bg {
	overflow: hidden;
	width: 38px;
	height: 28px;
	background: #505050;
}
.email-bubble .mab-icon {
	width: 38px;
	image-rendering: crisp-edges;
	position: relative;
	top: -8px;
	left: 0px;
	user-select: none;
	pointer-events:none;
}
.email-bubble .mab-email {
	border-radius: 4px;
    border: #240c0c 1px solid;
	height: 32px;
	left: 32px;
	top: -1px;
	position: absolute;
	width: calc(100% - 32px);
	background: rgb(207,207,207);
	background: linear-gradient(0deg, rgba(207,207,207,1) 10%, rgba(224,224,224,1) 10%, rgba(224,224,224,1) 80%, rgba(255,255,255,1) 80%);
	padding-left:8px;
	padding-top: 6px;
	font-size: 12px;
	font-weight: bold;
}