﻿:root {
    /*COLORS*/
    --blue-brand: #0460A9; /* Main Blue*/
    --blue-dark: #06064d;
    --blue-light: #c1dce8; /*Secondary Blue*/
    --blue-blue: #127aa8;
    --blue-l-bckgrnd: rgb(242, 242, 255);
    --blue-cadet: cadetblue;
    --navy-txt: rgb(2, 27, 78);
    --teal-brand: #20C997; /*Mars Main Green + Sucess Messages*/
    --text-primary: #111111;
    --green-action: rgba(0,255,0,0.01);
    --green-l-bckgrnd: #80c381;
    --green-d: #144115;
    --red-brand: #FA0000; /*Mars Main Red + Error Messa ges*/
    --red-txt: #460909;
    --red-l-bkgrnd: rgb(250,230,215);
    --yellow-txt: #f1ed48;
    --yellow-bckgrnd: #fffda6;
    --black-brand: #1F1F1F; /*Main Black + Text Color*/
    --white-brand: #FFFFFF; /*Main White*/
    --grey-table: #F1F1F1; /*Main Background Color for Tables*/
    --gray-l-brand: #9ea3b0;
    --gray-d-btn: #949fbe;
    --gray-l-btn: #9ea9c7;
    --silver: rgb(230,230,230);
    --disable-btn: silver;
    --disable-txt: dimgray;
    /*BORDERS*/
    --border-primary: solid 1px #B2B2B2; /*Primary Border*/
    --border-radius-primary: 5px;
    --border-radius-input: 2px;
    /*Widths*/
    --container-desktop-max: 1000px;
    --container-desktop-min: 700px;
    /*Typography*/
    --text-small: 0.8rem;
    --text-large: 1.5rem;
    /*Input Forms*/
    --input-height-default: 35px;
    --input-height-default2: 65px;
    /*Padding*/
    --padding-default: 1rem;
    --padding-sm: 5px;
}

/*----------------------------------------------------------------------------------------*/

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html {
    font-size: 100%;
}
/*16px*/


body {
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-primary);
    margin: auto;
}

.container {
    padding-inline: var(--padding-default);
    position: relative;
    min-height: 100vh;
}

#lblC {
    font-weight: bold;
}

.hPage {
    font-weight: bold;
    font-size: 1rem;
    line-height: 40px;
    border-bottom: var(--border-primary);
    margin-bottom: 10px;
    display: block;
}

/*HEADER*/

.header {
    padding: 1rem 1rem 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.header-wrapper::after {
    content: "";
    display: block;
    height: 0.1rem;
    background-color: var(--blue-brand);
}

.logo {
    display: inline;
    height: var(--input-height-default2);
}



.dropdown {
    position: relative;
    justify-self: end;
    cursor: pointer;
    align-self: end;
}


.dropdown-content {
    display: none;
    position: absolute;
    top: 2rem;
    background-color: var(--grey-table);
    padding: 0.5rem 1rem 1rem 1rem;
    z-index: 1;
}

    .dropdown-content a {
        color: var(--blue-brand);
        text-decoration: none;
        display: block;
        text-align: right;
    }

.dropdown:hover .dropdown-content {
    display: block;
}


/*DASHBOARD MENU*/

.menu-wrapper {
    display: flex;
    gap: 1rem;
    padding-inline: 1rem;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.menu-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-primary);
    border-radius: var(--border-radius-primary);
    height: 100px;
    width: 200px;
/*    text-decoration: none;
*/    color: var(--black-brand);
    font-family:Calibri;
    text-align:center;
}

    .menu-card:hover {
        border: solid 1px var(--blue-brand);
        color: var(--blue-brand);
        background: var(--blue-light);
    }


/*FOOTER HERE */


.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--blue-brand);
    color: white;
    font-size: 0.8rem;
    padding-inline: var(--padding-default);
    margin-top: 2rem;
}

    .footer * {
        display: inline-block;
        vertical-align: middle;
        opacity: 0.8;
    }



.paygoslogo {
    width: 90px;
    filter: grayscale(100%) brightness(400%);
}

    .paygoslogo:hover {
        opacity: 1;
    }

@media only screen and (max-width: 600px) {

    .container {
        display: block;
    }


    .footer {
        position: absolute;
        bottom: 0;
        left: 0;
        text-align: center;
        font-size: 0.6rem;
    }

    .paygoslogo {
        padding-inline: 0.5rem;
    }
}

