@import url('https://fonts.cdnfonts.com/css/gotham');
@import url('https://static2.sharepointonline.com/files/fabric/office-ui-fabric-js/1.4.0/css/fabric.min.css');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
    /* FONTS */
    --font-family-normal: 'Gotham', sans-serif;
    --font-family-black: 'Gotham Black', sans-serif;
    --font-family-light: 'Gotham Light', sans-serif;
    --font-family-thin: 'Gotham Thin', sans-serif;
    --font-family-xlight: 'Gotham XLight', sans-serif;
    --font-family-italic: 'Gotham Book', sans-serif;
    --font-family-ultra: 'Gotham Ultra', sans-serif;
    /* COLORS */
    --color-body: #4444440D;
    --color-primary: #444444;
    --color-primary-dark: #232222;
    --color-primary-focus: #8b8b8b;
    --color-primary-houv: #44444480;
    --color-secondary: #ea2419;
    --color-secondary-light: #ee5048;
    --color-secondary-houv: #e6e6e6;
    --color-white: #fff;
    --color-black: #000;
    --color-link: #2f5fef;
    --color-export: #1D6F42;
    --color-export-houv: #389361;
}

/** ----------
    Typografy
* ----------*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-normal),"Segoe UI Light","Helvetica Neue",Helvetica,Arial,sans-serif;
    color: var(--color-primary);
    letter-spacing: 0px;
}

h1 {
    font-size: 26px;
    font-weight: bold;
}

h2 {
    font-size: 22px;
    font-weight: bold;
}

h3 {
    font-size: 18px;
    font-weight: bold;
}

h4 {
    font-size: 14px;
    font-weight: bold;
}

h5 {
    font-size: 12px;
    font-weight: bold;
}

h6 {
    font-size: 9px;
    font-weight: bold;
}

.bold {
    font-family: var(--font-family-black);
}

.italic {
    font-family: var(--font-family-italic);
}

body {
    font-family: var(--font-family-normal),"Segoe UI Light","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-style: normal;
    font-weight: normal;
    text-align: left;
    overflow-x: hidden;
    background-color: var(--color-body);
    padding-top: 68px;
    font-size: 14px;
}

.subtitle {
    font-family: var(--font-family-normal);
    font-style: normal;
    font-weight: normal;
    text-align: left;
}

span {
    font-family: var(--font-family-normal);
    font-style: normal;
    text-align: left;
    word-break: break-word;
}

p {
    font-family: var(--font-family-normal);
    font-style: normal;
    font-weight: normal;
    text-align: left;
}

.description {
    font-family: var(--font-family-normal);
    font-style: normal;
    font-weight: normal;
    text-align: left;
}

.caption {
    font-family: var(--font-family-normal);
    font-style: normal;
    font-weight: normal;
    text-align: left;
}

.tab-column label {
    font-size: 13px;
    color: #666;
}

.tab-column .form-control {
    height: 30px;
}

.tab-column span {
    font-size: 13px;
}

.web-chat-header {
    font-family: var(--font-family-normal);
    font-style: normal;
    font-weight: normal;
    height: 50px;
    width: 100%;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: rgb(207 217 212) !important;
}

.container {
}

.container-page {
    padding-left: 8%;
    padding-right: 5%;
    width: auto;
}

.display-none {
    display: none;
}

/** ----------
    LINK
* ----------*/
a {
    font-family: var(--font-family-normal);
    font-size: 13px;
    font-style: normal;
    text-align: left;
    color: var(--color-primary);
    font-weight: normal;
    outline: none;
    text-decoration: none;
}

    a:hover {
        outline: none;
        text-decoration: none;
    }

    a:focus {
        outline: none;
        text-decoration: none;
    }

    a:active {
        outline: none;
        text-decoration: none;
    }

        a:active:focus {
            outline: none;
            text-decoration: none;
        }

    a[disabled], a[disabled]:hover, a[disabled]:focus, a[disabled]:active {
        border-color: transparent;
        cursor: not-allowed;
        outline: none;
        text-decoration: none;
    }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    background-color: #999;
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    padding: none;
    border: 2px solid rgba(0,0,0,.15);
}

/** ----------
    BUTTON
* ----------*/
.btn {
    font-family: var(--font-family-normal);
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
}

