:root {
  --primary-color: #07B2FD; /*AZUL*/
  --primary-hover: #067ddf; /*AZUL*/
  --grey-1: #525966; /*CINZA*/
  --grey-2: #333942; /*CINZA ESCURO*/
  --grey-3: #858791;
  --grey-4: #BFBFBF;
  --red: #FF5045; /*VERMELHO*/
  --red-hover: #d32f23; /*VERMELHO*/
  --green-1: #418A46;
  --green-2: #51D25A;
  --blue-1: #2B89B2;
  --blue-2: #8DCEEB;
  --font-size: 16px;
}
body {
  font-family: 'Segoe UI', sans-serif;
  font-size: var(--font-size);
  color: var(--grey-2);
}
@media (max-width: 1140px) {
  body {
    font-size: 14px;
  }
  .container-fluid.py-4{
    margin-top: 194px!important;
  }
}
/*Scroll*/
::-webkit-scrollbar {
  width: 10px;
  height: 7px;
}
::-webkit-scrollbar-track {
	background: #F3F4F9;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #07B2FD;
  border-radius: 10px;
}

/*Fonts*/
.bold {
  font-weight: 600;
}
.f-20 {
  font-size: 20px;
}
/*Colors*/
.c-primary {
  color: var(--primary-color);
}
.c-white {
  color: #FFFFFF;
}
.c-grey-1 {
  color: var(--grey-1);
}
.c-grey-2 {
  color: var(--grey-2);
}
.c-grey-3 {
  color: var(--grey-3);
}
.c-red {
  color: var(--red);
}
.c-green-1 {
  color: var(--green-1);
}
.c-green-2 {
  color: var(--green-2);
}
.c-blue-1 {
  color: var(--blue-1);
}
.c-blue-2 {
  color: var(--blue-2);
}

/*Colors*/
.c-black {
  color: #000;
  font-weight: bold;
}
/*Labels*/
#categorizacao{
  width: 100%;
  margin: 8px 0 -8px 0;
  float: left;
}
  .box-elegibility{
    min-width: 106px;
    margin-right: 4px;
    border-radius: 10px;
    text-align: center;
    padding: 2px 10px!important;
    background-color: #1c1c1c;
    margin-bottom: 2px;
    cursor: default;
    font-size: 14px;
    float: left;
  }
  .box-elegibility.label-red {
    border: 1px solid #c0090a;
  }
  .box-elegibility.label-blue {
    border: 1px solid var(--primary-color);
  }
  .box-elegibility.label-green {
    border: 1px solid #00ad4f;
  }

.brd-right {
  border-right: 1px solid var(--grey-1);
}
.brd-right-light {
  border-right: 1px solid #E8E8F0;
}

/*Buttons*/
.btn, .btn:hover, .btn:focus, .btn:active {
  border: none;
}
.btn-blue {
  background: var(--primary-color);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  cursor: default;
}
.btn-blue:hover {
  background: var(--primary-hover);
  color: #FFFFFF;
}
.btn-blue-1 {
  background: var(--blue-1);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  cursor: default;
}
.btn-blue-1:hover {
  background: var(--blue-1);
  color: #FFFFFF;
}
.btn-blue-2 {
  background: var(--blue-2);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  cursor: default;
}
.btn-blue-2:hover {
  background: var(--blue-2);
  color: #FFFFFF;
}
.btn-red {
  background: var(--red);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  cursor: default;
}
.btn-red:hover {
  background: var(--red-hover);
  color: #FFFFFF;
}
.btn-green-1 {
  background: var(--green-1);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  cursor: default;
}
.btn-green-1:hover {
  background: var(--green-1);
  color: #FFFFFF;
}
.btn-green-2 {
  background: var(--green-2);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  cursor: default;
}
.btn-green-2:hover {
  background: var(--green-2);
  color: #FFFFFF;
}
.btn-grey {
  background: var(--grey-3);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
  cursor: default;
}
.btn-grey:hover {
  background: var(--grey-3);
  color: #FFFFFF;
}
.btn-transparent {
  border: none;
  background: none;
  cursor: pointer;
}

