:root {
    --font-roboto: 'Roboto';
    --font-montserrat: 'Montserrat';
}

p, span {
    font-family: var(--font-roboto), sans-serif;
}

h1, h2, h3, h4 {
    font-family: var(--font-montserrat), sans-serif;
}

body {
    background-color: #F8F9FB;
}

a {
    all: initial;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    color: #000000;
}

.ms-32 {
    margin-left: 2rem !important;
}

.mt-32 {
    margin-top: 2rem !important;
}

.me-32 {
    margin-right: 2rem !important;
}

.mb-32 {
    margin-bottom: 2rem !important;
}

.fs-7 {
    font-size: 0.875rem;
}

.fs-8 {
    font-size: 0.75rem;
}

.link-color {
    color: #2E92F7;
}

/* HIDDEN CLASS TO HIDE ELEMENTS */
.hidden {
  display: none !important;
}

/* ------------------------ */
/*     CUSTOM SCROLLBAR     */
/* ------------------------ */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: none;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #A2A2A2;
  border-radius: 7px;
}

/* Hide the up and down arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

/* Hide the select arrow */
select {
    cursor: pointer;
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
}

select::-ms-expand{
    display: none; /* For IE10 */
}

/* ------------------------ */
/*         MESSAGES         */
/* ------------------------ */
.messages-container {
    position: fixed;
    bottom: 32px;
    left: 50vw;
    width: auto;
    height: auto;
    z-index: 3;
    padding-left: 15px;
    transform: translate(-50%, 0);
}

@keyframes slideDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(500%);
    }
}

.slide-down {
    animation: slideDown 3s forwards;
}

.message {
    background-color: #fff;
    height: auto;
    width: 589px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    border-radius: 12px;
}

.message-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 5px;
    margin-left: 20px;
    margin-right: 24px;
}

.message-strip {
    width: 15px;
    height: 100%;
    border-radius: 12px 0 0 12px;
}

.message-danger {
    color: #910000;
    border: 1px solid #FF2300;
}

.message-success {
    color: #014E00;
    border: 1px solid #05C302;
}

.message-warning {
    color: #724D03;
    border: 1px solid #fad487;
}

.message-strip-danger {
    background-color: #FF2300;
}

.message-strip-success {
    background-color: #05C302;
}

.message-strip-warning {
    background-color: #fad487;
}

.message-icon-danger {
    background-color: #FF2300;
    content: url('/static/images/close_icon_4.svg');
}

.message-icon-success {
    background-color: #05C302;
    content: url('/static/images/accept_icon_2.svg');
}

.message-icon-warning {
    background-color: #fad487;
    content: url('/static/images/warning_icon_2.svg');
}

/* ----------------------------- */
/*              TOOLTIP          */
/* ----------------------------- */
.tooltip {
    --falcon-tooltip-zindex: 1080;
    --falcon-tooltip-max-width: 200px;
    --falcon-tooltip-padding-x: 0.5rem;
  --falcon-tooltip-padding-y: 0.5rem;
  --falcon-tooltip-margin: ;
  --falcon-tooltip-font-size: 0.8333333333rem;
  --falcon-tooltip-color: #fff;
  --falcon-tooltip-bg: #2E92F7;
  --falcon-tooltip-border-radius: 4px;
  --falcon-tooltip-opacity: 1;
  --falcon-tooltip-arrow-width: 0.8rem;
  --falcon-tooltip-arrow-height: 0.4rem;
  z-index: var(--falcon-tooltip-zindex);
  display: block;
  padding: var(--falcon-tooltip-arrow-height);
  margin: var(--falcon-tooltip-margin);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
    line-height: 1.5;
    text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--falcon-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--falcon-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--falcon-tooltip-arrow-width);
  height: var(--falcon-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--falcon-tooltip-arrow-height) calc(var(--falcon-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--falcon-tooltip-bg);
}

.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: var(--falcon-tooltip-arrow-height);
  height: var(--falcon-tooltip-arrow-width);
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--falcon-tooltip-arrow-width) * 0.5) var(--falcon-tooltip-arrow-height) calc(var(--falcon-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--falcon-tooltip-bg);
}

