﻿html, body {
    background-color: #FFF;
    /*height: 100%;*/
    margin: 0px;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif, Arial;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    /*color: #5e6c84;*/
    color: #333;
    -webkit-tap-highlight-color: transparent;
}


body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

* {
    font-size: 14px
}

/*---------------------------------------------------------------------
- Scroll Bars
*/
*::-webkit-scrollbar {
    width: 8px;
    height:8px;
}

*::-webkit-scrollbar-track {
    background-color: f9fafb;
    border-left: none;
}

*::-webkit-scrollbar-thumb {
    background-color: #f1f2f3;
    /* border: 1px solid rgba(38, 44, 54, .7); */
    margin: 1px;
    border-radius: 2px;
    cursor: pointer;
}


/*---------------------------------------------------------------------
- H1, H2, H3, subtitle
*/
h1 {
    font-size: 24px;
    font-weight: 500;
    color: #172A4D;
    margin: 0;
    margin-bottom: 5px;
    line-height: 48px;
}

h2 {
    font-size: 20px;
    font-weight: 500;
    color: #172A4D;
    margin: 0px;
    margin-bottom: 5px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: #172A4D;
    margin: 0px;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 18px;
    font-weight: normal;
    color: #94979B;
    margin: 0px;
    margin-bottom: 5px;
}


/*---------------------------------------------------------------------
- Page Layout Containers
*/
.content {
    position: relative;
    text-align: inherit;
    padding-top:10px;
}

.header {
    box-shadow:0 0 7px rgba(0,0,0,.15);
    position: relative;
    z-index: 96;
}

#loader {
    display:none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events:none;

    background-color: rgba(255,255,255,.75);
    /* backdrop-filter: blur(4px); */
}

#vueApp
{
   /* position:fixed;
    top:65px;
    left:0;
    right:0;
    bottom:0;*/
    padding:0 20px;
    /*overflow:auto;*/
}




/*---------------------------------------------------------------------
- CUSTOM ELEMENTS
*/
#globalOverlay {
    position: fixed;
    z-index: 95;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,.85);
    /* backdrop-filter: blur(4px); */
}

.label, .label span {
    display: block;
    color: #576172;
    /* text-transform: uppercase; */
    font-size: 12px;
    /* margin-bottom: 4px; */
    font-weight: 600;
    margin-bottom: 3px;
}

/* -- Search Input --*/
input.search {
    border: 1px solid #d2d3d9 !important;
    color: #a7a9b6 !important;
    padding-right: 40px !important;
}

.input-search-wrapper {
    display: inline-block;
    position: relative;
}

.input-search {
    font-size: 17px;
    color: #a7a9b6;
    position: absolute;
    top: 12px;
    right: 13px;
    pointer-events: none;
}


/* -- vuepic-datepicker override --*/
.dp__input {
    border: 2px solid #dfe1e6 !important;
    background-color: #fafbfc !important;
    border-radius: 3px !important;
    line-height: 16px !important;
}

/* -- Login Layout template body override --*/
.login-layout-body {
    background: #0176a1;
}
/*---------------------------------------------------------------------
- App steps
*/
.app-steps {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    text-align: center;
}

    .app-steps > div {
        width: 12.5%;
        border-bottom: 2px solid #ccc;
    }

.app-steps .step {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #ccc;
    color: #fff;
    display: inline-block;
    line-height: 40px;
    font-size: 20px;
    margin-bottom: 10px;
}

    .app-steps .active {
        color: #5aa7db;
        border-bottom-color: #5aa7db;
        border-bottom-width: 4px;
    }

        .app-steps .active .step {
            background-color: #5aa7db;
        }

    .app-steps .done {
        color: #11a683;
        border-bottom-color: #11a683;
    }

        .app-steps .done .step {
            background-color: #11a683;
            color: #FFF;
        }

.app-steps .step-title {
    margin-bottom:15px;
    font-size:12px;
    text-transform:uppercase;
}

/*---------------------------------------------------------------------
- Report menu
*/
.report-menu {
    display:inline-block;
}

.report-menu:hover > .report-submenu {
    visibility: visible;
    opacity: 1;
}

.report-menu .report-submenu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index:9000;
    min-width:150px;
    padding:0;
    background-color:#fff;
    border-radius:4px;
    border: 1px solid rgb(223, 225, 230);
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    transition: all .3s;
}

