html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 5vh;
}

a {
    text-decoration: none !important;
}

footer a {
    color: white;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 5vh;
}

.footer a:hover {
    color: #FF1616 !important;
}

a:hover {
    color: #FF1616;
}

.btn-side-menu {
    margin-left: 1rem;
    color: white !important;
    background-color: #ff1616 !important;
}

    .btn-side-menu:hover {
        color: #FF1616 !important;
        border: 1px solid #ff1616 !important;
        background-color: white !important;
    }

.buttons-excel {
    background-color: #107C41 !important;
}

.margin-top-s {
    margin-top: 0.5rem;
}

.margin-top-m {
    margin-top: 1rem;
}

.margin-top-l {
    margin-top: 2rem;
}

.margin-bottom-m {
    margin-bottom: 1rem !important;
}

.margin-bottom-l {
    margin-bottom: 2rem !important;
}

.margin-top-lg {
    margin-top: 3rem;
}

.header-logo {
    max-width: 15rem;
    height: auto;
}

.inherit-parent-size {
    width: 100% !important;
    height: auto;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

header, footer {
    background-color: #253237 !important;
    color: white;
}

.header-bar {
}

.page-header {
    display: inline-block;
    vertical-align: central;
}

    .page-header h3 {
        display: inline-block;
        vertical-align: middle;
        margin: 0 0 0 1rem !important;
    }


.fams-container {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.underlined-header {
    padding: 0.5rem;
    border-bottom: 1px solid #253237;
}

.dataTables_length, .dataTables_filter {
    margin-bottom: 2rem !important;
}

.filter-svg {
    filter: invert(100%) sepia(79%) saturate(0%) hue-rotate(86deg) brightness(118%) contrast(119%);
    width: 1rem;
}

.filter-white {
    filter: invert(100%) sepia(79%) saturate(0%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.black-filter-svg {
    filter: invert(0%) sepia(79%) saturate(0%) hue-rotate(86deg) brightness(118%) contrast(119%);
    width: 2rem;
}

.fill-parent {
    height: inherit !important;
    width: 100% !important;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: .375rem .75rem;
}

.x-icon {
    font-size: 0.8rem;
}

.main-container {
    padding: 2rem 5rem 5rem 5rem;
}

.aligned-icon{
   vertical-align:top;
}

/*DataTable Bool Fields*/
.datatable-col-true {
    background-color: #19875478 !important
}

.datatable-col-false {
    background-color: #dc354578 !important
}


/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
}

    /* Links inside the navbar */
    .navbar a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: inherit; /* Important for vertical align on mobile phones */
        margin: 0; /* Important for vertical align on mobile phones */
    }

    /* Add a red background color to navbar links on hover */
    .navbar a:hover, .dropdown:hover .dropbtn {
        background-color: red;
    }

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        /* Add a grey background color to dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.float-right {
    float: right;
}