/* fonts and colors */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 100;
    src: url("../fonts/lato/Lato-Light.ttf") format("truetype");
}

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

@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/lato/Lato-Semibold.ttf") format("truetype");
}

@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/lato/Lato-Bold.ttf") format("truetype");
}

body, pre, .tooltip, .popover {
    font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 400;
}

h1 > .public-DraftStyleDefault-block.public-DraftStyleDefault-ltr {
    font-style: normal;
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: 500;
}

h2 > .public-DraftStyleDefault-block.public-DraftStyleDefault-ltr {
    font-style: normal;
    line-height: 2.25rem;
    font-size: 1.75rem;
    font-weight: 300;
}

h3 > .public-DraftStyleDefault-block.public-DraftStyleDefault-ltr {
    font-style: normal;
    line-height: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
}

div > .rdw-unstyled-normal-text {
    font-style: normal;
    line-height: 2rem;
    font-size: 1.25rem;
    font-weight: 300;
}

.public-DraftStyleDefault-ul {
    list-style-type: square;
}

.public-DraftStyleDefault-ol > ::before {
    font-style: normal;
    font-size: 1.25rem;
    font-weight: 300;
}

.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before {
    width: 32px;
    position: unset;
    margin-left: -1rem;
    text-align: left;
}

ul > li > .public-DraftStyleDefault-ltr {
    margin-left: 2rem;
    font-style: normal;
    line-height: 2rem;
    font-size: 1.25rem;
    font-weight: 300;
}

ul > .public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR {
    margin-left: 0.85rem;
}

ol > .public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR {
    margin-left: 1.15rem;
    min-height: 2rem;
    align-items: center;
    display: flex;
}

ol > li > .public-DraftStyleDefault-ltr {
    margin-left: 0.7rem;
    font-style: normal;
    line-height: 2rem;
    font-size: 1.25rem;
    font-weight: 300;
}

.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0 {
    list-style-type: inherit;
}

ol > ::marker {
    font-size: 1.25rem;
}

ul > ::marker {
    font-size: 1rem;
}

b,
strong {
    font-weight: 500;
}

pre {font-size: 1rem;}

.lead, .display-1, .display-2, .display-3, .display-4 {
    font-weight: 100;
}

.font-weight-light {
    font-weight: 100 !important;
}

:root {
  --copper: #aa7f69;
  --copper-80: rgba(170, 127, 105, 0.8);
  --copper-60: rgba(170, 127, 105, 0.6);
  --copper-25: rgba(170, 127, 105, 0.25);
  --white: #ffffff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-5: rgba(255, 255, 255, 0.05);
  --negative: #ec5764;
  --negative-20: rgba(236, 87, 100, 0.2);
  --positive: #2ec57e;
  --black: #000000;
  --black-80: rgba(0, 0, 0, 0.8);
  --black-60: rgba(0, 0, 0, 0.6);
  --black-40: rgba(0, 0, 0, 0.4);
  --black-20: rgba(0, 0, 0, 0.2);
  --black-10: rgba(0, 0, 0, 0.1);
  --black-5: rgba(0, 0, 0, 0.05);
  --black-2: rgba(0, 0, 0, 0.02);
  --font-family-sans-serif: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --scrollbar-size: .375rem;
  --scrollbar-minlength: 1.5rem; /* Minimum length of scrollbar thumb (width of horizontal, height of vertical) */
  --scrollbar-ff-width: thin; /* FF-only accepts auto, thin, none */
  --scrollbar-track-color: transparent;
  --scrollbar-color: rgba(0,0,0,.2);
  --scrollbar-color-hover: rgba(0,0,0,.3);
  --scrollbar-color-active: rgb(0,0,0);
}

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

/* Applying colors, grid and dimensions */

html, body {
    height: 100%;
}

body {
    font-size: 1rem;
    line-height: 1.25;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#app {
    /* height: 100vh doesn't work nice with all possible cases. */
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

#user-info-toggle, #logout-toggle {
    cursor: pointer;
}

#user-info-toggle .user-identity {
    color: var(--black);
}

#user-info .dropdown-item:active {
    color: var(--black);
}

#user-info-toggle::after,
#logout-toggle::after {
    content: none;
}

#user-info-toggle:focus,
#logout-toggle:focus {
    outline: none;
}

#user-info .input-dropdown-hoverable,
#logout .input-dropdown-hoverable {
    background-color: var(--white);
}

#user-info .input-dropdown-hoverable:hover,
#logout .input-dropdown-hoverable:hover {
    background-color: #f8f9fa;
}

.container, .container-fluid {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 4rem;
}

.row {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.navbar {
    border-bottom: solid 1px var(--black-5);
    padding: 1.25rem 1.5rem;
    max-height: 4rem;
}

.navbar-nav {
    max-height: 2.5rem;
}

/*#context-switcher.navbar-nav {*/
    /*overflow: hidden;*/
/*}*/

.context-switcher-nav.navbar-nav {
    text-align: right;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
}

.white-5 {
    background-color: var(--white-5) !important;
}

.white-70 {
    color: var(--white-70) !important;
}

.common-menu-item {
    width: 300px
}

.person-menu-item {
    width: 230px
}

.personal-settings {
    align-self: flex-start;
    margin-top: -1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5 rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
    background-color: var(--black-20);
}

.h3, h3 {
    font-size: 1.5rem;
}

.h4, h4 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
}

a {
    color: var(--copper);
}

a:hover {
    color: var(--copper);
    opacity: 0.8;
    text-decoration: none;
}

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

