﻿.s-fs-7 {
    font-size: 0.75rem !important;
}

.s-fw-light {
    font-weight: 300;
}

.s-fw-medium-light {
    font-weight: 400;
}

.s-fw-medium {
    font-weight: 500;
}

.s-text-justify {
    text-align: justify !important;
}

.s-text-gray1 {
    color: var(--Gray1);
}

.s-text-gray2 {
    color: var(--Gray2);
}

.s-text-purple-medium-1 {
    color: var(--PurpleMedio1);
}

.s-text-dark-purple-2 {
    color: var(--DarkPurple2);
}

.s-font-noto-sans {
    font-family: 'Noto Sans';
}

.s-bg-gray-6 {
    background-color: var(--Gray6) !important;
}

.s-bg-bggray-3 {
    background-color: var(--BG3) !important;
}

.s-cursor-pointer {
    cursor: pointer !important;
}

.s-cursor-text {
    cursor: text !important;
}

.s-cursor-all-scroll {
    cursor: all-scroll !important;
}

.s-w-3 {
    width: 3% !important;
}

.s-w-5 {
    width: 5% !important;
}

.s-w-12 {
    width: 12% !important;
}

.s-w-15 {
    width: 15% !important;
}

.s-w-20 {
    width: 20% !important;
}

.s-w-22 {
    width: 22% !important;
}

.s-w-32 {
    width: 32% !important;
}

.s-w-34 {
    width: 34% !important;
}

.s-w-35 {
    width: 35%;
}

.s-w-40 {
    width: 40% !important;
}

.s-w-55 {
    width: 55% !important;
}

.s-w-89 {
    width: 89% !important;
}

.s-w-95 {
    width: 95% !important;
}

.s-w-18rem {
    width: 18rem;
}

.s-resize-none {
    resize: none;
}

.s-d-inline {
    display: inline !important;
}

.s-cool-gray-3 {
    color: var(--CoolGray3);
}

.s-blue-3 {
    color: var(--BlueScire3);
}

.s-hover-red:hover {
    color: red;
}

.box {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.fill-remaining-height {
    flex: 1 0 0;
}

input[type="number"].disable-spin::-webkit-outer-spin-button,
input[type="number"].disable-spin::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].disable-spin {
    -moz-appearance: textfield;
}

.center-in-y {
    top: 50%;
    transform: translateY(-50%);
    position: relative;
}

/* Scrool Bar */
.thin-scroll-bar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.thin-scroll-bar::-webkit-scrollbar-track {
    background: var(--CoolGray1);
}

.thin-scroll-bar::-webkit-scrollbar-thumb {
    background-color: var(--CoolGray2);
    border-radius: 20px;
    border: 0;
}

.remove-scrool-bar {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

    .remove-scrool-bar::-webkit-scrollbar {
        display: none;
    }

.pointer-events-none {
    pointer-events: none;
}

/* #region Icons */
.icon-info {
    content: url("/img/icons/util/system-info.svg");
}

.icon-info-background {
    content: url("/img/icons/util/system-info-backgroud.svg");
}
/* #endregion Icons */

/* #region System Loading */
.system-loading {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.lds-ripple {
    --radius1: 7.5rem;
    --radius2: 15rem;
    display: inline-block;
    position: relative;
    width: var(--radius2);
    height: var(--radius2);
}

    .lds-ripple div {
        position: absolute;
        border: 5px solid var(--BlueScire3);
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.75s;
        }

@keyframes lds-ripple {
    0% {
        top: var(--radius1);
        left: var(--radius1);
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: var(--radius1);
        left: var(--radius1);
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: var(--radius1);
        left: var(--radius1);
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: var(--radius2);
        height: var(--radius2);
        opacity: 0;
    }
}
/* #endregion System Loading */

/* #region System Dropdown Panel */
.system-dropdown-panel .system-dropdown-header {
    color: var(--BlueScire3);
}

    .system-dropdown-panel .system-dropdown-header .arrow-icon {
        font-family: bootstrap-icons !important;
        display: inline-block;
        vertical-align: middle;
    }

        .system-dropdown-panel .system-dropdown-header .arrow-icon:before {
            content: "\F282";
        }

.system-dropdown-panel .system-dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

    .system-dropdown-panel .system-dropdown-content.show {
        max-height: 100vh; /* Ajuste conforme necessário */
        opacity: 1;
    }

    .system-dropdown-panel .system-dropdown-content .system-dropdown-body {
        margin-top: 1rem;
        padding: 1rem;
        border: solid 1px var(--Gray5);
        border-left: none;
        border-right: none;
    }

    .system-dropdown-panel:has(.system-dropdown-content.show) .arrow-icon:before {
        content: "\F286";
    }
/* #endregion System Dropdown Panel */

.s-text-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-text-truncate-1 {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-text-truncate-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-text-truncate-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-text-truncate-7 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.layout-container {
    background-color: white;
    padding: 0rem;
    box-shadow: 0 2.5px 10px rgb(0 0 0 / 10%);
}

.s-box-shadow-5-5-10 {
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
}

.s-box {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.s-flex-auto {
    flex: auto !important;
}

.s-flex-fit {
    flex: 1 1 0;
}

.s-h-0 {
    height: 0 !important;
}

.s-h-auto {
    height: auto !important;
}

.criticality-circle {
    height: 1rem;
    width: 1rem;
    border: 1px solid black;
    border-radius: 50%;
}

.label-box {
    background-color: var(--BG1);
    text-wrap: nowrap;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.system-icon {
    content: url("/img/logo/t.svg");
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

@media (min-width: 768px) {
    .s-col-md-2_4 {
        flex: 0 0 auto;
        width: 19.7% !important;
    }
}

.responsible-initials {
    color: var(--BlueScire3);
    width: 1.5rem;
    display: flex;
    height: 1.5rem;
    align-items: center;
    justify-content: space-around;
    font-size: 0.625rem;
    border: var(--bs-border-width) var(--bs-border-style) var(--BlueScire3) !important;
    border-radius: 50% !important;
}

    .responsible-initials:hover {
        background-color: var(--BlueScire3);
        color: var(--BG3);
        width: 1.5rem;
        display: flex;
        height: 1.5rem;
        align-items: center;
        justify-content: space-around;
    }

.dropdown-menu li {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.dropdown-menu a {
    display: block;
    text-decoration: none;
    color: var(--bs-dropdown-link-color);
    width: 100%;
}

.responsible-initials:hover .system-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(65deg) brightness(107%) contrast(101%);
}


.dropdown-menu li:hover {
    background-color: var(--TGrey2);
}

select.no-arrow {
    background-image: none;
}

