@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;800&family=Raleway:wght@300;400;500;600;700&family=Urbanist:wght@100;400;700&family=Roboto+Condensed:wght@400;700&display=swap&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

#frmLogin .alert {
  margin-bottom: 10px;
  padding: 5px;
}

/* HOME - DEPOIMENTOS */

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 2;
}


.depoimentos {
  padding: 0 10px;
}

.depoimentos h3 {
  margin-bottom: 15px;
}

.depoimentos blockquote, 
.depoimentos .blockquote-reverse {
  font-size: 14px;
  font-style: italic;
  margin: 0.25em 0;
  padding: 0.25em 40px;
  line-height: 1.45;
  position: relative;
  color: #383838;
  border: none;
}

.depoimentos blockquote p {
  font-size: 18px;
}

.depoimentos blockquote:before {
  display: block;
  content: "\201C";
  font-size: 80px;
  position: absolute;
  left: -20px;
  top: -20px;
  color: #7a7a7a;
}

.depoimentos blockquote cite {
  color: #1a4869;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

/* NOTICIAS */

.container-noticias h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

.container-noticias p {
  font-size: 16px;
}

/* BOX PARCELAMENTOS */
#box-parcelamento label {
    font-size: 16px;
    font-weight: bold;
}

/* whatsapp link */
#fixedbutton {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10000;
}

/* WHATSAPP CONTACT BUTTON */
.contact-button-container {
    margin-top: 45px;
    border: 1px solid rgba(7, 94, 84,.4);
    border-radius: 10px;
    padding: 20px;
}
.contact-button-container .group{
    display: flex;
    flex-wrap: wrap;
}
.contact-button {
    display: flex;
    max-width: 30rem;
    background: #1c1c1c;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: bold;
    font-family: Urbanist, Arial, Sans-serif, serif;
    transition: 200ms all linear;
    margin: 10px;
}
.contact-button:hover {
    text-decoration: underline;
    color: #FFFFFF;
}
.contact-button img {
    max-width: 30px;
}
.contact-button .glyphicon {
    margin: 9px;
}
.contact-button div {
    margin-left: 10px;
    display: flex;
    align-items: center;
}
.contact-button.whatsapp {
    background: #075e54;
}
.contact-button.mail {
    background: #1a4869;
}
.contact-button.mail:hover {
    background-color: #1a4869;
}

.mat-primary {
    background: #00dd00!important;
}

/* select2 fix */
.select2-container {
    width: 100%!important;
}
.select2-selection {
    height: 33px!important;
    border: 1px solid #335c79!important;
}

.proposta-beneficios {
    text-align: left;
    min-height: 80px;
}
.proposta-beneficios ul {
    list-style: circle;
    padding-left: 20px;
    margin-left: 25px;
}
.debug {
    border: 1px solid red;
}

/* tela de assinatura */
#pos-assinatura,#pre-assinatura, .box-loading{
    font-family: var(--body-font-family);
}
#pre-assinatura p {
    font-size: 1.7rem;
}
.duvidas-assinatura {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: auto;
    background-color: #ff6200;
    position: fixed;
    bottom: 22px;
    right: 15px;
    border-radius: 15px;
    opacity: 0.8;
    box-shadow: 3px 3px 3px darkgrey;
    padding: 10px;
    cursor: pointer;
    font-size: large;
    transition: opacity linear 200ms;
    z-index: 500;
}
.duvidas-assinatura:hover  {
    opacity: 1;
}
.duvidas-assinatura p {
    color: #FFF;
    margin-bottom: 0;
}

.duvidas-frequentes {
    margin-top: 50px;
}

#pos-assinatura {
    display: none;
}

.tela-assinatura .box-loading {
    font-family: var(--body-font-family);
    opacity: 0;
    display: none;
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
    transition: display 1s linear;
}
.tela-assinatura .box-loading-content {
    width: 80%;
}
/* fim tela de assinatura */


/* form OBFs */
.componente-obf {
    padding-left: 36px!important;
}
.formulario-campo {
    max-width: 70%!important;
}
/* fim form OBFs */

