#options-back {
	background-color: var(--purple-1);
}

#main-options > nav {
	text-align: center;
	color: white;
	position: relative;
	padding: 5px;
	z-index: 3;
}

#options {
	display: flex;
	justify-content: space-evenly;
	list-style: none;
	padding: 0px;
}

#options > li > a {
	white-space: nowrap;
	display: flex;
	justify-content: center;
	font-weight: 500;
}

#options > li > a > icon > svg {
	fill: white;
	margin: 0px;
	margin-top: 2px;
}

#burger {
	display: none;
	cursor: pointer;
}

#burger > span {
	margin-top: auto;
	margin-bottom: auto;
	margin-left: 6px;
}

#burger > icon {
	height: 30px;
}

#burger > icon > svg {
	fill: white;
	width: 25px;
	height: 30px;
}

#burger {
	padding: 8px;
	margin: 4px;
}

#burger-menu {
	position: fixed;
	top: 0px;
	left: 0px;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 0%;
	height: 100%;
	transition: width 0.1s ease;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.4), 0 2px 5px 0px rgba(0, 0, 0, 0.4);
	z-index: 6;
	background-color: white;
}

#burger-menu > div.content {
	padding: var(--inside-space);
}

#burger-menu > div.content > div {
	display: flex;
	justify-content: space-between;
}

#burger-menu > div.content div > icon svg {
	height: 24px;
	width: 24px;
	cursor: pointer;
}

#bur-items {
	/*list-style: none;*/
	padding: 0px;
}

.opt {
	border: 6px solid var(--purple-1);
	border-radius: 10px;
	margin-top: 3px;
	margin-bottom: 3px;
	padding: 8px;
	width: 90%;
}

.opt > a {
	color: white;
}

.opt:hover {
	background-color: var(--color-1-b);
	cursor: default;
}

.opt:hover #opt-content {
	display: flex;
}

.info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background-color: white;
	padding: var(--inside-space);
	width: 100%;
	flex-direction: column;
	color: black;
	z-index: 0;
	text-align: left;
	gap: 8px;
}

.info > a, .info > div {
	display: flex;
	width: 1fr;
	min-height: 60px;
	padding: 5px;
}

.info > a:hover {
	background-color: var(--color-2-a);
}

.info > a > img {
	height: 50px;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 8px;
}

.info > a > span {
	margin-top: auto;
	margin-bottom: auto;
}

.bitem {
	gap: 2px;
	width: 100%;
	height: 100px;
	text-align: center;
	justify-content: center;
}

.bitem > svg {
	margin: auto;
	width: 100px;
	height: 50px;
}

#opt-content {
	display: none;
	left: 0;
	top: 80%;
	height: 400px;
	position: absolute;
	flex-direction: row;
	width: 100%;
	box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.4), 0 2px 5px 0px rgba(0, 0, 0, 0.4);
}

#promos {
	background-color: var(--color-2-a);
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 960px) {
	#others {
		display: none;
	}
}

@media screen and (min-width: 891px) {
	#burger-menu {
		display: none !important;
	}

	html {
		overflow: auto !important;
	}
}

@media screen and (max-width: 890px) {
	#options {
		display: none;
	}

	#burger {
		display: flex;
		margin: 3px;
	}
}

@media screen and (min-width: 596px) {
	#burger-menu {
		max-width: 354px !important;
	}
}

@media screen and (max-width: 595px) {
	#burger {
		position: absolute;
		top: -159px;
		left: 13px;
	}

	#main-options > nav {
		height: 25px;
	}

	#burger-menu {
		max-width: 100vw !important;
	}
}