.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--falcon-tooltip-arrow-width) * 0.5) var(--falcon-tooltip-arrow-height);
  border-bottom-color: var(--falcon-tooltip-bg);
}

.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: var(--falcon-tooltip-arrow-height);
  height: var(--falcon-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--falcon-tooltip-arrow-width) * 0.5) 0 calc(var(--falcon-tooltip-arrow-width) * 0.5) var(--falcon-tooltip-arrow-height);
  border-left-color: var(--falcon-tooltip-bg);
}

.tooltip-inner {
  max-width: var(--falcon-tooltip-max-width);
  padding: var(--falcon-tooltip-padding-y) var(--falcon-tooltip-padding-x);
  color: var(--falcon-tooltip-color);
  text-align: center;
  background-color: var(--falcon-tooltip-bg);
  border-radius: var(--falcon-tooltip-border-radius);
}

/* ------------------------ */
/*          SIDEBAR         */
/* ------------------------ */
.side-bar {
    background-color: #FFFFFF;
    box-shadow: 0 0 14px #00000017;
    margin-right: 32px;
}

.side-bar .logo-sidebar {
  width: 33px;
  margin-top: 26px;
}

.side-bar .logo-sidebar-extended {
  margin-top: 26px;
}

.extend-sidebar {
    background-color: transparent;
    border: none;
}

.extended-sb-content {
    color: #4E4E4E;
}

.side-bar-item {
    margin-bottom: 32px;
}

.side-bar-item-active {
    border-right: 3px solid #2E92F7;
}

.side-bar-item-active span {
    color: #2E92F7;
}

/* ------------------------ */
/*          HEADER          */
/* ------------------------ */
.header {
    background-color: #FFFFFF;
    z-index: 2;
}

#header-main-row {
    border-radius: 0 0 0 33px;
    box-shadow: 0 3px 17px #0000000F;
    background-image: url('/static/images/fold_blue_background.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 6.35vw) 0;
    background-size: 620px 132px;
}

@media (max-width: 1536px) {
    .header h1 {
        font-size: 36px;
    }
}

.group-logo {
    width: auto;
    max-height: 62px;
    object-fit: contain;
}

.header-help-text {
    color: #7D7D7D;
    font-size: 16px;
}

@media (max-width: 675px) {
    .header-help-text {
        display: none;
    }
}

.border-company {
  border: 2px solid #2E92F7;
  border-radius: 50%;
  padding: 10px;
  margin-right: 32px;
}

.border-company img {
  width: 32px;
  height: 32px;
}

.profile-dropdown {
    border: none;
    background-color: #EFF1F3;
    padding: 12px;
    border-radius: 44px;
    cursor: pointer;
}

.profile-dropdown-photo {
  width: 59px;
  height: 59px;
  border-radius: 50%;
}

.profile-dropdown-info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  color: #444444;
  width: 185px;
}

@media (max-width: 730px) {
    .profile-dropdown-info {
        display: none;
    }
}

