* {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

body {
    background-color: #fbfbfb;
}

@media (min-width: 991.98px) {
    main {
        padding-left: 240px;
    }
}

.form-control {
    min-width: 100%;
}

.my-textarea-height {
    height: 200px !important; /* Or use 'rem', 'em', 'vh', etc. */
    resize: none; /* Allow vertical resizing, or 'none' to disable */
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 58px 0 0; /* Height of navbar */
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
    width: 240px;
    z-index: 600;
}

@media (max-width: 991.98px) {
    .sidebar {
        width: 100%;
    }
}

.sidebar .active {
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.list-group-item {
    font-size: 15px;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
    height: calc(3.0rem);
    /*line-height: 0.9;*/
}

.form-floating > label{
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(0.75) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-select {
    padding-top: 1.2rem;
    padding-bottom: 0.1rem;
}

.form-select {
    background-color: transparent;
    min-width: 100%;
    padding-top: 4px;
    padding-bottom: 4px;
}

.card-body{
    padding: 15px;
}

.hr-blurry{
    margin: 10px;
}

.card-label {
    font-size: 12px;
    padding: 0px;
    color: gray;
}

.card-title{
    font-size: 15px;
    padding: 0px;
}

.card-subtitle{
    font-size: 12px;
}
.card-link {
    font-size: 12px;
    padding: 0px;
    color: gray;
}
/* Controls After Row */
.d-box-static {
    display: inline;
    font-size: small;
    position: initial;
    color: limegreen;
    cursor: pointer;
    padding: 4px 3px 4px 3px;
    background-color: beige;
    border: 1px solid;
    border-color: limegreen;
    border-radius: 5px;
    font-size: small;
    flex-flow: nowrap;
    z-index: 1;
}

.d-box {
    display: none;
    font-size: small;
    position: initial;
    color: limegreen;
    cursor: pointer;
    padding: 4px 3px 4px 3px;
    background-color: beige;
    border: 1px solid;
    border-color: limegreen;
    border-radius: 5px;
    font-size: small;
    flex-flow: nowrap;
    z-index: 0;
}

.linha:hover .d-box {
    display: inline;
    z-index: 1;
}

.card-img-top {
    width: 100%;
    height: 15vh;
    object-fit: cover;
    border-radius: 0.5rem 0 0 0.5rem;
}

.text-nodrop {
    cursor: no-drop;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
    bottom: .5em;
}

.order-link:hover {
    text-decoration: underline;
    text-decoration-color: grey;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 7px;
}

.order-link {
    text-decoration: underline;
    text-decoration-color: grey;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 5px;
    transition: text-underline-offset 250ms;
}

input[type="text"]:disabled {
    background: #ffffff;    
}

input[type="date"]:disabled {
    background: #ffffff;
}

input[type="text"]:disabled.full-disabled {
    background: white;
}