.btn-disable {
    color: #757575 !important;
    background-color: #d0d0d0 !important;
    border-color: #d0d0d0 !important;
}

    .btn-disable:hover {
        color: #757575;
        background-color: #d0d0d0;
        border-color: #d0d0d0;
    }

    .btn-disable:focus {
        color: #757575;
        background-color: #d0d0d0;
        border-color: #d0d0d0;
    }

    .btn-disable:active:focus, .btn-disable:active:hover {
        color: #757575;
        background-color: #d0d0d0;
        border-color: #d0d0d0;
    }

.btn-primary {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary-light);
}

    .btn-primary:hover {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-white);
    }

    .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-white);
    }

    .btn-primary:focus {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-white);
        outline: none;
        outline-offset: none;
    }

    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-white);
        outline: none;
        outline-offset: none;
    }

.btn-default {
    color: var(--color-primary);
    background-color: var(--color-white);
    border-color: var(--color-primary);
}

    .btn-default:hover {
        color: var(--color-primary);
        border-color: #ccc;
        background-color: #fffefe;
    }

    .btn-default:focus {
        color: var(--color-primary);
        border-color: var(--color-primary);
        background-color: #fffefe;
    }

    .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
        color: var(--color-primary);
        border-color: #ccc;
        background-color: #fffefe;
    }

        .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
            color: var(--color-primary);
        }

.btn-export {
    color: var(--color-white);
    background-color: var(--color-export);
    border-color: var(--color-export);
}

    .btn-export:hover {
        color: var(--color-white);
        border-color: var(--color-export-houv);
        background-color: var(--color-export-houv);
    }

    .btn-export:focus {
        color: var(--color-white);
        border-color: var(--color-export-houv);
        background-color: var(--color-export-houv);
        outline: none;
        outline-offset: none !impotant;
    }

.btnpageticket {
    float: right;
    margin-top: 40px;
    margin-bottom: 5px;
    margin-left: 15px;
    display: flex;
    justify-content: flex-end;
}

.btn-page-ticket {
    color: var(--color-secondary);
    background-color: transparent;
    border-color: var(--color-secondary);
    font-weight: 500;
}

    .btn-page-ticket:hover {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-secondary-light);
    }

    .btn-page-ticket:focus {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-secondary-light);
        outline: none;
        outline-offset: none !impotant;
    }

    .btn-page-ticket:active {
        color: var(--color-white);
        background-color: var(--color-secondary);
        border-color: var(--color-secondary-light);
        outline: none;
        outline-offset: none !impotant;
    }

.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: transparent;
    outline: transparent;
    outline-offset: -2px;
}

/** ----------
    HEADER
* ----------*/
.breadcrumb {
    background-color: transparent;
}

.homelink img {
    height: 30px;
    margin-bottom: -5px;
    max-width: 160px;
}

.search-absolute {
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 25px;
}

.search-desk {
    position: relative;
    margin: auto;
    margin-top: 16px;
}

.search-input {
    background-color: transparent;
    color: var(--color-white);
    border: none !important;
    height: 35px;
}

    .search-input::placeholder {
        /* Chrome, Firefox, Opera, Safari 10.1+ */
        color: var(--color-white);
        opacity: 1;
        /* Firefox */
    }

    .search-input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: var(--color-white);
    }

    .search-input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: var(--color-white);
    }

.search-group {
    background-color: transparent;
    border-left: none;
}

#new-search {
    border: 1px solid #949494;
    width: 350px;
}

    #new-search .btn-default {
        border: none !important;
        color: white;
        height: 35px;
    }

.search-button {
    background-color: transparent;
    border-left: none;
    color: var(--color-white);
    font-size: 16px;
}

.navbar-header {
    float: left;
    z-index: 2;
    position: relative;
}

.nav-main {
    margin-right: 20px;
    padding-top: 8px;
}

.navbar-static-top.navbar .menu-bar > .navbar-nav > li > a {
    font-family: var(--font-family-normal);
    font-style: normal;
    font-weight: normal;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    padding: 15px;
}

    .navbar-static-top.navbar .menu-bar > .navbar-nav > li > a:hover {
        background-color: var(--color-primary-houv);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: var(--color-white);
    }

    .navbar-static-top.navbar .menu-bar > .navbar-nav > li > a:focus {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

.navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
    outline: transparent;
    outline-color: rgb(255, 255, 255);
    outline-style: none;
    outline-width: 1px;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    padding: 3px 20px;
    border-right: 0;
    border-left: 0;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    padding: auto;
}