.divGroup {
    border: var(--border-primary);
    border-radius: var(--border-radius-primary);
    min-width: var(--container-desktop-min);
    max-width: var(--container-desktop-max);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-content: start;
    padding-block: var(--padding-default);
}

.divCentralItem {
    border: var(--border-primary);
    border-radius: var(--border-radius-primary);
    display: block;
    clear: both;
    overflow: auto;
    margin-bottom: 20px;
    background-color: var(--silver);
    height: 400px;
    padding: var(--padding-default);
    justify-items: center;
    align-content: center;
}

.divObject {
    width: 100%;
    overflow: auto;
}

.hrTop {
    height: 15px;
    box-shadow: inset 5px 15px 5px -10px darkgray;
    border: none;
    clear: both;
    display: block;
}


.btnSubButton {
    font-style: italic;
    padding: 5px 10px;
    border: none;
    margin-left: 15px;
    background-color: lightgray;
    color: blue;
}

    .btnSubButton:hover {
        color: darkblue;
        background-color: aqua;
        cursor: pointer;
    }

.hrMain {
    clear: both;
    display: block;
    border: solid 1px rgb(230,230,230);
    width: 100%;
}

.hrMainNoBorder {
    clear: both;
    display: block;
    width: 100%;
    justify-content: center;
}

.gridTotals {
    width: 100%;
    color: darkblue;
    font-weight: bold;
    display: block !important;
    clear: both !important;
    margin-bottom: 15px;
}

.gridPages {
    width: 100%;
    text-align: end;
    padding: 0.5rem 0 0 2rem;
}


