/* roboto-300 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: local('Roboto Light'), local('Roboto-Light'),
    url('../fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/roboto-v20-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'),
    url('../fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/roboto-v20-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: local('Roboto Medium'), local('Roboto-Medium'),
    url('../fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/roboto-v20-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local('Roboto Bold'), local('Roboto-Bold'),
    url('../fonts/roboto-v20-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/roboto-v20-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* IE - REMOVE CLEAR AND REVEAL */
::-ms-clear {
    display: none;
}
::-ms-reveal {
    display: none;
}

body {
    font-family: Roboto,Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,sans-serif;
    background-color: #F6F6F6;
    font-size:1rem;
}

/* general style (may move to another CSS) */
/*input[type=text], input[type=password],select {*/
/*    height:2.6rem;*/
/*}*/

[disabled] {
    cursor: not-allowed;
}

label.disabled.required {
    font-weight: normal;
}
label.disabled.required:before {
    color: #f9837f;
}

.dropdown-toggle[aria-expanded="true"]:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.dropdown-toggle:after {
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-layout {
    -moz-flex: 0 0 98%;
    -ms-flex: 0 0 98%;
    flex: 0 0 98%;
    max-width: 98%;
}

ul.dashed-list {
    list-style-type: none;
    margin: 0;
    padding: 0 1rem 0 0;
}
ul.dashed-list > li {
    text-indent: -5px;
}
ul.dashed-list > li:before {
    content: "-";
    text-indent: -5px;
}

/* color */
.text-blue {
    color:#0076B6;
}

/* body wrapper load */
body div.wrapper {
    display:none;
}
.buttons button.btn, button[type=submit], button[type=button], .buttons a.btn {
    padding: 5px 10px;
    margin-right: 10px;
    font-size: 16px;
    font-weight: 500;
}
.buttons button.btn, .buttons a.btn {
    width: 7.5rem;
    height: 2.5rem;
}

.buttons button.btn.btn-wide, .buttons a.btn.btn-wide, .swal2-actions button.btn.btn-wide {
    width: auto;
    min-width: 9.375rem;
}

.button button.btn i {
    vertical-align: middle;
    margin-top: -5px;
}
label {
    margin-bottom: 0.2rem;
}
textarea {
    resize: none;
}

h5.title {
    font-size:1rem;
}

/* Foundation carryover */
/* To minimize style and code change we'll keep hide */
.hide {
    display: none;
}

/* BOOTSTRAP OVERRIDE */
a {
    color:#72A1F8;
}
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6{}

.content {
    padding:1rem;
}

.navbar {
    box-shadow: 1px 1px 1px 0 rgba(40, 40, 40, 0.41);
}
/*dropdown-menu*/
.dropdown-menu.show, .dropdown.show {
    z-index: 1021;
}
.list-group-flush .list-group-item:last-child{
    margin-bottom: 0;
    border-bottom: 0;
}

a:hover {
    font-weight: 500;
    text-decoration: none;
}

.fade.in {
    opacity: 1;
}

/*
    In Bootstrap `:disabled` is defined after `:hover` and therefore controls the styling of the buttons. The filters
    need to be combined to ensure that hover of the buttons' disabled states look right. We're using -outline- because
    while it is possible that a btn-danger might want to have a different hover font color, it is extremely unlikely
    that an outline, which natively fills for a hover state, will want anything but white for a filled state.
 */
.btn[class*=-outline-]:disabled:hover,
.btn[class*=-outline-].disabled:hover{
    color: white;
}

.btn[class*=-danger]:hover {
    background-color: #D84D3B;
    border-color: #D84D3B;
}
.btn[class*=-danger] {
    border-color: #D84D3B;
}
.btn[class*=-success]:hover {
    background-color: #8BC639;
    border-color: #8BC639;
    color:#FFFFFF;
}
.btn[class*=-success] {
    border-color: #8BC639;
}
.btn[class*=-primary] {
    border-color: #72A1F8;
    color:#72A1F8;
}
.btn.btn-primary {
    background-color: #72A1F8;
    color: #FFFFFF;
}
.btn[class*=-primary]:hover {
    background-color: #72A1F8;
    border-color: #72A1F8;
    color:#FFFFFF;
}
.btn[class*=-info]:hover {
    background-color:#5b7dff;
    border-color:#5b7dff;
    color:#FFFFFF;
}
.akkadianblue {
    color:#2F73BC;
}
.akkadiangreen {
    color: #45C259;
}
.akkadiannavy {
    color: #204C81;
}
.akkadianyellow {
    color: #EED100;
}
.akkadianorange {
    color: #FB4D00;
}
.akkadianred {
    color: #E00018;
}
.akkadiangray {
    color: #414042;
}
.main-blue {
    color: #0076B6;
}
.info-blue {
    color: #72A1F8;
}
.success-green {
    color: #8BC639;
}
.error-red {
    color:#D84D3B;
}
.warning-yellow {
    color: #EEBA41;
}
.black {
    color: #282828 !important;
}
.default-color {
    color:inherit;
}

.roboto-light {
    font-family: Roboto, Arial, Verdana, Helvetica, sans-serif;
    font-weight:300 !important;
}

.roboto-medium {
    font-family: Roboto, Arial, Verdana, Helvetica, sans-serif;
    font-weight: 500 !important;
}

.roboto-bold {
    font-family: Roboto, Arial, Verdana, Helvetica, sans-serif;
    font-weight:700 !important;
}

.akkadian-blue-gradient, .akkadian-blue-gradient .sidebar-item a.sidebar-link {
    background-color: #204C81;
    font-weight: normal;
    color: #e9ecef;
}

.akkadian-blue-gradient .sidebar-item.outer-menu.active > a.sidebar-link {
    background-color: #00274C;
    font-weight: normal;
    color: white;
}

.akkadian-blue-gradient .sidebar-item:not(.active) > a.sidebar-link:hover {
    background-color: #0076B6;
}

/* Adding body to give this rule more specificity than the font setting above */
body .akkadian-blue-gradient {
    background-color: #204C81;
    font-weight: 300;
    color: #e9ecef;
}

.col-form-select2 {
    padding-top:4px;
}

/* MAIN TAB */
.tab-vertical .tab-content {
    box-shadow: initial;
}

.tab-vertical .tab-pane {
    min-height: 800px;
}

.tab-vertical .tab-pane h3 {
    text-align: center;
    padding-bottom: 40px;
}

.tab-vertical .tab-pane h4 {
    margin-bottom: 1rem;
}

.tab-vertical .nav-item {
    margin-right:-1px;
}
.tab-vertical .nav-tabs .nav-link.active {
    border:1px rgb(229,233,242) solid;
    border-right: 0;
}
.tab-vertical .tab-content {
    border: 1px solid rgb(229,233,242);
}

.right-tab.tab .tab-content {
    padding:0;
}

.right-tab.tab .tab-pane {
    height: 30rem;
    overflow-y: auto;
}

.right-tab.tab .nav-item {
    z-index: 1050;
}

.right-tab.tab .nav-tabs .nav-link {
    border:1px rgb(229,233,242) solid;
    border-bottom: 0;
}

.right-tab.tab .draggable {
    cursor: grab;
}

/* ---------- */

/* datatables override */
/*.dataTables_length select {*/
/*padding-top:.26rem;*/
/*}*/

/* NAVIGATION BAR */
.nav-help {
    font-size: 1.3em !important;
    margin-top:9px;
}

#navbar-search button {
    background-color: #0076B6;
}

