﻿:root {
    /* Defaults */
    --primary-color: #D14317;
    --secondary-color: #F7A11A;
    /* Nav Buttons */
    --nav-primary-color: #D14317;
    --nav-secondary-color: #D14317;
    --nav-disabled-text-color: #D3D3D3;
    --nav-active-text-color: #FFFFFF;
    /* Buttons */
    --btn-primary-text-color: #FFFFFF;
    --btn-primary-color-outline: #D14317;
    --btn-primary-color: #D14317;
    --btn-primary-color-hover: #F4BB6B;
    --btn-primary-text-color-hover: D14317;
}

body {
    height: 100%;
}

.tooltip-inner {
    max-width: 300px;
}

/* HEADER */
#header {
    background-color: #E9ECEF;
    border-bottom: 1px solid #D3D3D3;
}

.header-custom {
    
}

/* FOOTER */
#footer {
    background-color: #E9ECEF;
    border-top: 1px solid #D3D3D3;
    height: 120px;
    width: 100%;
}

/* NAV - ACTION BAR */
.nav-item.nav-link {
    color: var(--nav-secondary-color);
}

    .nav-item.nav-link:hover {
        color: var(--nav-secondary-color);
    }

    .nav-item.nav-link.active {
        background-color: var(--nav-primary-color);
        color: var(--nav-active-text-color);
    }

        .nav-item.nav-link.active:hover {
            color: var(--nav-active-text-color);
        }

    .nav-item.nav-link.disabled {
        color: var(--nav-diabled-text-color);
    }

        .nav-item.nav-link.disabled:hover {
            color: var(--nav-diabled-text-color);
        }

/* ALERT */
.alert {
    margin-bottom: 0px;
}

/* CARD */
.card {
    border-color: #D3D3D3;
}

.home-card {
}

.login-container {
    position: absolute;
    height: 100vh;
    width: 100vw;
}

.login-card {
    border: none;
}
/* Header Text - (BODY) */
.display-5 {
}

/* BUTTONS */
.btn-outline-primary {
    border-color: var(--btn-primary-color-outline);
    color: var(--btn-primary-color-outline);
}

    .btn-outline-primary:hover {
        color: var(--btn-primary-text-color);
        background-color: var(--btn-primary-color-outline);
        border-color: var(--btn-primary-color-outline);
    }

    .btn-outline-primary:active {
        color: var(--btn-primary-text-color);
        background-color: var(--btn-primary-color-outline);
        border-color: var(--btn-primary-color-outline);
        box-shadow: var(--secondary-color);
    }

    .btn-outline-primary:focus {
        color: var(--btn-primary-text-color);
        background-color: var(--btn-primary-color-outline);
        border-color: var(--btn-primary-color-outline);
        box-shadow: var(--secondary-color);
    }

.btn-primary {
    border-color: var(--btn-primary-color-outline);
    background-color: var(--btn-primary-color-outline);
}

    .btn-primary:hover {
        color: var(--btn-primary-text-color-hover);
        background-color: var(--btn-primary-color-hover);
        border-color: var(--btn-primary-color-hover);
    }

    .btn-primary:focus {
        color: var(--btn-primary-text-color-hover);
        background-color: var(--btn-primary-color-hover);
        border-color: var(--btn-primary-color-hover);
        box-shadow: var(--secondary-color);
    }

    .btn-primary:active {
        color: var(--btn-primary-text-color-hover);
        background-color: var(--btn-primary-color-hover);
        border-color: var(--btn-primary-color-hover);
        box-shadow: var(--secondary-color);
    }

    .btn-primary collapsed {
        border-color: var(--btn-primary-color-outline);
        background-color: var(--btn-primary-color-outline);
    }

/* AUTHENTICATION */
.list-group-item.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.list-group-item:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}

.list-is-activated {
    border-color: dodgerblue;
    background-color: dodgerblue;
}

/* TABLE */
thead {
    background-color: #F0F1F2;
}

.lblSystem {
    margin-bottom: auto;
}

/* IMAGE RECOGNITION */
.nopad {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@keyframes unselected {
    0% {
        box-shadow: 0 0 0 4px #00c09e;
    }

    50% {
        transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #fff;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #fff;
    }
}

@-o-keyframes unselected {
    0% {
        box-shadow: 0 0 0 4px #00c09e;
    }

    50% {
        -o-transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #fff;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #fff;
    }
}

@-ms-keyframes unselected {
    0% {
        box-shadow: 0 0 0 4px #00c09e;
    }

    50% {
        width: 45%;
        height: 45%;
        opacity: 0.8;
        box-shadow: 0 0 0 4px #fff;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #fff;
    }
}

@-moz-transition unselected {
    0% {
        box-shadow: 0 0 0 4px #00c09e;
    }

    50% {
        -moz-transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #fff;
    }

    80%, 100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #fff;
    }
}

