@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #373737;
}

body,
html {
    margin: 0;
    padding: 0;
    font: 13px/18px sans-serif;
}

select {
    min-width: 300px;
}

.rowLoadingGIF {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999!important;
    text-align: center;
    background: url('images/preloader-ring.gif') 50% 50% no-repeat rgba(245, 245, 245, 0.89);
    visibility: hidden;
}


/* New Dropdown CSS /*


/* End Dropdown CSS


/* Create two equal columns that floats next to each other */

.column {
    float: left;
    width: 100%;
    padding: 10px;
}


/* Clear floats after the columns */

.row {
    margin: 0;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

input[type=submit],
input[type=reset] {
    background-color: #04AA6D;
    border: none;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}

input[type=text],
input[type=date],
select {
    width: 200px;
    height: 50px;
    padding: 14px 12px;
    padding-left: 20px;
    font-family: 'Montserrat';
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 0px;
    border-color: #959A9F;
    box-sizing: border-box;
}

input[type=date]::-webkit-calendar-picker-indicator {
    background: url("images/calendar.svg");
    height: 100%;
    cursor: pointer;
}

.primaryButton {
    background-color: #E8772C;
    width: 130px;
    padding: 15px 20px;
    border: none;
    margin-left: 10px;
    color: white;
    margin-bottom: 2px;
}

.button1 {
    background-color: #E8772C;
    padding: 15px 20px;
    border: none;
    margin-left: 10px;
}

.button1:hover {
    background-color: #c96522;
    cursor: pointer;
}

.button2 {
    background-color: #fff;
    padding: 13px 20px;
    border: 2px solid #E8772C;
    margin-left: 10px;
}

.button2:hover {
    border: 2px solid #c96522;
    cursor: pointer;
}

.button2:hover #Path_2025 {
    fill: #c96522;
    cursor: pointer;
}

.svgheight {
    height: 18px;
    cursor: pointer;
}

.leftButton {
    color: black;
    border: 1px solid #eb7722;
    padding: 10px;
    background-color: white;
    min-width: 100px;
}

.selectedFilterButton {
    color: white;
    border: 1px solid #eb7722;
    padding: 10px;
    background-color: #eb7722;
    min-width: 100px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

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

.tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: #FEF1E7;
    color: #373737;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #F6C39E;
    padding: 5px 5px;
    content: "";
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 40%;
    margin-left: -60px;
    margin-top: 7px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
    opacity: 1;
}

.margtooltip1 {
    left: 70%;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 70%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #F6C39E transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

option {
    font-size: 18px;
    background-color: #ffffff;
    border-radius: 0px;
}

option::after {
    border-radius: 0px;
}

option:before {
    content: ">";
    font-size: 20px;
    display: none;
    border-radius: 0px;
    padding-right: 10px;
    padding-left: 5px;
    color: #000000;
}

option:hover:before {
    display: inline;
}

.checkbox-dropdown {
    width: 600px;
    border: 1px solid #aaa;
    padding: 10px;
    position: relative;
    margin: 0 auto;
    user-select: none;
}


/* Display CSS arrow to the right of the dropdown text */

.checkbox-dropdown:after {
    content: '';
    height: 0;
    position: absolute;
    width: 0;
    border: 6px solid transparent;
    border-top-color: #c96522;
    top: 50%;
    right: 10px;
    margin-top: -3px;
}


/* Reverse the CSS arrow when the dropdown is active */

.checkbox-dropdown.is-active:after {
    border-bottom-color: #c96522;
    border-top-color: #fff;
    margin-top: -9px;
}

.checkbox-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    /* align the dropdown right below the dropdown text */
    border: inherit;
    border-top: none;
    left: -1px;
    /* align the dropdown to the left */
    right: -1px;
    /* align the dropdown to the right */
    opacity: 0;
    /* hide the dropdown */
    z-index: 10;
    transition: opacity 0.4s ease-in-out;
    height: 100px;
    overflow: scroll;
    overflow-x: hidden;
    pointer-events: none;
    /* avoid mouse click events inside the dropdown */
}

