/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

@font-face {
    font-family: Roboto;
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}
@font-face {
    font-family: Roboto-Thin;
    src: url('../fonts/Roboto/Roboto-Thin.ttf') format('truetype');
}
@font-face {
    font-family: Roboto-Medium;
    src: url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype');
}
@font-face {
    font-family: Roboto-MediumItalic;
    src: url('../fonts/Roboto/Roboto-MediumItalic.ttf') format('truetype');
}
@font-face {
    font-family: Roboto-LightItalic;
    src: url('../fonts/Roboto/Roboto-LightItalic.ttf') format('truetype');
}
@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size:14px;
    height:100%;
    margin:0;
    padding:0;
    width:100%;
    padding-right: 0px !important;              /* prevent Bootstrap from adding padding-right: 15px to the body when opening a modal in FireFox */
}

#app {
    width: 100%;
    padding: 0;
}
/* Portrait layout (default) */
.app {
    background:url(../img/logo.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0 0 0;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0 0 -112px;  /* offset vertical: half of image height and text area height */
    /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0 0 -198px;  /* offset vertical: half of image height */
        /* offset horizontal: half of image width and text area width */
    }
}

h1 {
    font-size:36px;
    line-height: 40px;
    font-weight:normal;
    margin:0;
    overflow:visible;
    padding:0;
    text-align:center;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0 30px;
    padding:2px 0;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}

@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}

/* EIGENE STYLES */

a.button {
    text-decoration: none;
    background-color: #DDD;
    padding: 10px 15px 10px 15px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    border-right: 1px solid #CCC;
    border-left: 1px solid #CCC;
    color: #000;
}

.icon-edit {
    background-image: url('../img/icon_edit.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    width: 25px;
    height: 25px;
    display: inline-block;
}
.icon-neu {
    background-image: url('../img/icon_neu.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    width: 25px;
    height: 25px;
    display: inline-block;
}


.icon-close-blue {
    background-image: url('../img/icon_close_blue.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    width: 25px;
    height: 25px;
    display: inline-block;
}

.back{
    background-image: url('../img/icon_back.png');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: left top;
    padding-left: 17px;
}
/*
.back {
    font-size: 1.6em;
    line-height: 1.8;
    text-decoration: none;
}

.back:before {
    display: block;
    font-size: 1em;
    font-family: FontAwesome;
    font-weight: normal;
    color: #FFF;
    border: 2px solid #cfdae3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-indent: 1px;
    line-height: 1.4em;
}
*/
/*Bootstrap-Styles*/
html {
    position: relative;
    min-height: 100%;
}
body {
    /* Margin bottom by footer height */
    /*margin-bottom: 60px;*/
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 60px;
    background-color: #f5f5f5;
}
/* width and height should be relative... */
#userImage{
    max-width:35%;
    width: 130px;
    height:130px;
    border-radius:50%;
}

#searchprofileForm > div.form-group.media > div.media-body{
    vertical-align:middle !important;
}

.input-group-unstyled, .input-group-unstyled:active, .input-group-unstyled:hover{
    top: 0 !important;
    border-radius: 4px !important;
    border: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.btn-gray{
    background-color: gray !important;
    color: white !important;
    border-color: gray;
    width: 100%;
    display: block !important;
    margin: auto;
    text-shadow: none !important;
    border-radius: 4px !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 31px;
}

.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    min-width: 1em;
    width: 3.19em;
    height: 1.7em;
    display: inline-block;
    border-radius: 1.6em !important;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .3s;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: '';
    bottom: 3px;
    background-color: white;
    -webkit-transition: .3s;
    transition: .4s;
    top: 0.15em;
    left: 0.11em;
    width: 1.4em;
    height: 1.4em;
}

input:checked + .slider {
    background-color: #004c97;
}

input:focus + .slider {
    box-shadow: 0 0 1px #004c97;
}

input:checked + .slider:before {
    -webkit-transform: translateX(21px);
    -ms-transform: translateX(21px);
    transform: translateX(21px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 31px;
}

.slider.round:before {
    border-radius: 50%;
}

#fuLogo{
    width: 90%;
    height: auto;
    max-width: 357px;
}

#loginButton{
    border: none;
    box-shadow: none;
    color: #004c97;
    font-size: 18px;
}

h1{
    font-size: 36px !important;
    line-height: 40px;
}

input[type=text], input[type=password], input[type=email]{
    border-radius: 0;
    text-align: center;
}

.btn-group-vertical {
    width: 100%;
}

.registrationCentered {
    padding-top: 5%;
}

.page-header {
    border-bottom: 0 !important;
}

.icon-right {
    float: right;
}

.navbar {
    border-radius: 0;
}

.navbar-nav {
    float: left !important;
    margin: 0 !important;
}

.navbar-nav>li {
    float: left !important;
}

.boxBGgrey {
    float: left;
    width: 42px;
    height: 42px;
    display: block;
    background: url('../img/bg-grau.png');
    margin: 3px 15px 15px 0;
}

.searchprofile-input {
    border: 0 solid #fff !important;
    background-color: #fff !important;
    text-align: left !important;
    box-shadow: none !important;
    padding-left: 0;
}

.searchprofile-btn, .searchprofile-btn:focus {
    border-color: #fff !important;
    box-shadow: none !important;
    background-color: #fff !important;
}

.form-control:focus {
    border-color: #ccc!important;
    box-shadow: none !important;
}

#postcode, .fullSizeInput {
    border: 0 !important;
    text-align: left !important;
    background-color: #fff !important;
    box-shadow: none !important;
    padding-left: 0 !important;
}

a:focus {
    outline: 0 !important;
}

div#MySearchProfile label {
    font-weight: 500;
}
.navbar-default.header button {
    font-size: 16px;
}
div.header div.row div.col-xs-6 {
    text-align: center;
}

ul.fu-navbar div.col-xs-4 {
    text-align: center;
}

.just-title {
    text-align: center;
}

ul.fu-navbar span.glyphicon {
    font-size: 20px;
}

.courseId {
    color: gray;
}

.list-group-item.disabled {
    background-color: #efeff4 !important;
}
.list-group-item.disabled {
    color: #777;
    cursor: not-allowed;
    background-color: #eee;
}

#sendBasicprofile{
    margin-bottom: 20%;
}

.requestSend{
    color: orange !important;
    background-color: lightgray !important;
    border-color: lightgray !important;
}

#sendRequestBtn.requestSend {
    color: #004c97 !important;
}
/*
#multiEdit, #multiEditBlockedUsers, #multiEditMySearches{
    float: left;
    font-size: 1.5em;
}
*/

.multiEditCheckbox{
    float:left;
    margin-top: 1.5em !important;
    margin-bottom: 1.2em !important;
}

#multiDelete, #multiDeleteBlockedUsers, #multiDeleteMySearches{
    float:right;
}

/*.disabledFavorite{
    background: lightgray !important;
    opacity: 0.4 !important;
}*/

.modal-link-grey{
    color: grey !important;
}

.login-btn-group, .configForm {
    margin-bottom: 2em;
}
.configForm button{
    border-radius: 0 !important;
}

/*PG Start*/

body, html, #app {
    min-height: 70vh;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container-fluid{
    height:100%;
    display:table;
    width: 100%;
    max-width: 1010px;
    padding: 0;
}
.row-fluid {height: 100%; display:table-cell; vertical-align: middle;}
.feu_color {
    color: #004c97;
}

.favorite-item:hover, .result-item:hover, .search-preview:hover {
    opacity: 1;
}
.search-preview:hover {
    cursor: pointer;
}
label.switch {
    vertical-align: middle;
    display: inline-block;
}
.checkbox {
    text-align: center;
}

a:link,
a:visited {
    color: #004c97;
    text-decoration: none;
}
a:hover,
a:active {
    color: #8e8e93;
    text-decoration: none;
}
#app .header .row {
    margin: 0 auto;
    max-width: 1010px;
}
.mainContainer {
    max-width: 1010px;
    margin: 61px auto 70px auto;
    /*padding: 0 10px !important;*/
}
.mainContainer p { padding: 0 10px; }
.mainContainer.splashScreen {
    margin-bottom: 0;
}
.mainContainer.profileDetail {
    max-width: 622px;
    padding: 0 10px;
    margin: 31px auto 70px auto;
}
.mainContainer.profileDetail .detail{
    clear: both;
}
.mainContainer.profileDetail .detail label{
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: left;
    color: #8e8e93;
    float: left;
    width: 110px;
    display: table-cell;
}
.mainContainer.profileDetail .detail div{
    display: table-cell;
}
.modal-open {
    overflow: auto;
}
.header.navbar {
    border: unset;
    padding-top: 15px;
}

.navbar-default {
    background-color: white;
    border-color: #e7e7e7;
}
.navbar-nav > li > a {
    padding: 10px 0;
    line-height: inherit;
}
#footerNavigation.navbar-default{
    background-image: unset;
    box-shadow: unset;

}

#logoutBtnWrapper .btn,
#deleteBtnWrapper .btn {
    background-color: #6f9700 !important;
}

#logoutBtnWrapper .btn {
    background-color: #004c97 !important;
}
#deleteBtnWrapper .btn {
    background-color: #ff0000 !important;
}

button.requestSend, #logoutBtnWrapper .btn,
#deleteBtnWrapper .btn, button#sendRequestBtn,
#sendBasicprofile.btn{
    width: 270px;
    height: 40px;
    color: white !important;
    margin: 0 auto;
    border: 0 solid transparent;
}


.btn {
    border-radius: 3px !important;
    text-shadow: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.button.disabled {
    opacity: .5 !important;
    border-color: white;
}

.btn-primary {
    color: #fff;
    background-color: #004c97;
    border-color: #004c97;
}
button#sendRequestBtn.btn-primary:hover ,.btn-primary:hover, .btn-primary:active {
    color: #004c97 !important;
    background-color: #d1d1d6 !important;
    border-color: #d1d1d6 !important;
}
.btn-default:hover {
    background-color: #d1d1d6;
    border-color: #d1d1d6;
}
.boxInner{
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #8e8e93;
    margin: 9px 0 0 0;
    display: block;
}

#MySearchProfile .form-group {
    border-bottom: 1px solid #c7c7cc;
}
.iconPadding {
    padding-right: 5px;
}
.profilBild, #results .list-group-item img[alt="Profilbild"] {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
    width: 55px;
    height: 55px;
}
p.headline {
    margin-top: -7px;
}
p.headline, p.contentline{
    margin-bottom: 3px;
    margin-left: 70px;
    padding: 0;
}
p.contentline label, p.contentline span {
    display: table-cell;
}
#some-searches p.contentline {
    margin-left: 0;
}

p.contentline label { margin-bottom: 0; width: 60px;}
/* Zeplin CSS Start */
.header {
    color: #ffffff;
    background-color: #004c97;
    background-image: none !important;
    /*height: 44px;*/
    font-size: 16px;
    box-shadow: 0 0.5px 0 0 rgba(0, 0, 0, 0.3);
}

.no-header {
    color: #004c97;
    background-color: #ffffff;
    background-image: none !important;
    font-size: 16px;
}
.no-header .title {

    width: 343px;
    height: 40px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: 100;
    line-height: 1.11;
    text-align: center;
    color: #004c97;
}

.feuclose {
    font-size:24px;
}
/*

.header .glyphicon {
    font-size: 22px;
    vertical-align: sub;
}
 */

div.header-left-3 {
    letter-spacing: -0.4px;
    text-align: left;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 0;
}
div.header-right-3 {
    letter-spacing: -0.4px;
    text-align: right;
    padding-top: 0;
    padding-left: 0;
    padding-right: 10px;
}
div.header-middle-6 {
    font-family: Roboto-Medium, Arial, Helvetica, sans-serif;
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    text-align: center;
    color: #ffffff;

}
.header a:link, .header a:visited {
    color: #ffffff;
    text-decoration: none;
}
.header a:hover, .header a:active {
    opacity: 0.85;
    text-decoration: none;
}
#footerNavigation ul{
    max-width: 1010px;
    text-align: center;
    float: unset !important;
    margin: 0 auto !important;
}
#footerNavigation ul li {
    width: 33%;
}
/*
#footerNavigation ul li .glyphicon {
    font-size: 25px;
}
#footerNavigation a:link, #footerNavigation a:visited {
    color: #8e8e93;
}
#footerNavigation a:hover, #footerNavigation a.active, #footerNavigation a:active {
    color: #004c97;
}
*/

#footerNavigation a img:nth-child(2) {
    display: none;
}
/*
#footerNavigation a:hover img:nth-child(2) {
    display: inline;
}
#footerNavigation a:hover img:first-child {
    display: none;
}

#footerNavigation a.active img:nth-child(2) {
    display: contents;
    display: inline;
}
*/
#footerNavigation a.active img:first-child {
    display: none;
}
#footerNavigation a.active img:nth-child(2){
    display: inline;
}
/*
#footerNavigation a.active:hover img:nth-child(2) {
    display: inline;
}
#footerNavigation a.active:hover img:first-child {
    display: none !important;
}*/

.Combined-Shape {
    width: 245px;
    height: 64px;
    background-color: #004c97 !important;
    box-shadow: 0 -0.5px 0 0 rgba(0, 0, 0, 0.3);
    border-bottom-right-radius: 30px;
    color: #ffffff;
    margin: 23px auto 0 auto;
    top: 25px;
    position: relative;
}
.Lerngruppen {
    width: 222px;
    height: 40px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.11;
    text-align: center;
    color: #ffffff;
    padding-top: 14px;
    margin-left: 9px;
}
.Lerngruppen .text-style-1 {
    font-weight: bold;
}

.input-hint
{
    color: #8e8e93;
    margin-bottom: 10px;
    display: inline-block;
}
.form-control::-moz-placeholder {
    color: #333;

}
.subjectSelection input {
    border-left: 1px solid #c0c0c0 !important;
    border-bottom: 1px solid #c0c0c0 !important;
    padding-left: 7px !important;
}

.favoriteBox {
    width: calc(100% - 25px);
    background-color: #efeff4;
    height: 55px;
    margin-left: 25px;
    margin-bottom: 12px;
}
.favoriteBox .profilBild {
    margin: 0 0 0 -20px;
}
.favoriteBox .favicon {
    margin-top: 15px;
}
.favoriteBox p.headline {
    margin: 0 0 0 52px;
    padding: 14px 0 0 0;
}
#favorites-items p.contentline, #requestsFromUserList p.contentline, #requestsToUserList p.contentline,
#blocked-items p.contentline, #reported-items p.contentline, #accepted-requests p.contentline, #pending-requests p.contentline {
    margin-bottom: 3px;
    margin-left: 0;
}
#requestsFromUserList p.contentline span, #requestsToUserList p.contentline span, #blocked-items p.contentline span, #reported-items p.contentline span {
    margin-bottom: 3px;
    margin-left: 0;
}
#favorites-items p.contentline label, #requestsFromUserList p.contentline label, #requestsToUserList p.contentline label, #blocked-items p.contentline label, #reported-items p.contentline label, #pending-requests p.contentline label, #accepted-requests p.contentline label {
    font-weight: unset;
    float: unset;
}
/*
#favorites-items .multiEditCheckbox {
    width: 50px;
    margin-top: 10px !important;
}*/

p.contentline label {
    margin-bottom: 0;
    width: 88px;
    float: left;
    font-weight: 100;
}

.navpills {
    width: 150px;
    margin-left: calc(50% - 150px);
    border: 1px solid #004c97;
    border-radius: 0;
    text-align: center;

}
.feunavpills {
    margin-bottom: 23px;
    height: 30px;
}
.nav.feunavpills > li > a {
    position: relative;
    display: block;
    padding: 10px 5px;
}
.navpills a:focus, .navpills  a:hover {
    text-decoration: none;
    background-color: #eee;
    color: #004c97;
}

.navpills:first-child {
    border-radius: 4px 0 0 4px !important;
}
.navpills:last-child {
    border-radius:  0 4px 4px 0 !important;
}
.favoritenavpills > .navpills:last-child a:hover {
    border-radius: 0 4px 4px 0 !important;
}

.nav-pills > li + li {
    margin-left: 0 !important;
    cursor: pointer;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    background-color: #004c97;
}
.nav-pills > li > a {
    border-radius: 0;
}

ul.favoritenavpills {
    margin-left: 2px;
}
ul.favoritenavpills .navpills {
    width: 33% !important;
    margin-left: 0 !important;
}

.favoritenavpills > li + li, .favoritenavpills > .navpills:last-child {
    border-left: 0;
}


.splash_desktop {
    width: 100%;
}
.splash_desktop img {
    max-width: 100%;
}

/* Zeplin CSS Ende */

/* Nick vorläufige CSS */
#statusPreview, #requestCount{
    float: right;
}

button>img{
    float:left;
}

.image-detailscreen{
    text-align:center;
    width: 100%;
    height: 200px;
    border-radius: 0 0 40px 0;
    background-image: linear-gradient(to top, #6791be, #004c97);
    margin-top: 50px;
    padding-top: 21px;

}
.image-detailscreen p {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff;
    height: 28px;
    margin-top: 10px;
}
#reportForm input[type="radio"]{
    box-shadow: none !important;
}

.green-text{
    color: #6f9700;
}





/* Nick Split-Screen CSS !IN ENTWICKLUNG! */
#split-navigation{
    float: left;
    width: 40%;
    min-width: 300px;
}
.feu-tablet #split-navigation {
    min-width: unset;
}

/* Nick CSS (vorläufige CSS-Änderungen, ggf. später verändert durch Peter) */
#favorites-status-value{
    color: #6f9700;
}

.has-error .form-control {
    border: 1px solid #a94442 !important;
}

.glyphicon-option-horizontal{
    color: #FFF;
}

/* Peter Anpassungen bezt. SplitScreen müssen noch richtig integriert werden!! */


.list-group-item:last-child, .list-group-item:first-child {
    border-radius: 0;
}

.feu-desktop #app.container.splitViewConfig {
    margin: 0 auto !important;
}

.feu-desktop .header .glyphicon {
    color: #004c97;
}

#splitViewHeader .fuLogoParagraph {
    height: 126px;
    padding-top: 30px;
}
#splitViewContainer, .fuLogoParagraph {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;

}

#splitViewContainer.feu-app #app {
    width: 100%;
    max-width: 767px;
    margin: 50px auto;
    border-left: 0;
}

#splitViewContainer.feu-desktop #app #footerNavigation, #splitViewContainer.feu-desktop #app #navigation {
    display: none;
}
#splitViewContainer  .header .icon-right {
    margin-right: 0 !important;
}


#splitViewContainer .header .row{
    margin: 0;
}

#splitViewContainer .mainContainer {
    margin-top: 20px;
}
#splitViewContainer .image-detailscreen {
    margin-top: 0;
}

#splitViewContainer.feu-desktop #app.loginScreen, #splitViewContainer.feu-desktop #app.registrationScreen, #splitViewContainer.feu-tablet #app.loginScreen, #splitViewContainer.feu-tablet #app.registrationScreen {
    border-left: none;
}
#app.registrationScreen .roundCheckBox label {
    left: 11px;
}
#app.registrationScreen .roundCheckBox span.checkboxText {
    text-align: left;
    line-height: 29px;
    padding-left: 10px;
}
#splitViewContainer #app {
    width: 60%;
    margin-left: 40%;
    border-left: 1px solid #efeff4;
}

#splitViewContainer #app .navbar {
    margin-bottom: 0;
    min-height: 50px;
}
#splitViewContainer.feu-tablet .navbar.header {
    height: 50px;
    min-height: unset;
}
#splitViewContainer.feu-desktop #app .navbar {
    margin-bottom: 0;
    min-height: 70px;
    padding-top: 35px;
}

#splitViewFooter {
    background-color: #b1b3b3;
    background-image: unset;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000000;
    height: 223px;
    margin-bottom: 0;

}
#splitViewFooter:after {
    height: 50px;
    display: block;
    background-color: #004c97;
}
#splitViewFooter .container {
    width: 100%;
    max-width: 1010px;
    padding: 29px 0 0;
}
#split-navigation.container {
    padding: 0;
}
#split-navigation .header {
    margin-top: 68px;
}
#splitViewContainer #split-navigation .header.navbar.navbar-default {
    width: 100%;
    /* max-width: 403px; warum????? */
}
#splitViewFooter a:link, #splitViewFooter a:visited {
    color: #000;
    text-decoration: underline;
}
#splitViewFooter a:hover {
    color: #004c97;
    text-decoration: none;
}
#splitViewFooter a {
    color: #000;
    text-decoration: none;
}

#splitViewFooter .heading {
    font-size: 18px;
    font-weight: bold;
    hyphens: auto;
}
#splitViewFooter ul {
    width: 100%;
}
#splitViewFooter li#splitViewFooter-left, #splitViewFooter li#splitViewFooter-right,
#splitViewFooter li.splitViewFooter-right, #splitViewFooter li.splitViewFooter-left{
    width: 20%;
    padding-left: 25px;
}
#splitViewFooter li#splitViewFooter-middle {
    text-align: center;
    width:20%
}
#splitViewFooter li>a[href="https://www.fernuni-hagen.de"]>img{
    max-width: 130px;
    width: 100%;
    margin: -5px 10px 30px 10px;
}
/* NcS: Swipe-Slider-CSS */
.has-swipe-slider .glyphicon {
    margin-top: calc(50% - 26px);
    font-size: 26px;
    left: 20px;
    color: white;
}
#some-searches .has-swipe-slider .glyphicon{
    margin-top: 24px;
}
.overlayCheckbox .glyphicon.glyphicon-trash {
    margin-top: 0 !important;
}

.has-swipe-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.swipe-slider{
    display: flex;
    width: 200%; /* 100% * 2 swipe-slides */
}
.swipe-slider.is-sliding{
    transition: transform 400ms cubic-bezier(0.5, 0, 0.5, 1);
}
.swipe-slider-fade{
    background-color: red;
}
.swipe-slider-panel{
    width: 100%;
}
.swipe-slider-panel .swipe-slider-fade {

}

#blocked-list div.has-swipe-slider {
    max-height: 160px;
}


/*Allg*/
.list-group-item
{
    border-left: 0 transparent;
    border-right: 0 transparent;
}
.service-list .list-group-item {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: unset;
}
#course-preview {
    font-weight: normal;
    letter-spacing: normal;
}

.onlyAppIcon img {
    width: 20px;
    height: auto;
}
/* Desktop */
.feu-desktop {
    border-left: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
}
.feu-desktop .onlyAppIcon {
    display: none;
}
#splitViewContainer #app {
    border-left: 1px solid #d8d8d8;
}
.feu-desktop #app .header {
    margin-top: 0;
    z-index: 0;
    min-height: 70px !important;
}

.withBackground {
    background-color: rgb(239, 239, 244);
    background-image: url("../img/fernuni-hagen-logo-footer.svg");
    background-repeat: no-repeat; background-position: 50% calc(50% + 30px);
    background-size: 220px;
}

.feu-tablet .withBackground{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
}

.feu-desktop div.header-left-3 {
    letter-spacing: -0.4px;
    text-align: left;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 0;
}
.feu-desktop div.header-right-3 {
    letter-spacing: -0.4px;
    text-align: right;
    padding-top: 0;
    padding-left: 0;
    padding-right: 10px;
}
.feu-desktop div.header-middle-6 {
    font-family: Roboto-Medium, Arial, Helvetica, sans-serif;
    padding-top: 0;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    text-align: center;
    color: #004c97;

}
.feu-desktop .header {
    color: #004c97;
    background-color: #ffffff;
    background-image: none !important;
    height: 47px;
    font-size: 16px;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
}
.feu-desktop .header a:link, .feu-desktop .header a:visited {
    color: #004c97;
    text-decoration: none;
}
.feu-desktop #split-navigation .header {
    margin-top: 0;
    border: 0 transparent !important;
    height: 47px;
}
.feu-desktop .icon-edit {
    background-image: url('../img/icon_edit_blue.png');
}
.feu-desktop .icon-neu {
    background-image: url('../img/icon_neu_blue.png');
}
.feu-desktop .back {
    background-image: url('../img/icon_back_blue.png');
}

#splitViewContainer.feu-desktop #app.splitViewConfig.configScreen {
    border-left: 0 transparent;
    width: 100%;
}

.split-navigation-header {
    margin-top: 1px;
    margin-bottom: 0;
    min-height: 47px;
    border: 0 transparent !important;
}
.feu-desktop #split-navigation.container {
    padding-top: 20px;
}
.navbar-default.split-navigation-header {
    background-color: #004c97;
    border-color: #fff;
    background-image: unset;
}


.navbar.split-navigation-header ul.split-navigation-list > li > a {
    position: relative;
    display: block;
    padding: 0.8em 0.834em;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: unset;
}
.navbar.split-navigation-header ul.split-navigation-list > li > a:hover, .navbar.split-navigation-header ul.split-navigation-list > li > a.active {
    background: #d8d8d8;
    text-decoration: none;
    color: #004c97;
}

/* Desktop ENDE */

/* Tablet / Desktop... */


#splitViewContainer.feu-desktop #app.configScreen {
    width: 100%;
}
.feu-tablet .mainContainer {
    max-width: unset;
}
#splitViewContainer.feu-desktop #app.configScreen .mainContainer.splashScreen {
    display: table-cell;
    vertical-align: middle;

}

.feu-tablet #app.configScreen {
    border: 0 transparent !important;
    width: 100% !important;
}

.feu-tablet #app.splitViewConfig {
    margin-left: auto !important;
    /*max-width: 1010px;*/

}

.feu-tablet .navbar-fixed-top {
    position: relative;
}

#split-navigation .header {
    margin-top: 0;
}

/*Checkbox */
.roundCheckBox{
    float:unset;
    margin-top: 0 !important;

    margin-right: 25px;
}
.roundCheckBox {
    position: relative;
}

.roundCheckBox label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
}

.roundCheckBox label:before {
    border: 2px solid #000;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}

.roundCheckBox label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}


.roundCheckBox input[type="checkbox"] {
    visibility: hidden;
}

.roundCheckBox input[type="checkbox"]:checked + label {
    background-color: #004c97;
    border-color: #004c97;
}

.roundCheckBox input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

#basicProfileSemesters .roundCheckBox input[type="checkbox"]:checked + label {
    background-color: #6f9700;
    border-color: #6f9700;
}

/* tmp checkbox css */
/* button-design */
.checkbox.multiEditCheckbox.roundCheckBox label
{
    margin: 5px 0 0 5px;
}

.roundCheckBox span.checkboxText {
    position: relative;
    left: 40px;
    width: calc(100% - 30px);
    display: block;
}
.checkbox.multiEditCheckbox.roundCheckBox input[type="checkbox"]:checked + label {
    margin: 5px 5px;
}
.checkbox.multiEditCheckbox.roundCheckBox label span.glyphicon
{
    margin: -3px 0 0 0;
    color: #004c97;
    float: left;
    font-size: 24px;
}

.overlayCheckbox .multiEditCheckbox {
    display: block;
    height: 38px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    width: 30px;
    transform: scale(1.5);
    z-index: 1;
}

.overlayCheckbox {
    position: absolute;
    width: 97.5%;
    height: 96%;
    background-color: rgba(255,255,255,0.8);
}

#reported-items .overlayCheckbox {
    text-align: center;
    line-height: 160px;
    display: block;
}
#reported-items .overlayCheckbox .overlayNotice {
    text-align: center;
    line-height: 160px;
    display: block;
}
.overlayCheckbox .roundCheckBox label{
    padding-top: 3px;
    text-indent: 15px;
    font-size: 18px;
}


.roundCheckBox label::before {
    border: 2px solid #000;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 21px;
    transform: rotate(-45deg);
    width: 12px;
}


/* tmp checkbox css ENDE */

/* Favorites Items Checkbox
#favorites-items .multiEditCheckbox {
    width: 30px;
    margin-top: 13px !important;
}*/
#favorites-items .roundCheckBox {
    margin-right: 5px;
    background-color: white;
    height: 37px;
}
#favorites-items .has-swipe-slider .glyphicon {
    margin-top: 65px;
}
.inactive-favorite >:not(.overlayCheckbox),
.disabledFavorite >:not(.overlayCheckbox),
.disabledCourse >:not(.overlayCheckbox),
.deactivatedCourse >:not(.overlayCheckbox) {
    opacity: 0.3 !important;
}

#favorites-list .inactive-favorite .misc,
#favorites-list .disabledFavorite .misc,
#favorites-list .disabledCourse .misc,
#favorites-list .deactivatedCourse .misc{
    display: block !important;
    position: relative;
}

#favorites-list .disabledCourse .misc::after{
    content: 'Sie belegen den Kurs im angegebenen Semester nicht mehr.';
    font-size: 1.1rem;
    font-weight: lighter;
    background: #004c97;
    color: white;
    padding: .5rem;
    z-index: 1000;
    display: inline-block;
    margin-left: 0px;
    position: relative;
    width: 98%;
    border-radius: 3px;
    margin-bottom: .5rem;
}

/*#favorites-list .inactive-favorite.disabledFavorite .misc::after {
    content: 'Der Kontakt hat den Kurs in der Kursauswahl abgewählt. \A Der Kontakt ist leider zurzeit nicht aktiv';
    font-size: 1.1rem;
    font-weight: lighter;
    background: #004c97;
    color: white;
    padding: .5rem;
    z-index: 1000;
    display: inline-block;
    white-space: pre;
    margin-left: 0px;
}

#favorites-list .inactive-favorite.disabledCourse .misc::after {
    content: 'Der Kontakt hat den Kurs in der Kursauswahl abgewählt. \A Sie belegen den Kurs im angegebenen Semester nicht mehr.';
    font-size: 1.1rem;
    font-weight: lighter;
    background: #004c97;
    color: white;
    padding: .5rem;
    z-index: 1000;
    display: inline-block;
    white-space: pre;
    margin-left: 0px;
}*/

#favorites-list .inactive-favorite .misc::after {
    content: 'Der Kontakt hat den Kurs in der \A Lerngruppen-Anwendung abgewählt.';
    font-size: 1.1rem;
    font-weight: lighter;
    background: #004c97;
    color: white;
    padding: .5rem;
    z-index: 1000;
    display: inline-block;
    margin-left: 0px;
    white-space: pre-wrap;
    position: relative;
    width: 98%;
    border-radius: 3px;
    margin-bottom: .5rem;
}

#favorites-list .disabledFavorite .misc::after {
    content: 'Der Kontakt ist leider zurzeit in der \A Lerngruppen-Anwendung nicht aktiv';
    font-size: 1.1rem;
    font-weight: lighter;
    background: #004c97;
    color: white;
    padding: .5rem;
    z-index: 1000;
    display: inline-block;
    margin-left: 0px;
    white-space: pre-wrap;
    position: relative;
    width: 98%;
    border-radius: 3px;
    margin-bottom: .5rem;
}

#favorites-list .deactivatedCourse .misc::after {
    content: 'Sie haben den Kurs derzeit in der \A Lerngruppen-Anwendung abgewählt.';
    font-size: 1.1rem;
    font-weight: lighter;
    background: #004c97;
    color: white;
    padding: .5rem;
    z-index: 1000;
    display: inline-block;
    margin-left: 0px;
    white-space: pre-wrap;
    position: relative;
    width: 98%;
    border-radius: 3px;
    margin-bottom: .5rem;
}

.detailStatus{
    font-size: medium;
    background: #004c97;
    color: white;
    font-weight: bold;
    padding: .5rem;
    z-index: 1000;
    display: inline-block;
    margin-left: 0px;
    width: 100%;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 2rem;
}

#splitViewContainer.feu-desktop #app .mainContainer.profileDetail, #splitViewContainer.feu-tablet #app .mainContainer.profileDetail{
    display: grid;
}
#profilePhotoPlaceholder {
    background-position: center;
    background-repeat: no-repeat;
    /*background-size: auto 130px;*/
    background-color: #f0f0f0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto;
}

.profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-img-small {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover
}

#littleProfilePhoto {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f0f0f0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    float: left;
}
#littleProfilePhoto.forGreyBox {
    left: -25px;
    position: relative;
}
/* Default Styles for the uploadImageDialog Modal to:
    - make the modal appear on the bottom of the screen
    - make the modal fade in/out from the bottom instead of from the top
 */
#uploadImageDialog {
    top: inherit;
}
#uploadImageDialog.modal.fade .modal-dialog {
    transform: translate(0, 25%);
}
#uploadImageDialog.modal.in .modal-dialog {
    transform: translate(0, 0);
}

.image-detailscreen > img {
    max-width: 35%;
    width: 130px;
    height: 130px;
    border-radius:50%;
}

#imageToUpload{
    width: 0;
    height: 0;
    overflow: hidden;
}

#imageToCapture{
    max-width: 100%;
}
/* margin-top set to 0 for List in ServiceView of App-Version */
#splitViewContainer.feu-app > #app > .mainContainer.feu-app-service {
    margin-top: 0;
}
/* Styles for painting the submitRegistration Btn FeU-Blue */
#submitRegistration.input-provided{
    background-color: #004c97 !important;
    border-color: #004c97 !important;
}
/* Styles to vertically center all Modals */
.modal {
    text-align: center;
    padding: 0!important;
}
.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}
.modal-dialog {
    display: inline-block;
    vertical-align: middle;
}
/* Exception-Style for uploadImageDialog Modal */
#uploadImageDialog > .modal-dialog{
    display: block !important;
}



/*Tablet 20180613 */
#splitViewContainer.feu-tablet #registrationButton, #splitViewContainer.feu-tablet #loginButton,
#splitViewContainer.feu-desktop #registrationButton, #splitViewContainer.feu-desktop #loginButton, .btn.btn-primary  {
    font-size: 18px;
    height: 45px;
}


#splitViewContainer.feu-tablet {
    height: 100%;
    width: 100%;
    max-width: 100%;
}
.feu-tablet #app.container.splitViewConfig {
    display: table;
    height: 100%;
}
.feu-tablet .splash_desktop img {
    width: 100%;

}
.feu-tablet #app.container.splitViewConfig div.mainContainer.splashScreen {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}

/* Tablet ENDE */

#emailInput{
    width: 84%; /* NcS: Vorläufige CSS, das E-mail Feld verkürzt sich aus mir unerklärlichen Gründen */
}

.active-search{
    background-color: #efeff4;
}

.bgLogoGreyContainer{
    background-color: #efeff4;
    margin: 0 !important;
}

#bgLogoGrey{
    margin-left: auto;
    margin-right: auto;
    display:block;
}


/* IE fix... */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {

    #splitViewContainer, .fuLogoParagraph {
        max-width: 1012px;
    }
    .feu-desktop#splitViewContainer .configScreen#app {
        margin: 0 auto;
    }
    .mainContainer.splashScreen {
        max-width: 1008px;
        margin: 61px auto 70px auto;
    }

    .navbar-default {

        background-image: none;
    }
}
/* IE fix ENDE... */

.has-error label[for=registration]{
    border: 1px solid #a94442;
}

#appNavigationLogout{
    position: relative;
    display: block;
    padding: 0.8em 0.834em;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: unset;
    border: 0 transparent;
    background-color: transparent;
}

.nav.navbar-nav.split-navigation-list{
    float: none !important;
}

.nav.navbar-nav.split-navigation-list > li:last-child{
    float: right !important;
}

#newProfile, #search{
    padding: 0;
}

.feu-desktop .header-right-3 button {
    background-color: white;
    border: 0px;
}
.feu-app .header-right-3 button, .feu-tablet .header-right-3 button {
    background-color: #004c97;
    border: 0;
}

#slowConnectionDialog{
    position: fixed;
    width: 100%;
    top: 0; /* NcS: Hier wäre es besser etwas dynamisches zu verankern, dass die Höhe des Headers ausrechnet und #slowConnectionDialog um (Höhe des Headers) Pixel von top nach unten verschiebt. Vorerst setze ich den Wert auf die min-height des Headers (50px) */
    z-index: 9999;
    background: black;
    color: white;
    border-color: black;
}

#slowConnectionDialog > button.close{
    color: white;
    opacity: 1.0;
}

/* delete checbkox change*/
#multiDelete, #multiDeleteBlockedUsers, #multiDeleteMySearches {
    color: red;
}
.feu-app  #multiDelete,
.feu-app  #multiDeleteBlockedUsers,
.feu-app  #multiDeleteMySearches {
    color: white;
}
.overlayCheckbox input[type="checkbox"] {
    display:none;
}
.overlayCheckbox input[type="checkbox"] + label::before {
    width: 28px;
    height: 28px;
    border-radius: 28px;
    border: 1px solid #676767;
    background-color: #fff;
    display: block;
    content: "\2b";
    position: relative;
    font-size: 35px;
    line-height: 25px;
    float: left;
    color: #676767;
    margin: -7px 0 0 -19px;
    transform: rotate(45deg);
}
.overlayCheckbox input[type="checkbox"]:checked+label::before {
    content: "\2b";
    position: relative;
    font-size: 35px;
    line-height: 25px;
    color: red;
}
/*
.checkbox label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.checkbox .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 15%;
}


.checkbox label input[type="checkbox"] {
    display: none;
}

.checkbox label input[type="checkbox"]+.cr>.cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
}

.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled+.cr {
    opacity: .5;
}
/* checbkox change in Arbeit ENDE */

.ajax-spinner > p > img{
    max-width: 30px;
    max-height: 30px;
}
/* Exception for checkbox text-align:center > Checkbox in MySearchprofileView
   Also removing the margin-top for checkboxes used in bootstrap.css
 */
.form-group > .checkbox{
    text-align: left;
    margin-top: 0;
}

/*
 NcS: Selfmade-Styles for extendedSearch
 Commented out: 15.02.2019

/* Set Max-Width for .svg flag icons
.country-icon{
    max-width: 10%;
    box-shadow: 1.5px 1.5px lightgray;
}

/* Set text-overflow to ellipsis, to shorten long texts */
#results p.contentline, #some-searches p.contentline span.searchpreviews{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

#favorites-list p.contentline label, #favorites-list p.contentline span{
    display:inline-block;
}

#favorites-list p.contentline{
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}

/* Remove Bootstraps CSS-Rule for .btn:focus and .btn:hover to color the text black */
.btn:focus, .btn:hover {
    color: inherit;
}

/* Prevent #editProfile Text to be wrapped if it's too long to fit the viewport */
#editProfile {
    white-space: nowrap;
}

#footerNavigation{
    padding: 0px constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
    padding: 0px env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

#results p.headline .iconPadding {
    margin-top: -7px;
}

a[data-toggle="collapse"]:hover, a[data-toggle="collapse"]:active {
    color: #004c97;
    text-decoration: none;
}

#reportReason{
    text-align: left;
}
#userMenu p button {
    width: 93%;
}
@media (min-width: 389px) {
    #userMenu p button {
        width: 62%;
    }
}
@media (min-width: 768px) {
    #userMenu p button {
        width: 31%;
    }
}
.customTable {
    display: table;
}
.table-row {
    display: table-row;
}
.table-cell {
    display: table-cell;
    padding: 0.5em;
}

.multiline {
    display: inline-block;
    vertical-align: middle;
}

div.table-cell label{
    display: inline;
    padding-left: 0px;
}

.panel-heading {
    cursor: pointer;
}

.icon-small {
    width: 3%;
    border: 1px solid #cccccc;
    padding: 1px;
    min-width: 40px;
}

div#MyProfilePhoto p.Text-Style-4{
    margin-top: 2rem;
}

#favorites-list p.contentline span.favoritepreviews#favorites-course,
#favorites-list p.contentline span.favoritepreviews#favorites-subject{
    display: inline;
}

#splitViewContainer.feu-tablet #app.initialLogin{
    width: 100%;
}

#splitViewContainer.feu-tablet #app.initialLogin div.navbar.header{
    width: 100%;
}

#splitViewContainer.feu-tablet #app.initialLogin div.mainContainer{
    width: 85%;
}

.fullWidth{
    width: 100%;
}

#pendingRequestsNav .badge{
    background-color: #004c97;
}

/*Barrierearmer Focus und Hover der Kontaktzentralenreiter und allgemeinen Links*/
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: underline;
    background-color: white;
    color: #004c97;
}

a {
    color: #004c97;
    text-decoration: none;
}

.navbar-default .navbar-nav>li>a {
    color: #004c97;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #004c97;
    background-color: transparent;
}

/* Badge bei Kontaktreiter "Angefragt" oberhalb fixiert*/
/*Die Badge-Klasse ist eine default-Bootstrap-Klasse, die ich ungern bearbeiten würde. Daher habe ich die
CSS-Angaben in die ID-abhängige Badge-Klasse eingefügt. Die Farbe ist auf grün geändert.*/

#pendingRequestsNav .badge {
    background-color: #6f9700;
    position: absolute;
    right: -3px;
    top: -10px;
    width: 22px;
    height: 22px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    border: 2px solid #fff;
    outline-color: #fff;
    padding: 3px;
}

/* Badge in FAQ stellt sich identisch wie Badge bei Kontaktreiter "Angefragt" dar, nur ohne Fixierung oberhalb*/
div.panel-body p span.badge{
    background-color: #6f9700;
    width: 22px;
    height: 22px;
    line-height: 14px;
    text-align: center;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    border: 2px solid #fff;
    outline-color: #fff;
    padding: 3px;
}

button#acceptRequest {
    width: 100%;
    max-width: 125px;
    margin-top: 1rem;
    margin-right: 1rem;
    background: #6f9700;
    color: white;
    border-color: transparent;
}

button#declineRequest {
    width: 100%;
    max-width: 125px;
    margin-top: 1rem;
    margin-right: 1rem;
    background: rgb(255,59,48);
    color: white;
    border-color: transparent;
}

p.requestBtns .btn-default:hover#declineRequest,
p.requestBtns .btn-default:hover#acceptRequest {
    border-color: transparent;
    text-decoration: underline;
}

#uploadImageWrapper .btn-fixed-height {
    font-size: 18px;
    height: 40px;
    margin-top: 1rem;
}

/* Nick CSS-Test für SplitView mit 2 unabhängig scrollbaren Divs
   Sorgt aktuell für Probleme mit dem automatischen Laden von weiteren Suchergebnissen (Infinity-Scroll)
.feu-tablet #app, .feu-tablet #split-navigation,
.feu-desktop #app, .feu-desktop #split-navigation {
    height: 100vH;
    overflow-y:scroll;
} */

/* Hotfix für nicht anklickbaren "Anfrage senden" Button */
.feu-desktop #app>div.navbar.header>div.row{
    overflow:auto;
}

/*.btn-no-hover#sendBasicprofile{
    background-color: #004c97 !important;
    color: white !important;
    border-color: #004c97 !important;
    outline: unset !important;
}*/

.inactive-link{
    color: rgba(0, 0, 0, 0.87);
}

/*NcS(16.12.2019): Hotfix for Tablet-Version:
  Somehow in the Tablet Version a Child-Div of the Header navbar expands over the height of the parent element
  We'll just let all the Child-Divs of the Header navbar inherit the Height to prevent this behaviour and hope this works...
 */
div.navbar.header div{
    height: inherit;
}

/* Anfang von Ferdals neuen Styles */

/*Allgemeine Styles */
span#favorites-email-value{
    font-size:90%;
}

/*Suchprofil */
.mainContainer.suchInput{
    margin-top: 0px !important;
}

.mainContainer{
    max-width: 1010px;
}

#MySearchProfile .boxBGgrey {
    background: none;
    margin: 0;
    background-color: unset;
    padding: 0;
}

#MySearchProfile .boxInner {
    margin: 10px 0 0 0;
}

#MySearchProfile label {
    display: block;
    background-color: #f4f4f4;
    padding: 12px;
}

#MySearchProfile .input-group-btn:last-child > .btn {
    z-index: 2;
    margin-left: 5px;
}

#MySearchProfile .input-group .form-control {
    margin-left: 42px;
}

#MySearchProfile .form-group {
    margin-bottom: 0px;
}

#items .list-group-item {
    padding: 10px 15px;
}

/* Padding für Suchprofilvorschauen in MySearchesView */
.list-group-item.search-preview{
    padding: 15px 5px 15px 10px;
    border: 1px solid #ddd;
}
/* Margin-Bottom für Suchergebnislisten-Statistik in SearchresultsView */
#searchStatistics{
    margin-bottom: 0;
}
/* Padding und unterer Rand für Kontaktzentralen List-Items*/
.list-group-item.favorite-item{
    padding: 5px 0px 10px 10px;
    border: unset;
}
/* Suchprofilerstellung globalSwitch für "Ortsungebundene Suche" */
div.globalSearchWrapper label.switch{
    vertical-align:unset;
    display: unset;
    text-align: unset;
    float: right;
    line-height: unset;
    direction: unset;
    top: 0;
    right: 0;
    position: relative;
    margin-top: 16px;
    margin-right: 10px;
    background-color: white !important;
}
div.globalSearchWrapper.form-group > .checkbox{
    padding: 12px 12px;
    margin-left: 5px;
    font-weight: bold;
    width: 80%;
}
/* Media-Query zur Verkleinerung der Breite des Teasers für die ortsungebundene Suche */
@media (max-width: 320px){
    div.globalSearchWrapper.form-group > .checkbox {
        width:75%;
    }
}
.globalSearchText{
    font-size: 10px;
    font-weight: initial;
    max-width: 500px;
}
div.globalSearchWrapper .globalSearchText p{
    padding: 0;
    width: 90%;
}
/* Padding-Top für "No-Favorites" Text in der Kontaktzentrale */
#no-favorites{
    padding-top: 30px;
}
/* Styles für den Teaser in der Suchergebnisliste zur Trennung von vermischten Ergebnissen (Länderspezifisch <=> Ortsungebunden) */
.moreMatches{
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    color: #3d3d3d;
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
}
/* Padding top für adTeaser "Adobe Connect" */
#adTeaser{
    padding-top: 20px;
}
/* Label Hinweise in der Suchprofilerstellung */
.labelHint{
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    padding: 0;
    margin: 0 0 0 20px;
}
/* Teaser in der Kontaktzentrale bei den Angenommenen Kontakten, falls mindestens ein Eintrag besteht */
#acceptedRequestsTeaser{
    border: unset;
    color: #004c97;
    background-image: unset;
    background-color: white;
    margin-bottom: 0;
    padding-bottom: 25px;
}

/* Styles für neues Layout des Userprofile Screen (Profilbild & E-Mail-Adresse anzeigen/ändern)
.userProfile #profilePhotoPlaceholder{
    float: left;
    margin-right: 5em;
}

.userProfile .glyphicon-envelope{
    font-size: xx-large;
    float: left;
    margin-left: 1.8em;
    margin-top: 0.4em;
}

.userProfile .userMail{
    margin-left: 15em;
}

.userProfile .userMail p{
    padding: 0;
}

.userProfile #firstRowWrapper{
    margin-bottom: 3.7em;
    margin-left: 1.8em;
}

.userProfile .userMailHeader{
    font-size: large;
    font-weight: bold;
}

.userProfile #secondRowWrapper{
    margin-bottom: 1em;
}

.userProfile #thirdRowWrapper p{
    font-weight: bold;
}

.userProfile #thirdRowWrapper #changeEmailInput{
    float: left;
    width: 55%;
    margin-right: 0.3em;
    margin-left: 10px;
}

.userProfile #thirdRowWrapper #changeEmailInput,
.userProfile #thirdRowWrapper #changeEmailBtn{
    height: 40px;
}*/
/* Neue Styles für Layout 3.0 des Userprofile Screen (Profilbild & E-Mail-Adresse anzeigen/ändern) */
#MyProfilePhoto .btn.btn-primary{
    font-size: 17px;
    height: 42px;
}
#MyProfilePhoto #uploadImage{
    margin-top: 2rem;
}
#MyProfilePhoto .userMailHeader,
#MyProfilePhoto .userMailDisplay{
    padding: 0;
    margin: 0;
}
#MyProfilePhoto .userMailHeader{
    font-size: large;
    font-weight: bold;
}
.userProfile #thirdRowWrapper p{
    font-weight: bold;
    padding-left: 15px;
    padding-right: 15px;
}
.userProfile #thirdRowWrapper #changeEmailInput{
    height: 42px;
}
.userProfile #thirdRowWrapper div.col-md-7.col-sm-7.col-xs-12{
    padding-right:0.3em;
}
.userProfile #thirdRowWrapper{
    margin-top: 3rem;
}
.userProfile #changeEmailBtn,
.userProfile #uploadImage{
    min-width: 150px;
}
@media (max-width:767px) {
    .userProfile #changeEmailBtn{
        margin-top: 1rem;
    }
    .userProfile #thirdRowWrapper{
        margin-bottom: 3rem;
    }
    .userProfile #uploadImageWrapper{
        padding-left: 0;
        padding-right: 0;
    }
    .userProfile #firstRowWrapper div:nth-child(2).col-xs-12{
        text-align: center;
    }
    .userProfile #thirdRowWrapper p{
        text-align: center;
    }
    .userProfile {
        margin-top: -10px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .userProfile #firstRowWrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (min-width:768px) and (max-width:850px){
    .userProfile #firstRowWrapper div.col-sm-8{
        padding-left: 2.9rem;
    }
    @media (min-width:810px) and (max-width:850px){
        .userProfile #firstRowWrapper div.col-sm-8{
            padding-left: 2rem;
        }
    }
}
.userProfile #uploadImage{
    width: 100%;
}

/* Styles für klasse bold-link um Links hervorzuheben */
.bold-link{
    font-weight: bold;
}