.iFrameMain {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.btnifClose {
    position: absolute;
    float: Right;
    top: 25px;
    left: 45px;
    height: var(--input-height-default);
    width: 45px;
    font-size: 16pt;
    font-weight: bold;
    border: solid 1px red;
    background-color: rgba(255,0,0,0.2);
    cursor: pointer;
}

.btnifCloseNew {
    position: absolute;
    float: Right;
    top: 115px;
    left: 45px;
    height: var(--input-height-default);
    font-size: 16pt;
    font-weight: bold;
    border: solid 1px red;
    background-color: rgba(255,0,0,0.2);
    cursor: pointer;
}

.divBody {
    max-width: var(--container-desktop-max);
    min-width: var(--container-desktop-min);
    margin: auto;
    margin-bottom: 50px;
}

.lblDisplay {
    font-weight: 700;
}

.lblDisplayLarge {
    font-weight: 700;
    font-size: 22px;
    line-height: 25px;
    text-align: left;
}

.lblGridPage {
    padding: var(--padding-sm);
    font-size: var(--text-small);
    color: var(--blue-brand);
}

.lblData {
    color: black;
    clear: both;
    font-weight: normal;
    padding-left: var(--padding-sm);
}

.lblData2 {
    color: black;
    clear: both;
    font-size: 15px;
    display: block;
}

.divButtonsAlert {
    text-align: right;
    display: block;
    color: black;
    font-weight: bold;
    width: 100%;
    padding: var(--padding-sm);
    border: solid 1px navy;
    background-color: rgb(0,30,90);
    line-height: 35px;
    margin-bottom: 25px;
    /*background-color: rgb(230,230,230);*/
}

.divButtons {
    float: right;
    display: block;
    color: white;
    font-weight: bold;
    width: 100%;
    padding: var(--padding-sm);
    background-color: transparent;
    line-height: var(--input-height-default);
    margin-bottom: 10px;
    min-height: 75px;
}

.divButtonsInner {
    text-align: left;
    display: block;
    color: white;
    font-weight: bold;
    width: 100%;
    padding: var(--padding-sm);
    border: solid 1px navy;
    background-color: rgb(0,30,90); /*Navy;*/
    border-radius: 0;
    line-height: var(--input-height-default);
    /*background-color: rgb(230,230,230);*/
    min-height: 45px;
}

.divButtonsLabel {
    float: left;
}

.lblDivButtons {
    float: left !important;
}

.divAction {
    border: var(--border-primary);
    border-radius: var(--border-radius-primary);
    overflow: auto;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    background-color: rgba(0,255,0,0.1);
}

    .divAction > .divButtons {
        margin-bottom: 0px;
    }

.divButtonLogin {
    text-align: right;
    display: block;
    width: 100%;
}

.text-center {
    text-align: center;
}

.divNav2 {
    display: block;
    overflow: auto;
    width: 100%;
    min-height: 170px;
    margin-bottom: 15px;
    margin-left: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    border: var(--border-primary);
    border-radius: var(--border-radius-primary);
    -webkit-box-shadow: 3px 4px 8px gray inset; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 3px 4px 8px gray inset; /* Firefox 3.5 - 3.6 */
    box-shadow: 3px 4px 8px gray inset; /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.divNav {
    display: inline-table;
    overflow: auto;
    width: 46%;
    min-height: 185px;
    margin-bottom: 15px;
    margin-left: 15px;
    margin-right: 15px;
    padding: var(--padding-default);
    border: var(--border-primary);
    border-radius: 10px;
    -webkit-box-shadow: 3px 4px 8px gray inset; /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
    -moz-box-shadow: 3px 4px 8px gray inset; /* Firefox 3.5 - 3.6 */
    box-shadow: 3px 4px 8px gray inset; /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
}

.divNavNew {
    display: Block;
    overflow: auto;
    width: 100%;
    min-height: 100px;
    margin-bottom: 25px;
    border-bottom: solid 2px silver;
}

.divMain {
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
    min-height: 55px;
    padding: var(--padding-sm);
}

.divLogin {
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
    min-height: 55px;
    padding: var(--padding-default);
    /*    border: solid 7px gray;
    border-radius: 10px 10px;*/
}

.divInner {
    line-height: 30px;
    width: 100%;
    margin-bottom: 10px;
    min-height: 35px;
}

.divForm {
    display: inline-block;
    width: 33.33%;
    float: left;
    padding: var(--padding-default);
    border-bottom: solid 1px rgb(230,230,230);
    border-right: solid 1px rgb(230,230,230);
}

.divFormNoBorder {
    width: 80%;
    margin: auto;
}

.divFormNoBrd50 {
    display: inline-block;
    width: 40%;
    float: left;
    padding: var(--padding-default);
}

.divData {
    display: inline-block;
    width: 33.3%;
    float: left;
    padding: var(--padding-sm);
    border-bottom: solid 1px rgb(230,230,230);
    border-right: solid 1px rgb(230,230,230);
}

@media screen and (min-width:601px) {
    .divForm {
        height: 80px;
        overflow: auto;
    }

    .divData {
        height: 60px;
        overflow: auto;
    }
}

.divNote {
    color: blue;
    font-weight: bold;
    display: block;
    clear: both;
    padding: var(--padding-sm);
}

.divError {
    background-color: rgb(250,230,215);
    border: solid 1px maroon;
    border-radius: 2px;
    padding: var(--padding-default);
    font-weight: bold;
    color: maroon;
    width: 100%;
    margin-bottom: 15px;
}

.divAlert {
    background-color: rgb(204,236,255);
    border: solid 1px Navy;
    border-radius: 2px;
    padding: var(--padding-sm);
    font-weight: bold;
    color: navy;
    width: 100%;
    margin-bottom: 15px;
}

.divSuccess {
    margin-bottom: 15px;
    background-color: rgba(0,255,0,0.2);
    border: var(--border-sucess);
    border-radius: var(--border-radius-primary);
    border-radius: 2px;
    padding: var(--padding-default);
    font-weight: bold;
    color: green;
    width: 100%;
}

/*Typography*/

h1 {
    font-size: 18pt;
}

h2 {
    font-size: 15pt;
}

h3 {
    font-size: 12pt;
}

a {
    text-decoration: none;
}

    a:hover {
        color: grey;
    }

.trHeader {
    background-color: rgb(75,75,75);
    Color: white;
    font-weight: bold;
    font-style: italic;
}

.cssBlock {
    display: block;
}

.cssBold {
    font-weight: bold;
}

.trHeaderSub {
    background-color: rgb(175,175,175);
    Color: black;
    font-weight: bold;
    font-style: italic;
}

.tblDetails {
    width: 100%;
    border-collapse: collapse;
}

    .tblDetails tr {
        height: 25px;
    }

    .tblDetails td {
        border: var(--border-primary);
        padding-left: var(--padding-sm);
    }

.divTitle {
    color: white;
    font-style: italic;
    font-weight: bold;
    width: 100%;
    line-height: 35px;
    background-color: rgb(75,75,75); /*rgb(230,230,230);*/
    padding-left: var(--padding-sm);
    display: block !important;
    clear: both !important;
}

.divTitleSmall {
    color: black;
    font-style: normal;
    font-weight: bold;
    width: 33%;
    line-height: 35px;
    background-color: darkgray; /*rgb(230,230,230);*/
    padding-left: 5px;
    display: block !important;
    clear: both !important;
}

.btnLogOff {
    float: right !important;
    margin: 0 auto;
    border: solid 1px gray;
    border-radius: 2px;
    color: black !important;
    padding: var(--padding-sm);
    text-decoration: none;
    background-color: silver;
}

    .btnLogOff:hover {
        cursor: pointer;
        font-weight: bold;
        border-color: black;
        background-color: rgba(0,0,255,0.9);
        color: white !important;
    }

.btnHelp {
    font-weight: bold;
    color: blue !important;
}

.lblHello {
    float: right !important;
    color: white;
    padding: var(--padding-sm);
}

.divTopMainClinic {
    background-color: lightgray;
    color: black;
    line-height: 35px;
    padding-left: var(--padding-sm);
}

.imgTopLogo {
    float: left !important;
    height: 60px;
}

.imgView {
    height: 95%;
    width: 90%;
}

.imgFCLogo {
    height: 30px;
}

.divContent {
    width: 45%;
    display: inline-block;
    height: var(--input-height-default);
    line-height: var(--input-height-default);
    margin-bottom: 10px;
}

.divTest {
    width: 100%;
    padding: var(--padding-sm);
    background-color: var(--yellow-bckgrnd);
    border: solid 5px var(--red-txt);
    border-radius: 2px;
    font-weight: bold;
    color: maroon;
    font-size: 11pt;
    font-family: Calibri;
}

.divTopMain {
    min-height: 70px;
    background-color: #0000A0;
    color: white;
    font-weight: normal;
    font-family: Calibri;
    font-size: 15px;
    padding: 0;
}

    .divTopMain a:visited {
        color: white;
    }

.lblTitle {
    font-size: 24pt;
    text-align: center;
}

.tblMain {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: silver;
}

    .tblMain tr {
        height: 45px;
    }

    .tblMain td {
        vertical-align: middle;
        border: var(--border-primary);
        padding: var(--padding-sm);
    }


.btnInfo {
    border-radius: 2px;
    color: blue;
    font-style: italic;
}

.tblhelpPopUp {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

    .tblhelpPopUp tr {
        min-height: 25px;
    }

    .tblhelpPopUp td {
        vertical-align: middle;
        border: var(--border-primary);
        padding: var(--padding-sm);
    }

.lst100p {
    width: 90%;
}

.headerbgColor {
    background-color: rgb(221,235,247);
    font-weight: bold;
    font-size: 12pt;
    color: darkblue;
}

.tdBtn {
    text-align: right;
}

.table-menu td:first-child {
    width: 25%;
    min-width: 150px;
}

.btnMenuLink2 {
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    padding: var(--padding-sm);
    width: 30%;
    margin-left: 15px;
    margin-bottom: 5px;
    height: 40px;
    border: solid 1px red;
}

    .btnMenuLink2:hover {
        color: red;
    }

.btnMenuNew {
    min-width: 60px;
    height: 25px;
    border: none;
    cursor: pointer;
    background: none;
    color: white;
    font-family: Calibri;
    font-weight: normal;
    font-size: 18px;
}

    .btnMenuNew:hover {
        font-weight: normal;
        color: yellow;
        text-decoration: underline;
    }

    .btnMenuNew:disabled {
        color: var(--gray-l-btn);
    }

.btnMenuLink {
    font-weight: normal;
    font-size: 20px;
    display: block;
    padding: var(--padding-sm);
    height: var(--input-height-default);
    border: none;
    background-color: transparent;
    color: white;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 0px;
}

    .btnMenuLink:hover {
        font-weight: bold;
        text-decoration: underline;
        color: yellow;
    }

    .btnMenuLink:disabled {
        color: var(--disable-txt);
        text-decoration: none;
        background-color: none;
        cursor: not-allowed;
    }

.gvCommand {
    width: 70px;
    text-align: center;
}

.gvExport {
    font-size: 9pt;
    font-family: Verdana;
}

.gvDisplay {
    width: 100%;
    background-color: white;
}

    .gvDisplay:hover {
        background-color: var(--blue-l-bckgrnd);
    }

    .gvDisplay tr {
        height: 30px;
    }

        .gvDisplay tr th {
            color: black;
            background-color: silver;
            font-size: 11pt;
        }

.btnGv {
    width: 95%;
    height: 25px;
    border-radius: 2px;
    color: var(--navy-txt);
    background-color: var(--blue-light);
    border: solid 1px var(--navy-txt);
    font-size: 11pt;
    margin-left: 0px;
    margin-right: 0px;
    text-align: center;
    padding: 0px;
}

    .btnGv:hover {
        background-color: var(--blue-blue);
        color: var(--yellow-txt);
        cursor: pointer;
    }

    .btnGv:disabled {
        background-color: var(--disable-btn);
        color: var(--disable-txt);
        border-color: darkgray;
        cursor: not-allowed;
    }

.btn {
    -webkit-font-smoothing: antialiased;
    height: var(--input-height-default);
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: var(--border-radius-primary);
    border: solid 1px var(--black-brand);
}

    .btn:hover, .btn:focus, .btn:active {
        background-color: var(--black-brand);
        -webkit-font-smoothing: antialiased;
        color: white;
        font-weight: 700;
        cursor: pointer;
    }

    .btn:disabled {
        background-color: var(--disable-btn);
        color: var(--disable-txt);
        border-color: darkgray;
        cursor: not-allowed;
    }

.btnLeft {
    width: 120px;
    height: var(--input-height-default);
    border-radius: var(--border-radius-input);
    color: white;
    background-color: var(--blue-brand);
    border: solid 1px var(--navy-txt);
    cursor: pointer;
    padding: var(--padding-horizontal);
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    float: left;
}

    .btnLeft:hover, .btnLeft:focus, .btnLeft:active {
        background-color: var(--black-brand);
        -webkit-font-smoothing: antialiased;
        color: white;
        font-weight: 700;
        cursor: pointer;
    }

    .btnLeft:disabled {
        background-color: var(--disable-btn);
        color: var(--disable-txt);
        border-color: darkgray;
        cursor: not-allowed;
    }

.btnSmall {
    width: 100px;
    height: 30px;
    border-radius: 2px;
    color: white;
    background-color: var(--blue-brand);
    border: solid 1px var(--navy-txt);
    cursor: pointer;
    font-size: 11pt;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    float: right;
}

    .btnSmall:hover, .btnSmall:focus, .btnSmall:active {
        background-color: var(--black-brand);
        -webkit-font-smoothing: antialiased;
        color: white;
        font-weight: 700;
        cursor: pointer;
    }

    .btnSmall:disabled {
        background-color: var(--disable-btn);
        color: var(--disable-txt);
        border-color: darkgray;
        cursor: not-allowed;
    }

.btnBack {
    min-width: 120px;
    height: var(--input-height-default);
    border-radius: 2px;
    color: white;
    background-color: var(--gray-l-btn);
    border: solid 1px var(--gray-d-btn);
    cursor: pointer;
    font-size: 13pt;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    float: right;
}

    .btnBack:hover, .btnBack:focus, .btnBack:active {
        background-color: var(--black-brand);
        -webkit-font-smoothing: antialiased;
        color: white;
        font-weight: 700;
        cursor: pointer;
    }

    .btnBack:disabled {
        background-color: var(--disable-btn);
        color: var(--disable-txt);
        border-color: darkgray;
        cursor: not-allowed;
    }

.btnBackL {
    min-width: 120px;
    height: var(--input-height-default);
    border-radius: 2px;
    color: white;
    background-color: var(--gray-l-btn);
    border: solid 1px var(--gray-d-btn);
    cursor: pointer;
    font-size: 13pt;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
    float: left;
}

    .btnBackL:hover, .btnBackL:focus, .btnBackL:active {
        background-color: var(--black-brand);
        -webkit-font-smoothing: antialiased;
        color: white;
        font-weight: 700;
        cursor: pointer;
    }

    .btnBackL:disabled {
        background-color: var(--disable-btn);
        color: var(--disable-txt);
        border-color: darkgray;
        cursor: not-allowed;
    }

.validator {
    font-weight: bold;
    color: red;
}

.p-15-0 {
    padding: 15px 0;
}

.p-5-5 {
    padding: 5px;
}

.tblForm {
    width: 100%;
    border-collapse: collapse;
}

    .tblForm td {
        padding: 5px;
        border: var(--border-primary);
    }

.tdBorder td {
    border: var(--border-primary);
}

.tblClear {
    width: 100%;
    border-collapse: collapse;
}

    .tblClear tr td {
        padding: 3px;
    }

.txt100p:focus, .txt100p:active, .ddl100p:active, .ddl100p:focus, .ddl100MM:active,
.ddl100MM:focus, .ddl100YY:active, .ddl100YY:focus {
    background-color: var(--blue-l-bckgrnd);
    border-color: var(--border-primary);
}

.txt100p:disabled, .ddl100p:disabled, .ddl100MM:disabled,
.ddl100YY:disabled {
    background-color: var(--disable-btn);
    border-color: var(--silver);
    cursor: not-allowed;
}

.txt100p {
    width: 100%;
    height: var(--input-height-default);
    margin: 0;
    padding: 0 1rem;
    border-radius: var(--border-radius-input);
    border: var(--border-primary);
}

.ddl100p {
    width: 100%;
    border-radius: var(--border-radius-input);
    height: var(--input-height-default);
    border: var(--border-primary);
    color: black;
}

.txtUpperCase {
    text-transform: uppercase;
}

.txtComments {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: 90px;
    max-height: 90px;
    min-height: 90px;
    border-radius: 2px;
    border: var(--border-primary);
    padding-left: 10px;
    padding-top: 5px;
    margin-top: 5px;
    resize: none;
}

.txtUnique {
    background-color: silver; /*rgba(0,255,0,0.3);*/
}



.ddl150p {
    width: 60%;
    border-radius: var(--border-radius-input);
    padding-left: 5px;
    height: var(--input-height-default);
    border: var(--border-primary);
    margin-top: 5px;
    background-color: var(--blue-l-bckgrnd);
    color: inherit;
}

    .ddl150p:focus, .ddl150p:active, .ddl150p:focus {
        background-color: var(--blue-l-bckgrnd);
        border-color: var(--border-primary);
    }

    .ddl150p:disabled {
        background-color: var(--disable-btn);
        border-color: var(--silver);
        cursor: not-allowed;
    }

.ddl100MM {
    width: 110px;
    border-radius: var(--border-radius-input);
    padding-left: 5px;
    height: var(--input-height-default);
    border: var(--border-primary);
    margin-top: 5px;
}

.ddl100YY {
    width: 75px;
    border-radius: var(--border-radius-input);
    padding-left: 5px;
    height: var(--input-height-default);
    border: var(--border-primary);
    margin-top: 5px;
}

.gvUser {
    width: 150px;
}

.gvDate {
    width: 150px;
}

.btnGvPage {
    background-color: white;
    border: var(--border-primary);
    border-radius: var(--border-radius-input);
    height: 30px;
    padding: 0 0.5rem 0 0.5rem;
    line-height: 30px;
    font-size: 0.8rem;
    cursor: pointer;
}

    .btnGvPage:hover {
        color: white;
        font-weight: bold;
        background-color: var(--blue-brand);
        border: none;
    }

    .btnGvPage:disabled {
        color: var(--disable-txt);
        cursor: not-allowed;
        border: none;
    }

.italic {
    font-style: italic;
}

.GvRowHover:hover {
    background-color: rgb(204,236,255);
    color: darkblue;
}

.SubFrame {
    width: 99%;
    height: 95%;
    border: none;
    background-color: white;
}

.SubFrameSub {
    width: 100%;
    border: none;
    background-color: aliceblue;
    border: var(--border-primary);
}

.fileUpload {
    width: 100%;
    height: var(--input-height-default);
    border-radius: 2px;
    border: var(--border-primary);
    padding-left: 10px;
    margin-top: 5px;
}

.centeral {
    display: block;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    justify-content: center;
}

.btnLnkGv {
    height: 25px;
    border: none;
    cursor: pointer;
    background: none;
    color: var(--blue-brand);
    font-weight: normal;
    font-size: 15px;
}

    .btnLnkGv:enabled:hover {
        text-decoration: solid;
        color: var(--blue-dark);
        font-weight: bold;
    }

    .btnLnkGv:disabled {
        color: var(--disable-txt);
        cursor: not-allowed;
    }

.btnCenter {
    position: center;
}

/* ------------------------ */
.w100 {
    width: 100px;
}

.w110 {
    width: 110px;
}

.w200 {
    width: 200px;
}

.w150 {
    width: 150px;
}