.is-active .checkbox-dropdown-list {
    opacity: 1;
    /* display the dropdown */
    pointer-events: auto;
    /* make sure that the user still can select checkboxes */
}

.is-inactive .checkbox-dropdown-list {
    opacity: 0;
    /* display the dropdown */
    pointer-events: auto;
    /* make sure that the user still can select checkboxes */
}

.checkbox-dropdown-list li label {
    display: block;
    border-bottom: 1px solid silver;
    padding: 10px;
    transition: all 0.2s ease-out;
}

.checkbox-dropdown-list li label:hover {
    background-color: #c96522;
    color: white;
}


/* This is for new DropDown UI*/

.drop {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.drop.open {
    z-index: 100;
}

.drop.open .drop-screen {
    z-index: 100;
    display: block;
}

.drop.open .drop-options {
    z-index: 200;
    max-height: 200px;
}

.drop.open .drop-display {
    z-index: 200;
    border-color: #465;
    position: sticky;
}

.drop select {
    display: none;
}

.drop .drop-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0px;
    left: 0px;
    opacity: 0;
    display: none;
    z-index: 1;
}

.link {
    text-align: center;
    margin: 20px 0px;
    color: #8CACD7;
}

.drop .drop-display {
    position: relative;
    padding: 3px 20px 5px 8px;
    border: 1px solid #ccc;
    width: 99%;
    background: #FFF;
    z-index: 1;
    margin: 0px;
    font-size: 16px;
    min-height: 58px;
}

.drop .drop-display:hover:after {
    opacity: 0.75;
}

.drop .drop-display:after {
    font-family: 'Material Icons';
    content: "\e5c6";
    position: absolute;
    right: 10px;
    top: 16px;
    font-size: 24px;
    color: #E8772C;
}

.drop .drop-display .item {
    position: relative;
    display: inline-block;
    background-color: #E8772C;
    color: #fff;
    border-radius: 4px;
    margin: 5px 5px -4px 0px;
    padding: 0px 25px 0px 10px;
    overflow: hidden;
    height: 40px;
    line-height: 36px;
}

.drop .drop-display .item .btnclose {
    color: #fff;
    position: absolute;
    font-size: 16px;
    right: 5px;
    top: 10px;
    cursor: pointer;
}

.drop .drop-display .item .btnclose:hover {
    opacity: 0.75;
}

.drop .drop-display .item.remove {
    -webkit-animation: removeSelected 0.2s, hide 1s infinite;
    animation: removeSelected 0.2s, hide 1s infinite;
    -webkit-animation-delay: 0s, 0.2s;
    animation-delay: 0s, 0.2s;
}

.drop .drop-display .item.add {
    -webkit-animation: addSelected 0.2s;
    animation: addSelected 0.2s;
}

.drop .drop-display .item.hide {
    display: none;
}

.drop .drop-options {
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    width: 99%;
    max-height: 0px;
    overflow-y: auto;
    transition: all 0.25s linear;
    z-index: 1;
}

.drop .drop-options a {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0px 20px;
    color: #000;
    position: relative;
    max-height: 40px;
    transition: all 1s;
    overflow: hidden;
}

.drop .drop-options a:hover {
    background: #E8772C;
    cursor: pointer;
    color: #fff;
}

.drop .drop-options a.remove {
    -webkit-animation: removeOption 0.2s;
    animation: removeOption 0.2s;
    max-height: 0px;
}

.drop .drop-options a.add {
    -webkit-animation: addOption 0.2s;
    animation: addOption 0.2s;
}

.drop .drop-options a.hide {
    display: none;
}


/* Style the tab */

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab8 {
    background-color: #E8772C;
    margin-left: 20px;
    width: 120px;
}


/* Style the buttons inside the tab */

.tab button {
    background-color: #E8772C;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    margin-left: 10px;
    color: white;
}


/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ddd;
}


/* Create an active/current tablink class */