.table-unbordered>thead>tr>th, .table-unbordered>tbody>tr>th, .table-unbordered>tfoot>tr>th, .table-unbordered>thead>tr>td, .table-unbordered>tbody>tr>td, .table-unbordered>tfoot>tr>td {
    border: none;
}

/* bootstrap 4 - flex*/
.d-flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-column {
    flex-direction: column;
}
.justify-content-start {
    justify-content: flex-start;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-around {
    justify-content: space-around;
}
.align-items-start{
    align-items: flex-start;
}
.align-items-end{
    align-items: flex-end;
}
.align-items-center{
    align-items: center;
}
.align-items-baseline{
    align-items: baseline;
}
.align-items-stretch{
    align-items: stretch;
}
.flex-nowrap{
    flex-wrap: nowrap;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-wrap-reverse{
    flex-wrap: wrap-reverse;
}
.p-0 {
    padding: 0!important;
}
.pb-1 {
    padding-bottom: 1rem!important;
}
.pb-2 {
    padding-bottom: 2rem!important;
}
.m-0 {
    margin: 0!important;
}

/* modal whatsapp optin */
.box-collect-whatsapp-optin {
    box-sizing: border-box;
    background: #128C7E;
    color: #FFFFFF;
    width: 95%;
    max-width: 1200px;
    position: fixed;
    bottom: 60px;
    left: 25px;
    padding: 20px!important;
    opacity: 0.98;
    z-index: 1000;
    border-radius: 0px;
    box-shadow: 3px 3px 3px black;
}
.box-collect-whatsapp-optin p {
    font-size: 1.7rem;
}
/* FIM modal whatsapp optin */

/* Enviar Petição Protocolada */
#img_ajuda_minuta_protocolada {
    width: 100%;
    height: auto;
    max-height: 300px;
}

@media screen and (max-width: 767px) {
    #img_ajuda_minuta_protocolada {
        content: url("/images/ajuda_minuta_protocolo_mobile.png");
        max-height: 500px;
    }
}
@media screen and (min-width: 768px) {
    #img_ajuda_minuta_protocolada {
        content: url("/images/ajuda_minuta_protocolo_short.png");
    }
}
/* FIM Enviar Petição Protocolada */


@media screen and (max-width: 767px) {
    .header_logo img {
        width: 100%;
        max-width: 225px;
    }
}

.header-row {
    display: flex;
    align-items: center;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
.rotate {
    width: 100px;
    animation: rotation 2s infinite linear;
}
label {
    font-weight: 400;
}


.alert-grey {
    color: #494949;
    background-color: #efefef;
    border-color: #bdbdbd;
}
.divisor{
    border-bottom: 1px solid #5f5f5f;
    width: 100%;
}

.modal-centered {
    text-align: center;
}
@media screen and (min-width: 768px) {
    .modal-centered:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}
.modal-centered .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}


@media (min-width: 768px) {
    .max-w2 {
        max-width: 900px;
        margin: 0 auto;
    }
}



.box-proposta-opcao {
    padding: 15px;
    max-width: 400px;
    width: 100%
}

.container-opcoes {
    display: flex;
    flex-wrap: wrap; /* Adjusts boxes to multiple lines if necessary */
    justify-content: space-evenly; /* Distributes space around boxes */
}
.box-or-options {
    max-width: 50px;
    font-size: 2rem;
}
@media screen and (max-width: 1084px) {
    .container-opcoes {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
}


.multi-opcoes-off.box-proposta-opcao {
    max-width: 100%;
}

.blue-innner p {
    margin-bottom: 0;
}

/* Negociação Mobile */
@media screen and (max-width: 767px) {
    .row-proposta-opcoes {
        flex-direction: column;
    }
    .col-plus-icon {
        margin: 25px 0;
    }
    div.blue-innner p.blue-innner-title,
    div.blue-innner h2,
    .proposta-beneficios {
        min-height: 0!important;
    }

    .gr {
        margin-bottom: 10px;
    }
    #ifrAcordo {
        height: 600px!important;
    }
}
/* FIM Negociação */