nav h1.breadcrumbs {
    color: #272727;
    font-size:1rem;
}

.hamburger, .hamburger:after, .hamburger:before {
    height: 2px;
}

#userDropdown:hover {
    font-weight: normal;
}


/* sidebar */
ul.sidebar-dropdown li.sidebar-item a {
    padding-top:.5rem;
    padding-bottom:.5rem;
}
.sidebar-dropdown .sidebar-link.active {
    font-weight: normal;
    color: #e9ecef;
    background:#263441;
}
.sidebar-dropdown .sidebar-item.active .sidebar-link {
    background-color: #F6F6F6;
    background-image:none;
    color:#204C81;
    -webkit-box-shadow: inset 0px 11px 8px -10px #CCC,
    inset 0px -11px 8px -10px #CCC;
    -moz-box-shadow: inset 0px 11px 8px -10px #CCC,
    inset 0px -11px 8px -10px #CCC;
    box-shadow: inset 0px 11px 8px -10px #CCC,
    inset 0px -11px 8px -10px #CCC;
    text-shadow: 0.5px 0;
    font-weight: 400;
}
#selected-service-group {
    margin-left:2.1em;
    text-shadow: 0.5px 0;
    font-weight: 400;
}
/* sidebar help */
.sidebar-help {
    right:0;
    bottom:0;
    min-width: 200px;
    max-width: 200px;
    min-height: 100vh;
    display:fixed;
    transition: margin .4s ease-in-out;
    position: fixed;
    z-index: 2;
}
.sidebar-help .sidebar-content {
    height: 100vh;
    position: fixed;
    top:0;
    z-index: 2;
    width:200px;
    padding:20px;
    background-color: #ffffff;
}
.sidebar-help.toggled {
    display:none;
}