.profile-dropdown-name {
    font-family: var(--font-montserrat), sans-serif;
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.profile-dropdown-accessing {
    font-family: var(--font-roboto), sans-serif;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dropdown-menu-profile {
    border-radius: 8px;
    width: 100%;
}

@media (max-width: 730px) {
    .dropdown-menu-profile {
        width: auto;
    }
}

.dropdown-item, .accordion-button {
    font-family: var(--font-roboto), sans-serif;
    font-size: 20px;
}

.dropdown-item:hover {
    background-color: #D9E8FF;
}

.access-to-app {
    background-color: #F5FAFF;
}

.access-to-title:hover {
    background-color: transparent;
}

.access-to-image {
    width: 16px;
    margin-right: 12px;
    object-fit: contain;
}

.accordion-button:not(.collapsed) {
    color: #000000;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
    background-image: unset !important;
    margin: 0;
    display: none;
}

.language-option {
    cursor: pointer;
}

.notification-button {
    border: none;
    background-color: #EFF1F3;
}

.notification-icon {
  width: 32px;
  height: 32px;
}

.dropdown-menu-notification {
    border-radius: 8px;
    width: 454px;
    max-height: 538px;
}

.notification-text {
    width: 282px;
}

@media (max-width: 500px) {
    .dropdown-menu-notification {
        width: 70vw;
        transform: translate(-8vw, 82px) !important;
    }

    .notification-text {
        width: 212px;
    }
}

.dropdown-menu-notification > li:first-child{
    border-radius: 8px 8px 0 0;
}

.notification-unread {
    border: 1px solid #2E92F7;
    background-color: #D9E8FF;
}

.notification-unread h3 {
    color: #2E92F7;
}

/* ------------------------ */
/*          MODALS          */
/* ------------------------ */
.modal-content {
    border-radius: 16px;
}

.modal-header {
    padding: 32px 32px 28px;
    border: none;
}

.modal-body {
    padding: 0 32px 32px;
    border: none;
}

.modal-footer {
    padding: 32px;
    border: none;
}

/* ------------------------ */
/*       LOGOUT MODAL       */
/* ------------------------ */
.nowrap-lg {
    white-space: nowrap; /* Prevent text wrapping */
}

@media (max-width: 992px) {
    .nowrap-lg {
        white-space: normal; /* Allow text to wrap on smaller screens */
    }
}

.logout-go-back {
    background-color: #2E92F7;
    color: #fff;
    border-color: transparent;
    border-radius: 8px;
}

.logout-button {
    background-color: #D9E8FF;
    color: #2E92F7;
    border: 1px solid #2E92F7;
    border-radius: 8px;
}

/* ------------------------ */
/*   NOTIFICATIONS MODAL    */
/* ------------------------ */
.notifications-modal-content {
    width: 53.17vw;
}

@media (max-width: 600px) {
    .notifications-modal-content {
        width: 80vw;
    }
}

.notifications-modal-content a:hover {
    color: #000000;
}

.notifications-modal-content h3 {
    font-family: var(--font-montserrat), sans-serif;
}

.notifications-amount-unread {
    border-radius: 50%;
    background-color: #D9E8FF;
    font-size: 20px;
    padding: 4px 10px;
    margin-left: 20px;
}

.notification-modal-unread {
    border: 1px solid #2E92F7;
    border-radius: 16px;
    background-color: #D9E8FF;
}

.notification-modal-unread h3 {
    color: #2E92F7;
}

.notification-arrow-div {
    margin-left: 40px;
}

.delete-notification-button {
    border: none;
    border-radius: 8px;
    background-color: #E7E7E7;
}

.delete-notification-button:hover {
    background-color: #2E92F7;
}

.delete-notification-button:hover img {
    content: url("/static/images/close_icon_4.svg");
}

.notification-all-buttons {
    border: none;
    border-radius: 8px;
    background-color: #E7E7E7;
    margin-right: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
}

.notification-all-buttons span {
    font-family: var(--font-montserrat), sans-serif;
    font-size: 14px;
}

.notification-all-buttons:hover {
    background-color: #2E92F7;
    color: #FFFFFF;
}

.notification-read-all-button:hover img {
    content: url("/static/images/eye_icon_white.svg");
}

.notification-delete-all-button:hover img {
    content: url("/static/images/close_icon_4.svg");
}

/* ------------------------ */
/*      COMMON BUTTONS      */
/* ------------------------ */
.export-to-excel, .button-collums-settings{
    border: none;
    border-radius: 8px;
    background-color: #E0E0E0;
    padding: 6px 16px;
    display: flex;
    align-items: center;
}

.export-to-excel span, .button-collums-settings span {
    margin-right: 12px;
}

.button-collums-settings.show {
    background-color: #2E92F7;
    color: #FFFFFF;
}

.button-collums-settings.show img {
    content: url("/static/images/settings_icon_white.svg");
}

.search-input {
    border-radius: 20px;
    border: 1px solid #000;
    padding-left: 36px;
    width: 250px;
    height: 100%;
    background-image: url('/static/images/search.svg');
    background-repeat: no-repeat;
    background-position: 12px 50%;
    font-family: var(--font-roboto), sans-serif;
}

@media (max-width: 992px) {
    .nowrap-lg {
        white-space: normal; /* Allow text to wrap on smaller screens */
    }

    .search-input {
        width: 35vw !important;
        min-width: 180px;
    }
}
