﻿:root {
    --THEME_COMPANY_COLOR: rgb(0, 137, 196);
    --THEME_PRIMARY_COLOR: rgb(255, 255, 255);
    --THEME_SECONDARY_COLOR: rgb(236, 240, 241);
    --THEME_FONT_COLOR: rgb(147, 149, 152);
}

/*-----------------------------------------------*/
/* TOOLTIP */
/*-----------------------------------------------*/
[data-tooltip]:hover:after {
    opacity: 1;
    transition: all 0.3s ease-in-out;
    visibility: visible;
}

[data-tooltip]:after {
    content: attr(data-tooltip);
    background: var(--THEME_COMPANY_COLOR);
    border-radius: 3px;
    border: 2px solid transparent;
    box-shadow: 1px 1px 3px #222222;
    color: var(--THEME_PRIMARY_COLOR);
    font-family: helvetica, sans-serif;
    font-size: 14px;
    position: fixed !important;
    width: 400px;
    top: 3px;
    left: 3px;
    white-space: pre-line;
    opacity: 0;
    z-index: 999 !important;
    visibility: hidden;
}

[data-tooltip] {
    position: relative;
}

/*-----------------------------------------------*/
/* STYLE LINKS */
/*-----------------------------------------------*/
.hyperlink:link {
    color: black;
}

.hyperlink:visited {
    color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
}

.hyperlink:hover {
    color: var(--THEME_FONT_COLOR);
}

.hyperlink:active {
    color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
}

/*-----------------------------------------------*/
/* STYLE LINKS (MENU REDIRECT) */
/*-----------------------------------------------*/
.hyperlinkRedirect:link {
    color: var(--THEME_FONT_COLOR);
}

.hyperlinkRedirect:visited {
    color: var(--THEME_FONT_COLOR) !important;
}

.hyperlinkRedirect:hover {
    color: var(--THEME_COMPANY_COLOR) !important; /*BIRTH RED*/
}

.hyperlinkRedirect:active {
    color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
}

/*-----------------------------------------------*/
/* STYLE BUTTONS */
/*-----------------------------------------------*/
/*.btn {
    -webkit-border-radius: 10;
    -moz-border-radius: 10;
    border-radius: 10px;
    font-family: helvetica, sans-serif;
    color: var(--THEME_PRIMARY_COLOR);
    font-size: 15px;
    background: var(--THEME_FONT_COLOR);*/
/*padding: 10px 20px 10px 20px;*/
/*text-decoration: none;
    margin-left: 5px;
}

.btn:hover {
    background: var(--THEME_COMPANY_COLOR);*/ /*BIRTH RED*/
/*text-decoration: none;
}*/

.btn {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: 2px solid transparent;
    font-family: helvetica, sans-serif;
    color: var(--THEME_PRIMARY_COLOR);
    font-size: 15px;
    width: 100px;
    height: 32px;
    background: var(--THEME_FONT_COLOR);
    cursor: pointer;
}

    .btn:hover {
        background: var(--THEME_COMPANY_COLOR);
    }

    .btn:active {
        transform: translateY(3px);
    }

.btnCfl {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: 2px solid transparent;
    color: var(--THEME_PRIMARY_COLOR);
    background: var(--THEME_FONT_COLOR);
    vertical-align: sub;
}

    .btnCfl:hover {
        background: var(--THEME_COMPANY_COLOR);
    }

    .btnCfl:active {
        transform: translateY(3px);
    }

/*-----------------------------------------------*/
/* STYLE LABEL */
/*-----------------------------------------------*/
.lbl {
    font-family: helvetica, sans-serif;
    font-size: 15px;
}

.lbl_large {
    font-family: helvetica, sans-serif;
    font-size: xx-large;
}

.lbl_small {
    font-family: helvetica, sans-serif;
    font-size: small;
}

.lbl_error {
    font-family: helvetica, sans-serif;
    font-size: 14px;
    color: var(--THEME_COMPANY_COLOR);
}

.lbl_evidence {
    font-family: helvetica, sans-serif;
    font-size: 24px !important;
    color: var(--THEME_COMPANY_COLOR);
}

/*-----------------------------------------------*/
/* STYLE TEXTBOX */
/*-----------------------------------------------*/
.txt {
    border-color: #cccccc;
    padding: 3px;
    font-family: helvetica, sans-serif;
    font-size: 15px;
    border-width: 1px;
    border-radius: 5px;
    border-style: solid;
    background-color: #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    resize: none;
}

    .txt:focus {
        border-width: 2px;
        outline: none;
        border-color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
        -webkit-appearance: none;
        -moz-appearance: none;
    }

