@-webkit-keyframes spin {
    0% {
        -moz-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
    100% {
        -moz-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
    }
}

#notify img {
    animation: spin 2s linear infinite;
}

#notify {
    display: none;
}

body.login {
    background-color: #e4e8ed;
}

div.login-content {
    width: 400px;
    margin: 0 auto;
    margin-top: 150px;
    padding: 20px;
    border: 2px solid;
    border-radius: 10px;
    border-color: #263746;
    box-shadow: 0px 0 14px 0px #263746;
    background-color: white;
}

div.login-image {
    border-bottom: 2px solid #263746;
    padding-bottom: 5px;
}

div.login-image img {
    height: 75px;
}

div.login-form form {
    display: flex;
    flex-direction: column;
}

div.login-form form input {
    width: 100%;
    margin-top: 20px;
    border-radius: 4px;
    border: 2px solid #263746;
    background: white;
}

div.login-form form input:hover,
div.login-form form input:focus {
    border: 2px solid #0047bb;
    border-radius: 4px;
    outline: none;
}

div.login-form form input[type="submit"]:hover {
    background-color: #0047bb;
    color: white;
}

div.login-form form input[type="submit"] {
    cursor: pointer;
    outline: none;
    font-weight: bold;
}

#message {
    background-color: blue;
    z-index: 5;
    display: none;
    position: absolute;
    top: 0;
    width: 50%;
    left: 25%;
    padding-top: 20;
    border: 2px solid blue;
}

#message-text {
    background-color: white;
}

img.foto {
    height: 50px;
    width: 50px;
}

* {
    margin: 0;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #263746;
    outline: 10px solid #263746;
}

body::-moz-scrollbar {
    width: 10px;
}

body::-moz-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-moz-scrollbar-thumb {
    background-color: #263746;
    outline: 10px solid #263746;
}

html {}

body {
    display: flex;
    flex-direction: column;
    background-color: white;
}

div.nav-redes-sociales a img {
    height: 30px;
    width: 30px;
}

div.nav-redes-sociales {
    padding: 1px;
    background-color: #f1f3f7;
}

div.nav-secundario {
    /*height: 75px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: white;
    justify-content: space-between;
}

div.nav-secundario img {
    /*height: 100px;*/
    padding: 5px;
}

nav.nav-principal {
    display: flex;
    flex-direction: row;
    text-align: center;
    background-color: #263746;
    text-transform: UpperCase;
    color: white;
}

nav.nav-principal Button {
    width: 20%;
    padding: 9px;
    cursor: pointer;
    background: transparent;
    border: none;
    color: white;
}

nav.nav-principal Button:hover {
    background-color: #0047bb;
    border-color: white;
    border-left: 1px solid;
    border-right: 1px solid;
}

nav.nav-principal Button.nav-seleccionado {
    background-color: #0047bb;
    color: white;
    border-color: white;
    border-left: 1px solid;
    border-right: 1px solid;
}

header {
    box-shadow: 0 3px 5px 0 rgba(50, 50, 50, .6);
    width: 100%;
    z-index: 2;
    position: fixed;
}

header img#order-buy {
    height: 75px;
    cursor: pointer;
}

header div#mostrar-pedido {
    position: absolute;
    top: 132;
    width: 100%;
    background: green;
}

header div#customer a:first-child {
    height: 75px;
    margin-right: 15px;
}

header div#customer div.num-items {
    height: 30px;
    width: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #263746;
    position: relative;
    z-index: 555;
    bottom: 75px;
    left: 55px;
    color: white;
    opacity: 1;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
}

header a:hover {
    text-decoration: none;
}

#login {
    display: flex;
    flex-flow: column;
    margin: 0 auto;
}

#login input {
    margin-bottom: 10px;
    padding: 3px;
    border-radius: 5px;
    border-style: groove
}

#login input:focus {
    outline: none;
    border-color: #0047bb;
}

#login input[type="submit"] {
    cursor: pointer;
}

#customer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 550px;
}

#customer .customer-photo {
    height: 100px;
}

#customer .customer-desc {
    padding: 5px;
    font-size: 20px;
    color: #003056;
    font-weight: bold;
}