.navbar-inverse .navbar-nav .open .dropdown-menu {
    background-color: var(--color-primary);
    padding: 0;
}

.navbar {
    background-color: var(--color-primary) !important;
    max-height: 75px;
}

.navbar-inverse .navbar-toggle .collapsed {
    background-color: var(--color-primary);
}

.navbar-toggle .sr-only {
    position: inherit;
    float: initial;
    color: var(--color-white);
}

.navbar-inverse .navbar-toggle {
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 15px;
    padding-left: 47px;
    padding-right: 10px;
    margin-right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

    .navbar-inverse .navbar-toggle:hover {
        color: var(--color-white);
        background-color: var(--color-primary);
        ;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .navbar-inverse .navbar-toggle:focus {
        color: var(--color-white);
        background-color: var(--color-primary);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 1px;
    border-radius: 1px;
    margin-top: -17.5px;
    margin-left: -30px;
}

.navbar-collapse.in {
    background-color: var(--color-primary);
}

.navbar-inverse .navbar-nav > li > a:hover {
    color: var(--color-white) !important;
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    outline: none;
    text-decoration: none;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.5);
    outline: none;
    text-decoration: none;
}

.username {
    font-weight: 500;
    padding-right: 10px;
}

#md-logo {
    margin-top: -15px;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #ccc;
    white-space: nowrap;
    margin-left: 0 !important;
    border: 1px solid transparent;
    border-right: 0;
    border-left: 0;
}

/** ----------
    LOGIN PAGE
* ----------*/
.signinpage {
    /* padding: 0.5rem 1rem; */
    line-height: 1.5;
    border-radius: 50px;
    display: block;
    /* height: 50px; */
    /* margin-bottom: 30px; */
    font-weight: bold;
    float: none !important;
}

.login-heading-section {
    line-height: inherit;
    margin-top: 0;
    margin-bottom: 21px;
    color: #333;
    font-weight: bold;
    padding-bottom: 21px;
    text-align: center;
    border-bottom: transparent;
}

#local-login-heading .xrm-attribute-value {
    font-size: 36px;
    font-weight: bold;
}

#content-container.signinpage #content .nav.nav-tabs {
    display: none !important;
}

/* Sign In form */
#content-container.signinpage .page-content.row .row {
    background: transparent;
    margin-top: 10px;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

    #content-container.signinpage .page-content.row .row .col-sm-4 {
        width: 50% !important;
    }

.quickform body {
    padding-top: 10px;
}

.quickform #content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    text-align: left;
    margin-left: auto;
    justify-content: left;
    display: inline-block;
    margin-top: -40px;
    margin-left: 2px;
}

    .quickform #content .tab-column .form-control {
        height: auto;
    }

    .quickform #content .tab-column label {
        color: #444444;
        opacity: 0.5;
        font-weight: 400;
    }

[data-name="General_section_8"] textarea#ap_description {
    height: auto !important;
    margin-bottom: 0 !important;
    max-height: 100px;
}

#content {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 85vh;
}

    #content .page-content span {
        /*white-space: nowrap;*/
    }

.signinpage label.control-label.required:after, .alf-password label.control-label.required:after {
    content: '* ';
    color: #a94442;
    white-space: nowrap;
    margin-left: 5px;
}

.signinpage label.control-label.required:before, .alf-password label.control-label.required:before {
    content: '';
}

@media (min-width: 992px) {
    #content-container.signinpage .page-content.row .row {
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    #content-container.signinpage .page-content {
        flex-direction: column-reverse;
        padding-right: 20px;
    }

        #content-container.signinpage .page-content.row .row {
            background: transparent;
            -ms-flex: 0 0 40%;
            flex: 0 0 40%;
            display: flex;
            justify-content: center;
        }
}

