﻿
/*#region *** loginContainer, login-widget ****/
html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #3e3b44;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

*,
*::before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

form#loginForm {
    height: 100%;
    position: relative;
}

#usrLogin_loginContainer {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    #usrLogin_loginContainer #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #252525;
        width: 100%;
        max-width: 416px;
        border-radius: 8px;
        padding: 40px;
        margin: 12px;
    }
        /*#endregion*/

        /*#region *** login-header ****/
        #usrLogin_loginContainer #login-widget .login-header h2,
        #usrLogin_loginContainer #login-widget .login-header h3 {
            font-size: 36px;
            font-weight: 900;
            margin: 4px 0;
        }

        #usrLogin_loginContainer #login-widget .login-header h2 {
            margin-top: 16px;
        }

        #usrLogin_loginContainer #login-widget .login-header h3 {
            color: rgba(255, 255, 255, 0.7);
        }
        /*#endregion*/

        /*#region *** input-control ****/
        #usrLogin_loginContainer #login-widget .input-control {
            margin-top: 32px;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.1);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: left;
            -ms-flex-pack: left;
            justify-content: left;
            position: relative;
        }

            #usrLogin_loginContainer #login-widget .input-control .icon-box {
                width: 52px;
                height: 52px;
                border-radius: 4px 0 0 4px;
                background-color: rgba(255, 255, 255, 0.2);
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

                #usrLogin_loginContainer #login-widget .input-control .icon-box .icon {
                    height: 20px;
                    fill: rgba(0, 0, 0, 0.66);
                }

            #usrLogin_loginContainer #login-widget .input-control .login-input {
                width: 100%;
                padding: 12px 8px;
                font-size: 20px;
                color: rgba(255, 255, 255, 0.6);
                background: none;
                outline: none;
                border: none;
            }

            #usrLogin_loginContainer #login-widget .input-control .select-options {
                width: 100%;
            }

                #usrLogin_loginContainer #login-widget .input-control .select-options select {
                    width: 98%;
                    padding-right: 8px;
                }

                    #usrLogin_loginContainer #login-widget .input-control .select-options select option {
                        height: 32px;
                        color: inherit;
                    }

            #usrLogin_loginContainer #login-widget .input-control.set-focus {
                background-color: rgba(255, 255, 255, 0.8);
            }

                #usrLogin_loginContainer #login-widget .input-control.set-focus .icon-box .icon {
                    fill: #FFF;
                }

                #usrLogin_loginContainer #login-widget .input-control.set-focus .login-input {
                    color: #252525;
                }
        /*#endregion*/

        /*#region *** login-buttons ****/
        #usrLogin_loginContainer #login-widget .login-buttons {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            margin-top: 32px;
        }

            #usrLogin_loginContainer #login-widget .login-buttons .login-button-wrap {
                width: 48%;
                height: 52px;
                border-radius: 30px;
                background-color: #1D1D1D;
                -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
                margin-right: 0.5%;
                margin-left: 0.5%;
                cursor: pointer;
                position: relative;
            }

                #usrLogin_loginContainer #login-widget .login-buttons .login-button-wrap.abandon {
                    display: none;
                }

    #usrLogin_loginContainer.abandon #login-widget .login-buttons .login-button-wrap.abandon {
        display: inline-block;
    }

    #usrLogin_loginContainer #login-widget .login-buttons .login-button-wrap:before {
        content: " ";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        border-radius: 30px;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0)));
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    }

    #usrLogin_loginContainer #login-widget .login-buttons .login-button-wrap:hover {
        -webkit-box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
        box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
    }

    #usrLogin_loginContainer #login-widget .login-buttons .login-button-wrap input {
        width: 100%;
        height: 100%;
        border: none;
        outline: none;
        border-radius: 50px;
        background: transparent;
        color: white;
        font-size: 13px;
        font-weight: bold;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-shadow: 0 0px 4px black;
        position: relative;
        z-index: 1;
    }

        #usrLogin_loginContainer #login-widget .login-buttons .login-button-wrap input:focus {
            -webkit-box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
            box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
        }
/*#endregion*/

/*#region *** Forgot Pwd ****/
#usrLogin_upForgotPwd {
    color: #cccccc;
    text-decoration: underline;
    padding-top: 22px;
    cursor: pointer;
}

    #usrLogin_upForgotPwd a:focus {
        padding: 8px;
        border-radius: 4px;
        border: 1px dashed rgba(255,255,255,0.3);
        outline: none;
    }

