/* nav highlighting */

.nav-faq.nav-header {
	background-color: #52beda !important;
}

/* Wholesale FAQ page: keep layout scoped under #faqApp when embedded in Miva */
#faqApp {
	--faq-accent: #08829a;
}

/* previous css */
body {
	max-width: 100vw !important;
}
.legacy-content {
	/* padding: 0 5px 0 20px; */
}
.faq-link {
	color: var(--accent-color-teal) !important;
}
.article-title {
	color: var(--accent-color-teal);
	font-weight: 500;
	font-family: "inherit";
}
.article-content {
	font-size: 1.1em;
}
.q-list a {
	color: #000000;
}
.q-list > ol {
	list-style: none;
	counter-reset: liz;
}
.q-list > ol > li {
	counter-increment: liz;
	margin-bottom: 3px;
}
.q-list > ol > li::before {
	content: counter(liz);
	color: var(--accent-color-teal);
	display: inline-block;
	width: 1em;
	margin-left: -1.5em;
	margin-right: 0.5em;
	text-align: right;
	direction: rtl;
	font-weight: 600;
}
.q-list-double {
	margin-left: 5px; /*for iphone ...*/
}
.q-list-double > ol > li {
	display: flex;
}
.q-list-double > ol > li::before {
	text-align: left;
	width: 0;
}
h3 {
	font-size: 1em !important;
	color: var(--accent-color-teal);
}
.xx-shift-right dl {
	margin-left: 35px;
	margin-top: 5px;
}
.xx-shift-right dd {
	margin-top: 6px;
}
.xx-shift-right dt:before,
.xx-shift-right dd:before {
	display: block;
	position: relative;
	max-width: 0px;
	max-height: 0px;
	left: -23px;
	top: -3px;
	color: var(--accent-color-orange);
	font-size: 1em;
	font-weight: 400;
}
.xx-shift-right dt:before {
	content: "Q:";
}
.xx-shift-right dd:before {
	content: "A:";
}

/* previous styling ended, decided not to delete in case it causes any problems */

/* new styling starts */

.container .column {
	display: flex;
	flex-direction: column;
}

.articletitle {
	padding-top: 20px;
	padding-bottom: 15px;
	width: 100%;
	text-align: center;
	line-height: 1.1em;
	/* font-size: 2.0em !important; */
	font-family: inherit;
	font-weight: 500;
	font-size: calc(1.375rem + 1.5vw);
	color: var(--accent-color-teal);
	margin: 0 30px;
}

.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 15rem;
	background-color: white;
	background-image: url(/img/homepage/back-bestseller.png);
	background-size: cover;
}

.accordion {
	color: #08829a;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.accordion ul {
	list-style-type: none;
}

.accordion .expandable {
	position: relative;
	box-sizing: border-box;
}

.accordion .expandable .card-header {
	cursor: pointer;
	display: flex;
	font-weight: 500;
	font-size: 18px;
	padding: 18px 0px;
}

.accordion .expandable .card-header p {
	margin: 0;
	font-weight: 400;
	/* font-style:bold; */
	font-size: 18px;
	text-align: left;
}