/*Navbar*/
.nav-buttons {
  gap: 10px
}
.nav-buttons li {
  flex: 1;
}
.nav-blue-1 {
  width: 100%;
  background: var(--grey-4);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
}
.nav-blue-1.active {
  background: var(--blue-1);
}
.nav-blue-2 {
  width: 100%;
  background: var(--grey-4);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
}
.nav-blue-2.active {
  background: var(--primary-color);
}
.nav-blue-3 {
  width: 100%;
  background: var(--grey-4);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
}
.nav-blue-3.active {
  background: var(--blue-2);
}
.nav-green-1 {
  width: 100%;
  background: var(--grey-4);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
}
.nav-green-1.active {
  background: var(--green-1);
}
.nav-green-2 {
  width: 100%;
  background: var(--grey-4);
  border-radius: 50px;
  padding: 7px 25px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  transition: all 0.3s;
}
.nav-green-2.active {
  background: var(--green-2);
}

/*Widht*/
.w-10 {
  width: 10%;
}
.w-30 {
  width: 30%;
}
.w-65 {
  width: 55%;
}
/*Header*/
.header {
  background: #333942;
  color: #FFFFFF;
  padding: 10px 0px;
  min-height: 34px
}
.header label {
  line-height: var(--font-size);
}
.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
.cont-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px
}
.cont-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}
.input-search-header {
  height: 24px;
  background-image: url(../svg/search.svg);
  background-position: center right 5px;
  background-repeat: no-repeat;
}
.input-search-header::-webkit-outer-spin-button,
.input-search-header::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-search {
  background-image: url(../svg/search.svg);
  background-position: center right 5px;
  background-repeat: no-repeat;
}
@media (max-width: 2900px) {
  .cont-header {
    justify-content: space-between;
    gap: 10px 20px;
    position: relative;
  }
  .cont-header::before {
    content: '';
    background: var(--grey-1);
    width: 100%;
    height: 0px;
    position: absolute;
    left: 0;
    bottom: 50px;
  }
  .block-0 {
    order: 1;
    width: 15%;
    gap: 0px;
  }
  .block-1 {
    order: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 4px;
    grid-row-gap: 2px;
    position: relative;
    padding-right: 30px;
  }
  .block-2 {
    order: 3;
    height: 50px;
    padding-top: 5px;
  }
  .block-3 {
    display: block;
    width: 15%;
    order: 2;
    margin-left: auto;
  }
  .block-4 {
    order: 4;
    height: 50px;
    margin-left: auto;
    padding-top: 5px;
  }
}
@media (max-width: 1200px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1000px) {
  .block-0 {
    width: 15%;
    border-right: none;
    border-left: none;
    padding-left: 0px;
  }
 .block-1 {
    width: auto;
  }
  .block-3 {
    width: 15%;
    display: block;
    margin-left: 0px
  }
  .block-4 {
    margin-left: 0px;
  }
}

@media (max-width: 820px) {
  .input-search-header{
    width: 60%;
    display: block;
  }
  .cont-header{
    gap: 10px;
  }
  .block-0 {
    display: block;
    width: 80%;
  }
  .block-1 {
    width: 100%;
    border: none;
  }
  .block-1 div {
    display: block;
    padding: 0px 0px 0px 0px;
    height: 22px;
  }
  .block-3 {
    display: block;
    width: 30%;
    padding: 0px;
  }
  .container-fluid.py-4{
    margin-top: 200px!important;
  }
}
@media (max-width: 530px) {
  .block-1 {
    width: 90%;
    border-right: none;
    border-left: none;
    padding-left: 0px;
  }
  .block-3 {
    width: 100%;
    border-top: 1px solid var(--grey-1);
    border-bottom: 1px solid var(--grey-1);
    padding: 5px 20px 5px 0px;
  }
  .block-4 {
    margin-left: 0px;
  }
  .logo img{
    height: 40px;
    margin-top: 8px;
    float: left;
  }
  .cont-info .responsive-mobile{
    margin-right: 10px;
    float: left;
  }
  .container-fluid.py-4-info{ margin-top: 80px!important; }
}