.login-container.crm.crm-login-page a.forgot-pwd {
    display: none;
}
/*#endregion*/


/*#region *** LAW ****/
#usrLogin_loginContainer.law {
    /*background-image: url("../../Images/PhoenixLogin/Police2020R2.jpg");*/
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 1%) 0%, rgb(0 0 0 / 82%) 100%),url(../../Images/PhoenixLogin/PoliceCar_Light_Animate.png);
}

    /* #usrLogin_loginContainer.law #login-widget {
        border: 1px solid rgba(0, 176, 255, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(0, 176, 255, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(0, 176, 255, 0.8), 4px 4px 8px black;
    }*/

    #usrLogin_loginContainer.law #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: linear-gradient(to left, rgb(13 13 13 / 86%) 31%, rgb(7 7 7) 100%),url(../../Images/PhoenixLogin/widget-bg.jpg);
        width: 100%;
        max-width: 446px;
        border-radius: 21px;
        padding: 40px 32px;
        margin: 12px;
        border: 1px solid rgba(0, 176, 255, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(0, 176, 255, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgb(0 176 255 / 80%), 4px 4px 8px black;
        background-size: cover;
    }

        #usrLogin_loginContainer.law #login-widget h2 {
            color: #00B0FF !important;
        }

    #usrLogin_loginContainer.law .input-control.set-focus {
        -webkit-box-shadow: 0 0 6px 4px rgba(0, 176, 255, 0.4);
        box-shadow: 0 0 6px 4px rgba(0, 176, 255, 0.4);
    }

        #usrLogin_loginContainer.law .input-control.set-focus .icon-box {
            background-color: #00B0FF !important;
        }

    #usrLogin_loginContainer.law .login-buttons .login-button-wrap.submit {
        background-color: #00B0FF !important;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #usrLogin_loginContainer.law #login-widget {
        background-image: url(../../Images/PhoenixLogin/widget-bg-ie.jpg);
    }

    #usrLogin_loginContainer.law {
        background-image: url(../../Images/PhoenixLogin/PoliceCar_Light_ie.png);
    }

        #usrLogin_loginContainer.law #login-widget .input100:-ms-input-placeholder {
            color: #999; /* IE11 needs the !important flag */
        }
}
/*#endregion*/

/*#region *** Fire, EZ Fire, EZ CRM ****/
#usrLogin_loginContainer.fire {
    /*background-image: url("../../Images/PhoenixLogin/Fire2020R2.jpg");*/
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 1%) 0%, rgb(0 0 0 / 82%) 100%), url(../../Images/PhoenixLogin/firerms.jpg);
}

    #usrLogin_loginContainer.fire #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: linear-gradient(to left, rgb(13 13 13 / 50%) 31%, rgb(7 7 7) 100%),url(../../Images/PhoenixLogin/6577.jpg);
        width: 100%;
        max-width: 446px;
        border-radius: 21px;
        padding: 40px 32px;
        margin: 12px;
        border: 1px solid rgba(242, 55, 41, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgb(242 55 41 / 80%), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(242, 55, 41 / 80%), 4px 4px 8px black;
        background-size: cover;
    }

    #usrLogin_loginContainer.fire #login-widget {
        border: 1px solid rgba(242, 55, 41, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(242, 55, 41, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(242, 55, 41, 0.8), 4px 4px 8px black;
    }

        #usrLogin_loginContainer.fire #login-widget h2 {
            color: #F23729 !important;
        }

    #usrLogin_loginContainer.fire .input-control.set-focus {
        -webkit-box-shadow: 0 0 6px 4px rgba(242, 55, 41, 0.4);
        box-shadow: 0 0 6px 4px rgba(242, 55, 41, 0.4);
    }

        #usrLogin_loginContainer.fire .input-control.set-focus .icon-box {
            background-color: #F23729 !important;
        }

    #usrLogin_loginContainer.fire .login-buttons .login-button-wrap.submit {
        background-color: #F23729 !important;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #usrLogin_loginContainer.fire #login-widget {
        background-image: url(../../Images/PhoenixLogin/6577_ie.jpg);
    }

    #usrLogin_loginContainer.fire {
        background-image: url(../../Images/PhoenixLogin/firerms_ie.jpg);
    }

        #usrLogin_loginContainer.fire #login-widget .input100:-ms-input-placeholder {
            color: #999; /* IE11 needs the !important flag */
        }
}
/*#endregion*/