#content-container.signinpage .page-content.row .row .col-md-6 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100% !important;
    width: 350px !important;
}

    #content-container.signinpage .page-content.row .row .col-md-6:first-child {
        margin-bottom: 40px;
    }

    #content-container.signinpage .page-content.row .row .col-md-6 .form-group .label, #content-container.signinpage .page-content.row .row .col-md-6 .form-group .col-sm-8 {
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        max-width: 100%;
        margin-left: auto;
    }

    #content-container.signinpage .page-content.row .row .col-md-6 .form-group .form-control {
        padding: 1em;
    }

    #content-container.signinpage .page-content.row .row .col-md-6 .form-group label.control-label, .alf-password label {
        text-align: left;
        padding-top: 0px;
        font-size: 18px;
        font-weight: bold;
        color: var(--color-primary);
    }

    #content-container.signinpage .page-content.row .row .col-md-6 .form-group input.form-control {
        float: left;
        height: 45px;
        width: 325px;
        margin-top: 2px;
        margin-bottom: 5px;
        border: 1px solid #ccc;
    }

.alf-password input.form-control {
    float: left;
    height: 45px;
    margin-top: 2px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
}

.alf-password .col-sm-offset-2 {
    margin-left: 0;
}

#content-container.signinpage .page-content #submit-signin-local {
    padding: 0.5rem 1rem;
    line-height: 1.5;
    display: block;
    width: 325px;
    height: 45px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 15px;
}

.alf-password button {
    padding: 0.5rem 1rem;
    line-height: 1.5;
    display: block;
    height: 45px;
    width: 150px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 15px;
}

#content-container.signinpage .page-content.row .row .col-md-6 form fieldset {
    position: relative;
}

/*#content-container.signinpage .page-content.row .row .col-md-6 button.btn[name='provider'] {
    margin: 5px auto!important;
    width: 100%;
    padding: 1rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
    flex: 0 0 auto;
}*/

#content-container.signinpage .page-content.row .row .col-md-6 button.btn[name='provider'] {
    padding: 0.5rem 1rem;
    line-height: 1.5;
    display: block;
    width: 325px;
    height: 45px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 15px;
    border-color: #979797;
    color: var(--color-primary);
    background-color: transparent;
    margin-top: -181px !important;
}

    #content-container.signinpage .page-content.row .row .col-md-6 button.btn[name='provider']:hover {
        box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    }

#content-container.signinpage .page-content.row .row .col-md-6 .form-horizontal .login-heading-section {
    color: #fff;
}

#content-container.signinpage .page-content.row .row .col-md-6 button.btn[title*="Skill-interne"] {
    border-color: transparent;
    background-color: transparent;
    background: tranparent;
    color: #333;
    position: absolute;
    bottom: -64px;
    left: 0;
}

/* Redeem Invotation Code Page */
#content-container.signinpage.redeem {
    z-index: 1;
}

    #content-container.signinpage.redeem #content .page-content form {
        background: #ffffff;
        border-radius: .25rem !important;
        margin-top: 100px;
        margin-bottom: 100px;
        padding-left: 2.14rem !important;
        padding-right: 2.14rem !important;
        padding-top: 2.85rem !important;
        padding-bottom: 2.85rem !important;
        flex-direction: column;
        justify-content: space-between;
    }

@media (min-width: 992px) {
    #content-container.signinpage.redeem #content .page-content form {
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }
}

#content-container.signinpage.redeem #content .page-content form legend span {
    padding: 0px 10px;
}

input#InvitationCode, label[for*="InvitationCode"] {
    width: 100%;
    word-break: normal;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
}

#content-container.signinpage.redeem .col-sm-offset-2.col-sm-10 .checkbox {
    display: none;
}

button#submit-redeem-invitation {
    margin: 5px auto !important;
    width: 100%;
    padding: 1rem 1rem;
    line-height: 1.5;
    border-radius: .3rem;
    font-weight: 600;
}

    button#submit-redeem-invitation:hover {
        color: #fff;
        background-color: #aa182c;
        border-color: #aa182c;
    }

/* Register */
#ContentContainer_MainContent_PageCopy_PageCopy {
    margin: 0px;
}

#Register {
    width: 100%;
}

    /*
#Register #ContentContainer_MainContent_MainContent_SecureRegister .alert{
    display:none;
}
*/
    #Register #ContentContainer_MainContent_MainContent_SecureRegister .row {
        margin: 0 auto;
        margin-bottom: 50px;
    }

        #Register #ContentContainer_MainContent_MainContent_SecureRegister .row .col-md-6 button.btn[title*="Skill-interne"] {
            display: none;
        }

#local-login-heading h1 {
    font-size: 36px;
    font-weight: bold;
    width: 325px;
}

