@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 300;
    src: local(''),
    url('../fonts/merriweather-v30-latin-300.woff2') format('woff2'),
    url('../fonts/merriweather-v30-latin-300.woff') format('woff');
}

@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('../fonts/merriweather-v30-latin-regular.woff2') format('woff2'),
    url('../fonts/merriweather-v30-latin-regular.woff') format('woff');
}


@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('../fonts/merriweather-v30-latin-700.woff2') format('woff2'), url('../fonts/merriweather-v30-latin-700.woff') format('woff');
}

@font-face {
    font-family: 'Merriweather Sans';
    font-style: normal;
    font-weight: 300;
    src: local(''),
    url('../fonts/merriweather-sans-v22-latin-300.woff2') format('woff2'),
    url('../fonts/merriweather-sans-v22-latin-300.woff') format('woff');
}

@font-face {
    font-family: 'Merriweather Sans';
    font-style: normal;
    font-weight: 400;
    src: local(''),
    url('../fonts/merriweather-sans-v22-latin-regular.woff2') format('woff2'),
    url('../fonts/merriweather-sans-v22-latin-regular.woff') format('woff');
}

@font-face {
    font-family: 'Merriweather Sans';
    font-style: normal;
    font-weight: 700;
    src: local(''),
    url('../fonts/merriweather-sans-v22-latin-700.woff2') format('woff2'),
    url('../fonts/merriweather-sans-v22-latin-700.woff') format('woff');
}

/* -------------------------------------------------------------------------- */

:root {
    /* Colors */
    --ut-primary: #f29001;
    --ut-accent: #0071bc;
    --ut-light: #f2f2f2;
    --ut-dark: #444;
    --ut-grey-1: #d3d3d3;
    /* Typography */
    --ut-text-color: #444;
    --ut-link-color: #4b9800;
    --ut-btn-bg-color: #f29001;
    --ut-font-base: 'Merriweather Sans', sans-serif;
    --ut-font-serif: 'Merriweather', serif;
    /* Borders */
    --ut-border-radius: 10px;
    --ut-border-radius-sm: 5px;
    --ut-border-radius-lg: 50px;
}

/* -------------------------------------------------------------------------- */

body.debug #ad-banner, body.debug .ad-banner, body.debug #headBanner {
    border: 1px solid red;
}

#ad-banner, .ad-banner {
    min-width: 120px;
    min-height: 90px;
    display: block;
}

#headBanner {
    min-height: 90px;
    margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------- */

body {
    margin: 0;
    padding: 170px 0 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--ut-font-base);
    background: white;
    color: var(--ut-text-color);
}

a {
    color: var(--ut-link-color);
    transition: all .3s ease;
}

a:hover {
    color: var(--ut-dark);
}


th {
    text-transform: uppercase;
}

th a, th h3 {
    font-size: .875rem;
    text-transform: uppercase;
    line-height: inherit;
}

ul, ol {
    margin-bottom: 1.5rem;
}

li {
    transition: background .3s ease;
}

h1 {
    font-family: var(--ut-font-serif);
    font-weight: bold;
    line-height: 1.4;
    color: var(--ut-dark);
    text-transform: none;
    margin-bottom: 1rem;
}

h2, h3, h4, h5, h6 {
    /*font-family: var(--ut-font-serif);*/
    font-weight: normal;
    line-height: 1.4;
    color: var(--ut-dark);
    text-transform: none;
}

h1 {
    font-size: 1.5rem;
}

h2, h3 {
    font-size: 1.25rem;
}

h2 + br {
    /* Fixing article headlines */
    display: none;
}

#container {
    text-align: left;
    position: static;
    max-width: 1240px;

    margin: 2rem auto 0 auto;

}

#pageContainer {
    position: static;
    border: none;
    background: none;
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: white;
}

#header > div {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;

    padding-left: calc(50vw - 1240px / 2);
    padding-right: calc(50vw - 1240px / 2);
}

.HeaderRight {
    margin: 0 20px 0 auto;
}

#menu {
    margin-bottom: 0;
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
    background: var(--ut-light);
    max-width: 1240px;
    padding-left: calc(50vw - 1240px / 2);
    padding-right: calc(50vw - 1240px / 2);
}


#menu li {
    align-items: center;
    justify-content: center;
    display: flex;
}

#menu li a {
    color: #666;
    font-size: 13px;
    align-items: center;
    font-weight: bold;

    padding: 1rem 0;
    display: flex;
    text-transform: uppercase;
}

#menu li.active, #menu li.active a {
    height: auto;
    padding: .5rem;
}

#menu li.active {
    background: none;
}

#menu li.active a {
    height: 100%;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    background: var(--ut-dark);
}

#menu li.Dividor {
    height: auto;
    padding: 0;
    border: 0;
}

#menu li.Dividor:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 100%;
    background: center center url(../downloads/bilder/bullet.png) no-repeat;
    background-size: contain;
}

.loginArea {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;

}

.loginArea div {
    margin: 0 5px 0 !important;
}

.loginButton, input.loginButton {
    height: auto;
    padding: 10px 1rem;
    border-radius: var(--ut-border-radius-lg);
    box-shadow: none;
    font-weight: normal;
    color: white;
    background: var(--ut-btn-bg-color);
    border: 1px solid white;
    transition: all .3s ease;
}

.loginButton a {
    color: white !important;
}

.loginButton:hover, .loginButton:hover a, input.loginButton:hover {
    color: var(--ut-light) !important;
    background: #777;
}

.TableHeader {
    width: auto;
}

.TableHeader.Grey {
    height: auto;
    /*color: #fff;*/
    background: var(--ut-light);
    border: none;
    font-size: .875rem;
    padding: 1rem 1rem;
    border-radius: var(--ut-border-radius-sm) var(--ut-border-radius-sm) 0 0;
}

.TableHeader > h2, .TableHeader > h3, .TableHeader > span {
    height: auto;
    letter-spacing: .1ex;
    padding-left: 0;
}

#startpage-loggedout .LighthouseBox {
    height: auto;
    padding: 40px 20px;
    background: white;
}

#startpage-loggedout .LighthouseBox > div > h1 {
    padding: 0;
    text-align: center;
    font-size: 2rem;
}

#startpage-loggedout .LighthouseBox .Ships {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

#startpage-loggedout .LighthouseBox .Ships > div {
    position: unset;
    width: auto;
    margin: 0;
    height: 50px;
}

#startpage-loggedout .LighthouseBox .Ships > div:first-of-type {
    margin: 0;
}

#startpage-loggedout .LighthouseBox .Ships > div:last-of-type {
    margin: 0;
}

.Page-Img {
    top: 50%;
    transform: translateY(-50%);
}

#content {
    margin: 0;
    display: flex;
    background: #fff;
}

#mainContent {
    width: 100%;
    padding: 0 .5rem;
}

#snippetBar {
    border-width: 0 1px 1px;
    flex-grow: 1;
    width: 30%;
    margin-left: 1rem;
    font-size: .875rem;
}

#startpage-loggedout .openEducation {
    padding: 10px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

#startpage-loggedout .openEducation div > h2 {
    margin: 0 0 1rem;
    padding: .5rem 1rem !important;
    font-size: 3rem;
    background: var(--ut-dark);
    font-family: var(--ut-font-serif);
    font-weight: bold;
}

#startpage-loggedout .openEducation div > h3 {
    margin: 0 0 20px;
    padding: .5rem 1rem !important;
    background: var(--ut-primary);
    display: inline-block;

}


#startpage-loggedout .left {
    float: none;
    /*width: 100%;*/
    opacity: .95;
}

#startpage-loggedout .openEducation > div.searchBox {
    margin: 0 !important;
}

#startpage-loggedout .openEducation > div.searchBox input:first-child {
    width: 400px;
    height: auto;
    padding: 1rem 1rem;
}

#searchform {
    display: flex;
}

div.searchSnippet #q {
    height: auto;
    padding: 1rem;
    border-color: var(--ut-primary);
    border-radius: 5px 0 0 5px;
}

div.searchSnippet .submitButton {
    border-radius: 0 var(--ut-border-radius-sm) var(--ut-border-radius-sm) 0;
}

div.searchSnippet input.submitButton {
    height: auto;
    padding: 0 1.5rem;
    background-color: var(--ut-primary);
    background-position: center;
    background-blend-mode: difference;
    margin: 0;
    border: none;
}

.userAvatars {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
}

#startpage-loggedout .userAvatars > div > h2 {
    font-size: 1.5rem;
    font-family: var(--ut-font-serif);
    font-weight:bold;
}

#startpage-loggedout .userAvatarsBox .Avatar {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

#startpage-loggedout .userAvatarsBox .Avatar .avatarTeaserBox {
    margin: 0;
    padding: .5rem 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#startpage-loggedout .userAvatarsBox .Avatar .avatarTeaserBox .furtherInfo1 {
    font-size: .875rem;
    font-weight: bold;
    white-space: nowrap;
}

#startpage-loggedout .documentPages {
    height: auto;
    padding-bottom: 10%;
    background-size: cover;
}

#startpage-loggedout .prizeSystem {
    display: flex;
}

#startpage-loggedout .threeColumn {
    width: calc(100% / 3);
    margin: 0;
    padding: 2rem;
    text-align: center;
}


#startpage-loggedout .prizeSystem > div > p {

    line-height: unset;
    margin-bottom: 2rem;
}

#startpage-loggedout .eLearning {
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

#startpage-loggedout .eLearning img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.NewsBox {
    display: flex;
    padding: 0 2rem;
}

div.news {
    width: 70%;
}

div.activities {
    order: 1;
    width: 30%;
    margin: 0 0 0 2rem;
    padding: 2rem;
    background: var(--ut-light);
    border-radius: var(--ut-border-radius-sm);
}

div.activities .avatarTeaserBox {
    padding: .5rem 0;
}

div.avatarTeaserBox h3 {
}

#page-home-loggedOut div.avatarTeaserBox .avatar {
    margin-right: .5rem;
}

#page-home-loggedOut div.avatarTeaserBox .body {
    float: none;
    width: auto;
    font-size: .875rem;
}

#page-home-loggedOut div.newsItem h2 {
    font-size: 1.15rem;
    font-weight: bold;
}

#page-home-loggedOut div.newsItem div.body {
    font-size: .875rem;
}

div.newsItem {
    display: flex;
    padding: .5rem 0;
    border-bottom: 1px dotted #ddd;
}

div.avatarSmall div.avatarImage {
    border: 1px solid #ddd;
    margin-top: .5ex;
}

div.partnerLinks {
    display: flex;
    align-items: center;
    padding: 2rem;
}


.cooperationsIcons {
    margin: 0;
    padding: 2rem;
    width: auto;
    text-align: center;
}

.cooperationsPartnerImages {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    padding: 1rem;
    gap: 1rem;
    align-items: center;
}

.cooperationsPartnerImages a {
    width: calc(100% / 3 - 1rem);
}

#startpage-loggedout .network .networkhead {
    margin: 0;
}

#startpage-loggedout .network h2 {
    padding: 1rem 0;
    margin: 0;
    font-size: 1.5rem;
}

#startpage-loggedout .network img {
    display: none;
}

.Universities li {
    font-size: .875rem;
    font-weight: bold;
    margin-bottom: .25rem;
}

#startpage-loggedout .linkBig {
    margin: 2rem 0 0;
    text-align: center;
}

#startpage-loggedout .linkBig a {
    padding: 10px 1rem;
    border-radius: var(--ut-border-radius-lg);
    color: white;

    background: var(--ut-accent);
}

.Partner {
    display: flex;
}


div.partnerOffer {
    width: auto;
    margin: 0;
    padding: 2rem;
}

div.partnerOffer:empty {
    display: none;
}

.Partner .partnerLinks {
    display: flex;
    flex-wrap: wrap;
}

#footer {
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*width: 100%;*/
}

#footer div.menuLinks {
    flex-flow: wrap;
    margin: 0;
    padding: 2rem 1rem;
    font-size: .875rem;
    background: var(--ut-accent);
}

#footer div.menuLinks > ul {
    /*width: 50%;*/
    /*margin-bottom: 20px;*/
}

div.snippet {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--ut-border-radius);
    background: var(--ut-light);
}

table th a {
    color: #fff;
}

.Toolbox {
    margin-bottom: 3rem;
}

.Toolbox table {
    background: none;
}

.Toolbox table thead {
    color: white;
    font-size: .875rem;
    letter-spacing: .1ex;
    background: var(--ut-primary);
}

.Toolbox table thead th:first-child {
    border-radius: var(--ut-border-radius-sm) 0 0 0;
}

.Toolbox table thead th:last-child {
    border-radius: 0 var(--ut-border-radius-sm) 0 0;
}

.Toolbox table thead th:only-child {
    border-radius: var(--ut-border-radius-sm) var(--ut-border-radius-sm) 0 0;
}

.Toolbox table > thead > tr > th > a > img {
    /*filter: brightness(0) invert(1);*/
}

.Toolbox table tr.evenRow {
    background: var(--ut-light);
}

.Toolbox table tr td:first-child {
    min-width: 30% !important;
}

.Toolbox table, .TableHeader {
    background-image: none;
    /*background-color: var(--ut-light);*/
}

.Toolbox .downloadFile {
    font-size: .875rem;
    /*    word-break: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;*/
}

ul.tabsForum, ul.tabsSubjects {
    /*background: white;*/
    /*border-bottom: 1px solid #ddd;*/
}

ul.tabs {
    display: flex;
    font-size: .875rem;
    letter-spacing: .1ex;
    text-transform: uppercase;
    overflow-x: auto;
    background: var(--ut-light);
    border-radius: var(--ut-border-radius-sm);
}

ul.tabs a {
    display: block;
}

ul.tabs li {
    height: auto;
    font-size: 100%;
}

ul.tabs li.active {
    color: white;
    background: var(--ut-dark);
}

ul.tabs li:hover {
    /*background: var(--ut-light);*/
}

ul.tabs a li.active, ul.tabs li.active a {
    color: white;
}

div.subjectPath {
    font-size: .875rem;
}


.Toolbox table thead th {
    height: auto;
    color: #fff;
    padding: .5rem 1rem;
    vertical-align: top;
}

.Toolbox thead {
    cursor: default;
}

.Toolbox thead tr th h3 {
    color: #fff;

    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.Toolbox td[colspan="2"] {
}

.actionRow td {
    padding: 1rem 1rem !important;
    background: white;
}

.actionLinks {
}

div.boxFunctionsMeta {
}

div.boxFunctionsMenu {
    margin-top: 1rem;
    padding: .5rem;
    font-size: .875rem;
    text-align: left;
    border-radius: var(--ut-border-radius);
}

div.boxFunctionsMenu ul, ul.boxFunctionsMenu {
    text-align: left;
    line-height: 1.25rem;
}

div.quickInfoRow {
    padding: .5rem 0;
    display: flex;
    margin: 0;
    line-height: 1.5;
    border-bottom: 1px solid var(--ut-light);
    word-break: break-word;
    hyphens: auto;
}

div.quickInfoRow h2 {
    display: flex;
    width: 100%;
    font-size: 16px;
}

div.quickInfoRow label {
    min-width: 35%;

    text-transform: uppercase;
}

div.quickInfoRow div {
    /*margin-left: 5px;*/
}

div.quickInfoRow span {
}

div.quickInfoRow h2 strong {
    font-size: 1rem;
}

.breakEarly .boxFunctionsMeta .fuckIt {
    max-width: none;
}

.ButtonShadow {
    border: none;
}

.Toolbox tbody td, .Toolbox tfoot td {
    padding: .75rem;
}


.Pagination {
    font-weight: bold;
    font-size: .875rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.Pagination td {
    padding: 0 !important;
}

.Pagination.Squared {
    font-size: .875rem;
    background: #fff;
}

.Pagination.Small a, .Pagination.Small span, .Pagination.Squared a {
    font-size: .875rem;
    background: none;
    padding: 0;
    margin-left: 3px;
}


.Toolbox table .downloads, .Toolbox table .rating, .Toolbox table .downloadRating, .Toolbox table .downloadCount, .Toolbox table .forumPostingsCount, .Toolbox table .forumVisitors, .Toolbox table .threadMessageCount, .Toolbox table .threadViewCount {
    white-space: nowrap;
    font-size: .875rem;
}

.Toolbox:not(.Points):not(.SpecialPoints):not(.Rating):not(.Pm) tbody > tr > td:first-of-type, .Toolbox:not(.Points):not(.SpecialPoints):not(.Rating):not(.Pm) thead > tr > th:first-of-type {
    width: 35%;
}

.threadLastPosting {
    font-size: .875rem;
}

td.name {
    font-weight: bold;
}

td.author {
    font-size: .875rem;
}

td.downloadUpload {
    font-size: .875rem;
}

td.downloadUpload img {
    margin-left: 5px;
}

td.currentDownloads {
    font-weight: bold;
}

td.downloadSubject {
}

td.downloadSubject h2 {
    font-weight: bold;

    margin: 0;
}

td.downloadName {
    font-size: .875rem;
}

#treecrumbs {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 1rem 1rem;
    align-items: center;
}

#treecrumbs .treecrumbsLabel {
    margin: 0 !important;
    padding: 0 !important;
    font-size: .875rem;
    font-weight: bold;
    white-space: nowrap;
    width: auto !important;
    height: auto !important;
}

#treecrumbs .treecrumbsItem {
    margin: 0;
    padding: 0 10px 0 10px;
}

#treecrumbs .treecrumbsItem a {
    font-size: .875rem;
}


.Row {
    display: flex;
}

.Row .clear {
    /*display: none;*/
}


#Job h1.Headline {
    margin-top: 29px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5rem;
}

#Job div.InfoTable {
    padding: 10px;
}

#Job ul, #ag ol {
    padding-left: 40px;
    padding-right: 45px;
}

#Job li {
    list-style: disc;
    padding-left: 7px;
    padding-top: 2px;
}


#jobboard h1.Headline {
    padding: 40px;
    margin: 0;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

#jobboard hr {
    margin: 0;
    width: 100%;
    height: 1px;
}

#jobboard .JobBox {
    padding: 5px;
    display: block;
    float: left;
    width: 300px;
}

#jobboard .Jobs {
    word-break: break-word;
    margin-top: 20px;
}

#jobboard .JobBox .Title {
    padding: 10px 10px 10px 5px;
}

#jobboard .JobBox .Image {
    width: 300px;
    height: 150px;
}

#jobboard .JobBox div.InfoData {
    padding: 10px 10px 10px 5px;
}

#jobboard hr.Divider {
    padding: 10px 10px 10px 5px;
    margin-top: 15px;
    margin-bottom: 15px;
}

#jobboard .JobBox div.InfoData > div {
    margin-bottom: 4px;
}

#jobboard .moreJobs {
    font-weight: 700;
    margin-top: 50px;
}

#jobboard .jobboardButton {
    margin-right: 25px;
    padding: 10px;
    background-color: #b0e613;
    cursor: pointer;

    font-weight: 700;
    float: left;
}

#jobboard .jobboardButton a {
    color: #000000;
    cursor: pointer;
}


.job-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: space-between;
}

.job-flex h3 {
    min-height: 5.25rem;
}

.job-flex .Box .InfoBox {

}

.job-flex .Box .Image {

}

.Job {
    display: flex;
    flex-direction: column;
    flex-basis: 49%;
}


.Job .InfoBox > div {
    margin-bottom: 5px;
}

.Job .InfoBox > div:last-of-type {
    margin-bottom: 0;
}


.Job .Box {
    display: flex;
    background-color: #F5F5F5;
    flex-grow: 1;
    padding: .5rem;
    justify-content: space-between;
}


div.sideMenu {
    padding: 0;
    font-size: .875rem;
    font-weight: normal;
}

div.sideMenu .first {
    margin-bottom: .5rem;
    padding-bottom: .5rem;
    color: #444;
    /*font-weight: bold;*/
    border-bottom: 1px solid #ddd;
}

div.sideMenu ul {
    margin: 0 0 2rem;
}

div.sideMenu li {
    padding: 0;
}

div.sideMenu li a {
    display: block;
    font-weight: normal;
}

div.sideMenu li.active {
    padding: .25rem .5rem;
    /*margin-left: -.5rem;*/
    font-weight: normal;
    background-color: var(--ut-dark) !important;
    border-radius: var(--ut-border-radius-sm);
}

.SingleNews .Message, div.articleDetail, div.articleOverview {

}

div.articleDetail img.teaserPhoto {
    margin: 0 0 1rem 1rem;
    border-radius: var(--ut-border-radius-sm);
}

div.ArticleCategory {
    display: flex;
    flex-direction: column;
}

div.article {
    max-width: none;
    background: none;
    border-bottom: 1px dotted #ddd;
    position: relative;
    padding: 1rem 0 1rem 140px;
    margin-bottom: 1rem;
}

div.article .teaser {
    height: auto;
    font-size: .875rem;
    /*line-height: 1.5;*/
}

div.article .quickInfo {
    font-size: .875rem;
}

div.article .quickInfo .readOn {
    font-weight: bold;
}

img.teaserPhoto.news {
    margin: 0;
}

.article img, .articlecontent img {
    position: absolute;
    top: 1rem;
    left: 0;
    width: 120px;
    height: auto;
    border-radius: var(--ut-border-radius);
}

div.article h2.headline {
    height: auto;
    margin: .5rem 0 1rem;
    text-align: left !important;
    line-height: 1.4;
}

.magazineCategorySmall {
    margin: 0 0 .5rem;
    text-transform: uppercase;
    font-size: .875rem;
}

div.article.articleRight {
    margin: 0;
}

.magazineCategoryTitle {
    color: var(--ut-primary);
    font-size: .875rem;
    padding: 0 0 .5rem 0 !important;
    letter-spacing: .1ex;
    border-bottom: 1px solid #ddd;
}

.magazineCategoryTitle::before {
    /*content: '// ';*/
    /*color: var(--ut-primary);*/
}

div.articleOverview {
    margin: 0;
    text-align: left;
}

.articleHeadline {
    color: var(--ut-dark);
    font-size: 2rem;
    text-transform: none;
}

.articleTeaser {

    font-weight: bold;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.SingleNews .body, div.articleDetail div.articleText {

    line-height: 1.75;
}

div.articleSingle {
    padding: 0;
}

div.Hr {
    margin: 1rem 0;
}

.info-placement-columns {
    flex-wrap: wrap;
    display: flex;
    padding: .5rem;
    justify-content: space-between;
}

.info-placement-columns > div {
    flex-basis: calc(100% / 3 - .5rem);
    flex-direction: column;
    display: flex;
}

.info-placement-columns > div p {
    width: auto !important;
}

.ButtonsLarge:hover, .ButtonsMiddle:hover, .ButtonsLarge:focus, .ButtonsMiddle:focus {
    background: var(--ut-primary);
}

#startpage-loggedout .network > div.Universities {
    margin-top: 1rem;
}

#startpage-loggedout .network > div.Universities ul {
    margin-left: 0;
    width: calc(100% / 3 - 5px);
}

.subjectName h2, .downloadSubject h2, .tableName.filename h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: bold;
}

.subjectName a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lastPosting {
    font-size: 14px;
}

.newestFile {
    font-size: 14px;
}

.JumpLast {
    margin-left: 5px;
}

.boxBorder {
    display: none;
}

.course {
    word-break: break-word;
    position: relative;
    padding: 0 0 0 130px !important;
}

.course > img {
    position: absolute;
    left: 0;
}

.boxContainer > h2 {
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/
    /*min-height: 4rem;*/
}

#pageFaq > h1 {
    text-align: center;
    color: var(--ut-primary);
}

#pageFaq div.answer {
}

#pageFaq div.answer ul {
    margin-left: 0 !important;
}

.documentsIndexTableContainer {
    display: flex;
    gap: 20px;
    margin: 20px 0 0;
}

.documentsIndexTableItem {
    width: 50%;
}

.documentsIndexTable {
    margin: 20px 0 0;
}

.documentsIndexTable .void {
    width: 0;
}

.documentsIndexTable .documentTitle {
    font-size: 1.2rem;
}

.documentsIndexTable .documentTitle a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.documentsIndexTable th {
    font-size: 12px;
    white-space: nowrap;
}

.documentsIndexTable table {
    /*word-break: normal;*/
}

.TagCloud {
    padding: .5rem;
    border: 3px solid var(--ut-link-color);
    border-radius: var(--ut-border-radius-sm);
}

.TagCloud label {
    width: 160px;
}

.TagCloud input {
    max-width: 95%;
}

/* Pagination */
a[data-step] {
    /*font-size: .875rem;*/
    display: inline-block;
    /*font-weight: bold;*/
    margin-bottom: 1rem;
    /*padding: 5px 10px;*/
    /*border: 1px solid #ddd;*/
}

#pageThread div.MessageHead {
    height: auto;
    font-size: .875rem;
    margin-bottom: 1rem;
}

#searchContainer label {
    width: auto;
    padding: 5px 0;
    text-align: left;

}

#searchContainer input {

}

#searchform .TextButton {
    width: auto;
}

#searchContainer .SubmitButton {
    height: auto;
    margin: 0;
    padding: 0 1rem;
    line-height: normal;
    border: none;
    background-color: var(--ut-dark);
    background-position: center;
}

.TableStyle {
    display: flex;
}

.LoginBox p {
    margin-bottom: 0;
}


div.desc {
    border: none;
    background: var(--ut-light);
    padding: 1rem;
    /*font-size: .875rem;*/
    margin: 0 0 1rem !important;
    line-height: 1.5;
}

.filter-form {
    display: flex;
    gap: .5rem;
    padding: 1rem 0;
}

.MainBody {
    /*position: relative;*/
}

.advisorButton {
    z-index: 10010;
}

#cboxOverlay, #cboxWrapper, #colorbox {
    z-index: 10040 !important;
}

.LoginBox h2 {

    font-weight: bold;
}

.toast-container {
    z-index: 10060 !important;
}

div.userStatus {
    padding: 10px !important;
    font-size: .875rem;
    background-size: cover;
}

div.userStatus ul.LinkMenu {
    margin-bottom: 0;
}

div.userStatus div.userWelcome strong a {

}

td.posting, td.upload {
    background-position: right 1rem;
}

table.form td label {
    white-space: nowrap;
}

input.Register {
    padding: 10px 20px !important;
    height: auto !important;
    width: auto !important;
}

input[type=submit] {
    padding: 2px 20px;
    color: #fff !important;
    background: var(--ut-link-color);
    border: none;
}

table.threadMessageOverviewTable .messageBody, table.threadMessageOverviewTable {
    max-width: none;
}

.text-center {
    text-align: center;
}

.tagbox {
    margin-bottom: 1rem;
}

#Slide2 .item {
    height: 150px;
}

#Slide2 .item .head {
    font-size: .85rem;
}

.CustomBanner img {
    max-width: 100% !important;
    height: auto !important;
}

.actionList {
    margin-bottom: 0;
}

.boxFunctionsMenu {
    margin-bottom: 0;
}

.partnerOffers {
    display: flex;
    align-items: center;
    /*width: 50%;*/
}

div.partnerLinks.Quad {
    margin: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

div.partnerLinks img.partnerLogo {
    margin: 0;
}

.cooperationsIcons > img {
    margin: 0;
    display: block;
}

.ButtonsBigColorFitting {
    white-space: nowrap;
}

/* -------------------------------------------------------------------------- */

@media (max-width: 1490px) {
    #wideSkyscraper {
        display: none;
    }


}

/* -------------------------------------------------------------------------- */

@media (max-width: 960px) {
    #container {
        margin-top: 3.5rem;
    }

    #footer div.menuLinks > ul {
        width: 50%;
        margin-bottom: 20px;
    }

    div.partnerLinks.Quad {
        width: auto;
    }

    .user_feedback {
        display: none;
    }

    .breakEarly .boxFunctionsMeta {
        position: relative;
        float: none;
        width: 100%;
        max-width: none;
        min-height: 100%;
    }

    .breakEarly .boxFunctionsMenu {

        width: 100%;
        max-width: none;
        float: none;
        position: relative;
        min-height: 270px;
    }

    .breakEarly .inlineBanner {
        bottom: auto;
        right: auto;
        display: inline-block;
        position: relative;
        max-width: none;
    }

    .breakEarly div.ParentQuickInfo.Special {
        margin-top: 1rem;
        width: 100%;
    }

    .breakEarly .DownloadColumn {
        width: 44%;
        vertical-align: top;
        display: inline-block;
    }

    .breakEarly .boxFunctionsMenu .SocialBox, .breakEarly .boxFunctionsMenu .DlButton {
        text-align: left;
    }


    #content {
        width: 100%;
        flex-direction: column;
    }

    /*#mainContent {
        max-width: none;
        padding: 0 .5rem;
        width: 100%;
    }*/
    #snippetBar {
        clear: both;
        width: 100%;
        float: none;
        display: flex;
        max-width: none;
        flex-wrap: wrap;
        margin: 1rem 0 0;
    }

    #mainContent {
        width: 100%;
        max-width: none;
    }


    div.snippet {
        margin: 0 0 1px;
        padding: 10px;
        width: 50%;
    }

    div.snippet {
        width: 100%;
        word-break: break-all;
        margin: 0 0 1px;
    }


    #menu {
        width: 100%;
        margin: 0;
        background: #eee;
        flex-wrap: wrap;
    }

    #menu li {
        margin: 0;
        padding: 0;
        line-height: 20px;
        width: 33%;
    }


    #menu li {
        justify-content: left;
    }

    #menu li a, #menu li.active a {
        padding: 5px 7px;
    }

    #menu li a {
        /*font-size: 120%;*/
    }

    #menu li.active, #menu li.active a {
        height: auto;
        font-weight: normal;
    }

    #menu li.active {
        padding: 0;
    }

    #menu li.Dividor {
        display: none;
    }

    #menu + img {
        display: none;
    }

    .Box {
        width: calc(100% - 10px) !important;
        /*margin-left: 100px!important;
        margin-right: 100px!important;*/
        margin-bottom: 30px !important;
    }

    .emailsTextarea {
        max-width: 930px !important;
        width: 100% !important;
    }
}


/*
 * @author anschaef
 *
 * Primary: #4B9800
 */

@media (max-width: 768px) {

    .documentsIndexTableContainer {
        flex-direction: column;
    }

    .documentsIndexTableItem {
        width: auto;
    }

    #header {
        margin-top: 90px;
    }

    #headBanner {
        position: absolute;
        top: 0;
        left: 0;
        height: 90px;
        width: 100%;
        margin-bottom: 0;
        overflow: hidden;
    }

    .advisorContent {
        width: auto !important;
    }

    .advisorContent > div:first-child {
        display: flex;
        flex-direction: column;
    }

    .advisorContent div.last {
        width: auto !important;
        margin-left: 0 !important;
    }

    div.TopGiro .Body {
        display: flex;
    }

    .tableAdvisorContainer {
        zoom: .9;
        overflow-x: auto;
    }

    .info-placement-columns > div {
        flex-basis: calc(100% / 2 - .5rem);
        align-items: center;
    }

    .documentsIndexTable th {
        /*writing-mode: vertical-rl;*/
        /*transform: rotate(-180deg);*/
        /*vertical-align: middle;*/
    }

    .Toolbox table thead th {
        /*writing-mode: vertical-rl;*/
        /*transform: rotate(-180deg);*/
        /*vertical-align: middle;*/
    }

    table#quizTable tr th.quizhead {
        /*writing-mode: vertical-rl;*/
        /*transform: rotate(-180deg);*/
        /*vertical-align: middle;*/
    }

    table#quizTable tr td:first-child {
        white-space: nowrap;
    }

    .TableStyle {
        /*flex-direction: column;*/
    }

    .ButtonsLarge {
        padding: .5rem 1rem;
    }


    #startpage-loggedout.contentStart img[style]:first-child {
        display: block;
        max-width: 100%;
        height: auto;
        margin-left: auto !important;
        margin-right: auto !important;
    }


    .clearfix::after {
        content: "";
        clear: both;
        display: table;
    }

    *:not(select):not(input):not(textarea) {
        box-sizing: border-box;
    }

    body {
        padding-top: 270px;
        line-height: 1.2;
        font-size: 14px;
    }

    h1, h2, h3, h4, h5, h6 {
        padding: 0 !important;
        line-height: 1.3;
        text-transform: none !important;
    }

    h1 {
        margin: 10px 0;
        padding: 0 0 .5rem !important;
        font-weight: bold !important;
        font-size: 16px !important;
    }

    h2, h3, h4, h5, h6 {
        margin: 10px 0;
        font-weight: bold !important;
        font-size: 14px !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    #rankingBoxContainer .More {
        text-align: right;
        margin-right: 30px;
        margin-top: 10px;
    }

    #container {
        margin-top: 1.5rem;
        width: 100%;
        min-width: 360px;
    }


    #pageContainer .Info {
        top: 300px;
        right: 10px;
    }

    .userStatus .RightWrapper {
        margin-right: 5px;
    }

    #pageUserSettings table.form tr td textarea {
        width: 95%;
    }

    .rankingTable div.MyPoints {
        position: inherit;
    }

    #header div#uniturmRay2 {
        height: auto;
    }


    #header > div {
        padding: 0;
    }

    #header > div > .clear {
        display: none;
    }

    .HeaderRight {
        margin-right: 0.5rem;
        background-size: cover;
    }


    .contentArea {
        padding: 0 .5rem;
    }

    .contentArea > div {
        /*display: flex;*/
    }

    .welcomeToCity {
        width: 100% !important;
    }


    .userStatus {
        box-sizing: content-box;
    }


    div.userStatus {
        background-size: cover;
    }

    div.userStatus ul.LinkMenu {
        padding-bottom: 5px;
    }

    #startpage-loggedout.contentStart {
        width: 100%;
        margin: 0;
    }


    .openEducationBox {
    }

    .TableHeader {
        width: 100%;
        height: auto;
        display: block;
        padding: 10px !important;
        line-height: normal;
        background: var(--ut-light);
        font-size: .875rem;
        letter-spacing: .1ex;
        text-transform: uppercase;
        border-radius: var(--ut-border-radius-sm);
    }

    .TableHeader h3 {
        font-size: .875rem;
        text-transform: uppercase !important;
    }


    .TableHeader.Big {
        width: 100%;
        padding: 5px;
        display: block;
    }


    .Toolbox {
        margin-bottom: 2rem;
    }

    .Toolbox table {
        word-break: break-word;
    }

    .Toolbox:not(.Points):not(.SpecialPoints):not(.Rating):not(.Pm) thead th:first-of-type, .Toolbox:not(.Points):not(.SpecialPoints):not(.Rating):not(.Pm) tbody td:first-of-type {
        hyphens: auto;
        background-position: right;
    }

    .Toolbox:not(.Points):not(.Rating) tbody > tr > td:last-of-type, .Toolbox:not(.Points):not(.Rating) thead > tr > th:last-of-type {
        width: 25%;
    }

    .Toolbox:not(.Points):not(.SpecialPoints):not(.Rating):not(.Pm) tbody > tr > td:last-of-type,
    .Toolbox:not(.Points):not(.SpecialPoints):not(.Rating):not(.Pm) thead > tr > th:last-of-type {

    }

    table .downloadRating, .Toolbox table .downloadCount {
        display: none;
    }

    .Toolbox.Rating tbody td {
        padding: 10px;
    }


    .downloadSubject h2 {
        margin-top: 0 !important;
        line-height: 1 !important;
    }

    div.subjectPath {
        display: none;
    }

    ul.tabs li {
        padding: 0 .5rem;
        white-space: nowrap;
    }

    div.userTeasersHorizontal.padding, ul.tabs li:first-of-type {
        margin: 0;
    }

    ul.tabs {
        margin-top: 25px;
    }


    @keyframes sideMenu {
        0% {
            left: -200px;
        }
        100% {
            left: 0;
        }
    }

    div.sideMenu.invis {
        left: -200px;
        display: none;
    }

    div.sideMenu {
        animation: sideMenu .3s;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 200px;
        padding: 10px;
        background: #fff;
        border-right: 1px solid #666;
        overflow: auto;
        z-index: 10000;
    }

    div.sideMenu ul {
        margin: 0 0 20px;
    }


    .sideMenu-open {
        float: right;
        color: #fff;
        border: none;
        padding: 6px 10px;
        background: #4B9800;
        margin-left: auto;
    }

    .sideMenu-close {
        position: absolute;
        top: 0;
        right: 0;
        color: #fff;
        border: none;
        padding: 5px 10px;
        background: orange;
    }

    div.article {
        /*width: 49%;*/
        /*max-width: none;*/
        /*padding: 10px;*/
    }

    div.article .teaser {
        /*text-align: center;*/
    }

    div.article .teaserPhoto {
        /*height: 50px;*/
        display: block;
        /*margin: 10px auto 0;*/
    }

    @media only screen and (max-width: 480px) {
        div.articleDetail img.teaserPhoto {
            float: none;
            margin: 0 auto 20px;
            display: block;
        }
    }

    div.article.articleRight {
        margin-left: 0;
    }


    img.teaserPhoto.news {
        width: auto;
        display: block;
        margin: 10px auto 0;
    }

    div.article .comments {
        display: none;
    }

    div.message > div.body {
        /*width: .8rem !important;*/
    }

    div.articleSingle, ul.Warning {
        padding: 10px;
    }

    div.articleDetail, div.articleOverview {
        float: none;
        padding: 0;
        width: 100%;
    }

    div.articleDetail div.articleTeaser {
        margin: 20px 0;
        line-height: 1.3;
    }

    #startpage-loggedout .LighthouseBox {
        padding: 0 20px 40px 10px;
        height: auto;

        font-weight: bold;
        background: none;
    }

    #startpage-loggedout .LighthouseBox::after {
        content: "";
        clear: both;
        display: table;
    }

    #startpage-loggedout .LighthouseBox > div > h1 {
        padding: 10px;
    }

    #startpage-loggedout .LighthouseBox .Ships {
        gap: 0;
        font-size: 14px;
    }

    /*
    #startpage-loggedout .LighthouseBox .Ships::after {
    }

    #startpage-loggedout .LighthouseBox .Ships > div {
        margin: 0 0 0 10px;
    }

    #startpage-loggedout .LighthouseBox .Ships > div:first-of-type {
        margin: 0 0 0 10px;
    }

    #startpage-loggedout .LighthouseBox .Ships > div:last-of-type {
        margin: 0 0 0 10px;
    }*/
    #startpage-loggedout .openEducation > div.searchBox input:first-child {
        width: 260px;
        /*border: none;*/
    }


    #startpage-loggedout .userAvatars {
        height: auto;
        padding: 0 10px;
    }


    #startpage-loggedout .userAvatarsBox::after {
        content: "";
        clear: both;
        display: table;
    }

    #startpage-loggedout .userAvatars > div > h1 {
        padding: 10px 10px;
    }


    #startpage-loggedout .documentPages p {
        padding-top: 80px;
    }


    #startpage-loggedout .eLearning > h2 {
    }

    div.activities {
        float: none;
        padding: 0 10px;
        width: 100%;
        margin: 0;
    }

    div.news {
        width: 100%;
        float: none;
        margin: 0;
        padding: 0 10px;
    }

    #page-home-loggedOut #mainContent {
        margin: 0;
    }

    #page-home-loggedOut div.newsItem div.body {
        margin-left: 10px;
    }


    #startpage-loggedout .network {
        padding: 10px;
    }


    #startpage-loggedout .network .Universities ul {
        margin: 0;
    }

    #startpage-loggedout .network > div.Universities {
        height: auto !important;
    }

    #startpage-loggedout .network > div.Universities ul {
        float: none;
        line-height: 1.5;
    }


    .Partner {
        flex-direction: column;
    }

    div.partnerOffer {
        float: none;
        margin: 10px;
        padding: 1rem;
        text-align: center;
    }

    div.partnerLinks {
        padding: 1rem;
        flex-direction: column;
    }

    div.partnerLinks.Quad {
        flex-direction: row;
    }


    #searchform {
        display: flex;
    }


    .ButtonsBigColor, .ButtonsBigColorFitting {
        font-size: 16px;
    }


    .documentsIndexTable .rank {
        width: 65px;
    }

    div.snippet:last-child {
        text-align: center;
    }

    .infoPlate {
        display: none;
    }

    #header .Plates .infoPlate, .advisorButton, .CityText {
        /*display: none;*/
    }

    .documentsTagCloud, .TagCloud .documentsTagCloud {
        padding: 10px;
        word-wrap: break-word;
    }


    .TagCloud label {
        min-height: unset !important;
        padding: 0 0 5px 0 !important;
        text-align: left !important;
        font-weight: bold;
        display: block;
    }

    .TagCloud .SearchForm {
        padding: 10px;
        margin-bottom: 0;
    }

    .TagCloud .SearchForm img:last-of-type {
        float: right;
        margin: 10px 20px;
    }

    .TagCloud .SearchForm #google_documents {
        margin: 10px 0 0 0;
    }

    .TagCloud input, .TagCloud select {
        float: none;
        padding: 10px;
        height: auto;
    }

    .TagCloud #tagscontainer {
        padding: 0 10px;
    }

    .TagCloud #tagscontainer a[style*="margin-left: 5px"] {
        margin: 0 !important;
        padding: 10px 0;
        display: block;
    }


    label[style*="font-weight: bolder"] {
        display: block;
        padding: 5px;
        text-align: center;
    }

    label[style*="font-weight: bolder"] + .tagbox {
        width: 100% !important;
        padding: 5px;
        text-align: center;
        margin-left: 0;
    }

    label[style*="font-weight: bolder"] {
        display: block;
        padding: 5px;
        text-align: center;
    }


    .treecrumbsLabel {
        float: none !important;
    }


    #boxFunctions th:last-child {
        display: none;
    }

    .MessageForm {
        margin-bottom: 2rem;
        text-align: center;
    }

    td.subject {
        background: none;
    }

    div.boxFunctionsMeta {
        position: relative;
        float: none;
        width: 100%;
        max-width: none;
    }

    div.userStatus div.userWelcome {
        width: 82%;
    }

    #boxFunctions td {
        padding: 10px;
        background: #fff;
    }

    table.form {
        word-break: break-word;
    }

    table.form input[type="text"] {
        width: 100%;
    }

    div.boxFunctionsMenu {
        margin: 0;
        width: 100%;
        max-width: none;
        float: none;
    }

    div.ParentQuickInfo {
        width: 100% !important;
    }

    div[style*="margin-top: -70px"] {
        float: none !important;
        margin: 10px auto !important;
    }

    div.prize div.body {
        clear: both;
        float: none;
        margin: 10px;
        width: 90%;
    }

    div.prize div.prizeInfo {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    div.partner div.partnerLogo, div.prize div.prizeLogo {
        float: none;
        width: auto;
        text-align: center;
    }


    #Software .Box p {
        height: inherit;
    }


    #page-partner div.partner div.body {
        margin: 0;
        width: 95%;
    }

    .responsiv-hidden {
        visibility: hidden;
        display: none;
    }

    #giftImg {
        margin-top: 48px;
    }

    .DownloadColumn {
        float: left;
    }

    div.userStatus .MessageData, div.userStatus .MessageIcons {
        width: 50%;
    }

    .inlineBanner {
        position: relative;
        float: right;
        bottom: 0;
    }

    .ParentQuickInfo.Special .quickInfoRow {
        display: block;
    }

    .TopTeaserText {
        margin-top: .5rem;
    }

    table#quizTable tr td {
        padding: 2px;
    }

    .box.break {
        float: none;
    }

    .box.break.left {
        width: 100%;
    }

    .box.break.right {
        margin-right: auto;
        margin-left: auto;
        width: 65%;
    }


    .hidden {
        width: 0 !important;
        height: 0 !important;
        display: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .Page-Img {
        top: 110%;
        right: 0;
        transform: translateY(-50%);
    }

    #startpage-loggedout .prizeSystem {
        flex-direction: column;
    }

    #startpage-loggedout .threeColumn {
        width: 100%;
    }

    .NewsBox {
        flex-direction: column;
        padding: 1rem;
    }
}

/*Sub-Header Mobil*/
@media (max-width: 700px) {
    ul.tabs {
        font-size: 80%;
        display: flex;
        flex-wrap: wrap;
        /*flex-direction: row;*/
        margin-top: 25px;
    }

    /*Frage stellen Text links ausrichten*/
    .selectSpace {
        margin-left: 0 !important;
    }
}

@media only screen and (max-width: 640px) {
    .HeaderRight {
        float: left;
        margin-right: auto;
        margin-left: 0;
    }

    ul.tabs {
        margin-top: 25px;
    }

    #userStatus {
        float: left;
    }

    .Box {
        /*width: calc(100% - 60px) !important;*/
        width: 100% !important;
        float: left !important;
        margin-left: 0px !important;
    }

    .Box > img {
        min-width: 350px;
        float: none !important;
        margin-bottom: 20px !important;
    }

    .EditorContent.CustomBanner {
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .LeftToSlide2 {
        width: 100%;
    }

    ul.tabs {
        margin-top: 45px;
    }

    #Slide2 {
        width: 100%;
    }

    .LeftToSlide2 > div {
        vertical-align: top;
    }

    .TopTeaserText {
        width: auto;
    }

    .breakEarly .DownloadColumn {
        width: 50% !important;
    }

    #jobboard .jobboardButton {
        margin-right: 5%;
        margin-left: 5%;
        float: none;
        text-align: center;
        margin-top: 10px;
    }

    .EditorContent.CustomBanner {
        margin-top: 55px;
    }
}

@media (max-width: 520px) {
    .HeaderRight {
        margin: 0 auto;
    }

    .job-flex .Box .InfoBox {
        word-break: break-word;
    }

    .info-placement-columns > div {
        padding: 1rem 0;
    }

    .info-placement-columns {
        flex-direction: column;
    }
}

@media (max-width: 414px) {
    #header div#uniturmRay2 {
        display: none;
    }

    div.article {
        width: 100%;
    }

    .HeaderRight {
        float: left;
        width: 100%;
        height: 100%;
    }

    .breakEarly .DownloadColumn {
        width: 100% !important;
    }

    .job-flex {
        flex-direction: column;
    }

    #abi {
        height: 400px;
    }
}


@media screen and (max-width: 475px) {
    thead {
        display: none;
    }

    td {
        display: block;
        width: 100% !important;
        max-width: unset !important;
    }

    tr {
        padding: .5em .5em 1em;
    }
    /*---Business-Ads CLS Fix---*/
    /*  Possible Banner-heights:
        Ads_BA_BS | Desktop = 90px, Mobil = 50px, 75px, 100px, 150px, 300px
        Ads_BA_FLB | Desktop = 250px
        Ads_BA_CAD | Desktop = 250px, 600px, Mobil = 50px, 75px, 150px, 250px, 600px
        Ads_BA_CAD2 | Desktop = 250px, 280px, Mobil = 50px, 75px, 150px, 250px, 600px
        Ads_BA_TEXT | Desktop = 120px
        Ads_BA_VID | Desktop = 240px
        Ads_BA_FOOT | Desktop = 60px, 90px, Mobil = 50px, 75px, 150px
    */
    .ba_cad_cls_fix {
        min-height:250px;
    }

    .ba_cad2_cls_fix {
        min-height:300px;
    }

    .ba_bs_cls_fix {
        min-height:150px;
    }
    /*---End Business-Ads CLS Fix---*/
}