/*#region *** CMS ****/
#usrLogin_loginContainer.cms {
    /*background-image: url("../../Images/PhoenixLogin/Cms2020R2.jpg");*/
    background-image: linear-gradient(to bottom, rgb(99 101 100 / 20%) 0%, rgb(68 48 48 / 91%) 100%), url(../../Images/PhoenixLogin/CMS2021.jpg);
}

    #usrLogin_loginContainer.cms #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: linear-gradient(to left, rgb(13 13 13 / 83%) 31%, rgb(7 7 7 / 79%) 100%),url(../../Images/PhoenixLogin/prison-handcuffs.jpg);
        width: 100%;
        max-width: 446px;
        border-radius: 21px;
        padding: 40px 32px;
        margin: 12px;
        background-size: cover;
    }

    #usrLogin_loginContainer.cms #login-widget {
        border: 1px solid rgba(25, 148, 122, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(25, 148, 122, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(25, 148, 122, 0.8), 4px 4px 8px black;
    }

        #usrLogin_loginContainer.cms #login-widget h2 {
            color: #19947A !important;
        }

    #usrLogin_loginContainer.cms .input-control.set-focus {
        -webkit-box-shadow: 0 0 6px 4px rgba(25, 148, 122, 0.4);
        box-shadow: 0 0 6px 4px rgba(25, 148, 122, 0.4);
    }

        #usrLogin_loginContainer.cms .input-control.set-focus .icon-box {
            background-color: #19947A !important;
        }

    #usrLogin_loginContainer.cms .login-buttons .login-button-wrap.submit {
        background-color: #19947A !important;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #usrLogin_loginContainer.cms #login-widget {
        background-image: url(../../Images/PhoenixLogin/prison-handcuffs_ie.jpg);
    }

    #usrLogin_loginContainer.cms {
        background-image: url(../../Images/PhoenixLogin/CMS2021_ie.jpg);
    }

        #usrLogin_loginContainer.cms #login-widget .input100:-ms-input-placeholder {
            color: #999; /* IE11 needs the !important flag */
        }
}
/*#endregion*/

/*#region *** CRM ****/
#usrLogin_loginContainer.crm {
    /*background-image: url("../../Images/PhoenixLogin/Crm2020R2.jpg");*/
    background-image: linear-gradient(to bottom, rgb(12 14 14 / 52%) 0%,rgb(37 24 24 / 78%) 100%), url(../../Images/PhoenixLogin/CRM.jpg);
}

    #usrLogin_loginContainer.crm #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: linear-gradient(to left, rgb(13 13 13 / 60%) 31%, rgb(7 7 7 / 79%) 100%),url(../../Images/PhoenixLogin/crm-widget.jpg);
        width: 100%;
        max-width: 446px;
        border-radius: 21px;
        padding: 40px 32px;
        margin: 12px;
        background-size: cover;
    }

    #usrLogin_loginContainer.crm #login-widget {
        border: 1px solid rgba(0, 148, 194, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(0, 148, 194, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(0, 148, 194, 0.8), 4px 4px 8px black;
    }

        #usrLogin_loginContainer.crm #login-widget h2 {
            color: #0094C2 !important;
        }

    #usrLogin_loginContainer.crm .input-control.set-focus {
        -webkit-box-shadow: 0 0 6px 4px rgba(0, 148, 194, 0.4);
        box-shadow: 0 0 6px 4px rgba(0, 148, 194, 0.4);
    }

        #usrLogin_loginContainer.crm .input-control.set-focus .icon-box {
            background-color: #0094C2 !important;
        }

    #usrLogin_loginContainer.crm .login-buttons .login-button-wrap.submit {
        background-color: #0094C2 !important;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #usrLogin_loginContainer.crm #login-widget {
        background-image: url(../../Images/PhoenixLogin/crm-widget_ie.jpg);
    }

    #usrLogin_loginContainer.crm {
        background-image: url(../../Images/PhoenixLogin/CRM_ie.jpg);
    }

        #usrLogin_loginContainer.crm #login-widget .input100:-ms-input-placeholder {
            color: #999; /* IE11 needs the !important flag */
        }
}
/*#endregion*/