.forgot-password-heading {
    font-family: "Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif !important;
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    color: #444;
    border: 0;
    border-bottom: 0;
    margin-top: 0;
    font-size: 36px;
    font-weight: bold
}

#content-container.signinpage .btn-default {
    padding: 0.5rem 1rem;
    line-height: 1.5;
    display: block;
    width: 325px;
    margin-bottom: 25px;
    margin-top: 97px;
}

#content-container.signinpage .checkbox {
    margin-top: -15px;
    margin-bottom: 25px;
}

#btn-cadastro-home {
    margin-top: 45px;
}

.btn-senha-home {
    color: #fff;
    margin-top: -15px;
    padding: 6px 0px;
    position: absolute;
}

    .btn-senha-home:hover {
        color: #f7d9c1;
    }

.display-none {
    display: none;
}

.display-block {
    display: block;
}

.invisivel {
    visibility: hidden;
}

.visivel {
    visibility: visible;
}

#local-login-heading {
    line-height: 35px;
    font-size: 35px;
    margin-bottom: 30px;
    padding-bottom: 3px;
}

#local-login-heading-img {
    background-image: url(~/img-md-login-icone.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 50px;
    float: right;
}

.forgot-password-heading:focus-visible {
    outline: none;
}

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: var(--color-white) !important;
    color: fieldtext !important;
}

/** ----------
    ALERTS
* ----------*/
.alert-danger {
    background-color: #f9f1f1;
    border-color: #ebccd1;
}

/** ----------
    HEADER - Logged
* ----------*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.dropdown-initials {
}

/** ----------
    ICONS
* ----------*/
#myModal2 .fa {
    font-size: 22px;
    padding-left: 6px;
    top: 4px;
}

/** ----------
    FOOTER
* ----------*/
footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

    footer .footer-bottom {
        background-color: var(--color-primary);
        color: var(--color-white);
    }

.footer-height {
    margin-top: 120px;
}

.container-height {
    min-height: 800px;
}

.footer-bottom {
    padding: 25px 0;
}

/** ----------
    LOADING - Logged
* ----------*/
#wrapper {
    transition: all 0.4s ease 0s;
}

.box-loading {
    position: fixed;
    width: 170px;
    height: 170px;
    margin: 0 auto;
    margin-right: auto;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 9999998;
    color: var(--color-white);
}

.display-loading.open {
    border: 0 solid transparent;
    border-top-color: transparent;
    border-top-style: solid;
    border-top-width: 0px;
    border-radius: 50%;
    border-top: 0 solid #036e34;
    width: 170px;
    height: 170px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: 0 auto;
    position: relative;
}

.box-loading > div {
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    margin-top: 31px;
    font-size: 20px;
    font-weight: 700;
}

.box-loading i {
    display: block;
    font-size: 32px;
    margin-bottom: 19px;
}

#esconder {
    position: fixed;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999997;
    opacity: 0.8;
    -moz-opacity: 0.65;
    filter: alpha(opacity=65);
    background: rgba(78, 99, 87, 0.9);
    background-repeat: no-repeat;
}

/** ----------
    FORMS
* ----------*/
.form-control:focus {
    border-color: var(--color-primary-focus);
    outline: 0;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px var(--color-primary-focus);
}

/** ----------
    MODAL
* ----------*/
.notify-modal {
    display: block;
    /*! position: relative;
    z-index: 1055;
    left: 0px;
    top: 9%;*/
    z-index: 9;
    position: absolute;
}

.notify-modal-dialog-open {
    position: fixed;
    margin: auto;
    width: 230px;
    height: 100%;
    font-weight: 600;
    word-break: break-word;
    font-size: 13px;
}

.notify-modal-dialog {
    position: fixed;
    margin: auto;
    /*! width: 215px;*/
    height: 100%;
    font-weight: 600;
    width: 60px;
    word-break: break-word;
    font-size: 13px;
}

.modal-dialog-2 {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    margin-bottom: 10%;
}

.modal-body-2 {
    width: 100%;
    overflow: auto;
    height: 500px;
}

.modal-text {
    margin-left: 35.25pt
}

.modal-list {
    padding-left: 25pt;
    margin-left: 60pt
}

.notify-modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0px;
    border: 1px solid #cfcfcf;
    box-shadow: none;
    opacity: 1;
}

