/* General */
body{
    font-family: Roboto, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
hr{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.pointer{
    cursor: pointer;
}
.disabled{
    cursor: not-allowed;
}
.move {
    cursor: move !important;
}
.btn{
    white-space: normal !important;
}
.only-desktop-block{
    display: block !important;
}
.only-mobile-block{
    display: none !important;
}
.only-desktop-inline{
    display: inline-block !important;
}
.only-mobile-inline{
    display: none !important;
}
.only-desktop-table-cell{
    display: table-cell !important;
}
.only-mobile-table-cell{
    display: none !important;
}
.mw-fit-content{
    max-width: fit-content;
    max-width: -moz-min-content;
}
.no-text-decoration{
    text-decoration: none;
}
.no-text-decoration:hover{
    text-decoration: none;
}
.bg-img-filter-light{
    background-blend-mode: screen !important;
    background-color: #a5a5a5 !important;
}
.shadow-sm-hover:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    transition: .5s;
}
.small-90 *{
    font-size: 90% !important;
}
.font-weight-100{
    font-weight: 100 !important;
}
.font-weight-200{
    font-weight: 200 !important;
}
.font-weight-300{
    font-weight: 300 !important;
}
.font-weight-400{
    font-weight: 400 !important;
}
.font-weight-500{
    font-weight: 500 !important;
}
.font-weight-600{
    font-weight: 600 !important;
}
.font-weight-700{
    font-weight: 700 !important;
}
.font-weight-800{
    font-weight: 800 !important;
}
.font-weight-900{
    font-weight: 900 !important;
}
.mobile-mt-2{
    margin-top: 0;
}
@media (max-width: 767px) {
    .btn i:not(:last-child){
        margin-right: 0 !important;
    }
    .no-padding-mobile{
        padding: 0 !important;
    }
    .mobile-w-100{
        width: 100% !important;
    }
    .mobile-w-80{
        width: 80% !important;
    }
    .only-desktop-inline{
        display: none !important;
    }
    .only-mobile-inline{
        display: inline-block !important;
    }
    .only-desktop-block{
        display: none !important;
    }
    .only-mobile-block{
        display: block !important;;
    }
    .only-desktop-table-cell{
        display: none !important;
    }
    .only-mobile-table-cell{
        display: table-cell !important;
    }
    .mw-fit-content{
        max-width: inherit !important;
    }
    .mobile-mt-2{
        margin-top: .5rem!important;
    }
    .mobile-pl-0{
        padding-left: 0!important;
    }
    .mobile-pr-0{
        padding-right: 0!important;
    }
}

/* backgrounds */
.bg-bordeaux{
    background-color: #c6333d !important;
}


/* Tables */
th.no-wrap{
    white-space: nowrap;
}
td.no-wrap{
    white-space: nowrap;
}
.center_center {
    text-align: center;
    vertical-align: middle !important;
}
.left_center {
    text-align: left;
    vertical-align: middle !important;
}
.right_center {
    text-align: right;
    vertical-align: middle !important;
}
.first-no-border > tbody > tr:first-child > td {
    border-top: none !important;
}

.first-no-border > thead > tr:first-child > td {
    border-top: none !important;
}

.first-no-border > thead > tr:first-child > th {
    border-top: none !important;
}
.card .table td, .card .table th{
    padding-left: .5rem !important;
    padding-right: .5rem !important;
}

/* DataTables */
.dataTables_length > label > select{
    padding: .25rem .5rem;
    border: 1px solid #ced4da;
    border-radius: .25rem !important;
    height: 34px;
}
.dataTables_filter > label > input{
    padding: .25rem .5rem;
    border: 1px solid #ced4da;
    border-radius: .25rem !important;
}

.dataTables_paginate > span > .paginate_button.current{
    border: 1px solid #ced4da;
    border-radius: .25rem !important;
    background: white !important;
}
.dataTables_paginate .paginate_button:hover{
    color: #000 !important;
    background: lightgray !important;
    border: 1px solid #ced4da;
    border-radius: .25rem !important;
}
.dataTables_paginate .paginate_button.disabled:hover{
    cursor: not-allowed !important;
    background: none !important;
    border: none;
}

/* Cards */
.card-body{
    border-radius: inherit;
}
.card-body-border-left{
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    left: 0;
    top: 0;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
}
.card-shadow{
    transition: 0.4s;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.card-shadow:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Inputs */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Dropdown Menu */
.dropdown-menu-sm {
    font-size: 90%;
}