/*#region *** IA ****/
#usrLogin_loginContainer.ia {
    /*background-image: url("../../Images/PhoenixLogin/Ia2020R2.jpg");*/
    background-image: linear-gradient(to bottom, rgb(19 35 31 / 87%) 0%, rgb(123 64 16 / 63%) 100%), url(../../Images/PhoenixLogin/legal-success.jpg);
}

    #usrLogin_loginContainer.ia #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: linear-gradient(to left, rgb(13 13 13 / 87%) 31%, rgb(7 7 7 / 90%) 100%),url(../../Images/PhoenixLogin/ia-widget.jpg);
        width: 100%;
        max-width: 446px;
        border-radius: 21px;
        padding: 40px 32px;
        margin: 12px;
        background-size: cover;
    }

    #usrLogin_loginContainer.ia #login-widget {
        border: 1px solid rgba(178, 84, 11, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(178, 84, 11, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(178, 84, 11, 0.8), 4px 4px 8px black;
    }

        #usrLogin_loginContainer.ia #login-widget h2 {
            color: #B2540B !important;
        }

    #usrLogin_loginContainer.ia .input-control.set-focus {
        -webkit-box-shadow: 0 0 6px 4px rgba(178, 84, 11, 0.4);
        box-shadow: 0 0 6px 4px rgba(178, 84, 11, 0.4);
    }

        #usrLogin_loginContainer.ia .input-control.set-focus .icon-box {
            background-color: #B2540B !important;
        }

    #usrLogin_loginContainer.ia .login-buttons .login-button-wrap.submit {
        background-color: #B2540B !important;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #usrLogin_loginContainer.ia #login-widget {
        background-image: url(../../Images/PhoenixLogin/ia-widget_ie.jpg);
    }

    #usrLogin_loginContainer.ia {
        background-image: url(../../Images/PhoenixLogin/legal-success_ie.jpg);
    }

        #usrLogin_loginContainer.ia #login-widget .input100:-ms-input-placeholder {
            color: #999; /* IE11 needs the !important flag */
        }
}
/*#endregion*/

/*#region *** CAD Admin ****/
#usrLogin_loginContainer.cadadmin {
    /*background-image: url("../../Images/PhoenixLogin/CadAdmin2020R2.jpg");*/
    background-image: linear-gradient(to bottom, rgb(19 35 31 / 29%) 0%, rgb(37 24 24 / 75%) 100%), url(../../Images/PhoenixLogin/CAD2021.jpg);
}

    #usrLogin_loginContainer.cadadmin #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: linear-gradient(to left, rgb(13 13 13 / 80%) 31%, rgb(7 7 7) 100%),url(../../Images/PhoenixLogin/cadadminwidget.jpg);
        width: 100%;
        max-width: 446px;
        border-radius: 21px;
        padding: 40px 32px;
        margin: 12px;
        background-size: cover;
    }

    #usrLogin_loginContainer.cadadmin #login-widget {
        border: 1px solid rgba(0, 176, 255, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(0, 176, 255, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(0, 176, 255, 0.8), 4px 4px 8px black;
    }

        #usrLogin_loginContainer.cadadmin #login-widget h2 {
            color: #00B0FF !important;
        }

    #usrLogin_loginContainer.cadadmin .input-control.set-focus {
        -webkit-box-shadow: 0 0 6px 4px rgba(0, 176, 255, 0.4);
        box-shadow: 0 0 6px 4px rgba(0, 176, 255, 0.4);
    }

        #usrLogin_loginContainer.cadadmin .input-control.set-focus .icon-box {
            background-color: #00B0FF !important;
        }

    #usrLogin_loginContainer.cadadmin .login-buttons .login-button-wrap.submit {
        background-color: #00B0FF !important;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #usrLogin_loginContainer.cadadmin #login-widget {
        background-image: url(../../Images/PhoenixLogin/cadadminwidget_ie.jpg);
    }

    #usrLogin_loginContainer.cadadmin {
        background-image: url(../../Images/PhoenixLogin/CAD2021_ie.jpg);
    }

        #usrLogin_loginContainer.cadadmin #login-widget .input100:-ms-input-placeholder {
            color: #999; /* IE11 needs the !important flag */
        }
}
/*#endregion*/

