@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css');
@import url('https://cdn.datatables.net/v/bs5/dt-1.13.8/datatables.min.css');

:root {
    --primary-color: #e2241c;
    --secondary-color: #3a3a3a;
    --body-color: #f1f1f2;
    --table-border-color: #ffcecc;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 0;
    background-color: var(--body-color) !important;
}

* {
    box-sizing: border-box;
    outline: 0 !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: var(--secondary-color) !important;
}

.bg-dark {
    background-color: var(--primary-color) !important;
}

.logos {
    height: 56px;
    width: 100%;
}

.logos img {
    width: 180px;
    height: auto;
}

hr.logos-hr {
    margin: 0;
}

#content {
    width: 100%;
    position: relative;
    margin-right: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 1px solid #fff !important;
    box-shadow: none !important;
    background: unset;
}

.head-top {
    border-left: 1px solid #f95c55;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: var(--table-border-color) !important;
}

thead tr th,
tfoot tr th {
    font-weight: 500;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #ebebeb;
}

.active>.page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.active>.page-link:hover {
    color: #fff;
}

.page-link {
    color: #3a3a3a;
}

.page-link:hover {
    color: var(--primary-color);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 0 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:focus {
    box-shadow: none;
    outline: none;
}

.nav-link i {
    margin-right: 6px;
}


nav.navbar.navbar-dark .btn {
    font-weight: 500;
    color: var(--body-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    background-color: var(--secondary-color);
}

nav.navbar.navbar-dark .btn:hover {
    color: var(--secondary-color);
    border: 1px solid var(--body-color);
    background-color: var(--body-color);
}

table.dataTable .btn-primary {
    font-weight: 500;
    color: var(--body-color);
    border: 1px solid var(--secondary-color);
    border-radius: 0;
    background-color: var(--secondary-color);
}

table.dataTable .btn-primary:hover,
table.dataTable .btn-primary:focus {
    color: var(--body-color);
    border: 1px solid #636363;
    background-color: #636363;
}

table.dataTable .btn {
    font-weight: 500;
    border-radius: 0;
    width: 100%;
    margin-bottom: 2px;
}

table.dataTable a:not(.dataTable a.btn) {
    color: #1486c6;
    text-decoration: none;
}

a.saveAsNew {
    display: block;
    margin-top: 6px;
    color: #ce1919 !important;
}

table.dataTable a:hover:not(.dataTable a.btn) {
    color: #e4807d;
}

.dataTables_filter .form-control,
.dataTables_length .form-select {
    border: 1px solid var(--table-border-color);
}

select.match-select {
    max-width: 260px;
}

form#matchForm {
    padding: 15px;
    background: #fafafa;
    border: 1px solid lightgray;
}

.sidebar-sticky {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
}

#import-verify.form-control {
    width: auto;
    max-width: 256px;
}

.form-control.select_company:disabled {
    background: transparent;
    border: 0;
    padding: 0;
    white-space: normal;
    word-wrap: break-word;
    border-radius: 0;
    display: none;
}

textarea.form-control.select_company {
    min-width: 150px;
    resize: none;
    height: 100px;
}

div#listsSelector {
    padding: 0 8px;
    max-height: 200px;
    overflow: overlay;
}

.form-signin {
    background: #f5f5f5;
    height: 100vh;
    display: flex;
}

main.form-signin form {
    max-width: 395px;
    width: 100%;
    align-self: center;
    margin: 0 auto;
}

.form-signin .form-floating:focus-within {
    z-index: 2;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.import_verify_submit {
    position: absolute;
    right: 20px;
    top: 30px;
}

.footers {
    height: 35px;
    background-color: var(--primary-color);
    width: 100%;
}

select.select_company:not(:disabled) {
    display: none;
}

.companySelector a {
    cursor: pointer;
}

.responsive-table-250 div.dataTables_wrapper div.dt-row {
    max-height: calc(100vh - 250px);
    overflow: auto;
    margin: 0;
}

.responsive-table div.dataTables_wrapper div.dt-row {
    max-height: calc(100vh - 180px);
    overflow: auto;
    margin: 0;
}

.form-check.text-center.form-switch .form-check-input {
    margin: 0 auto;
}

.previewImg {
    max-height: 230px;
    margin: 0 auto;
}

.uploadImage {
    background: var(--bs-body-bg);
    border: 1px solid gray;
    padding: 25px;
}