.report-menu .report-submenu a {
    display: block;
    position: relative;
    padding:6px 12px;
        color:#172B4D;
        font-size:inherit;
    text-decoration: none;
}

.report-menu .report-submenu a:hover {
    background-color: #F4F5F7;
        box-shadow: inset 2px 0px 0px #2a654f;
}

.report-menu .report-submenu a:first-child {
    border-radius: 4px 4px 0 0;
}

.report-menu .report-submenu a:last-child {
    border-radius: 0 0 4px 4px;
}
    

.report-menu .report-submenu hr {
    margin: 0;
    border: 0;
    height: 1px;
    background-color: #eee;
}


/*---------------------------------------------------------------------
- User icon
*/
.user-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #5aa7db;
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
}

    .user-icon:before {
        content: '';
        display: block;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: transparent;
        border: 2px solid #5aa7db;
        margin-top: 2px;
        margin-left: 4px;
    }

    .user-icon:after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: transparent;
        border: 2px solid #5aa7db;
        margin-top: 2px;
        margin-left: -4px;
    }


/*---------------------------------------------------------------------
- Horizontal and vertical ruller
*/
hr {
    margin: 10px 0 10px 0;
    border: 0;
    height: 1px;
    background-color: #d2d3d9;
}

    hr.vert {
        border: 0;
        margin: 0;
        width: 1px;
        height: 100%;
        background-color: #d2d3d9;
    }

/*---------------------------------------------------------------------
- Spinner for loader
*/

.spinner {
    /* display: none; */
    position: absolute;
    box-shadow: 0 0 45 #FFF;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -49.5%);
    transform: translate(-50%, -49.5%);
    opacity: 0.85;
    text-align: left;
    border: 4px solid #FFF;
    box-sizing: border-box;
    background-clip: padding-box;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.gridLoader .spinner {
    width: 26px;
    height: 26px;
    margin: -13px 0 0 -13px;
}

.spinner:before, .spinner:after {
    content: "";
    position: absolute;
    margin: -4px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 1;
    border: inherit;
    border-color: transparent;
    border-top-color: #0176a1;
    -webkit-animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
    animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
}

.spinner:before {
    border-top-color: #0176a1;
}

.spinner:after {
    border-top-color: #0176a1;
    -webkit-animation-delay: 0.44s;
    animation-delay: 0.44s;
}

@keyframes spinner-spin {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner-spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}



/*---------------------------------------------------------------------
- STANDARD TAGS
*/

/* -- A href -- */
A:link {
    /* color: #5e6c84; */
     color: #0052cc; 
    /*color: #3c846e;*/
    text-decoration: none;
}

A:visited {
     color: #0052cc; 
    /*color: #3c846e;*/
    text-decoration: none;
}

A:hover {
     color: #0052cc; 
    /*color: #3c846e;*/
    text-decoration: underline;
}


/* -- Input tags -- */
input[type=text], input[type=file], input[type=password], input[type=email], input[type=number], textarea {
    border: 2px solid #dfe1e6;
    padding: 6px 6px;
    background-color: #fafbfc;
    border-radius: 3px;

    width: 100%;
}

/* Chrome, Safari, Edge, Opera - number hide arrovs*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
    input[type=text]:hover, input[type=file]:hover, input[type=password]:hover, input[type=email]:hover, input[type=number]:hover, textarea:hover {
        background-color: #ebecf0;
    }

    input:focus, input[type=text]:focus, input[type=file]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus, textarea:focus {
        background-color: #FFF;
        border: 2px solid #5b9bff !important;
    }

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #636d7d;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #636d7d;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #636d7d;
}

:-moz-placeholder { /* Firefox 18- */
    color: #636d7d;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #636d7d !important;
    opacity: 0.7; /* Firefox */
}

input:disabled, textarea:disabled {
    /* color: #aaa; */
    background-color: #ebecf0;
}

input:hover:disabled, textarea:hover:disabled {
    /* color: #aaa; */
    background-color: #ebecf0;
}

textarea {
    resize: none;
    font-family:Arial;
}

