@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.spin {
	animation: spin 2s linear infinite;
}
.demo {
	font-family: 'Roboto', sans-serif!important;
	background: #F8F8F8;
	border-left: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	position: fixed;
	top: 0;
	right: -235px;
	z-index: 999;
	border-bottom-left-radius: 10px;
	color: #333;
	width: 235px;
	max-height: calc(100% + 10px);
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	text-align: center;
	line-height: 1.2em;
}
.demo h3 {
	color: #333!important;
}
.demo > * {
	margin: 0;
}
.demo a {
	color: var(--color1);
}

.demo ._field {
	display: flex;
	flex-direction: column;
	gap: 5px;
	border-bottom: 1px dashed #eeeeee;
	padding-bottom: 15px;
}
.demo ._field b {
	font-weight: 500;
}
.demo img {
	margin: 5px 0;
	padding: 5px;
	border: 1px solid #eeeeee;
	background: #FFF;
}
.demo img:hover {
	opacity: .7
}
.demo select,
.demo input {
	background: #fff;
	border: 1px solid #eeeeee;
	padding: 8px;
	width: 100%;
	border-radius: 0;
	color: #333;
}
#theme-options .screenshot {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 5px 10px;
	background: #00000070;
	color: #fff;
	font-size: 12px;
	border-top-left-radius: var(--x2bradius);
}
#theme-options .screenshot:hover {
	text-decoration: underline;
}

.opendemo {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 18px;
	position: absolute;
	top: 112px;
	left: -49px;
	z-index: 1000;
	background: #4D4D4D;
	cursor: pointer;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px
}
#colorz .pickr {
	display: inline-block!important;
}

@media (max-width:1080px) {
	.demo {
		display: none;
	}
}