/* Fields styles */
.form-group {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.mb-2rem{
    margin-bottom: 2rem;
}
/** Label - normal**/
.form-label {
    margin-bottom: 0;
    font-size: 0.625rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black-40);
    transition: color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-label-black {
    margin-bottom: 0;
    font-size: 0.625rem;
    font-weight: normal;
    line-height: 1.6;
    color: var(--black);
    transition: color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.taglist-label {
    margin-bottom: 0;
    font-weight: 500;
}

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

/** Text input - normal **/
.form-control {
    width: 100%;
    height: auto;
    padding: 2px 0 5px 0;
    font-size: 1rem;
    line-height: 1.25;
    color: var(--black);
    background-color: transparent;
    border: none;
    border-bottom: solid 1px var(--black-20);
    border-radius: 0;
}

.form-control::-webkit-input-placeholder {
    color: var(--black-20);
}

.form-control::-moz-placeholder {
    color: var(--black-20);
}

.form-control:-ms-input-placeholder {
    color: var(--black-20);
}

.form-control::-ms-input-placeholder {
    color: var(--black-20);
}

.form-control::placeholder {
    color: var(--black-20);
}

.form-control .placeholder {
    color: var(--black-20);
}

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

/** Text input prepend - normal **/
.input-group-prepend {
    margin-right: 0;
}

.input-group-text {
    padding: 0 0.25rem 0.25rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--black-40);
    background-color: transparent;
    border: none;
    border-bottom: solid 1px var(--black-20);
    border-radius: 0;
    transition: border-color .15s ease-in-out;
}

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

/** Focus states **/
.form-control:focus {
    color: var(--black);
    border-color: var(--black);
    box-shadow: none;
    background-color: transparent;
}

.form-group:focus-within .form-label {
    color: var(--black-80);
}

.form-group:focus-within .input-group-text {
    border-bottom: solid 1px var(--copper);
}

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

/** Invalid states **/
.custom-select.is-invalid, .form-control.is-invalid, .form-group.is-invalid .form-control, .form-group.is-invalid .input-group-text, .was-validated .custom-select:invalid, .was-validated .form-control:invalid, .is-invalid > textarea {
    border-color: var(--negative) !important;
}

.custom-select.is-invalid:focus, .form-control.is-invalid:focus, .form-group.is-invalid .form-control:focus, .was-validated .custom-select:invalid:focus, .was-validated .form-control:invalid:focus, .is-invalid > textarea {
    border-color: var(--negative) !important;
    box-shadow: none;
}

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

/** Error message and alert **/
.invalid-feedback {
    margin-top: 0.25rem;
    font-size: 0.625rem;
    line-height: 1.6;
    text-transform: initial;
    letter-spacing: initial;
    color: var(--negative);
    display: none;
}

.form-group.is-invalid .invalid-feedback {
    display: block;
}

.alert-danger {
    color: var(--negative);
    background-color: transparent;
}

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

/** Disabled and readonly states **/
.form-control:disabled, .form-control[readonly]:not(.focusable), .form-group.disabled .input-group-text, .form-control.disabled {
    background-color: transparent;
    color: var(--black-60);
    border-bottom: solid 1px var(--black-5);
}

/* Reset bootstrap form-control for focusable inputs*/

.form-control.focusable:disabled, .form-control.focusable[readonly] {
    background-color: unset;
    opacity: unset;
}

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

/* Buttons */
.btn {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    text-indent: 2.2px;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
}

.btn-group-sm .btn, .btn-sm {
    padding: 0.5625rem 1rem 0.4375rem;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-indent: 1.5px;
    border-radius: 0;
}

td .btn-group-sm .btn, td .btn-sm {
    padding: 0.25rem 0.325rem 0.125rem;
}

.btn.disabled, .btn:disabled {
    opacity: 0.5;
}

.btn:not(:disabled):not(.disabled):hover {
    opacity: 0.8;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active,
.show > .btn.dropdown-toggle,
.show > .btn-success.dropdown-toggle:focus {
    opacity: 0.9;
}

.btn-success {
    color: var(--white) !important;
    background-color: var(--copper) !important;
    border-color: var(--copper) !important;
}

.btn-primary {
    padding-left: 0 !important;
    padding-right: 0 !important;
    color: var(--copper) !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.btn-secondary {
    padding-left: 0 !important;
    padding-right: 0 !important;
    color: var(--black) !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.btn-danger {
    padding-left: 0 !important;
    padding-right: 0 !important;
    color: var(--negative) !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.btn-secondary-background {
    background-color: var(--black) !important;
}

.black-5 {
    background-color: var(--black-5) !important;
}

.btn.black-5 {
    padding: 1rem 1.5rem !important;
}

.btn-group-sm .btn.black-5, .btn-sm.black-5 {
    padding: 0.5625rem 1rem 0.4375rem !important;
}


/* Toggle component */

.custom-switch {
    padding-top: 5px;
    padding-left: 48px;
    min-height: 30px;
}

.custom-switch .custom-control-label {
    font-size: 16px;
    line-height: 1.25;
}

.custom-switch .custom-control-label::before {
    top: -2px;
    left: -48px;
    width: 40px;
    height: 24px;
    background-color: inherit;
    border-radius: 12px;
    border-color: var(--copper) !important;
}

.custom-switch .custom-control-label::after {
    top: 1px;
    left: -45px;
    width: 18px;
    height: 18px;
    background-color: inherit;
    border: var(--copper) solid 1px;
    border-radius: 9px;
}

.custom-switch .custom-control-input:checked~.custom-control-label::before {
    background-color: inherit;
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    left: -41px;
    border-color: transparent;
    background-color: var(--copper);
}

/* hover */
.custom-switch .custom-control-input:hover:not(:focus):enabled~.custom-control-label::before {
    border-color: var(--copper-80) !important;
}

.custom-switch .custom-control-input:hover:not(:focus):enabled:not(:checked)~.custom-control-label::after {
    border-color: var(--copper-80);
}

.custom-switch .custom-control-input:hover:not(:focus):not(:active):enabled:checked~.custom-control-label::after {
    background-color: var(--copper-80);
}

/* focus */
.custom-switch .custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.custom-switch .custom-control-input.focus-visible-only:focus~.custom-control-label::before {
    box-shadow: 0 0 0 0.2rem var(--copper-25);
}

/* pressed */
.custom-switch .custom-control-input:enabled:active~.custom-control-label::before {
    background-color: inherit;
}

/* disabled */
.custom-switch .custom-control-input:disabled~.custom-control-label {
    color: var(--black-60);
}

.custom-switch .custom-control-input:disabled~.custom-control-label::before {
    opacity: 0.4;
    background-color: inherit;
}

.custom-switch .custom-control-input:disabled~.custom-control-label::after {
    opacity: 0.4;
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: inherit;
}


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

/* ---------- STYLES TO REFINE BELOW ---------- */

.main-menu-search-bar {
    margin-top: 18px;
}

.main-menu-heading {
    display: flex;
    font-weight: 500;
    align-items: center;
}

.main-menu-heading-title {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 2.25rem;
}

.main-menu-heading > button {
    margin-left: auto;
}

.main-menu-link {
    color: var(--black);
}

.main-menu-link:hover {
    color: var(--black);
    text-decoration: none;
}

.accordion-heading {
    display: flex;
    align-items: center;
}

.accordion-heading-title {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.25rem;
    margin-bottom: 0;
}

.accordion-indicator {
    margin-left: auto;
}

.accordion {
    margin-bottom: 3.2625rem;
}

.padding6 {
    padding-left: 6%;
    padding-right: 6%;
}

.accordions {
    margin-top: 1.785rem;
    /* 15.8475rem is total height of other menu blocks */
    height: calc(100% - 15.8475rem);
    overflow: auto;
}

.accordions::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.accordion-items {
    margin-top: 0.875rem;
    margin-bottom: 1.19rem;
}

.accordion-item {
    display: flex;
    height: 2.625rem;
    align-items: center;
}

.accordion-item-text {
    line-height: 1.25rem;
    margin-bottom: 0;
}

.accordion-item:hover {
    background-color: #FAFAFA;
}

.accordion-item:active {
    background-color: #F0F0F0;
}

.accordion-item-current {
    background-color: #F0F0F0;
}

.accordion-item-current:hover {
    background-color: #F0F0F0;
}

.accordion-open-animation {
   animation-name: accordion-open-animation;
   animation-duration: 0.3s;
   animation-fill-mode: forwards;
   transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes accordion-open-animation {
  from {
      max-height: 0vh;
  }
  10% {
      margin-bottom: 1.3rem;
  }
  to {
      max-height: 100vh;
      margin-bottom: 0rem;
  }
}

.accordion-items-open-animation {
    animation-name: accordion-items-open-animation;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes accordion-items-open-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.accordion-close-animation {
   animation-name: accordion-close-animation;
   animation-duration: 0.1s;
   animation-fill-mode: forwards;
   transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes accordion-close-animation {
    from {
        max-height: 100vh;
        margin-bottom: 0rem;
    }
    50% {
        margin-bottom: 0rem;
    }
    to {
        max-height: 0vh;
        margin-bottom: 3.2625rem;
    }
}

.accordion-items-close-animation {
    animation-name: accordion-items-close-animation;
    animation-duration: 0.1s;
    animation-fill-mode: forwards;
    transition-timing-function: cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes accordion-items-close-animation {
  from {
      opacity: 1;
  }
  to {
      opacity: 0;
      visibility: hidden;
  }
}

.accordion-item-blue-circle {
    position: absolute;
    right: 1.65rem;
    height: 0.625rem;
    width: 0.625rem;
    border-radius: 50%;
    background-color: #0C62F3;
}

.accordion-icon {
    background-repeat: no-repeat;
    background-size: contain;
    outline: none;
}

/* The side navigation menu */
.sidenav {
    height: 0; /* 100% Full-height */
    width: 100%; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1040; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-image: linear-gradient(to bottom, #272727, #121212);
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.3s; /* 0.3 second transition effect to slide in the sidenav */
}

.sidenav.invisible {
    transition: 0s;
}

.sidenav *, .sidenav a:hover {
    color: var(--white);
    opacity: 1;
}

.sidenav div.expanded div.menu-arrow {
    transform: rotate(-90deg);
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left 0.5s;
    padding: 20px;
}

.mw-50vw {
    max-width: 50vw;
}

.sidenav .menu-category-name {
    cursor: pointer;
}

.burger-menu-header {
    padding: 1.25rem 1.5rem;
    max-height: 4rem;
    z-index: 1100;
    background-color: #262626;
}

.burger-menu-context {
    max-height: 2.5rem;
    padding: 4px 8px;
}

.top-page {
    top: 100px;
}

div.dataTables_wrapper div.dataTables_length select {
    height: auto;
}

.accordion > .card > .card-body {
    border-top: none;
}

ol.breadcrumb {
    background-color: transparent;
    padding: 0px;
}

.breadcrumb-item a {
    color: var(--black-60);
    font-size: 1rem;
}

.breadcrumb-item a:hover {
    color: var(--black-80);
}

.breadcrumb-item .tooltip {
    color: var(--black);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
    padding: 0;
}

ol.breadcrumb > li.breadcrumb-item {
    padding-left: 0;
}

#data-table_filter {
    display: none;
}

/**
 Bootstrap example style
 */

.form-centered {
    height: 100vh;
    width: 100%;
    align-items: center;
    background-color: var(--white);
}

.form-signin {
    width: 100%;
    max-width: 423px;
    padding: 2rem 1.5rem 2.5rem;
    margin: auto;
    background-color: var(--white);
    box-shadow: none;
}

@media (min-width: 576px) {
    .form-centered {
        height: 100vh;
        align-items: center;
        background-color: var(--white);
        background-image: url("../img/garage.jpg");
        background-size: cover;
    }

    .form-signin {
        box-shadow: 0 0 40px 0 var(--black-20);
        padding: 3.5rem 1.5rem 2.5rem;
    }
}

.form-signin .checkbox {
    font-weight: 400;
}

.form-signin .form-control:focus {
    z-index: 2;
}

.form-signin .logo {
    width: 202px;
    height: 111.7px;
}

.form-signin .or {
    color: var(--black-40)
}

.error-sign {
    background-image: url("../img/kit/error.svg");
    width: 88px;
    height: 88px;
    margin: auto auto 32px;
}

.splash-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.splash-content {
    margin: auto;
    text-align: center;
}

.splash-text {
    margin-bottom: 2rem;
}

@keyframes dropdownAnimation {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dropdown.form-control, .btn-group-toggle.form-control {
    padding: 0;
    width: inherit;
}

.tree-node {
    display: flex;
    padding: 0.25rem 0;
}

.tree-node .btn-group-sm button {
    float: right;
}

.toggler-label {
    cursor: pointer;
}

.toggler.open {
    background-image: url("../img/kit/folder-opened.svg");
}

.tree-toggler {
  background-image: url("../img/kit/table/tree-grid-arrow-all.svg");
  border: none;
  opacity: 1 !important;
  position: relative;
  transform: rotate(-90deg);
  cursor: pointer;
}

.tree-grid-container.expanded .tree-toggler {
    transform: rotate(0deg);
}

.toggle-all {
    background-image: url("../img/kit/table/tree-grid-arrow-all.svg");
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
}

.clear-filter {
    background-image: url("../img/kit/clear.svg");
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
}

.folder-inside {
    padding-left: 0.75rem;
    margin-left: 0.75rem;
    border-left: 1px solid var(--black-20);
}

.tree-node-marker.pointer {
    cursor: pointer;
}

.form-card {
    padding: 2rem;
    background-color: var(--white);
}

.tree-item-form {
    margin: 0.5rem 0rem 1.25rem 0.5rem;
    max-width: 680px;
}

.folder-name {
    margin: 0.125rem 0.5rem 0.125rem 0;
}

.tree-item-code {
    color: var(--black-40);
    margin: 0.125rem 0.5rem 0.125rem 0;
}

.tree-item-name {
    margin: 0.125rem 0.5rem;
}

.tree-item-status {
    color: var(--black-20);
    margin: 0.125rem 0.5rem 0.125rem 0;
}

.tree-item-inactive .tree-item-code {
    color: var(--black-40);
}

.tree-item-inactive .tree-item-name {
    color: var(--black-40);
}


input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    outline: none !important;
    cursor: pointer;
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent !important;
}

.btn-group-toggle.form-control {
    height: inherit;
    border: none;
}

.btn-group-toggle label {
    margin: 0.25rem 1rem 0 0;
    cursor: pointer;
}

.dropdown-superscript {
    text-align: right;
    position: absolute;
    width: 100%;
    transform: translate(-1rem, -1.2rem);
}

.dropdown-menu {
    z-index: 1030;
}

.dropdown-menu-left {
    transform: translateX(-8rem);
}

.dropdown-menu__item {
    cursor: pointer;
}

.dropdown__header {
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--black-40);
    padding: 0.375rem 1rem;
}

.specific-column-filter {
    width: 100%;
    max-width: 180px;
}

/* Classes moved from datatables.css */

div.pagination {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}

div.pagination > ul {
    margin: 0.125rem 0;
    white-space: nowrap;
    justify-content: flex-end;
}

/* End of datatables.css classes */

.font-awesome-icon {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.font-awesome-icon.inactive {
    opacity: 0.3;
}

/* Dropdown */
.dropdown {
    outline: none;
}

.dropdown-container {
    line-height: 0;
}

.dropdown .dropdown-menu {
    box-shadow: 0 2px 50px 0 var(--black-10);
    margin: 0;
    border: none;
    border-radius: 0;
}

.dropdown-menu.wrapper {
    top: -2rem !important;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
}

.dropdown-menu.wrapper .wrapped {
    box-shadow: 0 2px 50px 0 var(--black-10);
    background-color: var(--white);
    padding: 0.5rem 0;
    margin-top: 2rem;
}

.form-group .dropdown .form-control:not(.disabled) {
    cursor: pointer;
}

.dropdown .form-control.disabled {
    cursor: default;
}

.dropdown-toggle-element {
    display: inline-block;
}

.dropdown-item {
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    margin: 0;
    letter-spacing: normal;
    color: var(--black);
    padding: 0.375rem 1rem;
    cursor: pointer;
    word-break: break-word;
    overflow-wrap: break-word;
}

.dropdown-item:active {
    background-color: #F0F0F0;
    outline: none;
}

.no-pointer-events {
    pointer-events: none;
}

.dropdown-item--hovered {
    color: #16181b;
    background-color: var(--black-5);
    text-decoration: none;
}

.dropdown-item--type-reset {
    color: var(--black-40);
}

.symbol {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.icon-button {
    font-size: 0;
    text-indent: 0;
    border: 0;
    padding: 0;
}

.right-0 {
    right: 0;
}
.btn .dropdown-arrow {
    opacity: inherit;
    margin-top: 0.25rem;
    margin-left: 0.125rem;
}

.form-group .dropdown-arrow {
    opacity: 0.4;
    margin: 0.5rem 0;
}

.dropdown-hidden {
    visibility: hidden;
    position: fixed;
    display: block;
}

.dropdown-menu.drop-direction-up {
    bottom: 100%;
    top: auto;
}

/* Paginator */

.arrow.active {
    background-image: url("../img/kit/table/active-arrow.svg");
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
}

.arrow.inactive {
    background-image: url("../img/kit/table/inactive-arrow.svg");
    width: 1.5rem;
    height: 1.5rem;
    cursor: default;
}

.arrow.forward {
    transform: scaleX(-1);
    filter: FlipH;
}

.pages-caption {
    color: var(--black-40);
    font-size: small;
}

.pages-value {
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    width: fit-content;
}

.pagination li.pages-value.active a {
    font-weight: bold;
    color: var(--black);
    cursor: default;
}

/* Grid header */

.common-caption-text {
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--black-40);
}

.filter-value {
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 5rem;
}

.filter-value-container {
    max-height: 1.25rem;
}

.pagination .common-caption-text {
    cursor: default;
}

.no-data {
  color: var(--black-20);
}

th .dropdown .common-caption-text {
    cursor: pointer;
}

a.grid-header-dropdown {
    font-size: 0.75rem;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 1.5px;
    color: var(--copper) !important;
    cursor: pointer;
}

.grid-header-minilabel {
    font-size: 0.625rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: 1.5px;
    color: rgba(0, 0, 0, 0.4);
}

.min-width-12 {
    min-width: 12rem;
}

.min-width-18 {
    min-width: 18rem;
}

.min-width-0 {
    min-width: 0;
}

.dropdown-menu .form-group {
    margin-bottom: 0;
}

.check-control, .check-control label {
    cursor: pointer;
    margin-bottom: 0;
}

.check-control.disabled label {
    opacity: 0.6;
}

input.check-tick:disabled {
    opacity: 0.8;
}

/* column selector */

.check-tick {
    width: 1rem;
    height: 1rem;
}

input.check-tick {
    margin-top: 0.0625rem;
    padding: 0.5rem;
}

.dropdown-menu .check-tick {
    margin: 0.0625rem 0;
}

.check-tick.active {
    background-image: url("../img/kit/check-on.svg");
}

.check-tick.inactive {
    background-image: url("../img/kit/check-off.svg");
}

.selector-text {
    font-size: 1rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--black);
}

.text-disabled {
    color: #888888;
}

.input-dropdown-hoverable {
    padding: 0.375rem 1rem;
    cursor: pointer;
}

.input-dropdown-hoverable:hover {
    background-color: var(--black-5);
}

.table {
    border-collapse: separate;
    border-spacing: 0px;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 1px solid var(--black-20);
}

.table td {
    white-space: nowrap;
}

.table td, .table th {
    padding: 1rem;
    border-top: none;
    border-bottom: 1px solid var(--black-5);
    max-width: 40rem;
}

.clamp-line {
    display: -webkit-box;
    white-space: normal;
    height: 1.25rem;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-line--cell {
    min-width: 128px;
    word-break: break-word;
}

.table th.text-right {
    padding-right: 0;
}

.table th.text-right .icons-align{
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

table th.border-success {
    border-bottom-color: var(--black) !important;
}

.sort-direction {
    height: 1rem;
    padding: 0.5rem;
    margin: auto 0 0.125rem;
}

.table th.text-right .sort-direction.asc {
    transform: scale(-1,1);
}

.table th.text-right .sort-direction.desc {
    transform: scale(-1,-1);
}

/* modal dialog */

.modal-open {
    overflow: visible;
}

.modal-backdrop {
    background-color: var(--white);
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.8;
}

.modal-dialog {
    margin: 1.5rem;


    z-index: 1060;
    overflow-y: initial !important;
}

@media (min-width: 576px) {
    .modal-dialog {
        margin: 1.75rem auto;
    }
}

.modal-content {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: var(--white);
  box-shadow: 0 2px 50px 0 var(--black-5);
}

.modal-body {
  padding-left: 2rem;
  padding-right: 2rem;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  scrollbar-width: var(--scrollbar-ff-width);
}

.modal-header {
  padding: 2rem 2rem 1rem;
  border: none;
  border-radius: none;
}

.modal-title {
  line-height: 1.33;
}

.modal-footer {
  padding: 0 2rem 2rem;
  border: none;
  justify-content: flex-start;
}


/* This class controls what elements have the new fancy scrollbar CSS */
.layout-scrollbar {
  scrollbar-color: var(--scrollbar-color) var(--scrollbar-track-color);
  scrollbar-width: var(--scrollbar-ff-width);
}
.layout-scrollbar::-webkit-scrollbar {
  height: var(--scrollbar-size);
  width: var(--scrollbar-size);

}
.layout-scrollbar::-webkit-scrollbar-track {
  background-color: var(--scrollbar-track-color);

}
.layout-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-color);
  border-radius: 3px;

}
.layout-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-color-hover);

}
.layout-scrollbar::-webkit-scrollbar-thumb:active {
  background-color: var(--scrollbar-color-active);

}
.layout-scrollbar::-webkit-scrollbar-thumb:vertical {
  min-height: var(--scrollbar-minlength);

}
.layout-scrollbar::-webkit-scrollbar-thumb:horizontal {
  min-width: var(--scrollbar-minlength);

}

.close {
    opacity: 1 !important;
}

button.close-black {
    background: url("../img/kit/black-close.svg") transparent;
    width: 0.95rem;
    height: 0.95rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    outline: none;
    border: none;
}

.modal-header .close {
    padding: 0;
    margin: 0;
}

.relation-active-date {
    margin: 0;
    font-size: 0.625rem;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--black-40);
}

.text-black {
    color: var(--black);
}

.text-positive {
    color: var(--positive);
    hyphens: none;
}

.text-neutral {
    color: var(--black-40);
    hyphens: none;
}

.text-negative {
    color: var(--negative);
    hyphens: none;
}

.clear {
    background-image: url("../img/kit/clear.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: transparent;
    outline: none !important;
    position: relative;
    cursor: pointer;
    padding: 0.125rem 0.625rem;
}

.filter-value-container .clear {
    width: 1.25rem;
    height: 1.25rem;
    top: 0.125rem;
}

.filter-input {
    margin-right: -1.25rem;
    padding-top: 0.25rem;
    padding-right: 1.625rem;
    -webkit-hyphens: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-icon {
    background-image: url("../img/kit/search.svg");
    padding: 0.75rem;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(100%);
}

.user-avatar.menu, .logout-icon.menu {
    filter: invert(100%);
}

.context-switcher-nav .dropdown-toggle::after {
    display: none;
}

.context-switcher-nav span.dropdown-item:hover, .context-switcher-nav span.dropdown-item:hover {
    background-color: initial;
    border-bottom-color: var(--black-20);
}

td.tree-grid-toggle {
    width: 2rem;
    cursor: pointer;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
}

.small-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
}

.move-up {
    background-image: url("../img/kit/move-up.svg");
}

.move-down {
    background-image: url("../img/kit/move-down.svg");
}

.add-above {
    background-image: url("../img/kit/add-above.svg");
}

.add-below {
    background-image: url("../img/kit/add-below.svg");
}

.add-inside {
    background-image: url("../img/kit/add-inside.svg");
}

.edit {
    background-image: url("../img/kit/edit.svg");
}

.download {
  background-image: url("../img/kit/download.svg");
}

.clone {
  background-image: url("../img/kit/clone.svg");
}

.copy-to-clipboard {
    background-image: url("../img/kit/copy-to-clipboard.svg");
}

.move-to {
    background-image: url("../img/kit/move-to.svg");
}

.drag-handle {
    width: 20px;
    height: 20px;
    max-height: 20px;
    cursor: default;
    background-image: url("../img/kit/drag-handle.svg");
}

.tree-grid-arrow-collapsed {
  background-image: url("../img/kit/table/tree-grid-arrow.svg");
  transform: rotate(270deg);
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  cursor: pointer;
}

.tree-grid-arrow-expanded {
  background-image: url("../img/kit/table/tree-grid-arrow.svg");
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  cursor: pointer;
}

.tree-grid-arrow-empty {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}

.tree-grid-node-title {
  position: relative;
  top: -0.1875rem;
}

.tree-grid-container table .error-row-parent td:first-child {
    border-left: 0.25rem solid var(--negative);
}

table tbody .error-row {
    background-color: rgba(236, 87, 100, 0.1);
}

.my-account.name {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--black);
}

.version-label{
    height: 20px;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: right;
    color: var(--black-40);
}

/* Tooltip styles */

div.with-tooltip {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

div.with-tooltip span.tooltip {
    position: absolute;
    text-align: left;
    visibility: hidden;
    box-shadow: 0 2px 50px 0 var(--black-10);
    background-color: #ffffff;
    left: 0%;
    transition: opacity 0.3s ease-out, visibility 0.6s linear;
    opacity: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: initial;
}

div.with-tooltip span.tooltip.up, .dropdown .dropdown-menu.drop-up {
    bottom: 100%;
    top: auto;
}

div.with-tooltip span.tooltip.left {
    right: 0;
    left: auto;
}

.dropdown .dropdown-menu.drop-left {
    right: 0;
    left: auto;
}

.with-tooltip.interactive:hover span.tooltip:not(.inactive),
.with-tooltip span.tooltip.active,
.with-tooltip.informational .tooltip-body:hover + span.tooltip:not(.inactive) {
    visibility: visible;
    z-index: 1070;
    opacity: 1;
    color: var(--black-40);
    font-size: initial;
    display: inline-block;
}

.tooltip-body {
    line-height: 0;
}

.with-tooltip span.tooltip {
    min-width: max-content;
}

.with-tooltip span.tooltip div {
    max-height: initial;
}

.opacity-100 {
    opacity: 1 !important;
}

.combined-shape {
    width: 16px;
}

/* Hide/show row in grid */

table > tbody > tr.hidden-row > td div, table > tbody > tr.hidden-row > td {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden;
    display: none;
}

table > tbody > tr > td, table > tbody > tr > td * {
    transition:
            padding-top 0.1s ease-in-out,
            padding-bottom 0.1s ease-in-out,
            margin-top 0.1s ease-in-out,
            margin-bottom 0.1s ease-in-out;
}

/*Grid row hover*/

tr.grid__row:hover {
  background: var(--black-2);
}

.tab {
    font-size: 21px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--copper);
    cursor: pointer;
    font-weight: normal;
    padding: 18px 0;
}

.tab.active {
    color: var(--black);
    cursor: default;
    border-bottom: 2px solid var(--black);
}

.empty-name {
    color: var(--black-20);
}

textarea.form-control {
  border: solid 1px var(--black-20);
  padding: 0.5rem;
}

textarea.form-control:disabled {
    border: solid 1px var(--black-5);
}

.text-monospace {
  font-family: monospace;
}

.grid-actions {
    white-space: nowrap;
    overflow: visible;
    line-height: 0;
}

.grid-actions__item {
    padding: 0 4px 0 4px;
    display: inline-block;
}

.grid-actions .icon {
    cursor: pointer;
}

.tree-grid-toggle div {
    white-space: nowrap;
    overflow: visible;
    max-height: 1rem;
    margin-top: -0.125rem;
}

/* Gantt Chart Styling */

div.gantt {
  font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--black);
}

.gantt {
    min-width: auto;
}

.gchartcontainer {
    display: flex;
}

.gmain {
    width: auto;
}

.gmainleft {
    min-width: 176px;
}

.gmainright {
    border-right: 1px solid var(--black-5);
}

.rhscrpad {
    display: none;
}

.gtasktableh tr,
.gcharttable tr,
.gcharttableh tr,
.gtasktable tr {
    height: 40px !important;
}

.ggroupitem {
    background-color: #ffffff;
    font-weight: bold;
}

.gtaskblue, .gtaskred {
    background: var(--copper);
    height: 18px;
}

.gmajorheading,
.gminorheading,
.gminorheadingwkend,
.gtaskcell,
.gtaskcellwkend {
    border-color: #f2f2f2;
    font-size: 20px;
}

.gtasklist {
    border-color: #f2f2f2;
}

.gtaskheading,
.gname,
.gtaskname,
.gresource,
.gduration,
.gpccomplete,
.gstartdate,
.gplanstartdate,
.gplanenddate,
.gcost,
.genddate {
    border-color: #f2f2f2;
}

.gtasktableh,
.gtasktable {
    border-color: #f2f2f2;
}

.gcharttable {
    border-color: #f2f2f2;
}

.gadditional {
    border-color: #f2f2f2;
}

.gDepFS,
.gDepSS,
.gDepSF,
.gDepFF {
    border-color: var(--black-80);
}

.gDepFSArw,
.gDepSSArw {
    border-left-color: var(--black-80);
}

.gDepFFArw,
.gDepSFArw {
    border-right-color: var(--black-80);
}

.ggroupblack {
    background: var(--black-60);
    margin-top: 7px;
}

.ggroupblackendpointleft, .ggroupblackendpointright {
    border-top-color: var(--black-60);
    opacity: 0.9;
}

.gtaskheading,
.gmajorheading,
.gminorheading {
  font-size: 16px;
}

.gmajorheading,
.gminorheading {
  border-bottom: none;
}

.gtaskcellwkend,
.gminorheadingwkend {
  font-size: 16px;
}

.gtaskname div, .gtaskname {
  font-size: 16px;
}

.gmilecaption,
.ggroupcaption,
.gcaption {
  font-size: 16px;
}

span.gfoldercollapse {
    color: var(--black-40);
    font-size: 16px;
    font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

span.gformlabel:hover, span.gselected {
    background-color: transparent;
    border: #ffffff 1px solid;
}

span.gformlabel:hover {
    opacity: 0.8;
}

span.gselected {
    color: var(--copper);
}

.gitemhighlight td {
    background-color: rgba(0, 0, 0, 0.02);
}

.answer-option-actions {
    width: 9em;
}

.width-all {
    width: 100%;
}

/* Gantt Chart Styling End */

/* Markdown Rendering Styles */

.markdown-page {
    padding: 0 0 4rem;
}

/* Markdown Rendering Styles End */

/* Utils */

.mih-0 {
    min-height: 0px;
}
.noselect {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Utils End */

/* Side Form */
@media (min-width: 768px) {
    .side-form {
        flex: 0 0 375px;
        max-width: 375px;
        border-right: solid 1px rgba(0, 0, 0, 0.05);
        padding-right: 1.5rem;
        padding-top: 1.5rem;
    }

    .side-grid {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding-left: 0px;
        padding-right: 0px;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 375px;
        width: auto;
    }
}
.side-grid__section-title {
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: var(--black);
  padding-left: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.125rem;
}
.side-grid__title {
    font-size: 16px;
    font-family: Lato;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--black);
    padding-left: 1.5rem;
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.side-grid__title.big__font {
    font-size: 21px;
}

.side-grid-anchors {
    font-size: 16px;
    font-family: Lato;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    padding-top: 22px;
    /* 1px for border bottom*/
    padding-bottom: 21px;
    padding-left: 24px;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--copper);
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.side-grid__body {
    padding: 2rem 1.5rem;
    overflow: auto;
    flex-grow: 1;
}

.border-bottom-pale-gray {
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

.side-form {
    overflow: visible;
}
/* Side Form End */

/* Status component */
.status {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}
.status--positive .status__text {
    color: var(--positive);
}

.status--negative .status__text {
    color: var(--negative);
}

.status__text{
    font-size: 1rem;
    color: var(--black-40);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: right;
}
.status__date {
    font-size: 0.625rem;
    text-transform: uppercase;
    color: var(--black-40);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: right;
}

/* Version info component end */

/* Details component */
.details {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.75rem;
    color: var(--black);
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    line-height: 1.33;
}
.details__key {
    color: var(--black-40);
    margin-left: 1.25rem;
}
.details__value {
    margin-left: 0.25rem;
}
/* Details component end */

.error-message {
    font-size: 10px;
    line-height: 1.2;
    color: var(--negative);
}

.dropdown-menu {
    display: none;
    visibility: hidden;
}

.dropdown-menu.show {
    visibility: visible;
}

.sidenav #user-info .user-identity {
    color: var(--white);
}

.sidenav .dropdown-menu {
    background-color: var(--white-5);
}

.sidenav #user-info .dropdown-item,
.sidenav #logout .dropdown-item {
    background-color: transparent;
}

.dropdown .d-flex.align-items-center {
    padding: 2px 0;
}

.sidenav .dropdown.show .d-flex.align-items-center {
    background-color: var(--black-20);
}

.sidenav .dropdown-item {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--white);
}

.sidenav #user-info .dropdown-item:hover,
.sidenav #logout .dropdown-item:hover {
    background: var(--black-20);
}

.sidenav #user-info .dropdown-item:active {
    color: var(--white);
}

/* Error-tooltip */

.text-black-12 {
    height: 16px;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--black);
}

.uom-black {
    height: 16px;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--black);
}

