:root{
	--accent:91, 138, 254;
	--box-shadow: 0 0 0 1px #d8e1ed;
	--card: #FFF;
	--border-color: #e7edf3;
}

.container{
	position:relative;
}

.colorpicker_dropdown .color_item{
	border:solid 2px var(--card);
	outline:solid 2px var(--card);
	display:inline-block;
	width:18px;
	height:18px;
	margin:-1px 0px;
	border-radius:99px;
	cursor:pointer;
	transition:0.2s;
	z-index:1;
	position: relative;
}
.colorpicker_dropdown .color_item:hover,.colorpicker_dropdown .color_item.active{
	outline-color:rgb(var(--accent));
	transition:0s;
	z-index:2;
}

.dropdown{
	position:fixed;
	top:0;
	left:0;
	z-index:150;
	transition:opacity 0.2s;
	margin-top:10px;
}

.dropdown:before{
	    content: "";
    transform: rotate(45deg);
    border: solid 1px var(--border-color);
    z-index: 1;
    position: absolute;
    left: 50%;
    top: -5px;
    margin-left: -6px;
    box-shadow: var(--box-shadow);
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 100%);
    width: 10px;
    height: 10px;
    background: var(--card);
}

.toolbar{
	background-color:#FFF;
	height:60px;
	top:0;
	position:fixed;
	left:0;
	right:0;
	z-index:100;
	padding:10px;
	box-sizing: border-box;
}
.toolbar .btn.solid{
	background-color:rgb(var(--accent));
}
body.editing-mode{
	margin-top:60px;
}
.dialog.show {
    opacity: 1;
}
.dialog {
    position: fixed;
    inset: 0;
    z-index: 100;
    transition: 0.2s;
    opacity: 0;
    background-color: rgba(0, 0, 0, .4);
}
.card{
    background-color: var(--card);
    border-radius: 4px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    transition: 0.2s;
    margin-bottom: 16px;
}

.elements{
	position:absolute;
	top:-140px;
	left:0;
	right:0;
	z-index:100;
}

.element:hover{
	box-shadow:0 0 1px 1px rgb(var(--accent));
	cursor:move;
}

.element>*{
	pointer-events:none;
}

.element.dragging{
	position:absolute;
	opacity:0.7;
	z-index:110;
	width:100%;
	box-sizing:border-box;
}

.btn.edit{
	padding: 0px 8px;
	font-size: 11px;
	background-color:rgb(var(--accent))!important;
}
.btn.edit>i{
	font-size: 18px;
}.btn{
	padding:7px 12px;
	white-space: nowrap;
	position: relative;
	text-decoration: none;
	cursor:pointer;
	border-radius:var(--round);
	border:solid 2px transparent;
	
	transition:0.2s;
	display:inline-flex;
	align-items:center;
	user-select:none;
	justify-content: center;
}
.btn.hollow{
	border-color:rgb(var(--page-accent));
	color:rgb(var(--page-accent));
}
.btn.solid{
	background-color:rgb(var(--page-accent));
	color:#FFF;
}
.btn:not(.solid):hover{
	background-color: rgba(var(--page-accent),.1);
	transition:0s;
}
.btn.solid:hover{
	box-shadow:0 0 6px rgba(var(--page-accent),.5);
	transition:0s;
}
.btn>*{margin-right:5px;pointer-events:none;}
.btn>*:last-child{margin-right:0px;}

.btn>.complete{
	position:absolute;
	inset:0;
	background-color:#FFF;
	border:solid 2px #36C69C;
	margin: -6px -2px;
    border-radius: 6px;
	color:#36C69C;
	display:inline-flex;
	justify-content: center;
	align-items:center;
}

.btn small{color:var(--text-color);}

.inputwrap{
	margin-bottom:10px;
	flex:1;
}

.input-under{
	display: flex;
    justify-content: space-between;
}

.inputwrap .wrapflex{
	border:solid 1px #d8e1ed;
	border-radius:var(--round);
	position:relative;
	display:flex;
	align-items:center;
	transition:0.2s;
	padding:0 16px;
}
.inputwrap.focus .wrapflex{
	border-color:rgb(var(--accent));
}
.inputwrap .wrapflex>.input{
	background:none;
	border:0;
	outline:0;
	padding:12px 0;
	font-family: 'Muli', sans-serif;
	box-sizing:border-box;
	height: 100%;
    width: 100%!important;
}

