/* font */
@font-face {
  font-family: 'OpenSans';
  src: url('fonts/Open_Sans/OpenSans-Regular.ttf') format('truetype'); 
}
@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway/Raleway-Regular.ttf') format('truetype'); 
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto/Roboto-Regular.ttf') format('truetype'); 
}
@font-face {
  font-family: 'Roboto_Slab';
  src: url('fonts/Roboto_Slab/RobotoSlab-Regular.ttf') format('truetype'); 
}
@font-face {
  font-family: 'comfortaa';
  src: url('fonts/comfortaa/Comfortaa-Regular.ttf') format('truetype'); 
}
@font-face {
  font-family: 'NotoSans';
  src: url('fonts/Noto_Sans/NotoSans-Regular.ttf') format('truetype'); 
}

/* general */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
	margin:0;
	padding:0 0;
	height:100%;
	font-family: 'comfortaa', sans-serif!important;
	
}
:root {
  --blacklight: #333;
  --greyefefef: #efefef;
  --greyebebeb: #ebebeb;
  --greyd1d1d1: #d1d1d1;
  --grey999: #999999;
  --white: #ffffff;
  --sea: #23aadd;
}
#wrappers {
	min-height:100%;
	position:relative;
}
#content {
	margin: 0;
	padding: 1em;
	border:1px solid;
	border-radius:1em;
	background-color: #fff;

}
/* Mark input boxes that gets an error on validation: */
input.invalid,
select.invalid {
  background-color: #ffdddd;
}
/* Hide all steps by default: */
.tab {
  display: none;
}
button {
  background-color: var(--sea);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  font-family: 'comfortaa', sans-serif;
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
}
#prevBtn {
  background-color: #bbbbbb;
}
/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}
.step.active {
  opacity: 1;
}
/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: var(--sea);
}
#logo {
	display:block;
	width:150px;
	margin:0 auto 1em auto;
}
#logo img {
	width:100%;
}
#regForm {
	width:90%;
	margin:0px auto 0 auto;
}
#regForm h1{
	font-size:1em;
	text-align:center;
	margin:0px auto 10px auto;
}
#regForm h2{
	font-size:.85em;
	text-align:center;
	margin:2em auto 2em auto;
	width:75%;
	font-weight:normal;
}
#regForm fieldset {
	border:none;
	#width:100%;
	margin:0 0 1rem 0;
	padding-top:0;
	padding-bottom:0;
}
#regForm legend {
	color:#333;
	font-size:1em;
	padding:10px 10px;
	background-color: #f1f1f1;
	margin-bottom:1rem;
}
#regForm legend i {
	color:var(--sea);
	margin-right:7px;
}
#regForm fieldset label {
	font-weight: normal;
	color:#333;
	font-size:.9em;
	padding-bottom:.25rem!important;
	display:block;
}
#regForm input[type="text"],
#regForm input[type="email"],
#regForm input[type="password"],
#regForm input[type="number"],
#regForm input[type="date"],
#regForm input[type="time"]{
	width:100%;
	color: #333;
	border: 1px solid rgba(33,33,33,.25);
	margin:0 auto;
	display: block;
	padding:12px 10px;
}
#regForm input[type="tel"]{
	width:100%;
	color: #333;
	border: 1px solid rgba(33,33,33,.25);
	margin:0 auto;
	display: block;
	padding:12px 10px 12px 50px;
}
#regForm input[type="radio"] {
	display:inline-block;
	margin-right:7px;
	cursor:pointer;
}
#regForm .buttonconfirm {
	display:inline-block;
	width:fit-content;
}
#regForm select {
	width:100%;
	color: #333;
	border: 1px solid rgba(33,33,33,.25);
	margin:.5% auto;
	display: block;
	padding:12px 10px;
}
#regForm textarea {
	width:100%;
	color: #333;
	border: 1px solid rgba(33,33,33,.25);
	margin:.5% auto;
	display: block;
	padding:12px 10px;
}
#regForm input[type="submit"] {
	display:block;
	margin:15px auto;
}
.col-md-6 {
    width: 49%!important;
	display:inline-block;
}
.col-md-8 {
    width: 60%!important;
	display:inline-block;
	vertical-align:top;
}
.col-md-2 {
    width: 38%!important;
	display:inline-block;
}
.col-md-fit {
    width: fit-content!important;
	display:inline-block;
}
