<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,500,600,700");

:root {
    --primary: #1e4acc;
    --primary-hover: #094296;
    --white: #ffffff;
    --grey-dker: #1c2b39;
    --grey-dk: #737373;
    --grey: #969dac;
    --grey-lt: #b6c1c9;
    --grey-lter: #f7f7f7;
    --dark: #333e48;
    --black: #000000;

    --border-form: #ced4da;

    --cyan-lt: #bce8f1;
    --cyan-lter: #e6f5fc; /* #d9edf7; */

    --green: #51b270;
    --green-dk: #218838;
    --red: #ff424d;
    --yellow: #fada5e;

    --en-proceso: #FFA613;
}

.hidden-spinner {
  display: none !important;
}

.en_proceso { color:var(--en-proceso) !important; }
.procesada { color: var(--green) !important; }
.fallida { color:var(--red) !important; }
.validacion { color:var(--primary) !important; }
.oculta { color:var(--grey) !important; }
.entregada { color:var(--black) !important; }

body {
    padding-top: 56px;
    color: var(--black);
}

body {
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-family: "Nunito Sans", sans-serif;
    background-color: #fff;
    font-weight: 400;
    font-size: 15px
}

.lead {
    font-size: 1.125rem;
    font-weight: 300;
}

.small, small {
    font-size: 85%;
    font-weight: 400;
}

.font-normal {
    font-weight: normal;
}

.font-bold {
    font-weight: bold;
}

span.custom_icon{
    display:block;
    width:24px;
    height:24px;
    margin-left:5px;
}
span.simple_custom_icon{
    display:block;
    width:24px;
    height:24px;
}
span.extended_custom_icon{
    display:block;
    width:16px;
    height:16px;
}

.icon_pago_si{
    background: url('icons/pagada.svg') no-repeat center center;
}
.icon_pago_no{
    background: url('icons/no_pagada.svg') no-repeat center center;
}
.icon_en_proceso{
    background: url('icons/en_proceso.svg') no-repeat center center;
}
.icon_procesada{
    background: url('icons/existosa.svg') no-repeat center center;
}
.icon_no_procesada{
    background: url('icons/fallida.svg') no-repeat center center;
}
.icon_entrante{
    background: url('icons/entrante.svg') no-repeat center center;
}
.icon_saliente{
    background: url('icons/saliente.svg') no-repeat center center;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.navbar {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

/* resert bootstrap class */
.btn-group-vertical &gt; .btn-group::after, 
.btn-group-vertical &gt; .btn-group::before, 
.btn-toolbar::after, 
.btn-toolbar::before, 
.clearfix::after, 
.clearfix::before, 
.container-fluid::after, 
.container-fluid::before, 
.container::after, 
.container::before, 
.dl-horizontal dd::after, 
.dl-horizontal dd::before, 
.form-horizontal .form-group::after, 
.form-horizontal .form-group::before, 
.modal-footer::after, 
.modal-footer::before, 
.modal-header::after, 
.modal-header::before, 
.nav::after, 
.nav::before, 
.navbar-collapse::after, 
.navbar-collapse::before, 
.navbar-header::after, 
.navbar-header::before, 
.navbar::after, 
.navbar::before, 
.pager::after, 
.pager::before, 
.panel-body::after, 
.panel-body::before, 
.row::after, 
.row::before {
    display: initial !important;
    content: none !important;
}


/* ------------------------------------
   typography 
------------------------------------ */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 600;
    margin-bottom: 0;
}

.h3, h3 {
    font-size: 1.35rem;
}

.h4, h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

@media (min-width: 576px) {
    .h3, h3 {
        font-size: 1.75rem;
    }
}

ul.no-bullets {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
}


/* ------------------------------------
   buttons 
------------------------------------ */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
	letter-spacing: 0.015em;
    height: 46px;
}

.btn:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.btn svg {
    margin-right: 7px;
}

.btn-primary {
	color: var(-white);
	background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 4px;

    min-width: 162px;
    margin: 0;
    padding: 0 20px;
}

