body {
    font-family: 'Inter', sans-serif;
}

#suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background: white;
    width: calc(100% - 20px);
    z-index: 1;
}

#suggestions li {
    padding: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
}

#suggestions li:hover {
    background: #f0f0f0;
}

label.toggle {
    padding: 10px;
    display: block;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
}

.radio-group label[for] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4)
}

.checkbox .radio-group label[for] {
    background-color: rgba(255, 255, 255, 0.9);
}

.radio-group label[for]:hover {
    background-color: rgba(0, 123, 255, 0.5);
}

.radio-group input[type="radio"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
}

.radio-group input[type="radio"]:checked + label {
    background-color: #007BFF;
    color: white;
    border-color: #0056b3;
}

.product-line {
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin: 5px 0;
    background-color: rgba(125, 125, 255, 0.1);
}

.price-line {
    display: none;
    margin: 10px;
    font-weight: bold;
    color: #000;
    font-size: 11px;
}

.nowrap {
    text-wrap: nowrap;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.opacity-0 {
    opacity: 0;
}

.toggle {
    cursor: pointer;
}

.btn.btn-purple {
    background-color: rgba(128, 0, 128, 0.7);
}

.btn:hover.btn-purple {
    background-color: rgba(128, 0, 128, 0.4);
}

.vm-line input, .vm-line select {
    min-width: 100px;
}

td.bg-infra {
    background: rgba(155, 40, 225, 0.4) !important;
}

td.bg-mco {
    background: rgba(200, 165, 0, 0.3) !important;
}

td.bg-mcs {
    background: rgba(0, 255, 120, 0.3) !important;
}

td.bg-flat {
    background: rgba(0, 100, 220, 0.3) !important;
}

td.bg-cost-info {
    font-weight: bold;
    background: gold !important;
    color: black;
}

table a {
    text-decoration: none;
}

.sync-badge {
    animation: pulse-opacity 0.8s ease-in-out infinite;
}

.anim-spin {
    animation: spin 1s linear infinite;
}

@keyframes pulse-opacity {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-action {
    justify-content: center;
    margin: 0;
    display: flex;
    position: absolute;
    border: none;
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
    bottom: 0;
    right: 0;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-action-message {
    width: 0;
    overflow: hidden;
}

.btn-action:hover {
    width: 6rem;
    border-radius: 24px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-action:hover .btn-action-message {
    width: 6rem;
    overflow: hidden;
    text-wrap: nowrap;
}

.breadcrumb{
    font-family: 'Roboto', sans-serif;
    color: var(--bg-blue-jiliti);
}

.breadcrumb, .breadcrumb a, .breadcrumb span{
    font-size: 1.4rem;
}

.breadcrumb a{
    text-decoration: none;
    color: inherit;
}

.breadcrumb a:hover{
    text-decoration: underline;
    color: inherit;
}

.breadcrumb .active{
    font-weight: bold;
}

.badge.bg-closed{
    background-color: var(--bs-secondary);
}


.badge.bg-open{
    background-color: var(--bs-success);
}

.bg-light-cod{
    background-color: #dccfdc;
}

.bg-light-housing{
    background-color: #b4e7ff;
}


.bg-light-dataprotec{
    background-color: #bbebfa;
}

.bg-light-fiber{
    background-color: #ffe9c9;
}

.table-sizer td{
    width: 5rem;
    position: relative;
}

.table-sizer thead{
    z-index: 99;
    position: sticky;
    top:0;
}

.input-group-table{
    display: block;
    width: 100%;
    background-color: white;
    transition: 0.4s all;
    border-bottom: 2px solid #ffffff00;
    text-wrap: nowrap;
}


.form-control-table{
    border: none;
    width: 80%;
    outline: none;
    padding-left: 6px;
}


.input-group-table:has(.form-control-table:focus){
    box-shadow: none !important;
    border: none;
    border-bottom: 2px solid var(--bg-primary);
}

.form-control-table-unit{
    opacity: 0.4;
}

.table-sticky-header{
    overflow-y: scroll;
    position: relative;
    max-height: 650px;
}

.table-sticky-header thead{
    position: sticky;
    top: 0;
}

.table-fit-content th, .table-fit-content td, .table-fit-content select{
    min-width: fit-content;
}

.form-control::placeholder{
    color: #dedede;
}

.ts-wrapper.single .ts-control {
    background-color: var(--bs-body-bg);
    background-image: unset;
    background-repeat: no-repeat;
    box-shadow: unset;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.alert .alert-danger{
    background-color: var(--bs-danger);
    color: white;
}

.nav-item .nav-link{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (max-width: 991px) {
    .product-card{
        font-size: 0.8rem!important;
    }
}
@media (min-width: 1900px) {
    .modal-xl {
        --bs-modal-width: 1670px;
    }
}
