@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');

body {
    background-color   : #eaeaea;
    padding            : 2rem;
    font-family        : "Ubuntu Sans", serif;
    font-optical-sizing: auto;
    font-weight        : <weight>;
    font-style         : normal;
    font-variation-settings:
        "wdth"100;
}

.box {
    padding      : 2rem;
    background   : #fff;
    border-radius: 15px;
}

form {}

label {
    display      : block;
    margin-bottom: 8px;
    font-weight  : bold;
}

input[type="text"],
input[type="date"],
textarea {
    width        : 100%;
    padding      : 8px;
    margin-bottom: 12px;
    border       : 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #4CAF50;
    color           : white;
    padding         : 10px 20px;
    border          : none;
    border-radius   : 4px;
    cursor          : pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.invalid-feedback {
    color    : red;
    font-size: 0.9em;
}

.is-invalid {
    border-color: red !important;
}

.is-valid {
    border-color: green !important;
}

header {
    display        : flex;
    /* Ativa o Flexbox */
    justify-content: space-between;
    /* Alinha os itens nas extremidades */
    align-items    : center;
    /* Centraliza verticalmente */
    padding        : 10px 20px;
    /* Adiciona um espaçamento interno */

    /* Cor de fundo opcional */

    /* Borda inferior opcional */
}

header h1 {
    font-size: 2rem;
}

.menu ul {
    list-style: none;
    /* Remove os marcadores da lista */
    margin    : 0;
    /* Remove a margem padrão */
    padding   : 0;
    /* Remove o padding padrão */
    display   : flex;
    /* Alinha os itens do menu horizontalmente */
}

.menu ul li {
    margin-left: 20px;
    /* Espaçamento entre os itens do menu */
}

.menu ul li a {
    text-decoration: none;
    /* Remove o sublinhado dos links */
    color          : #343434;
    /* Cor dos links */

    /* Texto em negrito */
    padding: 10px;
}

.menu ul li a:hover {
    color: #0056b3;
    /* Cor dos links ao passar o mouse */
}

body {
    font-family: 'Raleway', sans-serif;
    background : #f9f9f9;
}

.p-30 {
    padding: 30px;
}

.main-datatable {
    padding      : 0px;
    border-bottom: 0;
}

.d-flex {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
}

.card_body {
    background-color  : white;
    border            : 1px solid transparent;
    border-radius     : 2px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow        : 0 1px 1px rgba(0, 0, 0, 0.05);
}

.main-datatable .row {
    margin: 0;
}

.searchInput {
    width          : 50%;
    display        : flex;
    align-items    : center;
    position       : relative;
    justify-content: flex-end;
    margin         : 20px 0px;
    padding        : 0px 4px;
}

.searchInput input {
    border       : 1px solid #e5e5e5;
    border-radius: 50px;
    margin-left  : 8px;
    height       : 34px;
    width        : 100%;
    padding      : 0px 25px 0px 10px;
    transition   : all .6s ease;
}

.searchInput label {
    color      : #767676;
    font-weight: normal;
}

.searchInput input:placeholder-shown {
    width: 13%;
}

.searchInput:hover input:placeholder-shown {
    width : 100%;
    cursor: pointer;
}

.searchInput:after {
    font-family: 'FontAwesome';
    color      : #d4d4d4;
    position   : relative;
    content    : "\f002";
    right      : 25px;
}

.dim_button {
    display        : inline-block;
    color          : #fff;
    text-decoration: none;
    text-transform : uppercase;
    text-align     : center;
    padding-top    : 6px;
    background     : rgb(57, 85, 136);
    margin-right   : 10px;
    position       : relative;
    cursor         : pointer;
    font-weight    : 600;
    margin-bottom  : 20px;
}

.createSegment a {
    margin-bottom: 0px;
    border-radius: 50px;
    background   : #ffffff;
    border       : 1px solid #007bff;
    color        : #007bff;
    transition   : all .4s ease;
}

.createSegment a:hover,
.createSegment a:focus {
    transition: all .4s ease;
    background: #007bff;
    color     : #fff;
}

.add_flex {
    display        : flex;
    justify-content: flex-end;
    padding-right  : 0px;
}

.main-datatable .dataTable.no-footer {
    border-bottom: 1px solid #eee;
}

.main-datatable .cust-datatable thead {
    background-color: #f9f9f9;
}

.main-datatable .cust-datatable>thead>tr>th {
    border-bottom-width: 0;
    color              : #443f3f;
    font-weight        : 600;
    padding            : 16px 15px;
    vertical-align     : middle;
    padding-left       : 18px;
    text-align         : center;
}

.main-datatable .cust-datatable>tbody td {
    padding       : 10px 15px 10px 18px;
    color         : #333232;
    font-size     : 13px;
    font-weight   : 500;
    word-break    : break-word;
    border-color  : #eee;
    text-align    : center;
    vertical-align: middle;
}

.main-datatable .cust-datatable>tbody tr {
    border-top: none;
}

.main-datatable .table>tbody>tr:nth-child(even) {
    background: #f9f9f9;
}

.btn-group.open .dropdown-toggle {
    box-shadow: none;
}

.main-datatable .dropdown_icon {
    display      : inline-block;
    color        : #8a8a8a;
    font-size    : 12px;
    border       : 1px solid #d4d4d4;
    padding      : 10px 11px;
    border-radius: 50%;
    cursor       : pointer;
}

.btn-group i {
    color : #8e8e8e;
    margin: 2px;
}

.main-datatable .actionCust a {
    display      : inline-block;
    color        : #8a8a8a;
    font-size    : 12px;
    border       : 1px solid #d4d4d4;
    padding      : 10px 11px;
    margin       : -9px 3px;
    border-radius: 50%;
    cursor       : pointer;
}

.main-datatable .actionCust a i {
    color : #8e8e8e;
    margin: 2px;
}

.main-datatable .dropdown-menu {
    padding      : 0;
    border-radius: 4px;
    box-shadow   : 10px 10px 20px #c8c8c8;
    margin-top   : 10px;
    left         : -65px;
    top          : 32px;
}

.main-datatable .dropdown-menu>li>a {
    display      : block;
    padding      : 12px 20px;
    clear        : both;
    font-weight  : normal;
    line-height  : 1.42857;
    color        : #333333;
    white-space  : nowrap;
    border-bottom: 1px solid #d4d4d4;
}

.main-datatable .dropdown-menu>li>a:hover,
.main-datatable .dropdown-menu>li>a:focus {
    color     : #fff;
    background: #007bff;
}

.main-datatable .dropdown-menu>li>a:hover i {
    color: #fff;
}

.main-datatable .dropdown-menu:before {
    position           : absolute;
    top                : -7px;
    left               : 78px;
    display            : inline-block;
    border-right       : 7px solid transparent;
    border-bottom      : 7px solid #d4d4d4;
    border-left        : 7px solid transparent;
    border-bottom-color: #d4d4d4;
    content            : '';
}

.main-datatable .dropdown-menu:after {
    position     : absolute;
    top          : -6px;
    left         : 78px;
    display      : inline-block;
    border-right : 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    border-left  : 6px solid transparent;
    content      : '';
}

.dropdown-menu i {
    margin-right: 8px;
}

.main-datatable .dataTables_wrapper .dataTables_paginate .paginate_button {
    color           : #999999 !important;
    background-color: #f6f6f6 !important;
    border-color    : #d4d4d4 !important;
    border-radius   : 40px;
    margin          : 5px 3px;
}

.main-datatable .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color     : #fff !important;
    border    : 1px solid #3d96f5 !important;
    background: #4da3ff !important;
    box-shadow: none;
}

.main-datatable .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.main-datatable .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color       : #fff !important;
    border-color: transparent !important;
    background  : #007bff !important;
}

.main-datatable .dataTables_paginate {
    padding-top: 0 !important;
    margin     : 15px 10px;
    float      : right !important;
}

.mode {
    padding              : 4px 10px;
    line-height          : 13px;
    color                : #fff;
    font-weight          : 400;
    border-radius        : 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius   : 1rem;
    -ms-border-radius    : 1rem;
    -o-border-radius     : 1rem;
    font-size            : 11px;
    letter-spacing       : 0.4px;
}

.mode_on {
    background-color: #09922d;
}

.mode_off {
    background-color: #8b9096;
}

.mode_process {
    background-color: #ff8000;
}

.mode_done {
    background-color: #03a9f3;
}

@media only screen and (max-width:1200px) {
    .overflow-x {
        overflow-x: scroll;
    }

    .overflow-x::-webkit-scrollbar {
        width : 5px;
        height: 6px;
    }

    .overflow-x::-webkit-scrollbar-thumb {
        background-color: #888;
    }

    .overflow-x::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }
}