div.nav-secundario img.exit {
    width: 75px;
    height: 75px;
    margin-left: 15px;
    cursor: pointer;
}

div#big-logo {
    text-align: center;
    margin-top: 200px;
}


/** PEDIDOS **/

section#search {
    width: 100%;
    display: flex;
    height: fit-content;
    align-items: center;
    padding: 10px;
    background-color: white;
    border-bottom: 3px solid #263746;
}

.search-part {
    /*flex-grow: 1;*/
    padding: 10px;
}

.search-part:first-child {
    display: flex;
    /*flex-direction: column;*/
}

.search-part:first-child>div {
    display: flex;
}

.search-part:first-child input[type="text"] {
    /*width: 150px;*/
}

.search-part:first-child .input-group {
    /*width: 150px;*/
}

section#content {
    margin-top: 175px;
}

aside.aside-ordersl {
    display: flex;
    flex-flow: column;
    width: 20%;
    background-color: white;
    z-index: 1;
    height: 100%;
}

#ordersl {}

#lst-pedidos {
    display: flex;
    flex-flow: row wrap;
}

#lst-pedidos .item-pedido {
    /*width: 30%;*/
    display: flex;
    margin: 5px;
    border: 2px solid;
    border-radius: 7px;
    padding-right: 10px;
    background-color: white;
    cursor: pointer;
}

@media only screen and(1862px) {
    #lst-pedidos .item-pedido {}
}

#lst-pedidos .item-pedido .img-pedido {
    height: 100px;
}

.item-pedido .id-pedido {
    width: 100%;
}

.item-pedido .cod-pedido {
    text-transform: uppercase;
    font-weight: bold;
}

.item-pedido .date-pedido {
    padding-bottom: 15px;
}

.item-pedido .recepdate-pedido {}

.item-pedido .total-pedido {
    text-align: right;
    font-weight: bold;
}

.item-pedido .lbl-pedido {
    font-weight: bold;
}

#.item-pedido .img-pedido {
    padding: 10px;
    padding-right: 20px;
}

.aside-ordersl div.item-filtro-pedidos {
    border-bottom: 1px solid;
    padding: 10px;
    cursor: pointer;
}

.aside-ordersl div.item-filtro-pedidos:hover {
    background-color: azure;
}

.aside-ordersl div#filtro-pedidos {
    padding: 20px;
    border-bottom: 1px solid;
}

.sel-pedido {
    width: 100%;
    padding: 50px;
}

.sel-pedido .table-striped tbody tr:nth-of-type(odd) {
    background-color: #f1f3f7;
}

.table-striped .text-align-right {
    text-align: right;
}

.sel-pedido img {
    height: 25px;
    cursor: zoom-in;
}

.btn-ntc {
    background-color: #0047bb;
    color: white;
}

#order-search .input-group {
    flex-wrap: nowrap;
}

#order-search .input-group input[type="text"]:first-child {
    margin-right: 10px;
}

#order-search input[type="text"] {
    /*min-width: 150px;*/
}

#view-image img {
    height: 500px;
}

#view-image div {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    text-align: center;
    margin-top: 200px;
}

#view-image-content {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    display: none;
}

#view-image-content div#blur-scene {
    height: 100%;
    opacity: 0.6;
    background-color: lightgrey;
}

#view-image-content #view-image {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}


/* NEW ORDER */

section#content-new-ordersl {
    margin-top: 175px;
    display: flex;
    background-color: #e4e8ed;
    margin-top: 160;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
}

section#content-new-ordersl aside.left {
    min-width: 250px;
    max-width: 250px;
    border-right: 2px solid #263746;
    background-color: white;
}

section#content-new-ordersl aside.left div {
    position: fixed;
    min-width: 250px;
    max-width: 250px;
    font-size: 13px;
    text-transform: uppercase;
    border-right: 2px solid #263746;
    background-color: white;
    height: 100%;
}

section#content-new-ordersl aside.left ul {
    list-style: none;
    padding: 10px 5px 10px 10px;
    font-weight: bold;
    color: #003056;
    margin: 0;
    cursor: pointer;
}

