/* 
/* 
/*  custom.css
/*
/*  If not using Gulp and Sass, add your custom CSS below then include it
/*  in your page by adding a reference to assets/css/custom.css in the head of each page.
/*
*/

body {
    font-size: 0.9rem;
}

.scroll-y {
  overflow-y: scroll;
}

 .container_location {
    position: relative;
    width: 85px;
    height: 85px;
}
.image_location {
    width: 100%;
    height: 100%;
}
.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: bold;
    transform: translate(-50%, -50%);
    font-size: 16px; /* Adjust the size as needed */
    color: white; /* Adjust color for better visibility */
    text-shadow: 1px 1px 2px black; /* Optional: add text shadow for better contrast */
}

.full-height {
    height: 100vh; /* Full height of the viewport */
    margin: 0; /* Removing default margins */
    padding: 0; /* Removing default paddings */
}

span.anchor {
    margin-top: -80px; /* height of nav, in this case 54px */
    display: block;
    height: 80px; /* height of nav, in this case 54px */
    visibility: hidden;
    position: relative;
}

label  {
    margin-bottom: 0.2rem;
}

.form-group  {
    margin-bottom: 0.5rem;
}

.alert-warning {
    background-color: orange;
}

i {
    position: relative;
    font-size: calc(1rem);
    top: 0.1px;
}

.table-responsive {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.numberBoxGreen {
    border-radius: 15%;
    width: 1rem;
    height: 1rem;
    position: relative;
    padding-top: 1px;
    bottom: 1px;
    background: green;
    border: 0 solid black;
    color: white;
    text-align: center;
    font: calc(1rem - 3px) Arial, sans-serif;
    display: inline-block;
}

.numberBoxRed {
    border-radius: 15%;
    width: 1rem;
    height: 1rem;
    position: relative;
    padding-top: 1px;
    bottom: 1px;
    background: red;
    border: 0 solid black;
    color: white;
    text-align: center;
    font: calc(1rem - 3px) Arial, sans-serif;
    display: inline-block;
}

.numberBoxYellow {
    border-radius: 15%;
    width: 1rem;
    height: 1rem;
    position: relative;
    padding-top: 1px;
    bottom: 1px;
    background: moccasin;
    border: 0 solid black;
    color: black;
    text-align: center;
    font: calc(1rem - 3px) Arial, sans-serif;
    display: inline-block;
}

.numberBoxWhite {
    border-radius: 15%;
    width: 1rem;
    height: 1rem;
    position: relative;
    bottom: 1px;
    background: white;
    border: 1px solid black;
    color: black;
    text-align: center;
    font: calc(1rem - 3px) Arial, sans-serif;
    display: inline-block;
}

.table {
    margin-bottom: 0px;
}

.table td th {
    padding: 8px;
}

.tr .chart{
  height: 10px;
}
td.rotate {
    position: relative;
}

.withborder {
    font-size: 20px;
}

td.rotate > div {
    position: absolute;
    top: 0;
    left: 10px;
    transform: rotate(-90deg);
}

.blink_me {
    -webkit-animation: blink 10s 2s;
    animation: blinker 2s linear infinite;
}

@media(max-width: 990px) {
    span.span_max {
        display:none;
    }

}
@media(min-width: 990px) {
    span.span_min {
        display:none;
    }

}


@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.nav-link {
    padding: 10px;
}

.hidden-xs-inline{
    display: inline-block !important;
}

.nopadding {
   padding: 0 !important;
   margin: 0 !important;
}

.smallpadding {
   padding: 10px !important;
   margin: 10px !important;
}


@media print {
    .no-print, .no-print * {
        display: none !important;
    }

    .numberBoxYellow {
        border: 1px solid black;
        color: black;
        bottom: 1px;
        font: calc(1rem - 5px) Arial, sans-serif;
    }
    .numberBoxGreen {
        border: 1px solid black;
        color: black;
        bottom: 1px;
        font: calc(1rem - 5px) Arial, sans-serif;
    }
    .numberBoxRed {
        border: 1px solid black;
        color: black;
        bottom: 1px;
        font: calc(1rem - 5px) Arial, sans-serif;
    }
}