.modal-menu-linkname-on {
    display: inline-block;
    font-family: var(--font-family-normal),"Segoe UI Light","Helvetica Neue",Helvetica,Arial,sans-serif;
    color: var(--color-primary);
    letter-spacing: 0px;
    font-size: 16px;
    font-weight: normal;
    padding-left: 5px;
    vertical-align: text-bottom;
}

#notify-modal-body li a:hover > .modal-menu-linkname-on {
    color: var(--color-secondary);
}

.modal-menu-linkname-on:hover {
    color: var(--color-secondary);
}

.active-menu-icon-on > .modal-menu-linkname-on {
    font-weight: bold;
}

.modal-menu-linkname-off {
    display: none;
}

.menulateral .ms-Icon--CheckboxComposite {
    font-size: 17px !important;
}

.menulateral .ms-Icon--Home {
    font-size: 21px !important;
}

.notify-modal-header {
    width: 100%;
}

.notify-title {
    text-align: center;
}

.notify-email {
    text-align: center;
    margin-top: 10px;
    font-weight: normal;
}

.linha-separador {
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
    margin-top: 60px;
}

.section-landing-home {
    background: url("img-md-home.png") no-repeat center;
    background-size: cover;
    height: 280px;
    margin-bottom: 30px;
}

.table > thead > tr {
    background-color: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
}

    .table > thead > tr > th a[role="button"] {
        color: var(--color-primary);
        font-weight: bold;
        text-decoration: none;
    }

#notify-modal-body ul {
    list-style-type: none;
}

#notify-modal-body li {
    padding-top: 15px;
    color: var(--color-primary-dark);
    padding-bottom: 25px;
}

#myModal2 #notify-modal-body li a {
    margin-left: -1px;
    position: absolute;
}

#notify-modal-body li a:hover {
    color: var(--color-secondary);
}

#notify-modal-body li a:focus {
    color: var(--color-secondary);
}

.active-menu-on {
    background: var(--color-secondary);
    margin-left: -15px;
    width: 5px;
    height: 50px;
    position: fixed;
    margin-top: -10px;
}

.active-menu-icon-on {
    color: var(--color-secondary);
}

a:hover, a:focus {
    color: var(--color-primary);
    text-decoration: none;
}

.menulateral {
    margin-left: -40px;
}

    .menulateral .ms-Icon {
        font-size: 20px;
        text-align: center;
        padding: 5px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
    }

.icone-notify-modal {
    content: " ";
    font-size: 15px;
    padding-right: 5px;
    font-weight: bold;
}

.notify-modal-seta {
    margin-bottom: 20px;
    float: left;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

#new-search .btn-default:hover {
    color: white;
    background: #f00;
}

.form-control {
    font-size: 13px;
    box-shadow: none;
}

input.form-control {
    font-size: 13px;
    box-shadow: none;
    border: 1px solid rgba(68, 68, 68, 0.2);
}

.cke_chrome {
    border: 1px solid rgba(68, 68, 68, 0.2);
}

    .cke_chrome:focus {
    }

/** ----------
    LookUP
* ----------*/
#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] #filterDropdownId {
    display: none;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] th {
    display: none;
}

data-attribute="fullname" #ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] tbody > td {
    display: none;
}