/*#region *** Fire CAD Admin ****/
#usrLogin_loginContainer.fcadadmin {
    /*background-image: url("../../Images/PhoenixLogin/FireCadAdmin2020R2.jpg");*/
    background-image: linear-gradient(to bottom, rgb(97 99 98 / 68%) 0%,rgb(74 49 49 / 65%) 100%), url(../../Images/PhoenixLogin/fireWDA2021.jpg);
}

    #usrLogin_loginContainer.fcadadmin #login-widget {
        border: 1px solid rgba(242, 55, 41, 0.4);
        -webkit-box-shadow: -4px -4px 8px rgba(242, 55, 41, 0.8), 4px 4px 8px black;
        box-shadow: -4px -4px 8px rgba(242, 55, 41, 0.8), 4px 4px 8px black;
    }

    #usrLogin_loginContainer.fcadadmin #login-widget {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: linear-gradient(to left, rgb(13 13 13 / 74%) 31%, rgb(7 7 7 / 73%) 100%),url(../../Images/PhoenixLogin/firewidget.jpg);
        width: 100%;
        max-width: 446px;
        border-radius: 21px;
        padding: 40px 32px;
        margin: 12px;
        background-size: cover;
    }

        #usrLogin_loginContainer.fcadadmin #login-widget h2 {
            color: #F23729 !important;
        }

#usrLogin_loginGoogleAuthottp.fcadadmin .input-control.set-focus {
    -webkit-box-shadow: 0 0 6px 4px rgba(242, 55, 41, 0.4);
    box-shadow: 0 0 6px 4px rgba(242, 55, 41, 0.4);
}

        #usrLogin_loginContainer.fcadadmin .input-control.set-focus .icon-box {
            background-color: #F23729 !important;
        }

    #usrLogin_loginContainer.fcadadmin .login-buttons .login-button-wrap.submit {
        background-color: #F23729 !important;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    #usrLogin_loginContainer.fcadadmin #login-widget {
        background-image: url(../../Images/PhoenixLogin/firewidget_ie.jpg);
    }

    #usrLogin_loginContainer.fcadadmin {
        background-image: url(../../Images/PhoenixLogin/fireWDA2021_ie.jpg);
    }

        #usrLogin_loginContainer.fcadadmin #login-widget .input100:-ms-input-placeholder {
            color: #999; /* IE11 needs the !important flag */
        }
}
/*#endregion*/



/*#region *** Footer ****/
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background-color: #000000;
}

    footer p {
        position: absolute;
        width: 100%;
        line-height: 24px;
        font-size: 11px;
        color: #828282;
        padding: 0 8px;
        margin: 0;
    }

        footer p:nth-child(2) {
            text-align: center;
        }

        footer p:nth-child(3) {
            text-align: right;
        }
/*#endregion*/

/*#region *** Caps Div ****/
#CapsDiv {
    position: absolute;
    left: 26px;
    top: 40px;
    padding: 0 16px;
    display: none;
    font-size: 15px;
    text-align: left;
    line-height: 48px;
    background: #ffffff;
    border: 1px solid #000;
    color: #222222;
}

    #CapsDiv .arrow {
        width: 20px;
        height: 20px;
        background: #fff;
        border: 1px solid #000;
        border-bottom-color: #fff;
        border-right-color: #fff;
        transform: rotate(45deg);
        position: absolute;
        z-index: 1;
        top: -10px;
        left: 16px;
    }
/*#endregion*/