/* Input type file */
input[type=file] {
    position: relative;
    overflow: hidden;
}

    input[type=file]:before {
        content: attr(placeholder);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        position: absolute;
        padding: 12px;
        box-sizing: border-box;
        z-index: 2;
        top: 0;
        left: 0;
        right: 30px;
        background-color: inherit;
        height: 100%;
    }

    input[type=file].error:before {
        background-color: #FFC !important;
        border: none !important;
    }

    input[type=file]:disabled:before {
        color: #aaa;
    }

    input[type=file]:after {
        content: '\f016';
        font-family: 'FontAwesome', 'Arial Unicode MS';
        position: absolute;
        z-index: 3;
        top: 0;
        right: 0;
        bottom: -5px;
        background-color: #5093e1;
        color: #fff;
        padding: 13px;
        cursor: pointer;
        font-size: 14px;
    }

    input[type=file]:disabled:after {
        cursor: default;
        background-color: #ebecf0;
    }

/* -- Select -- */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    font-size: 14px;
    color: #5e6c84;
    font-weight: 500;
    line-height: 28px;
    height: 32px;
    padding: 0px 30px 0px 15px;
    width:100%;

    background-color: #f5f6f8;
    border-radius: 3px;
    border: 2px solid transparent;

    transition: all .3s;
}

select.rtl {
    padding: 0 15px 0 30px;
}

select:hover
{
    background-color:#ebecf0;
}

select:focus {
    background-color: #FFF;
    border: 2px solid #5b9bff;
}
.divSelect {
    display: inline-block;
    position: relative;
}

.divSelect:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    color: #364359;
    position: absolute;
    right: 11px;
    top: 9px;
    pointer-events: none;
}

.divSelect.rtl:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-size: 15px;
    color: #757787;
    position: absolute;
    left: 11px;
    right:auto;
    margin-top: 0;
    pointer-events: none;
}

option {
    padding: 12px 16px;
    background-color: #FFF;
    border-radius: 3px;
    border: none;
    box-shadow: 0 0 8px rgba(0,0,0,.15);
}

optgroup {
    color: #ccc;
}

option.ignore{
    pointer-events:none;
}

/* -- Fieldset -- */
fieldset {
    padding: 5px;
    border: 1px solid #bbb;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

    fieldset > legend {
        color: #888;
        padding: 0px 7px 0px 7px;
        text-align: left;
    }

/* -- Errors -- */
input.validation-error, textarea.validation-error, select.validation-error, input.validation-error + label:before {
    background-color: #FFC !important;
}

span.validation-error {
    display: none !important;
    position: absolute;
    left: 0;
    color: #b52a2a !important;
    font-size: 14px;
    font-weight: normal;
}

/* -- Checkbox -- */
input[type="checkbox"] + label:before {
    content: '\00a0';
    font-family: 'FontAwesome', 'Arial Unicode MS';
    display: inline-block;
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    margin-right: 0;
    background-color: #FFF;
    border: 2px solid #eee;
    border-radius: 3px;
    color: #728287;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: -3px;
    left: 0;
    outline: 1px solid transparent;
}

input[type="checkbox"] + label.rtl:before {
    left:auto;
    right:-30px;
}

input[type="checkbox"]:checked + label:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro', 'Arial Unicode MS';
    background-color: #FFF;
    color: #718186;
    border: 2px solid #3b8fcc;
}

input[type="checkbox"] + label:hover:before {
    /* outline: 1px solid #8ec341; */
}

input[type="checkbox"] + label {
    cursor: pointer;
    display: inline-block;
    font-weight: normal;
    position: relative;
    left: -20px;
    top: 0px;
    padding-left: 30px;
}

input[type="checkbox"] + label.rtl {
    left:auto;
    right:10px;
}

input[type="checkbox"]:disabled + label {
    color: #aaa;
    cursor: default;
}

    input[type="checkbox"]:disabled + label:before {
        background-color: #555;
        border: 1px solid #ececec;
        color: #dadada;
        cursor: default;
        outline: 1px solid transparent;
    }

input[type="checkbox"]:disabled:checked + label:before {
    background-color: #555;
    border: 1px solid #ececec;
    color: #dadada;
    cursor: default;
    outline: 1px solid transparent;
}

input[type="checkbox"]:checked + label.tooltip:before {
    background-color: #7ccc7b !important;
    border: 1px solid #7ccc7b;
}


/* -------------------------------------------------------------------- */
/* Radio button */
input[type="radio"] {
    opacity:0;
}

