body {
    background: #f1f1f7;
    font-family: "Figtree", sans-serif;
}
.btn {
}
.tt {
    position: relative;
    display: inline-block;
}
.tt .tt-text {
    visibility: hidden;
    width: 120px;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}
.tt:hover .tt-text {
    visibility: visible;
    opacity: 1;
}
.status-dot {
    display: inline-block;
    border-radius: 100%;
    width: 8px;
    height: 8px;
}
.status-dot.pending {
    background: orange;
    animation: pulse 2s infinite;
}
.status-dot.success {
    background: yellowgreen;
}
.status-dot.error {
    background: orangered;
}
.status-dot.skip {
    background: gray;
}
.pv {
    /*
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.2);

     */
    /* display: none; */
}
.pv.show {
    display: unset;
}
.pv-image-area {
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}
.pv .img-1, .pv .img-2, .pv .img-diff {
}
.pv .img-1,
.pv .img-2,
.pv .img-diff {
    position: relative;
    width: 100%;
    top: 0;
}
.pv .img-diff {
    position: absolute;
    z-index: 2000;
    top: 0;
    left: 0;
}
.pv .img-1 {
    z-index: 1;
}
.pv .img-2 {
    z-index: 2;
}
.pv .img-diff {
    z-index: 3;
    opacity: 0.75;
}
.pv label {
    display: block;
    padding: 10px;
}
.btn-pv-close {
    float: right;
}
.image-container {
    position: relative;
}
.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}
img.hidden {
    display: none;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}
.responsive-table th, .responsive-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
@media screen and (max-width: 600px) {
    .btn.btn-outline-dark {
        padding: .375rem .4rem !important;
    }
    .responsive-table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr {
        display: block;
    }
    .responsive-table thead {
        display: none;
    }
    .responsive-table tr {
        margin-bottom: 10px;
        border-bottom: solid 2px gray;
    }
    .responsive-table td {
        display: block;
        text-align: left;
        padding-left: 50%;
        position: relative;
        border-bottom: 0;
        border-top: 0;
    }
    .responsive-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-transform: uppercase;
    }
}
.responsive-table th {
    display: none;
}
.responsive-table td {
    padding-left: 12px;
}