/*Accordion*/
.accordion-button {
  border-top-right-radius: 10px !important;
  border-top-left-radius: 10px !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  gap: 10px
}
.accordion-button.collapsed,
.accordion-item {
  border-radius: 10px !important;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed){
  background: var(--primary-color);
  color: #FFFFFF;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-button {
  background: var(--grey-1);
  color: #FFFFFF;
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../svg/arrow-bottom.svg);
  background-size: 15px 15px;
}
.accordion-button::after {
  background-image: url(../svg/arrow-right.svg);
  background-size: 15px 15px;
}
.accordion-body {
  background: #F3F4F9;
  display: flex;
  flex-direction: column;
  gap: 15px
}
.accordion-container {
  background: #FFFFFF;
  border: 1px solid #E8E8F0;
  border-radius: 10px;
  padding: 25px 15px 15px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px
}
.accordion-box {
  border: 1px solid #E8E8F0;
  border-radius: 10px;
  padding: 15px;
}
.accordion-box .title {
  margin-top: -30px;
}
.h3 {
  font-size: 16px;
}
.accordion-box h3 {
  display: inline-block;
  background-color: #FFF;
  font-size: 16px;
  padding: 0 5px;
}
.accordion-box-cont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.box-grey {
  border: 1px solid #E8E8F0;
  border-radius: 10px;
  padding: 5px 20px;
}
.box-black {
  border: 1px solid var(--grey-2);
  border-radius: 10px;
  padding: 5px 20px;
}
.box-blue {
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 5px 20px;
}
.box-red {
  border: 1px solid var(--red);
  border-radius: 10px;
  padding: 5px 10px;
}
.maxw-200 {
  max-width: 200px;
  width: 100%;
}
.mw-120 {
  min-width: 120px;
}
.wh-31 {
  width: 30%;
}
.wh-39 {
  width: 39%;
}
.wh-47 {
  width: 47%;
}
.wh-48 {
  width: 48%;
}
.wh-49 {
  width: 49%;
}
.wh-59 {
  width: 59%;
}

.mh-150 {
  min-height: 150px;
}
@media (max-width: 920px) {
  .wh-39 {
    width: 100%;
  }
  .wh-47 {
    width: 100%;
  }
  .wh-48 {
    width: 100%;
  }
  .wh-49 {
    width: 100%;
  }
  .wh-59 {
    width: 100%;
  }
  .mh-150 {
    min-height: auto;
  }
}
@media (max-width: 540px) {
  .wh-31 {
    width: 100%;
  }
}