#ap_ticket_ownerid_lookupmodal .table > thead > tr > th, #ap_ticket_ownerid_lookupmodal .table > thead > tr > td, #ap_ticket_ownerid_lookupmodal .table > tbody > tr > th, #ap_ticket_ownerid_lookupmodal .table > tbody > tr > td, #ap_ticket_ownerid_lookupmodal .table > tfoot > tr > th, #ap_ticket_ownerid_lookupmodal .table > tfoot > tr > td {
    border: none;
    font-size: 13px;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [aria-readonly="true"] {
    display: none;
}

    #ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [aria-readonly="true"] th [aria-label="Full Name"] {
        display: block;
    }

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [data-th="Full Name"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [data-th="Select"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [data-th="Selecionar"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [data-th="Seleccionar"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [data-th="AuswÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤hlen"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [data-attribute="fullname"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [data-attribute="emailaddress1"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] [aria-label="VollstÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤ndiger Name"] {
    display: inline-block;
}

#ap_ticket_ownerid_lookupmodal [data-lookup-datafieldname="ap_ticket_ownerid"] .remove-value {
    display: none;
}

#related .entity-grid .message {
    margin: 0;
}

/** ----------
    ALERT and LISTGROUP
* ----------*/
.alert-info {
    background-color: #f9f1f1 !important;
    border-color: #ebccd1 !important;
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary-light);
}

.alert-warning {
    background-color: transparent;
    border-color: transparent;
    color: #666;
}

/** ----------
    PAGINATION
* ----------*/
.view-pagination {
    text-align: right;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover {
    background-color: var(--color-primary) !important;
    border-radius: 15%;
}

.pagination > li > a, .pagination > li > span {
    width: auto;
    height: 35px;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #777;
    background-color: transparent;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
    border-color: transparent;
    border: solid 1px;
    background-color: var(--color-primary) !important;
    border-radius: 15%;
}

/** ----------
    SEARCH
* ----------*/
.section-landing-search {
    display: none;
}

.facet-list-group .facet-list-group-item:hover {
    background-color: var(--color-body);
}

.search-results .summary, .search-results h2 {
    margin-bottom: 20px;
    word-wrap: break-word;
    font-size: 25px;
    font-weight: 500;
}

.search-results .page-header:focus-visible {
    outline: none;
}

:focus-visible {
    outline: none !important;
}

.list-group-item[title="Profile"] {
    display: none;
}

.profile-info img {
    width: auto;
}

.handlebars-search-container .search-results a {
    color: var(--color-link) !important;
    white-space: inherit;
    text-decoration: underline;
}

/** ----------
    Dashboard
* ----------*/
.alfa-dashboard iframe {
    border: 0;
}

.powerbi {
    height: 100%;
}

.displayAreaContainer.droppableElement.ui-droppable {
    height: 100vh;
}

.explorationNavigationContent {
    display: none;
}

.explorationContainer .exploreCanvas {
    bottom: 0px;
}

.page-dashboard {
    height: 225vh;
}

.home-dashboard {
    height: 300px;
    max-height: 300px;
}

iframe.quickform {
    height: 765px !important;
}
/** ----------
    FAQ
* ----------*/
.margintop-zero {
    margin-top: 0px;
}

.faq-wrapper {
    display: flex;
    padding-top: 15px;
}

.faq-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 270px;
}

    .faq-menu li {
        cursor: pointer;
        padding: 7px;
        padding-left: 0;
        margin: 5px;
        margin-left: 0;
    }

.faq-content {
    flex: 1;
    padding: 10px;
    padding-left: 0px;
}

.faq-summary:before {
    content: "\276F";
    padding-right: 10px;
    font-weight: 100;
    color: var(--color-primary);
    font-size: 11px;
}

.faq-summary.active:before {
    content: "\2335";
    padding-right: 10px;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 13px;
}

.faq-summary.active {
    background-color: #e3e3e3;
}

.faq-content-item {
    padding-left: 50px;
    display: none;
}

    .faq-content-item.active {
        display: block;
    }

    .faq-content-item b {
        font-size: 18px;
        color: var(--color-primary);
    }
/** ----------
    MEDIA
* ----------*/
@media (max-width: 4000px) {
    .home-dashboard {
        height: 560px;
        max-height: 600px;
    }

    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 560px;
        max-height: 560px;
    }

    .status-width {
        width: auto;
        text-align: right;
    }

    .id-width {
        width: 200px;
        padding-left: 8px;
    }

    .modal-approvals {
        right: 0;
        /* padding-right: 0%; */
        position: absolute;
        max-width: 26%;
        padding-top: 60px;
    }
}

@media (max-width: 2600px) {
    .home-dashboard {
        height: 560px;
        max-height: 600px;
    }

    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 560px;
        max-height: 560px;
    }

    .status-width {
        width: 180px;
        text-align: right;
        max-width: 205px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .id-width {
        width: 200px;
        padding-left: 8px;
    }
}

@media (max-width: 1980px) {
    .home-dashboard {
        height: 420px;
        max-height: 420px;
    }

    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 410px;
        max-height: 420px;
    }
}

@media (max-width: 1340px) {
    .page-dashboard {
        height: 145vh;
    }
}

/** ----------
    Custom dashboard
* ----------*/
@media (max-width: 1850px) {
    .status-width {
        width: 180px;
        text-align: right;
    }

    .id-width {
        width: 130px;
        padding-left: 8px;
    }
}

@media (max-width: 1800px) {
    .approvals-hours {
        overflow: hidden;
    }

    .home-dashboard {
        height: 420px;
        max-height: 420px;
    }

    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 390px;
        max-height: 420px;
    }
}