/* form error */
.jquery-validation-error {
    margin-bottom:0;
}
/* bootstrap card */
.card {
    margin: 0 auto 1rem;
}
.card .card-header .card-title {
    font-weight: 300;
    font-size:20px;
}


.card.card-stage .card-body {
    min-height: 600px;
}

.card-shadow {
    box-shadow: 0 0 6px 0 rgba(86, 86, 86, 0.15);
}

.tab-vertical .tab-content {
    box-shadow: 0 0 6px 0 rgba(40, 40, 40, 0.19), 0 0 6px 0 rgba(114, 161, 248, 0.16);
}

.tab.tab-vertical .nav-link.active {
    box-shadow: -5px 0 5px 0 rgba(40, 40, 40, 0.19), -2px 0 6px 0 rgba(114, 161, 248, 0.16);
}

/* validation error */
/*label[id*=-error] {*/
/*margin-left:35%;*/
/*}*/
.select2-selection.is-invalid {
    border-color:#f44455;
}

/*
    Select2 fix issue where opening dropdown extends the width of the page
    It's possible updating Select2 may resolve the issue (current ver. 4.0.8)
*/
.select2-container.select2-container--bootstrap4.select2-container--open {
    width: auto !important;
}

/* GRID OVERRIDE */
/*.col-form-label {*/
/*    padding-top: calc(.5rem + 1px);*/
/*}*/

/* MODAL */
.modal .modal-title {
    width: 100%;
    text-align: center;
    font-weight:300 !important;
}

/* FONT AWESOME */
.fa-1dot1x {
    font-size:1.1rem;
}

/* added on 2020-02-18 (PMR-400) Left side navigation icons need to be white HEX #FFFFFF */
.sidebar-item .fa-1dot1x {
    opacity: 1;
}
.sidebar-item:not(.active) .sidebar-link:hover {
    /*opacity: .3;*/
    font-weight: lighter !important;    /* make the main section link hover effect similar to the section links */
}

/* JQUERY VALIDATION */
label.error {
    color:#f44455;
}

.form-control.is-invalid {
    background-image: none;
}

/* SWEETALERT2 OVERRIDE */
/*.swal2-icon.swal2-warning {*/
/*    color:#D84D3B !important;*/
/*    border-color: #D84D3B !important;*/
/*}*/

.swal2-title {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 500 !important;
}

.swal2-content {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 300 !important;
}

/* LOGO */
.sidebar-brand {
    padding: 1.15rem 0rem;
}

.sidebar-brand img {
    max-width: 240px;
    max-height: 80px;
    display: block;
    margin-right:auto;
    margin-left:auto;
}

/*left navigation name*/
.sidebar-brand .roboto-bold {
    padding:0rem 1.5rem;
}

form[name=action-search] .input-group-text {
    background-color: #FFFFFF;
}
form[name=action-search] #term {
    border-left: 0;
}

/* ACTION SEARCH */
.search-clear i {
    position: absolute;
    right: 80px;
    top: 13px;
    z-index:4;
}

/*large font-awesome images*/
.fa-big {
    color: rgba(32, 76, 129, .1);
    font-size: 20rem;
    padding: 5rem;
    vertical-align: middle;
}



/* CURSOR */
.cursor-help {
    cursor: help;
}

/*TOOLTIP*/
body .tooltip .tooltip-inner {
    background: rgb(248, 250, 255) 0% 0% no-repeat padding-box;
    border: 1px solid #72A1F8;
    filter: none !important;
    opacity: 1 !important;
    color: #565656;
    font-family: "Roboto";
    white-space:pre-wrap;
}
body .tooltip.bs-tooltip-right .arrow:before {
    color: rgba(0,0,0,1);
}

