/* html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
} */

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.noExtraSpace {
    margin: 0 !important;
    padding: 0 !important;
}

.loginBody {
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
}

.login-contenedor {
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 600px;
    margin: 0 auto;
}

.login-contenedor h2 {
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25% 0 0 0;
}

.login-input {
    background: #e5f0f4;
    text-align: left;
    padding: 15px 10px;
    margin: 10px 0;
    width: 85%;
    border-radius: 15px;
    font-size: 1.2rem;
    border: none;
}

.login-submit {
    width: 40%;
    padding: 12px 40px;
    background-color: #e0000b;
    color: #ffffff;
    font-weight: bold;
    border-radius: 13px;
    /* border-color: #bdbdbd; */
    border: none;
}

.loginLogo {
    max-height: 80px;
    /* background-color: #ffffff;
    border-color: #ababab;
    border-style: solid; */
    padding: 25px;
    /* border-radius: 30px;
    border-width: 2px; */
}

.headerLogo {
    max-height: 65px;
    background-color: #ffffff;
    padding: 0 25px;
    margin-right: 4%;
    border-radius: 20px;
}

.optionsPicture {
    max-width: 100%;
    padding: 20px;
    border: solid 1px #d8d8d8;
    border-radius: 15px;
    margin: 20px 0;
}

.header {
    position: absolute;
    top: 0;
    padding: 0 0 40px 0 !important;
    min-height: 100%;
    background-color: #f7f7f7;
}

.head {
    background: #e51b24;
    height: 150px;
}

.footer {
    background-color: #1d1060;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: white;
    padding: 5px 0;
    margin-top: 18px;
}

.box {
    margin: 0 auto;
    max-width: 400px;
    height: 300px;
}

.normal-label {
    text-align: center;
    font-size: 1.2rem;
    padding-top: 5px;
    font-weight: bold;
}

.modalLabel {
    text-align: center;
    font-weight: bold;
}

.modalInput {
    background-color: #ffffff;
    color: black;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(212, 215, 217, 1);
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    padding: 10px;
    width: 80%;
}

.modalInput:read-only:not([type="file"]):not(select) {
    background-color: #d8d8d8 !important;
}

.center {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 25px;
}

.nav-link {
    color: #ffffff !important;
}

.nav-item {
    padding: 17.5px 9px !important;
    background-color: #e51b24;
}

.nav-item:hover {
    background-color: #60060a;
}

.dropdown-menu {
    background-color: #e51b24 !important;
}

.dropdown-item {
    color: #ffffff !important;
}

.dropdown-item:hover {
    background-color: #60060a !important;
}

.search-submit {
    width: 100%;
    margin-top: 15px;
    padding: 10px 0;
    background-color: #1d1060;
    text-align: center;
    color: #ffffff;
    border-radius: 15px;
    border-color: #ffffff;
    border-style: solid;
}

.modal-submit {
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff;
    border-radius: 4px;
    color: white;
    width: 55%;
    padding: 10px;
}

.modalExtraButton {
    border-width: 1px;
    border-style: solid;
    border-color: #ffffff;
    border-radius: 4px;
    color: white;
    width: 80%;
    padding: 10px;
    background: #10bfd1;
}

.modal-submit:disabled,
.search-submit:disabled,
.homeButton:disabled {
    background-color: #8d8d8d !important;
}

/* PAGINACION */

.pagination {
    display: flex;
    align-items: center;
    color: #383838;
    border-radius: 6px;
    padding: 0 !important;
    margin-top: 10px !important;
    justify-content: center;
}

.pages {
    display: flex;
    width: 82% !important;
    overflow: auto;
    scrollbar-width: thin;
}

.pagination button {
    display: inline-block;
    background: #ccc;
    padding: 5px 10px;
    margin: 2px;
    text-align: center;
    outline: 1px solid #494a4f;
    border-radius: 1px;
    border: none;
}

.pagination button.active {
    color: white;
    background-color: #007bff;
}

.activityIndicator {
    border: 30px solid #1d1060;
    border-radius: 50%;
    border-top: 30px solid #e51b24;
    border-bottom: 30px solid #e51b24;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    -webkit-animation: spin 0.5s linear infinite;
    /* Safari */
    /*
        animation-name: spin;
        animation-duration: 1s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    */
    animation: spin 0.5s linear infinite;
    margin: 0 auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.dataContainer {
    background-color: #ffffff;
    /* border-radius: 10px; */
    border-bottom: #dcdcdc 2px solid;
}

.iconContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 0;
    border: none;
}

.iconContainer:hover {
    filter: brightness(70%) !important;
}

.iconContainer:disabled {
    filter: brightness(100%) !important;
}

.yellowIcon {
    font-size: 1.3rem;
    color: #e9be11;
}

.orangeIcon {
    font-size: 1.3rem;
    color: #d36821;
}

.greenIcon {
    font-size: 1.3rem;
    color: #198754;
}

.redIcon {
    font-size: 1.3rem;
    color: #dc3545;
}

.blueIcon {
    font-size: 1.3rem;
    color: #2ea5d5;
}

.grayIcon {
    font-size: 1.3rem;
    color: #b5b5b5;
}

.scarletIcon {
    font-size: 1.3rem;
    color: #752931;
}

.purpleIcon {
    font-size: 1.3rem;
    color: #df52e9;
}

.blackIcon {
    font-size: 1.3rem;
    color: #000000;
}

