/* =============== ESTRUTURA GERAL =============== */

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    font: unset;
    background: unset;

}

strong {
    font-weight: 600;
}

html, .page-container {
    background: #FBFCFC;
}

body {
    width: 100%;
    min-width: 370px;
    height: auto;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
}

.page-container {
    display: inline-block;
    position: relative;
    padding: 20px 20px 40px;
    transition: all .3s linear;
}

@media (min-width: 769px) {
    .page-container {
        width: calc(100% - 150px);
        margin-left: 150px;
    }
    .page-container.full {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-container {
        width: 100%;
        margin-top: 80px;
    }
}

.content-container {
    width: 100%;
    padding: 20px 15px 10px;
  
}

.content-container::after {
    content: '';
    clear: both;
    display: table;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
    box-shadow: 0 0 0 30px #ffffff inset !important;
    -webkit-text-fill-color: #666666;
}

.chartjs-render-monitor {
    max-width: 100% !important;
    height: auto !important;
}

.swal2-container {
    z-index: 9999 !important;
}

a {
    background: inherit;
    color: inherit;
    text-decoration: none;
    list-style-type: none;
    outline: none;
}

a img {
    border: none;
}

.none {
    display: none;
}

.hidden {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.clear {
    clear: both;
}

.expand:after {
    content: '';
    clear: both;
    display: table;
}

.margin-auto {
    margin: auto;
}

.col {
    float: left;
    padding: 0 10px;
}

.col.block {
    float: none;
    display: inline-block;
    margin-right: -4px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.col.full {
    padding: 0;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

@media (max-width: 1200px) {
    .col-md-1 {
        width: 8.33%;
    }
    .col-md-2 {
        width: 16.66%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.33%;
    }
    .col-md-5 {
        width: 41.66%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.33%;
    }
    .col-md-8 {
        width: 66.66%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.33%;
    }
    .col-md-11 {
        width: 91.66%;
    }
    .col-md-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .col-sm-1 {
        width: 8.33%;
    }
    .col-sm-2 {
        width: 16.66%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.33%;
    }
    .col-sm-5 {
        width: 41.66%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.33%;
    }
    .col-sm-8 {
        width: 66.66%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.33%;
    }
    .col-sm-11 {
        width: 91.66%;
    }
    .col-sm-12 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .col-xsm-1 {
        width: 8.33%;
    }
    .col-xsm-2 {
        width: 16.66%;
    }
    .col-xsm-3 {
        width: 25%;
    }
    .col-xsm-4 {
        width: 33.33%;
    }
    .col-xsm-5 {
        width: 41.66%;
    }
    .col-xsm-6 {
        width: 50%;
    }
    .col-xsm-7 {
        width: 58.33%;
    }
    .col-xsm-8 {
        width: 66.66%;
    }
    .col-xsm-9 {
        width: 75%;
    }
    .col-xsm-10 {
        width: 83.33%;
    }
    .col-xsm-11 {
        width: 91.66%;
    }
    .col-xsm-12 {
        width: 100%;
    }
}

.center, .center-topo{
    width: 95%;
    max-width: 1038px;
    min-width: 320px;
    margin: 0 auto;
    height: auto;
    display: block;
    position: relative
}

.center-menor {
    width: 93%;
    max-width: 1100px;
    min-width: 320px;
    margin: 0 auto;
    height: auto;
    display: block;
    position: relative;
}

/* =============== PAGINAÇÃO =============== */

.paginacao {
    text-align: center;
}

.paginacao .container {
    display: table;
    margin: 0 auto;
    margin-top: 20px;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(100, 100, 100, 0.1);
    color: #44b6ae;
}

.paginacao .container a, .paginacao .container strong {
    width: 40px;
    height: 40px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.paginacao .container strong {
    background: #e4e4e4;
    color: #44b6ae;
}

.paginacao .container a[rel="prev"], .paginacao .container a[rel="next"], .paginacao .container span a {
    font-size: 1.3em;
}

.paginacao .container span.first a::before {
    content: '\f100';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
}

.paginacao .container span.last a::before {
    content: '\f101';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
}

.paginacao .container a[rel="prev"]::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
}

.paginacao .container a[rel="next"]::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
}

.paginacao .container a:hover {
    background: #e4e4e4;
    color: #44b6ae;
}

/* =============== TITULO E TEXTOS =============== */

.titulo {
    display: inline-block;

    font-size: 20px;
    color: #535F60;
}

.texto-centralizado {
    text-align: center;
}

.texto-justificado {
    text-align: justify;
}

.texto-direita {
    text-align: right;
}

.texto-esquerda {
    text-align: left;
}

/* =============== BOTÕES =============== */

.botao {
    display: inline-block;
    position: relative;
    padding: 11.5px 20px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    box-shadow: 2px 2px 4px rgba(100, 100, 100, 0.4);
    font-size: 1em;
    color: #ffffff;
    cursor: pointer;
    transition: background .3s ease-in-out, box-shadow .3s ease-in-out, color .3s ease-in-out;
}

button.botao {
    padding: 13.5px 20px;
}

.botao.icone {
    width: 100%;
    height: 45px;
    padding: 0;
    margin-bottom: 0;
}

.botao.has-icon {
    padding-left: 40px;
}

.botao i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    font-size: 1.4em;
}

.botao.icone i {
    left: 50%;
    transform: translate(-50%, -50%);
}

.botao:hover {
    background: #e4e4e4;
}

.botao.bg-verde:hover {
    color: #44b6ae;
}

.botao.bg-amarelo:hover {
    color: #FDA006;
}

.botao.bg-vermelho:hover {
    color: #E13A58;
}

.botao.bg-rosa:hover {
    color: #F1536E;
}

.botao.bg-roxo:hover {
    color: #716ACA;
}

.botao.bg-azul:hover {
    color: #3DA5F4
}

.botao.bg-preto:hover {
    color: #535F60;
}



/* =============== UPLOAD DE IMAGEM =============== */

div.image-upload label {
    width: 100px;
    height: 100px;
    display: block;
    position: relative;
    margin: auto;
    cursor: pointer;
}

div.image-upload label::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    opacity: 1;
}

div.image-upload label:hover::before {
    animation: blink .5s ease-in-out;
}

div.image-upload label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

div.image-upload label i {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.8em;
    color: #ffffff;
}

div.image-upload input[type="file"] {
    display: none;
}

/* =============== ALERTA =============== */

.alerta {
    width: 40%;
    min-width: 320px;
    max-width: 85%;
    padding: 15px;
    display: table;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, -100px);
    overflow: hidden;
    z-index: 99999;
    transition: all .8s ease-in-out;
}