input.input::-webkit-calendar-picker-indicator{
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.inputwrap .checkboxflex{
	display:flex;
	align-items:center;
}
.inputwrap .checkboxflex>.input{position:absolute;display:none;}
.inputwrap .checkboxflex>a{
	border: solid 1px #d8e1ed;
    display: inline-block;
    padding: 0px 2px;
    margin-right: 9px;
    border-radius: var(--round);
	color:transparent;
	transition:0.2s;
	user-select:none;
}
.checkboxflex>a>i{font-size:17pt;pointer-events:none;    margin-top: 1px;}
.checkboxflex>a.checked{background-color:rgb(var(--accent));border-color:transparent;}
.checkboxflex>a.checked>i{color:#FFF;}

form.disabled .inputwrap{
	opacity:0.3;
	pointer-events:none;
}
form.disabled .btn{pointer-events:none;}

.wrapflex>i{
	padding: 0 13px;
	pointer-events:none;
	transition:0.2s;
}
.wrapflex>i.fix-right{
	position: absolute;
    right: 0px;
    pointer-events: none;
}
.wrapflex>span{pointer-events:none;}
.wrapflex.focus>i{color:rgb(var(--page-accent));}
.inputwrap.error .wrapflex{border-color:rgb(255,0,0);}

.inputwrap .form-error{
	color:red;
	opacity:0;
	transition:0.2s;
}
.inputwrap.error .form-error{opacity:1;}


.footer{
	position:sticky;
	transition:0s!important;
	bottom:0;
}

@media screen and (min-width:600px){
	.form-siblings .inputwrap{display:flex;}
	.form-siblings .inputwrap>label{width:130px;margin-top: 10px;text-align:right;}
	.form-siblings .inputwrap>div{padding-left:20px;flex:1;}	
}


.fileupload{
	border:dashed 2px #d8e1ed;
	padding:20px;
	overflow:hidden;
	position:relative;
	text-align:center;
	border-radius: 4px;
	
}


.fileupload>div>.loader{
	position:relative;
	margin: 40px 0!important;
}
.fileupload>div>.loader:after{
	width:40px;
	height:40px;
}

.fileupload>div>i{
    font-size: 40px;
    color: rgb(var(--page-accent));
    border: solid 1px #d8e1ed;
    border-radius: 99px;
    padding: 20px;
    margin: 20px 0;
    display: inline-block;
}
.fileupload>input{
	position:absolute;
	top:-100px;
	left:0;
	right:0;
	bottom:0;
	z-index:1;
	cursor:pointer;
	transition:0.2s;
	display:none;
}
.fileupload.active>input{
	display:block;
}

.fileupload.active:hover{
	background-color:var(--background);
}

.fileupload img{
	max-height: 200px;
	border-radius:5px;
}:root{
	--page-accent:91,138,254;
	--round:5px;
}
html {
  scroll-behavior: smooth;
}
body{
	font-family: 'Muli', sans-serif;
	-webkit-tap-highlight-color: transparent;
	color: #3C4761;
}
.section{
	display:flex;
}
.section.margin{
	padding:40px 0;
}
.section.final{
	background-color:#000;
	text-align:center;
	color:#FFF;
}
.section[bg='offset']{
	background-color:#F3F5F9;
}

.section:first-child{
	min-height:700px;
}

.widget[type='image']{text-align:center;}

body.dark{
	background-color:#121416;
	color:#7389a1;
}

body.dark .section[bg='offset']{
	background-color:#1b1e21;
}

h1{
	font-size:60px;
	color:rgb(var(--page-accent));
}

h1,h2,p{margin:0 0 20px 0;}

.applet{
	margin:40px 0;
	text-align:center;
}
.applet h2{
	color:rgb(var(--page-accent));
}

.applet i{
	font-size:25px;
	margin:10px;
	color:rgb(var(--page-accent));
}

.section a.link{
	text-decoration:none;
	border-bottom:dashed 1px;
	color:inherit;
}