section#content-new-ordersl aside.left li {
    list-style: none;
    padding: 7px 0px 7px 7px;
    cursor: pointer;
    font-weight: normal;
    color: #6c8298;
    margin-left: 12px;
    cursor: pointer;
}

section#content-new-ordersl aside.left li:hover {
    background-color: #91d5da;
}

section#content-new-ordersl ul.todos-producto {
    cursor: pointer;
}

section#content-new-ordersl article {
    display: flex;
    /*width: 75%;*/
    flex-flow: wrap;
    /*height: fit-content;*/
    align-self: flex-start;
    width: 100%;
    background: #e4e8ed;
}

section#content-new-ordersl aside.right {}

section#content-new-ordersl .art-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 150px;
    /* padding: 10px; */
    width: 300px;
    /* padding: 35px; */
    /* padding: 5px; */
    border: 2px solid #c6c6c5;
    border-radius: 4px;
    margin: 5px;
    color: #6c8298;
    font-weight: bold;
    background-color: white;
}

section#content-new-ordersl .art-content.art-content-none {
    display: none;
}

section#content-new-ordersl .art-content .art-cod {
    /*text-align: center; */
    height: 30px;
    padding: 2px;
    color: #0047bb;
    font-size: 18;
    padding-left: 30px;
    font-weight: bold;
}

section#content-new-ordersl .art-content .art-more-info-img {
    height: 25px;
    float: right;
    cursor: pointer;
}

section#content-new-ordersl .art-content .art-info {
    display: flex;
    flex-direction: row;
}

section#content-new-ordersl .art-content .art-info .first {
    display: flex;
    flex-flow: column;
    height: 115px;
    width: 100px;
}

section#content-new-ordersl .art-content .art-info .first>div {
    height: 92px;
}

section#content-new-ordersl .art-content .art-info .first label {
    margin: 0;
}

section#content-new-ordersl .art-content .art-info .first>div img {
    width: 100px;
    height: auto;
    cursor: pointer;
}

section#content-new-ordersl .art-content .art-info .second {
    display: flex;
    flex-direction: column;
    height: 140px;
    font-size: 12px;
    text-align: left;
    width: 150px;
    padding: 0px 5px;
}

section#content-new-ordersl .art-content .art-info .third {
    display: flex;
    flex-direction: column;
    height: 140px;
    width: 45px;
    justify-content: flex-end;
}

section#content-new-ordersl .art-content .art-info .art-img {
    height: 93px;
}

section#content-new-ordersl .art-content .art-info .art-desc {
    height: 100px;
    padding-right: 10px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    color: #0047bb;
}

section#content-new-ordersl .art-content .art-info .art-desc span {
    color: #6c8298;
}

section#content-new-ordersl .art-content .art-info .second span {
    height: 20px;
}

section#content-new-ordersl .art-content .art-info .second div:nth-child(2),
section#content-new-ordersl .art-content .art-info .second div:nth-child(3) {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

section#content-new-ordersl .art-content .art-info .second div:nth-child(2) span {
    color: #0047bb;
}


/*section#content-new-ordersl .art-content .art-info .second div:nth-child(3) input{
    width: 75px;
    border-radius: 5px;
    /* border-style: solid; */

border: 1px solid #575756;
outline: none;

}
*/ section#content-new-ordersl .art-content .art-info .art-cant {
    height: 20px;
    width: 100px;
    text-align: right;
}
section#content-new-ordersl .art-content .art-info .art-buy-img {
    height: 45px;
    cursor: pointer;
}
section#content-new-ordersl .art-content .art-info .art-stock {
    margin-top: 5px;
    height: 45px;
    cursor: default;
}
section#content-new-ordersl .art-content .art-info .art-stock.art-sin-stock {
    text-decoration: line-through;
    text-decoration-color: red;
}

