/* Eliminar los elementos flecha de input tipo number */
/*Chrome:*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*Firefox:*/
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
    -moz-appearance: number-input;
}
/*Other*/
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Elemento de formulario customizado */
.form-group-ruc {
    position: relative;
}

.estado {
    position: absolute;
    right: 1rem;
    bottom: 0.3rem;
}

.hint-input {
    position: relative;
}

.hints {
    position: absolute;
    z-index: 50;
    background: #fff;
    width: calc(100% - 15px);
    max-height: 225px;
    overflow-y: scroll;
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
    margin: 0;
}

.hints li {
    list-style: disc !important;
}

.hints li a {
    padding: 0 0.75rem;
    width: 100%;
    height: 100%;
    display: block;
}

.hints li a:hover {
    background-color: rgba(0,0,0,0.1);
}

.empresa-info {
    font-size: 1rem !important;
    margin-bottom: 0;
}

#main-table tbody tr:hover {
    background-color: rgba(0,123,255,0.1);
}

.card-body .todo-list li {
    display: flex !important;
}

.product-image-thumbs {
    cursor: pointer;
}

.product-image-thumbs .active {
    opacity: 0.25;
    cursor: auto;
    border: 2px solid #000 !important;
}

.table-print,
.subtable,
.table-print tr,
.table-print td {
    border: 1px solid #aaa; !important;
}

.subtable {
    margin-bottom: -1px;
}

/*Estilos para frasco*/
.bottle-content {
    display: flex;
    justify-content: center;
}

.bottle-content .frasco {
    width: 130px;
    height: 264px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bottle-content .frasco .tapa {
    width: 65%;
    height: 45px;
    background-color: #666;
    border-radius: 10px 10px 4px 4px;
}

.bottle-content .frasco .cuello {
    width: 50%;
    height: 45px;
    background-color: #ddd;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.bottle-content .frasco .cuello::before,
.bottle-content .frasco .cuello::after {
   content: '';
   width: 114%;
   height: 12px;
   background-color: #ddd;
   display: block;
   position: absolute;
   border-radius: 8px;
   left: 50%;
   transform: skewY(5deg) translateX(-50%);
}

.bottle-content .frasco .cuello::before {
    top: 12px;
}

.bottle-content .frasco .cuello::after {
    bottom: 4px;
}

.bottle-content .frasco .cuerpo {
    width: 100%;
    height: calc(100% - 45px);
    background-color: #ddd;
    border-radius: 25px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
}

.bottle-content .frasco .cuerpo .volumen {
    position: absolute;
     align-self: center;
}

/*Estilo del QR Frasco*/
.qr-code img, .qr-code canvas {
    width: 100% !important;
}

/*Estilos custom de la tabla panel*/
.custom-panel-table {
    border-top: 2px solid #D6DBDF;
}

.custom-panel-table tbody,
.custom-panel-table tr {
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #D6DBDF;
}

.custom-panel-table td {
    padding: 0.75rem 2rem;
    text-align: center;
}

.icon-accion-equipo {
    cursor: pointer;
}

.note-frame {
    margin-bottom: 0 !important;
}

/*.equipos-list li ul li,
.equipos-list li ol li {
    list-style: initial !important;
}*/

/* Iconos avisos accion de listas */
.insst {
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    position: relative;
    top: 4px;
}

.insst i {
    color: #fff;
    font-size: 0.6rem;
    line-height: 20px;
    position: relative;
    top: -4px;
}

.checkst {
    background-color: #28a745;
}

.questst {
    background-color: #ffc107;
}