@font-face {
    font-family: 'segoeUI';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/segoeUI/segoeui.ttf") format("truetype");
}

@font-face {
    font-family: 'segoeUILight';
    src: url("../fonts/segoeUI/segoeuil.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'segoeUIBold';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/segoeUI/segoeuib.ttf") format("truetype");
}

@font-face {
    font-family: 'segoeUISemiBold';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/segoeUI/seguisb.ttf") format("truetype");
}

body {
    font-family: 'segoeUI', "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    background-color: var(--secondary-background-color);
    color: var(--secondary-text-color);
}

#alerts.alert-container {
    position: fixed;
    z-index: 9999;
    width: 100%;
}

#alerts .alert.alert-danger{
    z-index: 1111;
}

.navbar-inverse.navbar {
    min-height: 60px;
    border: none !important;
    border-radius: 0 !important;
    z-index: 3;
    background-color: var(--primary-background-color);
    margin-bottom: 0;
    padding: 0;
}

.navbar .navbar-toggler{
    background: var(--secondary-background-color);
}

.navbar-inverse .container-fluid {
    width: 100%;
    top: 0px;
    z-index: 99999999999999;
    padding-left: 0px;
    padding-right: 5%;
}

.navbar-inverse .navbar-brand {
    padding: 5px 0 !important;
}

.navbar-inverse ul.navbar-nav>li>a {
    font-size: 16px;
    padding: 20px 15px;
    color: #fff;
}

.navbar-inverse ul.navbar-nav li.active>a {
    background:  --primary-button-color;
}

.navbar-brand img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 100%;
    padding: 8px;
    margin: 0px 40px 0px 40px;
}

.navbar ul.navbar-nav li.navbar-menu-item.active>a {
    background: var(--primary-color);
}

.navbar ul.navbar-nav li.navbar-menu-item a {
    padding: 10px 10px;
    text-align: center;
    font-size: 12px;
    width: 70px;
    color: var(--primary-text-color);
    display: block;
    text-decoration: none;
}

.navbar ul.navbar-nav li.navbar-menu-item.experiencetab a {
    width: 83px;
}

.navbar-inverse .navbar-nav .navbar-menu-item>a:hover {
    background-color: var(--primary-background-hover-color)
}

#myNavbar ul li a img {
    height: 20px;
}
.accountDropDownContainer{
    position: relative;
}

.accountDropDown {
    padding: 8px 0px 8px 0px;
    display: flex;
    border: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
}

.accountDropDown .profileTitle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: sub;
}

.accountDropDown .profileTitle {
    font-size: 20px;
    background-color: #ffffff;
    width: 40px;
    text-align: center;
    margin: 2px;
    height: 40px;
}

.accountDropDown .header-profile-titel{
    padding: 4px 0px;
}

.accountDropDown .profileTitle.profileNameLogo {
    font-size: 1.2rem;
    padding: 0px;
}

.accountDropDown div,
.accountDropDown div>p {
    display: inline;
    color: var(--primary-button-color);
    font-weight: 900;
    padding: 5px;
}

.accountDropDown div.profileName{
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accountDropDown div.profileName p{
    color:var(--primary-text-color)
}

.accountDropDown .profileTitle .profileNameLogo {
    padding: 0;
    font-size: 1.4rem;
}

.accountDropDown div.profileName>p {
    color: var(--primary-text-color);
}

#orgSelect {
    background-color: var(--primary-background-color);
    color: var(--primary-text-color);
    border: none;
    padding-left: 2px;
    padding-right: 0px;
    height: 30px;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hide,
.hidden {
    display: none !important;
}

.profileDropDown {
    min-width: 150px;
    height: auto;
    right: 4%;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    color: var(--primary-text-color);
}

.tenant-list.dropdown-menu .tenantName {
    width: 85%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    color: var(--secondary-text-color);
    font-size: 14px;
}

.tenant-list .each-tenant.selected span,
.tenant-list .each-tenant:hover span {
    color: white;
}

.small-loader-container {
    top: 40%;
    right: 37%;
    /* height: 7px; */
    position: absolute;
    width: 40px;
}

.small-loader {
    height: 100%;
    aspect-ratio: 4;
    --_g: no-repeat radial-gradient(farthest-side, #000 90%, #0000);
    background:
        var(--_g) left,
        var(--_g) right;
    background-size: 25% 100%;
    display: grid;
}

.small-loader:before,
.small-loader:after {
    content: "";
    height: inherit;
    aspect-ratio: 1;
    grid-area: 1/1;
    margin: auto;
    border-radius: 50%;
    transform-origin: -100% 50%;
    background: #000;
    animation: l49 1s infinite linear;
}

.small-loader:after {
    transform-origin: 200% 50%;
    --s: -1;
    animation-delay: -.5s;
}

@keyframes l49 {

    58%,
    100% {
        transform: rotate(calc(var(--s, 1)*1turn))
    }
}

/* tenant dropdown */


.profileDropDown .tenant-list {
    list-style: none;
    margin: 0;
    padding: 0px;
    position: absolute;
    background: var(--secondary-background-color);
    left: -138px;
    top: 0px;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: -7px 4px 12px rgba(0, 0, 0, .175);
    width: 100%;
    min-height: 55px;
    display: block;
    margin-top: 0px;
    border-radius: 3px;
    padding: 0px 0px 3px 1px;
}

.profileDropDown .dropdown-loader {
    width: 50px;
    height: 11px;
    position: absolute;
    left: 45px;
    top: 17px;
}

.profileDropDown .tenant-list .each-tenant {
    display: block;
    padding: 3px 10px;
    margin-top: 3px;
}

.profileDropDown .tenant-list .each-tenant.selected {
    background-color: var(--primary-color);
    background-image: none;
    color: var(--primary-text-color);
}

ul.dropdown-menu.pull-right:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 9px 6px;
    border-color: transparent transparent #a29696 transparent;
    position: absolute;
    top: -9px;
    left: 72px;
}

ul.dropdown-menu.pull-right:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 8px 5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -8px;
    left: 74px;
}

