@charset "UTF-8";

#skillmatrix-content {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	display: flex;
	flex-direction: column;
}

/* ZUSTAND */
.sm-hide {
	display: none !important;
}
.sm-active {
	color: rgb(30,30,30) !important;
}

/* CONTROL */
#sm-control, #sm-uebersicht-control {
	display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #FFF;
    padding: 0px 24px;
    height: 54px;
    overflow: hidden;
    z-index: 100;
    padding: 0px 0px 0px 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: solid 1px #DCDCDC;
    box-shadow: 1px 0px 5px -1px #CCC;
    -webkit-box-shadow: 1px 0px 5px -1px #CCC;
}
#sm-control ul {
	color: #101200;
    list-style-type: none;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'alto_promedium';
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
	margin: 0px;
	padding: 0px;
}
#sm-control ul li {
    position: relative;
    cursor: default;
    display: flex;
    align-items: center;
    margin-right: 24px;
    height: 100%;
    color: rgb(135,135,135);
}
#sm-control ul li:hover {
	color: rgb(96,125,153);
}
#sm-buttons {
	display: flex;
}
#sm-save, #sm-uebersicht-save, .sm-button-save {
	display: flex;
    display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    font-size: 13px;
    border: solid 1px rgb(96,125,153);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: rgb(96,125,153);
    fill: rgb(255,255,255);
    color: rgb(255,255,255);
    margin-right: 10px;
    font-family: 'alto_probold';
    transition: all 100ms ease;
}
#sm-save svg, #sm-uebersicht-save svg, #sm-button-got-it svg, .sm-button-save svg {
	height: 14px;
    width: 14px;
    margin-right: 7px;
}
#sm-save:hover, sm-uebersicht-save:hover, #sm-button-got-it:hover, .sm-button-save:hover {
	color: rgb(96,125,153);
    fill: rgb(96,125,153);
    background-color: rgb(255,255,255);
}
.sm-spacer {
	flex: 1;
}
#sm-uebersicht-button {
	display: flex;
    display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
	fill: rgb(135,135,135);
	margin-right: 24px;
}
#sm-uebersicht-button svg {
	height: 20px;
    width: 20px;
}

/* CONTENT */
#sm-content {
	flex: 1;
	background-color: rgb(246,246,246);
	overflow-x: auto;
}
#sm-content-wrapper {
	position: relative;
    margin: auto;
    /* width: 100%; */
    max-width: 1000px;
    padding: 24px;
}
#sm-content h1 {
	text-transform: uppercase;
    font-size: 32px;
    margin: 48px 0px;
}
#sm-content h2 {
	margin: 0px 0px 36px;
    font-size: 20px;
    line-height: 24px;
}
#sm-content h3 {
	font-size: 16px;
}
#sm-content p {
	font-size: 16px;
    line-height: 24px;
}
.sm-content-section {
	background-color: rgb(255,255,255);
    border: solid 1px rgb(220,220,220);
    padding: 24px;
    margin: 0px -24px;
	border-bottom: none;
}
.sm-content-section:last-child {
	margin-bottom: 72px;
	border-bottom: solid 1px rgb(220,220,220);
}
section:last-child .sm-content-section {
	margin-bottom: 0px;
}
.sm-input {
	font-size: 14px;
	line-height: 24px;
}
.sm-input div {
	margin-bottom: 4px;
}
.sm-input div:last-child {
	margin-bottom: 0px;
}
#sm-input-languages {
	display: flex;
    flex-wrap: wrap;
	margin-top: 24px;
}
.sm-input-languages-check {
	width: 248px;
	margin-bottom: 12px !important;
}
.sm-content-ref {
	display: inline-flex;
    font-family: 'alto_probold';
    margin-left: 14px;
    color: rgb(96,125,153);
	font-size: 14px;
}