.btn-primary:focus,
.btn-primary.focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.open &gt; .dropdown-toggle.btn-primary {
    color: var(-white);
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.btn-primary:not(:disabled):not(.disabled):focus, 
.btn-primary:not(:disabled):not(.disabled):hover {
    color: var(-white);
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:focus,
.btn-outline-primary:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary svg {
    fill: var(--primary);
    margin-right: 7px;
}

.btn-outline-primary:focus svg,
.btn-outline-primary:hover svg {
    fill: #ffffff;
}

.btn-secondary.options {
    color: var(--black);
}

.btn-secondary.options:hover,
.btn-secondary.options:focus,
.btn-secondary.options:active {
    color: var(--primary-color);
}

.btn-primary.line {
    border: 1px solid var(--primary-color);
	color: var(--primary-color);
	background: var(-white);
}

.btn-primary.line:hover,
.btn-primary.line:focus,
.btn-primary.line.active,
.btn-primary.line:active:focus {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
	color: white;
}

.btn-primary.line-white {
    border: 1px solid var(--white);
	color: var(--white);
	background: transparent
}

.btn-primary.line-white:hover,
.btn-primary.line-white:focus,
.btn-primary.line-white.active,
.btn-primary.line-white:active:focus {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
	color: white;
}

.btn-primary.text {
    border: white;
	color: var(--primary-color);
	background: white;
}

.btn-primary.text:hover,
.btn-primary.text:focus,
.btn-primary.text.active,
.btn-primary.text:active {
    background-color: #e7edfd;
    border-color: #e7edfd;
    color: var(--primary-color);
    box-shadow: none;
}

.btn.btn-failed {
    color: var(--red);
    border-color: var(--red);
}

.btn.btn-failed &gt; svg {
    fill: var(--red);
}

.btn.btn-failed:focus,
.btn.btn-failed:hover {
    color: #ffffff;
    background-color: #ff5555;
}

.btn.btn-failed:focus &gt; svg,
.btn.btn-failed:hover &gt; svg {
    fill: var(--white);
}

.btn.btn-success {
    color: var(--white);
    border-color: var(--green);
}

.btn.btn-success:focus,
.btn.btn-success:hover {
    border: 1px solid var(--green-dk);
}

.btn.btn-success &gt; svg,
.btn.btn-success:focus &gt; svg,
.btn.btn-success:hover &gt; svg {
    fill: var(--white);
}

.btn.btn-outline-secondary{
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
}

.btn.btn-outline-secondary:focus,
.btn.btn-outline-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.btn.btn-outline-secondary:focus svg,
.btn.btn-outline-secondary:hover svg {
    fill: var(--white);
}

.text-link {
    cursor: pointer;
    color: var(--primary) !important;
}


/* ------------------------------------
   pagination 
------------------------------------ */
.page-item.active .page-link {
    z-index: 1;
    color: var(--white);
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.page-item.active .page-link:focus,
.page-item.active .page-link:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}



/* ------------------------------------
   c-table, r-table 
------------------------------------ */
.c-table-wrapper, 
.r-table-wrapper{
    display:block;
    width:100%;
}

.c-table-wrapper{
    border:1px solid #ced4da;
}

.c-table:nth-child(even), 
.r-table:nth-child(even), 
.s-table:nth-child(even) {
    background-color: #F2F2F2;
}

.c-table, .r-table, 
.r-header, .r-footer {
    position:relative;
    /*-7X*/
    display:flex;
    list-style: none;
    border-radius: .25rem;
    margin:0;
    padding:10px 0;
}

.c-table, .r-table, .s-table{
    flex-wrap: wrap;
}
.c-table &gt; * {
    padding:0 5px;
}
.c-table&gt; *:nth-child(1) {
    order:1;
    width:70%;
}
.c-table &gt; *:nth-child(2) {
    order:3;
    width:70%;
}
.c-table &gt; *:nth-child(3) {
    order:4;
    width:80%;
}
.c-table &gt; *:nth-child(4) {
    order:2;
    width:30%;
    display:flex;
    justify-content:flex-end;
}
.c-header, .r-header, .s-header{
    display:none;
}
.r-table{
    padding:10px 10px 0px 10px;
    margin-bottom:5px;
    border:1px solid #ced4da;
}
.r-table&gt; *:nth-child(1) {
    order:1;
    width:auto;
    font-size:16px;
    color:#666666;
}
.r-table &gt; *:nth-child(2) {
    order:4;
    width:100%;
    font-size:16px;
    color:#888888;
    line-height: 1.2;
    margin-top:5px;
}
.r-table &gt; *:nth-child(3) {
    order:3;
    width:100%;
    font-size:16px;
    color:#888888;
    font-weight: bolder;
    line-height: 1;
    margin-top:10px;
}
.r-table &gt; *:nth-child(4) {
    order:4;
    width:60%;
    font-size:16px;
    color:#888888;
    line-height: 1.2;
    margin-top:10px;
}
.r-table &gt; *:nth-child(4) span{
    display:none;
}
.r-table &gt; *:nth-child(5) {
    display: inline-flex;
    order:2;
    width:auto;
    font-size:16px;
    color:#666666;

}
.r-table &gt; *:nth-child(6) {
    order:4;
    width:60%;
    font-size:16px;
    color:#888888;
    line-height: 1.2;
    margin-bottom:10px;
    display:none;
}
.r-table &gt; *:nth-child(7) {
    order:1;
    position:absolute;
    top:12px;
    right:5px;
}
.r-table &gt; *:nth-child(8) p {
    display:block;
}
.r-table &gt; *:nth-child(8) {
    order:9;
    position:relative;
    width:100%;
    font-size:16px;
    color:#666666;
    line-height: 1.2;
    border-top:1px solid #dddddd;
}
.r-table &gt; *:nth-child(9) {
    position:absolute;
    bottom:0;
    right:0;
    width:60px;
    display:block;
    z-index:100;
}
.r-table &gt; *:nth-child(9) &gt; a {
    display:block;
    height:30px;
    background:url('icons/up.svg') no-repeat center center;
    background-size: 20px auto;
}
.r-table &gt; *:nth-child(9) &gt; a:hover{
    text-decoration:none;
    /*color:#333333;*/
}
.r-table &gt; *:nth-child(9) &gt; a.collapsed{
    background:url('icons/down.svg') no-repeat center center;
    background-size: 20px auto;
}

.r-table.bg-white {
    background-color: var(--white);
}

/*dropdown*/
.r-table &gt; li.dropdown &gt; button{
    display:block;
    width:24px;
    height:24px;
    background: url('icons/dots.svg') no-repeat center center;
    border:none;
    cursor: pointer;
}
.r-table &gt; li.dropdown &gt; button:after {
    content: none;
    background:none;
}
.r-table &gt; li.dropdown &gt; .dropdown-menu &gt; .dropdown-item {
    cursor: pointer;
}

/*  r-table.three-items  */
.r-table.three-items {
    margin: 0;
}

.r-header.three-items,
.r-table.three-items {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
}

.r-header.three-items{
    background-color: #F2F2F2;
    border: 1px solid #ced4da;
    border-bottom: none;
    padding: 10px 20px;
}

.r-footer {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-top: none;
    padding: 20px;
}

.r-header.three-items &gt; *:nth-child(1),
.r-table.three-items &gt; *:nth-child(1){
    order:1;
    flex: 0 0 auto;
    width: auto;
    font-size:14px;
    line-height: 1.2;
    color: #212529;
    margin: initial;
    padding-right: 20px;
}

.r-header.three-items &gt; *:nth-child(2),
.r-table.three-items &gt; *:nth-child(2){
    order:2;
    flex: 1 1 auto;
    width: auto;
    font-size:14px;
    line-height: 1.2;
    color: #212529;
    margin: initial;
    padding-right: 20px;
}

.r-header.three-items &gt; *:nth-child(3),
.r-table.three-items &gt; *:nth-child(3) {
    order:3;
    flex: 0 0 auto;
    width: auto;
    font-size:14px;
    line-height: 1.2;
    color: #212529;
    margin: initial;
    padding-right: 0;
}

.r-header.three-items &gt; *:nth-child(3){
    padding-right: 22px;
}

/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .r-header.three-items &gt; *:nth-child(1),
    .r-table.three-items &gt; *:nth-child(1){
        width: 50%;
    }

    .r-header.three-items &gt; *:nth-child(2),
    .r-table.three-items &gt; *:nth-child(2){
        width: 50%;
    }

    .r-header.three-items &gt; *:nth-child(3),
    .r-table.three-items &gt; *:nth-child(3) {
        display: hidden;
    }

    .r-footer button {
        min-width: 120px;
    }
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    
}

/*Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 
    .r-header.three-items &gt; *:nth-child(1),
    .r-table.three-items &gt; *:nth-child(1){
        width: 30%;
        font-size:16px;
    }

    .r-header.three-items &gt; *:nth-child(2),
    .r-table.three-items &gt; *:nth-child(2){
        width: auto;
        font-size:16px;
    }

    .r-header.three-items &gt; *:nth-child(3),
    .r-table.three-items &gt; *:nth-child(3) {
        width: 20%;
        font-size:16px;
    }
}

/*Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) { 
    .r-header.three-items &gt; *:nth-child(1),
    .r-table.three-items &gt; *:nth-child(1){
        width: 30%;
        font-size:16px;
    }

    .r-header.three-items &gt; *:nth-child(2),
    .r-table.three-items &gt; *:nth-child(2){
        width: auto;
        font-size:16px;
    }

    .r-header.three-items &gt; *:nth-child(3),
    .r-table.three-items &gt; *:nth-child(3) {
        width: 20%;
        font-size:16px;
    }
}

/*Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    .r-header.three-items &gt; *:nth-child(1),
    .r-table.three-items &gt; *:nth-child(1){
        width: 30%;
        font-size:16px;
    }

    .r-header.three-items &gt; *:nth-child(2),
    .r-table.three-items &gt; *:nth-child(2){
        width: auto;
        font-size:16px;
    }

    .r-header.three-items &gt; *:nth-child(3),
    .r-table.three-items &gt; *:nth-child(3) {
        width: 20%;
        font-size:16px;
    }
}


/* ------------------------------------
   s-table 
------------------------------------ */
.s-table{
    padding:10px 10px 0px 10px;
    margin-bottom:5px;
    border:1px solid #ced4da;
}

.s-table&gt; *:nth-child(1), .s-table&gt; *:nth-child(2), .s-table&gt; *:nth-child(3) {
    order:1;
    width:100%;
    font-size:14px;
    color:#666666;
}
.s-table &gt; *:nth-child(1) {
    font-size:15px;
    font-weight:bolder;
}
.s-table &gt; *:nth-child(4) {
    order:4;
    width:100%;
    font-size:14px;
    color:#888888;
    line-height: 1.2;
    border-top: 1px solid #dddddd;
}
.s-table &gt; *:nth-child(5) {
    order:5;
    position:absolute;
    bottom:0;
    right:0;
    width:60px;
    display:block;
    z-index:100;
}
.s-table &gt; *:nth-child(5) &gt; a {
    display:block;
    height:30px;
    background:url('icons/up.svg') no-repeat center center;
    background-size: 20px auto;
}
.s-table &gt; *:nth-child(5) &gt; a:hover{
    text-decoration:none;
    /*color:#333333;*/
}
.s-table &gt; *:nth-child(5) &gt; a.collapsed{
    background:url('icons/down.svg') no-repeat center center;
    background-size: 20px auto;
}

/*dropdown*/
.r-table &gt; li.dropdown &gt; button{
    display:block;
    width:24px;
    height:24px;
    background: url('icons/dots.svg') no-repeat center center;
    border:none;
}
.r-table &gt; li.dropdown &gt; button:after {
    content: none;
    background:none;
}

.delivery-row{
    margin-top:10px;
}
.delivery-row &gt; div{
    margin-bottom:10px;
}
.btn-display{
    display:flex;
    flex-direction: row;
}
.btn-a{
    display:flex;
    width:50%;
    margin-right:5px;
    justify-content: center;
}
.btn-b{
    display:flex;
    width:50%;
    margin-left:5px;
    justify-content: center;
}
.dropdown-item.not-assigned{
    background-image: url('icons/blank_existosa.svg');
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: 10px center;
}
.delivery .dropdown-item.assigned{ 
    background-image: url('icons/blank_fallida.svg');
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: 10px center;
}

.table-like-wrapper{
    padding:10px;
}

.table-like-wrapper &gt; div:nth-child(even){
    background-color: #F2F2F2;
}
.table-like-header{
    font-size:16px;
    color:#000000;
    font-weight:bold;

}
.table-like-row{
    font-size:16px;
    color:#888888;
    line-height: 1.2;
    padding:10px;
    margin-bottom:5px;
    border:1px solid #ced4da;
}
.table-like-row &gt; div &gt; span{
    display:block;
    font-size:12px;
    font-weight:bold;
    color:#000;
}
.table-like-row &gt; div:not(:first-child){
    margin-top:5px;
}
.suburbs{

}
.suburbs .form-check{
    padding:10px;
}
.suburbs .form-check input{
    margin-left: 0  ;
}
.suburbs .form-check label{
    margin-left: 1.25rem;
}
.suburbs .all-opt{
    border-top:1px solid #ced4da;
    border-bottom:1px solid #ced4da;
}

/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .table-like-header{
        display:none;
    }
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .c-table, .r-table{
        flex-wrap: no-wrap;
        padding:10px;
    }
    .c-header,.r-header{
        display:flex;
        padding:10px;
    }
    .s-header{
        display:block;
        padding:10px;
    }
    .c-table&gt; *:nth-child(1) {
        width:40%;
        order:1;
    }
    .c-table &gt; *:nth-child(2) {
        width:20%;
        order:2;
    }
    .c-table &gt; *:nth-child(3) {
        width:25%;
        order:3;
    }
    .c-table &gt; *:nth-child(4) {
        width:15%;
        order:4;
        display:flex;
    }
    .r-table{
        /* padding:10px 10px 0px 10px; */
        padding:20px 20px 0px 20px;
    }
    .r-table&gt; *:nth-child(1) {
        padding-right:10px;
        width:63%;
        order:1;
        font-size:16px;
        line-height:1.4;
    }
    .r-table&gt; *:nth-child(2) {
        padding-right:10px;
        width:63%;
        margin-right:49%;
        order:7;
    }
    .r-table&gt; *:nth-child(3) {
        padding-right:10px;
        width:63%;
        margin-right:49%;
        order:6;
        margin-top:5px;
        line-height:1.4;
        font-size: 14px;
    }
    .r-table &gt; *:nth-child(4) {
        padding-right:10px;
        width:63%;
        margin-right:49%;
        order:8;
        line-height:1.4;
        font-size: 14px;
        margin-bottom:10px;
    }
    .r-table &gt; *:nth-child(4) span{
        display:block;
    }
    .r-table &gt; *:nth-child(5) {
        order:2;
        width:12%;
        font-size:16px;
        line-height:1.4;
    }
    .r-table &gt; *:nth-child(5) &gt; span{
        display:none;
    }
    .r-table &gt; *:nth-child(6) {
        width:20%;
        order:5;
        font-size:16px;
        line-height:1.4;
        display:block;
    }
    .r-table &gt; *:nth-child(8) p {
        display:none;
    }
    .r-header &gt; *:nth-child(1) {
        width:63%;
        order:1;
    }
    .r-header &gt; *:nth-child(2) {
        width:12%;
        order:2;
    }
    .r-header &gt; *:nth-child(3) {
        width:20%;
        order:4;
    }
    .r-header &gt; *:nth-child(4) {
        width:5%;
        order:4;
        display:flex;
        justify-content: flex-end;
    }
    span.extended_custom_icon{
        width:24px;
        height:24px;
    }
    .table-like-row &gt; div &gt; span{
        display:none;
    }
}