@-webkit-keyframes unselected {
    0% {
        box-shadow: 0 0 0 4px #00c09e;
    }

    50% {
        -webkit-transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #fff;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #fff;
    }
}

ul.imgRecog {
    list-style: none;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 20px;
    line-height: 40px;
    color: #555;
}

li.imgRecog {
    position: relative;
    /*margin: 10px;*/
    /*width: 157px;
    height: 157px;*/
    margin: 2.5px;
    width: 75px;
    height: 75px;
    float: left;
}

    li.imgRecog:before {
        content: "\2714";
        display: block;
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background: #00c09e;
        border-radius: 50px;
        color: #fff;
        text-align: center;
        font-size: 16px;
        z-index: 10;
        opacity: 0;
        transition: 0.3s linear;
        -o-transition: 0.3s linear;
        -ms-transition: 0.3s linear;
        -moz-transition: 0.3s linear;
        -webkit-transition: 0.3s linear;
        -o-user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        cursor: pointer;
    }

    li.imgRecog.selected:before {
        opacity: 1;
    }

    li.imgRecog.selected img {
        box-shadow: 0 0 0 4px #00c09e;
        animation: selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
        -o-animation: selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
        -ms-animation: selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
        -moz-animation: selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
        -webkit-animation: selected 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
    }

@keyframes selected {
    0% {
        border-color: #fff;
    }

    50% {
        transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #00c09e;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #00c09e;
    }
}

@-o-keyframes selected {
    0% {
        box-shadow: 0 0 0 4px #fff;
    }

    50% {
        -o-transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #00c09e;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #00c09e;
    }
}

@-ms-keyframes selected {
    0% {
        box-shadow: 0 0 0 4px #fff;
    }

    50% {
        width: 45%;
        height: 45%;
        opacity: 0.8;
        box-shadow: 0 0 0 4px #00c09e;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #00c09e;
    }
}

@-moz-transition selected {
    0% {
        box-shadow: 0 0 0 4px #fff;
    }

    50% {
        -moz-transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #00c09e;
    }

    80%, 100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #00c09e;
    }
}

@-webkit-keyframes selected {
    0% {
        box-shadow: 0 0 0 4px #fff;
    }

    50% {
        -webkit-transform: scale(0.5);
        opacity: 0.8;
        box-shadow: 0 0 0 4px #00c09e;
    }

    80%,100% {
        width: 100%;
        height: 100%;
        box-shadow: 0 0 0 4px #00c09e;
    }
}

/* NEW USER WIZARD BREADCRUMB */
.wizardnav {
    border: #D3D3D3 1px solid;
    padding: 5px;
}

/* Captcha */
.captcha-style {
    /*FontColor ="#E2690C" BackColor="#F8F8F8"*/
    color: pink;
    background: green;
}

.g-recaptcha {
    display: inline-block;
}

#txtCaptcha {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

#ImageButton1 {
    padding-top: 14px;
    padding-left: 10px;
}

/* Google Login */
.gButton {
    background: #CECECE;
    color: #5D5D5D;
    border-radius: 5px;
    border: thin solid #5D5D5D;
    white-space: nowrap;
    height: 45px;
    padding: 10px;
}

    .gButton:hover {
        cursor: pointer;
        background: #A5A5A5;
        border: thin solid #5D5D5D;
        color: #FFFFFF;
    }

span.icon {
    background: url('img/g-normal.png') transparent 5px 50% no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 42px;
    height: 42px;
}

span.buttonText {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 20px;
    font-weight: bold;
    font-size: 20px;
}

/* Debug Table */
.table-debug {
    table-layout: fixed;
    word-wrap: break-word;
}

    .table-debug td {
        padding: 0.2rem;
    }

/* Dropdown */
.gateway-list {
    max-width: 200px;
    margin-bottom: 10px;
}

.cq-dropdown-list {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

    .cq-dropdown-list a:hover {
        background-color: var(--secondary-color);
    }

.errorValidationText {
    color: #FF0000;
    font-size: 12px;
    font-style: italic;
}

.error_color {
    color: #FF0000;
}

.success_color {
    color: #155724;
}

.warning_color {
    color: #F57D00;
}

.required {
    color: #FF0000
}

/* Home - Banner "HomeTitleSelf" Text*/
.HomeTitleSelf-TextColor {
    /*color:aqua;*/
}
/* Home - Banner "HomeTitleServe" Text*/
.HomeTitleServe-TextColor {
    /*color: deeppink;*/
}

button .tooltip-inner {
    width: 100px;
}

/* PIN ENTRY */
.pincode-input {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 3px;
    border: 2px solid gray;
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
}

    .pincode-input:not(:last-child) {
        margin-right: 1rem;
    }

    .pincode-input.pincode-input--focused {
        border-color: #000;
    }

    .pincode-input.pincode-input--filled {
        border-color: dodgerblue;
    }

/* CSS Loader - Alert */
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #0c5460;
            margin: -4px 0 0 -4px;
        }

