﻿.jar-bolt {

}

.jar-bolt i {
    transition: color .1s ease-in-out;
}

.jar-bolt:hover {
    cursor: pointer;
}
    .jar-bolt:hover i {
        color: #fdca21;
    }

#jar-Options {

}

    #jar-Options > .hoverable.active:hover {
        background-color: #007bff !important;
    }

    #jar-Options .hoverable:hover {
        background-color: ButtonHighlight;
    }

    #jar-Options > .hoverable.active {
        background-color: #007bff !important;
    }

#loader {
    display: block;
    position: relative;
    height: 130px;
    margin-bottom: 20px;
}

#loader.saglist {
    display: flex;
    flex-direction: row;
    height: 20px;
    width: 200px;
    align-self: center;
    transform: scale(.8);
}

.load-text {
    height: 1%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2rem;
    transform: translate(-50%, -50%);
}

.load-text-list {
    display: block;
    font-size: 20px;
    text-align: left;
}

.fade-custom {
    transform: translateY(-35px);
    opacity: 0;
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

    .fade-custom.show {
        opacity: 1;
        transform: translateY(0px);
    }