.collapse-content{
    padding: 10px 0;
    margin-bottom:30px;
}


/*showHide -- collapse section*/
.r-table &gt; li.showHide &gt; button {
    display:block;
    width:24px;
    height:24px;
    background: url('icons/dots.svg') no-repeat center center;
    border:none;
    cursor: pointer;
}
.r-table &gt; li.showHide &gt; button:after {
    content: none;
    background:none;
}


/* three-buttons */
.three-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem;
}

.r-table &gt; .three-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    padding: 6px 0;
}

.r-table &gt; .three-buttons &gt; button {
    width: 100%;
    max-width: 368px;
    margin: 6px auto;
}

.r-table &gt; .three-buttons &gt; button.btn-back &gt; svg {
    fill: var(--secondary);
}

.r-table &gt; .three-buttons &gt; button.btn-back:focus &gt; svg,
.r-table &gt; .three-buttons &gt; button.btn-back:hover &gt; svg {
    fill: var(--white);
}

.r-table &gt; .three-buttons &gt; button.btn-failed {
    color: var(--red);
    border-color: var(--red);
}

.r-table &gt; .three-buttons &gt; button.btn-failed &gt; svg {
    fill: var(--red);
}

.r-table &gt; .three-buttons &gt; button.btn-failed:focus,
.r-table &gt; .three-buttons &gt; button.btn-failed:hover {
    color: #ffffff;
    background-color: #ff5555;
}