.date-calendar {
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--grey-1);
  padding: 10px 5px;
  position: relative;
  overflow: hidden;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.date-calendar span {
  font-size: 13px;
}
.date-calendar label {
  line-height: 10px;
}
.activeButton {
  width: 80px;
  height: 60px;
}
.grey-band {
  color: var(--grey-3);
  opacity: 0.5;
}
.grey-band::after {
  content: '';
  background: var(--grey-3);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.green-band-1.activeButton {
  background: #FFFFFF;
  color: var(--green-1);
}
.green-band-1.activeButton::after {
  content: '';
  background: var(--green-1);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.green-band-2.activeButton {
  background: #FFFFFF;
  color: var(--green-2);
}
.green-band-2.activeButton::after {
  content: '';
  background: var(--green-2);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.blue-band-1.activeButton {
  background: #FFFFFF;
  color: var(--blue-1);
}
.blue-band-1.activeButton::after {
  content: '';
  background: var(--blue-1);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.blue-band-2.activeButton {
  background: #FFFFFF;
  color: var(--primary-color);
}
.blue-band-2.activeButton::after {
  content: '';
  background: var(--primary-color);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.blue-band-3.activeButton {
  background: #FFFFFF;
  color: var(--blue-2);
}
.blue-band-3.activeButton::after {
  content: '';
  background: var(--blue-2);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.cont-band-0.activeButton {
  background: #FFFFFF;
  color: var(--green-1);
}
.cont-band-0.activeButton::after {
  content: '';
  background: var(--green-1);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.cont-band-1.activeButton {
  background: #FFFFFF;
  color: var(--green-2);
}
.cont-band-1.activeButton::after {
  content: '';
  background: var(--green-2);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.cont-band-2.activeButton {
  background: #FFFFFF;
  color: var(--blue-1);
}
.cont-band-2.activeButton::after {
  content: '';
  background: var(--blue-1);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.cont-band-3.activeButton {
  background: #FFFFFF;
  color: var(--primary-color);
}
.cont-band-3.activeButton::after {
  content: '';
  background: var(--primary-color);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.cont-band-4.activeButton {
  background: #FFFFFF;
  color: var(--blue-2);
}
.cont-band-4.activeButton::after {
  content: '';
  background: var(--blue-2);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.focus-band {
  color: var(--green-1);
  width: 80px;
  height: 60px;
}
.focus-band span {
  font-size: 16px;
}
.focus-band::after {
  content: '';
  background: var(--green-1);
  height: 10px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

/*Table*/
.table-container {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.table-blue {
  margin-bottom: 0px;
}
.table-blue thead th {
  background: var(--primary-color);
  color: #FFFFFF;
  font-size: 14px;
  white-space: nowrap;
}
.table-blue tbody td {
  border: none;
  font-size: 12px;
  white-space: nowrap;
}
.table-striped > tbody > tr:nth-of-type(even) > * {
  --bs-table-bg-type: #F3F4F9;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: transparent;
}
.table-striped > tbody > tr.isPositive > *{
  --bs-table-bg-type: #ffffe8;
}
.dataTables_filter {
  display: none;
}
.table-footer {
  background: var(--grey-1);
  color: #FFFFFF;
  font-size: 10px;
  align-items: center;
}
.dataTables_length {
  display: block;
}
.dataTables_info {
  text-align: right;
  padding-right: 15px;
}
.dataTables_paginate {
  display: flex;
  justify-content: center;
}
.pagination {
  margin-bottom: 0px;
}
.pagination li a {
  font-size: 10px;
}
.disabled>.page-link, .page-link.disabled,
.page-item:last-child .page-link,
.page-item:first-child .page-link {
  background: none;
  color: #FFFFFF;
  border: none;
}
.page-link {
  background: none;
  border: none;
  color: #FFFFFF;
}
.active>.page-link {
  background: none;
  border: none;
  color: var(--primary-color);
}
.dataTables_length {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 10px;
  color: #FFFFFF;
}
.dataTables_length select {
  font-size: 10px;
    padding: 0px 5px;
}
.dataTables_length label {
  display: block;
}
.form-select-sm {
  width: 60px;
  display: inline-block;
}
.overflox-x-auto {
  overflow-x: auto;
}

/*Historic*/
.container-details {
  overflow-y: auto;
  padding-right: 10px;
  height: 200px;
}
.container-details-auto {
  overflow-y: auto;
  padding-right: 10px;
  height: auto;
  max-height: 200px;
}
.box-details {
  background: #F3F4F9;
  border-radius: 10px;
  padding: 15px;
  margin: 5px 0px;
}
.cursor {
  cursor: pointer;
}
.box-details p {
  margin: 3px 0px;
}
.form-control:disabled {
    background-color: transparent;
    opacity: 0.7;
}
.form-check-input:disabled {
  opacity: 1;
}
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.modal-md {
  max-width: 700px;
}
.modal-header {
  border-bottom: none;
}
.modal-footer {
  border-top: none;
}
.container-grid-modal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 10px;
}
.form-select-table {
  padding: 2px 5px;
  font-size: 12px;
}
.check-table {
  min-height: auto;
  margin-bottom: 0px;
}
.py-9 {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
}

/*Caroussel*/
.carousel-indicators [data-bs-target]{
  background-color: #E8E8F0;
  border-top: 0px;
  border-bottom: 0px;
  width: 40px;
  height: 7px;
  border-radius: 8px;
}
.carousel-indicators .active {
    background-color: var(--primary-color);
}
.accordion-box h3 {
  color: #000000;
}
.carousel-caption {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  padding-bottom: 2rem;
}
.carousel-indicators {
    top: 50px;
    bottom: auto;
}
.carousel-control-next-icon {
  background-image: url(../svg/arrow-next.svg);
}
.carousel-control-prev-icon {
  background-image: url(../svg/arrow-previus.svg);
}
.carousel-control-next, .carousel-control-prev {
  bottom: auto;
  top: 30px
}
.v-hidden {
  visibility: hidden;
}
.form-control::placeholder {
  opacity: 0.5
}
.cont-search-cpf{
  position: relative;
}
.drop-menu {
  position: absolute;
  z-index: 5;
  background: #FFFFFF;
  width: 220px;
  border-radius: 10px;
  display: none;
}
.drop-menu span {
  display: block;
}
h1, h2, h3, h4, p, span, strong{ cursor: default; }

button,
button label,
button span{ cursor: pointer; }

footer{
  width: 100%;
  padding: 0px 16px 6px 16px;
  text-align: right;
  position: relative;
  margin-right: 0px;
  z-index: 999;
  float: left;
}
  footer a{
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 15px;
    font-weight: bold;
    font-size: 12px;
  }

  /* powered by */
  #poweredby{
    width: auto;
    position: relative;
    cursor: default;
    float: right;
  }
  #poweredby *{ cursor: default; }
  #poweredby:hover > div.container{ display: block; }

    /* Icon */
    #poweredby img{
      width: 16px;
      margin-top: -2px;
    }
    /* Títulos */
    #poweredby span{
      color: var(--primary-color);
      font-weight: bold;
      font-size: 12px;
    }
    /* Flutuante */
    #poweredby > div.container{
      min-width: 280px;
      padding: 0 0 5px 0;
      position: absolute;
      display: none;
      bottom: 20px;
      right: 0px;
    }
      #poweredby div.timeload{
        width: 100%;
        border-radius: 5px;
        padding: 16px 20px;
        background: #e3f2ff;
        border: 1px dotted #a6abaf;
        text-align: left;
        float: left;
      }
        #poweredby div.timeload > span{
          text-decoration: underline;
          font-size: 14px;
        }
        #poweredby div.timeload p{
          font-size: 12px;
          margin: 0px;
        }
        #poweredby div.timeload p strong{ color: #787878; }
        #poweredby div.timeload a{
          margin: 8px 0 0 10px;
          text-decoration: underline;
          cursor: pointer;
          float: right;
        }
/* Loader */
#loader{
  width: 100%; height: 100%;
  background: #000;
  position: fixed;
  opacity: 0.75;
  z-index: 999999999;
  display: none;
}
  #loader div{
    width: 50px; height: 80px;
    position: absolute;
    margin: -40px 0 0 -25px;
    top: 50%;
    left: 50%;
  }
    #loader img{
      margin-bottom: 8px;
    }
    #loader span{
      color: #FFF;
      font-size: 11px;
    }