/** MODAL ARTICULO INFO **/
@keyframes fadein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
}
div.modal-articulo {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5;
    transition: -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    
    -moz-animation: fadein 1s;
    /* Firefox < 16 */
    
    -ms-animation: fadein 1s;
    /* Internet Explorer */
    
    -o-animation: fadein 1s;
    /* Opera < 12.1 */
    
    animation: fadein 1s;
}
div.modal-articulo.modal-articulo-hidden {
    /*display: none;*/
}
div.modal-articulo div.modal-articulo-blur {
    background-color: black;
    opacity: 0.2;
    height: 100%;
}
div.modal-articulo div.modal-articulo-content {
    width: 250px;
    */ height: 400px;
    background: white;
    /* margin: 0 auto; */
    
    position: fixed;
    top: 250px;
    /* margin: 0 auto; */
    /* left: 25%; */
    
    vertical-align: middle;
    /* min-width: 600px; */
    /* min-height: 400px; */
    
    width: 70%;
    margin-left: 15%;
    height: 400px;
    box-shadow: 0 0 14px 2px #888888;
    border-radius: 10px;
}
div.modal-articulo div.modal-articulo-content>div {
    margin: 10px;
}
div.modal-articulo div.modal-articulo-content>div>div {
    width: 100%;
    display: flex;
}
div.modal-articulo div.modal-articulo-content .modal-articulo-content-exit {
    height: 40px;
    cursor: pointer;
    top: 0;
    right: 0;
    position: absolute;
}
.modal-articulo-content-codigo {
    border-bottom: 1px solid;
    width: 75%;
}
.modal-articulo-content-info {
    display: flex;
    flex-direction: row;
    /* height: 100%; */
    
    height: auto;
}
.modal-articulo-content-info .info-img img {
    height: 300px;
}
.modal-articulo-content-info .info-desc {
    width: 100%;
}
.modal-articulo-content-info .info-desc h3 {
    color: #0047bb;
}
.modal-articulo-content-info .info-desc h5 {
    color: #6c8298;
}
.modal-articulo-content-info .info-desc div.info-desc-lista {
    height: 250px;
    overflow-x: hidden;
    overflow-y: scroll;
    color: #6c8298;
}
.modal-articulo-content-info .info-desc div.info-desc-lista li {
    display: block;
}
.modal-articulo-content-info .info-desc div.info-desc-lista::-webkit-scrollbar-thumb {
    background-color: red;
}
.modal-articulo-content-info .info-desc div.info-desc-lista::-webkit-scrollbar {
    width: 0.2em;
}
.modal-articulo-content-info .info-desc div.info-desc-lista::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.modal-articulo-content-info .info-desc div.info-desc-lista::-webkit-scrollbar-thumb {
    background-color: #263746;
    outline: 1px solid red;
}
.modal-articulo-content-info .info-desc div.info-desc-precio {
    text-align: right;
    font-size: 25px;
    font-weight: bold;
    color: #0047bb;
}
.modal-articulo-content-info .info-docs {
    width: 75px;
    margin-top: 20px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-left: 20px;
}
.modal-articulo-content-info .info-docs img {
    height: 50px;
    cursor: pointer;
    /*margin: 5px;*/
    
    width: 50px;
}
.modal-articulo-content-info .info-docs img.default {
    cursor: default;
}
.modal-articulo-content-info .info-docs div {
    text-align: center;
    border: 1px solid;
    border-radius: 10px;
}

/** CARRITO **/
div#car-buy {
    margin: 220px 50px 0px 50px;
}
div#car-buy img.art-img {
    height: 100px;
    cursor: pointer;
}
div#car-buy tr.summatory {
    background-color: black;
    color: white;
    font-weight: bold;
}
div#car-buy .cabecera .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
div#car-buy .cabecera .buttons button {
    padding: 5px;
    margin: 10px;
    width: 300px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    border: 1px solid;
}
div#car-buy .cabecera .buttons button[name="realizar"] {
    background-color: #32c737;
}
div#car-buy .cabecera .buttons button[name="vaciar"] {
    background-color: #ec5353;
}
div#car-buy .cabecera .buttons button[name="volver"] {
    background-color: #51C4D0
}
div#car-buy .cabecera .buttons button:focus {
    outline: none;
}

