td {
    text-align: center;
}

tr,
th {
    text-align: center;
}

/* tr:hover td {background-color: lightyellow; */
/*              color:black;} */

/* tr:hover th {background-color: lightyellow; */
/*              color:black;} */
#table tr {
    cursor: pointer;
}


thead th {
    position: sticky;
    position: -webkit-sticky;
    top: 0px;
    /* z-index: 10; */
    /* background-color: white;
    color:black; */
}

/* .selected{ */
/*     background-color: orange; */
/*     color: black; */
/* } */
.subtotal {
    /* background-color: yellow; */
    /* color: blue; */
    font-weight: bold;
    font-size: 1.1em;
}

.total {
    /* background-color: lightyellow; */
    color: black;
    font-weight: bold;
}

.total-pivot {
    font-weight: bold !important;
    font-size: 1.1em;
}

.block:not(:last-child) {
    margin-bottom: 1.5rem;
}


/* Menu responsive */

.nav-bar {
    background: orange;
    padding: 20px;
    display: block;
    color: white;
    cursor: pointer;
    font-size: 1.5em;
    width: 100%;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #555;
    width: 100%;
    margin-left: -100%;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.submenu {
    height: 0;
    overflow: hidden;
    transition: all 0.5s;
}

.menu__link {
    display: block;
    padding: 20px;
    color: white;
    font-size: 1.2em;
    text-decoration: none;
}

.menu__link:hover {
    background: #444;
    color: white;
}

.email__link {
    display: block;
    padding: 20px;
    color: antiquewhite;
    font-size: 1.2em;
    text-decoration: none;
}

.mostrar {
    margin-left: 0;
    overflow: visible;
    height: auto;
}

@media(min-width:1024px) {
    .nav-bar {
	display: none;
    }

    .menu {
	margin-left: 0;
	display: flex;
	justify-content: flex-end;
	overflow: visible;
	height: auto;
    }
}

/* grid buscar */

.grid-buscar {
    display: grid;
    grid-template-columns: 1fr 20%;
}

/* modal */
.xcard {
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 6px 0px 10px gray;
}

.xmodal {
    width: 30vw;
    height: 80vh;
    position: fixed;
    top: 0;
    left: 0;
    /* transform: translate(-50%, -50%); */
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.xmodal-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.xclose {
    position: absolute;
    top: 0;
    right: 0;
}

.btn-close {
    color: purple;
    background-color: white;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
}

/* input textarea suggestions */
.textarea {
    border: solid 1px purple;
    border-radius: 5px;
}

.textarea:focus {
    border: solid 2px turquoise;
    border-radius: 5px;
}

.textarea-font {
    font-size: 1.25em;
}

.input:focus {
    border: solid 2px turquoise;
    border-radius: 5px;
}

.input-dark {
    /* background-color:#282f2f !important; */
    background-color: transparent !important;
    color: white !important;
    font-size: 1.1em !important;
}

.input-dark::placeholder {
    font-weight: bold !important;
    font-size: 1.2em !important;
    color: antiquewhite !important;
}

.suggestions {
    max-height: 200px;
    width: 100%;
    border-radius: 5px;
    overflow: auto;
}

.suggestions>div {
    padding: 5px;
    padding-left: 15px;
    font-size: 1em;
    color: #999;
    cursor: pointer;
}

.suggestions>div:hover {
    background: black;
    color: white;
}

/* mora cliente cancelado */
.mora {
    background-color: red;
}

.cliente {
    background-color: yellow;
}

.cancelado {
    background-color: mediumaquamarine;
}

.cancelada {
    background-color: pink;
    color: grey;
}

/* placeholder */
:placeholder-shown {
    font-size: larger;
    font-weight: bold;
}

.inactive {
    background-color: rgb(178, 42, 32);
}

.active {
    background-color: rgb(13, 130, 148);
}

.color1 {
    background-color: rgb(178, 42, 32);
    color: black;
    text-align: center;
}

.color2 {
    background-color: rgb(178, 127, 32);
    color: black;
    text-align: center;
}

.color3 {
    background-color: rgb(176, 178, 32);
    color: black;
    text-align: center;
}

.color4 {
    background-color: rgb(32, 178, 98);
    color: black;
    text-align: center;
}

.color5 {
    background-color: rgb(147, 196, 193);
    color: black;
    text-align: center;
}

.color6 {
    background-color: orange;
    color: black;
    text-align: center;
}

.color7 {
    background-color: rgb(80, 89, 214);
    color: black;
    text-align: center;
}

.color8 {
    background-color: rgb(13, 130, 148);
    color: black;
    text-align: center;
}

.color9 {
    background-color: rgb(141, 11, 104);
    color: black;
    text-align: center;
}

.color0 {
    background-color: rgb(127, 19, 189);
    color: black;
    text-align: center;
}

.tablebuscar tr:hover {
    cursor: pointer;
}

.xtags {
    display: inline-flex;
    align-items: start;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.pointer {
    cursor: pointer;
}

.center {
    margin: 0 auto !important;
}

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-flow: column;
}

.grid {
    display: grid;
    row-gap: 10px;
}

.flex-center {
    display: flex;
    align-items: center;
}

.flex-left {
    display: flex;
    align-items: flex-start;
}

.flex-right {
    display: flex;
    justify-content: end;
}

.flex-baseline-space {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.flex-baseline {
    display: flex;
    align-items: baseline;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.table5 tr:nth-child(n+7) {
    display: none;
}

.gap-1 {
    gap: 10px;
}
.gap-2 {
    gap: 20px;
}

.input-billete {
    width: 350px;
    font-size: 3em !important;
    font-weight: bold !important;
    text-align: center;
}

.div-billete {
    width: 350px;
    font-size: 3em;
    text-align: right;
    color: red;
}

.div-billete-total {
    font-weight: bold;
}

.div-billete:before {
    content: '$';
}

.input-arqueo-negativo {
    font-weight: bold;
    color: red !important;
}

.input-arqueo-positivo {
    font-weight: bold;
    color: orange !important;
}

.pesos {
    text-align: right !important;
}

.pesos:before {
    content: "$\00a0";
    float: left;
}

.perc {
    text-align: right !important;
}

.perc:after {
    content: '%';
}

.cuotavencida {
    color: pink;
}

.red {
    color: red !important;
}

.santander {
    background-color: rgb(255, 20, 32) !important;
    color: white !important;
}

.frances {
    background-color: rgb(7, 33, 70) !important;
    color: white !important;
}

.orange {
    color: orange !important;
}

.strike {
    text-decoration: line-through;
}

.grande {
    font-size: 1.5em;
}

.bancos {
    color: dodgerblue;
}

.negativo {
    color: orange;
    font-weight: bold;
}

.floated {
    float: left;
    margin-right: 5px;
}

.cur::before {
    content: "$";
}

.cur {
    text-align: right !important;
}

.right {
    text-align: right !important;
}

.children {
    font-size: 1em;
}

.deudora {
    background-color: tomato;
}


.procesada {
    background-color: gainsboro;
    color: black;
}

.noprocesada {
    background-color: yellow;
    color: black;
}

input:required {
    background-color: lightyellow;
}

input:required:valid {
    background-color: white;
    border: 1px solid green;
}

input:required:invalid {
    background-color: white;
    border: 1px solid red;
}

.labelinput {
    font-weight: bold;
    font-size: 1.2em;
    vertical-align: center;
    height: 2.5em;
}

.ultpago60 {
    background-color: lightyellow;
    color: black;
}

.ultpago60campo {
    background-color: #8B0808;
    color: white;
}

.wapp {
    background-color: darkgreen;
    color: white;
}

.inputrbo {
    color: black !important;
    background-color: lightyellow !important;
    font-size: 2em !important;
    font-weight: bold !important;
    text-align: center !important;
}

.text-big {
    font-size: 1.5em !important;
}

.bold {
    font-weight: bold !important;
    font-size: 1.1em !important;
}

.subtitle-table:not(:last-child),
.title-table:not(:last-child) {
    margin-bottom: 0rem !important;
    margin-top: 0rem !important;
}

.navbar-link {
    font-size: 1.3em;
    font-weight: bold;
    min-width: 100px;
}

.navbar-item {
    font-size: 1.21em;
}

.navbar-divider {
    height: 5px;
}

.no-mb {
    margin-bottom: 0rem !important;
}

.asignada {
    background-color: indianred;
    color: white;
}

.norendido {
    background-color: slategrey !important;
    color: orange !important;
}

.wapp_respuesta {
    background-color: rgb(31, 29, 29) !important;
    color: whitesmoke !important;
}

button.copied::before {
    content: '\2714';
    /* Código unicode para el símbolo de tilde */
    margin-right: 5px;
}

.inline {
    display: inline;
}

.emoji {
    font-size: 30px;
    display: inline-block;
    margin-right: 0.25rem;
}

.btn-whatsapp {
    position: fixed;
    z-index: 999;
    bottom: 50px;
    right: 50px;
}

.btn-whatsapp:before,
.btn-whatsapp:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 4px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #00e676;
    opacity: 0;
    animation: onda 1.7s infinite;
}

.btn-whatsapp:before {
    animation-delay: 1s;
}

.btn-whatsapp:after {
    animation-delay: 1.3s;
}

.btn-whatsapp img {
    position: relative;
    z-index: 2;
}

@keyframes onda {
    0% {
	transform: scale(1);
    }

    15% {
	opacity: 1;
    }

    100% {
	opacity: 0;
	transform: scale(2.5);
    }
}

.btn-whatsapp-mobile {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
}

.btn-whatsapp-mobile:before,
.btn-whatsapp-mobile:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 4px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #00e676;
    opacity: 0;
    animation: onda 1.7s infinite;
}

.btn-whatsapp-mobile:before {
    animation-delay: 1s;
}

.btn-whatsapp-mobile:after {
    animation-delay: 1.3s;
}

.btn-whatsapp-mobile img {
    position: relative;
    z-index: 2;
}

.textlegible {
    font-size: 1.25em !important;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.hidden {
    display: none;
}

.flex-col-tablas {
    display: flex;
    flex-wrap: nowrap;
    flex-grow: 3;
    flex-direction: column;
}

.span-tablas {
    font-size: 1.2em !important;
    color: black !important;
    margin: 1px;
}

.flex-nowrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.text-medium {
    font-size: 1.25em;
}

.bcofrances {
    background-color: rgb(7, 33, 70) !important;
    color: white !important;
}

.bconaranjax {
    background-color: #FF5203 !important;
    color: white !important;
}

.bcomacro {
    background-color: #0B1C32 !important;
    color: white !important;
}

.bcosantander {
    background-color: rgb(255, 20, 32) !important;
    color: white !important;
}

.bcosantandersds {
    background-color: rgb(144, 12, 63) !important;
    color: white !important;
}

.bcogalicia {
    background-color: #FA6400 !important;
    color: white !important;
}

.bcosuperville {
    background-color: #E7446C !important;
    color: white !important;
}
.bcopatagonia {
    background-color: #001441 !important;
    color: white !important;
}

.pad-null {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.left{
    text-align: left !important;
}
 @media only screen and (min-width: 1024px) {
     .custom-title {
         font-size: 4em;
         margin-bottom: 10px;
     }
 }

 @media only screen and (max-width: 768px) {
     .custom-title {
         font-size: 2em;
         margin-bottom : 10px;
     }
 }

