/*
    eigene Style-Definitionen

    ausführliche Infos: https://bootswatch.com/lumen/
*/

.jumbotron-itw{
    background-color: #eeeeee;

}
.jumbotron-itw p{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 100;
}

.navbar-collapse-itw{
    background-color: #185222;
    font-size: 15px;
}

.text-muted-itw{
    color: #adadad;
}

@media screen and (min-width: 768px) {
    .jumbotron-itw .h1, .jumbotron-itw h1 {
        font-size: 49px;
        font-weight: 600;
    }
}

.card{
    background-color: #7ac1420A;
}

h6{
    color: rgb(32, 113, 72);
}

.itw-startbox{
    border: 1px solid rgba(32, 113, 72, 0.5);
    border-radius: 8px;
    padding: 15px;
}
.itw-startbox-title{
    color: rgb(32, 113, 72);
}

.btn{
    border: 1px solid rgba(32, 113, 72, 0.05);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
}
.btn:hover{
    border: 1px solid rgba(32, 113, 72, 1);
}

.disableHover {
    text-decoration: none;
    color: unset;
}
.disableHover:hover {
    color: unset;
}

.itwintranet-startpage-newscol{
    border: 1px solid rgb(32, 113, 72, 0.25);
    border-radius: 5px;
    padding: 8px;
    max-width: 25%;
}
.itwintranet-startpage-newscol img{
    width: 100%;
}
.itwintranet-newsentry{
    border: 1px solid rgba(32, 113, 72, 0.25);
    border-radius: 5px;
    padding: 8px;
    margin: 8px;
}
.itwintranet-newsentry-leftcol {
    max-width: 30%;
}
.itwintranet-newsentry-leftcol img{
    width: 100%;
}
.itw_tr_hover {
    cursor: pointer;
}
.itw_tr_hover:hover {
    cursor: pointer;
}
.itw_tr_hover_hand{
    cursor: pointer;    
}
.itw_tr_hover2:hover {
    /*cursor: pointer;*/
    background-color:antiquewhite;
}

#itw-tablerow-hiddenbuttons a {
    display: none;
    white-space: nowrap;
}
#itw-tablerow-hiddenbuttons i {
    display: none;
    white-space: nowrap;
}

#itw-tablerow:hover #itw-tablerow-hiddenbuttons a {
    display: block;
    white-space: nowrap;
}
#itw-tablerow:hover #itw-tablerow-hiddenbuttons i {
    display: block;
    white-space: nowrap;
}

.itw-hiddenRow{
    padding: 0 !important;
}

.table-responsive .dropdown-menu{
    position: page !important;
}
.table-responsive {
    overflow: visible;
}

/*body {*/
/*    min-height: 2000px; */
    /*padding-top: 75px;
}*/

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 25px;
    height: 25px;
    border-radius: 50%;
/*    display: block; */    
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

.ITWDropzoneFullscreen {
    background: #39E2B6;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    text-align: center;
    left: 0;
    font-size: 100px;
    font-family: calibri;
    color: white;
    line-height: 100vh;
}

.fadein{
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1s;
}
.fadein.visible{
    opacity: 1;
    transform: translate(0, 0);
}