.style-action {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 7px;
    padding-right: 7px
}

.button-voltar {
    height: 23px;
    padding-top: 0px;
    margin-right: 15px
}

/* ------ CSS PRINT CUPOM NÃO FISCAL ------ */

.ttu {
    text-transform: uppercase;
}

.printer-ticket {
    display: table !important;
    width: 100%;
    max-width: 100%;
    font-weight: light;
    line-height: 1.3em;
    background-color: #FFFFF0;
}

.printer-ticket,
.printer-ticket * {
    font-size: 15px;
}

.printer-ticket th:nth-child(2),
.printer-ticket td:nth-child(2) {
    width: 100px;
}

.printer-ticket th:nth-child(3),
.printer-ticket td:nth-child(3) {
    width: 90px;
    text-align: right;
}

.printer-ticket th {
    font-weight: inherit;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px dashed #BCBCBC;
}

.printer-ticket tbody tr:last-child td {
    padding-bottom: 10px;
}

.printer-ticket tfoot .sup td {
    padding: 10px 0;
    border-top: 1px dashed #BCBCBC;
}

.printer-ticket tfoot .sup.p--0 td {
    padding-bottom: 0;
}

.printer-ticket .title {
    font-size: 1.5em;
    padding: 15px 0;
}

.printer-ticket .top td {
    padding-top: 10px;
}

.printer-ticket .last td {
    padding-bottom: 10px;
}

/* ----------------------------------------------- */


/* ---------- BOTÃO + - PRODUTOS GRADE ----------- */

.num-block {
    float: left;
    width: 100%;
    padding: 5px 10px;
}

.skin-1 .num-in {
    display: flex;
    justify-content: space-evenly;
}

.skin-1 .num-in span {
    display: block;
    float: left;
    width: 25px;
    height: 20px;
    line-height: 32px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.skin-1 .num-in span.dis:before {
    background-color: #ccc !important;
}

.skin-1 .num-in input {
    float: left;
    width: 35px;
    height: 25px;
    border: 1px solid #a5a5ab;
    border-radius: 5px;
    color: #000;
    text-align: center;
    padding: 0;
    margin: 0 30px;
}

.skin-1 .num-in span.minus:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: #000;
    top: 50%;
    left: 0;
}

.skin-1 .num-in span.plus:before,
.skin-1 .num-in span.plus:after {
    content: "";
    position: absolute;
    right: 0px;
    width: 15px;
    height: 2px;
    background-color: #000;
    top: 50%;
}

.skin-1 .num-in span.plus:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* ------------------------------------------- */

#myModal .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

#myModal .modal-body {
    position: relative;
    padding: 0px;
    min-height: 400px;
    background: #ccc;
}

#myModal .close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    opacity: 1;
}

#myModal #image {
    min-height: 200px;
}


/* Search */
.searchbox {
    position: relative;
    min-width: 50px;
    width: 0%;
    height: 40px;
    overflow: hidden;
    float: right;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}

.searchbox-input {
    position: absolute;
    max-width: 500px;
    top: 4px;
    right: 0;
    border: 0;
    width: 70%;
    height: 30px;
    padding-left: 20px;
    border-radius: 25px;
}

@media only screen and (max-width: 576px) {
    .searchbox {
        float: left;
    }

    .searchbox-input {
        max-width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .searchbox {
        min-width: 37px;
    }

    .searchbox-input {
        width: 100%;
    }
}

.searchbox-icon,
.searchbox-submit {
    position: absolute;
    right: 0;
    border-radius: 50%;
    width: 37px;
    height: 37px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 15px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    color: #ffffff;
    background-color: #343a40;
}

.searchbox-open {
    width: 100%;
}





/* ----- Modal Loading ----- */
.loader {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f97316;
    /* laranja */
    animation: bounce 0.6s infinite alternate;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
        opacity: 0.6;
    }

    to {
        transform: translateY(-12px);
        opacity: 1;
    }
}

/* --- end Modal Loading --- */