ul.dropdown-menu.pull-right:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -8px;
    left: 124px;
}

ul.dropdown-menu.pull-right:before,
ul.dropdown-menu.pull-right:after {
    left: 86px;
}
.accountDropDownContainer ul.dropdown-menu.pull-right:before,
.accountDropDownContainer ul.dropdown-menu.pull-right:after {
    left: 124px;
}


ul.dropdown-menu.pull-right.addProjectDropdown:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 9px 6px;
    border-color: transparent transparent #a29696 transparent;
    position: absolute;
    top: -9px;
    left: 127px;
}

ul.dropdown-menu.pull-right.addProjectDropdown:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 8px 5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -8px;
    left: 128px;
}

ul.dropdown-menu li a:hover,
div.dropdown-menu li a:hover {
    background-color: var(--primary-color);
    background-image: none;
    color: var(--primary-text-color);
}

#myNavbar .profileDropDown.userDropdown .dropdown-item span{
    font-size: 1rem;
}

#myNavbar .profileDropDown.userDropdown .dropdown-item span.fa-sign-out {
    padding-left: 4px;
}

#myNavbar .profileDropDown.userDropdown .dropdown-item {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    /* color: #333; */
    white-space: nowrap;
}

#myNavbar .profileDropDown.userDropdown {
    padding: 2px 0px;
    background-color: var(--secondary-background-color);
    z-index: 5;
    position: absolute;
    /* top: 100%; */
    left: auto;
    right: -16px;
    border-radius: 0;
    height: auto;   
    min-width: auto;
    width: 110px;
    text-align: center;
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar-inverse .navbar-nav>.hoverColour>a:hover {
    background-color: var(--primary-background-hover-color);
}

.navbar.navbar-toggler {
    background-color: var(--secondary-text-color);
}

.hidden {
    display: none !important;
}

.loading_screen {
    position: fixed;
    z-index: 9999;
    background: #FFFFFF90;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}

.form-group {
    margin-bottom: 15px;
}

.m-b-5 {
    margin-bottom: 5px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.panel-body-scroll {
    max-height: 200px;
    overflow-y: auto;
}

h5 {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

.form-control,
.form-select {
    border-radius: 0px
}

.modal-content {
    border-radius: 0px;
}

button {
    border-radius: 0px;
}

a {
    color: var(--secondary-text-color);
    text-decoration: none;
}

.browse-file input[type=file] {
    height: 0;
    padding: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    bottom: 0;
}


.progress-outer {
    margin: 10px 0;
    width: 100%;
}

.progress {
    margin-bottom: 0px !important;
    display: none;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.btn-close {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--primary-button-color);
    color: var(--secondary-background-color);
    opacity: 1;
    padding: 8px 10px 8px;
    z-index: 2;
    border-radius: 0px;
}

.align-center {
    text-align: center !important;
}

.modal-dialog .btnHeightWidth {
    padding: 4px;
    height: fit-content;
    width: 120px;
}

.modal-dialog .btnAlignNoYes {
    padding: 3px;
    height: fit-content;
    width: 120px;
}

.btn {
    border-radius: 0;
    border: 0;
    background-color: var(--primary-button-color);
    color: var(--primary-text-color);
    font-size: 1rem;
    border: 1px solid transparent;
}

.btn:hover {
    background-color: var(--primary-button-hover-color);
    color: var(--primary-text-color);
    border: 1px solid transparent;
}

.btn:active,
.btn:active:focus,
.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
    background-color: var(--primary-button-active-color) !important;
    color: var(--primary-text-color) !important;
    box-shadow: none !important;
}

.btn-close:active,
.btn-close:active:focus,
.btn-close:not(:disabled):not(.disabled):active,
.btn-close:not(:disabled):not(.disabled).active {
    background-color: var(--primary-button-active-color) !important;
    color: var(--primary-text-color) !important;
    box-shadow: none !important;
}

.btn.disabled,.btn[disabled="disabled"]{
    cursor: not-allowed;
    filter: alpha(opacity = 65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
    background: var(--primary-button-color);
}

div:has(> .btn.disabled){
    cursor: not-allowed;
}


.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.validate_build {
    display: inline-block;
    padding: 5px 10px;
    float: right;
}

span.error {
    color: var(--failure-color);
}

p {
    margin: 0 0 10px;
}
 
.modal-content {
    padding: 16px 40px;
}
 
.confirm-delete {
    text-align: center;
}

.pop-small .close {
    position: absolute;
    right: 0;
    top: 0px;
    background: var(--primary-button-color);
    color: var(--primary-text-color);
    opacity: 1;
    padding: 0px 5px 11px 6px;
    z-index: 2;
    font-size: 1.3rem;
}

h4{
    font-size: 1.3rem;
}

.accordion-button{
    background: var(--secondary-background-color);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed){
    background: var(--secondary-background-color);
}
.accordion-button:focus{
    box-shadow: none;
}

/* .alert-success{
    position: fixed;
    border-color: #d6e9c6;
    z-index: 9999;
    background-color: #dff0d8;
    color: #3c763d;
}
.alert-danger{
    position: fixed;
    z-index: 9999;
}
   */
.training-module-filter {
    padding-top: 20px;
    height: fit-content;
}
@media (max-width: 1300px) {
    .navbar-inverse .container-fluid {
        padding-right: 3%;
    }

    .navbar-brand img {
        margin: 0px 0px 0px 24px;
    }

    .navbar-nav .portal-menu {
        margin-right: 30px;
    }
}