input[type="radio"] + label {
    cursor: pointer;
    text-transform: none;
    margin-right:25px;
}

input[type="radio"] + label:last-child {
    margin-right:0;
}
    input[type="radio"] + label:before {
        content: '\00a0';
        font-family: 'Font Awesome 5 Pro', 'Arial Unicode MS';
        display: inline-block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        font-size: 11px;
        line-height: 15px;
        margin-right: -10px;
        background-color: rgba(255,255,255,1);
        border: 2px solid #5aa7db;
        color: #000;
        text-align: center;
        cursor: pointer;
        position: relative;
        top: -1px;
        left: -18px;
        outline: 1px solid transparent;
    }

    input[type="radio"]:checked + label:before {
        content: '\f00c';
        font-family: 'Font Awesome 5 Pro', 'Arial Unicode MS';
        background-color: #5aa7db;
        color:#FFF;
    }

    input[type="radio"] + label:hover:before {
        border-radius: 50%;
        /*outline: 1px solid #5093e1;*/
    }

    input[type="radio"]:disabled + label {
        color: #aaa;
    }


/* -- Buttons -- */
button, .btn {
    font: inherit;
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
    font-weight: 500;
    height: 32px;
    padding: 0px 15px;
    border-radius: 3px;
    border: 1px solid transparent;
    color: #FFF;
    background-color: #3a866a;
    cursor: pointer;
    transition: all .2s;
}
    
    button.narrow {
        height: 24px;
    }

    button:hover, .btn:hover {
        opacity: 0.8;
    }

    button:disabled, .btn:disabled {
        color: #9da2a8 !important;
        background-color: #bfc2c5 !important;
        cursor: default;
        border: 1px solid #ffffff !important;
        pointer-events:none;
    }

    button.blue, .btn.blue {
        color: #FFF;
        background-color: #0176a1;
    }

    button.blue:hover, .btn.blue:hover {
        color: #FFF;
    }

    button.clear, .btn.clear {
        color: inherit;
        background-color: transparent;
        border: 2px solid transparent;
        padding-left:0;
        padding-right:0;
    }

        button.clear:hover, .btn.clear:hover {
            /* color: #FFF; 
            background-color: #5aa7db;
            */
            text-decoration: underline;
        }

    button.clear-white, .btn.clear-white {
        color: #FFF;
        background-color: transparent;
        border: 2px solid #FFF;
    }

    button.clear-white:hover, .btn.clear-white:hover {
        background-color: #52476b;
    }

    button.clear-gray, .btn.clear-gray {
        color: #aaa;
        background-color: transparent;
        border: 2px solid #ededed;
    }

        button.clear-gray:hover, .btn.clear-gray:hover {
            background-color: #ededed;
        }

    button.red, .btn.red {
        color: #FFF;
        background-color: orangered;
    }

        button.red:hover, .btn.red:hover {
            background-color:darkred;
        }

    button.submiting, .btn.submiting {
        pointer-events: none;
    }

        button.submiting:before, .btn.submiting:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(0,0,0,.35);
        }

        button.submiting:after, .btn.submiting:after {
            content: "";
            position: absolute;
            top: 3px;
            left: 50%;
            margin-left: -12px;
            width: 24px;
            height: 24px;
            border-top-color: #FFF;
            border-left-color: #FFF;
            border-bottom-color: transparent;
            border-right-color: transparent;
            border-style: solid;
            border-width: 2px;
            border-radius: 50%;
            box-sizing: border-box;
            display: inline-block;
            -webkit-animation: spin 650ms linear infinite;
            -moz-animation: spin 650ms linear infinite;
            animation: spin 650ms linear infinite;
        }

    button.gray, btn.gray {
        background-color: #f5f6f7;
        color: #42526e;
    }

        button.gray:hover, btn.gray:hover {
            background-color: #ebedf0;
        }

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




/*---------------------------------------------------------------------
- Data-grid
*/
.data-grid > div {
    overflow: auto;
    overflow-y: hidden;
}

.data-grid table {
    position: relative;
    width: 100%;
    min-width: 500px;
    border-spacing: 0;
    background-color: rgba(255,255,255,.5);
    backdrop-filter: blur(2px);
}

.data-grid tr td,
.data-grid tr th {
    position: relative;
    padding: 12px 4px;
}