.uom-black-40 {
    height: 16px;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--black-40);
}

.page__header {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    border-bottom: solid 1px var(--black-5);
    margin-bottom: 2.25rem;
}

.page__title {
    margin: 0px;
    font-size: 2rem;
    line-height: 1.13;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--black);
}

.menu-search span {
    font-size: 10px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: 1.5px;
    color: var(--white-50);
    margin-bottom: 3px;
}

.menu-search {
    max-width: 370px;
    margin-left: 20px;
}

.menu-search input {
    border: none;
    background: transparent;
}

.menu-search input:focus {
    outline: none;
}

.menu-search .input-block {
    border-bottom: 1px solid var(--white-50);
    padding-bottom: 3px;
}

.menu-items {
    flex-wrap: wrap;
    position: relative;
}

.menu-items .menu-category {
    margin: 0 0 20px 20px;
}

.menu-items .category {
    margin-bottom: 52px;
    overflow: hidden;
}

.menu-items .category.inactive {
    margin: 0;
    width: 0!important;
    transition: all 0s 0.3s;
}

.menu-items .menu-category, .menu-items .menu-item-block {
    height: 60px;
    transition: height 0.4s ease-out, opacity 0.4s ease-out;
    overflow: hidden;
}

.menu-items .menu-item-block.non-visible, .menu-items .menu-category.non-visible {
    height: 200px;
    opacity: 0;
    transition: height 0s, opacity 0s;
}