.lds-roller-main div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

    .lds-roller div:nth-child(1):after {
        top: 63px;
        left: 63px;
    }

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

    .lds-roller div:nth-child(2):after {
        top: 68px;
        left: 56px;
    }

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

    .lds-roller div:nth-child(3):after {
        top: 71px;
        left: 48px;
    }

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

    .lds-roller div:nth-child(4):after {
        top: 72px;
        left: 40px;
    }

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

    .lds-roller div:nth-child(5):after {
        top: 71px;
        left: 32px;
    }

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

    .lds-roller div:nth-child(6):after {
        top: 68px;
        left: 24px;
    }

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

    .lds-roller div:nth-child(7):after {
        top: 63px;
        left: 17px;
    }

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

    .lds-roller div:nth-child(8):after {
        top: 56px;
        left: 12px;
    }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

* {
    margin: 0;
    padding: 0;
}

/* Resource Editor */
.tree ul {
    /*padding-top: 20px;*/
    padding-top: 10px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    text-align: center;
}

.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    /*padding: 20px 5px 0 5px;*/
    padding: 10px 5px 0 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    text-align: center;
}

    /*We will use ::before and ::after to draw the connectors*/

    .tree li::before, .tree li::after {
        content: '';
        position: absolute;
        top: 0;
        right: 50%;
        border-top: 1px solid #ccc;
        width: 50%;
        /*height: 20px;*/
        height: 10px;
    }

    .tree li::after {
        right: auto;
        left: 50%;
        border-left: 1px solid #ccc;
    }

    /*We need to remove left-right connectors from elements without 
any siblings*/
    .tree li:only-child::after, .tree li:only-child::before {
        display: none;
    }

    /*Remove space from the top of single children*/
    .tree li:only-child {
        padding-top: 0;
    }

    /*Remove left connector from first child and 
right connector from last child*/
    .tree li:first-child::before, .tree li:last-child::after {
        border: 0 none;
    }
    /*Adding back the vertical connector to the last nodes*/
    .tree li:last-child::before {
        border-right: 1px solid #ccc;
        border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0;
        -moz-border-radius: 0 5px 0 0;
    }

    .tree li:first-child::after {
        border-radius: 5px 0 0 0;
        -webkit-border-radius: 5px 0 0 0;
        -moz-border-radius: 5px 0 0 0;
    }

/*Time to add downward connectors from parents*/
.tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid #ccc;
    width: 0;
    /*height: 20px;*/
    height: 10px;
}

.tree li a {
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
    color: #666;
    font-family: arial, verdana, tahoma;
    font-size: 11px;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

    /*Time for some hover effects*/
    /*We will apply the hover effect the the lineage of the element also*/
    .tree li a:hover, .tree li a:hover + ul li a {
        background: #E2690C;
        color: #000;
        border: 1px solid #CCC;
    }
        /*Connector styles on hover*/
        .tree li a:hover + ul li::after,
        .tree li a:hover + ul li::before,
        .tree li a:hover + ul::before,
        .tree li a:hover + ul ul::before {
            border-color: #CCC;
        }

.captcha {
    height: 30px;
    width: 160px;
    margin: 15px 0;
}

    .captcha span {
        float: right;
        line-height: 30px;
        font-size: 12pt;
        font-weight: bolder;
    }

    .captcha .check {
        border-radius: 3px;
        width: 30px;
        height: 30px;
        border: 2px solid #D14317;
        display: inline;
        position: absolute;
        cursor: pointer;
    }

/*Styles for check animation*/
.check .wrapper {
    width: 25px;
    display: inline;
    margin: 4em auto 0;
}

.check .checkmark {
    stroke: #D14317;
    stroke-dashoffset: 745.74853515625;
    stroke-dasharray: 745.74853515625;
    -webkit-animation: dash 2s ease-out forwards;
    animation: dash 2s ease-out forwards;
}

@-webkit-keyframes dash {
    0% {
        stroke-dashoffset: 745.74853515625;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 745.74853515625;
    }

    100% {
        stroke-dashoffset: 0;
    }
}
/*End check animation*/