.data-grid tr th {
    color: #6c798f;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 4px;
    transition: all .3s;
    text-align: inherit;
}

.data-grid tr th:hover {
    background-color:rgb(245,245,245);
}

.data-grid tr th.last {
    width:10px;
}

.data-grid tr td {
    font-size: 14px;
    padding: 12px 4px;
}

.data-grid.narrow tr td {
    font-size: 14px;
    padding: 4px 4px;
}

.data-grid thead {
    background-color: #FFF;
    color: #505b6e;

    display:table;
    table-layout: fixed;
    width:100%;
}

    .data-grid thead th.sort_up:after {
        content: '\f106';
        font-family: 'Font Awesome 5 Pro';
        /* font-size:20px; */
        line-height: 10px;
        color: #505b6e;
        margin-left: 5px;
        pointer-events: none;
    }

    .data-grid thead th.sort_down:after {
        content: '\f107';
        font-family: 'Font Awesome 5 Pro';
        /* font-size:20px; */
        line-height: 10px;
        color: #505b6e;
        margin-left: 5px;
        pointer-events: none;
    }

.data-grid tr {
    border: none;
    border-bottom: 1px solid #dfe1e6;
}

    .data-grid tr:last-child {
        border-bottom: none;
    }

.data-grid tbody tr:nth-child(odd) {
    /* background-color:#f9fafb; */
}

.data-grid tbody tr:hover td {
    background-color: #f4f5f7;
}

.data-grid tbody {
    display: block;

    overflow: auto;
    overflow-x: hidden;
}

    .data-grid tbody tr {
        display: table;
        table-layout: fixed;
        width:100%;
    }

.data-grid thead tr th {
    border-bottom: 2px solid #dfe1e6;
}

/* -- Data table pagination -- */
.data-grid .paginator {
    position: relative;
    text-align: left;
    padding: 3px 0;
    font-size: 0;
    border-top: 2px solid #dfe1e6;
}

    .data-grid .paginator ul {
        display: inline-block;
        margin: 0;
        padding: 0;
        list-style: none outside none;
        height: 24px;
        /* background-color:#eff0f4;
  border-radius:20px; */
    }

        .data-grid .paginator ul > li {
            display: inline-block;
            border-radius: 3px;
            text-align: center;
            background-color: transparent;
            color: #5aa7db;
            font-size: 14px;
            font-weight: 400;
            padding: 4px 5px;
            margin: 3px 0;
            cursor: pointer;

            transition: all .3s;
        }

            .data-grid .paginator ul > li:hover {
                text-decoration:underline;
            }

            .data-grid .paginator ul > li.current {
                background-color: #FFF;
                color: #000;
                cursor: default;
                text-decoration:none;
            }

    .data-grid .paginator div.prev-arrow, .data-grid .paginator div.next-arrow {
        display: inline-block;
        color: #0747a6;
        font-size: 14px;
        line-height: 14px;
        margin: 3px;
    }

        .data-grid .paginator div.prev-arrow i {
            margin-left: -4px;
        }

        .data-grid .paginator div.next-arrow i {
            margin-left: 2px;
        }

        .data-grid .paginator div.prev-arrow:hover, .data-grid .paginator div.next-arrow:hover {
            cursor:pointer;
        }

    .data-grid .paginator ul > li.dots {
        background-color: transparent;
        color: #525d61;
        cursor: default;
        width: auto;
    }

    .data-grid .paginator .total-info {
        position: absolute;
        right: 0;
        top: 10px;
        font-size: 12px;
        font-weight:400;
        color:#000;
    }

    .data-grid .paginator .goto-page {
        position: absolute;
        right: 0;
        top: 23px;
        font-size: 16px;
    }


/*---------------------------------------------------------------------
- Switch radio
*/
.switchRadio {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}

.switchRadio input {
    display: none;
}



/* needed to neutralize styling of radio button */
.switchRadio label:before {
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
    border: none !important;
    margin: 0 !important;
}

.switchRadio input + label {
    position: static;
    display: inline-block;
    background-color: #f5f6f8;
    font-weight: 500;
    line-height: 32px;
    height: 32px;
    padding: 0px 15px;
    margin: 0 3px;
    border-radius: 3px;
}


.switchRadio label:hover {
    background-color: #ecedf0;
}

.switchRadio input:disabled + label {
    background-color: #fcfcfc;
}