body .tooltip.bs-tooltip-top .arrow:before {
    border-right-color: rgba(0,0,0,0);
}

body .tooltip {
    filter: none !important;
    opacity: 1 !important;
    padding: 6px;
}

.tooltip .arrow:before {
    border-right-color: #72A1F8;
}

/* added on 2019-11-12 (PMR-146): Edit Templates - Devices */
#anchor-list-mac-type-specific {
    list-style: none;
    padding: 0;
}
/* overwrites classic.css */
/*#content-form>div:last-child:after, #content-form form>div:last-child:after {*/
#field-list-container:after {
    height: 100px !important;
}

/* Progress bar override */
.progress.progress-usage {
    height:1.5rem;
    border:1px solid;
    background-color: #FFFFFF;
}
.progress.progress-usage .progress-bar {
    font-size: 0.75rem;
    text-align: left;
    padding-left: 15px;
}
.progress.progress-usage.progress-green  {
    border-color: #8BC639;/*green*/
}
.progress.progress-usage.progress-green .progress-bar  {
    background-color: rgba(139, 198, 57, 0.1);
    color: #8BC639;
}
.progress.progress-usage.progress-high {
    border-color: #D84D3B;/*red*/
}
.progress.progress-usage.progress-high .progress-bar {
    background-color:rgba(216, 77, 59, 0.1);
    color: #D84D3B;
}
.progress.progress-usage.progress-medium {
    border-color:#FF6800;/*orange*/
}
.progress.progress-usage.progress-medium .progress-bar {
    background-color: rgba(255,104,0,0.1);
    color:#FF6800;
}
.progress.progress-usage.progress-light {
    border-color:#EEBA41;/*yellow*/
}
.progress.progress-usage.progress-light .progress-bar {
    background-color:rgba(238, 186, 65, 0.1);
    color:#EEBA41;
}

/* added on 2019-11-20: mac templates styles */
.hide_cbss .row:not(.only_always), .hide_cbss:not(.only_always)  { display:none; }


/**
 * For empty container placeholder. Standard styles
 * @author wpalomino
 * @since 2019-12-27
 */
div.dashed-container {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    opacity: 1;
    border-radius: 6px;
    /*border: 1px dashed #204C81;*/
    box-shadow: 0 0 0 1px #204C81;
    outline: dashed 6px #F6F6F6;
    margin:20px;
}
.fal.akkadiannavy {

    /* modified on 2020-02-05 (PMR-351): Select a Service Group - It’s a bit empty here States - Multiple pages */
    /*color: rgba(32, 76, 129, .1);
    font-size: 20rem;*/
    color: #204C81;
    opacity: 0.1;
    font-size: 9.375rem;
    margin-right: 1.56rem;

}
.target-container-msg p {
    /*font-size: 22px;*/    /* make it standard */
}
/* added on 2020-02-05 (PMR-351): Select a Service Group - It’s a bit empty here States - Multiple pages */
div.empty-container > .row {
    padding-top: 8.125rem;
    /*padding-right: 2rem;*/
}
/*div.dashed-container .select-sg-container .select2-container .select2-selection__rendered>:first-child.select2-search--inline,
div.dashed-container .select-sg-container.select2-container .select2-selection__rendered>:first-child.select2-search--inline .select2-search__field {*/
div.empty-container .select-sg-container .select2-container {
    width: auto !important;
    max-width: 19.5rem !important;
}

/* modified on 2022-04-01 (APM-5688): Add Microsoft 365 User Search Support */
.search__service-group-selector {
    width: 220px;
}
.search__search-type-selector,
.search__app-server-type-selector{
    width: 180px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .search__search-type-selector,
    .search__service-group-selector,
    .search__app-server-type-selector {
        width: 160px;
        font-size: 0.8em;
    }
}

.search__filter-group button {
    background-color: rgba(32, 76, 129, 0.05);
    color: rgba(32, 76, 129, 1);
    border: 2px solid rgba(32, 76, 129, 1);
}

.search__filter-group .btn-group:nth-of-type(even) button {
    border-left-width: 1px;
}

.search__filter-group .btn-group:last-of-type button {
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
}