.r-table &gt; .three-buttons &gt; button.btn-failed:focus &gt; svg,
.r-table &gt; .three-buttons &gt; button.btn-failed:hover &gt; svg {
    fill: var(--white);
}

.r-table &gt; .three-buttons &gt; button.btn-success {
    color: #ffffff;
    background: var(--green);
    border-color: var(--green);
}

.r-table &gt; .three-buttons &gt; button.btn-success:focus,
.r-table &gt; .three-buttons &gt; button.btn-success:hover {
    color: #ffffff;
    background: #128C2D;
    border-color: #128C2D;
}


.r-table &gt; .three-buttons &gt; button.btn-success &gt; svg,
.r-table &gt; .three-buttons &gt; button.btn-success:focus &gt; svg
.r-table &gt; .three-buttons &gt; button.btn-success:hover &gt; svg {
    fill: var(--white);
}

/*Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) { 
    .r-table &gt; .three-buttons {
        flex-direction: row;
        gap: 12px;
        max-width: unset;
        width: 100%;
        margin: auto;
    }

    .r-table &gt; .three-buttons &gt; button {
        min-width: 178px;
        margin: 12px 0;
    }
}

/*Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) { 
    .r-table &gt; .three-buttons {
        flex-direction: row;
        gap: 12px;
        max-width: unset;
        width: 100%;
        margin: auto;
    }

    .r-table &gt; .three-buttons &gt; button {
        min-width: 178px;
        margin: 12px 0;
    }
}

/*Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
    .r-table &gt; .three-buttons {
        flex-direction: row;
        gap: 12px;
        max-width: unset;
        width: 100%;
        margin: auto;
    }

    .r-table &gt; .three-buttons &gt; button {
        min-width: 178px;
        margin: 12px 0;
    }
}


/* ------------------------------------
   flexbox 
------------------------------------ */
/* flex type */
.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

 
/* flex-direction */
.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row;
}

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

.flex-column-reverse {
    flex-direction: column-reverse;
}

/* flex-wrap */
.flex-wrap {
    flex-wrap: wrap;
}

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

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


/* Justfy-content */
.justfy-content-start {
    justify-content: flex-start;
}

.justfy-content-end {
    justify-content: flex-end;
}

.justfy-content-center {
    justify-content: center;
}

.justfy-content-baseline {
    justify-content: baseline;
}

.justfy-content-between {
    justify-content: space-between;
}

.justfy-content-stretch {
    justify-content: stretch;
}


/* align-items */
.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

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

.align-items-between {
    align-items: space-between;
}

.align-items-arround {
    align-items: space-around;
}


/* align-self */
.align-self-start{
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}


/* align-content */
.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-baseline {
    align-content: baseline;
}

