#stylt-search-result-text{
    color: #337AB7;
    font-size: 20px;
}
.stylt-readonly-file input{
     cursor: pointer;
}
.stylt-readonly-file input:hover{
     background-color: lightblue;
}
.stylt-input-group-left-cross i:not(.fa-trash):not(.text-muted){
    position: absolute;
    right: 38px;
}
.stylt-left-cross{
    position: absolute;
    right: 38px;
}
.stylt-slidebar-absolute{
    position: absolute;
    background-color: #F8F8F8;
}
@media only screen and (max-width: 768px) {
    .stylt-slidebar-absolute{
        width:100%;
    }
    .stylt-slidebar-absolute li:last-child{
        border-bottom: 1px solid black;
    }
}
.stylt-padding-bottom{
    padding-bottom: 6px;
}
.stylt-tabs li{
    cursor: pointer;
}
.stylt-tabs li a{
    font-weight: bold;
}
.stylt-marked-column{
    background-color: #F5F5F5;
    font-weight: bold;
}
.stylt-pointer{
    cursor: pointer;
}
.stylt-panel-body {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 0px;
}
.stylt-full-width{
    width: 100%;
}
.stylt-push-down{
    padding-top: 20px;
}
.stylt-auto-hiding-success-msg{
    background-color: #DFF0D8;
    color: #3C763D;
}
.stylt-auto-hiding-failure-msg{
    background-color: #F2DEDE;
    color: #A94442;
}
.stylt-auto-hiding-failure-msg, .stylt-auto-hiding-success-msg, .stylt-auto-hiding-box{
    opacity: 0.8;
    position: fixed;
    top: -150px;
    bottom: 150px;
    left: 0;
    right: 0;
    margin: auto;
    width: 300px;
    height: 58px;
    z-index: 100000;
    text-align: center;
    padding-top: 17px;
    border: 1px solid black;
    font-size: 16px;
    border-radius: 20px;
    -moz-animation: stylt-cssAnimation 0s ease-in 2s forwards;
    /* Firefox */
    -webkit-animation: stylt-cssAnimation 0s ease-in 2s forwards;
    /* Safari and Chrome */
    -o-animation: stylt-cssAnimation 0s ease-in 2s forwards;
    /* Opera */
    animation: stylt-cssAnimation 0s ease-in 2s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes stylt-cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
        visibility:hidden;
    }
}
@-webkit-keyframes stylt-cssAnimation {
    to {
        width:0;
        height:0;
        visibility:hidden;
    }
}