.dataTables_scrollHead,
.dataTables_scrollHeadInner,
.table {
    width: 100% !important;
}

.record-item {
    position: relative;
    background-color: #EEE;
    width: 100%;
    height: 17.5rem;
    margin: .5rem 0;
    border-radius: 7.5px;
    box-shadow: 0 0 7.5px rgba(0, 0, 0, .2);
    overflow: hidden;
    padding-top: 2px;
}

.record-item:hover {
    box-shadow: 0 0 8.5px rgba(0, 0, 0, .65);
}

.record-item .record-image {
    position: relative;
    min-width: 100%;
    min-height: 100%;
    max-width: 1000px;
    max-height: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: min-width .25s, min-height .25s, max-width .25s, max-height .25s;
}

.record-item:hover .record-image {
    position: relative;
    min-width: 125%;
    min-height: 125%;
    max-width: 1250px;
    max-height: 1250px;
}

.record-item .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    padding: .3rem .5rem;
    bottom: 0;
    font-size: 0;
    color: white;
    height: 3rem;
}

.record-item .overlay>* {
    display: inline-block;
    font-size: 1.5rem;
    vertical-align: middle;
}

.record-item .overlay i {
    font-size: 20px !important;
}

.record-item .overlay label {
    width: 100%;
    text-align: center;
}

.record-item .overlay a {
    color: white;
}

.record-item .overlay button {
    color: white;
    background: none;
    padding: 0px;
    border: none;
}

.record-item .overlay .control {
    padding: .2rem;
    margin: 0 .35rem;
    font-size: 1.25rem;
    color: white;
    cursor: pointer;
    transition: color .25s, text-shadow .25s;
}

.record-item .overlay .control:hover {
    color: var(--info);
    text-shadow: 0 0 12.5px rgba(0, 0, 0, .75);
}

.record-item .overlay .not-active {
    margin: 0 .35rem;
    float: right;
    font-size: 1.25rem;
    color: #FF553B;
    text-shadow: 0 0 7.5px rgba(0, 0, 0, .5);
}