/*	---------------------------------------------------------------------- */
/*	
	Name: rosnet.ch
	Date: September 2019
	Version: 1.1
	Author: Daniel Baumgartner
	Autor URI: icontel.com
*/
/*	---------------------------------------------------------------------- */

/*	---------------------------------------------------------------------- */
/* 	colors
	
	Primary (Red)			#AC182E
	
	Black					#111111 --- Primary Font,
	Grey					#666666 --- Secondary Font,  
	Grey					#AAAAAA --- Line, 
	Grey					#F5F5F5 --- Goal Background, 
	
*/
/*	---------------------------------------------------------------------- */

/*	---------------------------------------------------------------------- */
/* 	DNN overwrite */
/*	---------------------------------------------------------------------- */

.Normal, .NormalDisabled, .NormalDeleted {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/*	---------------------------------------------------------------------- */
/* 	global */
/*	---------------------------------------------------------------------- */

html, button, input, select, textarea {
    color: #111111;
}
body {
	background: url("../content/images/lines.gif") no-repeat scroll center 3em #FFFFFF;
    font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
    font-weight: 100;
    line-height: 1.40em;
	/*text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}

.wrapper {
	width: 96%;
    max-width: 1024px;
	margin: 0 auto;
	padding: 0 2%;
}
.nowrapper {
    margin: 0;
	padding: 0; 
}

/*	---------------------------------------------------------------------- */
/* 	fonts */
/*	---------------------------------------------------------------------- */

/* Headings */
h1, h2, h3 {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	padding: 0;
	margin: 0 0 1em 0;
}
h1 {
	color: #AC182E;
	font-size: 2em;
    line-height: 1.2em;
}
h2 {
	font-size: 1.2em;
	line-height: 1.3em;
}
h3, h4 {
	font-size: 1em;
	line-height: 1.40em;
	margin: 0;
}
h4 {
	color: #AC182E;
	font-weight: normal;
	margin-bottom: 1.5em;
}
h1.nobreak, h2.nobreak, h3.nobreak, h4.nobreak { margin: 0; }

p, pre { margin: 0 0 1.5em 0;}
p:last-child, pre:last-child { margin: 0;}

/* Anchors */
a, a:visited, a img, a img:visited {
	color: #AC182E;
	cursor: pointer;
	text-decoration: none;
	font-style: normal;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
a.underline { text-decoration: underline; }
a:hover, a:active {
	color: #111111;
}
.wrapper a .fa { margin-right: 0.75em; }

a img { border: none; }
a img:hover, a img:active {
	border: none;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
a:focus {
	-moz-outline-style: none;
	outline: none;
}

.transition {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

hr {
    display: block;
	clear: both;
    height: 1px;
    border: 0;
    border-top: 1px solid #AAAAAA;
    margin: 2em 0;
    padding: 0;
	width: 100%;
}

img {
    vertical-align: middle;
	max-width: 100%;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}
input, textarea { outline:none; }
input[type=text]:focus,
input[type=password]:focus {
  outline: 0 none;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

::-moz-selection {
	background: #F5F5F5;
    color: #AC182E;
}
::selection {
    background: #F5F5F5;
    color: #AC182E;
}
::-webkit-selection {
	background: #F5F5F5;
	color: #AC182E;
}

/*	---------------------------------------------------------------------- */
/* 	layout */
/*	---------------------------------------------------------------------- */

/*	---------------------------------------------------------------------- */
/* 	header */
.header-container {
	height: 160px;
}

.header-content {
	position: relative;
}
/* 	logo */
.logo-container {
	background: #FFFFFF;
	float: left;
	margin: 0;
	height: 150px;
	width: 150px;
	
}
.logo-container img {
	display: none;
	max-width: 70%;
	margin: 2em auto 0 auto; 
}
.logo-container .logoImage {
	background-image: url("../content/logos/rosLow.png");
	background-repeat: no-repeat;
    background-size: 100% auto;
    height: 77px;
    margin: 2em auto 0;
    width: 105px;
}

/* service */
.service-container {
}
.service-container ul {
	margin: 0.5em 0;
	padding: 0;
	list-style: none;
	text-align: right;
}
.service-container ul li {
	display: inline-block;
	padding: 0 0.5em;
}
.service-container ul li a { color: #666666; }
.service-container ul li.active a { font-weight: bold; }
.service-container ul li a:hover { color: #AC182E; }

/* navigation */
.navigation-container {
	text-align: right;
}
.navigation-container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.navigation-container ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.navigation-container ul li a {
	color: #111111;
	display: block;
	font-size: 1.2em;
	font-weight: bold;
	padding: 0.5em 0.75em;
}
.navigation-container ul li:last-child a { padding-right: 0; }
.navigation-container ul li a:hover, .navigation-container ul li.active a { color: #AC182E; }

/* dropdown */
.toggleMenu { display:  none; }
ul.nav {
	list-style: none;
    *zoom: 1;
	margin: 0;
	padding: 0;
}
.nav:before, .nav:after {
	content: " "; 
    display: table; 
}
.nav:after { clear: both; }
.nav ul {
    list-style: none;
    min-width: 14em;
	margin: 0;
	padding: 0;
}
.nav a {
    padding: 0 0 2px 0;
	padding-bottom : 2px\9; /* IE8 and below */  
}
.nav li {
    position: relative;
	margin: 0;
	padding: 0;
}
.nav > li {
    margin: 0;
	padding: 0;
}
.nav > li > a { display: block; }
.nav > li > a:hover { color: #FFFFFF; }
.nav li ul {
    position: absolute;
    left: -9999px;
	text-align: left;
	margin: 0;
	padding: 0;
}
.nav li ul li { margin: 0; display: block; }
.nav > li.hover > ul { left: 0; }
.nav li li.hover ul {
    left: 100%;
    top: 0;
}
.nav li li a {
	color: #AC182E;
    display: block;
    background: rgba(255,255,255,0.9);
	font-size: 0.95em;
	font-weight: normal;
    position: relative;
	padding: 1em 1em;
    z-index: 100;
    border-bottom: 1px solid #CCCCCC;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 5px 10px 0px rgba(0,0,0,0.1);
	box-shadow:         0px 5px 10px 0px rgba(0,0,0,0.1);
}
.nav li li:last-child a { border: none; }
.nav li li a:hover {
	background: #AC182E;
	color: #FFFFFF !important;
}

/* mmenu */
.mobile-container { display: none; }
.mm-list > li.special { background: #84ACF5; }

/*	---------------------------------------------------------------------- */
/* 	columns */
.column_1_2, .column_2_2, .column_1_1_3, .column_2_1_3, .column_3_1_3, .column_1_2_3, .column_2_2_3, .column_full { display: block; }
.column_1_2, .column_1_1_3, .column_2_1_3, .column_1_2_3 { float: left; }
.column_2_2, .column_3_1_3, .column_2_2_3 { float: right; }
.column_full { width: 100%; }
.column_1_2_3, .column_2_2_3 { width: 66%; }
.column_1_2, .column_2_2 { width: 49%; }
.column_1_1_3, .column_2_1_3, .column_3_1_3 { width: 32%; }
.column_1_1_3, .column_1_2_3 { margin-right: 2%; }

.column_2_2_3 .column_full {
	clear: both;
    padding-top: 2em;
    width: 100%;
}
.column_full.prozessVerlauf {
	margin-top: 2em;
}

/*	---------------------------------------------------------------------- */
/* content */
.rosVerlauf, .wizard-container {
	margin-bottom: 1.5em; 
}
.goals-container {
	background: #F5F5F5;
	padding: 1em;
	margin-bottom: 1.5em;
}
.goals-container ul.fa-ul { margin-bottom: 0; }
ul.fa-ul { margin: 0 0 1.5em 1.5em; }
ul.fa-ul li { margin: 0.5em 0; }
ul.fa-ul li .fa { color: #AC182E; }
.cases-title {
	background: #AC182E;
	border-radius: 20px;
	color: #FFFFFF;
	display: inline-block;
	padding: 0.1em 1em;
	margin: 0 0 1em 0;
}
.cases-title.inline {
	margin: 0.3em 1em 0.3em 0;
}

.track-progress {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.track-progress[data-steps="4"] li { width: 25%; }
.track-progress li {
	list-style-type: none;
	display: inline-block;
	position: relative;
  	margin: 0;
  	padding: 0;
	text-align: center;
  	line-height: 50px;
  	height: 50px;
	background-color: #CCCCCC;
}
.track-progress li > span {
	display: block;
	color: #FFFFFF;
	font-weight: bold;
}
.track-progress li.active > span {
	color: #FFFFFF;
	background-color: #AC182E;
}
.track-progress li > span:after, .track-progress li > span:before {
	content: "";
	display: block;
	width: 0px;
	height: 0px;
	position: absolute;
	top: 0;
	left: 0;
	border: solid transparent;
	border-left-color: #CCCCCC;
	border-width: 25px;
}
.track-progress li > span:after {
	top: -5px;
	z-index: 1;
	border-left-color: white;
	border-width: 30px;
}
.track-progress li > span:before {
	z-index: 2;
}
.track-progress li.active + li > span:before {
	border-left-color: #AC182E;
}
.track-progress li:first-child > span:after, .track-progress li:first-child > span:before {
	display: none;
}
.track-progress li:first-child i, .track-progress li:last-child i {
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
	border: solid transparent;
	border-left-color: white;
	border-width: 25px;
}
.track-progress li:last-child i {
	left: auto;
	right: -25px;
	border-left-color: transparent;
	border-top-color: white;
	border-bottom-color: white;
}

/* 	wizard */
ul.wizardSteps {
	margin: 2em 0;
	padding: 0;
	position: relative;
	list-style: none;
}
ul.wizardSteps:before {
	background: url("../content/images/wizardBgFirstchild.png") no-repeat scroll left center / auto 50px rgba(0, 0, 0, 0);
    content: "";
    height: 50px;
    left: 0;
    position: absolute;
    width: 50px;
    z-index: 1;
}
.wizardSteps li {
    background: url("../content/images/wizardBg.png") no-repeat scroll right center / auto 50px #CCCCCC;
    float: left;
    height: 50px;
    line-height: 50px;
    list-style: none;
    text-align: center;
    width: 25%;
}
.wizardSteps li.current {
	background-image: url("../content/images/wizardBgCurrent.png");
	background-color: #AC182E;
}
.wizardSteps li.previous {
	background-image: url("../content/images/wizardBgPrevious.png");
}
.wizardSteps li.lastchild {
	background-image: url("../content/images/wizardBgLastchild.png");
}
.wizardSteps li.current.lastchild {
	background-image: url("../content/images/wizardBgCurrentLastchild.png");
}
.wizardSteps li a {
	color: #FFFFFF;
	display: block;
    margin: 0 auto;
    width: 90%;
}
.wizardSteps li a:hover {
	color: #000000;
}
.wizardSteps li.current {
	color: #FFFFFF;
	font-weight: bold;
}

/* special elements */
.roundIcon {
	display: block;
    float: left;
    margin: 0 5% 1em 0;
    width: 22%;
}
.content-risikosprechstunde {
	background: #D48B96;
	color: #FFFFFF;
	padding: 1em;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
}
.content-risikosprechstunde h3, .content-risikosprechstunde h4 { color: #FFF; }
.risikosprechstunde-icon {
	display: block;
	float: left;
	width: 11%;
}
.risikosprechstunde-text {
	display: block;
	float: right;
	width: 85%;
}

/*	---------------------------------------------------------------------- */
/* movie container embed */
.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	margin-top: 1em;
}
.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*	--------------------------------------------------------------------- */
/* 	sitemap */
table.SiteMap { width: 100%; }
table.SiteMap img { display: none !important; }
table.SiteMap tbody tr td { min-width: 30px; }
table.SiteMap tbody tr td .RootNode a, table.SiteMap tbody tr td .ParentNode a, table.SiteMap tbody tr td .LeafNode a { display: block; }
table.SiteMap tbody tr td .RootNode a {
	margin-top: 1em;
    text-transform: uppercase;
}
table.SiteMap a:before {
   font-family: FontAwesome;
   content: "\f105";
   display: inline-block;
   padding-right: 10px;
}
table.SiteMap a { text-decoration: none; margin-left: -30px; }
table.SiteMap a:hover { background: none; margin-left: -25px; color: #111111; }

/*	---------------------------------------------------------------------- */
/* 	accordion */
.ict-accordion-container .accordion-toggle {
	border-top: 1px solid #AAAAAA;
    color: #AC182E;
    cursor: pointer;
    font-weight: normal;
    height: 3em;
	line-height: 3em;
	outline: none;
	position: relative;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.ict-accordion-container .accordion-toggle:hover {
	background: #AC182E;
    color: #FFFFFF;
}
.ict-accordion-container .accordion-toggle .fa, .ict-accordion-container .accordion-toggle .title {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
.ict-accordion-container .accordion-toggle .title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ict-accordion-container .accordion-toggle:hover .fa, .ict-accordion-container .accordion-toggle:hover .title {
	color: #FFFFFF;
}
.ict-accordion-container .accordion-toggle.show {
	background: #FFFFFF;
	color: #AC182E;
	font-weight: bold;
}
.ict-accordion-container .accordion-toggle.show .fa, .ict-accordion-container .accordion-toggle.show .title {
	color: #AC182E;
}
.ict-accordion-container .accordion-toggle:first-of-type {
	border-top: none;
}
.ict-accordion-container .accordion-toggle .fa {
	display: block;
    float: left;
	line-height: 3em;
	margin: 0;
	text-align: center;
	width: 3em;
}
.ict-accordion-container .accordion-toggle.show .fa {
	transform: rotate(90deg);
}
.ict-accordion-container .accordion-content {
	padding: 1em 0 2em 3em;
}

/*	--------------------------------------------------------------------- */
/* 	course module */
.course-detail-container, .course-repeater-container {
	margin: 0 -2%;
}
.course-detail-container .course-detail, .course-repeater-container .course-infos-primary, .course-repeater-container .course-infos-secondary, .course-repeater-container .course-infos-btns {
	display: block;
	float: left;
	margin: 0 2%;
}
.course-detail-container .course-detail, .course-repeater-container .course-infos-primary {
	width: 46%;
}
.course-repeater-container .course-infos-secondary {
	width: 28%;
}
.course-repeater-container .course-infos-btns {
	width: 14%;
}
.course-detail-container .course-detail:nth-child(1), .course-detail-container .course-detail:nth-child(2) {
	margin-bottom: 1.5em;
}
.course-detail-container .course-detail:nth-child(3) {
	clear: both;
}
.course-detail-container .course-detail h1, .course-repeater-container h1 {
	font-size: 1em;
	margin: 0;
}
.course-repeater-container .course-infos-primary h1:nth-of-type(2), .course-repeater-container .course-infos-secondary h1:nth-of-type(2) {
	margin-top: 1.5em;
}
.course-detail-container .course-detail p, .course-detail-container .course-detail ul, .course-detail-container .course-detail ol,
.course-infos-primary .course-instructor p, .course-infos-primary .course-instructor ul, .course-infos-primary .course-instructor ol {
	margin: 0;
}
.course-detail-container .course-detail ul, .course-detail-container .course-detail ol,
.course-infos-primary .course-instructor ul, .course-infos-primary .course-instructor ol {
	padding-left: 1.5em;
}
.course-detail-container .course-detail ul, .course-infos-primary .course-instructor ul {
	list-style: disc;
}
.course-repeater-container .course-infos-btns a.course-infos-btn, .course-detail-edit-container a.course-infos-btn {
	background: #AC182E;
	color: #FFFFFF;
	display: block;
	font-weight: bold;
	padding: 0.5em;
	text-align: center;
	-webkit-border-radius: 5em;
    -moz-border-radius: 5em;
    -ms-border-radius: 5em;
    -o-border-radius: 5em;
    border-radius: 5em;
}
.course-repeater-container .course-infos-btns a.course-infos-btn:hover, .course-detail-edit-container a.course-infos-btn:hover {
	background: #666666;
}
.course-repeater-container .course-infos-btns a.course-infos-btn .fa {
	margin-right: 0.25em;
}
.course-repeater-container .course-infos-btns .course-guarantee {
	margin-top: 1.5em;
	position: relative;
}
.course-repeater-container .course-infos-btns .course-guarantee:before {
	color: #6ED7A5;
	content:"\f14a";
	display: block;
	float: left;
	font-family: FontAwesome;
	font-size: 1.5em;
	height: 1em;
	padding: 0 0.1em 0 0;
	width: 1em;
}
hr.course-seperator {
	border-style: dotted;
	margin: 1.5em 0;
}

.course-parent .bstrap3-material .row {
	margin: 0;
}
.course-parent .bstrap3-material .row .col-sm-12 {
	float: none;
	margin: 0 auto 0 0;
	padding: 0;
	width: 75%;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group {
	margin: 1em 0;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .label-right {
	padding: 0;
	text-align: left;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .label-right label.control-label, .form-group-kursort-label p {
	color: #111111;
	font-weight: normal !important;
	padding-top: 12px;
}
.form-group-kursort-label p {
	margin: 0 !important;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container {
	margin: 0;
	padding: 0;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container input,
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container textarea,
.course-parent .form-group-editable p {
	background: #F5F5F5;
	border: 1px solid #AAAAAA;
	color: #111111;
	font-size: 1em;
	height: auto;
	padding: 0.5em;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container input:hover, .course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container input:focus,
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container textarea:hover, .course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container textarea:focus {
	border-color: #AC182E;
	background: #FFFFFF;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container input:read-only {
	background: #FFFFFF !important;
	border-color: #AAAAAA;
	color: #111111;
}
.course-parent .form-group-editable p {
	background: #FFFFFF !important;
	border-color: #AAAAAA;
	color: #111111;
	display: block;
	line-height: 1.8em;
	margin: 0;
}
.course-parent .form-group-editable p p {
	border: none;
	padding: 0;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container input:-moz-read-only {
	background: #FFFFFF;
	border-color: #AAAAAA;
	color: #111111;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container.has-error input, .course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container.has-error textarea {
	background: #AC182E;
	border-color: #AC182E;
	color: #FFFFFF;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container.has-error .text-danger {
	color: #AC182E;
	font-weight: bold;
	font-size: 0.8em;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .field-container.btn-form {
	width: 100%;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group button.btn {
	background: #AC182E;
	color: #FFFFFF;
	display: block;
	font-size: 1em;
	font-weight: bold;
	margin: 1em 0 0 auto;
    padding: 0.25em 2em;
	text-align: center;
	text-transform: none;
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 5em;
    -moz-border-radius: 5em;
    -ms-border-radius: 5em;
    -o-border-radius: 5em;
    border-radius: 5em;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group button.btn:hover {
	background: #666666;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group:nth-child(2) {
	display: none;
}
 
.course-detail-edit-container {
	clear: both;
	margin: 0 2%;
	padding-top: 1.5em; 
	text-align: right;
}
.course-detail-edit-container.course-infos-btns {
	clear: none;
	padding: 0;
}
.course-detail-edit-container a.course-infos-btn {
	display: inline-block;
	padding-left: 2em;
	padding-right: 2em;
}
.course-detail-edit-container.course-infos-btns a.course-infos-btn, .course-detail-edit-container a.course-infos-btn {
	background: #AAAAAA;
}
.course-detail-edit-container.course-infos-btns a.course-infos-btn {
	margin-bottom: 0.5em;
}

/*	--------------------------------------------------------------------- */
/* 	footer */
.footer-container {
	margin: 2em auto;
}
.footer-content {
	border-top: 1px solid #AAAAAA;
	padding: 0.75em 0;
	text-align: center;
}
.footer-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-content ul li {
	display: inline-block;
}
.footer-content ul li::after {
    content: "|";
	padding: 0 1em;
}
.footer-content ul li:last-child::after {
    content: "";
	padding: 0;
} 
.footer-content ul li a { color: #111111; }
.footer-content ul li a:hover { color: #AC182E; }
.footer-content .copyright-container {
	color: #666666;
	margin-top: 0.25em;
}

/*	---------------------------------------------------------------------- */
/* 	responsive styles */
/*	---------------------------------------------------------------------- */

@media only screen and (max-width: 1024px) {
/* global */
body {
	font-size: 14px;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* header */
.logo-container {
    height: 140px;
    width: 140px;
}
.logo-container .logoImage {
    width: 100px;
}

/* mmenu */
.navigation-container { display: none; }
.mobile-container {
	display: block;
    font-size: 1.5em;
    text-align: right;
}
.mobile-container a.mobilemenubutton {
	display: block;
    padding: 0.2em 0.3em;
}
.wrapper .mobile-container a .fa { margin-right: 0; }
.mm-menu {
    background: #CCCCCC;
    color: #111111;
}
html.mm-opened .mm-page { box-shadow: 0 0 50px rgba(0, 0, 0, 0.1); }
.mm-menu > .mm-list { padding: 0; }
.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults):after {
	margin-left: 0;
	border-color: #FFFFFF;
}
.mm-list > li > a, .mm-list > li > span {
    line-height: inherit;
    margin: 0;
    padding: 1em;
}
.mm-list > li > a:hover, .mm-list > li > span:hover {
    background: #AC182E;
	color: #FFFFFF;
}
.mm-list a.mm-subopen + a, .mm-list a.mm-subopen + span {
    margin-right: 3.5em;
    padding-right: 1em;
}
.mm-menu .mm-list > li > a.mm-subopen:before {
    border-color: #FFFFFF;
}
.mm-list a.mm-subopen {
	width: 3.5em;
	height: 3.4em;
}
.mm-list a.mm-subopen:after, .mm-list a.mm-subclose:before {
    height: 10px;
    width: 10px;
}
.mm-menu .mm-list > li > a.mm-subopen:after, .mm-menu .mm-list > li > a.mm-subclose:before { border-color: #111111; }
.mm-menu .mm-list > li > a.mm-subopen:hover:after, .mm-menu .mm-list > li > a.mm-subclose:hover:before { border-color: #FFFFFF; }
.mm-list a.mm-subopen:after { right: 1.5em; }
.mm-menu .mm-list > li > a.mm-subclose {
    background: #AC182E;
	border-bottom: 1px solid #FFFFFF;
    color: #FFFFFF;
}
.mm-list a.mm-subclose {
    margin-top: 0;
    padding-top: 1em;
    text-indent: 2em;
}
.mm-list a.mm-subclose:before {
    left: 1.5em;
    margin-bottom: -0.3em;
}
.mm-menu .mm-list > li > a.mm-subclose:before { border-color: #FFFFFF; }

/* content */
.column_2_2_3 .column_full { padding-top: 1em; }

}

@media only screen and (max-width: 768px) {
/* global */
h1 {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
    hyphens: auto;
}

/* header */
.logo-container {
    height: 130px;
    width: 130px;
}
.logo-container .logoImage {
    height: 70px;
    width: 90px;
}

/* content */
.roundIcon { margin-bottom: 3.5em; }

/* 	course module */
.course-detail-container, .course-repeater-container {
	margin: 0;
}
.course-detail-container .course-detail,
.course-repeater-container .course-infos-primary,
.course-repeater-container .course-infos-secondary,
.course-repeater-container .course-infos-btns {
	float: none;
	margin: 0;
	width: 100%;
}
.course-detail-container .course-detail {
	margin-bottom: 0.75em !important;
}
.course-detail-container .course-detail:nth-child(4) {
	margin-bottom: 0 !important;
}
hr.course-seperator {
    margin: 0.75em 0;
}
.course-repeater-container .course-infos-primary h1:nth-of-type(2),
.course-repeater-container .course-infos-secondary h1:nth-of-type(2),
.course-repeater-container .course-infos-btns .course-guarantee,
.course-repeater-container .course-infos-secondary,
.course-repeater-container .course-infos-btns {
    margin-top: 0.75em;
}
.course-parent .bstrap3-material .row .col-sm-12 {
	width: 100%;
}


}

@media only screen and (max-width: 575px) {
/* global */
body {
    background-position: center 2em;
    background-size: 350% auto;
}
.wrapper {
	width: 92%;
    padding-left: 4%;
	padding-right: 4%;
}
.footer-container { margin: 1em auto; }
.footer-content ul li:after { padding: 0 0.5em; }
hr { margin: 1em 0; }

/* header */
.header-container { height: 150px; }
.logo-container {
    height: 120px;
    width: 120px;
}
.logo-container img { margin-top: 1.5em; }
.logo-container .logoImage {
    height: 65px;
    margin-top: 1.5em;
    width: 85px;
}
.mobile-container a.mobilemenubutton { padding: 0 0.3em; }

/* content */
.roundIcon { margin-bottom: 1em; }
.content-risikosprechstunde {
	border-radius: 45px;
    padding: 0.75em;
}
.risikosprechstunde-icon { width: 22%; }
.risikosprechstunde-text { width: 73%; }

/* 	columns */
.column_1_2, .column_2_2, .column_1_1_3, .column_2_1_3, .column_3_1_3, .column_1_2_3, .column_2_2_3 {
	float: none;
	width: 100%;
	margin: 0 0 1em 0;
}
/* wizard */
.wizardSteps li {
	font-size: 0.9em;
    height: 40px;
    line-height: 40px;
}
ul.wizardSteps:before {
    background-size: auto 50px;
    height: 40px;
    width: 40px;
}
/* accordion */
.liveaccdefault .ui-accordion .ui-accordion-content { padding: 0.5em 0 1em 0 !important; }
.ict-accordion-container .accordion-toggle .fa {
	width: 2em;
}
.ict-accordion-container .accordion-content {
	padding: 0.5em 0 1em 0;
}

.course-parent .bstrap3-material .row .col-sm-12 .form-group {
	margin: 0.75em 0;
}
.course-parent .bstrap3-material .row .col-sm-12 .form-group .label-right label.control-label, .form-group-kursort-label p {
	margin-bottom: 0.2em !important;
	padding: 0;
}

}

@media only screen and (max-width: 350px) {
body {
    background-position: center 3em;
    background-size: 400% auto;
}
.header-container {
    height: 125px;
}
}

/*	---------------------------------------------------------------------- */
/* retina display graphics */
/*	---------------------------------------------------------------------- */

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 	),
only screen and (                min-resolution: 2dppx) {

.logo-container .logoImage {
	background-image: url("../content/logos/rosHigh.png");
}

}

/*	---------------------------------------------------------------------- */
/* 	helper classes */
/*	---------------------------------------------------------------------- */

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }