/*
Startseite
*/

#home_page div.logo {
    height: 100%;
    background-color: white;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    width: 100%;
}

#home_page div.welcome_message {
    text-align: center;
}

.powered_by {
    /*margin-right: 15px;*/
}

.infoportal-read a h2 {
    font-weight: normal;
}

.infoportal-read a p {
    display: none;
}

.infoportal-dialog {
    min-width: 250px;
}

#infoportal li span.ui-li-count {
    margin-right: 40px;
}

.ui-content {
    margin-bottom: 3.5em;
    margin-top: 3.5em;
}

.list-icon {
    width: 25px;
    color: #6b6b6b;
}

#home_page.ui-page-theme-b .list-icon {
    width: 25px;
    color: #fff;
}

.fav-icon-wrapper {
    width: 20%;
    display: none;
}

svg.fav-icon {
    width: 25px;
    color: #dee2e6;
}

.fav-checkbox:checked + label svg .star {
    transform:scale(.2); fill: #ffe101;
    animation:animateStar .3s linear forwards .25s;
}

.star {
    transform-origin:center;
    animation:animateStarOut .3s linear forwards;
}

@keyframes animateStar {
    0% {
        transform: scale(.2);
    }
    40% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes animateStarOut {
    0% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

.ui-page-theme-b .list-group-item:not(.tab-title) {
    color: white !important;
    background-color: #252525;
}

.ui-page-theme-b svg, .ui-page-theme-b i {
    background-color: transparent !important;
}

.ui-page-theme-b .list-group-item {
    box-shadow: none;
}

#modal-logout-btn {
    color: #fff !important;
    text-decoration: none;
}

#modal-logout-btn:focus {
    border: 0;
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.modal-footer-buttons>* {
    margin: .25rem;
}

.list-group-item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 2.8rem;
}

.list-group-item:not(.tab-title) a,p {
    /*margin-top: 5px;*/
    text-decoration: none;
    color: #6b6b6b !important;
}

#home_page.ui-page-theme-b .list-group-item:not(.tab-title) a,
#home_page.ui-page-theme-b .list-group-item:not(.tab-title) p {
    /*margin-top: 5px;*/
    text-decoration: none;
    color: #fff !important;
}

.list-group-item:not(.tab-title):active {
    background-color: lightgray;
    color: #2f2f2f !important;
}

.tab-title {
    /*text-transform: uppercase;*/
    letter-spacing: 0.1em;
    /*font-family: fa5-proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;*/
    text-shadow: none;
}

.todo-count {
    right: 8px;
}

.favorites-edit {
    position: fixed;
    bottom: calc(3em + 20px);
    left: 20px;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 50%;
    z-index: 1050;
    cursor: pointer;
    transform: scale(0);
    transition: all 0.3s;
}

.favorites-edit svg.pencil-icon {
    margin: 0;
    font-size: 19px;
    width: 55%;
}

.favorites-edit svg.check-icon {
    margin: 0;
    font-size: 19px;
    width: 70%;
}

.favorites-edit[data-state="edit"] svg.pencil-icon {
    display: none;
}

.favorites-edit[data-state="fixed"] svg.check-icon {
    display: none;
}

.favorites-edit.animate {
    transform: scale(1);
}

.favorites-edit-label {
    position: fixed;
    bottom: calc(3em + 22px);
    left: 45px;
    width: calc(100% - 65px);
    transition: clip-path 0.2s;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    background: white;
    /*color: white;*/
    border-radius: 8px;
    z-index: 1049;
    height: 46px;
    overflow: hidden;
}

.favorites-edit-label.open {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
}

@supports not (clip-path: circle(25px at 25px calc(100% - 25px))) {
    .favorites-edit-label {
        display: none;
    }
    .favorites-edit-label.open {
        display: block;
    }
}

.favorites-edit-label .background {
    /*opacity: 0.3;*/
    background-color: #dee2e6 !important;
    border: none;
}

.favorites-edit-label p {
    left: 30px;
    font-size: 14px;
}

.modal-title {
    color: #6b6b6b;
}

.modal-body .alert {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}