﻿body {
}

.Clickable {
    cursor: pointer;

}
    .Clickable:hover {
        text-decoration: underline;
    }

    .collapse {
        display: none;
    }

.collapse2 {
    display: none;
}

.liIBHListHead {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 24px;
}

.liIBHList {
}

    .liIBHList:active {
        font-size: 0.95rem;
    }

.List {
    height: 100%;
    overflow: auto;
    /* display: block; */
    width: auto;
    min-width: 300px;
    border: 1px solid white;
    border-radius: 2px;
    line-height: 1.2;
    list-style-type: none;
    padding-left: 0;
    padding-top: 3px;
    white-space: nowrap;
}


.List0 {
    background-image: linear-gradient( #015a4fd4 0%, #385d41da 110%);
}

.List1 {
    background-image: linear-gradient( #433333d4 0%, #544444d4 110%);
}

/*.noselect {
    -webkit-touch-callout: none;*/ /* iOS Safari */
    /*-webkit-user-select: none;*/ /* Safari */
    /*-khtml-user-select: none;*/ /* Konqueror HTML */
    /*-moz-user-select: none;*/ /* Firefox */
    /*-ms-user-select: none;*/ /* Internet Explorer/Edge */
    /*user-select: none;*/ /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
/*}*/

.offset {
    padding-left: 20px;
}


.TextRed {
    color: rgba(255,69,62,100%);
}

.topOffset {
    margin-top: 5px;
}
.noPointerEvents {
    pointer-events: none;
    cursor: default;
}

.btnEditAlert {
    width: 100px;
    border: 2px solid white;
    border-radius: 5px;
    margin: 5px;
    color: white;
    text-align: center;
}

.lineHeight{
    height: 26px;
}

.AlphaIn {
    z-index: 110;
    animation: fadeInFromNone 0.5s ease-out forwards;
    
}

.AlphaInHeight {
    z-index: 110;
    animation: fadeInFromNoneH 0.5s ease-out forwards;
}

.AlphaOut {
    z-index: 0;
    animation: fadeOutFrom 0.5s ease-out forwards;
}

.AlphaOutHeight {
    z-index: 0;
    animation: fadeOutFromH 0.5s ease-out forwards;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInFromNoneH {
    0% {
        opacity: 0;
        height: 60px;
    }

    100% {
        opacity: 1;
        height: 100%;
    }
}

@-webkit-keyframes fadeOutFrom {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeOutFromH {
    0% {
        opacity: 1;
        height: 100%;
    }

    100% {
        opacity: 0;
        height: 60px;
    }
}
