@charset "UTF-8";

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.text-right {
    text-align: right;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Grid
 * @author: Yannick Herzog
 * @last_modify: 2015-10-29
 **/

/**
 * Variables
 **/

/**
 * ====== Container ======
 **/
.container {
    max-width: 994px;
    margin: 0 auto;
}

@media screen and (min-width:1170px) {
    .container {
        max-width: 1140px;
    }

}

.content-container {
    display: block;
    width: 80.4385964912%;
    overflow: hidden;
}

@media screen and (max-width:993px) {
    .content-container {
        width: 100%;
    }

}

.row:before,
.container:before,
.content-container:before {
    clear: both;
}

.row:after,
.container:after,
.content-container:after {
    content: " ";
    clear: both;
    display: table;
}

.col-lg-1,
.col-lg-1-2,
.col-lg-2,
.col-lg-3 {
    float: left;
    min-height: 1px;
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
}

/**
 * ====== Standard Grid (25%, 33%, 50%, 66%, 75%, 100%) ======
 **/
.col-1-4,
.col-1-3,
.col-1-2,
.col-2-3,
.col-3-4 {
    float: left;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
}

.col-1-4 {
    width: 25%;
}

.col-1-3 {
    width: 33.3333333333%;
}

.col-1-2 {
    width: 50%;
}

.col-2-3 {
    width: 66.6666666667%;
}

.col-3-4 {
    width: 75%;
}

.col-1-1 {
    width: 100%;
}

/**
 * ====== Large Devices ======
 **/
.col-lg-1 {
    width: 33.3333333333%;
}

.col-lg-2 {
    width: 66.6666666667%;
}

.col-lg-2 .col-lg-1 {
    width: 50%;
}

.col-lg-3 {
    width: 100%;
}

.col-lg-3 .col-lg-1 {
    width: 33.3333333333%;
}

.col-lg-3 .col-lg-2 {
    width: 66.6666666667%;
}

.col-lg-1-2 {
    width: 50%;
}

@media screen and (max-width:449px) {
    .col-lg-1:not(:first-child),
    .col-lg-1-2:not(:first-child),
    .col-lg-2:not(:first-child),
    .col-lg-3:not(:first-child) {
        margin-top: 50px;
    }

}

/**
 * ====== Small Devices ======
 **/
@media screen and (min-width:450px) and (max-width:649px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3 {
        float: left;
        min-height: 1px;
        position: relative;
        padding-right: 20px;
        padding-left: 20px;
    }

    .col-sm-1 {
        width: 25%;
    }

    .col-sm-2 {
        width: 50%;
    }

    .col-sm-3 {
        width: 100%;
    }

    .col-sm-parent {
        padding-left: 0;
        padding-right: 0;
    }

    .col-lg-1-2 {
        clear: both;
        float: none;
        width: 100%;
    }

    .col-lg-1-2:not(:first-child) {
        margin-top: 50px;
    }

}

/**
 * ====== Extra small Devices ======
 **/
@media screen and (max-width:449px) {
    .col-lg-1,
    .col-lg-1-2,
    .col-lg-2,
    .col-lg-3,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3 {
        clear: both;
        float: none;
        width: 100%;
    }

    .col-lg-2 .col-lg-1 {
        width: 100%;
    }

    .col-lg-3 .col-lg-1,
    .col-lg-3 .col-lg-2 {
        width: 100%;
    }

}

/**
 * ====== Push ======
 **/
@media screen and (min-width:994px) {
    .col-lg-push-1 {
        left: 33.3333333333%;
    }

    .col-lg-push-2 {
        left: 66.6666666667%;
    }

    .col-lg-push-3 {
        left: 100%;
    }

}

@media screen and (max-width:993px) {
    .col-sm-push-1 {
        left: 33.3333333333%;
    }

    .col-sm-push-2 {
        left: 66.6666666667%;
    }

    .col-sm-push-3 {
        left: 100%;
    }

}

@media screen and (max-width:449px) {
    .col-sm-push-1,
    .col-sm-push-2,
    .col-sm-push-3 {
        left: 0;
    }

}

/**
 * ====== Pull ======
 **/
@media screen and (min-width:994px) {
    .col-lg-pull-1 {
        right: 33.3333333333%;
    }

    .col-lg-pull-2 {
        right: 66.6666666667%;
    }

    .col-lg-pull-3 {
        right: 100%;
    }

}

@media screen and (max-width:993px) {
    .col-sm-pull-1 {
        right: 33.3333333333%;
    }

    .col-sm-pull-2 {
        right: 66.6666666667%;
    }

    .col-sm-pull-3 {
        right: 100%;
    }

}

@media screen and (max-width:449px) {
    .col-sm-pull-1,
    .col-sm-pull-2,
    .col-sm-pull-3 {
        right: 0;
    }

}

.row {
    margin-right: -20px;
    margin-left: -20px;
}

/**
 * ====== Visibility ======
 **/
@media screen and (max-width:993px) {
    .visible-on-mobile {
        display: block;
    }

    .hide-on-mobile {
        display: none !important;
    }

}

@media screen and (min-width:994px) {
    .visible-on-desktop {
        display: block;
    }

    .hide-on-desktop {
        display: none !important;
    }

}

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */

/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */

/* Base
   ========================================================================== */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
    font-family: sans-serif;  /* 1 */
    -ms-text-size-adjust: 100%;  /* 2 */
    -webkit-text-size-adjust: 100%;  /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;  /* 1 */
    vertical-align: baseline;  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;  /* 1 */
    font: inherit;  /* 2 */
    margin: 0;  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;  /* 2 */
    cursor: pointer;  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;  /* 1 */
    padding: 0;  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
    -webkit-appearance: textfield;  /* 1 */
    box-sizing: content-box;  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
    border: 0;  /* 1 */
    padding: 0;  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
}

body {
    font-size: 1em;
    line-height: 145%;
    color: #5a5555;
    background: #fff;
}

a {
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
}

a:link {

    /* color: $hso-medium-blue; */
    color: #003f61;
}

a:hover {
    color: #aaaaaa;
}

a:visited {
    color: #33538b;
}

a.inaktiv {
    color: #aaa !important;
}

a img {
    border: none;
}

p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    line-height: 1.4em;
    margin: 13px 0;
}

p:first-child {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    font-size: 1.0em;
    margin: 0;
    padding: 0;
    color: #003f61;
}

h1 {
    font-size: 1.4em;
    margin: 1.3em 0 .6em 0;
    font-weight: bold;
}

h2 {
    font-size: 1.2em;
    margin: 1.3em 0 .6em 0;
}

h3 {
    margin: 1em 0 .6em 0;
}

h4 {
    font-size: 1em;
    font-weight: normal;
    font-style: italic;
    margin: .5em 0 .3em 0;
}

h5 {
    font-size: 1em;
    font-weight: normal;
    margin: .5em 0 .3em 0;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #5a5555;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

.form-control:focus {
    box-shadow: 0 0 3px 1px rgba(0, 63, 97, 0.2);
}

.input-group {
    position: relative;
}

.input-search {
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 5px 44px 5px 5px;
}

.input-search-full-width {
    width: 100%;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Tables
 * @author: Yannick Herzog, Christian Obermann
 * @last_modify: 2016-09-13
 **/

/*table {
  background-color: transparent;
  border-spacing: 0px;
  border-collapse: collapse;
}
*/
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}

table {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border-spacing: 0px;
    border-collapse: collapse;
    border: 1px solid #cccccc;  /*
       * Condensed
       */

    /*
     * Striped
     
    &.table-striped {
      tbody {
        tr:nth-child(odd) {
          background: $lighter-gray;
        }
      }
    }
    */

    /*
     * Hover
     */

    /*
     * Bordered
     
    &.table-bordered {
      border: 1px solid $gray;
      tr {
        td {
          border: 1px solid $gray;
        }
      }
    }
    */
}

table thead tr:first-child td {
    border-top: none;
    border-bottom: 2px solid #cccccc;
    font-size: 14px;
    font-weight: 700;
    vertical-align: bottom;
}

table tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

table tr td {
    border: 1px solid #cccccc;
    font-family: "Open Sans", sans-serif;
    padding: 8px;
}

table.table-condensed tr td {
    padding: 4px;
}

table.table-hover tbody tr:hover {
    background: #eaeaea;
}

table.table-bordered--top-bottom tr td {
    border-top: 1px solid #cccccc;
}

table.eventcell,
table.first-table {
    border: none;
    background: transparent;
    padding: 2px;
}

table.eventcell tr td {
    border: none;
    padding: 2px;
}

table.eventcell tbody tr {
    background: transparent;
}

.table__hightlight--left tr td:first-child {
    font-weight: 700;
    padding-right: 20px;
    vertical-align: top;
}

#pagewrapper {
    margin-bottom: 8px;
}

@media screen and (max-width:993px) {
    #pagewrapper {
        border: none;
    }

}

#header {
    margin: 0;
    padding: 0;
}

@media screen and (min-width:994px) {
    #header {
        height: 57px;
        position: relative;
    }

}

@media screen and (max-width:993px) {
    #header {
        background: #ffffff;
        border-bottom: 5px solid #003f61;
        padding: 0;
        min-height: 4.5em;
        height: auto;
    }

    .unveiled-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

}

.nav__targetgroup-wrapper {
    margin-top: 54px;
    padding: 0 15px;
    width: 100%;
}

#divider {
    margin: 0;
    padding: 0;
    border-top: 2px solid #e6e6e6;
    line-height: 0;
}

#divider img {
    border-bottom: 2px solid #e6e6e6;
    max-width: 100%;
}

@media screen and (min-width:1170px) {
    #divider img {
        min-width: 100%;
    }

}

#main {
    margin-top: 4px;
    overflow: hidden;
}

#leftcol {
    float: left;
    margin: 0 0 30px 0;
    padding: 0 40px 10px 0px;
    padding-top: 2px;
    width: 19.5614035088%;
    padding-right: 38px;
}

#content {
    margin: 0;
    padding: 40px 0px 30px 0;
}

#content .side_item img {
    margin: .3em 0 0 0;
}

@media screen and (max-width:767px) {
    #leftcol {
        display: none;
    }

}

@media screen and (max-width:993px) {
    #content {
        width: 100%;
        padding: 0 15px;
    }

    #leftcol {
        display: none;
    }

}

#seitentitel {
    margin: 0 0 30px;
    font-size: 1.6em;
    font-weight: bold;
    line-height: 100%;
    font-family: 'Open Sans', sans-serif;
}

@media screen and (max-width:993px) {
    #seitentitel {
        margin-top: 30px;
    }

}

#footer,
#auszeichnungen {
    margin: auto;
    margin-top: 1rem;
    padding: 1px 19px 12px;
    text-align: left;
    background-color: #eee;
}

#footer {
    margin-top: 0;
    margin-bottom: 20px;
}

#auszeichnungen {
    float: left;
    padding: 0;
    background-color: white;
    vertical-align: middle;
    text-align: center;
    margin: auto;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.btn {
    background: none;
    border: none;
    display: inline-block;
    outline: none;
}

button.btn-default,
button.btn-search,
input[type="submit"].btn-default,
input[type="submit"].btn-search,
input[type="button"].btn-default,
input[type="button"].btn-search,
input[type="reset"].btn-default,
input[type="reset"].btn-search,
.btn.btn-default,
.btn.btn-search {
    background: #003f61;
    color: #ffffff;
    padding: 8px 14px;
    transition: background .3s ease-in-out;
}

button.btn-default:hover,
button.btn-search:hover,
input[type="submit"].btn-default:hover,
input[type="submit"].btn-search:hover,
input[type="button"].btn-default:hover,
input[type="button"].btn-search:hover,
input[type="reset"].btn-default:hover,
input[type="reset"].btn-search:hover,
.btn.btn-default:hover,
.btn.btn-search:hover {
    background: #006094;
}

button.btn-secondary,
input[type="submit"].btn-secondary,
input[type="button"].btn-secondary,
input[type="reset"].btn-secondary,
.btn.btn-secondary {
    background: #aaaaaa;
    color: #ffffff;
    padding: 12px 20px;
    transition: background .3s ease-in-out;
}

button.btn-secondary:hover,
input[type="submit"].btn-secondary:hover,
input[type="button"].btn-secondary:hover,
input[type="reset"].btn-secondary:hover,
.btn.btn-secondary:hover {
    background: #006094;
}

button.btn-lg,
input[type="submit"].btn-lg,
input[type="button"].btn-lg,
input[type="reset"].btn-lg,
.btn.btn-lg {
    padding: 12px 18px;
    font-size: 16px;
    line-height: 1.4em;
}

button.btn-rounded,
input[type="submit"].btn-rounded,
input[type="button"].btn-rounded,
input[type="reset"].btn-rounded,
.btn.btn-rounded {
    border-radius: 2px;
}

input[type="submit"] {
    background: #003f61;
    color: #ffffff;
    padding: 8px 14px;
    transition: background .3s ease-in-out;
}

input[type="submit"]:hover {
    background: #006094;
}

input[type="submit"] {
  background: #003f61;
  color: #ffffff;
  padding: 8px 14px;
  transition: background .3s ease-in-out; }
  input[type="submit"]:hover {
    background: #006094; }

.btn-search {
    position: absolute;
    right: 0;
    top: 0;
}

.btn-search .fa,
.btn-search .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .btn-search [class*='owl-']:after,
.btn-search .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .btn-search .owl-prev:after,
.btn-search .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .btn-search .owl-next:after,
.btn-search .list__item--link:before {
    font-size: 14px;
}

.btn-open-offcanvas {
    color: #333333;
}

.big-stroke {
    background: #003f61;
    height: 5px;
    margin-top: -2px;
    padding: 0 19px;
    width: 100%;
}

.big-stroke.big-stroke-bw {
    background: #007de1;
}

.big-stroke.big-stroke-ei {
    background: #cd0000;
}

.big-stroke.big-stroke-mi {
    background: #ff6400;
}

.big-stroke.big-stroke-mv {
    background: #00732d;
}

@media screen and (max-width:993px) {
    .big-stroke {
        height: 5px;
        padding: 0;
        margin: 0;
        position: relative;
        bottom: 0;
        left: 0;
    }

}

#logo img {
    max-width: 100%;
}

.logo__hs {
    display: block;
}

.logo__hs .logo__hs--font {
    display: block;
    line-height: 14px;
}

.logo__hs .logo__hs--font-first {
    font-weight: 700;
}

@media screen and (min-width:994px) {
    #logo {
        float: right;
        height: 60px;
        position: absolute;
        width: 248px;
        right: 0px;
        padding: 9px 17px 9px 9px;
        background-color: white;
        margin-top: -40px;
    }

    #logo a {
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .unveiled-navigation {
        top: 0 !important;
    }

}

@media screen and (min-width:1170px) {
    #logo {
        width: 290px;
        right: 0px;
        padding: 5px 17px 9px 5px;
    }

}

@media screen and (max-width:993px) {
    .logo__hs {
        padding-top: 10px;
        text-align: center;
    }

    .logo__hs--font,
    .logo__hs--font:active,
    .logo__hs--font:visited {
        color: #0f4c64;
    }

    #header {
        padding-right: 0px;
        overflow: hidden;
    }

    #header .btn.is-open {
        color: #003f61;
    }

    #header .btn .fa,
    #header .btn .owl-theme--hs .owl-nav [class*='owl-']:after,
    .owl-theme--hs .owl-nav #header .btn [class*='owl-']:after,
    #header .btn .owl-theme--hs-slider .owl-prev:after,
    .owl-theme--hs-slider #header .btn .owl-prev:after,
    #header .btn .owl-theme--hs-slider .owl-next:after,
    .owl-theme--hs-slider #header .btn .owl-next:after,
    #header .btn .list__item--link:before {
        font-size: 1.5em;
    }

    #header .btn .icon-label {
        font-size: 1.1em;
        margin-left: 0.2em;
    }

    .header-area {
        float: left;
    }

    .header-area-left {
        padding: 1.2em 0 0 1.3em;
    }

    .header-area-center {
        padding: 0 10px;
        width: 50%;
    }

    .header-area-right {
        padding: 1.2em 1.3em 0 0;
        text-align: right;
    }

    .header-area-left,
    .header-area-right {
        width: 25%;
    }

}

@media screen and (max-width:307px) {
    .logo__hs {
        padding-top: 9px;
    }

    .header-area .icon-label {
        display: none;
    }

}

@media screen and (max-width:309px) {
    .logo__hs--font-second {
        display: none !important;
    }

}

/**
 * ====== Target Group ======
 **/
.zielgruppen_navi ul li {
    list-style: none;
}

.zielgruppen_navi ul li a {
    text-decoration: none;
}

.zielgruppen_navi .cur,
.zielgruppen_navi a:hover {
    color: #003f61;
    font-weight: bold;
    font-size: 1.0em;
    text-decoration: none;
}

.zielgruppen_navi a {
    color: #5a5555 !important;
}

@media screen and (min-width:994px) {
    .zielgruppen_navi {
        padding: 35px 20px 0 0;
        margin: 0 0 6px;
    }

    .zielgruppen_navi li {
        display: inline;
        padding: 0 20px;
        border-left: 1px solid #5a5555;
        background: none;
    }

    .zielgruppen_navi li:first-child {
        border-left: none;
        padding: 0 20px 0 0;
    }

    .zielgruppen_navi li a {
        display: inline;
        margin: 0;
        padding: 0;
        font-weight: bold;
        font-size: 1.0em;
    }

}

@media screen and (max-width:993px) {
    .zielgruppen_navi {
        background: #f7f7f7;
        border: 1px solid #cecece;
        color: #333333;
        margin: 1.5em 0;
        width: 100%;
        padding: 0.5em 0.5em 0.6em;
        position: relative;
    }

}

.nav__targetgroup--select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url(../img/arrow-down@2x.png) no-repeat 97% 50% #f1f1f1;
    border-radius: 0;
    font-size: 15px;
}

.nav__targetgroup--select::-ms-expand {
    display: none;
}

.nav__targetgroup--select option {
    background: #ffffff;
}

/**
 * ====== Breadcrumbs ======
 **/
#breadcrumbs {
    color: #5a5555;
    float: left;
    font-size: .9em;
    margin: 0;
    padding: 6px 0 0 15px;
    text-decoration: none;
    line-height: 1.4em;
    overflow: hidden;  /* width: 496px; */
}

#breadcrumbs .navi {
    padding: 0;
}

#breadcrumbs .navi li {
    float: left;
    list-style: none;
    margin-left: 3px;
    position: relative;
}

#breadcrumbs .navi li:first-child {
    margin-left: 0;
}

#breadcrumbs .navi li:first-child:before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background: url(../img/arrow-right.jpg) no-repeat;
    top: 1px;
    left: -15px;
}

#breadcrumbs .navi li:after {
    content: '';
    clear: both;
    float: none;
}

#breadcrumbs a {
    text-decoration: none;
}

/**
 * ====== Function Navigation ======
 **/
.funktions_navi .level1 > li {
    border-left: 1px solid #cccccc;
    display: inline-block;
}

.funktions_navi .level1 > li:first-child {
    border-left: none;
    padding-left: 0;
}

.funktions_navi .level1 > li:last-child {
    padding-right: 0;
}

.funktions_navi .level1 > li:after {
    content: '';
    clear: both;
    float: none;
}

@media screen and (min-width:994px) {
    .funktions_navi {
        float: left;
        padding-top: 7px;
    }

    .funktions_navi li {
        position: relative;
    }

    .funktions_navi .level1 {
        text-align: left;
    }

    .funktions_navi .level1 > li {
        border-left: none;
        padding: 0 10px;
    }

    .funktions_navi .level1 > li:first-child {
        padding-left: 0;
    }

    .funktions_navi .level1 > li .level2 {
        opacity: 0;
        transform: translateY(27px);
        visibility: hidden;
        transition: all .3s ease-in-out;
    }

    .funktions_navi .level1 > li:hover .level2 {
        visibility: visible;
        transform: translateY(38px);
        opacity: 1;
    }

    .funktions_navi a {
        font-family: "Open Sans", sans-serif;
        padding: 0 0 12px;
    }

    .funktions_navi a.is-active {
        font-size: 0 !important;
        padding: 4px 9px;
        background: #cccccc;
        color: #ffffff;
    }

    .funktions_navi a.is-active .fa-close {
        display: block;
    }

    .funktions_navi a.is-active .fa-search {
        display: none;
    }

    .funktions_navi a.is-active .nav-icon {
        font-size: 16px !important;
    }

    .funktions_navi a .fa-close {
        display: none;
    }

    .funktions_navi .level2 {
        background: #ffffff;
        box-shadow: 2px 2px 5px #5a5555;
        padding: 0;
        position: absolute;
        top: 0;
        z-index: 20;
    }

    .funktions_navi .level2:before {
        content: '';
        border-right: 8px solid transparent;
        border-left: 8px solid transparent;
        border-bottom: 8px solid #cccccc;
        position: absolute;
        top: -8px;
        left: 10px;
    }

    .funktions_navi .level2 > li {
        list-style: none;
        border-top: 1px solid #cccccc;
        width: 100%;
    }

    .funktions_navi .level2 > li:first-child {
        border-top: none;
    }

    .funktions_navi .level2 a {
        font-size: 12px;
        padding: 9px 12px;
        transition: all .15s ease-in-out;
        white-space: nowrap;
    }

    .funktions_navi .level2 a:hover {
        color: #ffffff;
        background: #003f61;
    }

    .funktions_navi .nav-icon {
        display: block;
        text-align: center;
        margin-bottom: 3px;
    }

    .funktions_navi .nav-icon--home {
        font-size: 12px;
    }

    .funktions_navi .search {
        position: absolute;
        z-index: 1;
        top: 0px;
        left: 40px;
        width: 0px;
        overflow: hidden;
        transition: all .2s ease-in-out;
    }

    .funktions_navi .search .input-search {
        height: 27px;
        padding-top: 3px;
        padding-bottom: 3px;
        font-size: 12px;
    }

    .funktions_navi .search .btn-search {
        padding: 5px 10px;
    }

    .funktions_navi .search.is-active {
        width: 397px;
    }

    .funktions_navi .login {
        padding: 15px 15px 0;
        width: 215px;
    }

    .no-js .funktions_navi--big .search {
        left: 10px;
        width: 427px;
    }

}

@media screen and (min-width:1170px) {
    .funktions_navi .search.is-active {
        width: 524px;
    }

    .no-js .funktions_navi .search {
        width: 554px;
    }

}

@media screen and (max-width:993px) {
    .funktions_navi {
        float: none;
        padding: 0;
        width: 100%;
    }

    .funktions_navi .level1 {
        overflow: hidden;
        position: relative;
    }

    .funktions_navi .level1 > li {
        box-sizing: border-box;
        display: block;
        float: left;
        padding: 0;
        width: 20%;
    }

    .funktions_navi .level1 a {
        display: block;
        padding: 10px 3px;
        text-align: center;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .funktions_navi .level2 {
        position: relative;
        max-height: 0em;
        overflow: hidden;
    }

    .funktions_navi .level2 a {
        text-align: left;
    }

    .funktions_navi .nav-icon {
        display: block;
        font-size: 1.3em;
        margin-bottom: 0.3em;
    }

    .funktions_navi .nav-icon-last {
        line-height: 0;
    }

}

@media screen and (min-width:360px) and (max-width:425px) {
    .funktions_navi .level1 > li {
        width: 18.5%;
    }

    .funktions_navi .level1 > li:last-child {
        width: 26%;
    }

}

@media screen and (min-width:287px) and (max-width:359px) {
    .funktions_navi .level1 > li:nth-child(1) {
        width: 20%;
    }

    .funktions_navi .level1 > li:nth-child(2),
    .funktions_navi .level1 > li:nth-child(3),
    .funktions_navi .level1 > li:nth-child(4) {
        width: 16.6666666667%;
    }

    .funktions_navi .level1 > li:last-child {
        width: 30%;
    }

}

@media screen and (max-width:286px) {
    .funktions_navi .level1 > li {
        border: none;
        width: 100%;
        border-bottom: 1px solid #cccccc;
    }

    .funktions_navi .level1 > li a {
        padding-left: 15px;
        text-align: left;
    }

    .funktions_navi .level1 > li .nav-icon {
        display: inline;
        margin-right: 8px;
    }

}

.funktions_navi ul li a,
.arlink {
    display: block;
    margin: 0;
    padding: 2px 0;
    font-size: .9em;  /* font-family: Arial, sans-serif; */
    color: #5a5555;
    text-decoration: none;
    line-height: .9em;
}

/**
 * ====== Pflicht Navigation ======
 **/
#pflicht_navi li {
    text-decoration: none;
    list-style: none;
    line-height: 2em;
}

@media screen and (max-width:779px) {
    #pflicht_navi li a {
        font-size: 12px;
    }

}

/**
 * ====== Main Navigation ======
 **/
.navi_list {
    line-height: 1.1em;
    position: relative;
}

.navi_list ul {
    list-style: none;
}

.navi_list li {
    background: none;
    position: relative;    /**
       * Handle Submenus
       **/
}

.navi_list li.is-open {

    /**
     * Show Level2
     **/
}

.navi_list li.is-open > ul {
    display: block;
    max-height: 99em;
}

.navi_list li.is-open > ul .is-open {

    /**
     * Show Level3
     **/
}

.navi_list li.is-open > ul .is-open > ul {
    display: block;
}

.navi_list a {
    display: block;
    margin: 0;
    padding: 0;
    color: #5a5555;
    text-decoration: none;
    padding-left: 1.3em;
}

.navi_list a:hover,
.navi_list a.active,
.navi_list a.activeparent {
    color: #003f61;
}

.navi_list .level1 > li {
    border-bottom: 1px solid #cccccc;
    margin: 0;
}

.navi_list .level1 > li > a {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}

.navi_list .level2,
.navi_list .level3,
.navi_list .level4,
.navi_list .level5 {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-in-out;
}

.navi_list .level2 > li,
.navi_list .level3 > li,
.navi_list .level4 > li,
.navi_list .level5 > li {
    font-weight: normal;
    font-size: .9em;
    line-height: 1.1em;
    margin-left: 1.9em;
}

.navi_list .level2 a,
.navi_list .level3 a,
.navi_list .level4 a,
.navi_list .level5 a {
    line-height: 1.1em;
    padding-top: 0.4em;
    padding-bottom: 0.5em;
}

.navi_list .nav-collapse-trigger {
    background: none;
    border: none;
    border-radius: 0;
    display: none;
    float: left;
    position: relative;
    outline: none;
    margin-top: 0.3em;
    text-align: left;
    width: 1.3em;
}

@media screen and (max-width:993px) {
    .navi_list {
        background: #ffffff;
        border-top: 5px solid #003f61;
        line-height: 16px;
    }

    .navi_list li > a {
        text-overflow: ellipsis;
        overflow: hidden;
        padding-right: 10px;
        font-size: 14px;
    }

    .navi_list li.has-children > a {
        margin-right: 46px;
        white-space: nowrap;
    }

    .navi_list .level1 > li > a {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .navi_list .level2 li,
    .navi_list .level3 li,
    .navi_list .level4 li {
        border-top: 1px solid #cccccc;
        overflow: hidden;
        margin-left: 16px;
    }

    .navi_list .level2 li a,
    .navi_list .level3 li a,
    .navi_list .level4 li a {
        padding-top: 13px;
        padding-bottom: 13px;
        padding-left: 0;
        font-size: 12px;
    }

    .navi_list .level2 li a:focus,
    .navi_list .level3 li a:focus,
    .navi_list .level4 li a:focus {
        background: #f2f2f2;
    }

    .navi_list .level2 .nav-collapse-trigger,
    .navi_list .level3 .nav-collapse-trigger,
    .navi_list .level4 .nav-collapse-trigger {
        height: 40px;
    }

    .navi_list .level2 .nav-collapse-trigger:focus,
    .navi_list .level3 .nav-collapse-trigger:focus,
    .navi_list .level4 .nav-collapse-trigger:focus {
        background: #f7f7f7;
    }

    .navi_list .level2 > li {
        margin-left: 34px;
    }

    .navi_list .level2 .nav-collapse-trigger {
        background: none;
        border-left: 1px solid #cccccc;
        color: #003f61;
    }

    .navi_list .nav-collapse-trigger {
        padding: 0 15px;
        border-left: 1px solid #003f61;
        background: #003f61;
        color: #ffffff;
        width: auto;
        margin-top: 0;
        height: 44px;
        float: none;
        position: absolute;
        right: 0;
        transition: background .3s ease-in-out;
    }

    .navi_list .nav-collapse-trigger .fa,
    .navi_list .nav-collapse-trigger .owl-theme--hs .owl-nav [class*='owl-']:after,
    .owl-theme--hs .owl-nav .navi_list .nav-collapse-trigger [class*='owl-']:after,
    .navi_list .nav-collapse-trigger .owl-theme--hs-slider .owl-prev:after,
    .owl-theme--hs-slider .navi_list .nav-collapse-trigger .owl-prev:after,
    .navi_list .nav-collapse-trigger .owl-theme--hs-slider .owl-next:after,
    .owl-theme--hs-slider .navi_list .nav-collapse-trigger .owl-next:after,
    .navi_list .nav-collapse-trigger .list__item--link:before {
        font-size: 16px;
        font-weight: 700;
        min-width: 1em;
        text-align: center;
    }

}

@media screen and (min-width:994px) {
    .navi_main ul li {
        font-size: 1em;
        line-height: 1.3em;
    }

    .navi_main a:hover,
    .navi_main a.activeparent,
    .navi_main h3 {
        font-weight: inherit;
        font-size: inherit;
    }

    .navi_main .level1 > li:first-child {
        border-top: 1px solid #cccccc;
    }

    .navi_main .level2 > li:last-child {
        padding-bottom: 8px;
    }

    .navi_main .level2 .nav-collapse-trigger,
    .navi_main .level3 .nav-collapse-trigger,
    .navi_main .level4 .nav-collapse-trigger {
        margin-top: 0.3em;
    }

    .navi_main .level2 li a,
    .navi_main .level3 li a,
    .navi_main .level4 li a {
        word-break: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .navi_main .level3 > li {
        font-size: 1em;
        margin-left: 20px;
    }

    .navi_main .level3 > li:last-child a {
        padding-bottom: 0.6em;
    }

    .navi_main .level3 a {
        padding-top: 3px;
        padding-bottom: 4px;
    }

    .navi_main .level4 a {
        font-size: 10px;
    }

}

.js .nav-collapse-trigger {
    display: block !important;
}

.js #navi_main .level1 > li > a {
    padding-left: 1.3em !important;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Logo Area
 * @author: Yannick Herzog
 * @last_modify: 2015-11-03
 **/
.logo__items {
    margin-top: 100px;
}

.logo__item {
    margin-top: 30px;
}

.logo__item:first-child {
    margin-top: 0;
}

.logo__item-link {
    display: block;
    line-height: 0;
}

.logo__item-image {
    max-width: 100%;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Notifications
 * @author: Yannick Herzog
 * @last_modify: 2015-10-15
 **/
.notification__browser--old {
    background: #003f61;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 25px;
}

.notification__browser--old a {
    color: red;
}

.notification__js--inactive {
    background: #E87E04;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 25px;
}

.notification__js--inactive p {
    margin: 0;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Login
 * @author: Yannick Herzog
 * @last_modify: 2015-10-15
 **/
.login {
    padding: 15px 15px 0;
}

.login__notes {
    background: #f7f7f7;
    padding: 15px;
}

.login__notes > *:last-child {
    margin-bottom: 0;
}

.login__notes .list__item {
    font-size: 12px;
}

.login__notes__headline {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Calendar
 * @author: Yannick Herzog
 * @last_modify: 2015-10-07
 **/
.calendar__table {
    width: 100%;
    max-width: 100%;
    border: none;
}

.calendar__table tbody tr:nth-child(odd) {
    background: transparent !important;
}

.calendar__table td {
    text-align: center;
    vertical-align: middle;
    border: none;
}

.calendar__table tr:last-child td {
    padding-bottom: 15px;
}

.calendar__row--highlighted {
    background: #003f61 !important;
    color: #ffffff;
}

.calendar__row__head .month {
    color: #003f61 !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.calendar__row__head .prev {
    text-align: center;
}

.calendar__row__head .next {
    text-align: center;
}

.calendar__row__head a {
    color: #003f61;
    display: block;
}

.calendar__row__head td,
.calendar__row__head th {
    padding-top: 12px;
    padding-bottom: 12px;
}

.calendar__row__desc td,
.calendar__row__desc th {
    font-weight: 400;
    padding-top: 4px;
    padding-bottom: 4px;
}

.calendar__row td,
.calendar__row th {
    color: #003f61;
    padding: 8px;
}

.calendar__col__entry {
    padding: 0 !important;
    background: url(../img/circle__empty.png) no-repeat center;
    background-size: cover;
}

.calendar__date--hasEntry,
.calendar__date--today {
    font-size: 11px;
    position: relative;
    padding: 4px;
}

.calendar__date--hasEntry.is-active,
.calendar__date--today.is-active {
    background: url(../img/circle__full--active.png) no-repeat center;
    background-size: cover;
}

.calendar__date--hasEntry.is-active > *,
.calendar__date--today.is-active > * {
    color: #ffffff;
}

.calendar__date--hasEntry.is-active:after,
.calendar__date--today.is-active:after {
    content: '';
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 4px solid #cccccc;
    position: absolute;
    bottom: -4px;
    left: 50%;
    margin-left: -5px;
}

.calendar__date--today {
    background: url(../img/circle__full.png) no-repeat center;
    background-size: cover;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.calendar__date--today.calendar__date--hasEntry.is-active {
    background: url(../img/circle__full--active.png) no-repeat center;
    background-size: cover;
}

.calendar__row__entries {
    text-align: left;
}

.calendar__row__entries td,
.calendar__row__entries th {
    background: #f7f7f7;
    box-shadow: inset 0 0 5px rgba(90, 85, 85, 0.7);
    padding: 0 !important;
}

.calendar__row__entries td > *,
.calendar__row__entries th > * {
    max-height: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.calendar__row__entries ul {
    margin: 0 !important;
}

.calendar__row__entries.is-open td > *,
.calendar__row__entries.is-open th > * {
    max-height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media screen and (max-width:649px) {
    .calendar__row td,
    .calendar__row th {
        padding: 15px;
    }

    .calendar__date--hasEntry {
        padding: 10px 14px;
    }

}

@media screen and (max-width:779px) {
    .calendar__date--hasEntry.is-active:after {
        content: '';
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-bottom: 6px solid #cccccc;
        margin-left: -7px;
        bottom: -6px;
    }

}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Tools
 * @author: Yannick Herzog
 * @last_modify: 2015-10-01
 **/
.toolbar__item {
    float: left;
    list-style: none;
    text-align: center;
    padding: 0 1.5%;
}

.toolbar__item-link {
    background: #0f4c64;
    border: 1px solid #cccccc;
    color: #ffffff;
    display: inline-block;
    line-height: 0 !important;
    margin-bottom: 5px;
}

.toolbar__item-link .fa,
.toolbar__item-link .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .toolbar__item-link [class*='owl-']:after,
.toolbar__item-link .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .toolbar__item-link .owl-prev:after,
.toolbar__item-link .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .toolbar__item-link .owl-next:after,
.toolbar__item-link .list__item--link:before {
    font-size: 14px;
}

.toolbar__item-desc {
    display: block;
    font-size: 12px;
}

/**
 * ====== Einrichtungslogo ======
 **/
#einrichtungs_logo {
    box-sizing: content-box;  /* left: -10px; */
    height: 40px;
    padding: 20px 0px 30px 0px;
    position: relative;
    margin: 0px;
}

#einrichtungs_logo span {
    display: none;
}

#einrichtungs_logo a {
    display: block;
    height: 40px;
    width: 180px;
    background-color: #fff;
}

.faculty-logo {
    margin-top: 15px;
    position: relative;
}

.faculty-logo:first-child {
    margin-top: 0;
}

.faculty-logo a:hover .faculty-name {
    color: #aaaaaa;
}

.faculty-logo .stroke {
    background: #003f61;
    display: inline-block;
    height: 12px;
    transform: rotate(12deg);
    width: 5px;
    -moz-transform: rotate(12deg), scale(0.9999);
    position: relative;
    top: 1px;
    margin-right: 2px;
}

.faculty-logo .faculty-name-short {
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    margin-right: 6px;
}

.faculty-logo .faculty-name {
    color: #003f61;
    font-size: 14px;
    line-height: 1.2em;
    word-wrap: break-word;
}

.faculty-bw .stroke {
    background: #007de1;
}

.faculty-bw .faculty-name-short {
    color: #007de1;
}

.faculty-ei .stroke {
    background: #cd0000;
}

.faculty-ei .faculty-name-short {
    color: #cd0000;
}

.faculty-mv .stroke {
    background: #00732d;
}

.faculty-mv .faculty-name-short {
    color: #00732d;
}

.faculty-mi .stroke {
    background: #ff6400;
}

.faculty-mi .faculty-name-short {
    color: #ff6400;
}

.faculty-gs .stroke {
    background: #aaaaaa;
}

.faculty-gs .faculty-name-short {
    color: #aaaaaa;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Grid
 * @author: Yannick Herzog
 * @last_modify: 2015-10-29
 **/

/**
 * Variables
 **/

/**
 * ====== Container ======
 **/
.container {
    max-width: 994px;
    margin: 0 auto;
}

@media screen and (min-width:1170px) {
    .container {
        max-width: 1140px;
    }

}

.content-container {
    display: block;
    width: 80.4385964912%;
    overflow: hidden;
}

@media screen and (max-width:993px) {
    .content-container {
        width: 100%;
    }

}

.row:before,
.container:before,
.content-container:before {
    clear: both;
}

.row:after,
.container:after,
.content-container:after {
    content: " ";
    clear: both;
    display: table;
}

.col-lg-1,
.col-lg-1-2,
.col-lg-2,
.col-lg-3 {
    float: left;
    min-height: 1px;
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
}

/**
 * ====== Standard Grid (25%, 33%, 50%, 66%, 75%, 100%) ======
 **/
.col-1-4,
.col-1-3,
.col-1-2,
.col-2-3,
.col-3-4 {
    float: left;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
}

.col-1-4 {
    width: 25%;
}

.col-1-3 {
    width: 33.3333333333%;
}

.col-1-2 {
    width: 50%;
}

.col-2-3 {
    width: 66.6666666667%;
}

.col-3-4 {
    width: 75%;
}

.col-1-1 {
    width: 100%;
}

/**
 * ====== Large Devices ======
 **/
.col-lg-1 {
    width: 33.3333333333%;
}

.col-lg-2 {
    width: 66.6666666667%;
}

.col-lg-2 .col-lg-1 {
    width: 50%;
}

.col-lg-3 {
    width: 100%;
}

.col-lg-3 .col-lg-1 {
    width: 33.3333333333%;
}

.col-lg-3 .col-lg-2 {
    width: 66.6666666667%;
}

.col-lg-1-2 {
    width: 50%;
}

@media screen and (max-width:449px) {
    .col-lg-1:not(:first-child),
    .col-lg-1-2:not(:first-child),
    .col-lg-2:not(:first-child),
    .col-lg-3:not(:first-child) {
        margin-top: 50px;
    }

}

/**
 * ====== Small Devices ======
 **/
@media screen and (min-width:450px) and (max-width:649px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3 {
        float: left;
        min-height: 1px;
        position: relative;
        padding-right: 20px;
        padding-left: 20px;
    }

    .col-sm-1 {
        width: 25%;
    }

    .col-sm-2 {
        width: 50%;
    }

    .col-sm-3 {
        width: 100%;
    }

    .col-sm-parent {
        padding-left: 0;
        padding-right: 0;
    }

    .col-lg-1-2 {
        clear: both;
        float: none;
        width: 100%;
    }

    .col-lg-1-2:not(:first-child) {
        margin-top: 50px;
    }

}

/**
 * ====== Extra small Devices ======
 **/
@media screen and (max-width:449px) {
    .col-lg-1,
    .col-lg-1-2,
    .col-lg-2,
    .col-lg-3,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3 {
        clear: both;
        float: none;
        width: 100%;
    }

    .col-lg-2 .col-lg-1 {
        width: 100%;
    }

    .col-lg-3 .col-lg-1,
    .col-lg-3 .col-lg-2 {
        width: 100%;
    }

}

/**
 * ====== Push ======
 **/
@media screen and (min-width:994px) {
    .col-lg-push-1 {
        left: 33.3333333333%;
    }

    .col-lg-push-2 {
        left: 66.6666666667%;
    }

    .col-lg-push-3 {
        left: 100%;
    }

}

@media screen and (max-width:993px) {
    .col-sm-push-1 {
        left: 33.3333333333%;
    }

    .col-sm-push-2 {
        left: 66.6666666667%;
    }

    .col-sm-push-3 {
        left: 100%;
    }

}

@media screen and (max-width:449px) {
    .col-sm-push-1,
    .col-sm-push-2,
    .col-sm-push-3 {
        left: 0;
    }

}

/**
 * ====== Pull ======
 **/
@media screen and (min-width:994px) {
    .col-lg-pull-1 {
        right: 33.3333333333%;
    }

    .col-lg-pull-2 {
        right: 66.6666666667%;
    }

    .col-lg-pull-3 {
        right: 100%;
    }

}

@media screen and (max-width:993px) {
    .col-sm-pull-1 {
        right: 33.3333333333%;
    }

    .col-sm-pull-2 {
        right: 66.6666666667%;
    }

    .col-sm-pull-3 {
        right: 100%;
    }

}

@media screen and (max-width:449px) {
    .col-sm-pull-1,
    .col-sm-pull-2,
    .col-sm-pull-3 {
        right: 0;
    }

}

.row {
    margin-right: -20px;
    margin-left: -20px;
}

/**
 * ====== Visibility ======
 **/
@media screen and (max-width:993px) {
    .visible-on-mobile {
        display: block;
    }

    .hide-on-mobile {
        display: none !important;
    }

}

@media screen and (min-width:994px) {
    .visible-on-desktop {
        display: block;
    }

    .hide-on-desktop {
        display: none !important;
    }

}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Extend Owl Carousel
 * @author: Yannick Herzog
 * @last_modify: 2015-09-14
 **/
.owl-stage-outer {
    clear: both;
}

.owl-item.first {
    padding-left: 0;
}

.owl-item.last {
    padding-right: 1px;
}

.owl-item > * {
    width: 100% !important;
}

.owl-item img {
    display: inline !important;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Grid
 * @author: Yannick Herzog
 * @last_modify: 2015-10-29
 **/

/**
 * Variables
 **/

/**
 * ====== Container ======
 **/
.container {
    max-width: 994px;
    margin: 0 auto;
}

@media screen and (min-width:1170px) {
    .container {
        max-width: 1140px;
    }

}

.content-container {
    display: block;
    width: 80.4385964912%;
    overflow: hidden;
}

@media screen and (max-width:993px) {
    .content-container {
        width: 100%;
    }

}

.row:before,
.container:before,
.content-container:before {
    clear: both;
}

.row:after,
.container:after,
.content-container:after {
    content: " ";
    clear: both;
    display: table;
}

.col-lg-1,
.col-lg-1-2,
.col-lg-2,
.col-lg-3 {
    float: left;
    min-height: 1px;
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
}

/**
 * ====== Standard Grid (25%, 33%, 50%, 66%, 75%, 100%) ======
 **/
.col-1-4,
.col-1-3,
.col-1-2,
.col-2-3,
.col-3-4 {
    float: left;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
}

.col-1-4 {
    width: 25%;
}

.col-1-3 {
    width: 33.3333333333%;
}

.col-1-2 {
    width: 50%;
}

.col-2-3 {
    width: 66.6666666667%;
}

.col-3-4 {
    width: 75%;
}

.col-1-1 {
    width: 100%;
}

/**
 * ====== Large Devices ======
 **/
.col-lg-1 {
    width: 33.3333333333%;
}

.col-lg-2 {
    width: 66.6666666667%;
}

.col-lg-2 .col-lg-1 {
    width: 50%;
}

.col-lg-3 {
    width: 100%;
}

.col-lg-3 .col-lg-1 {
    width: 33.3333333333%;
}

.col-lg-3 .col-lg-2 {
    width: 66.6666666667%;
}

.col-lg-1-2 {
    width: 50%;
}

@media screen and (max-width:449px) {
    .col-lg-1:not(:first-child),
    .col-lg-1-2:not(:first-child),
    .col-lg-2:not(:first-child),
    .col-lg-3:not(:first-child) {
        margin-top: 50px;
    }

}

/**
 * ====== Small Devices ======
 **/
@media screen and (min-width:450px) and (max-width:649px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3 {
        float: left;
        min-height: 1px;
        position: relative;
        padding-right: 20px;
        padding-left: 20px;
    }

    .col-sm-1 {
        width: 25%;
    }

    .col-sm-2 {
        width: 50%;
    }

    .col-sm-3 {
        width: 100%;
    }

    .col-sm-parent {
        padding-left: 0;
        padding-right: 0;
    }

    .col-lg-1-2 {
        clear: both;
        float: none;
        width: 100%;
    }

    .col-lg-1-2:not(:first-child) {
        margin-top: 50px;
    }

}

/**
 * ====== Extra small Devices ======
 **/
@media screen and (max-width:449px) {
    .col-lg-1,
    .col-lg-1-2,
    .col-lg-2,
    .col-lg-3,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3 {
        clear: both;
        float: none;
        width: 100%;
    }

    .col-lg-2 .col-lg-1 {
        width: 100%;
    }

    .col-lg-3 .col-lg-1,
    .col-lg-3 .col-lg-2 {
        width: 100%;
    }

}

/**
 * ====== Push ======
 **/
@media screen and (min-width:994px) {
    .col-lg-push-1 {
        left: 33.3333333333%;
    }

    .col-lg-push-2 {
        left: 66.6666666667%;
    }

    .col-lg-push-3 {
        left: 100%;
    }

}

@media screen and (max-width:993px) {
    .col-sm-push-1 {
        left: 33.3333333333%;
    }

    .col-sm-push-2 {
        left: 66.6666666667%;
    }

    .col-sm-push-3 {
        left: 100%;
    }

}

@media screen and (max-width:449px) {
    .col-sm-push-1,
    .col-sm-push-2,
    .col-sm-push-3 {
        left: 0;
    }

}

/**
 * ====== Pull ======
 **/
@media screen and (min-width:994px) {
    .col-lg-pull-1 {
        right: 33.3333333333%;
    }

    .col-lg-pull-2 {
        right: 66.6666666667%;
    }

    .col-lg-pull-3 {
        right: 100%;
    }

}

@media screen and (max-width:993px) {
    .col-sm-pull-1 {
        right: 33.3333333333%;
    }

    .col-sm-pull-2 {
        right: 66.6666666667%;
    }

    .col-sm-pull-3 {
        right: 100%;
    }

}

@media screen and (max-width:449px) {
    .col-sm-pull-1,
    .col-sm-pull-2,
    .col-sm-pull-3 {
        right: 0;
    }

}

.row {
    margin-right: -20px;
    margin-left: -20px;
}

/**
 * ====== Visibility ======
 **/
@media screen and (max-width:993px) {
    .visible-on-mobile {
        display: block;
    }

    .hide-on-mobile {
        display: none !important;
    }

}

@media screen and (min-width:994px) {
    .visible-on-desktop {
        display: block;
    }

    .hide-on-desktop {
        display: none !important;
    }

}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Owl Carousel - HSO-Theme
 * @author: Yannick Herzog, some styles come from the original plugin https://github.com/smashingboxes/OwlCarousel2
 * @last_modify: 2015-09-14
 **/
.owl-theme--hs .owl-nav {
    margin-top: 10px;
    float: right;
    position: relative;
    z-index: 1;
}

.owl-theme--hs .owl-nav [class*='owl-'] {
    background: #333333;
    border: 1px solid #cccccc;
    display: inline-block;
    color: #ffffff;
    padding: 0.3em 0.9em 0.5em;
    transition: background 0.2s ease-in-out;
}

.owl-theme--hs .owl-nav [class*='owl-']:after {
    font-size: 22px;
    font-weight: 700;
}

.owl-theme--hs .owl-nav [class*='owl-']:hover,
.owl-theme--hs .owl-nav [class*='owl-']:active {
    background: #003f61;
}

.owl-theme--hs .owl-nav [class*='owl-'].disabled {
    background: rgba(51, 51, 51, 0.7);
    cursor: default;
}

.owl-theme--hs .owl-nav .owl-prev:after {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
}

.owl-theme--hs .owl-nav .owl-next:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
}

.owl-theme--hs .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    float: left;
    position: relative;
    top: -27px;
    width: 100%;  /**
       * ToDo: so können nur die Dots geklickt werden, die navigationspfeile liegen darunter!
       **/
}

.owl-theme--hs .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme--hs .owl-dots .owl-dot span {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 100%;
    display: block;
    height: 15px;
    margin-right: 5px;
    -webkit-backface-visibility: visible;
    width: 15px;
    transition: opacity 200ms ease;
}

.owl-theme--hs .owl-dots .owl-dot.active span {
    background: #b8b8b8;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Hero Slider, OWL Carousel
 * @author: Yannick Herzog
 * @last_modify: 2015-09-18
 **/
.slider__hero-wrapper {
    position: relative;
    overflow: hidden;
}

.slider__hero-item--wrapper {
    margin: 0;
    position: relative;
}

.slider__hero-image {
    border-bottom: none !important;
}

.slider__hero-caption {
    background: rgba(255, 255, 255, 0.8);
    height: 100%;
    position: absolute;
    padding: 1% 20px 0;
    right: 0;
    top: 0;
    z-index: 1;
    visibility: hidden;
}

.slider__hero-caption.active {
    visibility: visible;
}

.slider__hero-caption.active .slider__hero-item-headline,
.slider__hero-caption.active .slider__hero-item-teaser {
    opacity: 1;
}

.slider__hero-item-headline,
.slider__hero-item-teaser {
    opacity: 0;
    transition: opacity .8s ease-in-out;
}

.slider__hero-item-headline {
    color: #003f61;
    font-family: "Open Sans", sans-serif;
    font-size: 1.5rem;
    line-height: 1.1em;
}

.slider__hero-item-teaser {
    color: #5a5555;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.4em;
}

.owl-theme--hs-slider {
    z-index: auto;
}

.owl-theme--hs-slider .owl-nav {
    margin-top: 0;
    float: none;
}

.owl-theme--hs-slider .owl-prev {
    height: 40px;
}

.owl-theme--hs-slider .owl-prev:after {
    position: relative;
    top: 50%;
}

.owl-theme--hs-slider .owl-next {
    height: 40px;
}

.owl-theme--hs-slider .owl-next:after {
    position: relative;
    top: 50%;
}

.owl-theme--hs-slider .owl-dots {
    float: none;
    top: auto;
}

.owl-theme--hs-slider .owl-dot.active span {
    background: #003f61 !important;
    border-color: transparent;
}

/*
 * Fallback for deactivated JS: Show first image in slider
 */
.no-js .slider__hero-item:not(:first-child) {
    display: none;
}

@media screen and (max-width:649px) {
    .slider__hero-caption {
        position: relative;
        display: none;
        padding: 0;
    }

    .slider__hero-caption.active {
        display: block;
    }

    .slider__hero-item-headline {
        font-size: 1.16rem;
        line-height: 1.4em;
        margin: 0;
        background: #003f61;
        color: #ffffff;
        padding: 8px 14px 6px 14px;
    }

    .slider__hero-item-teaser {
        display: block;
        font-size: 1rem;
        background: #003f61;
        color: #ffffff;
        padding: 0 14px 10px 14px;
    }

    .owl-theme--hs-slider .owl-nav {
        position: static;
    }

    .owl-theme--hs-slider [class*='owl-'] {
        background: rgba(90, 85, 85, 0.7) !important;
    }

    .owl-theme--hs-slider [class*='owl-']:focus,
    .owl-theme--hs-slider [class*='owl-']:active {
        background: rgba(15, 76, 100, 0.9) !important;
    }

    .owl-theme--hs-slider .owl-prev {
        border: none !important;
        position: absolute;
        top: 0%;
        left: 0;
        height: 100%;
    }

    .owl-theme--hs-slider .owl-next {
        border: none !important;
        position: absolute;
        top: 0%;
        right: 0%;
        height: 100%;
    }

    .owl-theme--hs-slider .owl-dots {
        display: none;
    }

}

@media screen and (min-width:650px) {
    .slider__hero-caption {
        padding-top: 0%;
        width: 31%;
    }

    .slider__hero-item-headline {
        font-size: 16px;
        line-height: 1.3em;
    }

    .owl-theme--hs-slider .owl-nav {
        position: static;
    }

    .owl-theme--hs-slider .owl-prev {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .owl-theme--hs-slider .owl-next {
        position: absolute;
        top: 50%;
        right: 30.9%;
        transform: translateY(-50%);
    }

    .owl-theme--hs-slider .owl-dots {
        position: absolute;
        right: 0;
        bottom: 5px;
        width: 31%;
        z-index: 2;
    }

}

@media screen and (min-width:780px) {
    .slider__hero-caption {
        padding-top: 1%;
        width: 246px;
    }

    .owl-theme--hs-slider .owl-next {
        right: 245px;
    }

    .owl-theme--hs-slider .owl-dots {
        bottom: 15px;
        width: 246px;
    }

}

@media screen and (max-width:994px) {
    .slider__hero-caption {
        padding-top: 0%;
    }

}

@media screen and (min-width:1170px) {
    .slider__hero-caption {
        width: 290px;
        padding-top: 5%;
    }

    .owl-theme--hs-slider .owl-next {
        right: 289px;
    }

    .owl-theme--hs-slider .owl-dots {
        width: 290px;
    }

    .slider__hero-item-headline {
        font-size: 1.5rem;
        line-height: 1.4em;
    }

    .slider__hero-item-teaser {
        font-size: 1.1rem;
    }

}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Cards
 * @author: Yannick Herzog
 * @last_modify: 2015-11-11
 **/
.card {
    border: 1px solid #cccccc;
}

.card__img-wrapper {
    background: #f7f7f7;
    border-bottom: 1px solid #cccccc;
    margin: 0;
    line-height: 2px;
    text-align: center;
    position: relative;
}

.card__img {
    max-width: 100%;
}

.card__img--circle {
    border-radius: 50%;
    width: 100px !important;
    height: 100px;
    margin: 15px 0;
}

.card__img-caption {
    border-radius: 25px;
    border: 1px solid #cccccc;
    position: absolute;
    right: 15px;
    bottom: -25px;
    height: 50px;
    width: 50px;
}

.card__img-caption--bw {
    background: url(../img/b+w.png) no-repeat #ffffff;
    background-size: cover;
}

.card__img-caption--mi {
    background: url(../img/m+i.png) no-repeat #ffffff;
    background-size: cover;
}

.card__img-caption--mv {
    background: url(../img/m+v.png) no-repeat #ffffff;
    background-size: cover;
}

.card__img-caption--ei {
    background: url(../img/e+i.png) no-repeat #ffffff;
    background-size: cover;
}

.card__headline {
    font-size: 18px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    line-height: 1.1em;
    margin-top: 20px;
    margin-bottom: 0;
}

.card__subheadline {
    color: #5a5555;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    margin-top: 3px;
    margin-bottom: 10px;
}

.card__content-wrapper {
    padding: 10px;
}

.card__content {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    line-height: 1.4em;
}

@media screen and (min-width:451px) and (max-width:649px) {
    .card__content-wrapper {
        min-height: 230px;
    }

}

@media screen and (min-width:780px) {
    .card__content-wrapper {
        min-height: 212px;
    }

}

/**
 * Overlay
 **/
@media screen and (max-width:993px) {
    .overlay {
        opacity: 0;
        transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        visibility: hidden;
    }

    .overlay.show {
        background: rgba(0, 0, 0, 0.6);
        opacity: 1;
        visibility: visible;
    }

}

/**
 * Events
 **/
.event-list {
    overflow: hidden;
}

.event-item {
    list-style: none;
    margin-top: 15px;
    overflow: hidden;
}

.event-item:first-child {
    margin-top: 0;
}

.event:before {
    content: '';
    clear: both;
    float: none;
    min-height: 1px;
}

.event-item-calendar {
    background: #cccccc;
    color: #333333;
    display: table-cell;
    float: left;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4em;
    text-align: center;
    padding: 9px;
    vertical-align: middle;
    width: 50px;
}

.event-item-calendar .fa,
.event-item-calendar .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .event-item-calendar [class*='owl-']:after,
.event-item-calendar .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .event-item-calendar .owl-prev:after,
.event-item-calendar .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .event-item-calendar .owl-next:after,
.event-item-calendar .list__item--link:before {
    font-size: 22px;
}

.event-item-content {
    margin-left: 65px;
}

.event-item-headline {
    color: #003f61;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    margin: 0;
}

.event-item-headline a {
    color: #003f61;
}

.event-item-headline a:hover {
    color: #aaaaaa;
}

.event-item-date {
    color: #aaaaaa;
    display: block;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 6px;
}

@media screen and (min-width:451px) and (max-width:649px) {
    .col-lg-1 .event-item-calendar {
        background: none;
        border-bottom: 1px solid #cccccc;
        display: block;
        float: none;
        margin-bottom: 7px;
        width: auto;
    }

    .col-lg-1 .event-item-content {
        margin-left: 0;
    }

}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: List
 * @author: Yannick Herzog
 * @last_modify: 2015-11-25
 **/
.list {
    margin: 0;
    padding: 0 0 0 13px;
    list-style: square;
}

.list:not(*:root) {
    padding-left: 17px;
}

.list__item {
    font-size: 1rem;
    padding: 5px 5px 5px 0;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Link list
 * @author: Yannick Herzog
 * @last_modify: 2015-08-27
 **/
.link-list {
    margin: 5px 0 0 0;
    padding: 0;
}

.list__item--link {
    list-style: none;
    margin-top: 5px;
    padding: 0px 0px 0px 13px !important;
    position: relative;
}

.list__item--link:first-child {
    margin-top: 0;
}

.list__item--link:before {
    content: \f101;
    color: #003f61;
    position: absolute;
    left: 0;
    top: 3px;
}

.list__item--link:hover:before {
    color: #aaaaaa;
}

.list__item--link a:hover {
    color: #aaaaaa;
}

.list__item--link a:hover .fa,
.list__item--link a:hover .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .list__item--link a:hover [class*='owl-']:after,
.list__item--link a:hover .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .list__item--link a:hover .owl-prev:after,
.list__item--link a:hover .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .list__item--link a:hover .owl-next:after,
.list__item--link a:hover .list__item--link:before {
    color: #aaaaaa;
}

.list__item--link .fa,
.list__item--link .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .list__item--link [class*='owl-']:after,
.list__item--link .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .list__item--link .owl-prev:after,
.list__item--link .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .list__item--link .owl-next:after,
.list__item--link .list__item--link:before {
    color: #003f61;
    position: absolute;
    left: 0;
    top: 3px;
}

@media screen and (max-width:993px) {
    .link-list {
        margin-top: 12px;
    }

    .list__item--link {
        margin-top: 12px;
    }

    .list__item--link a {
        font-size: 1.1rem;
    }

}

@media screen and (min-width:994px) {
    .col-lg-1 .list__item--link {
        font-size: 1.1rem;
        line-height: 1.5em;
    }

}

/**
 * Nav-List-Box
 **/
.nav-list-box {
    margin-bottom: 40px;
}

.nav-list-box-headline {
    position: relative;
    margin: 0;
}

.nav-list-box-image {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.nav-list-box-link {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.nav-list-box-link .nav-list-box-caption {
    background: rgba(255, 255, 255, 0.9);
    color: #003f61;
    font-size: 1.5rem;
    line-height: 1.2em;
    position: absolute;
    top: 65%;
    right: 13px;
    bottom: 10px;
    left: 13px;
    padding: 4px 12px 10px;
    hyphens: auto;
    word-break: break-word;
    z-index: 1;
}

@media screen and (max-width:450px) {
    .nav-list-box-link {
        height: 90px;
    }

    .nav-list-box-link .nav-list-box-caption {
        bottom: 10px;
        top: 10px;
        padding-top: 10px;
        font-size: 20px;
    }

}

@media screen and (min-width:451px) and (max-width:649px) {
    .col-lg-1 .nav-list-box-caption {
        font-size: 14px;
        top: 10px;
    }

    .col-sm-2 .nav-list-box-caption {
        top: 50%;
        font-size: 18px !important;
    }

}

@media screen and (min-width:780px) and (max-width:994px) {
    .col-lg-1 .nav-list-box-caption {
        font-size: 16px;
    }

    .col-sm-2 .nav-list-box-caption {
        font-size: 16px;
    }

}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Content-Box
 * @author: Yannick Herzog
 * @last_modify: 2015-10-23
 **/
.content-box {
    border: 1px solid #cccccc;
    margin-top: 50px;
}

.content-box:first-child {
    margin-top: 0;
    margin-bottom: 50px;
}

.content-box__no-space-bottom {
    margin-bottom: 0 !important;
}

.content-box__space-top {
    margin-top: 50px !important;
}

.content-nox__alert-primary--filled {
    border: none;
    background: #f7f7f7;
}

.content-box--fixed-height .content-box-content {
    box-shadow: inset 0 -2px 3px 0 rgba(204, 204, 204, 0.8), inset 0 2px 3px 0 rgba(204, 204, 204, 0.8);
    max-height: 230px;
    overflow-y: auto;
}

.content-box-header-headline {
    border-left: 4px solid #cccccc;
    font-size: 16px;
    margin: 0;
    line-height: 1.2em;
    padding: 11px 7px 11px 30px;
    position: relative;
    hyphens: auto;
    word-break: break-word;
}

.content-box-header-headline .fa,
.content-box-header-headline .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .content-box-header-headline [class*='owl-']:after,
.content-box-header-headline .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .content-box-header-headline .owl-prev:after,
.content-box-header-headline .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .content-box-header-headline .owl-next:after,
.content-box-header-headline .list__item--link:before {
    color: #cccccc;
    font-size: 16px;
    position: absolute;
    top: 12px;
    left: 8px;
}

.content-box-content {
    padding: 10px;
    hyphens: auto;
}

.content-box-content p {
    font-size: 14px;
}

.content-box-content img {
    max-width: 100%;
}

.content-box-content--minHeight {
    min-height: 189px;
}

.content-box-footer {
    text-align: right;
    font-size: 12px;
    padding: 5px 10px 10px 10px;
}

.content-box-footer .content-box-footer-link {
    color: #003f61;
    display: inline-block;
    padding-right: 13px;
    position: relative;
}

.content-box-footer .content-box-footer-link:hover {
    color: #aaaaaa;
}

.content-box-footer .content-box-footer-link .fa,
.content-box-footer .content-box-footer-link .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .content-box-footer .content-box-footer-link [class*='owl-']:after,
.content-box-footer .content-box-footer-link .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .content-box-footer .content-box-footer-link .owl-prev:after,
.content-box-footer .content-box-footer-link .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .content-box-footer .content-box-footer-link .owl-next:after,
.content-box-footer .content-box-footer-link .list__item--link:before {
    position: absolute;
    right: 2px;
    top: 3px;
}

.content-box-media img {
    max-width: 100%;
    width: 100%;
}

.content-box-media .content-box-content {
    padding: 0;
    line-height: 0;
}

.content-box__image-wrapper {
    margin: 0;
}

.content-box__image {
    border: 1px solid #cccccc;
    float: left;
    margin-top: 4px;
    width: 90px;
}

.content-box__image-caption {
    margin-left: 100px;
    hyphens: auto;
}

.content-box__details-headline {
    font-style: normal;
    font-weight: 700;
    margin-top: 0;
}

.content-box__details {
    margin-top: 15px;
}

.content-box__detail {
    display: block;
    padding: 5px 0;
    position: relative;
}

.content-box__detail:first-child {
    border-top: none;
}

.content-box__detail.has-icon {
    padding-left: 23px;
}

.content-box__detail .fa,
.content-box__detail .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .content-box__detail [class*='owl-']:after,
.content-box__detail .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .content-box__detail .owl-prev:after,
.content-box__detail .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .content-box__detail .owl-next:after,
.content-box__detail .list__item--link:before {
    position: absolute;
    left: 0px;
    top: 8px;
}

@media screen and (min-width:451px) and (max-width:649px) {
    .col-lg-1 .content-box__image {
        float: none;
    }

    .col-lg-1 .content-box__image-caption {
        margin-left: 0;
    }

}

/* Modified by Prabin  */
#personDetail .content-box__image-wrapper figcaption {
    float: right;
    margin: 0px;
    width: 400px;
}

#personDetail .content-box__image-image {
    width: 180px;
    float: left;
}

#personDetail .content-box__image-image img {
    width: 100%;
    height: auto;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: News
 * @author: Yannick Herzog
 * @last_modify: 2015-09-24
 **/
.entry-nav {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    padding: 20px 0;
    margin-top: 30px;
}

.entry-nav__item {
    float: left;
    width: 50%;
}

.entry-nav__item span {
    display: block;
    font-size: 14px;
}

.entry-nav__item-link {
    display: block;
    font-size: 16px;
    line-height: 1.6em;
    margin-top: 4px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.entry-nav__item-link:hover {
    text-decoration: underline;
}

.entry-nav__item--next {
    text-align: right;
}

/**
 * Pagination
 **/
.pagination {
    margin-top: 36px;
    margin-bottom: 36px;
    position: relative;
}

.pagination .disabled {
    cursor: not-allowed;
}

.pagination .disabled:hover {
    background: none !important;
}

.pagination .disabled > * {
    background: none;
    cursor: inherit;
}

.pagination .disabled > *:hover {
    background: none !important;
}

.pagination-list {
    text-align: center;
}

.pagination-list-item {
    display: inline;
    margin-left: -4px;
}

.pagination-list-item:first-child {
    margin-left: 0;
}

.pagination-list-item-btn {
    border: 1px solid #cccccc;
    color: #003f61;
    display: inline-block;
    font-size: 1em;
    padding: .8em 1.4em;
    transition: all .2s ease-in-out;
}

.pagination-list-item-btn.first {
    border-radius: 2px 0 0 2px;
}

.pagination-list-item-btn.last {
    border-radius: 0 2px 2px 0;
}

.pagination-list-item-btn.is-active {
    background: #003f61;
    color: #ffffff;
}

.pagination-list-item-btn:not(.is-active):hover,.pagination-list-item-btn:focus {
    background: #cccccc;
    color: #003f61;
}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: News
 * @author: Yannick Herzog
 * @last_modify: 2015-11-05
 **/
.news-list-item {
    overflow: hidden;
    margin-top: 36px;
    hyphens: auto;
    word-break: break-word;
}

.news-list-item:first-child {
    margin-top: 0;
}

.news-list-item:after {
    content: '';
    clear: both;
    min-height: 1px;
}

.news-list-item .news-content p,
.news-list-item .news-content-no-picture p {
    margin-top: 0;
    margin-bottom: 0;
}

.news-list-item .news-content-no-picture p {
    margin-top: 0;
    margin-bottom: 0;
}

.news-list-item .news-headline {
    margin-bottom: 4px;
}

.news-image-container {
    float: left;
    margin: 3px 0 0 0;
}

.news-image-link {
    display: block;
    line-height: 0;
}

.news-content,
.news-content-no-picture {
    margin-left: 198px;
    line-height: 1.5em;
}

.news-content-no-picture {
    margin-left: 0;
}

.news-headline {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 6px;
}

.news-headline a {
    color: #003f61;
    line-height: 1.3em;
}

.news-event-item-date {
    display: block;
    margin-bottom: 2px;
}

@media screen and (max-width:649px) {
    .news-image-container {
        margin: 0 10px 0 0;
    }

    .news-image {
        height: auto;
        margin-top: 4px;
    }

    .news-content,
    .news-content-no-picture {
        margin: 0;
    }

}

@media screen and (max-width:359px) {
    .news-list-item {
        padding-top: 20px;
        padding-bottom: 18px;
        border-top: 1px solid #cccccc;
    }

    .news-list-item:first-child {
        border-top: 0;
    }

    .news-image-container {
        float: none;
        margin: 0 0 1em 0;
    }

    .news-image {
        margin: 0;
        width: 100%;
    }

}

/*
 * One News
 */
.news {
    /*font-family: "Droid Serif", serif;*/
    font-size: 14px;
}

.news__meta {
    font-family: "Open Sans", sans-serif;
}

.news__category {
    color: #5a5555;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
}

.news__content--teaser {
    clear: both;
    margin-bottom: 10px;
    line-height: 1.6em;
    font-weight: bold;
}

.news__content--teaser .news__content p {
    font-size: 16px;
    line-height: 1.4em;
    /*font-family: "Droid Serif", serif;*/
}

.news__image-container {
    margin: 20px 0;
}

.news__image-container .news__link {
    line-height: 0;
}

.news__image {
    max-width: 100%;
}

.news__headline {
    /*font-family: "Droid Serif", serif;*/
    font-size: 18px;
    line-height: 1.4em;
    margin-top: 35px;
}

.news__image-caption {
    color: #5a5555;
    /*font-family: "Open Sans", sans-serif;*/
    font-size: 10px;
    font-style: italic;
    line-height: 1.4em;
    margin-top: 5px;
}

.news__link {
    display: block;
}

.news__content p {
    /*font-family: "Droid Serif", serif;*/
    font-size: 14px;
    letter-spacing: 0.1px;
    line-height: 1.6em;
    margin-bottom: 18px;
}

.csshyphens .news__content p {
    hyphens: auto;
    text-align: justify;
}

.back--link {
    position: relative;
}

.back--link:before {
    content: '← ';
}

/**
 * Accordion
 **/
[data-accordion-trigger] {
    cursor: pointer;
}

.accordion__wrapper {
    margin-bottom: 40px;
}

.accordion {
    max-height: 0;
    transition: max-height .3s ease-in-out, visibility .3s ease-in-out;
    overflow: hidden;
    visibility: hidden;
}

.accordion.is-open {
    max-height: 400em;
    visibility: visible;
}

.no-js .accordion {
    max-height: 400em;
    visibility: visible;
}

.accordion--header {
    background: #ffffff;
    position: relative;
    margin-top: 50px;
    float: none;
    clear: both;
}

.accordion--header .content-box {
    margin-bottom: 0;
}

.accordion__item,
.accordion__item--filled {
    border-bottom: 1px solid #cccccc;
    transition: background .3s ease-in-out;
}

.accordion__item:first-child,
.accordion__item--filled:first-child {
    border-top: 1px solid #cccccc;
}

.accordion__item.is-active .accordion__header .fa:before,
.is-active.accordion__item--filled .accordion__header .fa:before,
.accordion__item.is-active .accordion__header .list__item--link:before,
.is-active.accordion__item--filled .accordion__header .list__item--link:before {
    content: \f068;
}

.accordion__item.is-active .accordion__header:hover,
.is-active.accordion__item--filled .accordion__header:hover {
    color: #aaaaaa;
}

.accordion__item:not(.is-active):hover,
.accordion__item--filled:not(.is-active):hover {
    background: rgba(204, 204, 204, 0.4);
}

.no-js .accordion__item,
.no-js .accordion__item--filled {
    background: #ffffff;
}

.no-js .accordion__item .accordion__header .fa:before,
.no-js .accordion__item--filled .accordion__header .fa:before,
.no-js .accordion__item .accordion__header .list__item--link:before,
.no-js .accordion__item--filled .accordion__header .list__item--link:before {
    content: \f068;
}

.accordion__item--filled {
    background: rgba(204, 204, 204, 0.2);
}

.accordion__item--filled.is-active {
    background: #ffffff;
}

.accordion__header {
    font-size: 14px;
    margin: 0;
    padding: 13px 7px 15px 30px;
    position: relative;
    hyphens: auto;
}

.accordion__header .fa,
.accordion__header .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .accordion__header [class*='owl-']:after,
.accordion__header .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .accordion__header .owl-prev:after,
.accordion__header .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .accordion__header .owl-next:after,
.accordion__header .list__item--link:before {
    font-size: 12px;
    position: absolute;
    left: 10px;
    top: 15px;
}

.accordion__content {
    padding: 0px 30px 20px;
}

.accordion__content p {
    line-height: 1.5em;
}

.accordion__content .link-list {
    margin-top: 10px;
}

.accordion__content-footer {
    margin-top: 20px;
}

.off-canvas {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.7);
    height: 100vh;
    width: 75%;
    position: fixed;
    transform: translate3d(-100%, 0, 0);
    top: 0;
    z-index: 1001;
    visibility: hidden;
    transition: all .4s ease-in-out;
}

.off-canvas.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    overflow-y: auto;
}

.off-canvas .accordion {
    background: #f7f7f7;
    box-shadow: 0 -2px 3px 0px rgba(51, 51, 51, 0.3);
}

.off-canvas .funktions_navi {
    position: relative;
    z-index: 1;
}

.off-canvas .funktions_navi a {
    transition: background .3s ease-in-out;
}

.off-canvas .funktions_navi a.is-active {
    background: #f7f7f7;
}

.off-canvas .login {
    padding: 14px 14px 0;
}

.off-canvas .search {
    padding: 14px;
}

@media screen and (min-width:650px) {
    .off-canvas {
        width: 45%;
    }

}

/**
 * Videos
 **/
.responsiv-video {
    position: relative;
    padding-bottom: 55%;
    padding-top: 15px;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.responsiv-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.csc-header {
    line-height: 1.5rem;
    margin: 40px 0px 0px;
}

.csc-header.first {
    margin-top: 0;
}

.csc-firstHeader {
    margin-top: 0;
}

.csc-header-n1 {
    margin-top: 0;
}

.csc-default {
    margin-bottom: 20px;
}

.csc-default ol {
    margin-left: 19px;
}

.csc-default ol li {
    margin-top: 5px;
}

.csc-default ul,
#content ul,
.content-box ul {
    list-style: square;
    list-style-position: outside;
    padding: 3px 0px 0px 12px;
}

.csc-default ul li,
.content-box ul li {
    padding: 3px 0 0 0;
}

#content ul li {
    padding: 6px 0 0 0;
}

.csc-default ul,
#content ul,
.content-box ul {
    list-style: square;
    list-style-position: outside;
    padding: 3px 0px 0px 12px;
}

.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
}

.content-box p {
    padding-left: 10px;
    padding-right: 10px;
    hyphens: auto;
}

.content-box p:first-child {
    padding-top: 10px;
}

.content-box p:last-child {
    padding-bottom: 10px;
}

.content-box img {
    max-width: 100%;
    height: auto;
}

.content-box .csc-header {
    position: relative;
    margin: 0px;
}

.content-box .csc-header:before {
    content: "\f138";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    margin: 0;
    top: 12px;
    left: 12px;
    font-size: 16px;
    display: inline-block;
    color: #CCCCCC;
}

.content-box .csc-header h1,
.content-box .csc-header h2,
.content-box .csc-header h3,
.content-box .csc-header h4,
.content-box .csc-header h5,
.content-box .csc-header h6 {
    border-left: 4px solid #cccccc;
    font-size: 16px;
    margin: 0;
    line-height: 1.2em;
    padding: 11px 7px 11px 30px;
    position: relative;
    hyphens: auto;
    word-break: break-word;
}

.content-box .csc-header .content-box-header-headline .fa,
.content-box .csc-header .content-box-header-headline .owl-theme--hs .owl-nav [class*='owl-']:after,
.owl-theme--hs .owl-nav .content-box .csc-header .content-box-header-headline [class*='owl-']:after,
.content-box .csc-header .content-box-header-headline .owl-theme--hs-slider .owl-prev:after,
.owl-theme--hs-slider .content-box .csc-header .content-box-header-headline .owl-prev:after,
.content-box .csc-header .content-box-header-headline .owl-theme--hs-slider .owl-next:after,
.owl-theme--hs-slider .content-box .csc-header .content-box-header-headline .owl-next:after,
.content-box .csc-header .content-box-header-headline .list__item--link:before,
.content-box .csc-header .content-box-header-headline .owl-theme--hs .owl-nav [class*='owl-']:after,
.content-box .csc-header .owl-theme--hs .owl-nav .content-box-header-headline [class*='owl-']:after,
.content-box .csc-header .content-box-header-headline .owl-theme--hs-slider .owl-prev:after,
.content-box .csc-header .owl-theme--hs-slider .content-box-header-headline .owl-prev:after,
.content-box .csc-header .content-box-header-headline .owl-theme--hs-slider .owl-next:after,
.content-box .csc-header .owl-theme--hs-slider .content-box-header-headline .owl-next:after,
.content-box .csc-header .content-box-header-headline .list__item--link:before {
    color: #cccccc;
    font-size: 16px;
    position: absolute;
    top: 12px;
    left: 8px;
}

.content-box .csc-default > p {
    padding: 10px;
}

.content-box .bodytext {
    padding-left: 10px;
    padding-right: 10px;
}

.tx-getpage-pi1 .index-group li {
    display: inline-block;
    width: 140px;
    min-height: 25px;
}

figure.csc-textpic-image {
    margin-bottom: 0px !important;
}

figure.csc-textpic-image img {
    max-width: 100% !important;
    height: auto;
    display: inline-block;
}

.csc-textpicHeader h1:first-child {
    margin-top: 0px;
}

.csc-textpicHeader h2:first-child {
    margin-top: 0px;
}

.csc-textpicHeader h3:first-child {
    margin-top: 0px;
}

.csc-textpicHeader h4:first-child {
    margin-top: 0px;
}

.csc-textpicHeader h5:first-child {
    margin-top: 0px;
}

.csc-textpicHeader h6:first-child {
    margin-top: 0px;
}

.csc-textpic-imagewrap {
    margin: 0px !important;
}

.csc-no-leftmargin {
    margin-left: 12px !important;
}

.tx-lsfcache2-pi1 h4 {
    font-size: 1rem;
}

.top-margin {
    margin-top: 15px;
}

.tx-solr-relevance-bar {
    height: 12px !important;
}

.mcl-nobullets {
    list-style-type: none !important;
}

.col-lg-2 ul {
    margin-left: 12px;
}

.col-lg-2 ul li {
    font-size: 1.1rem;
}

.col-lg-1 ul {
    margin-left: 25px;
}

.col-sm-2 .content-box ul {
    padding-bottom: 5px;
}

.col-sm-2 .content-box .news-latest-container {
    padding: 0 10px;
}

.col-sm-2 .content-box .news-latest-item {
    margin-top: 15px;
}

.col-sm-2 .content-box .news-latest-item .news-latest-date {
    color: #aaaaaa;
    display: block;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 6px;
}

.col-sm-2 .content-box .news-latest-item h3 {
    color: #003f61;
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    font-style: normal;
    margin: 0;
}

.col-sm-2 .content-box .news-latest-item:last-child {
    margin-bottom: 10px;
}

.col-sm-2 .content-box .news-latest-item:first-child {
    margin-top: 0px;
}

ul.link-list {
    margin: 5px 0px 0px !important;
}

table.studgang_liste th {
    text-align: left;
    font-weight: bold;
    border: solid 1px #CCC;
    padding: 8px;
}

.csc-textpic-intext-left ul {
    padding-left: 12px;
    margin-left: 0px;
}

.csc-textpic-intext-left ol {
    list-style-position: inside;
    margin-left: 0px;
}

.csc-textpic-intext-left .csc-textpic-imagewrap {
    padding-right: 10px;
}

.csc-textpic-intext-left-nowrap .csc-textpic-imagewrap {
    padding-right: 10px;
}

.csc-textpic-intext-right .csc-textpic-imagewrap {
    padding-left: 10px;
}

.csc-textpic-intext-right-nowrap .csc-textpic-imagewrap {
    padding-left: 10px;
}

.csc-mailform-field {
    overflow: auto;
}

.csc-mailform-field label {
    width: 30%;
    float: left;
}

.csc-mailform-field input,
.csc-mailform-field textarea {
    display: inline-block;
    width: 70%;
    float: right;
    margin-bottom: 5px;
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 5px 5px 5px 5px;
}

.csc-mailform-field input[type="submit"] {
    background: #003f61;
    color: #ffffff;
    padding: 8px 14px;
    transition: background .3s ease-in-out;
}

.csc-mailform-field input[type="submit"]:hover {
    background: #006094;
}

.col-lg-1 .target-group-content:after {
    content: " ";
    clear: both;
    display: table;
}

@media screen and (min-width:450px) and (max-width:649px) {
    .col-lg-1 {
        margin-top: 36px;
    }

    .col-lg-1 .nav-list-box-caption {
        font-size: 1.16rem;
        top: 50%;
    }

    .pagination {
        margin-bottom: 0px;
    }

}

@media screen and (min-width:994px) {
    .funktions_navi .level1 > li:first-child {
        padding-right: 0;
    }

    .funktions_navi .level1 > li:nth-child(5) {
        padding: 0px;
    }

}

li.pagination-list-item {
    padding: 0 !important;
    margin: 0 !important;
}

hr.clearer,
.news-list2-container hr.clearer,
.news-list3-container hr.clearer,
.news-single-item hr.cl-left,
.news-single-item hr.cl-right {
    background: #aaaaaa;
    clear: both;
    height: 1px;
    border: none;
    padding: 0;
    margin: 0;
}

hr,
.divider hr {
    height: 1px !important;
    border: none;
    background: #aaaaaa;
    margin-top: 1em;
    margin-bottom: 1em;
}

.tx-irfaq-dynheader {
    cursor: pointer;
    overflow: hidden;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tx-rscontentcolumn-pi1 .csc-default {
    margin-bottom: 10px;
}

ul.multicolumnContainer {
    list-style: none !important;
    margin: 0px;
    margin-bottom: 10px;
}

blockquote {
    padding: 10px 50px 0;
    margin: 0 20px;
    position: relative;
}

blockquote:before {
    content: "\f10e";
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3em;
    position: absolute;
    color: #cccccc;
}

blockquote p {
    margin-left: 50px;
}

figcaption {
    font-size: 11px;
}

.tx-hsogallery ul {
    list-style: none !important;
    margin-left: 0px;
    margin-right: 0px;
}

.tx-hsogallery li {
    margin-left: 0px;
    margin-right: 0px;
}

.tx_hsotemplate__text h1,
.tx_hsotemplate__text h2,
.tx_hsotemplate__text h3,
.tx_hsotemplate__text h4,
.tx_hsotemplate__text h5,
.tx_hsotemplate__text h6 {
    padding-left: 10px;
    padding-right: 10px;
}

.calendar__table ul.event-list {
    margin: 0 !important;
    padding: 0 !important;
}

.calendar__table li.event-item {
    padding: 10px !important;
}

.listOPunkt li {
    list-style: none;
}

.symbol-gross {
    font-size: 1.5em;
    line-height: 1.5em;
    vertical-align: middle;
    width: 2em;
}

.tx-mwkeywordlist-pi1 {
    font-family: "Open Sans", sans-serif !important;
}

.tx-mwkeywordlist-pi1 h2 {
    font-family: "Open Sans", sans-serif !important;
    font-size: 1.2em !important;
    margin: 1.3em 0 .6em 0 !important;
    padding: 0 !important;
}

.csc-textpic-caption {
    color: #777777;
}

.tx-getpage2-pi1 .index-group li {
    width: 130px;
    float: left;
}

.owl-carousel .owl-item.active img {
    opacity: 1 !important;
}

.tx-powermail {
    width: auto !important;
}

table.tx-dmcbrowsesoap-pi1 {
    border: none !important;
}

table.tx-dmcbrowsesoap-pi1 td {
    border: none !important;
}

table.tx-dmcbrowsesoap-pi1 tr {
    background: transparent !important;
}

.tx-solr ol {
    list-style-type: none;
}

.csc-textpic-intext-left ul li {
    margin-left: 6px;
}

.news-image-container a img {
    width: 180px;
    height: auto;
}

.tx_column_ansphrechpartner .column1 {
    width: 100% !important;
}

.tx_column_ansphrechpartner .column2 {
    display: none;
}

@media screen and (max-width:994px) {
    #personDetail .content-box__image-wrapper figcaption {
        margin: 0px;
        width: 100%;
    }

}

@media screen and (min-width:994px) and (max-width:1170px) {
    #personDetail .content-box__image-wrapper figcaption {
        margin: 0px;
        width: 320px;
    }

}

@media screen and (max-width:649px) {
    .multicolumnContainer li.column {
        width: 100% !important;
    }

}

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Tables
 * @author: Christian Obermann
 * @last_modify: 2016-06-15
 **/
#auszeichnungen {
    width: 100%;
}

#auszeichnungen img {
    padding: 0.5%;
    width: 10.8%;
}

/**
 * Extensions
 **/
.tx-getpage-pi1 .index-group li {
    display: inline-block;
    width: 140px;
    min-height: 25px;
    list-style-type: none;
}

.tx-getpage-pi1 .index li {
    list-style-type: none;
}

.tx-powermail .powermail_fieldset .powermail_label {
    width: 32% !important;
}

.tx-powermail .powermail_fieldset .powermail_field,
.tx-powermail .powermail_fieldset .powermail_radio_outer,
.tx-powermail .powermail_fieldset .powermail_captcha_outer,
.tx-powermail .powermail_fieldset .powermail_check_outer,
.tx-powermail .powermail_fieldset .powermail_fieldwrap_text,
.tx-powermail .powermail_fieldset .powermail_fieldwrap_file_inner ul:not(.parsley-errors-list) {
    width: 65% !important;
}

.tx_hsotemplate_warning {
    color: red;
    font-style: italic;
    margin-bottom: 1rem;
}

ul.tx_hostemplate_newsletter_mi {
    list-style-type: none;
    margin: 0px !important;
    padding: 0px !important;
}

.tx_hostemplate_newsletter_mi li {
    width: 50%;
    display: block;
    box-sizing: border-box;
    float: left;
}

# Modified: 2019-11-13 - Christian Obermann

#.csc-textpic-intext-right-nowrap .csc-textpic-text { 
#	margin-right: 0px; 
#}
#.csc-textpic-intext-left-nowrap .csc-textpic-text { 
#	margin-left: 0px; 
#}

.news-img-wrap {
  padding: 0px; }

.news-img-wrap a {
  padding: 0px !important;
  border: none !important; }

.news-image-container {
  margin: 0px !important; }

.news__content--teaser .news__content p {
  line-height: 1.4em;
  font-family: "Droid Serif", serif; }

.news {
  font-family: "Open Sans", sans-serif;
  font-size: 12px; }

/**
 * @project: Hochschule Offenburg, Website
 * @desc: Print SCSS
 * @author: Prabin Dahal
 * @last_modify: 2019-08-05
 **/
@media print {
  @page {
    size: A4;
    margin: 15mm 10mm 15mm 10mm; }
  html,
  body {
    width: 210mm;
    height: 282mm;
    background: #FFF;
    overflow: visible; }

  body {
    padding: 0; }

  footer {
    display: none !important; }

  table {
    page-break-inside: auto; }
    table thead {
      display: table-header-group; }
    table tr {
      page-break-inside: avoid;
      page-break-after: auto; }
    table tfoot {
      display: table-footer-group; }

  .container.hide-on-mobile,
  .zielgruppen_navi,
  .funktions_navi,
  .overlay,
  .hide-on-desktop,
  .owl-carousel,
  .owl-carousel.owl-loaded {
    display: none !important; }

  #leftcol,
  #divider,
  #tx_hsotemplate_owl_slider {
    display: none !important; }

  header #logo img {
    float: right;
    display: inline-block; }

  #content1 {
    width: 100% !important; } }

/*# sourceMappingURL=styles.css.map */