/* UEBERSICHT */
#sm-uebersicht {
	display: flex;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgb(246,246,246);
	z-index: 104;
	overflow-x: scroll;
	flex-direction: column;
}
#sm-uebersicht-content {
	flex: 1;
    overflow-x: scroll;
}
#sm-uebersicht-wrapper {
	margin: auto;
	max-width: 1000px;
    padding: 24px;
}
#sm-uebersicht-wrapper h1 {
	font-size: 24px;
    margin: 0px 0px 24px;
	text-transform: uppercase;
}
#sm-uebersicht-wrapper h2 {
	margin: 0px 0px 12px;
	font-size: 16px;
}
#sm-uebersicht-wrapper section {
    margin-bottom: 48px;
}
.sm-uebersicht-row {
	display: flex;
	flex-direction: row;
	background-color: rgb(255,255,255);
    border: solid 1px rgb(220,220,220);
    margin: 0px -24px;
    border-bottom: none;
}
.sm-uebersicht-row:hover {
	background-color: rgba(220,220,220,0.6);
}
.sm-uebersicht-row:last-child {
	border-bottom: solid 1px rgb(220,220,220);
}
.sm-uebersicht-h3, .sm-uebersicht-value {
	display: flex;
	align-items: center;
	height: 40px;
	font-size: 16px;
	border-right: solid 1px rgb(220,220,220);
}
.sm-uebersicht-h3 {
	flex: 1;
	font-size: 16px;
    padding: 0px 24px;
}
.sm-uebersicht-value {
	justify-content: center;
	padding: 0px;
	width: 40px;
	font-size: 13px;
}
.sm-uebersicht-value:last-child {
	border-right: none;
}
#sm-uebersicht-control-input {
	font-size: 13px;
    text-transform: uppercase;
    fill: rgb(135,135,135);
    color: rgb(135,135,135);
    font-family: 'alto_probold';
    transition: all 100ms ease;
}
#sm-uebersicht-control-input select {
	margin-left: 8px !important;
	background-color: rgb(255,255,255);
	border: none !important;
	font-size: 13px !important;
}
#sm-uebersicht-control-close, #sm-uebersicht-control-uebersicht {
	font-size: 13px;
    padding: 4px 8px;
    text-transform: uppercase;
    fill: rgb(135,135,135);
    color: rgb(135,135,135);
    margin-right: 10px;
    font-family: 'alto_probold';
    transition: all 100ms ease;
    display: flex;
    align-items: center;
}
#sm-uebersicht-control-close:hover, #sm-uebersicht-control-uebersicht:hover {
    color: rgb(30,30,30);
    fill: rgb(30,30,30);
}
#sm-uebersicht-control-close svg {
    height: 20px;
    width: 20px;
    margin-right: 4px;
}
#sm-uebersicht-control-uebersicht svg {
	height: 14px;
    width: 14px;
    margin-right: 7px;
}
#sm-uebersicht-header {
	position: fixed;
	left: 0px;
	right: 0px;
	height: 40px;
    margin-right: 12px;
}
#sm-uebersicht-header-wrapper {
	display: flex;
	flex-direction: row;
    max-width: 1048px;
    margin: auto;
    box-sizing: border-box;
}
.sm-uebersicht-values {
	display: flex;
    flex-direction: row;
	font-size: 13px;
	font-family: 'alto_probold';
	border: solid 1px rgb(220,220,220);
	border-top: none;
    background: rgb(255,255,255);
}
.sm-uebersicht-value select {
	background-color: rgba(255,255,255,0) !important;
    border: none !important;
    padding: 6px !important;
	color: rgb(90,90,90) !important;
}
.sm-uebersicht-value input {
	width: 100% !important;
    border: none !important;
    text-align: center !important;
    background-color: rgba(255,255,255,0) !important;
}

/* PROGRESS */
#sm-progress {
	height: 40px;
	border-top: solid 1px rgb(220,220,220);
	border: none;
}