.menu-items .menu-item .title, .menu .menu-category {
    padding: 9px 20px;
}

.menu-items .menu-item .title {
    opacity: 1;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--white-70);
    transition: opacity 0.3s linear;
}

.menu-items .menu-item .title:hover {
    background: var(--white-5);
    transition: background 0s;
}

.menu-items .menu-item {
    cursor: pointer;
    width: 100%;
}

.menu-items .menu-item.active {
    border-left: 3px solid var(--copper);
}

.menu-items .menu-item.active .title {
    color: var(--white);
}

.menu-category-title {
    opacity: 1;
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.33;
    letter-spacing: 0.5px;
    color: var(--copper);
    transition: all 0.3s linear;
}

.menu-items .menu-category.inactive .menu-category-title,
.menu-items .menu-item-block.inactive .menu-item .title {
    opacity: 0;
    margin: 0;
    transition: all 0.3s linear;
}

.menu-items .menu-item-block.inactive,
.menu-items .menu-category.inactive {
    height: 0;
    margin: 0;
    transition: all 0s 0.3s;
}

/* Learning course enrolment */

.tab-switcher {
    font-size: 1.5rem;
    color: var(--copper);
    line-height: 1.33;
    cursor: pointer;
}

.tab-switcher.active {
    color: var(--black);
    border-bottom: 2px solid var(--black);
}