.search__input {
    border-right: 0;
}

.search__input-group .input-group-append button {
    border-color: rgb(206, 212, 218);
    border-left: 0;
    margin-right: 0;
}

.search__search-type-selector .dropdown-menu,
.search__service-group-selector .dropdown-menu,
.search__app-server-type-selector .dropdown-menu {
    border: 2px solid rgba(32, 76, 129, 1);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.search__search-type-selector .dropdown-item:not(:last-child),
.search__service-group-selector .dropdown-item:not(:last-child),
.search__app-server-type-selector .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}

.tab-pane .dataTables_wrapper{
    padding-top: 2rem;
}

label.fs-10, span.fs-10, p.fs-10, li.fs-10, div.fs-10 {
    font-size: .625rem !important;
}

label.fs-12, span.fs-12, p.fs-12, li.fs-12, div.fs-12  {
    font-size: .75rem !important;
}

label.fs-14, span.fs-14, p.fs-14, li.fs-14, div.fs-14  {
    font-size: .875rem !important;
}

label.fs-18, span.fs-18, p.fs-18, li.fs-18, div.fs-18  {
    font-size: 1.125rem !important;
}

label.fs-22, span.fs-22, p.fs-22, li.fs-22, div.fs-22  {
    font-size: 1.375rem !important;
}

/**
added by wsal Jan 29, 2020 so we can conform to Robbies' design.
https://xd.adobe.com/spec/4016072d-c164-40d2-423e-aebdb590538e-3627/screen/b4e3b1c6-8b8c-4092-9fda-d61076890d6d/Alerts buttons should be 120x40
 */
.swal2-actions button.btn {
    width: 7.5rem;
    height: 2.5rem;
}

.roboto-medium {
    font-weight: 600;
}
/* code moved form view on 2020-02-14 (PMR-397): Add Intermediate Certificate to Chain */
.fancy-file-container .hide-file {
     position: absolute;
     z-index: 1;
     visibility: hidden;
 }