/*#region *** Popup Window(s) ****/
#popup-container {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
}

    #popup-container.show-popup {
        display: block;
    }

    #popup-container .cont-table {
        display: table;
        height: 100%;
        width: 100%;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

    #popup-container.for-warnings .cont-table, #popup-container.for-cjis .cont-table {
        max-width: 43rem;
    }

    #popup-container.for-password .cont-table {
        max-width: 40rem;
    }

    #popup-container .cont-cell {
        display: table-cell;
        vertical-align: middle;
    }

    #popup-container .cont-data {
        color: #e7e7e7;
        text-align: center;
        padding: 10px 24px;
        border-radius: 8px;
        background-color: #4b4b4b;
        box-shadow: 0 10px 8px 4px rgba(0,0,0,0.6);
        position: relative;
    }

        #popup-container .cont-data.for-password {
            display: none;
        }

    #popup-container.for-password .cont-data.for-password {
        display: block;
    }

    #popup-container.for-password .cont-data.for-others {
        display: none;
    }

    #popup-container .cont-data i.fa {
        position: absolute;
        margin-left: -36px;
        left: 50%;
        top: -36px;
        width: 72px;
        height: 72px;
        color: white;
        font-size: 32px;
        line-height: 64px;
        border-radius: 50%;
        background-color: #cd0a0a;
        border: 4px solid #8f8f8f;
    }

    /*#popup-container.for-cjis .cont-data i.fa {
        background-color: #009688;
    }*/

    /*#popup-container .cont-data.new-password i.fa {
        background-color: #009688;
    }*/

    #popup-container.for-failure .cont-data i.fa-exclamation-triangle {
        display: none;
    }

    #popup-container.for-warnings .cont-data i.fa-thumbs-down, #popup-container.for-cjis .cont-data i.fa-thumbs-down {
        display: none;
    }

    #popup-container .cont-data .error-title {
        margin: 40px 0 24px;
        font-weight: 700;
    }

    #popup-container .cont-data p {
        margin: 0;
        max-height: 13rem;
        overflow-y: auto;
    }



    #popup-container.for-password .cont-data.for-password .form-cont {
        text-align: left;
    }

        #popup-container.for-password .cont-data.for-password .form-cont p {
            line-height: 1.8rem;
            max-height: 13rem;
            overflow-y: auto;
        }

    #popup-container.for-password .cont-data.for-password .cont-title {
        font-weight: 600;
        margin: 10px 0;
    }

    #popup-container.for-password .cont-data.for-password .pwd-input-group {
        margin-top: 24px;
    }

        #popup-container.for-password .cont-data.for-password .pwd-input-group .label {
            font-weight: 600;
        }

        #popup-container.for-password .cont-data.for-password .pwd-input-group input {
            border: 1px solid #cccccc;
            width: 246px;
            height: 40px;
            padding-left: 8px;
            padding-right: 8px;
        }

            #popup-container.for-password .cont-data.for-password .pwd-input-group input:focus {
                border: 1px solid #333333;
                background-color: #f3f2f1;
            }

        #popup-container.for-password .cont-data.for-password .pwd-input-group .star {
            display: inline-block;
            width: 20px;
            height: 40px;
            vertical-align: bottom;
            text-align: center;
            font-weight: 700;
            color: red;
        }



    /*********** New Styles for Popup Buttons (2020.12.03) ************
*/
    #popup-container .popup-buttons {
        display: flex;
        margin: 0 auto 20px;
        justify-content: center;
    }

    #popup-container.for-cjis .popup-buttons {
        width: 50%;
    }

    #popup-container .popup-buttons .popup-button-wrap {
        max-width: 170px;
        width: 100%;
        height: 52px;
        border-radius: 30px;
        background-color: #1D1D1D;
        -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
        margin-right: 0.5%;
        margin-left: 0.5%;
        cursor: pointer;
        position: relative;
    }

        #popup-container .popup-buttons .popup-button-wrap input {
            width: 100%;
            height: 100%;
            border: none;
            outline: none;
            border-radius: 50px;
            background: transparent;
            color: white;
            font-size: 13px;
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 0 0px 4px black;
            position: relative;
            z-index: 1;
            cursor: pointer;
        }

        #popup-container .popup-buttons .popup-button-wrap:before {
            content: " ";
            display: block;
            height: 100%;
            width: 100%;
            position: absolute;
            z-index: 0;
            left: 0;
            top: 0;
            border-radius: 30px;
            background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0)));
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
        }

        #popup-container .popup-buttons .popup-button-wrap.ok {
            background-color: #cd0a0a;
        }

    #popup-container.for-cjis .popup-buttons .popup-button-wrap.ok {
        background-color: #009688 !important;
    }

    #popup-container .popup-buttons .popup-button-wrap.cancel {
        background-color: #cd0a0a;
    }

.split {
    height: 2px;
    border-top: 1px solid rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}


@media (max-width: 768px) {
    #popup-container.for-password .cont-data.for-password {
        max-height: 100vh;
        overflow-y: auto;
    }

        #popup-container.for-password .cont-data.for-password .error-title {
            margin-top: 24px;
            margin-bottom: 24px;
        }

        #popup-container.for-password .cont-data.for-password i.fa {
            position: static;
            margin: 0;
            box-shadow: 0 2px 2px 1px rgba(0,0,0,0.2);
        }

        #popup-container.for-password .cont-data.for-password .cont-title {
            margin-bottom: 16px;
        }
}

#popup-container.for-password .cont-data.for-password .popup-buttons .popup-button-wrap input:focus {
    -webkit-box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
}


/****** CJIS check *****
*/
#popup-container.for-cjis .cont-data #cjis-checkbox .checkbox-label {
    margin-top: 32px;
}

#popup-container .cont-data #cjis-checkbox, #popup-container .cont-data #cjis-checkbox .additional-text {
    display: none;
}

#popup-container.for-cjis .cont-data #cjis-checkbox {
    display: block;
    margin-bottom: 24px;
}

#popup-container.for-cjis .Loginpopup .popup-buttons .popup-button-wrap input:focus {
    -webkit-box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 2px 2px rgba(255, 255, 255, 0.2);
}
/*#endregion*/