.switchRadio input:disabled:checked + label {
    background-color: #aaa;
}

.switchRadio label:hover {
    cursor: pointer;
}

.switchRadio input:checked + label {
    color: #FFF;
    background-color: #427264;
}


/*
    ------------------------------------------------------------
    -- autocomplete
    */

.autoc {
    width: 100%;
    position: relative;
}

.divAutoc {
    display: inline-block;
    border: 1px solid #979797;
    background-color: #FFF;
    border-radius: 3px;
    margin: 1px;
}

    .divAutoc:after {
        content: '\f002';
        font-family: 'FontAwesome';
        font-size: 30px;
        color: #979797;
        position: absolute;
        margin-left: -40px;
        margin-top: 9px;
        pointer-events: none;
    }

    .divAutoc.spiner:after {
        content: '\f110' !important;
        font-family: 'FontAwesome';
        font-size: 24px;
        color: #cccaca;
        position: absolute;
        margin-left: -40px;
        margin-top: 14px;
        pointer-events: none;
        -webkit-animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
        animation: spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite; /*,spinner-fade 1.1s linear infinite;*/
    }

.autoc-text {
    border: none !important;
    border-radius: 4px !important;
    margin: 0 !important;
    width: 100% !important;
    padding-right: 50px !important;
}

.autoc-results {
    position: absolute;
    z-index: 100;
    display: none;
    width: 100%;
    max-height: 200px;
    overflow: auto;
    overflow-x: hidden;
    background-color: #FFF;
    border: 1px solid #e0e6e8;
    border-radius: 0;
    box-shadow: 0 10px 10px rgba(0,0,0,.15);
}

.autoc-result {
    padding: 5px 7px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s;
}

    .autoc-result:hover, .autoc-result.selected {
        color: #fff;
        background-color: #7a4c8b;
    }

.autoc-results::-webkit-scrollbar {
    width: 10px;
}

.autoc-results::-webkit-scrollbar-track {
    background-color: transparent;
    border-left: none;
}

.autoc-results::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border: 2px solid #2d343e;
    margin: 1px;
    border-radius: 5px;
    cursor: pointer;
}


/*---------------------------------------------------------------------
  -- modal
 */

@keyframes modalbox {
    0% {
        top: 55%;
        opacity: 0;
    }
    100% {
        top: 50%;
        opacity: 1;
    }
}


.modalOverlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(9, 30, 66, 0.54);
    z-index: 1000;
    /* backdrop-filter: blur(5px); */
}

.modalDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -49.5%);
    transform: translate(-50%, -49.5%);
    min-width: 400px;
    min-height: 50px;
    max-height: 95%;
    background-color: #FFF;
    border: 1px solid #F1f1f1;
    border-radius: 3px;
    box-shadow: rgb(9 30 66 / 8%) 0px 0px 0px 1px, rgb(9 30 66 / 8%) 0px 2px 1px, rgb(9 30 66 / 31%) 0px 0px 20px -6px;
    overflow: auto;
    z-index: 1001;
    animation-name: modalbox;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0,0,.3,1.6);
}

.modalDialogLoader {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .85);
    z-index: 10;
}

.modalHeader {
    position: relative;
    padding: 15px 15px 15px 15px;
    font-size: 24px;
    font-weight: 500;
    color: #172A4D;
    line-height: 48px;
}

.modalClose {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
    color: rgb(66, 82, 110);
    font-weight: lighter;
    line-height: 22px;
    padding: 2px 5px 1px 5px;
    border-radius: 4px;
    background-color: transparent;
}

    .modalClose:hover {
        background-color: #ebecf0;
    }

/*---------------------------------------------------------------------
    -- Confirm
   */
.confirmOverlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(9, 30, 66, 0.54);
    z-index: 1100;
}

.confirmDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -49.5%);
    transform: translate(-50%, -49.5%);
    border: 1px solid #F1f1f1;
    border-radius: 3px;
    box-shadow: rgb(9 30 66 / 8%) 0px 0px 0px 1px, rgb(9 30 66 / 8%) 0px 2px 1px, rgb(9 30 66 / 31%) 0px 0px 20px -6px;
    min-width: 400px;
    max-width: 500px;
    background-color: #FFF;
    z-index: 1001;
}

.confirmHeader {
    padding: 10px 15px;
    font-size: 16px;
    color: #172A4D;
}

