body {
	margin: 0;
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	background: #eaeaef;
}

img {
	border:0px;
}

.logo{
	max-width:150px;
}

a {
	text-decoration:none;
	color: #ccc;
}

a:hover {
	text-decoration:none;
	color: #fff;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}

#topbar {
	background-color: rgb(88 88 88 / 75%);
	backdrop-filter: blur(10px) contrast(100%);
	-webkit-backdrop-filter: blur(10px) contrast(100%);
	padding: 10px 20px;
	margin:0px;
	opacity: 0.3;
	transition: opacity 300ms;
	display: flex;
	gap: 15px;
	justify-content: space-between;
	align-items: center;
	border-radius: 0 0 15px 15px;
}

header.started #topbar,
header:hover #topbar{
	opacity: 1;
}

#topbar .projects-list {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

#topbar h1 {
	margin: 0;
}

#topbar h1 a {
	display: block;
}

#topbar h1 img {
	width:60px;
	border:0px;
	display: block;
}

#topbar .projects-list a {
	color: #fff;
	text-decoration: none;
	border-radius: 15px;
	padding: 5px 8px;
	font-size: 13px;
	font-weight: normal;
	display: block;
	text-align: center;
	background: #141516;
	border:2px solid transparent;
}
#topbar .projects-list a.newest {
	font-weight:bold;
}
#topbar .projects-list .last {
	font-size: 0.8em;
}

#topbar .projects-list a:hover,
#topbar .projects-list a.active{
	border:2px solid #9b70f5;
	background: #6d2cf5;
}

select {
	width: 100%;
	max-width: 200px;
	padding: 5px 5px;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 14px;
	background-color: #2a2a2a;
    color: #fff;
	border: 1px solid #191919;
	border-radius: 20px;
	cursor:pointer;
}

select,.layout-light .g44-auto-layout select {
	background-image: url("data:image/svg+xml,<svg height='16' width='20' viewBox='0 0 40 35' xmlns='http://www.w3.org/2000/svg'><polyline fill='transparent' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' points=' 33.3,13.4 20,26.6 6.7,13.4 '/></svg>");
	background-repeat: no-repeat;
	background-position: calc(100% - 5px) center;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	padding-right: 15px
}

#projects .project-image {
	/*visibility:hidden;
	opacity:0;
    pointer-events: none;*/
	margin: auto;
	display: block;
}

#projects {
	width:100%;
    position: relative;
    touch-action: pan-x pan-y;
    transform-origin: center top;
    transition: transform 0.1s ease-out;
}

#projects div.project-wrapper {
    display: none;
    position: relative;
    width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    z-index: 999;
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: top center;
}

form {
	position: fixed;
	left: 50%;
	top: 50%;
	width: calc(100% - 50px);
	max-width: 365px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	text-align: center;
	background-color: #ffffff;
	border-radius: 22px;
	box-shadow: 0 30px 30px -30px rgb(167 170 180 / 60%);
}

form fieldset {
	padding: 30px;
	margin: 0;
	border: 0;
}

form h1 {
	margin: 0 0 30px;
}

form input {
	color: #0c0c26;
	font-family: inherit;
	font-size: 16px;
	border: 1px solid #aeaeb8;
	padding: 10px 15px;
	box-sizing: border-box;
	border-radius: 10px;
	text-align:center;
	width: 100%;
}

.error {
	position: fixed;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	background-color: #d7182a;
	border-radius: 22px;
	font-weight: bold;
	color: #fff;
	line-height: 1.29em;
	font-size: 16px;
	padding: 40px 20px;
	width: calc(100% - 50px);
	max-width: 365px;
	text-align: center;
	box-shadow: 0 30px 30px -30px rgb(58 58 58 / 60%);
}

.sr-text,.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0
}

@media (max-width: 1200px) {
	#projects div.project-wrapper {
        width: 100%;
        min-width: unset;
        max-width: 1200px;
        background-size: 100% !important;
		-webkit-transition: all 0.2s ease 0s;
		-moz-transition: all 0.2s ease 0s;
		-o-transition: all 0.2s ease 0s;
		-ms-transition: all 0.2s ease 0s;
		transition: all 0.2s ease 0s
    }
    #projects .project-image {
        width: 100%;
    }

	#projects.zoomed  div.project-wrapper {
        width: 200%;
    }
}

@media (max-width: 768px) {
	#topbar {
		background-color: rgb(88 88 88 / 39%);
   		opacity:1;
   		padding: 10px 10px;
	}
	#topbar h1 img {
		width: 46px;
	}
}