.tab-switcher-container {
    margin: 0 -1.5rem;
    padding: 0 2rem;
    width: calc(100% + 4rem);
    border-top: 1px solid var(--black-5);
    border-bottom: 1px solid var(--black-5)
}

.learning-courses-cat {
  width: 372px;
  height: 36px;
  font-size: 32px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.13;
  letter-spacing: normal;
  color: var(--black);
}

.full-width-header-container {
    margin: 0 -2rem;
    width: calc(100% + 3.5rem);
    padding: 0 2rem;
    border-bottom: 1px solid var(--black-5);
}

.full-width-sticky-header-container {
    width: calc(100% + 3.5rem);
}

/* Check button */

.error-button-status {
  color: var(--white) !important;
  background-color: var(--negative) !important;
}

.valid-button-status {
  color: var(--white) !important;
  background-color: var(--positive) !important;
}

.border-bottom {
    border-bottom: solid 1px var(--black-5);
}

.mb-6 {
    margin-bottom: 4rem;
}

/* Quiz attempt */

.quiz-answer.selected {
    border: solid 1px var(--copper-60);
}

.quiz-answer {
    border: solid 1px var(--black-5);
}

.quiz-answer p {
    margin-bottom: 0;
}

.answer-option-correct {
    background: rgba(46, 197, 126, 0.1);
}