/* Proposta */
button.aceitar-proposta{ display: none; }
.svg-rotate-180{ transform: rotate(180deg); }

/* Geral */
.header{
  position: fixed!important;
  z-index: 99999!important;
  float: left!important;
}
.bootstrap-select{
  width: 100%!important;
  padding: 0px;
}
.container-fluid.py-4,
.container-fluid.py-4-info{
  margin-top: 210px;
  float: left!important;
  padding-bottom: 0px!important;
}
.container-fluid.py-4-info{ margin-top: 110px; }
.bootstrap-select .dropdown-toggle::after {
  border-top: 0!important;
  border-right:0!important;
  border-bottom:0!important;
  border-left:0!important;
}
#modal-refin p{ margin-bottom: 3px!important; }

#modal-nova-ocorrencia .row.title{ margin: 8px 0 -12px 0; }

.modal,
.swal2-container{ z-index: 9999999!important; }

#expand-screen{
  width: 22px; height: 22px;
  right: 0px; top: 0px;
  cursor: pointer;
  position: absolute;
  z-index: 999999;
  display: none;
}

@media (max-width: 640px){
  button.email,
  button.whatsapp,
  button.sms{
    padding: 7px 0px;
  }
    button.email span,
    button.whatsapp span,
    button.sms span{
      display: block;
    }

    #expand-screen{ display: block; }
}
@media (max-width: 500px){
  .container-grid-modal {
   grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .logo{
    margin-right: 0!important;
  }

  .logo img{
    height: 40px!important;
  }

}

/* LOG's */
#log-download{
  width: 100%;
  display: inline-block;
}
  #log-download a{
    font-size: 11px;
    float: right;
  }

