:root
{
    --theme-color: #2196f3; /*#20B9EB;*/
    --background-color: #fff;
    --border-top-size: 8px;
}

body
{
    font-family: 'Tahoma' , 'Arial' , 'Helvetica' , 'Courier New' , 'Trebuchet MS' , 'Verdana';
}

.master-form
{
    border-top: var(--border-top-size) solid var(--theme-color);
    background-color: var(--background-color);
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

.master-menu-bar
{
    clear: both;
    display: block; /*margin: 0 0 0 25px;*/
    margin-bottom: 10px;
    width: 100%;
}

.master-logo
{
    display: inline-block;
    margin-left: 25px;
}

.master-menu
{
    display: inline-block;
    vertical-align: top;
}

.master-option
{
    display: inline-block;
    vertical-align: top;
    float: right;
    position: absolute;
    right: 20px;
}


.master-info-bar
{
    clear: both;
    margin: 0 0 0 25px;
    margin-bottom: 10px;
    font-size: 1.25em;
    width: 100%;
}

.master-user
{
    display: inline-block;
    float: right;
    position: absolute;
    right: 25px;
    width: auto;
}

.master-content
{
    margin: 0 20px 0 20px;
    height: auto;
}

.master-option-sm
{
    display: none;
}

.clear-both
{
    clear: both;
}

.inline-block
{
    display: inline-block;
}

.text-center
{
    text-align: center;
}

.color-link
{
    color: #1E90FF;
}



/*--------------------------------*/



@media screen and (max-width: 830px)
{
    .master-menu-bar
    {
    }

    .master-option
    {
        display: none;
    }


    .master-info-bar
    {
        clear: both;
        display: block;
    }

    .master-user
    {
        display: inline-block;
        float: left;
        position: absolute;
        left: 25px;
    }

    .master-option-sm
    {
        display: inline-block;
        float: right;
        position: absolute;
        right: 25px;
    }

}

@media print
{
    body *
    {
        visibility: hidden;
    }
    .printable, .printable *
    {
        visibility: visible;
    }
    .printable
    {
        position: absolute;
        left: 0;
        top: 0;
    }
}
/* Title bar */
.title-bar
{
    background-color: #4D4D4D;
    color: White;
    height: 28px;
    width: 100%;
}


/* Flex */
.flex
{
    display: flex !important;
}

.flex-justify-content-start
{
    justify-content: flex-start;
}
.flex-justify-content-end
{
    justify-content: flex-end;
}
.flex-justify-content-center
{
    justify-content: center;
}
.flex-justify-content-between
{
    justify-content: space-between !important;
}
.flex-row
{
    flex-flow: row !important;
}
.flex-columm
{
    flex-flow: column !important;
}

.flex-wrap
{
    flex-wrap: wrap !important;
}

.flex-align-items-start
{
    align-items: flex-start;
}
.flex-align-items-end
{
    align-items: flex-end;
}
.flex-align-items-center
{
    align-items: center;
}
.flex-align-items-baseline
{
    align-items: baseline;
}

.ms-10
{
    margin-left: 10px;
}
.ms-20
{
    margin-left: 20px;
}
.ms-30
{
    margin-left: 30px;
}
.me-10
{
    margin-right: 10px;
}
.me-20
{
    margin-right: 20px;
}
.me-30
{
    margin-right: 30px;
}

.mt-10
{
    margin-top: 10px;
}
.mt-20
{
    margin-top: 20px;
}
.mt-30
{
    margin-top: 30px;
}
.mb-10
{
    margin-bottom: 10px;
}
.mb-20
{
    margin-bottom: 20px;
}
.mb-30
{
    margin-bottom: 30px;
}

.width-100
{
    width: 100% !important;
}

/* --- */
.table
{
    border: none !important;
    border-spacing: 5px;
}