.alerta.sucesso {
    background: #44b6ae;
}

.alerta.erro {
    background: #E13A58;
}

.alerta.info {
    background: #e7a539;
}

.alerta.active {
    animation: fade-in .8s ease-in-out forwards;
}

.alerta.inactive {
    animation: fade-out .8s ease-in-out forwards;
}

.alerta .timer {
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 3px solid rgba(255, 255, 255, 0.6);
}

.alerta.active .timer {
    animation: timer 3s linear;
}

.alerta:hover .timer {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.alerta>i {
    width: 35px;
    display: table-cell;
    font-size: 2.6em;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    transition: transform 1s ease-in-out .3s;
}

.alerta.active>i {
    transform: scale(1);
}

.alerta .text {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px 0 15px;
}

.alerta .text h2 {
    font-size: 1.2em;
    font-weight: 400;
    color: #ffffff;
    text-transform: capitalize;
    opacity: 0;
    transform: translate(50px, 0);
    transition: opacity 0.5s, transform .8s ease-in-out .3s;
}

.alerta.active .text h2 {
    opacity: 1;
    transform: translate(0, 0);
}

.alerta .text h3 {
    font-size: 0.9em;
    font-weight: 300;
    color: #ffffff;
    text-transform: lowercase;
    opacity: 0;
    transform: translate(100px, 0);
    transition: opacity 0.5s, transform .8s ease-in-out .5s;
}

.alerta.active .text h3 {
    opacity: 1;
    transform: translate(0, 0);
}

.alerta .close {
    width: 20px;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.alerta .close i {
    font-size: 1.6em;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.alerta .close i:before {
    transition: all .5s ease-in-out;
}

.alerta .close i:hover:before {
    transform: rotate(-180deg);
    color: #ffffff;
}

.alerta::after {
    width: 100%;
    height: 3px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
}

/* =============== PESQUISA =============== */

div.pesquisa {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    box-shadow: 2px 2px 4px rgba(100, 100, 100, 0.1);
}

div.pesquisa form .botao {
    margin-bottom: 0;
}

/* =============== TABELAS =============== */

div.table-container {
    box-shadow: 2px 2px 4px rgba(100, 100, 100, 0.1);
    overflow-y: hidden;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    color: #535F60;
}

table.border {
    border: 1px solid #dadada;
}

table tbody:nth-of-type(2) {
    border-top: 1px solid #dadada;
}

table tr th, table tr td {
    padding: 5px 20px;
}

table th {
    height: 50px;
    font-size: 1em;
    font-weight: 600;
    text-align: left;
}

table tr th.acoes {
    min-width: 140px;
}

table tr:not(:last-of-type) {
    border-bottom: 1px solid #dadada;
}

table tr:hover td {
    background-color: #f7f7f7;
}

table tr td {
    height: 45px;
    transition: background .3s ease-in-out;
}

table tr td.inner {
    padding: 0;
    height: unset;
}

table tr td.inner th {
    border: solid #dadada;
    border-width: 0 1px 0 1px;
}

table tr td.inner td {
    border: solid #dadada;
    border-width: 0 1px 0 1px;
}

table tr td.vazio {
    padding-left: 20px;
    text-align: left;
}

table tr td.destinos {
    text-transform: lowercase;
}

table tr td, table tr td a {
    font-size: 1em;
    color: #535F60;
}

table tr td a {
    display: inline-block;
}

table tr td.visualizar i {
    color: #52A061;
}

table tr td.acoes i {
    cursor: pointer;
    transition: color .3s ease-in-out;
}

table tr td.acoes.cursor i {
    cursor: default;
}

table tr td.acoes i.editar:hover {
    color: #FDA006;
}

table tr td.acoes i.visualizar:hover {
    color: #716ACA;
}

table tr td.acoes i.aprovar:hover, table tr td.acoes i.imprimir:hover {
    color: #3DA5F4;
}

table tr td.acoes i.aprovado {
    color: #FDA006;
}

table tr td.acoes i.aprovado.finalizado {
    cursor: default;
}

table tr td.acoes i.aprovado:not(.finalizado):hover {
    color: #E13A58;
}

table tr td.acoes i.reprovado {
    color: #E13A58;
    cursor: default;
}

table tr td.acoes i.transportadora:hover {
    color: #ff7522;
}

table tr td.acoes i.cotacao:hover {
    color: #2fac39;
}

table tr td.acoes i.motorista:hover {
    color: #F1536E;
}

table tr td.acoes i.finalizar:hover {
    color: #44b6ae;
}

table tr td.acoes i.excluir:hover {
    color: #E13A58;
}

/* =============== CONFIRMAÇÃO =============== */

[data-confirmation] {
    display: inline-block;
    position: relative;
}

[data-toggle-confirmation] {
    cursor: pointer;
}

.confirmation {
    min-width: 150px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(100, 100, 100, 0.2);
    color: #535F60;
    position: absolute;
    font-size: 0.9em;
    text-align: center;
    z-index: 1;
    cursor: default;
    transition: transform .3s ease-in-out;
}

.confirmation:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
}

.confirmation p {
    font-weight: 600;
    margin-bottom: 10px;
}

.confirmation a, .confirmation span {
    width: 50%;
    float: left;
    padding: 5px 10px;
    cursor: pointer;
    color: #ffffff;
    transition: all .3s ease-in-out;
}

.confirmation a:hover, .confirmation span:hover {
    background: #e4e4e4;
}

.confirmation a {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.confirmation a:hover {
    color: #E13A58;
}

.confirmation span {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.confirmation span:hover {
    color: #44b6ae;
}

.confirmation {
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translate(-50%, 0) scale(0);
    font-size: 0.9em;
    text-align: center;
    z-index: 1;
    transition: transform .3s ease-in-out;
}

.confirmation:after {
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-top: solid 10px #535f60;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
}

.confirmation.active {
    transform: translate(-50%, 0) scale(1);
}

table .confirmation {
    top: 50%;
    left: 35px;
    bottom: unset;
    transform: translate(0, -50%) scale(0);
}

table tr:last-of-type .confirmation {
    top: -60%;
}

table .confirmation:after {
    top: 50%;
    left: -10px;
    margin: unset;
    transform: translate(0, -50%);
    border-right: solid 10px #535f60;
    border-top: solid 10px transparent;
    border-bottom: solid 10px transparent;
    border-left: 0;
}

table tr:last-of-type .confirmation:after {
    top: 75%;
}

table .confirmation.active {
    transform: translate(0, -50%) scale(1);
}

/* =============== MARGENS =============== */

.auto-margin {
    margin: auto;
}

.no-margin {
    margin: 0;
}

/* =============== MARGIN TOP =============== */

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

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

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

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

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

/* =============== MARGIN RIGHT =============== */

.mr-10 {
    margin-right: 10px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

/* =============== MARGIN BOTTOM =============== */

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

/* =============== MARGIN LEFT =============== */

.ml-10 {
    margin-left: 10px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

/* =============== PREENCHIMENTOS =============== */

/* =============== PADDING =============== */

.p-10 {
    padding: 10px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-50 {
    padding: 50px !important;
}

/* =============== PADDING TOP =============== */

.pt-10 {
    padding-top: 10px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

/* =============== PADDING RIGHT =============== */

.pr-10 {
    padding-right: 10px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

/* =============== PADDING BOTTOM =============== */

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

/* =============== PADDING LEFT =============== */

.pl-10 {
    padding-left: 10px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

/* =============== ANIMAÇÕES =============== */

@keyframes timer {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translate(0, -100px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }
    to {
        opacity: 0;
        visibility: hidden;
        transform: translate(0, -100px);
    }
}

@keyframes blink {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.2);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes loading {
    from {
        transform: translate(0, -50%) rotate(0deg);
    }
    to {
        transform: translate(0, -50%) rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes lights {
    25% {
        stroke: #000;
    }
    50% {
        stroke: #fde406;
    }
    75% {
        stroke: #fde406;
    }
    100% {
        stroke: #000;
    }
}

.label-geral{
    position: absolute;
    top: -9px;
    left: 10px;
    padding: 0 5px;
    background: #ffffff;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 400;
    transition: all .3s ease-in-out;
    z-index: 1;
}


.check-transportadora {
    display: inline-block;
    transform: rotate(45deg);
    height: 24px;
    width: 12px;
    border-bottom:  5px solid;
    border-right: 5px solid;
    transition: 0.3s;
}


.check-transportadora-color{
    border-bottom-color: #78b13f;
    border-right-color: #78b13f;

}
.check-transportadora:hover{

    cursor: pointer;
    transform: rotate(-15deg);
    border-bottom-color: #78b13f;
    border-right-color: #78b13f;
    /*position:relative;
    top:-75px;
    left:-100px;*/

}
.ordem_carregamento{
    font-weight: 900 !important; 
    color:#000000 !important;
    font-size:30px !important;
}

@media (max-width: 768px) {
    .center-topo{
        width: 100%;
    }

    .p-30 {
        padding: 10px !important;
    }

    .pl-30, .pb-30{
        padding: 10px !important;
    }

    .pl-20, .pr-20 {
        padding: 5px !important;
    }

}



/* =============== FLEX =============== */


.flex{
    display: flex;
}


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

.flex-v-center{
    display: flex;
    justify-content: center;
}

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

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

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


/* =============== FLOAT =============== */


.float-left{
    float: left;
}

.float-right{
    float: right;
}

.height-100{
    height: 100%;
}






@media (max-width: 768px) {

    /* =============== MARGIN TOP MOBILE =============== */

    .mt-mob-10{
        margin-top: 10px;
    }
    .mt-mob-20{
        margin-top: 20px;
    }
    .mt-mob-30{
        margin-top: 30px;
    }
    .mt-mob-40{
        margin-top: 40px;
    }
    .mt-mob-50{
        margin-top: 50px;
    }


    /* =============== MARGIN BOTTOM MOBILE =============== */

    .mb-mob-10{
        margin-bottom: 10px;
    }
    .mb-mob-20{
        margin-bottom: 20px;
    }
    .mb-mob-30{
        margin-bottom: 30px;
    }
    .mb-mob-40{
        margin-bottom: 40px;
    }
    .mb-mob-50{
        margin-bottom: 50px;
    }
}
