.dt-button {
    color: #607080 !important;
    border: 1px solid #f8f9fa !important;
    border-radius: 7px !important;
    background-color: #f8f9fa !important;
    background-image: none !important;
}

.btn-novo-registro {
    color: #fff !important;
    border: 1px solid #435ebe !important;
    background-color: #435ebe !important;
}
.hidden-button {
    display: none;
}

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

.botao-leads {
    height: 100px !important;
    font-size: 20px;
}
.icone-botao-leads {
    margin-top: 10px;
    margin-left: -20px;
    font-size: 45px;
}
.icone-botao-leads-2 {
    margin-top: 10px;
    margin-left: -25px;
    font-size: 45px;
}
.auth-right {
    height: 100%;
    background: rgb(31,60,154);
    background: linear-gradient(90deg, rgba(31,60,154,1) 0%, rgba(29,50,122,1) 19%, rgba(20,40,111,1) 43%, rgba(22,39,98,1) 69%, rgba(23,38,96,1) 100%);
}
.user-dropdown:hover {
    font-weight: bolder;
}
.user-dropdown:focus {
    font-weight: bolder;
}
#auth #auth-left .auth-logo {
    margin-bottom: 2rem;
}
.logo img {
    min-width: 70px;
    min-height: 70px;
}
@media (max-width: 48em) {
    .btn-user-name{
        display: none;
    }
}

.card-cotacao {
    border-left: 2px solid #007bff;
}

.card-primary.card-outline {
    border-top: 3px solid #007bff;
}
.card-success.card-outline {
    border-top: 3px solid #28a745;
}
.card-warning.card-outline {
    border-top: 3px solid #ffc107;
}
.card-danger.card-outline {
    border-top: 3px solid #dc3545;
}
.card-info.card-outline {
    border-top: 3px solid #17a2b8;
}
.card-secondary.card-outline {
    border-top: 3px solid #6c757d;
}
.card-kanban {
    background-color: #f7f3f8;
}
.col-kanban{flex:0 0 auto;width:20%}

.select2-selection__rendered {
    line-height: 28px !important;
}
.select2-container .select2-selection--single {
    height: 38px !important;

}
.select2-selection__arrow {
    height: 34px !important;
}
.select2 {
    width:100%!important;
}
.input-group-merge .form-control {
    border-left: white;
}
.input-group-merge .input-group-text {
    background-color: white;
    border-right: white;
}
.input-group-merge .input-group-text .fas {
    opacity: 70%;
}
.select2-selection {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-clip: padding-box !important;
    background-color: #fff !important;
    border: 1px solid #dce7f1 !important;
    color: #1862ac !important;
    display: block !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
}
.input-group-merge .select2-selection {
    border-left: 1px solid white !important;
    border-radius: 0 0.25rem 0.25rem 0 !important;
}
.select2-selection .select2-selection__rendered {
    color: #607080 !important;
}
.select-2-group .input-group-text {
    border-radius: 0.25rem 0 0 0.25rem !important;
}
.select2-selection__rendered .select2-selection__choice{
    background-color: #435ebe !important;
    color: white !important;
    font-size: 14px;
    border-color: white !important;
}
.select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
    color: white !important;
    border-color: white !important;
}
.select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover {
    background-color: #263e97 !important;
}
.select2-container--default .select2-selection--multiple {
    border: 1px solid #dce7f1 !important;
}
/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #f2f7ff;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #435ebe;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6279cc;
}



.icon-pulse {

    font-size: 10px;
    border-radius: 50%;

    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(203, 203, 203, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(203, 203, 203, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0  rgba(203, 203, 203, 0);
    }
}

.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #222;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #f5f5f6;
    left: 18px;
    width: 25px;
    height: 25px;
    z-index: 400;
}
.label-timeline {
    position: relative;
    background: #f5f5f6;
    padding: 1.7em;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}


.li-timeline-primary:before {
    background-color: #303641;
    color: #fff;
}

.li-timeline-secondary:before {
    background-color: #ee4749;
    color: #fff;
}

.li-timeline-success:before {
    background-color: #00a651;
    color: #fff;
}

.li-timeline-info:before {
    background-color: #21a9e1;
    color: #fff;
}

.li-timeline-warning:before {
    background-color: #fad839;
    color: #fff;
}

.li-timeline-danger:before {
    background-color: #cc2424;
    color: #fff;
}

.li-timeline-dark:before {
    background-color: rgb(27, 23, 50) !important;
    color: #fff;
}

body .bi:before{
    vertical-align: middle !important;
    margin-top: -3px !important;
}

.card-formulario-cotacao {
    border-top:2px solid #435ebe;
}

@media (max-width: 48em) {
    .card-sucesso {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 50em) {
    .card-aviso {
        width: 75%;
        height: 75%;
    }

    .d-flex-aviso {
        justify-content: center!important;
        align-items: center!important;
        display: flex!important;
    }
}


.custom-tab > .nav-item{
    margin: 5px;
}
.custom-tab > .nav-item button{
    background-color: #f2f7ff;
}
.nav-tabs .nav-link.active {
    background-color: #435ebe;
    color: white;
    border: none;
}