/*-----------------------------------------------*/
/* STYLE CHECKBOX */
/*-----------------------------------------------*/
.chk {
    display: inline-block;
    border-color: #cccccc;
    padding: 3px;
    font-family: helvetica, sans-serif;
    font-size: 15px;
    background-color: #ffffff;
}


/*-----------------------------------------------*/
/* STYLE COMBOBOX */
/*-----------------------------------------------*/
.cmb {
    border: 1px solid #cccccc;
    padding: 3px;
    font-family: helvetica, sans-serif;
    font-size: 15px;
    border-radius: 5px;
    overflow: hidden;
    /*background: transparent url("../zPictures/SelectCursor.png") no-repeat 100% 50%;*/
    /*width: 422px;*/
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
}

    .cmb:focus {
        border-width: 2px;
        outline: none;
        border-color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
        -webkit-appearance: none;
        -moz-appearance: none;
    }

/*FIX ARROW IN COMBOBOX FOR IE*/
select::-ms-expand {
    display: none;
}

/*-----------------------------------------------*/
/* STYLE PANEL */
/*-----------------------------------------------*/
.panel {
    background: var(--THEME_SECONDARY_COLOR);
    border-color: var(--THEME_FONT_COLOR);
    border-style: solid;
    border-width: 1px;
}

.panelcenter {
    /*background: var(--THEME_SECONDARY_COLOR);
    border-color: var(--THEME_FONT_COLOR);
    border-style: solid;
    border-width: 1px;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 25%;*/ /*92%*/
    /*position: absolute;
    width: 400px;
    height: 180px;
    z-index: 15;
    top: 30%;
    left: 48%;
    margin: -100px 0 0 -150px;
    background: var(--THEME_SECONDARY_COLOR);
    border-color: var(--THEME_FONT_COLOR);
    border-style: solid;
    border-width: 1px;
    padding-top: 50px;*/

    width: 400px;
    height: auto;
    padding: 30px 30px 20px;
    background: var(--THEME_SECONDARY_COLOR);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--THEME_FONT_COLOR);
    z-index: 15;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*-----------------------------------------------*/
