﻿.imgLogin {
    display: block;
    width: 100%;
}

.bgBoxLight {
    background-color: var(--gray-lighter);
}

.noBgBorder {
    background-color: unset !important;
    border: unset !important;
}

.trLangSel {
    height: 36px !important;
}

.divInput {
    background: none;
    width: 100%;
    padding: 10px 0;
    display: block;
}

.divOtlLoc {
    display: flex;
    width: 49%;
    height: 50px;
    overflow-y: auto;
    padding: 5px;
}

#divWaiting img {
    height: 25px;
}

.img-rpt {
    max-width: 150px;
    height: 100px;
    max-width: 150px;
}

.tbl-icon {
    display: block;
    margin: 0 auto;
    height: 28px;
    /*    border-radius: 5px;*/
}

.img-icon {
    display: block;
    margin: 0 auto;
    height: 25px;
}

    .img-icon:hover {
        /*background-color: var(--main-shade);*/
    }

.icon-sublink {
    margin-right: 12px;
    text-align: center;
    width: 24px;
    height: 24px;
    display: inline-block;
}

    .icon-sublink img {
        max-height: 100%;
        max-width: 100%;
        margin: auto;
    }

.txtItalic, i {
    font-style: italic !important;
}

.txtBold, b {
    font-weight: bold !important;
}

.txtSuccess {
    color: var(--grean-main) !important;
    font-weight: bold !important;
}

.txtError {
    color: var(--red-dark) !important;
    font-weight: bold !important;
}

.h100perc {
    height: 100% !important;
}

.trHover:hover {
    background-color: var(--tr-hover) !important;
    color: black !important;
}

.img-sml {
    height: 15px !important;
}

textarea {
    max-width: 900px;
    min-width: 300px;
    width: 100%;
    max-height: 120px;
    min-height: 120px;
    padding: 10px !important;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    transition: 0.1s all linear;
    margin-right: 5px;
    position: relative;
    /*top: 5px;*/
    cursor: pointer;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    transition: 0.1s all linear;
    margin-right: 5px;
    position: relative;
    top: 8px;
    cursor: pointer;
}

    input[type="radio"]:checked, input[type="checkbox"]:checked {
        border: 7px solid green;
        outline: unset !important /* I added this one for Edge (chromium) support */
    }

.alert-user {
    margin: 6px auto;
    padding: 10px;
    color: #856404;
    background-color: #fff3cd;
    border-left: solid 5px red;
}

.badge {
    padding: 0.5rem;
    border-radius: 2px;
    background-color: var(--neutral-600);
    font-weight: bold;
}

/* ================================================== */

/* USED FOR BOXES WITH ICONS SUCH AS FAVORITES AND OUTLET DOCUMENTS LIST  */



.grid-sub {
    color: var(--black);
    text-transform: none;
    position: relative;
    border: 1px solid var(--neutral-300);
    border-radius: 0.5rem;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .grid-sub:hover {
        background-color: var(--primary-50);
        border-color: var(--primary-700);
    }

    /*fav outlet card*/

    .grid-sub a {
        color: var(--black);
    }

    /*Menu btns*/
    .grid-sub span {
        font-weight: 600;
    }

.sub-icon {
    position: absolute;
    right: 8px;
    top: 8px;
}


.btnGridSub:hover, .btnGridSub:focus, .btnGridSub:active {
    background-color: var(--tr-hover); /*#84c149;*/
}

.st_MarginR {
    margin-right: 10px;
}

.imgCard {
    max-height: 50px;
    max-width: 50px;
    display: block;
}

.imgCardSmall {
    max-height: 30px;
    max-width: 30px;
    display: block;
}

.stFloatR {
    float: right;
    position: relative;
}



.divVCenter {
    display: flex;
    justify-content: left;
    align-items: center;
}


/* ================================================== */

.iframe-box {
    position: relative;
    width: 100%;
    min-width: 800px;
    height: 0;
    padding-top: 66.7%; /* This is your aspect ratio (3/2) */
}

.iframe-sub {
    position: absolute;
    border: none;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 530px;
}

/* ================================================== */

/* USED FOR GENERAL SIMPLE TEXT CONTAINERS ONLY */
/* SUCH AS ADMIN MAIN MENU PAGE */
/* WHERE ONLY SINGLE LINE NEEDED IN THE BOX */



/* FOR GENERAL FORMS DATA ENTRY */

.divFormContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    overflow: auto;
    padding: 1rem;
    border: var(--border-primary);
    border-radius: var(--border-radius-md);
    margin: 1rem 0;
}

.divFormBox {
    min-height: 65px;
    padding: 5px 15px;
}

/* FOR CARDS WITH ICONS ON PAGES */

.divMainContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.divMainBox {
    border: 1px solid silver;
    border-radius: 5px;
    min-height: 40px;
    padding: 5px 10px;
}

    .divMainBox:hover {
        background-color: var(--main-shade);
    }

.divMainBoxImg {
    width: 100%;
    text-align: center;
}

    .divMainBoxImg img {
        margin: 0 auto;
        display: block;
        height: 60px;
    }

.divMainBoxText {
    width: 100%;
    min-height: 30px;
    text-align: center;
    padding: 10px;
}

    .divMainBoxText span {
        vertical-align: middle;
    }

/* ================================================== */

.divSelected {
    border: 1px solid var(--primary-700);
    background-color: var(--main-shade);
}

.imgPaging {
    max-height: 20px;
    max-width: 25px;
}

.icon-sml {
    height: 29px;
    margin: 0 5px;
}

.bgNotActive {
    background-color: var(--bg-biqsue);
    color: var(--red-dark);
}
