/* Minification failed. Returning unminified contents.
(159,39): run-time error CSS1034: Expected closing parenthesis, found ','
(159,39): run-time error CSS1042: Expected function, found ','
(159,42): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(200,39): run-time error CSS1034: Expected closing parenthesis, found ','
(200,39): run-time error CSS1042: Expected function, found ','
(200,42): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
 */
.metric-area-data-field::after {
    content: " sqm";
    color: black;
}

.sqft-area-data-field::after {
    content: " sqft";
    color: black;
}

.sqinch-area-data-field::after {
    content: " sqinch";
    color: black;
}



.weight-data-field::after {
    content: " \338f";
    color: black;
}

.slabCount-data-field::after {
    content: " slabs";
    color: black;
}

.volume-data-field::after {
    content: " \33A5";
    color: black;
}



.milimeter-data-field::after {
    content: " mm";
    color: black;
}

.feet-data-field::after {
    content: " ft";
    color: black;
}

.inches-data-field::after {
    content: " in";
    color: black;
}



.currency-field::before {
    content: attr(data-symbol);
    color: #FFFFFF
}

.image-table td, .image-table th {
    vertical-align: middle;
}

.image-cell-anchor {
    z-index: 5;
}

.server-img {
    cursor: pointer;
}

.image-col-header {
    width: 100px;
}


.request-overlay {
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    background: rgba(200,200,200,0.5);
}

.bool-col {
    width: 70px;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.dt-background-lightgray {
    background-color: lightgray;
}

.table {
    min-width: 1000px;
}

.promo-splash {
    position: absolute;
    top: 5px;
    right: 22px;
    background: #4c6b22;
    font-size: 20px;
    font-weight: bold;
    color: #beee11;
    padding: 5px;
    min-width: 203px;
    text-align: center;
}

#video-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

    #video-grid .recorded-video-card {
        background-color: lightgray;
        color: #fff;
        border-radius: 5px;
        padding: 0px;
        height: 200px;
        overflow: hidden;
    }

        #video-grid .recorded-video-card .card-head {
            background-color: transparent;
            padding: 0px;
            height: 74%;
            overflow: hidden;
            display: flex;
            justify-content: center; /* Horizontally center the content */
            align-items: center; /* Vertically center the content */
            text-align: center; /* Center the text content (optional) */
        }

        #video-grid .recorded-video-card:hover .card-head {
            background: rgb(112,207,29, 1);
            transition: background 0.5s ease;
        }

        #video-grid .recorded-video-card:not(:hover) .card-head {
            background: lightgray;
            transition: background 0.5s ease;
        }

        #video-grid .recorded-video-card .card-body .card-title {
            white-space: nowrap; /* Prevent text from wrapping to the next line */
            overflow: hidden; /* Hide overflowing content */
            text-overflow: ellipsis; /* Add ellipsis (...) to indicate overflow */
        }

        #video-grid .recorded-video-card a {
            color: #000;
        }

            #video-grid .recorded-video-card a:hover {
                color: #fff;
            }

        #video-grid .recorded-video-card .card-block {
            width: 100%;
            height: 100%;
        }

        #video-grid .recorded-video-card .play {
            height: 55px;
            width: 75px;
            position: sticky;
            text-align: center;
            cursor: pointer;
            border-radius: 5px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%); /* Center the container horizontally and vertically */
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgb(112,207,29, 1);
            transition: background-color 0.5s ease;
            color: white;
        }

        #video-grid .recorded-video-card .remove-video {
            position: absolute;
            right: 5px;
            top: 5px;
            font-size: 12px;
            z-index: 2;
        }

        #video-grid .recorded-video-card .play i.fa {
            font-size: 2em; /* Adjust the font size as needed */
        }
