body.overflow_hidden {
    overflow: hidden;
}

form .row {
    margin-top: 8px;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0.1;
    }
}

#content-card h1.title, #content-card p.caption {
    display: none;
}

.required>label:after {
    color: #e76669;
    font-size: 12px;
    content: " *";
}

.jconfirm {
    z-index: 1050 !important;
}
.select2-dropdown {
    z-index: 1051 !important;
}
.select2-selection__choice {
    width: fit-content !important;
    display: inline-block !important;
}

.select2-selection__clear {
    margin-top: 2px !important;
    margin-right: -10px !important;
}

._tr {
    font-style: normal;
}
._tr._tr_e:hover ._tr_a {
    cursor: pointer;
    animation-name: fade-in-tr;
    animation-duration: .1s;
    animation-fill-mode: both;
    animation-delay: .5s;
}
._tr._tr_e ._tr_a {
    position: absolute;
    z-index: 99999999;
    margin: -20px 0 0 -20px;
    padding: 8px;
    visibility: hidden;
}
@keyframes fade-in-tr {
    from {visibility: hidden;}
    to {visibility: visible;}
}

ul.pagination {
    display: inline-block;
    padding: 0;
    margin: 0;
}
ul.pagination li {display: inline;}
ul.pagination li a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}
ul.pagination li.disabled {
    padding: 7px 4px 0 4px;
    float: left;
}
ul.pagination li.active a {
    font-weight: bold;
    text-decoration: underline;
}
ul.pagination li a:hover:not(.active) {background-color: #ddd;}