.confirmText {
    text-align: center;
    padding: 25px;
}

.confirmFooter {
    text-align: right;
    padding: 10px;
}





/* ------------------- Tabovi -------------- */
div.tabs > ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: table;
    table-layout: fixed;
    background: #424953;
    position: relative;
}

    div.tabs > ul li {
        display: table-cell;
        padding: 10px;
        margin: 0px;
        text-align: center;
        border-bottom: 1px solid #FFF;
        font-size: 0;
    }

        div.tabs > ul li.tabsClose {
            position: relative;
            padding: 0;
            width: 100px;
            background: url(../img/bckgrd.jpg);
            text-align: center;
            vertical-align: top;
        }

        /* div.tabs > ul li.tabsClose:before
    {
      content:'';
      position: absolute;
      top:-5px;
      left:0;
      right:0;
      height:6px;
      background-color:#2d343e;
    } */

        div.tabs > ul li > img {
            margin-bottom: 8px;
        }

        div.tabs > ul li.active {
            position: relative;
            top: -10px;
            bottom: 0;
            /* z-index:40; */
            padding-top: 20px !important;
            background: #2d343e;
            border: 1px solid #FFF;
            border-bottom: 1px solid transparent;
            border-radius: 10px 10px 0 0;
        }

            div.tabs > ul li.active:after {
                content: '';
                position: absolute;
                bottom: -11px;
                left: -1px;
                right: 0;
                border-left: 1px solid #FFF;
                border-right: 1px solid #FFF;
                background-color: #2d343e;
                height: 11px;
                width: 100%;
            }

            div.tabs > ul li.active img {
                margin-bottom: 0 !important;
            }

div.tabs > div {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* white-space:nowrap; */
}

    div.tabs > div > div {
        display: none;
        width: 100%;
        background-color: #2d343e;
        padding: 10px;
    }

        div.tabs > div > div.active {
            display: block;
        }

        div.tabs > div > div.forSlideLeft {
            display: block;
            position: absolute;
            top: 0;
            margin-left: 100%;
        }

        div.tabs > div > div.forSlideRight {
            display: block;
            position: absolute;
            top: 0;
            margin-left: -100%;
        }

i {
    font-size: inherit
}

span.status {
    display: inline-block;
    padding: 3px 6px;
    text-transform: uppercase;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

span.status.Aktivan {
    background-color: #e3fcef;
    border-color: #e3fcef;
    color: #064;
}

span.status.Zatvoren {
    background-color: #ebecf0;
    border-color: #ebecf0;
    color: #42526e;
}

span.status.Ponuda {
    background-color: #deebff;
    border-color: #deebff;
    color: #0049b0;
}


/*---------------------------------------------------------------------
    -- Alert
   */
.alertOverlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(9, 30, 66, 0.54);
    z-index: 1100;
}

.alertDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -49.5%);
    transform: translate(-50%, -49.5%);
    border-radius: 4px;
    min-width: 400px;
    max-width: 600px;
    background-color: #FFF;
    border: 1px solid #F1f1f1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .15);
    z-index: 1001;
}

.alertHeader {
    padding: 10px 15px;
    font-size: 16px;
    color: #000;
    border-bottom: 1px solid #e7e7e7;
}

.alertText {
    text-align: center;
    font-size: 15px;
    padding: 40px 10px 15px 10px;
}

.alertFooter {
    text-align: right;
    padding: 20px 10px;
}


/*---------------------------------------------------------------------
    -- Button Menu
   */