@media (max-width: 1680px) {
    .home-dashboard {
        height: 420px;
        max-height: 420px;
    }

    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 360px;
        max-height: 420px;
    }

    .status-width {
        width: 157px;
        text-align: right;
        max-width: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 1520px) {
    .status-width {
        width: 110px;
        text-align: left;
    }

    .id-width {
        width: 124px;
        padding-left: 8px;
    }
}

@media (max-width: 1440px) {
    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 330px;
        max-height: 330px;
    }

    .home-dashboard {
        height: 360px;
        max-height: 360px;
    }
}

@media (max-width: 1280px) {
    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 290px;
        max-height: 330px;
    }

    .home-dashboard {
        height: 360px;
        max-height: 360px;
    }
}

@media (max-width: 1200px) {
    .search-absolute {
        position: relative;
    }

    .search-desk {
        position: relative;
        width: 80%;
        margin: auto;
        margin-top: 16px;
    }

    .navbar-header {
        float: none;
        z-index: 2;
        position: relative;
    }

    .page-dashboard {
        height: 125vh;
    }

    .home-dashboard {
        height: 300px;
        max-height: 420px;
    }

    #approvals-pending .notify-modal-content {
        max-width: 80%;
        height: 250px;
        max-height: 420px;
    }
}

@media (max-width: 1180px) {
    .modal-approvals {
        right: 0;
        /* padding-right: 0%; */
        position: relative;
        max-width: 100%;
        padding-top: 60px;
    }
}

@media (min-width: 992px) {
    #content-container .row .col-md-6 {
        width: 100% !important;
    }
}

@media (max-width: 992px) {
    .container-page {
        padding-left: 12%;
    }

    .ticket-list .table-fluid td::before {
        color: transparent;
    }

    .btnpageticket {
        float: none;
        margin-top: 10px;
        margin-left: 0px;
    }

    .page-dashboard {
        height: 105vh;
    }

    .home-dashboard {
        height: 300px;
        max-height: 420px;
    }

    #approvals-pending .notify-modal-content {
        height: 600px;
        max-height: 600px;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .modal-approvals {
        position: relative;
        padding-top: 0px;
        max-width: 300px;
        padding-bottom: 60px;
    }
}

@media (max-width: 766px) {
    body {
        padding-top: 59px;
    }

    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
        word-break: break-word;
    }

    .container-page {
        padding-left: 20%;
    }

    .table-fluid td::before {
        content: attr(data-th);
        font-weight: 700;
        display: inline-block;
        width: 15rem;
        margin-left: 0rem;
        float: left;
        padding-right: 1rem;
        word-break: break-all;
        padding-left: 1rem !important;
    }

    .ticket-list .table-fluid td::before {
        color: var(--color-primary);
    }

    html[dir="ltr"] .table-fluid td {
        padding-left: 0rem !important;
    }

    html[dir="ltr"] .mobile-view-grid {
        display: none;
    }

    .navbar {
        max-height: none;
    }

    .page-dashboard {
        height: 85vh;
    }

    .faq-wrapper {
        display: block;
    }

    .faq-content-item {
        padding-left: 0;
    }

    #tagspageticket .select2-container {
        margin-bottom: 60px;
    }
}

@media (max-width: 566px) {
    .container-page {
        padding-left: 25%;
    }

    .homelink img {
        padding: 2px;
    }

    .home-dashboard {
        height: 15vh;
    }
}

@media (max-width: 460px) {
    #new-search {
        border: 1px solid #949494;
        width: 245px;
    }

    .home-dashboard {
        height: 15vh;
    }
}

@media (max-width: 320px) {
    .checkbox-main label {
        cursor: pointer;
        font-size: 0.8rem;
        height: auto !important;
        width: max-content !important;
        padding-left: 7px;
        font-weight: 500;
    }
}

@media (max-height: 2560px) {
    .ps-container {
        height: calc(800px);
    }
}

@media (max-height: 2000px) {
    .ps-container {
        height: calc(90vh - 172px - 135px);
    }
}