@media (max-width: 991px) {
    .head {
        height: 180px;
    }

    #mobile-categories {
        display: block;
    }
}

/* NAVBAR COLLAPSABLE */
.mobile-absolute {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
}

@media (min-width: 992px) {
    .mobile-absolute {
        position: static !important;
        top: auto !important;
    }
}

.emptyData {
    text-align: center;
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: #dcdcdc 2px solid;
}

.permitContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.permitCheckbox {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.topForm {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.tableContainer {
    margin-top: 15px !important;
    border-radius: 20px;
}

.tableTitle {
    /* text-align: center; */
    background-color: #e51b24;
    color: #ffffff;
    padding: 5px 10px;
}

.tableElement {
    /* text-align: center; */
    padding: 10px !important;
}

.tableButton {
    width: 100%;
    padding: 10px !important;
    background-color: #ffffff;
}

.modalFlexBox {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.modalImageElement {
    max-height: 115px;
    height: 100%;
    max-width: 300px;
    padding: 15px;
    border-radius: 15px;
    border: solid;
    border-width: 2px;
    background-color: #ffffff;
}

.modalImageButton {
    width: 80%;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    color: #ffffff;
    border-radius: 20px;
}

.orderInfoContainer {
    margin-bottom: 15px;
    background-color: #d8d8d8;
    border-radius: 15px;
}

.orderText {
    text-align: center;
    margin: 15px 0 !important;
    color: #000000;
}

.menuParent {
    background: #ffffff;
    border-radius: 15px;
    border-color: #cccccc;
    border-style: solid;
    border-width: 2px;
}

.menuChild {
    background: #cccccc;
    border-radius: 15px;
    border-color: #999999;
    border-style: solid;
    border-width: 2px;
}

.menuGrandChild {
    background: #999999;
    border-radius: 15px;
    border-color: #666666;
    border-style: solid;
    border-width: 2px;
}

.menuImage {
    max-width: 100%;
    background: #ffffff;
    margin: 10px 0;
    padding: 5px;
    /* border-radius: 15px; */
}

.menuNameContainer {
    display: flex;
    align-items: center;
    padding: 0 !important;
}

.menuParentButton {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 10px;
}

.menuChildButton {
    width: 100%;
    height: 100%;
    background-color: #cccccc;
    border-radius: 10px;
}

.menuGrandChildButton {
    width: 100%;
    height: 100%;
    background-color: #999999;
    border-radius: 10px;
}

.menuSeparator {
    border-style: solid;
    border-radius: 20px;
    border-width: 2px;
    margin: 5px 0;
    border-color: #d3d3d3;
}

.marca {
    width: 200px;
    height: 70px;
    border-radius: 10px;
}

.imageBorderGreen {
    border-color: #009900
}

.imageBorderYellow {
    border-color: #cbcb38
}

.imageBorderBlack {
    border-color: #000000
}

.imageBorderMixed {
    border-bottom-color: #009900;
    border-left-color: #009900;
    border-top-color: #cbcb38;
    border-right-color: #cbcb38;
}

.imageListContainer {
    background-color: #ffffff;
    max-height: 300px;
    overflow: auto;
    margin-bottom: 25px;
}

.deleteImages {
    border: none;
    background-color: red;
    color: #ffffff;
    padding: 10px 0;
    border-radius: 10px;
}

.deleteImages:disabled {
    background-color: #8d8d8d !important;
}

.modal-header {
    background-color: #1d1060 !important;
    color: #ffffff !important;
}

.btn-close {
    filter: invert(1) !important;
}

.modalTableTitle {
    color: #000000;
    padding: 5px 10px;
    border-bottom: 2px solid #1d1060;
}

.modalTableElement {
    background: #cecece;
    padding: 5px;
}

.priceContainer {
    width: 100% !important;
    text-align: right !important;
}

.carouselImage {
    margin: 0 auto !important;
    max-width: 70% !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    /* remove default icon */
    width: 2rem;
    height: 2rem;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '❮';
    /* or '←' / '❮' */
    font-size: 2rem;
    color: red;
    /* change this to your desired color */
}

.carousel-control-next-icon::after {
    content: '❯';
    /* or '→' / '❯' */
}

.homeContainer {
    background-color: #ffffff;
    border-radius: 15px;
    border: 2px solid #e3e3e3;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

.homeButton {
    width: 100%;
    margin: 10px 0;
    padding: 8px;
    border-radius: 15px;
    border: none;
    background-color: #1d1060;
    color: #ffffff;
    margin-top: auto;
}

.categoryParentName {
    color: #1d1060;
    border-bottom: 2px solid #000000;
}

/* button:hover,
.modal-submit:hover,
.search-submit:hover {
    filter: brightness(50%) !important;
} */

/* SELECT2 Padding */
/* Make the whole select2 box behave properly */
.select2-container--default .select2-selection--single {
    display: flex !important;
    align-items: center;
    min-height: 42px;
    box-sizing: border-box;
    position: relative;
    /* This is key for the arrow! */
    border-color: #dee2e6 !important;
}

/* Text rendering */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    margin: 0;
    line-height: normal;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Proper vertical arrow alignment */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
}

.statusClosed {
    background-color: #e6ffe6 !important;
    border-color: #b3ffb3 !important;
}

.statusError {
    background-color: #ffe6e6 !important;
    border-color: #ffb3b3 !important;
}

.statusApproval {
    background-color: #ffe6ff !important;
    border-color: #ffb3ff !important;
}