body {
	margin: 0;
	padding: 0;
	font-family: "Electrickle", "Roboto-Regular", Arial, Helvetica, sans-serif;
}

@font-face {
	font-family: "Roboto-Regular";
	src: url('./font/Roboto-Regular.woff');
}

@font-face {
	font-family: "Electrickle";
	src: url('./font/Electrickle.woff');
}

.container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#iframe-layer {
	width: 70%;
	height: 100%;
	margin: 0px auto;
	position: absolute;
	border: 0;
	top: 0;
	left: 0;
}

#menu {
	width: calc(30% - 100px);
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: self-start;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	background: #000;
	color: #fff;
}

#menu>h2 {
	font-size: 25px;
}

#menu .logo {
	width: 160px;
	filter: invert(100%);
}

select {
	width: 100%;
	font-size: 16px;
	background: #000;
	color: #fff;
}

option {
	background: #fff;
	color: #000;
}

.option-layer {
	margin: 10px 0;
	width: 100%;
}

.option-layer h3 {
	margin: 0 auto;
	font-size: 23px;
	font-weight: normal;
	text-transform: uppercase;
}

#vzion-link {
	position: absolute;
	bottom: 20px;
	left: 30px;
	text-decoration: unset;
}

.dropdown {
	position: relative;
}

.dropdown-button {
	border: 1px solid #000;
	position: relative;
	padding: 0 5px;
	cursor: context-menu;
	background: #fff;
	color: #000;
	font-size: 20px;
	font-weight: normal;
}

.dropdown-button:after {
	content: "";
	position: absolute;
	right: 6px;
	top: 5px;
	width: 5px;
	height: 5px;
	border: 1.5px solid #000;
	border-top: 0;
	border-right: 0;
	transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
}

.dropdown-content {
	background: #fff;
	border: 1px solid #000;
	max-height: 20vh;
	overflow: auto;
	position: absolute;
	width: 100%;
	display: none;
	z-index: 99;
	box-sizing: border-box;
	color: #000;
	font-size: 18px;
	font-weight: normal;
}

#nipples-a-dropdown .dropdown-content,
#nipples-b-dropdown .dropdown-content {
	max-height: calc(20vh - 70px);
}

.dropdown-content.active {
	display: block;
}

.dropdown-option {
	padding: 1px 5px;
	cursor: context-menu;
	display: flex;
	align-items: center;
}

.dropdown-option:hover {
	background: #1967d2;
	color: #fff;
}

.dropdown-option .color {
	width: 13px;
	height: 13px;
	background: #000;
	border-radius: 50px;
	margin-right: 3px;
	border: 1px solid #000;
}

.dropdown-option.hide {
	display: none;
}

#save-image-btn {
	position: relative;
	background: #fff;
	padding: 5px 10px;
	color: #000;
	cursor: pointer;
	margin-top: 10px;
	font-size: 24px;
}

@media only screen and (max-width: 768px) {
	.container {
		display: flex;
		flex-direction: column;
	}

	#iframe-layer {
		width: 100%;
		height: unset;
		position: relative;
		aspect-ratio: 1 / 1;
	}

	#menu {
		width: calc(100% - 20px);
		height: min-content;
		max-height: calc(50% - 30px);
		position: relative;
		padding: 10px;
		overflow: auto;
		top: unset;
		bottom: 0;
		justify-content: start;
		padding-bottom: 30px;
	}

	#menu>h2 {
		margin: 5px 0;
		font-size: 16px;
	}

	.option-layer {
		margin: 5px 0;
	}

	.option-layer h3,
	select {
		font-size: 19px;
	}

	#vzion-link {
		bottom: 0px;
		left: 5px;
		position: relative;
		margin-top: 10px;
	}

	.dropdown-content {
		max-height: 8vh !important;
	}
}