/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
*/

a {
    color: #111111
}

#tabel tr, #tabel th, #tabel td {
    text-align: left;
    padding: 15px
}

#tabel tr:nth-child(odd) {
    background-color: #F5F5F5;
}

#tabel tr:nth-child(even) {
    background-color: #FAFAFA;
}

#tabel {
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 6px;
    border-bottom: 1px solid #DCDDDD;
    border-left: 1px solid #DCDDDD;
    border-right: 1px solid #DCDDDD;
}


select {
    height: 28px;
    width: 286px;
    padding-left: 8px;
    padding-right: 5px;
    border: solid 1px #ccc;
    border-radius: 10px;
}

/* Tooltip : https://www.w3schools.com/css/css_tooltip.asp */
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}
    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 280px;
        background-color: #ddd;
        color: #111;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        font-size: 14px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
        /* Left Tooltip */
        top: -25px;
        right: 105%;
        /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
        opacity: 0;
        transition: opacity 1s;
    }

        /* Arrow */
        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #ddd;
        }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }


/* ------------------------------------------------ */