.align-self-stretch {
    align-self: stretch;
}


/* flex order */
.flex-order-first {
    order: -1;
}
.flex-order-last {
    order: 1;
}
.flex-order-unordered {
    order: 0;
}


/* Auto Margin Left-Righ (justfy-content) */
.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}


/* Auto Margin Top-Bottom (align-items) */
.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

main {
    flex: 1 1 auto;
}

footer {
    flex: 0 0 auto;
}

.flex-container {
    display: flex;
}


/* ------------------------------------
   margin and padding 
------------------------------------ */
.absolute { position: absolute }
.relative { position: relative }

.mt-none,
.mt-0  { margin-top: 0; }
.mt-5  { margin-top: 5px; }
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }
.mt-35 { margin-top: 35px; }
.mt-40 { margin-top: 40px; }
.mt-45 { margin-top: 45px; }
.mt-50 { margin-top: 50px; }
.mt-55 { margin-top: 55px; }
.mt-60 { margin-top: 60px; }

.mr-none,
.mr-0  { margin-right: 0; }
.mr-5  { margin-right: 5px; }
.mr-10 { margin-right: 10px; }
.mr-15 { margin-right: 15px; }
.mr-20 { margin-right: 20px; }
.mr-25 { margin-right: 25px; }
.mr-30 { margin-right: 30px; }
.mr-35 { margin-right: 35px; }
.mr-40 { margin-right: 40px; }
.mr-45 { margin-right: 45px; }
.mr-50 { margin-right: 50px; }
.mr-55 { margin-right: 55px; }
.mr-60 { margin-right: 60px; }

.mb-none,
.mb-0  { margin-bottom: 0 !important; }
.mb-5  { margin-bottom: 5px; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-35 { margin-bottom: 35px; }
.mb-40 { margin-bottom: 40px; }
.mb-45 { margin-bottom: 45px; }
.mb-50 { margin-bottom: 50px; }
.mb-55 { margin-bottom: 55px; }
.mb-60 { margin-bottom: 60px; }

.ml-none,
.ml-0  { margin-left: 0 !important; }
.ml-5  { margin-left: 5px; }
.ml-10 { margin-left: 10px; }
.ml-15 { margin-left: 15px; }
.ml-20 { margin-left: 20px; }
.ml-25 { margin-left: 25px; }
.ml-30 { margin-left: 30px; }
.ml-35 { margin-left: 35px; }
.ml-40 { margin-left: 40px; }
.ml-45 { margin-left: 45px; }
.ml-50 { margin-left: 50px; }
.ml-55 { margin-left: 55px; }
.ml-60 { margin-left: 60px; }

.m-0  { margin: 0; }
.m-5  { margin: 5px; }
.m-10 { margin: 10px; }
.m-15 { margin: 15px; }
.m-20 { margin: 20px; }
.m-25 { margin: 25px; }
.m-30 { margin: 30px; }
.m-35 { margin: 35px; }
.m-40 { margin: 40px; }
.m-45 { margin: 45px; }
.m-50 { margin: 50px; }
.m-55 { margin: 55px; }
.m-60 { margin: 60px; }

.pt-none,
.pt-0  { padding-top: 0; }
.pt-5  { padding-top: 5px; }
.pt-10 { padding-top: 10px; }
.pt-15 { padding-top: 15px; }
.pt-20 { padding-top: 20px; }
.pt-25 { padding-top: 25px; }
.pt-30 { padding-top: 30px; }
.pt-35 { padding-top: 35px; }
.pt-40 { padding-top: 40px; }
.pt-45 { padding-top: 45px; }
.pt-50 { padding-top: 50px; }
.pt-55 { padding-top: 55px; }
.pt-60 { padding-top: 60px; }

.pr-none,
.pr-0  { padding-right: 0; }
.pr-5  { padding-right: 5px; }
.pr-10 { padding-right: 10px; }
.pr-15 { padding-right: 15px; }
.pr-20 { padding-right: 20px; }
.pr-25 { padding-right: 25px; }
.pr-30 { padding-right: 30px; }
.pr-35 { padding-right: 35px; }
.pr-40 { padding-right: 40px; }
.pr-45 { padding-right: 45px; }
.pr-50 { padding-right: 50px; }
.pr-55 { padding-right: 55px; }
.pr-60 { padding-right: 60px; }

.pb-none, 
.pb-0  { padding-bottom: 0 !important; }
.pb-5  { padding-bottom: 5px; }
.pb-10 { padding-bottom: 10px; }
.pb-15 { padding-bottom: 15px; }
.pb-20 { padding-bottom: 20px; }
.pb-25 { padding-bottom: 25px; }
.pb-30 { padding-bottom: 30px; }
.pb-35 { padding-bottom: 35px; }
.pb-40 { padding-bottom: 40px; }
.pb-45 { padding-bottom: 45px; }
.pb-50 { padding-bottom: 50px; }
.pb-55 { padding-bottom: 55px; }
.pb-60 { padding-bottom: 60px; }

.pl-none,
.pl-0  { padding-left: 0; }
.pl-5  { padding-left: 5px; }
.pl-10 { padding-left: 10px; }
.pl-15 { padding-left: 15px; }
.pl-20 { padding-left: 20px; }
.pl-25 { padding-left: 25px; }
.pl-30 { padding-left: 30px; }
.pl-35 { padding-left: 35px; }
.pl-40 { padding-left: 40px; }
.pl-45 { padding-left: 45px; }
.pl-50 { padding-left: 50px; }
.pl-55 { padding-left: 55px; }
.pl-60 { padding-left: 60px; }

.p-0  { padding: 0; }
.p-5  { padding: 5px; }
.p-10 { padding: 10px; }
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-25 { padding: 25px; }
.p-30 { padding: 30px; }
.p-35 { padding: 35px; }
.p-40 { padding: 40px; }
.p-45 { padding: 45px; }
.p-50 { padding: 50px; }
.p-55 { padding: 55px; }
.p-60 { padding: 60px; }

.mt--10  { margin-top: -10px !important; }

.no-padder {
	padding-left: 0px;
	padding-right: 0px;
}

.w-100 { width: 100%; }
.w-150 { width: 150px; }


/*\
 * "hidden" and "visible" utility classes
\*/

/* Breakpoint XS */
@media (max-width: 575px) {
    .hidden-xs, .hidden-sm, .hidden-md, .hidden-lg, .hidden-xl {
        display: none !important;
    }
    .visible-xs {
        display: flex;
    }
}

/* Breakpoint SM */
@media (min-width: 576px) and (max-width: 767px) {
    .hidden-sm, .hidden-md, .hidden-lg, .hidden-xl {
        display: none !important;
    }
    .visible-xs {
        display: none !important;
    } 
    .visible-sm {
        display: flex;
    }
}

/* Breakpoint MD */
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-md, .hidden-lg, .hidden-xl {
        display: none !important;
    }
    .visible-xs, .visible-sm {
        display: none !important;
    } 
    .visible-md {
        display: flex;
    }
}