.answer-option-wrong {
    background: rgba(236, 87, 100, 0.1);
}

/* Quantity field component */
.quantity-field__input::-webkit-outer-spin-button,
.quantity-field__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity-field__input {
    -moz-appearance: textfield;
}
/* Quantity field component end */

/* Warning popup component */

.warning-popup .bang {
    background-color: var(--negative);
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    text-align: center;
    vertical-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: larger;
    flex: 0 0 2rem;
}

.warning-popup {
    background-color: var(--black-20);
    min-width: 15rem;
    position: absolute;
    bottom: 0;
    right: 2rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* show over modal backdrop */
    z-index: 1000000001;
    max-width: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.warning-popup.show {
    opacity: 1;
    bottom: 2rem;
}

/* Warning popup component end */

.container .sticky-header, .container .sticky-header {
    position: sticky;
    z-index: 1020;
    background-color: var(--white);
    top: var(--negative);
}

.button-link {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    color: var(--copper);
}

.entity-tree {
    width: calc(100% - 375px);
}

.entity-tree .drag-handle {
    pointer: "default";
    margin-right: 5px;
}

.country-autocomplete .dropdown-menu div {
    padding: 6px 16px;
}

.country-autocomplete .dropdown-menu div:hover {
    background-color: var(--black-5);
}

.caption-bar {
    margin-bottom: 0;
}

.entity-bottom {
    position: relative;
}

.entity-bottom .side-form {
    height: unset;
}

#geozone\/geojson, #business-relation-template\/content-md, #business-relation\/content-md {
    height: 100%;
    margin: 0;
}

