/* Font */
body {
    font-family: 'Khmer', 'Nunito', cursive;
}
/* Image Over */
/* .hover {} */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    padding-top: 1rem;
    transition: all 0.4s;
    opacity: 0;
}

.hover:hover .hover-overlay {
    opacity: 0.75;
}

.hover:hover .hover-overlay:hover {
    opacity: 1;
}

/* Responsive 3x4 Image */
.bg-profile {
    background-color: #e5e7e8;
}
.responsive-3x4-container {
    position: relative;
    overflow: hidden;
    padding-top: 133%;  /* 4 = 133% of 3 */
}
.responsive-3x4-container .responsive-3x4 {
    position: absolute;
    width: 100%;
    max-width: 100%;
    /* max-height: 100%; */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
/* Sticky Edit Delete Buttons On Table */
.row-sticky-action {
    position: sticky;
    right: 0;
    height: 100%;
    outline: 1px solid #dee2e6;
}

/* Sticky Edit Row */
.row-sticky-edit {
    position: sticky;
    left: 0;
    /* Largest */
    width: 825px;
}
@media (max-width: 575.98px) {
    .row-sticky-edit {
        width: 95vw;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .row-sticky-edit {
        width: 510px;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .row-sticky-edit {
        width: 690px;
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .row-sticky-edit {
        width: 690px;
    }
}
@media (min-width: 1200px) {
    .row-sticky-edit {
        width: 825px;
    }
}

/* Sizing Especially for Radio Button */
.size-l {
    transform: scale(1.5);
}