/* Breakpoint LG */
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-lg, .hidden-xl {
        display: none !important;
    }
    .visible-xs, .visible-sm, .visible-md {
        display: none !important;
    } 
    .visible-lg {
        display: flex;
    }
}

/* Breakpoint XL */
@media (min-width: 1200px) {
    .hidden-xl {
        display: none !important;
    }
    .visible-xs, .visible-sm, .visible-md, .visible-lg {
        display: none !important;
    } 
    .visible-xl {
        display: flex;
    }
}


/* dropdown */
.dropdown-menu {
    font-size: 0.875rem;
}
.dropdown-item:focus, 
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #e7e7e7;
}


/* navbar-collapse xtra asjust */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.7);
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,1);
}

@media (max-width: 575px) {
    .navbar-collapse {
        font-size: 1em;
    }
    .container {
        max-width: 100%
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .navbar-collapse {
        font-size: 1em;
    }
    .container {
        max-width: 100%
    }
}

@media (min-width: 768px) {
    .navbar-collapse {
        font-size: .875em;
    }
    .container {
        max-width: 100%
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        font-size: 1em;
    }
}

@media (min-width: 1200px) {
    .navbar-collapse {
        font-size: 1em;
    }

    .container {
        max-width: 1200px;
    }
}


/* ------------------------------------
   login form 
------------------------------------ */
.login-form {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
}

.login-form .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: .5em;
}

.login-form .title &gt; span {
    font-size: 20px;
    border-radius: 35px;
    border: 2px solid var(--primary);
    margin: 10px 0;
    padding: 5px 25px 3px;
}

.login-form .description,
.login-form .alert {
    margin-bottom: 2rem;
}

.login-form #pinForm {
    text-align: center;
}

.login-form a {
    display: flex;
    justify-content: center;
}

.login-form form {
    width: auto;
    max-width: 260px;
    margin: 0 auto;
}

.login-form .form-group {
    margin-bottom: .75rem;
}

.login-form .form-group button {
    display: flex;
    justify-content: center;
}


.login-form #sms {
    margin-bottom: .5rem;
    margin-top: 2rem;
}

.login-form .form-group:last-child {
    display: flex;
    justify-content: center;
}

.login-form .form-group.mt-5 {
    margin-top: 2rem !important;
}

.login-form .form-control {
    padding: .75rem .75rem;
    height: 46px;
}

.login-form .form-control.pin-code {
    width: 100%;
    max-width: 260px;
    height: calc(2.75rem + 2px);
    font-size: 2rem;
    text-align: center;
    letter-spacing: .2em;
    margin: 0 auto;
    padding: .75rem .75rem;
}

.login-form #number {
    justify-content: center;
    display: flex;
}

.g-recaptcha {
    transform:scale(0.858);
    transform-origin:0 0;
}


/* footer custom */
footer.bg-dark {
    color: var(--grey-lt) !important;
    background-color: var(--white) !important;
    border-top: 1px solid var(--grey-lt);
}

footer span.copyright,
footer.bg-dark span.text-muted {
    font-size: 13px;
    color: var(--grey) !important;
}


/* ------------------------------------
   card, cards
------------------------------------ */
.card {
    border-radius: .75rem;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-body.lg {
    padding: 1.25rem;
}

.card-body img {
    width: 82px;
    height: 82px;
}

.card .packs-assigned {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    font-weight: bold;
    list-style-type: none;
    padding-left: 0;
}

@media (min-width: 575px) {
    .card-body.lg {
        padding: 3rem;
    }
}


/* ------------------------------------
   Table
------------------------------------ */
.table {
    font-size: 1rem;
}

.table td, .table th {
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(0,0,0,.035);
}

.table &gt; thead &gt; tr &gt; th {
    border-bottom: 2px solid var(--grey-dker);
    border-top: none;
}

.table .mw-order {
    width: 16px;
    min-width: 12px;
}

.table .mw-id {
    width: 96px;
    min-width: 96px;
}

.table .mw-name,
.table .mw-phone,
.table .mw-email {
    width: 20%;
    min-width: 116px;
}

.table .mw-buttons {
    min-width: 100px;
    width: 100px;
}

@media (max-width: 634px) {
    .table {
        font-size: 0.875rem;
    }

    .table .mw-phone {
        min-width: 140px;
    }
}


/* ------------------------------------
   alert
------------------------------------ */
.alert {
    font-size: 0.875rem;
}

.alert &gt; svg {
    margin-right: .7rem !important;
}

.alert-primary {
    color: #004085;
    background-color: #deeeff;
    border-color: #b5d6fa;
}


/* ------------------------------------
   Modal
------------------------------------ */
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: var(-white);
    background-clip: padding-box;
    border: none;
    border-radius: .75rem;
    outline: 0;
}


/* ------------------------------------
   form xtras
------------------------------------ */
input[type=checkbox] {
    -ms-transform: scale(1.2); /* IE */
    -moz-transform: scale(1.2); /* FF */
    -webkit-transform: scale(1.2); /* Safari and Chrome */
    -o-transform: scale(1.2); /* Opera */
    padding: 10px;
}