select {
    background: rgba(1,1,2,3.3);
    color: #fff;
}
#TFAuth {
    display: none;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.tfcls {
    display: none;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    /* background-color: #000000; */
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(35 35 35 / 80%);
}

.close {
    color: #ffffff;
    float: right;
    cursor: pointer;
    margin-top:15px;
    width:20px;
}
/*#TwoFactor Authentication*/

/*#TFAuth body {
    font-family: Arial, sans-serif;
    background-size: cover;
    height: 100vh;
}*/

/*#popupcontainer1 {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
}*/
#TFAuth h1 {
    text-align: center;
    font-family: Tahoma, Arial, sans-serif;
    color: #06D85F;
    margin: 80px 0;
}

#TFAuth .box {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
}

.activecolor {
    background-color: brown !important;
}

.inactivecolor {
    background-color: aliceblue
}

#TFAuth .button {
    font-size: 1em;
    padding: 10px;
    color: #FFF;
    border: 2px solid;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    background: #777777;
    width: 100% !important;
}

#TFAuth .verify_btn {
    background: #204059;
}

#TFAuth .verify_btn:hover {
    /*background: #777777;*/
}
    #TFAuth .button:hover {
        /*background: #204059;*/
    }

#TFAuth .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #777777;
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

    #TFAuth .overlay:target {
        visibility: visible;
        opacity: 1;
    }

#TFAuth .popup {
    margin: 200px auto;
    /*padding: 20px;*/
    background: #fff;
    border-radius: 5px;
    width: 400px;
    position: relative;
    transition: all 5s ease-in-out;
}

    #TFAuth .popup h2 {
        margin-top: 0;
        /*color: #333;*/
        font-family: Tahoma, Arial, sans-serif;
    }

    #TFAuth .popup .close {
        position: absolute;
        right: 5px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
    }

        #TFAuth .popup .close:hover {
            color: #204059;
        }

    #TFAuth .popup .content {
        max-height: 30%;
        overflow: auto;
    }

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}

#TFAuth .modal-header {
    padding: 0px 14px 0 16px;
    background-color: #ab5656;
    color: white;
    width: 565px;
    position: absolute;
    height: 18%;
}
.tf_header_text{
    font-weight:500;
    margin-top:12px;
}
#TFAuth .modal-body p {
    font-weight:500;
}
    #TFAuth .modal-body {
    padding: 61px 16px 13px 0px;
    background-color: #5d5d5d;
    color: white;
    width: 565px;
    text-align: center;
}

#TFAuth .rcorners2 {
    border-radius: 5px !important;
    border: 2px solid white;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 40px!important;
}

/* Styles for Yubikey Setup */

#Divyubikeysetup 
{
    display: none;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

tfclsyubikeySetup {
    display: none;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    /* background-color: #000000; */
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(35 35 35 / 80%);
}


#Divyubikeysetup h1 {
    text-align: center;
    font-family: Tahoma, Arial, sans-serif;
    color: #06D85F;
    margin: 80px 0;
}

#Divyubikeysetup .box {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
}

#Divyubikeysetup .button {
    font-size: 1em;
    padding: 10px;
    color: #FFF;
    border: 2px solid;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    background: #777777;
    width: 100% !important;
}

#Divyubikeysetup .verify_btn {
    background: #204059;
}

    #Divyubikeysetup .verify_btn:hover {
        background: #777777;
    }

#Divyubikeysetup .button:hover {
    background: #204059;
}

#Divyubikeysetup .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #777777;
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

    #Divyubikeysetup .overlay:target {
        visibility: visible;
        opacity: 1;
    }

#Divyubikeysetup .popup {
    margin: 200px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 400px;
    position: relative;
    transition: all 5s ease-in-out;
}

    #Divyubikeysetup .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: Tahoma, Arial, sans-serif;
    }

    #Divyubikeysetup .popup .close {
        position: absolute;
        right: 5px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
    }

        #Divyubikeysetup .popup .close:hover {
            color: #204059;
        }

    #Divyubikeysetup .popup .content {
        max-height: 30%;
        overflow: auto;
    }

#Divyubikeysetup .modal-header {
    padding: 0px 14px 0 16px;
    background-color: #ab5656;
    color: white;
    width: 565px;
    position: absolute;
    height: 18%;
}

#Divyubikeysetup .modal-body p {
    font-weight: 500;
}

