.text-bold {
    font-weight: bold;
}
.text-italic {
    font-style: italic;
}
.text-bold-italic {
    font-weight: bold;
    font-style: italic;
}

.btn-shadow,
.box-shadow {
    box-shadow: 5px 5px 10px grey;
}

.box-shadow:focus {
    transform: translateY(-4px);
    border-color: rgb(20, 155, 218);
    transition: all 0.2s ease;
}

.box-shadow:not(:focus) {
    transition: all 0.2s ease;
}

.btn-round-shadow,
.btn-round {
    box-shadow: 5px 5px 10px grey;
    border-radius: 100px;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    /* padding-bottom: 0.2rem; */
    /* padding: 0.375rem 0.75rem; */
    font-size: 1rem;
    line-height: 1.5;
}

.btn-round-shadow:hover,
.btn-shadow:hover {
    transform: translateY(-4px);
    box-shadow: 0px 5px 15px rgb(125, 229, 255);
    transition: all 0.2s ease;
}

.btn-round-shadow:not(:hover),
.btn-shadow:not(:hover) {
    transition: all 0.2s ease;
}

.text-shadow-gray {
    text-shadow: 1px 1px 10px rgb(170, 170, 170);
    font-weight: bold;
    font-style: italic;
    /* standard gradient background */
    /* background: linear-gradient(rgb(255, 255, 255), rgb(0, 0, 0)); */

    /* clip informático */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.btn-round-shadow:disabled,
.btn-round:disabled,
.btn-shadow:disabled {
    color: #fff !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
}

.input-focus:focus {
    transform: translateY(-6px) scale(1.015);
    transition: all 0.2s ease;
}

.table-box-shadow {
    border-collapse: collapse;
    border-spacing: 0;
    font: normal 13px Arial, sans-serif;
    border: none;
    box-shadow: 5px 5px 5px rgb(0, 0, 0, 0.5);
    width: 100%;
}

.table-box-shadow thead th {
    background-color: #83afd5;
    color: #ffffff;
    font-weight: bold;
    font-style: italic;
    font-size: 1.15em;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    /* position: sticky;
    top: 0; */

    /* text-shadow: 2px 2px 1px rgb(162, 162, 162); */
    /* white-space: nowrap; */
}

.table-box-shadow thead{
    position: sticky;
    top: 0;
}

.table-box-shadow tbody td {
    vertical-align: middle;
    color: rgb(124, 124, 124);
    padding: 10px;
}

.table-box-shadow thead th:first-child {
    border-radius: 10px 0 0 0;
}
.table-box-shadow thead th:last-child {
    border-radius: 0 10px 0 0;
}
.table-box-shadow tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}
.table-box-shadow tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.table-box-shadow tbody > tr:hover {
    outline: none;
    -webkit-box-shadow: inset 0 0 10px #79c0fd;
    box-shadow: inset 0 0 10px #79c0fd;
}
.line-bottom{
    /* border-bottom: 2px solid #dfdfdf; */
    border-radius: 0 0 0 0;
}
.line-right{
    border-right: 2px solid #dfdfdf;
    border-radius: 0 0 0 0 !important;
}
.line-right-gray{
    border-right: 2px solid #c9c9c9;
    border-radius: 0 0 0 0;
}
.pd-0 tbody td{
    padding: 0px;
}
.pd-1 tbody td{
    padding: 5px;
}
.i-cursor {
    cursor: pointer;
}

.i-cursor--active {
    cursor: pointer;
    color: rgb(53, 218, 20);
    text-shadow: 2px 2px 1px rgba(53, 218, 20, 0.494);
}

.center-obj {
    display: flex;
    justify-content: center;
    align-items: center;
}

.all-th-center thead th {
    text-align: center;
    vertical-align: middle;
}
.all-td-center tbody td {
    text-align: center;
    vertical-align: middle;
}

.table-scroll {
    min-height: 10em;
    /* height: 33em; */
    max-height: 65em;
    /* width: 50em; */
    overflow-y: scroll;
}

.text-white{
    color:white !important;
}

.table-p0 tbody tr td{
    padding: 3px !important;
}