.form-check-label {
    padding-left: 7px;
}

form.w-75 {
    width: 75% !important;
}

@media screen and (max-width: 768px) {
    form.w-75 {
        width: 100% !important;
    }
}

label {
    display: inline-block;
    margin-bottom: .25rem;
}

/* do not group these rules */
#ModalEditWorker *::-webkit-input-placeholder {
    color: #495057;
}
#ModalEditWorker *:-moz-placeholder {
    /* FF 4-18 */
    color: #495057;
    opacity: 1;
}
#ModalEditWorker *::-moz-placeholder {
    /* FF 19+ */
    color: #495057;
    opacity: 1;
}
#ModalEditWorker *:-ms-input-placeholder {
    /* IE 10+ */
    color: #495057;
}
#ModalEditWorker *::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #495057;
}
#ModalEditWorker *::placeholder {
    /* modern browser */
    color: #495057;
}


/* ------------------------------------
  custom radio and checkboxes
------------------------------------ */
form #revoolicoRadio {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

#revoolicoRadio label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
    /* Accessible outline */
    /* Remove comment to use */
    /*
        &amp;:focus-within {
                outline: .125em solid $primary-color;
        }
    */
}
#revoolicoRadio label input {
    position: absolute;
    left: -9999px;
}
#revoolicoRadio label input:checked + span {
    background-color: #e4e9f9;
}
#revoolicoRadio label input:checked + span:before {
    box-shadow: inset 0 0 0 0.4375em var(--primary);
}
#revoolicoRadio label span {
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 99em;
    transition: 0.25s ease;
}
#revoolicoRadio label span:hover {
    background-color: #e4e9f9;
}
#revoolicoRadio label span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.75em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em var(--primary);
}



/* ------------------------------------
  draggablePanelList
------------------------------------ */
#draggablePanelList {
    margin-bottom: 0;
}

#draggablePanelList .panel-heading,
#draggablePanelList .panel-body {
    cursor: move;
}

.expanded-block {
    flex: 1 1 auto;
}

.panel-group {
    border: 1px solid var(--grey-lt);
    border-radius: 9px;
    padding: 0 0 15px 0;
}

.panel-group.selected {
    border: 2px solid var(--primary);
}

.panel-group &gt; .panel-heading,
.panel-group.selected &gt; .panel-heading {
    display: flex;
    flex-direction: row;
    gap: 1.35rem;

    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-dker);
    background-color: var(--grey-lter);
    border-bottom: 1px solid var(--grey-lt) !important;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    margin-bottom: 1rem;
    padding: 10px 30px;
}

.panel-group.selected &gt; .panel-heading {
    color: var(--grey-dker);
    background-color: var(--cyan-lter);
    border-color: var(--cyan-lt) !important;
}

.panel-group .container {
    width: auto;
}


/* panel-default */
.panel.panel-default {
    border: 1px solid var(--grey-lt);
    border-radius: 6px;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}


/* ------------------------------------
   panel sortable
------------------------------------ */
.panel {
    font-size: 1rem;
    border: 1px solid var(--grey-lt) !important;
    border-radius: 6px !important;
    margin-bottom: .65rem !important;
}

.panel:last-child {
    margin-bottom: 0;
}

.panel &gt; .panel-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;

    background-color: var(--white);
    border-bottom: 1px solid var(--grey-lt);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 10px 15px;
}

.panel.panel-labels {
    font-weight: 600;
    border: none !important;
    border-radius: none !important;
}

.panel.panel-labels .panel-heading {
    background: var(--grey-lter);
    border-bottom: 1px solid var(--grey-lt);
    border-radius: none !important;
}

.panel &gt; .panel-heading &gt; .expected-date-title,
.panel &gt; .panel-heading &gt; .expected-date {
    display: flex;
    justify-content: flex-end;
    min-width: 190px;
}

/* showHide -- collapse section */
.panel &gt; .panel-heading &gt; .showHide {
    order: 4;
}

.panel &gt; .panel-heading &gt; .showHide &gt; button {
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.panel &gt; .panel-heading &gt; .showHide &gt; button:focus, 
.panel &gt; .panel-heading &gt; .showHide &gt; button:hover {
    border: medium;
}

.panel &gt; .panel-heading &gt; .showHide &gt; button svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    cursor: pointer;
}


/* ------------------------------------
   hidden-section
------------------------------------ */
.all-data {
    flex-direction: column;
    gap: 1.35rem;
}

.all-data .hidden-section,
.panel-heading .hidden-section {
    flex-shrink: 0;
    text-align: left;
    margin-top: 10px;
}

.all-data .hidden-section a.collapsed::after {
    content: 'Ver mÃ¡s';
    font-size: .9rem;
    font-weight: 500;
}

.all-data .hidden-section a:not(.collapsed)::after {
    content: 'Ver menos';
    font-size: .9rem;
    font-weight: 500;
}

.panel-heading .hidden-section a.collapsed::after {
    font-size: .9rem;
    font-weight: 500;
}

.panel-heading .hidden-section a:not(.collapsed)::after {
    font-size: .9rem;
    font-weight: 500;
}

@media (max-width: 768px) { 
    .all-data {
        flex-direction: row !important;
        align-items: flex-start;
        justify-content: space-between;
    }

    .all-data .hidden-section {
        text-align: right;
        margin-top: 0;
    }
}

.panel .btn-group {
    gap: .75rem;
}

.panel .btn.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background-color: var(--white);
    height: 40px;
    width: auto;
    color: var(--grey);
    gap: 10px;
    border: 1px solid var(--grey);
    padding: 0 17px;
}

.panel .btn.btn-icon.no-label,
.btn.btn-icon.no-label {
    width: 40px;
    padding: 0;
}

.panel .btn.btn-icon svg {
    height: 20px;
    width: 20px;
    fill: var(--grey);
    margin: 0;
}

.panel .btn.btn-icon:hover &gt; svg,
.panel .btn.btn-icon:focus &gt; svg {
    fill: var(--white);
}

