@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@300;400&display=swap");
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

header {
    --background-color: #333333;
    background: #fff
        url(https://www.virtualbox.cityboxperu.com/backend/imagenes/body.png)
        repeat-x left top;
}
header nav ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    align-items: center;
}
header nav ul li {
    width: 15%;
    padding: 8px 0;
}
header nav ul li img {
    width: 20px;
    display: block;
}
header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 2px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
header nav ul .dropdown {
    display: inline-block;
    position: relative;
    z-index: 555;
}
header nav ul .dropdown .dropdown-options {
    display: none;
    position: absolute;
    overflow: auto;
    background-color: #333333;
    border-radius: 5px;
    z-index: 555;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
}
header nav ul .dropdown .dropdown-options a {
    display: block;
    padding: 5px;
    text-decoration: none;
    padding: 20px 40px;
    z-index: 555;
}
header nav ul .dropdown .dropdown-options a:hover {
    color: #0a0a23;
    background-color: #ddd;
    border-radius: 5px;
}
header nav ul .dropdown:hover .dropdown-options {
    display: block;
}
header nav ul li:hover {
    background-color: #222222;
}

/* Table Styles */
.table-wrapper {
    margin: 10px 70px 70px;
    box-shadow: 0px 35px 50px rgba(0, 0, 0, 0.2);
}

.buttons-spacing {
    margin-right: 70px;
    margin-left: 70px;
}

.fl-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}
.fl-table td {
    border-right: 1px solid #f8f8f8;
    font-size: 12px;
}
.fl-table td,
.fl-table th {
    text-align: center;
    padding: 8px;
}
.fl-table thead th {
    color: #333;
    --background-color: #4fc3a1;
    background-color: #e1e1e1;
    border-left: 1px solid #eee;
}
.fl-table thead tr:nth-of-type(1) {
    color: #fff;
    background: #324960;
} /*
.fl-table tr:nth-child(even) {
    background: #f8f8f8;
}*/ /*# sourceMappingURL=styles.css.map */

select > option:disabled {
    background: #cdcdcd;
    color: #a3a0a0;
}

.table-bordered thead > tr > th {
    background-color: #ffd452;
    border-left: 2px solid #eee;
}

input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
}

.form-control + .form-control {
    margin-top: 1em;
}