.fancy-file-container .choose-file {
    cursor: pointer;
}
.fancy-file-container .choose-file a {
    font-weight: 300;
}
.fancy-file-container .name-of-file {
    font-weight: 400 !important;

    /* added on  2020-02-28 (PMR-429): Fancy File Input: long name breaks into new line */
    line-height: 200%;
    vertical-align:middle;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.fancy-file-container .fixed-width-100px {
    max-width: 100px !important;
    min-width: 100px !important;
}
.fancy-file-container .choose-file {
    border-radius: 0.2rem;
}
.fancy-file-container .choose-file.row.is-invalid {
    border-color:#f44455 !important;
}


/* added on 2020-02-19 (PMR-202): Drop shadow rules defined - Site-wide) */
.card .card,                /* any card inside another */
.tab-content .card,         /* card inside tab-content */
.card.card-inner-level {    /* specific inner level card */
    box-shadow: none;
}

/* added on 2020-02-21 (PMR-384): No way to delete rows after adding them. Simulates jquery validate focus on error for custom validation */
.form-control.error-focus:focus {
    border-color: #f44455;
    box-shadow: 0 0 0 0.2rem rgba(244,68,85,.25);
    /*background-image: none;*/
    outline: 0 none;
}
table.table-manager td {
    vertical-align: top !important;    /* keep vertical alignment when field errors are displayed */
}

/* added by wpalomino, 2020-03-03 (PMR-440): Secure LDAP configuration changes */
.download-link {
    color: black !important;
    margin-top: .8rem;
    display: inline-block;
    font-weight: lighter;
}
.download-link i {
    color: #72A1F8 !important;
}

/**
 * mimics appstrack/classic.css "#content-form" but without fixed height
 */
.content-form {
    /*height: 542px;*/
    padding-top: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
}

/* added by wpalomino, 2020-003-10 (PMR-461): Fix Job Import (full). */
.card-template-form .card-upload-tpl-errors {
    margin-top: 1.2rem;
}


/* added by wpalomino, // added on 2020-07-08 (96nay8): AD provision - Set User Password. Toggle field show/hide password */
.input-embedded-button-container {
    position: relative;
}
.input-embedded-button-container input {
    padding-right: 2.0rem;
}
.input-embedded-button {
    position: absolute;
    cursor: pointer;
    font-size: 1.2rem;
    right: 0.7rem;
    top: 1.2rem;
}
.input-embedded-button-bt {
    right: 1.3rem;
    top: 0.9rem;
}

/* added on 2020-08-27 (bjg73q): Fix render scripts for templates' complex fields - aPM 5.0. Styles taken from foundation prefix/suffix boxes */
/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    font-size: 0.875rem;
    height: 2.3125rem;
    line-height: 2.3125rem;
}
/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    line-height: 2.125rem;
    border: none;
}
.prefix.button {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    line-height: 2.125rem;
    border: none;
}
.prefix.button.radius {
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-topleft: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.postfix.button.radius {
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-topright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.prefix.button.round {
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-border-radius-bottomleft: 1000px;
    -moz-border-radius-topleft: 1000px;
    -webkit-border-bottom-left-radius: 1000px;
    -webkit-border-top-left-radius: 1000px;
    border-bottom-left-radius: 1000px;
    border-top-left-radius: 1000px;
}
.postfix.button.round {
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-border-radius-bottomright: 1000px;
    -moz-border-radius-topright: 1000px;
    -webkit-border-bottom-right-radius: 1000px;
    -webkit-border-top-right-radius: 1000px;
    border-bottom-right-radius: 1000px;
    border-top-right-radius: 1000px;
}
/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
    background: #f2f2f2;
    border-right: none;
    color: #333333;
    border-color: #cccccc;
}
span.prefix.radius, label.prefix.radius {
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-topleft: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
span.postfix, label.postfix {
    background: #f2f2f2;
    border-left: none;
    color: #333333;
    border-color: #cccccc;
}
span.postfix.radius, label.postfix.radius {
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-topright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

/* added on 2020-08-27 (bjg73q): Fix render scripts for templates' complex fields - aPM 5.0. */
.section-mimic-table {
    border: 1px solid #e5e9f2;
    border-radius: .25rem;
}
.section-mimic-table legend {
    margin: 0;
    padding: 1rem 0 1rem 1.6rem;
    background-color: #F6F6F6;
    color: #495057;
    border-bottom: 1px solid #e5e9f2;
    margin-bottom: 1.5rem;
}
.section-mimic-table .col-lg-6 {
    max-width: 100%;
    flex: 0 0 60%;
}

/* 2020-10-23 (APM-5190): Restore processing dialog for scheduled auto-provision, manual run */
.detailed-process-status {
    border: 0;
    width: 100%;
    min-height: 250px;
}
.template-ss-link-banner {
    background-color: rgba(114, 161, 248, .1);
    margin-left: 0;
    margin-right: 0;
    text-align: center;
}
.template-ss-link-banner a {
    text-decoration: underline;
}

/* added by wpalomino, 2021-02-12 (APM-5364): Add support for spaces in AD DN Prefix field */
.akkadian-text-pre-wrap {
    white-space: pre-wrap;
}

/* added by wpalomino, 2021-04-13 .(APM-5268): Add CUCM LDAP sync function in APM Make a text box look line text */
.render-as-text {
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

/* by wpalomino, 2021-12-02 (APM-5884): Expand support for WebEx provisioning to include calling */
#anchor-list a.nav-link.active,
.tab.tab-vertical .anchor-list .nav-link.active {
    box-shadow: none;
}

.truncated {
    width: inherit;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
.no-bottom-margin {
    margin-bottom: 0 !important;
    border-radius: 0;
}
span#see-more {
    cursor: pointer;
    padding-bottom: 1px;
    border-bottom: 1px solid white !important;
}

.swal-wide{
    width:550px !important;
}

#see-more-status-page, #see-more-status-page:hover{
    color: #2F73BC !important;
    font-size: 16px;
    border-bottom: 1px solid #2F73BC !important;
}


/* added on 2024-05-28 (APM-7204): Auto Offboarding - Convert to Local User setting home cluster in multiple clusters */
label.readonly {
    opacity: 50% !important;
}


/* Gives select2 fields the ability to apply readonly styling and behavior when the attribute is added */
select[readonly].select2-hidden-accessible + .select2-container {
    pointer-events: none;
    touch-action: none;
    cursor: not-allowed;
}
select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
    background: #eee;
    box-shadow: none;
}
select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow, select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
    display: none;
}