#geozone\/geojson textarea,
#business-relation-template\/content-md textarea,
#business-relation\/content-md textarea {
    height: 100%;
}

.geozone-content, .business-relation-template-content,  .business-relation-content {
    height: 100%;
    padding: 2rem 1.5rem;
}

.master-data-caption {
    padding: 24px;
}

.caption-bar-name {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
}

.skill-catalogue .tree-grid-toggle div {
    max-height: unset;
    margin: 0;
}

.skill-catalogue .tree-grid-node-title {
    top: unset;
}

.skill-catalogue .drag-handle {
    pointer: "default";
    margin-right: 5px;
}

.skill-catalogue-autocomplete .dropdown-menu div {
    padding: 6px 16px;
}

.skill-catalogue-autocomplete .dropdown-menu div:hover {
    background-color: var(--black-5);
}

.skill-catalogue-header {
    margin-bottom: 0;
}

.skill-catalogue-bottom .side-form {
    height: unset;
}

.skill-catalogue-name {
    font-size: 32px;
    font-weight: bold;
}

.color-black-40 {
    color: var(--black-40);
}

.entity__name {
    margin-bottom: 0px;
    margin-right: auto;
    margin-top: 0.875rem;
    font-size: 32px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.13;
    letter-spacing: normal;
    color: var(--black);
}

.entity__name--placeholder {
    color: var(--black-20);
}
.entity__status {
    margin-top: 2rem;
}
.entity__details {
    margin-top: 0.5rem;
}