.buttonMenu {
    position: relative;
    display: inline-block;
}

    .buttonMenu > a {
        display: inline-block;
        position: relative;
        font-weight: 500;
        line-height: 32px;
        text-decoration: none;
        padding: 0px 15px;
        background-color: #0176a1;
        color: #FFF;
        border-radius: 3px;
        transition: all .2s;
    }

    .buttonMenu div {
        position: relative;
    }

    .buttonMenu .submenu {
        /*visibility:hidden;
        opacity:0;*/
        position: absolute;
        display: none;
        z-index: 1000;
        margin-top: 2px;
        min-width: 200px;
        background-color: #FFF;
        padding: 10px 0;
        border-radius: 4px;
        border: 1px solid rgb(223, 225, 230);
        box-shadow: 0 0 5px rgba(0,0,0,.1);
        transition: all .3s;
    }

        .buttonMenu .submenu.above {
            bottom: 34px;
        }
        .buttonMenu .submenu.right {
            right: 0;
        }

        .buttonMenu .submenu.left {
            left: 0;
        }

    .buttonMenu:hover > .submenu, .buttonMenu > .submenu > div:hover > .submenu {
        /*visibility:visible;
        opacity:1;*/
    }

    .buttonMenu .submenu a {
        position: relative;
        display: block;
        text-decoration: none;
        padding: 6px 12px;
        color: #172B4D;
        font-size: inherit;
        transition: all .2s;
    }

        .buttonMenu .submenu a.separator {
            pointer-events: none;
            padding: 0;
        }

        .buttonMenu .submenu a:hover {
            background-color: #F4F5F7;
            box-shadow: inset 2px 0px 0px #2a654f;
        }


/*---------------------------------------------------------------------
- Question
*/
div.question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    div.question .label {
        width: 20%;
        position: relative;
        color: #676767;
        text-transform: uppercase;
        font-size: 13px;
        margin-bottom: 0px;
        display: flex;
        justify-content: flex-end;
    }

        div.question .label i {
            display: none;
        }

    div.question .answer {
        width: 40%;
    }

    div.question .description {
        width: 40%;
        color: #999;
        font-size: 14px;
        padding-top: 5px;
    }


/*---------------------------------------------------------------------
- Application, Applicant statuses
*/
.rStatus {
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    padding: 4px;
    border: 1px solid transparent;
}

/* Applicant - Draft, Application - Draft */
.rStatus.applicant.a1, .rStatus.application.a1 {
    background-color: #fafafa;
    border: 1px solid #aaa;
    color: #888;
}

/* Applicant - Under review, Application - Under review */
.rStatus.applicant.a2, .rStatus.application.a2 {
    background-color: #0080ff;
    color: #FFF;
}

/* Applicant - Approved, Application - Completed */
.rStatus.applicant.a4, .rStatus.application.a3 {
    background-color: #7ab67a;
    color: #FFF;
}

/* Applicant - Denied, Application - Cancelled */
.rStatus.applicant.a5, .rStatus.application.a4 {
    background-color: #ff5757;
    color: #FFF;
}

/* Applicant - Additional Information Requested, Application - Additional Information Requested */
.rStatus.applicant.a6, .rStatus.application.a6 {
    background-color: #ffca57;
    color: #FFF;
}

/* Applicant - Additional Information Provided */
.rStatus.applicant.a7 {
    background-color: #57bfff;
    color: #FFF;
}

/*---------------------------------------------------------------------
- Application, Applicant statuses
*/


.rStatus.OfficerActionNextStep
{
    background-color:#b2e5b2;
    color:#000;
}

.rStatus.OfficerActionPrevStep
{
    background-color:#ffca57;
    color:#000;
}

.rStatus.OfficerActionAdditionalInfoRequested {
    background-color: #ffe3a5;
    color: #000;
}

.rStatus.OfficerActionVisaApproved {
    background-color: #7ab67a;
    color: #000;
}

.rStatus.OfficerActionVisaDenied {
    background-color: #ff5757;
    color: #000;
}

.rStatus.OfficerActionAdditionalInfoProvided {
    background-color: #84c2ff;
    color: #000;
}


/* ---------------------------------------------------
   - override for tagui notifications 
*/
#taguiNotifications .alertText .marker {
    text-align: center;
    margin-top: -5px;
    margin-bottom: 10px;
    
}

#taguiNotifications .alertText .marker i {
    font-size: 36px;
    font-style: normal;
}

#taguiNotifications .alertText .marker.success i:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Pro', 'Arial Unicode MS';
    color:#3ba939;

}

#taguiNotifications .alertText .marker.warning i:before {
    content: '\f071';
    font-family: 'Font Awesome 5 Pro', 'Arial Unicode MS';
    color:#FF9800;
}

#taguiNotifications .alertText .marker.error i:before {
    content: '\f057';
    font-family: 'Font Awesome 5 Pro', 'Arial Unicode MS';
    color:#851b1b;
}

#taguiNotifications .alertText .marker.info i:before {
    content: '\f05a';
    font-family: 'Font Awesome 5 Pro', 'Arial Unicode MS';
    color:#318fe7;
}