.tab button.active {
    background-color: #ccc;
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

@-webkit-keyframes pop {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pop {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes removeOption {
    from {
        max-height: 40px;
    }
    to {
        max-height: 0px;
    }
}

@keyframes removeOption {
    from {
        max-height: 40px;
    }
    to {
        max-height: 0px;
    }
}

@-webkit-keyframes addOption {
    from {
        max-height: 0px;
    }
    to {
        max-height: 40px;
    }
}

@keyframes addOption {
    from {
        max-height: 0px;
    }
    to {
        max-height: 40px;
    }
}

@-webkit-keyframes removeSelected {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes removeSelected {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-webkit-keyframes addSelected {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes addSelected {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes hide {
    from,
    to {
        max-height: 0px;
        max-width: 0px;
        padding: 0px;
        margin: 0px;
        border-width: 0px;
    }
}

@keyframes hide {
    from,
    to {
        max-height: 0px;
        max-width: 0px;
        padding: 0px;
        margin: 0px;
        border-width: 0px;
    }
}

.ui-dialog-titlebar-close {
    visibility: hidden;
}

ul {
    margin: 0;
    padding: 0;
    margin-left: 17px;
}

.events-header {
    height: 10px;
}

html,
body {
    margin: 0;
    padding: 0;
}

.myWorkContent {
    width: 95%;
    height: 180px;
    max-height: 180px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-top: 10px;
}

#userActionClickableLine {
    z-index: 1;
}

.myWorkContentElement {
    display: inline-block;
    height: 130px;
    width: 270px;
    vertical-align: middle;
    text-align: center;
    overflow-y: auto;
    border-radius: 15px;
}

#myWorkContent img {
    border: 0;
}


/* Card Style */

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.switch-btn-enabled {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

/* INPUT RANGE */

input[type=range] {
  height: 25px;
  padding: 0px;
  -webkit-appearance: none;
  width: 100%;
  background-color: transparent;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000;
  background: #ccc;
  border-radius: 1px;
  border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #ccc;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #008ffb;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000;
  background: #ccc;
  border-radius: 1px;
  border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #ccc;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #008ffb;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ccc;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #ccc;
  border: 0px solid #000000;
  border-radius: 2px;
  box-shadow: 0px 0px 0px #000000;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 0px 0px 0px #000000;
  border: 1px solid #ccc;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #008ffb;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #ccc;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}

/* INPUT RANGE */

.popup-header {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.popup-header-text {
    font-size: 18px;
    color: #333;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}

.popup-container {
    width: 450px;
    max-height: 600px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    z-index: 999;
    font-weight: 600;
    font-size: 12px;
}

.popup-ul {
    list-style: none;
    padding: 0;
    list-style-type: none;
    white-space: nowrap;
    overflow-x: auto;
    max-height: 300px;
}

.popup-li {
    margin: 5px 0;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
}

.popup-button {
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.popup-apply {
    background-color: #E8772C;
    color: white;
}

.popup-apply:hover {
    background-color: white;
    color: #E8772C;
    border: 1px solid #E8772C;
}

.popup-clear {
    background-color: white;
    color: #E8772C;
    border: 1px solid #E8772C;
}

.popup-clear:hover {
    background-color: #E8772C;
    color: white;
}

/* Checkbox styles */
input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

input[type="checkbox"]+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
}

input[type="checkbox"]:checked+label:before {
    background-color: #E8772C;
    border-color: #E8772C;
}

input[type="checkbox"]:checked+label:after {
    content: '\2713';
    position: absolute;
    left: 4px;
    top: 0;
    color: white;
    font-size: 12px;
}

.item-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0px;
}

.item-label-diabled {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 0px;
    color: #a5a5a3;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    margin-left: 5px;
    margin-top: 2px;
}

.dot-label {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    background-color: red;
    border-radius: 50%;
    margin-left: 5px;
}

.custom-tooltip {
    position: absolute;
    padding: 5px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    min-width:450px;
    max-width:600px;
    margin-bottom: -50px;
}

#custom-tooltips-container {
    margin-top: 5px;
    margin-left: 4%;
}

.hover-custom-tooltip {
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.hover-custom-tooltip div {
    display: flex;
    align-items: center;
}

.hover-custom-tooltip span.circle {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00E396;
    /* Color similar to your icon */
    margin-right: 8px;
}

.hover-custom-tooltip span.label {
    font-size: 14px;
    color: #7a7979;
}