td.json button{
  font-size: 10px;
  background: #d2d4e1;
}

span.log-status{
  width: 12px; height: 12px;
  border-radius: 6px;
  margin-bottom: -1px;
  display: inline-block;
}
span.log-status.success{ background-color: #679167; }
span.log-status.error{ background-color: #df6a6a; }

.header-info{
  display: block;
  width: 100%;
  border-top: 1px solid var(--grey-1);
  padding-top: 7px;
  margin-top: 3px;
}
.header-count{
  width: 31%;
  background: #FFF;
  color: #000;
  text-align: center;
  padding: 2px;
  border-radius: 10px;
  float: left;
  margin-right: 0.5%;
  margin-left: 0.5%;
}
.header-count-channels{
  width: 19%;
  background: #FFF;
  color: #000;
  text-align: center;
  padding: 2px;
  border-radius: 10px;
  float: left;
  margin-right: 0.5%;
  margin-left: 0.5%;
}

.logo{
  float: left;
  margin-right: 24px;
  position: absolute;
}

.logo img{
  height: 45px;
}

@media (min-width: 768px){
  .block-1{
    grid-column-gap: 50px!important;
  }
}

.title-accordion{
  margin-left: 36px;
  float: left;
  position: absolute;  
}

.select-score{
  padding: 2px;
  border-radius: 5px;
}

#occurrence-filter{
  max-width: 9em;
}

#occurrence-filter-deals{
  max-width: 12em;
}

#tabulation-history > tbody > tr > * {
  --bs-table-bg-type: transparent;
}
#tabulation-history > tbody > tr.main * {
  cursor: pointer !important;
}
#tabulation-history > tbody > tr:nth-child(4n+3) > *,
#tabulation-history > tbody > tr:nth-child(4n+4) > * {
  --bs-table-bg-type: #F3F4F9;
}

#tabulation-history > tbody > tr.isPositive > *{
  --bs-table-bg-type: #ffffe8;
}

#tabulation-history tr.detail span:nth-of-type(1),
#tabulation-history tr.detail span:nth-of-type(2){
  margin-right: 30px;
}
#tabulation-history tr.detail td{
  position: relative;
}
#tabulation-history tr.detail button{
  width: 14px; height: 7px;
  background-image: url(../img/slide-up.png);
  background-color: transparent;
  right: 8px; top: 15px;
  border: none;
  position: absolute;
}

#collapseTwo .buttons{
  text-align: end;
}
  #collapseTwo .buttons button{
    display: inline-flex;
  }

/* Frases Rápidas */
#modal-frases-rapidas #preview{
  border: dotted 1px #07B2FD;
  border-radius: 15px;
  margin: 15px 0;
  padding: 15px 10px;
  display: none;
}
#modal-frases-rapidas button{
  display: none;
}

/* Histórico */
#collapseFour .buttons button{
  display: inline-block;
}
#collapseFour .buttons button.btn-blue{ cursor: default; }

#history-journey{ display: none; }

input.proposal-value{
  min-width: 100px;
  color: #807272;
  padding: 1px 5px;
}

/* Pesquisa */
button#btn-search{
  margin-top: 24px;
}

@media (max-width: 680px) {
  .container-fluid.py-4{
    margin-top: 226px!important;
  }
}

@media (max-width: 770px) {
  button#btn-search{
    margin-top: 0px;
  }
}

.c-pointer{
  cursor: pointer;
}

div.proposta-excecao{
  display: inline;
  float: right;
}

#list-contracts td{
  vertical-align:middle;
}

span.vehicle-wrap{
  text-wrap: wrap !important;
}