/** INVOICE **/
div.content {
    display: flex;
    flex-wrap: wrap;
    background-color: #e4e8ed;
}
div.content-item {
    display: flex;
    flex-direction: column;
    width: 300px;
    padding: 2px;
    margin: 5px;
    border: 2px solid #6c8298;
    border-radius: 5px;
    flex-wrap: wrap;
    cursor: pointer;
    background-color: white;
}
div.content-item-none {
    display: none;
}
div.item {
    display: flex;
    flex-direction: row;
}
div.info {
    /*display: flex;*/
    
    flex-grow: 1;
}
div.info h4 {
    color: #0047bb;
}
div.info div {
    color: #6c8298;
    font-weight: bold;
}
div.download img {
    height: 40px;
    cursor: pointer;
    display: none;
}
div.price {
    text-align: right;
    font-size: 17px;
    color: #0047bb;
    font-weight: bold;
    padding-right: 10px;
}
img#line-download {
    height: 75px;
    cursor: pointer;
}
#car-buy table thead tr {
    color: #003056;
}
#car-buy table tbody tr {
    color: #6c8298;
}
#car-buy table tbody tr td {
    vertical-align: middle;
}
#car-buy table tbody tr td img {
    height: 50px;
    cursor: pointer;
}
#car-buy table tbody tr:nth-of-type(odd) {
    background-color: #e4e8ed;
    border-bottom: 2px solid black;
    border-top: 2px solid black;
}
#car-buy table tfoot tr td:first-child {
    color: #003056;
}
#car-buy table tfoot tr {
    color: #32c737;
}

/* Modificaciones posteriores */

/* Para los archivos, añadir ventana con los idiomas que haya disponibles */
@webkit-keyframes viewinfo {
    0% {
        -moz-transform: rotateZ(360deg);
        -webkit-transform: rotateZ(360deg);
        -o-transform: rotateZ(360deg);
        -ms-transform: rotateZ(360deg);
    }
    
    100% {
        -moz-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
        -o-transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
    }
}
.modal-articulo-content-info .info-docs div.down-content {
    display: flex;
    flex-flow: row-reverse;
    position: absolute;
    background-color: white;
    right: 75;
    border: 0px;
    display: none;
    border: 2px solid #6c8298;
}

/*.modal-articulo-content-info .info-docs div.down-content::before{
    border-left-color: #cfac70;
    border-width: 56px;
    top: 50%;
    margin-top: -56px;
}
.modal-articulo-content-info .info-docs div.down-content::after{
    left: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}*/
.modal-articulo-content-info .info-docs div.option-down {
    text-align: left;
    height: 50px;
    border: 0px;
    width: 50px;
}
.modal-articulo-content-info .info-docs div.option-down div.down-content a {
    margin: 0px 5px;
}

/*Barra de búsqueda en Realizar Pedido*/
section#content-new-ordersl article div#filter-article {
    width: 100%;
    padding: 20px 5px;
    background-color: white;
}
section#content-new-ordersl article div#filter-article label {
    color: #66c2cb;
    font-weight: bold;
}
section#content-new-ordersl article div#filter-article input {
    width: 100%;
    color: #6c8298;
    outline: none;
}
section#content-new-ordersl article div#filter-article button {
    padding: 5px;
    margin: 10px;
    /*width: 300px;*/
    
    cursor: pointer;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    border: 0px solid;
    background-color: #32c737;
    outline: none;
}

