.aogm-content-switcher__panel {
	display: none;
}

.aogm-content-switcher__panel.is-active {
	display: block;
}

/* code finished*/

/* Here for stack arrangment in mobile */

/* Hide stack buttons by default */

.aogm-content-switcher__stack-button {
	display: none;
}

/*Add spacing below each stack button*/

.aogm-content-switcher__stack-button {
	margin-bottom: 16px;
}

/* Make the button full width */

.aogm-content-switcher__stack-button .aogm-button-wrapper {
	width: 100%;
}

.aogm-content-switcher__stack-button .aogm-button {
	width: 100%;
}

/* Make the button full width or Spacing between sections*/

.aogm-content-switcher__panel {
	margin-bottom: 34px;
}

/* Make the button alignment match desktop */

.aogm-content-switcher__stack-button .aogm-button-wrapper.align-left {
	justify-content: flex-start;
}

.aogm-content-switcher__stack-button .aogm-button-wrapper.align-center {
	justify-content: center;
}

.aogm-content-switcher__stack-button .aogm-button-wrapper.align-right {
	justify-content: flex-end;
}

.aogm-content-switcher__stack-button .aogm-button-wrapper.align-justify {
	justify-content: stretch;
}

/* Desktop (default) */
.aogm-content-switcher__stack-button {
	display: none;
}

/* Mobile */
@media (max-width: 767px) {
	.aogm-content-switcher__nav {
		display: none;
	}

	.aogm-content-switcher__stack-button {
		display: block;
	}
}