/* STYLE CHECKBOX */
/*-----------------------------------------------*/
/* .squaredThree */
.squaredThree {
    width: 20px;
    position: relative;
    margin: 20px auto;
    background: transparent;
}

    .squaredThree label {
        width: 20px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 40;
        border-radius: 4px;
        box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
    }

        .squaredThree label:after {
            content: '';
            width: 9px;
            height: 5px;
            position: absolute;
            top: 4px;
            left: 4px;
            border: 3px solid #fcfff4;
            border-top: none;
            border-right: none;
            background: transparent;
            opacity: 0;
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

        .squaredThree label:hover::after {
            opacity: 0.3;
        }

    .squaredThree input[type=checkbox] {
        visibility: hidden;
    }

        .squaredThree input[type=checkbox]:checked + label:after {
            opacity: 1;
        }

/* end .squaredThree */

/*-----------------------------------------------*/
/* STYLE IMAGE */
/*-----------------------------------------------*/
.transparent {
    /*zoom: 1;
	filter: alpha(opacity=50);
	opacity: 0.5;*/

    border-style: none;
    border-color: inherit;
    border-width: medium;
}

.leftAlign {
    text-align: left;
}

.centerAlign {
    text-align: center;
}

.rightAlign {
    text-align: right;
}

.verticalTopAlign {
    vertical-align: top;
}

.verticalCenterAlign {
    vertical-align: middle;
}

.bottomAnchor {
    position: fixed;
    bottom: 0px;
}

.cflInput {
    color: var(--THEME_PRIMARY_COLOR);
    background-color: var(--THEME_FONT_COLOR);
}

.borderFixColor {
    border-bottom: 3px solid var(--THEME_COMPANY_COLOR);
}

.borderFixColorLeft {
    border-left: 3px solid var(--THEME_COMPANY_COLOR);
}

.hiddenColumn {
    display: none;
}

.borderLeftFixColor {
    border-left: 3px solid var(--THEME_COMPANY_COLOR);
    padding-left: 3px;
}

.FontSizeNormal {
    font-size: 15px !important;
}

.AbsoluteCenter {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.AbsoluteTopCenter {
    position: absolute !important;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
}

/*-----------------------------------------------*/
/* STYLE TABLE */
/*-----------------------------------------------*/
.tg {
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0px auto;
    width: 100%;
}

.tg_small {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0px auto;
    width: 50%;
    height: 50%;
}
/*.tg td
{
    font-family:Arial, sans-serif;
    font-size:x-large;
    padding:10px 5px;
    border-style:solid;
    border-width:0px;
    overflow:hidden;
    word-break:normal;
}
.tg th{font-family:Arial, sans-serif;
       font-size:20px;
       font-weight:normal;
       padding:10px 5px;
       border-style:solid;
       border-width:0px;
       overflow:hidden;
       word-break:normal;
}*/

/*-----------------------------------------------*/
/* STYLE GRIDVIEW */
/*-----------------------------------------------*/
.mGrid {
    width: 100%;
    font-family: helvetica, sans-serif;
    font-size: 12px;
    overflow: scroll;
    background-color: var(--THEME_PRIMARY_COLOR);
    margin: 5px 0 10px 0;
    border: solid 1px #525252;
    border-collapse: collapse;
}

    .mGrid td {
        padding: 2px;
        border: solid 1px #c1c1c1;
        text-wrap: nowrap;
        /*color: #717171;*/
    }

    .mGrid th {
        padding: 4px 2px;
        color: var(--THEME_PRIMARY_COLOR);
        text-wrap: nowrap;
        /*background: #424242 url(grd_head.png) repeat-x top;*/
        background: var(--THEME_FONT_COLOR);
        border-left: solid 1px #525252;
        font-size: 0.9em;
    }

    .mGrid .norm {
        background-color: var(--THEME_PRIMARY_COLOR);
    }

        .mGrid .norm:hover {
            background-color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
            color: var(--THEME_PRIMARY_COLOR);
            text-decoration: none;
        }

    .mGrid .alt {
        background-color: var(--THEME_SECONDARY_COLOR)
    }

        .mGrid .alt:hover {
            background-color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
            color: var(--THEME_PRIMARY_COLOR);
            text-decoration: none;
        }

    .mGrid .sel {
        background-color: var(--THEME_COMPANY_COLOR); /*BIRTH RED*/
        color: var(--THEME_PRIMARY_COLOR);
        text-decoration: none;
    }

    .mGrid .pgr {
        background: rgb(62,62,62);
    }

        .mGrid .pgr table {
            margin: 5px 0;
        }

        .mGrid .pgr td {
            border-width: 0;
            padding: 0 6px;
            border-left: solid 1px #666;
            font-weight: bold;
            color: #fff;
            line-height: 12px;
        }

        .mGrid .pgr a {
            color: #666;
            text-decoration: none;
        }

            .mGrid .pgr a:hover {
                color: #000;
                text-decoration: none;
            }

.mGridChild {
    font-family: helvetica, sans-serif;
    font-size: 10px;
    overflow: scroll;
    background-color: var(--THEME_PRIMARY_COLOR);
    /*margin: 5px 0 10px 0;*/
    border: solid 1px #525252;
    border-collapse: collapse;
}

    .mGridChild td {
        padding: 2px;
        border: solid 1px; /*#c1c1c1*/
        border-color: var(--THEME_FONT_COLOR);
        text-wrap: nowrap;
        /*color: #717171;*/
    }

    .mGridChild th {
        padding: 4px 2px;
        color: var(--THEME_PRIMARY_COLOR);
        text-wrap: nowrap;
        /*background: #424242 url(grd_head.png) repeat-x top;*/
        background: var(--THEME_FONT_COLOR);
        /*border-left: solid 1px;*/ /*#525252*/
        font-size: 0.9em;
    }

    .mGridChild tr {
        color: var(--THEME_FONT_COLOR);
        background: var(--THEME_PRIMARY_COLOR);
    }

        .mGridChild tr:hover {
            color: var(--THEME_PRIMARY_COLOR);
            background: var(--THEME_COMPANY_COLOR);
        }

/*-----------------------------------------------*/
/* STYLE THREEVIEEW */
/*-----------------------------------------------*/
.TreeView {
    background-color: transparent;
}

.TreeView_RootNodeStyle {
    Color: Black;
    padding: 5px;
}

.TreeView_ParentNodeStyle {
    Color: Black;
    padding: 5px;
}

.TreeView_LeafNodeStyle {
    Color: Black;
    padding: 5px;
}

.TreeView_HoverNodeStyle {
    background-color: transparent;
    color: var(--THEME_FONT_COLOR);
}

.TreeView_SelectedNodeStyle {
    background-color: transparent;
    color: var(--THEME_COMPANY_COLOR);
    font-weight: bold;
    font-size: large;
    padding-left: 10px;
    padding-top: 5px;
}

/*-----------------------------------------------*/
/* STYLE RADIOBUTTON [ENH250903_1]  */
/*-----------------------------------------------*/
.RadioButton {
    accent-color: var(--THEME_COMPANY_COLOR);
}