.caption-bar-buttons {
    margin-bottom: 32px;
}

.caption-bar-entity-and-previous-version {
    margin-top: 8px;
}

.nav-bar {
    padding: 20px 24px;
    height: 64px;
    border-bottom: 1px solid var(--black-5);
    background-color: white;
}

.caption-bar {
    border-bottom: 1px solid var(--black-5);
}

.side-bar {
    width: 375px;
    min-width: 200px;
    padding: 32px 24px;
    border-right: 1px solid var(--black-5);
    overflow-y: auto;
    overflow-x: hidden;
}

.content .side-grid__body {
    padding: 2rem 1.5rem;
}

.question-card {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    background-color: var(--white);
    box-shadow: 0 2px 50px 0 var(--black-5);
}

.option-card {
    padding: 1rem;
    border: solid 1px var(--black-5);
}

.tab-answer {
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--black-20);
    cursor: pointer;
}

.tab-answer-active {
    color: var(--black);
    cursor: default;
    border-bottom: 2px solid var(--black);
}

.answer-options {
    margin-bottom: 0.5rem;
    border-right: 1px solid var(--black-5);
}

.readonly-text-field {
    min-height: 1.25rem;
    display: inline-block;
}

.search-input:only-child {
    margin-left: 0 !important;
}

.warning {
    background-image: url("../img/kit/warning.svg");
}

.textarea-content {
    height: 100%;
}

.textarea-content div {
    height: 100%;
}

.textarea-content div textarea {
    height: 100%;
}

#business-relation-template-dropdown .dropdown-menu {
    min-width: 178px;
}

.error-report {
    border-top: 1px solid var(--black-5);
    padding: 40px 32px;
    background-color: rgba(236, 87, 100, 0.1);
}

.error-report .title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--black-5);
}

.error-report .title .text {
    margin: 0;
}

.error-report .error {
    padding: 16px 0px;
    border-bottom: 1px solid var(--black-5);
}

.error-report .error .message {
    color: var(--negative);
}

.error-report .error .index {
    margin-right: 14px;
}

.error-report .error-count span {
    padding: 3px 8px 1px 8px;
    margin-left: 3px;
    background-color: var(--negative);
    color: var(--white);
    font-size: 12px;
    border-radius: 8px;
}

.business-relation-template-preview {
    margin: 64px 174px 72px 174px;
}

.left-margin {
    margin-left: 16px;
}
/* keyword-field disabled */
.keyword-field .input-group-text {
    padding: 0 0 3px 0;
}

/* keyword-field disabled */
.keyword-field.disabled .input-group-text {
    color: var(--black-20);
}

.caption-bar {
    padding: 24px;
    background-color: white;
}

.side-grid-title {
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
    padding-left: 1.5rem !important;
    display: flex !important;
    background-color: white;
}

.pointer-cursor {
    cursor: pointer !important;
}

/* Apply style for Safari browser only for fix issue with sticky nav bar */
_::-webkit-full-page-media, _:future, :root #sticky-top-portal {
  margin-top: 28px;
}

.modal-wide {
    max-width: 1200px;
}

.flex-1 {
    flex: 1;
}

/* styles for hotspots */

.hotspot:hover {
    cursor: pointer;
}

.image {
    position: relative;
    display: inline-block;
}

.hotspot-popup {
    position: absolute;
    padding: 1.5rem;
    margin: 0.5rem auto;
    z-index: 2;
    height: auto;
    width: auto;
    min-width: 3rem;
    min-height: 2rem;
    max-width: 80%;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: #23262C;
    display: none;
    transition: all .2s ease-in-out;
    color: #FFFFFF;
}

.hotspot-popup.show {
    opacity: 1;
}

.hotspot-close-btn {
    cursor: pointer;
}

.hotspot-popup-close {
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    color: #F8F8F8;
    text-align: right;
}

/* Removes Chrome default details marker */
details summary::-webkit-details-marker {
    display: none
}

/* Removes Firefox default details marker */
details > summary {
    list-style: none;
}

/* Fixes "ResizeObserver loop limit exceeded" error for 4k videos */
video::-webkit-media-controls-timeline {
    align-self: center;
    width: calc(100% - 4rem);
}

.monaco-editor .parameter-hints-widget {
    border: 0px;
}
.monaco-editor .parameter-hints-widget .signature {
    padding: 0px;
}
.monaco-editor .suggest-widget {
    border: 0px;
}
.monaco-editor.vs-dark .suggest-widget {
    border: 0px;
}
.monaco-editor .rename-box {
    top: 0;
}

/* Styles for Search button and Zoom buttons in maps*/
.ol-control{
    padding: 0;
    border-radius: 0;
    background: none;
}
.ol-zoom{
    background: none !important;
    right: .5em;
    left: inherit;
    top: 50%;
    transform: translate(-50%, -50%);
}
.ol-zoom button{
    outline: none !important;
    background-color: white !important;
    color: transparent;
    font-size: 1.25rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.ol-zoom-in{
    background-image: url("../img/kit/big-black-add-item.svg");
}

.ol-zoom-out{
    background-image: url("../img/kit/big-black-delete-item.svg");
}

.ol-control.ol-search.ol-collapsed>button{
    display: block !important;
}

.ol-control button:focus, .ol-control button:hover{
    background-color: transparent;
}

.ol-control button:hover{
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.ol-search .search{
    margin-left: 0.625rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    width: 18.75rem;
    font-size: 1rem;
    color: rgba(0, 0, 0, 1);
}

.ol-search *:focus{
    outline: none;
}

.ol-search{
    top: 1.5rem !important;
    left: 1.5rem !important;
    max-width: 35rem;
    padding: 0.625rem 0.625rem;
    background-color: #fff;
}

.ol-search:hover{
    background-color: #fff;
}

.ol-search button{
    background-image: url("../img/kit/search.svg");
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.ol-control.ol-search>button:before, .ol-control.ol-search>button:after{
    content: none !important;
}

.ol-search ul li.select, .ol-search ul li:hover{
    background: none !important;
    color: black !important;
}

.ol-search .copy{
    display: none;
}

.ol-search ul{
    margin: 0 !important;
    max-width: none !important;
    width: 18.75rem;
    margin-left: 2rem !important;
}

.ol-search ul li{
    width: 100% !important;
    padding: 0.313rem 0 !important;
    font-weight: 500;
    font-size: 1rem;
    max-width: 30rem;
}

.ol-search ul li i{
    cursor: pointer;
    font-weight: 400;
    font-style: normal;
}

.ol-collapsed{
    padding: 0.625rem;
}

input[type="search" i]{
    padding: 0.65rem 0 !important;
}