/** icon-select + icon-primary **/
.panel .btn.btn-icon.icon-select,
.panel .btn.btn-icon.icon-primary {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.panel .btn.btn-icon.icon-select:hover,
.panel .btn.btn-icon.icon-select:focus,
.panel .btn.btn-icon.icon-primary:hover,
.panel .btn.btn-icon.icon-primary:focus {
    color: var(--white);
    background-color: var(--primary);
    fill: var(--white);
}

.panel .btn-icon.icon-select svg,
.panel .btn-icon.icon-primary svg {
    fill: var(--primary);
}

/** btn-small */
.panel .btn.btn-icon.btn-small {
    height: 32px;
    width: 32px;
}

.panel .btn.btn-icon.btn-small svg {
    height: 18px;
    width: 18px;
}

/** icon-delete **/
.panel .btn.btn-icon.icon-delete {
    background-color: var(--white);
    color: var(--red);
    border: 1px solid var(--red);
}

.panel .btn.btn-icon.icon-delete:hover,
.panel .btn.btn-icon.icon-delete:focus {
    color: var(--white);
    background-color: var(--red);
    fill: var(--white);
}

.panel .btn-icon.icon-delete svg {
    fill: var(--red);
}

/** icon-black **/
.panel .btn.btn-icon.icon-black {
    position: relative;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

.panel .btn.btn-icon.icon-black:hover,
.panel .btn.btn-icon.icon-black:focus {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.panel .btn-icon.icon-black svg {
    fill: var(--black);
}

.panel &gt; .panel-body {
    display: flex;
    flex-direction: row;
    gap: 1.35rem;
    padding: 5px 15px 15px; 
}

.panel &gt; .panel-body.no-padder {
    padding: 0; 
}

.panel &gt; .panel-body .line-two {
    color: var(--grey);
}

.panel .province,
.panel .expected-date {
    gap: 7px
}

.panel .province &gt; .province-label,
.panel .expected-date &gt; .expected-date-label {
    display: none;
    font-weight: 600; 
}

@media screen and (max-width: 768px) {
    .panel &gt; .panel-heading {
        flex-direction: column;
        gap: 0;
    }

    .panel &gt; .panel-body {
        flex-direction: column;
        gap: .75rem;
    }

    .panel.panel-labels {
        display: none;
    }

    .panel &gt; .panel-heading &gt; .expected-date {
        justify-content: flex-start;
        min-width: auto;
    }

    .panel &gt; .panel-body {
        padding: 15px; 
    }

    .panel .province,
    .panel .expected-date  {
        display: flex;
        flex-direction: row !important;
        font-size: .9rem;
    }

    .panel .province &gt; .province-label,
    .panel .expected-date &gt; .expected-date-label {
        display: inline;  
    }
}

@media (max-width: 340px) {
    .panel .btn-group {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .panel .btn.btn-icon.icon-select,
    .panel .btn.btn-icon.icon-delete {
        flex-grow: 0;
    }

    .panel .btn.btn-icon.icon-delete {
        padding: 0 8px;
    }

    .panel .btn.btn-icon.icon-delete &gt; span {
        display: none;
    }
}


/* ------------------------------------
   panel-heading + w-buttons
------------------------------------ */
.panel-heading.w-buttons {
    height: 48px;
    padding: 0 0 0 15px;
}

.panel-heading.w-buttons h5 {
    font-size: 1.125rem;
}

.panel-heading.w-buttons .btn {
    cursor: pointer;
    text-decoration: none;
    padding: 0;
}

.panel-heading.w-buttons .btn.btn-icon {
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--grey-lt);
    background: transparent;
    height: 48px;
    width: 48px;
    padding: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: button;
}

.panel-heading.w-buttons .btn.btn-icon:last-child {
    border-top-right-radius: 6px;
}

.panel-heading.w-buttons .btn.btn-icon svg {
    height: 20px;
    width: 20px;
}

.panel-heading.w-buttons .btn.btn-icon &gt; svg {
    fill: var(--primary);
}

.panel-heading.w-buttons .btn.btn-icon:focus,
.panel-heading.w-buttons .btn.btn-icon:hover {
    color: var(--white) !important;
    background-color: var(--primary) !important;
    background-image: none;
}

.panel-heading.w-buttons .btn.btn-icon:hover &gt; svg, 
.panel-heading.w-buttons .btn.btn-icon:focus &gt; svg {
    fill: var(--white);
}

@media screen and (max-width: 768px) {
    .panel &gt; .panel-heading.w-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 634px) {
    .panel-heading.w-buttons h5 {
        font-size: 1rem;
    }
}
                        

/* ------------------------------------
   badge
------------------------------------ */
.badge-group {
    flex-wrap: wrap;
    padding: .5rem 0 1.5rem;
}

.badge {
    display: inline-block;
    padding: .25em 1em;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin-bottom: .5rem;
}

.badge.badge-revoo {
    padding: .5em 1em;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    background-color: var(--green-dk) !important;
    border-radius: 2rem;
}

.badge.badge-revoo:focus,
.badge.badge-revoo:hover {
    background-color: var(--green) !important;
}

.badge.badge-revoo &gt; button {
    padding-left: .35rem;
}

.badge.badge-revoo .close {
    float: none;
    color: var(--black);
    text-shadow: none;
    filter: alpha(opacity=50);
    opacity: .5;
}

.badge.badge-revoo .close:focus,
.badge.badge-revoo .close:hover {
    filter: alpha(opacity=100);
    opacity: 1;
}

.badge.badge-revoo &gt; button &gt; span &gt; svg {
    fill: var(--black);
    height: 20px;
    width: 20px;
}


/* ------------------------------------
  Barcode detector
------------------------------------ */
.fullscreen {
    width:100%;
    height:100%;
    position:relative;
}

.overlay {
    z-index:998;
    height: 30px;
}

#cameraSelect {
    z-index:999;
    position: relative;
}

#closeButton {
    z-index:999;
    position: relative;
    right:0;
}

.barcode-polygon {
    fill:rgba(85,240,40,0.5);          
    stroke:green;
    stroke-width:1;
}
</pre></body></html>