.pull-left {
    float: left !important
}

.pull-right {
    float: right !important
}

.pull-none {
    float: none !important
}

@media (min-width: 768px) {
    .hidden-md-up {
        display: none !important;
    }
}

.nav-dropdown-sm.collapsing,
.nav-dropdown-sm.collapse.in {
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.cursor-pointer {
    cursor: pointer;
}
.btn-hover {
    visibility: hidden;
    background-color: transparent;
    color: black;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 7px 11px;
}
tr:hover .btn-hover {
    visibility: visible;
}
tr:hover .btn-hover:hover {
    background-color: rgb(206, 206, 206);
    cursor: pointer;
}
.grab {
    cursor: move;
}
.thumbnail {
    display: inline-block;
}
.thumbnail img {
    display: none;
}
.thumbnail:hover img {
    display: block;
    position: absolute;
}