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;
    font-family: 'Montserrat' !important;
    font-size: 14px;
    color: #243141 !important;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.btn:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.btn:active:focus {
    box-shadow: none;
}

form-select:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.form-control {
    font-size: 14px !important;
    height: 40px;
}

.form-select {
    font-size: 14px !important;
    height:40px;
}

.container-body {
    padding-right: 3.5rem;
    padding-left: 3.5rem;
    margin-right: auto;
    margin-left: auto;

}

.container-footer {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    margin-right: auto;
    margin-left: auto;
}

.form-check-input:checked {
    background-color: #907c3f;
    border-color: #907c3f;
}

.form-select:focus {
    border-color: #243141;
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
    border-color: #243141;
    outline: 0;
    box-shadow: none;
}

    .form-control:focus ~ .input-group-append .buttonSearchManagement {
        border-color: #243141 !important;
    }

/* Tooltip container */
.tooltipdownload {
    position: relative;
    display: inline-block;

}

    /* Tooltip text */
    .tooltipdownload .tooltipdownloadtext {
        visibility: hidden;
        width: 120px;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text */
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -60px;
        /* Fade in tooltip */
        opacity: 0;
        transition: opacity 0.3s;
    }

        /* Tooltip arrow */
    .tooltipdownload .tooltipdownloadtext::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltipdownload:hover .tooltipdownloadtext {
        visibility: visible;
        opacity: 1;
    }