/*estilo contenido main*/
.main {
    top: 370px;
    z-index: 1000;
    background-color: #fafafa;
}

/* estilos odenes */
.recepcionada {
    background-color: orange;
    color: white;
}

.proceso {
    background-color: blue;
    color: white;
}

.entrega {
    background-color: green;
    color: white;
}

.pendiente {
    background-color: red;
    color: white;
}

.list-recepcionada {
    color: orange;
    font-weight: 900;
}

.list-proceso {
    color: blue;
    font-weight: 900;
}

.list-entrega {
    color: green;
    font-weight: 900;
}

.list-pendiente {
    color: red;
    font-weight: 900;
}

/* .recibida-icon::before {
    content: "\f4ed";
    font-family: "Font Awesome 5 Free";
}

.proceso-icon::before {
    content: "\f085";
    font-family: "Font Awesome 5 Free";
}

.pendiente-icon::before {
    content: "\f017";
    font-family: "Font Awesome 5 Free";
}

.entregar-icon::before {
    content: "\f48b";
    font-family: "Font Awesome 5 Free";
} */
.icon-container {
    display: flex;
    text-align: center;
    /* padding: 1rem; */
    /* cursor: pointer; */
    flex-direction: row;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
    width: 60%;
}

.icon-column {
    background-color: #84828272;
    display: flex;
    flex-direction: row;
    text-align: center;
    /* padding: 0.2em; */
    cursor: pointer;
    width: 50%;
    transition: transform 0.3s ease;
    font-weight: 600;
    border-radius: 0.375rem;
    margin: 5px;
    border: 2px solid red;
    align-items: center;
    justify-content: center;
}

.icon-column:hover {
    background-color: #199a054c;
    color: #8282f3;
    border-color: rgb(2, 143, 35);
    transform: scale(1.1);
    font-weight: 700;
}

.icon-column-accion {
    background-color: #84828272;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 0.5em;
    cursor: pointer;
    width: 89%;
    transition: transform 0.3s ease;
    font-weight: 600;
    justify-content: space-between;
    border-radius: 0.375rem;
    margin: 5px;
}

.icon-column-accion:hover {
    background-color: #199a054c;
    color: #8282f3;
    border-color: rgb(2, 143, 35);
    transform: scale(1.1);
    font-weight: 700;
}

.icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    filter: grayscale(50%);
}

.printer-icon {
    background: url('/public/icons/printer.svg') no-repeat center center;
    /* background: url('/public/icons/screwdriver-wrench.svg') no-repeat center center; */

}

.proceso-icon {
    background: url('/public/icons/screwdriver-wrench.svg') no-repeat center center;
}

.recepcionada-icon {

    background: url('/public/icons/inbox.svg') no-repeat center center;

}

.pendiente-icon {

    background: url('/public/icons/triangle-exclamation.svg') no-repeat center center;

}

.entrega-icon {

    background: url('/public/icons/truck-fast.svg') no-repeat center center;

}

.edit-user-icon {
    width: 20px;
    height: 20px;
    background: url('/public/icons/user-pen.svg') no-repeat center center;
}

.new-orden-icon {
    width: 20px;
    height: 20px;
    background: url('/public/icons/folder-plus.svg') no-repeat center center;
}

.btn-hover:hover {
    background-color: aqua;
    transform: scale(1.1);
}

.btn {
    transition: transform 0.3s ease;
}

.cliente-success {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    background-color: green;
    text-align: center;
    border-radius: 5px;
    padding: 5%;
}

.alert-nuevo-cliente {
    background-color: #f38f82c8;
    /* display: flex; */
    border-radius: 5%;
    border: 2px solid #f7270bc8;
    flex-direction: column;
}

/* pruebvas css */
#sidebarToggle {
    width: 50px;
    padding: 4px;
    /* border: 2px solid red; */
    /* background-color: #9f9d9d; */
    box-shadow: 0px 0px 4px 8px #858585;
}

#sidebarToggle:hover {
    background-color: #8f8f8f67 !important;
    transform: scale(1.1);
    border: none;
}

.inline {
    display: flex;


}

.td-orden {
    display: flex;
    justify-content: space-around;
}

.fixed-height-scroll {
    /* border:2px solid red; */
    border-radius: 0px 0px 5px 5px;
    max-height: 85vh;
    overflow-y: hidden;
    /* overflow-y: auto; */
}

/* .dataTables_wrapper {
    position: relative;
}

.dataTables_filter,
.dataTables_paginate {
    position: absolute;
    top: 0;
    right: 0;
} */
#DetalleOrden {
    margin-bottom: 6px;
    padding: 5px;
    font-weight: 500;
    font-size: 1.1em;
    background-color: #e0dddd;
}

#ComentarioOrden {
    margin-bottom: 6px;
    padding: 5px;
    font-weight: 500;
    font-size: 1.1em;
    background-color: #e0dddd;
}

.view-orden:hover {
    background-color: rgb(255, 0, 234);
    color: black;
}

.view-orden:active {
    background-color: rgb(40, 40, 42);
}
.bg-gris{
    background-color: #e0dddd;
}