/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

/* Nuevo  */

.btn-defalut-radius {
    border-radius: 0.375rem !important;
}

input, textarea {
    border-radius: 0.375rem;
}

.btn {
    --bs-btn-border-radius: 2rem;
    border-radius: var(--bs-btn-border-radius);
}

.config-input {
    border: none;
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: calc(1.1em + 0.5rem + 2px);
}

.generic-text-input {
    border: none;
    padding-top: 0px;
    padding-bottom: 0px;
}

.table {
    font-size: 14px !important;
}

.form-select-sm:disabled {
    opacity: 1;
    background-color: lightgray !important;
}

.form-select-sm {
    background-color: white !important;
    border: none;
}

.form-control {
    min-height: 2.5rem;
}

#loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#loading {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
}

#loading-imageX-DISABLED {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
}

.no-row-borders tbody tr td,
.no-row-borders tbody tr th,
.no-row-borders thead tr th {
    border-top: none !important;
}

.padding5 {
    padding: 5px;
}

.btn-padding5 {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
}

.containermain {
    padding-top: 10px;
}

.modal-body {
    background-color: aliceblue;
    padding: 10px;
    max-height: 436px;
    overflow-y: auto;
}

.modal-header, h4, .close {
    background-color: #d7c182;
    color: white !important;
    text-align: center;
    font-size: 30px;
}

.modal-content {
    overflow: hidden;
}

.custom-dropdown-divider-class {
    /*padding-top: 5px;
            padding-bottom: 5px;*/
    background: white;
}

.nav-link.active {
    /*color: #f2ddf2 !important;*/
    color: #87f4ff !important;
}

.nav-link {
    color: white;
}

.custom-dropdown-item-class {
    padding-top: 5px;
    padding-bottom: 5px;
    /* or use a specific height if content is controlled */
    /* height: 50px; */
}

.rounded-border-item {
    background: #3a5058;
    padding: 10px;
    border-radius: 10px;
}

.custom-max-width-menu-item {
    max-width: 250px;
    width: 250px;
}

.modal-footer {
    background-color: #dbd3b9;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .submenu-right {
    display: none;
    position: absolute;
    right: 100%;
    top: -7px;
}

.dropdown-menu > li:hover > .submenu {
    display: block;
}

.dropdown-menu > li:hover > .submenu-right {
    display: block;
}

.table {
    --bs-table-bg: transparent !important;
}

.table-compact {
    :not(caption) > * > * {
        padding: 0.2rem .5rem;
    }
}

.uppercase-input {
    text-transform: uppercase;
}

.table-min-padding td, .table-min-padding th {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}