/* INPUT */
#skillmatrix-content input, #skillmatrix-content textarea, #skillmatrix-content select {
	border-radius: 0px;
	-webkit-border-radius: 0px;
    font-family: 'alto_pronormal';
    font-size: 16px;
    border: solid 1px rgb(204,204,204);
    outline: none;
    resize:none;
    -webkit-appearance: none;
    -moz-appearance: none;
	margin: 0px;
	color: rgb(90,90,90);
}
#skillmatrix-content select::-ms-expand {
  	display:none;
}
#skillmatrix-content input[type='checkbox'],
#skillmatrix-content input[type='radio'] {
  	width:auto;
  	float:left;
  	margin-right: .75em;
  	background:transparent;
  	border:none;
	transition: all 100ms ease;
}
#skillmatrix-content input[type='checkbox']:checked,
#skillmatrix-content input[type='checkbox']:not(:checked),
#skillmatrix-content input[type='radio']:checked,
#skillmatrix-content input[type='radio']:not(:checked) {
  	background: transparent;
 	position: relative;
  	visibility: hidden;
  	margin:0;
  	padding:0;
  	display: none;
}
#skillmatrix-content input[type='checkbox']:checked + label::before,
#skillmatrix-content input[type='checkbox']:not(:checked) + label::before,
#skillmatrix-content input[type='radio']:checked + label::before,
#skillmatrix-content input[type='radio']:not(:checked) + label::before {
    content:' ';
    display:inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 4px;
    border: solid 1px rgb(180,180,180);
    background: rgb(246,246,246);
    margin-right: 8px;
    box-shadow: inset 0 1px 1px 0 rgba(0,0,0,.1);
}
#skillmatrix-content input[type=radio]:checked + label::before,
#skillmatrix-content input[type=radio]:not(:checked) + label::before {
  border-radius: 30px;
}
#skillmatrix-content input[type='checkbox']:hover  + label::before,
#skillmatrix-content input[type='radio']:hover  + label::before {
  background: rgb(220,220,220);
  box-shadow: inset 0 0 0 2px rgb(246,246,246);
}
#skillmatrix-content input[type='checkbox']:checked  + label::before,
#skillmatrix-content input[type='radio']:checked  + label::before {
  background: rgb(96,125,153);
  box-shadow: inset 0 0 0 2px rgb(246,246,246);
}
.sm-input input[type='text'], .sm-input select {
	padding: 12px 12px;
    width: 100%;
    margin: 12px -12px 0px !important;
    border: none !important;
    border-bottom: dotted 1px rgb(220,220,220) !important;
	color: rgb(90,90,90);
}
.sm-input select {
	border: solid 1px rgb(220,220,220) !important;
	box-shadow: 0 2px 1px 0 rgba(30,30,30,0.1);
  	background-color:white;
  	background-image:url(../../images/pfeil_unten.png);
	background-size: 24px 24px;
  	background-position: right;
  	background-repeat: no-repeat;
	transition: all 100ms ease;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.sm-input select:hover {
	box-shadow: 0 2px 1px 0 rgba(30,30,30,0.2);
}
.sm-introduction {
	padding: 24px;
}
.sm-introduction h1 {
	text-transform: uppercase;
	font-size: 32px;
}
.sm-introduction h2 {
	font-size: 24px;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.sm-introduction h3 {
	font-size: 16px;
}
.sm-introduction p, .sm-introduction ol, .sm-introduction ul {
	font-size: 16px;
    line-height: 24px;
}
.sm-introduction ol, .sm-introduction ul {
	padding: 0px;
	margin: 0px 24px 24px;
}
#sm-button-got-it {
    display: inline-flex;
    display: -webkit-inline-flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    font-size: 13px;
    border: solid 1px rgb(96,125,153);
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: rgb(96,125,153);
    fill: rgb(255,255,255);
    color: rgb(255,255,255);
    margin-right: 10px;
    font-family: 'alto_probold';
    transition: all 100ms ease;
}