p {
    /*display: inline-block !important;*/
}

.skeleton-loader:empty {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0) 100%),
        #fff;
    background-repeat: repeat-y;
    background-size: 50px 500px;
    background-position: 0 0;
    animation: shine 1s infinite;
}

@keyframes shine {
    to {
        background-position: 100% 0;
    }
}

#testContent .part-section.time-is-up {
    position: relative;
}

#testContent .part-section.time-is-up:before {
    content: 'Your Time is Up!';
    font-size: 2rem;
    text-align: center;
    padding-top: 10rem;
    color: #000;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.part-div table, .part-div th, .part-div td {
    border: 1px solid #000 !important;
    padding: 0.5rem !important;
}

#highlightMenu, #deleteMenu {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
    cursor: pointer;
}

#highlightMenu.show, #deleteMenu.show {
    visibility: visible;
    opacity: 1;
}

.highlight {
    background: #ff0 !important;
    padding: 0.2rem 0 !important;
}

.swal2-container .swal2-html-container {
    max-height: 390px;
}