/*section#content-new-ordersl .art-content .art-info .second div:nth-child(3) input:before{
    content: "+";
}*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}
#car-buy table tbody tr td .input-group-number img {
    height: 20px;
    vertical-align: top;
}
#car-buy table tbody tr td .input-group-number input {
    width: 40px;
    text-align: right;
    height: 20px;
    align-self: center;
    color: #6c8298;
}
.input-group-number {
    display: flex;
    justify-content: flex-end;
}
#art-info .input-group-number img {
    height: 20px;
    align-self: center;
    cursor: pointer;
}
#art-info .input-group-number input {
    width: 40px;
    text-align: right;
    height: 20px;
    align-self: center;
    border: 1px solid #61829a;
    color: #6c8298;
}
#art-info .lbl-cantidad {
    padding: 0;
    margin: 0;
    align-self: center;
}
#control-panel {
    display: flex;
    FLEX-DIRECTION: column;
    WIDTH: 500px;
    padding: 10px;
    border: 2px solid black;
    border-radius: 3px;
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid;
    border-radius: 10px;
    border-color: #263746;
    box-shadow: 0px 0 14px 0px #263746;
    background-color: white;
}
#control-panel input,
#control-panel span,
#control-panel button {
    padding: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    margin: 5px;
}
#control-panel input {
    margin-bottom: 10px;
    padding: 3px;
    border-radius: 5px;
    border-style: groove;
    width: 100%;
    margin-top: 20px;
    border-radius: 4px;
    border: 2px solid #263746;
    background: white;
    text-align: left;
}
#control-panel input:hover {
    border: 2px solid #0047bb;
    border-radius: 4px;
    outline: none;
}
#filters {
    background-color: white;
    border-bottom: 2px solid #263746;
}
#ordersl section#order-types {
    display: flex;
}
#ordersl section#order-types article {
    width: 125px;
    margin: 7px;
    border: 2px solid black;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    background-color: #263746;
    color: white;
    font-weight: bold;
    border-color: #263746;
}
#ordersl section#order-types article:hover,
#ordersl section#order-types article.order-type-selected {
    background-color: #0047bb;
    border-color: #0047bb;
}
section#list-years {
    display: flex;
    flex-wrap: wrap;
}
section#list-years article {
    width: 60px;
    margin: 7px;
    text-align: center;
    border: 2px solid black;
    border-radius: 4px;
    background-color: #263746;
    color: white;
    font-weight: bold;
    border-color: #263746;
    cursor: pointer;
}
section#list-years article:hover,
section#list-years article.item-year-selected {
    background-color: #0047bb;
    border-color: #0047bb;
}
section#list-months {
    display: flex;
}
section#list-months article {
    width: 110px;
    margin: 7px;
    text-align: center;
    border: 2px solid black;
    border-radius: 4px;
    background-color: #263746;
    color: white;
    font-weight: bold;
    border-color: #263746;
    cursor: pointer;
}
section#list-months article:hover,
section#list-months article.item-month-selected {
    background-color: #0047bb;
    border-color: #0047bb;
}
.entity-content-item {
    margin: 5px;
    padding: 5px;
    border: 2px solid #263746;
    border-radius: 4px;
    background-color: white;
}
.entity-content div.entity-content-item-header {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
}
span.entity-content-item-header-status {
    font-weight: bold;
    text-transform: uppercase;
    text-align: right;
    margin-right: 10px;
}
.entity-content-item-header-Pendiente {
    color: red;
}
span.entity-content-item-header-status.partial {
    color: yellow;
}
span.entity-content-item-header-status.complete {
    color: green;
}
span.entity-content-item-view-details {
    margin: 0 5 0 5;
    cursor: pointer;
}
div#filter-article>div {
    display: flex;
    border: 2px solid black;
    border-radius: 50px;
    height: 40px;
}
div#filter-article input {
    width: 100%;
    border: 0px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
div#filter-article img {
    height: 60%;
    align-self: center;
    opacity: 60%;
}
.artrel-list {
    height: 100px;
    overflow-x: auto;
}
.artrel {
    display: flex;
    padding: 5px;
    /* width: 25%; */
    
    border: 2px solid black;
    margin: 5px;
    min-width: 400px;
    max-width: 400px;
    cursor: pointer;
}
.artrel-img {
    height: 100%;
}
.artrel-info {
    display: flex;
    flex-direction: column;
}
.artrel-des {
    color: #0047bb;
    font-weight: bold;
}
.artrel-cod {
    color: #6c8298;
}
.artrel-info {}
span.des-art-new-opts {
    display: flex;
}
span.opts {
    margin: 5 5 5 0;
    border: 1px solid #263746;
    padding: 5px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    background: #263746;
}
span.opts.sel {
    background: #51C4D0;
}
span.opt-choose-sel,
input.opt-serial-input {
    display: none;
}
span.opt-choose-sel.sel,
input.opt-serial-input.sel {
    display: block;
}
input.opt-serial-input {}
span.opt-choose-sel {}