.accordion .expandable .content p {
	text-align: left;
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color:rgb(77, 77, 77);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

.faq-row {
	display: flex;
	padding-top: 30px;
	box-sizing: border-box;
}

.faq-left-col {
	min-width: 350px;
	display: flex;
	margin-right: 50px;
	flex-direction: column;
	margin-bottom: 100px;
}

.faq-right-col {
	flex-grow: 1;
}

.search {
	width: 100%;
	position: relative;
}

.search-icon {
	position: absolute;
	height: 15px;
	width: 15px;
	left: 10px;
	align-self: center;
}

.search-input-container {
	position: relative;
	display: grid;
	align-items: center;
}

.search-input-container input {
	width: 100%;
	border-radius: 5px;
	border: 1px solid #cccccc;
	padding: 2px 10px 2px 30px;
	height: 30px;
}

.search-input-container input:focus {
	outline: none;
	border: 1px solid #08829a;
}

/* .accordion .expandable:before{
    content: "";
    width: 100%;
    height: 2px;

    background-color: #CCCCCC;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    transition: all 0.5s;
    box-sizing: border-box;
} */

.accordion .expandable hr {
	margin: 0;
	background-color: #cccccc;
	opacity: 1;
	width: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 3px;
	transition: all 0.5s;
	box-sizing: border-box;
	height: 0.1rem;
}

.pianAndWan {
	display: flex;
}

.pianAndWan img {
	width: 50%;
}

.accordion .expandable .content {
	height: 0;
	overflow: hidden;
	transition: all 0.5s;
	margin-left: 50px;
}

.faq-link {
	color: #08829a;
}

.expandable.show {
	display: block;
}

.plus-container {
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 50px;
}

.plus {
	width: 25px;
	height: 25px;
	border: 0;
	font-size: 1.5em;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.plus span {
	position: absolute;
	transition: 300ms;
	background: #08829a;
	border-radius: 2px;
}

.expandable ol {
	color: black;
	font-size: 16px;
}

.plus span:first-child {
	height: 0.8rem;
	width: 2px;
}

.plus span:last-child {
	width: 0.8rem;
	height: 2px;
}

.plus.open span {
	transform: rotate(90deg);
}

.plus.open span:last-child {
	width: 0;
}

.faq-categories {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	gap: 30px;
}

.category {
	display: flex;
	gap: 10px;
	align-items: center;
	cursor: pointer;
}

.category.selected-category {
	color: #08829a;
}

.category img {
	width: 35px;
	height: 35px;
}

.expandable.invisible {
	display: none;
}

.faq-highlight {
	background-color: rgba(242, 210, 94, 0.5);
}

.category p {
	margin: 0;
	/* font-style:bold; */
	font-size: 18px;
}

.glutenImages,
.veganImages {
	display: flex;
	gap: 20px;
}

.glutenImages img,
.veganImages img {
	height: 100px;
}

@media (max-width: 992px) {
	.faq-left-col {
		min-width: 270px;
	}
}

@media (max-width: 850px) {
	.faq-left-col {
		min-width: 200px;
	}
}

@media (max-width: 767px) {
	.plus span:first-child {
		height: 0.5rem;
		width: 0.1rem;
	}

	.plus span:last-child {
		width: 0.5rem;
		height: 0.1rem;
	}
	.faq-row {
		flex-direction: column;
		padding-top: 10px;
	}
	.faq-left-col {
		margin-right: 0;
		margin-bottom: 0;
	}
	.faq-categories {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0;
		border: 1px solid #08829a;
		border-radius: 3px;
		overflow: hidden;
		margin-bottom: 15px;
		margin-top: 10px;
	}
	.category img {
		display: none;
	}

    .accordion ul {
        padding:0;
    }

	.plus-container {
		width: 25px;
		height: 25px;
		min-width: 25px;
	}

	.category {
		box-sizing: border-box;
		padding: 8px 6px;
		background-color: white;
		border-right: 1px solid #08829a;
		border-bottom: 1px solid #08829a;
		transition: all 0.3s;
		justify-content: center;
		min-width: 0;
		width: auto;
		flex: none;
	}

	.category.selected-category {
		background-color: #08829a;
		color: white;
	}

	.category:nth-child(3n) {
		border-right: none;
	}

	.category:nth-last-child(-n + 3) {
		border-bottom: none;
	}

	.category p {
		font-size: 12px;
		text-align: center !important;
		color: #08829a;
		line-height: 1.25;
	}

	.category.selected-category p {
		color: white;
	}

	.accordion .expandable .content {
		margin: 0 25px;
	}
	.hero {
		height: 7rem;
	}

	.accordion .expandable .card-header {
		padding: 13px 0px;
	}
}

@media (max-width: 420px) {
	.category p {
		font-size: 11px;
	}

	.category {
		padding: 8px 4px;
	}
}
