:root {
    --border-radius: 10px;
    --gray: #b9b9b9;
    --gray-dark: #707070;
    --orange: #E56F23;
    --blue: #09527C;
}

@font-face {
    font-family: Roboto-Light;
    src: url("../fonts/Roboto-Light.ttf");
}

@font-face {
    font-family: Roboto-Bold;
    src: url("../fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: Roboto-Italic;
    src: url("../fonts/Roboto-Italic.ttf");
}

/** TOOLTIP*/

.tooltip.show {
    position: absolute;
    top: 0px;
    left: calc(var(--mouse-x, 0) * 100%);
    opacity: 1;
}

.tooltip-inner {
    position: absolute;
    top: 0px;
    left: calc(var(--mouse-x, 0) * 100%);
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    opacity: 1 !important;
}

.tooltip.bs-tooltip-right .arrow:before {
    position: absolute;
    top: 0px;
    left: calc(var(--mouse-x, 0) * 100%);
    border-right-color: rgba(0, 0, 0, 0.6) !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    position: absolute;
    top: 0px;
    left: calc(var(--mouse-x, 0) * 100%);
    border-left-color: rgba(0, 0, 0, 0.6) !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    position: absolute;
    top: 0px;
    left: calc(var(--mouse-x, 0) * 100%);
    border-bottom-color: rgba(0, 0, 0, 0.6) !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    position: absolute;
    top: 0px;
    left: calc(var(--mouse-x, 0) * 100%);
    border-top-color: rgba(0, 0, 0, 0.6) !important;
}

.tooltip-arrow {
    display: none !important;
}

/** SITE */
.roboto-bold {
    font-family: Roboto-Bold;
}

.border-radius {
    border-radius: var(--border-radius);
}

.box-shadow {
    -webkit-box-shadow: 0px 3px 9px 3px rgba(0,0,0,0.05);
    box-shadow: 0px 3px 9px 3px rgba(0,0,0,0.05);
}

.txt-gray-dark {
    color: var(--gray-dark);
}

b {
    font-family: Roboto-Bold;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
}

p {
    margin-bottom: 0.5rem;
}

label {
    font-family: Roboto-Bold;
    font-size: 12px;
    color: var(--gray-dark);
    width: 100%;
    text-align: center;
}

.search {
    background-color: white !important;
    background: url("/img/search.png") no-repeat right;
    background-size: 20px;
    background-position: right 10px center;
}

/** SCROLLBAR */
::-webkit-scrollbar, ::-webkit-scrollbar:horizontal {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #FCFCFC;
}

.custom-card ::-webkit-scrollbar-track {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #FCFCFC;
}

::-webkit-scrollbar-thumb {
    background: #E9E9E9;
    height: 80px;
}

/** SITE */

body {
    font-family: Roboto-Light;
    background-color: #f5f5f5;
}

.opacity-5 {
    opacity: 0.5;
}

.cursor {
    cursor: pointer;
}

.custom-card {
    border: 0;
    border-radius: var(--border-radius);
    padding-right: 0.5rem;
}

.custom-card {
    font-size: 12px;
    color: var(--gray-dark);
}

.vertical {
    height: 100%;
    vertical-align: middle;
}

.custom-card > div {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.machine-act {
    float: right;
}

.title {
    color: #fff;
    background-color: #09527c;
    border-radius: var(--border-radius);
    padding: 5px 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 14px;
}

.title span, .a-right {
    float: right;
}

table {
    width: 100%;
    border-collapse:separate;
    border-spacing: 0 15px;
}

table select {
    width: 100px;
}

table th,
table td,
table a {
    color: var(--gray-dark) !important;
    vertical-align: middle;
    text-align: center;
    width: 1%;
    white-space: nowrap;
}

table td:first-child {
    text-align: start !important;
    padding-left: 25px;
}

table td:last-child {
    text-align: end !important;
    padding-right: 25px;
}

table th {
    font-size: 12px;
    border-bottom: 0px;
    cursor: pointer;
    white-space: nowrap;
}

table tr {
    margin-bottom: 20px;
}

table td {
    color: var(--gray-dark) !important;
    font-family: Roboto-Bold;
    font-size: 12px !important;
    border-bottom: 0px;
    white-space: nowrap;
}

.border {
    border: 1px solid #EBEBEB;
}

.custom-table tbody {
    background-color: white;
    padding: 5px 20px;
    border-radius: var(--border-radius);
}

.custom-table thead tr {
    background-color: #09527c;
}

.custom-table thead th {
    color: white !important;
    padding-top: 0.3rem!important;
    padding-bottom: 0.3rem!important;
}

.custom-table thead th:first-child {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.custom-table thead th:last-child {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}


/** INPUTS */

::placeholder {
    font-family: Roboto-Italic !important;
    color: var(--gray) !important;
    opacity: 0.7 !important;
    padding-left: 20px !important;
}

textarea, input, select {
    border-color: #EBEBEB !important;
    border-radius: var(--border-radius) !important;
    padding: 0.25rem 0.5rem !important;
}

select {
    -webkit-appearance: listbox !important
}

.btn {
    display: inline-block;
    transition: 300ms;
    border: 0;
    font-family: Roboto-Bold;
    padding: 0.25rem 0.5rem;
    font-size: .875rem;
    padding-left: 40%;
    padding-right: 40%;
    padding-left: 50px;
    padding-right: 50px;
    color: white;
    border-radius: var(--border-radius);
}

.btn svg {
    margin-top: -2px;
}

.btn:hover {
    color: white;
}

.btn-orange {
    background-color: var(--orange);
}

.btn-blue {
    background-color: var(--blue);
}

.btn-gray {
    background-color: var(--gray);
}

.custom-offcanvas {
    width: 60% !important;
    margin-left: 69px;
}

.modal-backdrop, .fade {
    width: 100% !important;
}