#Divyubikeysetup .modal-body {
    padding: 61px 16px 13px 0px;
    background-color: #5d5d5d;
    color: white;
    width: 436px;
    text-align: center;
}

/* Styles for Yubikey Register */

#DivYubikeyRegister {
    display: none;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tfclsyubikeyRegister {
    display: none;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    /* background-color: #000000; */
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(35 35 35 / 80%);
}


#DivYubikeyRegister h1 {
    text-align: center;
    font-family: Tahoma, Arial, sans-serif;
    color: #06D85F;
    margin: 80px 0;
}

#DivYubikeyRegister .box {
    width: 40%;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    padding: 35px;
    border: 2px solid #fff;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
}

#DivYubikeyRegister .button {
    font-size: 1em;
    padding: 10px;
    color: #FFF;
    border: 2px solid;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
    background: #777777;
    width: 100% !important;
}

#DivYubikeyRegister .verify_btn {
    background: #204059;
}

#DivYubikeyRegister .verify_btn:hover {
        background: #777777;
    }

#DivYubikeyRegister .button:hover {
    background: #204059;
}

#DivYubikeyRegister .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #777777;
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

#DivYubikeyRegister .overlay:target {
        visibility: visible;
        opacity: 1;
    }

#DivYubikeyRegister .popup {
    margin: 200px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 400px;
    position: relative;
    transition: all 5s ease-in-out;
}

    #DivYubikeyRegister .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: Tahoma, Arial, sans-serif;
    }

    #DivYubikeyRegister .popup .close {
        position: absolute;
        right: 5px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
    }

        #DivYubikeyRegister .popup .close:hover {
            color: #204059;
        }

    #DivYubikeyRegister .popup .content {
        max-height: 30%;
        overflow: auto;
    }

#DivYubikeyRegister .modal-header {
    padding: 0px 14px 0 16px;
    background-color: #ab5656;
    color: white;
    width: 565px;
    position: absolute;
    height: 18%;
}

#DivYubikeyRegister .modal-body p {
    font-weight: 500;
}

#DivYubikeyRegister .modal-body {
    padding: 61px 16px 13px 0px;
    background-color: #5d5d5d;
    color: white;
    width: 436px;
    text-align: center;
}

/* Styles for Yubikey Login */

#DivYubikeyLogin {
    display: none;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    #DivYubikeyLogin h1 {
        text-align: center;
        font-family: Tahoma, Arial, sans-serif;
        color: #06D85F;
        margin: 80px 0;
    }

    #DivYubikeyLogin .box {
        width: 40%;
        margin: 0 auto;
        background: rgba(255,255,255,0.2);
        padding: 35px;
        border: 2px solid #fff;
        border-radius: 20px/50px;
        background-clip: padding-box;
        text-align: center;
    }

    #DivYubikeyLogin .button {
        font-size: 1em;
        padding: 10px;
        color: #FFF;
        border: 2px solid;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease-out;
        background: #777777;
        width: 100% !important;
    }

.tfclsyubikeyLogin {
    display: none;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    /* background-color: #000000; */
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(35 35 35 / 80%);
}

    #DivYubikeyLogin .overlay {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #777777;
        transition: opacity 500ms;
        visibility: hidden;
        opacity: 0;
    }

        #DivYubikeyLogin .overlay:target {
            visibility: visible;
            opacity: 1;
        }

    #DivYubikeyLogin .popup {
        margin: 200px auto;
        background: #fff;
        border-radius: 5px;
        width: 400px;
        position: relative;
        transition: all 5s ease-in-out;
    }

        #DivYubikeyLogin .popup h2 {
            margin-top: 0;
            font-family: Tahoma, Arial, sans-serif;
        }

        #DivYubikeyLogin .popup .close {
            position: absolute;
            right: 5px;
            transition: all 200ms;
            font-size: 30px;
            font-weight: bold;
            text-decoration: none;
        }

            #DivYubikeyLogin .popup .close:hover {
                color: #204059;
            }

        #DivYubikeyLogin .popup .content {
            max-height: 30%;
            overflow: auto;
        }

    #DivYubikeyLogin .modal-header {
        padding: 0px 14px 0 16px;
        background-color: #ab5656;
        color: white;
        width: 565px;
        position: absolute;
        height: 18%;
    }

    #DivYubikeyLogin .modal-body p {
        font-weight: 500;
    }

    #DivYubikeyLogin .modal-body {
        padding: 61px 16px 13px 0px;
        background-color: #5d5d5d;
        color: white;
        width: 565px;
        text-align: center;
    }
