#DOI {
    width: 60px
}

#AA {
    width: 130px
}

#FT,
#TT {
    width: 60px
}

#WC {
    width: 100px
}

.skeleton {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f6f7f8 !important;
    margin-bottom: 1px;
    background: linear-gradient(
            to right,
            #eeeeee 8%,
            #dddddd 18%,
            #eeeeee 33%
    ) !important;

    background-size: 1200px 100% !important;
    background-position: -1200px 0 !important;
    animation: shimmer 1.5s infinite linear !important;
}

@keyframes shimmer {
    0% {
        background-position: -1200px 0;
    }
    100% {
        background-position: 1200px 0;
    }
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: auto;
    color: auto;
    cursor: pointer;
}

/* But remove jQuery UI background icon */
.datepick {
    background-image: none !important;
}

.hide {
    display: none;
    opacity: 0;
}