@import url('boot.css');
@import url('../plugins/bootstrap/css/bootstrap.min.css');
@import url('../font/font-awesome/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0px;
    margin: 0px;
}

:root {
    --primary: #0A5AFF;
    --secondary: #002A90;
    --info: #00FFFF;
    --danger: #FF6450;
    --light: #f6f6f6;
    --success: #AFFF0A;
    --success2: #128C7E;
    --warning: #FFB30A;
    --yellow: #FFE50A;

    --border-radius: 15px;
}

::placeholder{
    color: #BBB9CB;
}


html{
    font-size: 16px;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    position: relative;
    background: transparent;
}

:target {
    scroll-margin-top: .8em;
}

body{
    font-size: 1rem;
    line-height: 1.4rem;
    height: 100%;
    font-weight: 400;
    z-index: 0;
    position: relative;
    background-color: #fff;
    color: #000;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/**/
.bg-primary{ background-color: var(--primary) !important; }
.bg-danger{ background-color: var(--danger) !important; }
.bg-info{ background-color: var(--info) !important; }
.bg-warning{ background-color: var(--warning) !important; }
.bg-secondary{ background-color: var(--secondary) !important; }
.bg-light{ background-color: var(--light) !important; }
.bg-success{ background-color: var(--success) !important; }
.bg-yellow{ background-color: var(--yellow) !important; }

.badge-primary{ background-color: var(--primary) !important; }
.badge-danger{ background-color: var(--danger) !important; }
.badge-info{ background-color: var(--info) !important; }
.badge-warning{ background-color: var(--warning) !important; }
.badge-secondary{ background-color: var(--secondary) !important; }
.badge-light{ background-color: var(--light) !important; }
.badge-success{ background-color: var(--success) !important; }
.badge-yellow{ background-color: var(--yellow) !important; }


.text-primary{ color: var(--primary) !important; }
.text-danger{ color: var(--danger) !important; }
.text-info{ color: var(--info) !important; }
.text-warning{ color: var(--warning) !important; }
.text-secondary{ color: var(--secondary) !important; }
.text-light{ color: var(--light) !important; }
.text-success{ color: var(--success) !important; }
.text-success2{ color: var(--success2) !important; }
.text-yellow{ color: var(--yellow) !important; }

.btn{
    border-radius: var(--border-radius);
    height: 48px;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
}
a.btn{
    line-height: 36px;
}

.btn-primary{
    border-color: var(--primary);
    background: var(--primary);
}
.btn-outline-primary{
    border: 2px solid #E0DDF6;
    color: var(--primary);
}

.btn-secondary{
    border-color: var(--secondary);
    background: var(--secondary);
}

.btn-outline-success2{
    border: 2px solid #E0DDF6;
    color: var(--success2) !important;
}
.btn-outline-success2:hover,
.btn-success2{
    background: var(--success2);
    border-color: var(--success2);
    color: #fff !important;
}


.btn-danger{
    border-color: var(--danger);
    background: var(--danger);
}
.btn-outline-danger{
    border: 2px solid #E0DDF6;
    color: var(--danger);
}

.btn-cinza{
    background: #BBB9CB;
    color: #fff;
}


.card{
    border-radius: var(--border-radius);
}


/**/


a{
    color: #000;
}
a:hover{
    color: #000;
    text-decoration: none;
}

/* MENU LATERAL */
body.menu-open{
    overflow: hidden;
}



h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    margin: 0px;
    font-weight: 400;
    font-family: "Work Sans", sans-serif;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong,
.h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong, .h6 strong {
    font-weight: 700;
}

small{
    font-size: 0.8rem;
    line-height: 1.2em;
}


.max-line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.max-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.max-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*REMOVE AS MARGINS NO MOBILE*/
@media (max-width: 576px) {
    .mobile-no-margin {
        margin-right: -14px !important;
        margin-left: -14px !important;
        border-radius: 0px !important;
        border-left: 0px !important;
        border-right: 0px !important;
        overflow-x: hidden !important;
    }
}



header{
    padding-top: 0px;
    padding-bottom: 0px;
}

header .navbar-nav{
    max-width: 700px;
    margin-left: auto
}
header .navbar-nav .nav-item .nav-link{
    font-weight: 600;
}
@media(max-width: 576px){
    header .btn-criar-conta span{
        display: none;
    }
}


.section-destaque{
    position: relative;
    padding-top: 60px
}
.section-destaque:before{
    position: absolute;
    content: '';
    background: #F4F6FA;
    width: 100%;
    height: 90%;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.section-destaque .container{
    max-width: 880px;
    text-align: center;
}
.section-destaque .container-destaque{
    max-width: 655px;
}
.section-destaque .logo{
    max-width: 343px;
    margin-bottom: 45px;
}
.section-destaque p{
    font-size: 1.19rem;
}

.card-filtro-principal{
    border: 0px;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}
.card-filtro-principal .card-body {
    padding: 12px;
}
.card-filtro-principal .card-body label{
    font-size: 0.87rem;
    font-weight: 700;
    margin-bottom: 0px;
    margin-left: 0.75rem;
}
.card-filtro-principal .card-body .form-control{
    border: 0px !important;
    outline: none !important;
    font-size: 1.07rem;
    font-weight: 500;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 25px;
}
.card-filtro-principal .card-body ::placeholder{
    color: #BBB9CB;
}
.card-filtro-principal .card-body .icon{
    font-size: 2.43rem;
    padding-left: 4px;
    padding-right: 4px;
}

.card-especialidades{
    position: relative;
    margin-top: 15px;
}
.card-especialidades:before{
    background-image: url(../img/todas-espec2.png) ;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    position: absolute;
    width: 50%;
    height: calc(100% + 16px);
    top: -13px;
    right: 0px;
    z-index: 1;
}
.card-especialidades-laboratorio:before{
     background-image: url(../img/exames1.png) !important;
}
.card-especialidades .card-body{
    padding: 48px 28px 28px 28px;
    color: #fff;
}
.card-especialidades .card-title{
    font-size: 2rem;
    margin-bottom: 16px;
}


@media (max-width: 576px){
   .section-destaque .logo{
       width: 248px;
    }
    .section-destaque .container-destaque{
        padding-left: 20px;
        padding-right: 20px;
    }
    .card-filtro-principal .btn{
        display: none;
    }
    .card-filtro-principal .card-body .icon {
        font-size: 1.75rem;
    }
}


.section{
    padding-top: 45px;
    padding-bottom: 45px;
}


.page-title h1,
.page-title h2{
    font-size: 2.37rem;
    letter-spacing: -0.7px;
    line-height: 1.1em;
}

.page-title h1 strong,
.page-title h2 strong{
    font-weight: 700;
}
.page-title p{
    font-size: 1.19rem;
    line-height: 1.4em;
}
.page-title .img-logo{
    width: 108px;
    height: 102px;
}
@media(max-width: 576px){
    .page-title h2{
        font-size: 1.9rem;
    }
    .page-title .img-logo{
        width: 75px !important;
        height: 71px;
    }
}


.section-especialidades .page-title h2{
    font-size: 1.5rem;
    font-weight: 600;
}

.card-especialidade-item{
    border: 1px solid #F4F6FA;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    margin-top: 8px;
    margin-bottom: 8px;
}
.card-especialidade-item .card-body{
    padding: 24px 12px;
    text-align: center;
    font-size: 0.87rem;
}
.card-especialidade-item .card-link{
    color: #374151;
}
.card-especialidade-item .card-title{
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.19rem;
    margin-top: 15px;
    margin-bottom: 4px;
}
.card-especialidade-item .card-body img{
    height: 59px;
    width: auto !important;
}

.slider-especialidades {
    position: relative;
}
.slider-especialidades .owl-nav button.owl-next,
.slider-especialidades .owl-nav button.owl-prev{
   width: 45px;
   height: 45px;
   background: #fff !important;
   border-radius: 50%;
    z-index: 2;
   box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.slider-especialidades .owl-nav button.owl-prev{
    left: -55px;
    top: calc(50% - 40px);
    position: absolute;
}
.slider-especialidades .owl-nav button.owl-next{
    right: -55px;
    top: calc(50% - 40px);
    position: absolute;
}

.slider-especialidades .owl-nav button.owl-next span,
.slider-especialidades .owl-nav button.owl-prev span{
   display: none;
}
.slider-especialidades .owl-nav button:before{
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 1.5rem;
    top: 12px;
    left: 17px;
    color: var(--primary) !important;
}
.slider-especialidades .owl-nav button.owl-next:before{
    content: "\f054";
}
.slider-especialidades .owl-nav button.owl-prev:before{
    content: "\f053";
}

@media(max-width: 576px){
    .slider-all-especialidades{
       /* border: 1px solid red;
        padding-left: 75px;*/
    }
    .slider-especialidades .owl-nav button.owl-prev{
        left: 15px;
    }
    .slider-especialidades .owl-nav button.owl-next{
        right: 15px;
    }
    .section-especialidades{
        padding-bottom: 0px;
    }
}


.comofunciona-passos{
    max-width: 980px !important;
    margin-left: auto;
    margin-right: auto;
}


.card-passos{
    background: #F4F6FA;
    position: relative;
    font-size: 1.4rem;
    color: var(--secondary);
    margin-top: 15px;
    border: 0px !important;
}
.card-passos.card-seta{
    /*margin-right: 22px;*/
}
.card-passos.card-seta:before{
    position: absolute;
    content: '';
    background: url(../img/passos.svg) top left no-repeat;
    background-size: contain;
    width: 22px;
    height: 80px;
    right: -20px;
    z-index: -1;
    top: calc(50% - 40px);
}
.card-passos .passo-img{
    position: absolute;
    right: 15px;
    top: -30px;
}
.card-passos .card-body{
    padding: 30px 40px;
}
.card-passos .passo{
    height: 6rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.card-passos .passo strong{
    font-size: 6rem;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
}
.card-passos .card-title{
    letter-spacing: -0.7px;
    margin-bottom: 0px;
    font-size: 1.4rem;
}

@media(max-width: 576px){
    .card-passos.card-seta{
        margin-right: 0px;
        margin-top: 30px;
        height: auto !important;
    }
    .card-passos.card-seta:before{
        display: none;
    }
}



.card-chamada-emdestaque {
    background: var(--primary);
    position: relative;
}
.card-chamada-emdestaque .fundo1:before{
    position: absolute;
    content: '';
    top:15px;
    left: 0px;
    height: 70%;
    width: 200px;
    background: url(../img/fundo-banner1.png) top right no-repeat;
    background-size: cover;
    z-index: 1;
}
.card-chamada-emdestaque .fundo1:after{
    position: absolute;
    content: '';
    top:0px;
    right: 0px;
    height: 90%;
    width: 400px;
    background: url(../img/fundo-banner2.png) top left no-repeat;
    background-size: cover;
    z-index: 1;
}
.card-chamada-emdestaque .card-body{
    padding: 60px 60px;
    color: #fff;
    z-index: 3;
}
.card-chamada-emdestaque hr{
    border-color:  rgba(255, 255, 255, 0.33) !important;
}
.card-chamada-emdestaque h2{
    font-size: 2rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    line-height: 1.4em;
}
.card-chamada-emdestaque .item {
    font-size: 1.19rem;
}
.card-chamada-emdestaque .item strong{
    font-size: 2.6rem;
    font-family: "Work Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

@media(max-width: 576px){
    .card-chamada-emdestaque .card-body{
        padding: 60px 30px;
    }
    .card-chamada-emdestaque .item {
        font-size: 1rem;
    }
    .card-chamada-emdestaque .item strong {
        font-size: 2.4rem;
    }
    .card-chamada-emdestaque .fundo1:after{
        width: 200px !important;
        background-position: left bottom;
    }
    .card-chamada-emdestaque .fundo1:before{
        width: 83px;
    }
    .card-chamada-emdestaque.mobile-no-margin {
        margin-left: -15px;
    }
}


.section-video .container{
    max-width: 860px;
}
.section-video .embed-responsive-item{
    border-radius: var(--border-radius);
}


.section-interna p,
.section-conteudo p{
    font-size: 1.31rem;
    line-height: 1.4em;
}
.conteudounica-fundo,
.conteudopq-fundo {
    position: relative;
    overflow: hidden;
}
.conteudopq-fundo:before {
    position: absolute;
    background: url(../img/fundo-porque.fw.webp) top left no-repeat;
    background-size: contain;
    content: '';
    width: 549px;
    height: 420px;
    left: calc(50% - 366px);
    top: 0%;
}

.conteudounica-fundo:before {
    position: absolute;
    background: url(../img/fundo-bukmed-unica.fw.webp) bottom left no-repeat;
    background-size: contain;
    content: '';
    width: 549px;
    height: 420px;
    left: 20%;
    right: 0px;
}

@media(max-width: 576px){
   .section-conteudo{
       padding-top: 0px;
   }
    .conteudopq-fundo:before {
       bottom: 0px;
       top: inherit;
       height: 300px;
   }
    .conteudounica-fundo {
        padding-bottom: 60px;
    }
    .conteudounica-fundo:before{
        bottom: 0px !important;
    }
}

.section-depoimentos .page-title{
    max-width: 620px;
}

.card-depoimento{
    background: #F4F6FA;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.15);
    border: 0px;
    font-size: 1rem;
    line-height: 1.2em;
}
.card-depoimento .card-body{
    padding: 30px 30px;
}
.card-depoimento .avatar{
    border-radius: 50%;
}
.card-depoimento p{
    margin-top: 20px;
    line-height: 1.6em;
    font-size: 1.07rem;
}


.section-faq .container{
    max-width: 880px;
}
.section-faq .page-title p{
    color: #374151;
}





.accordion-duvidas>.card:not(:first-of-type),
.accordion-duvidas>.card:not(:last-of-type){
    border: 1px solid #F4F6FA;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
}

.accordion-duvidas .card{
    border-radius: 15px;
}
.accordion-duvidas .card .card-body{
    padding: 20px 40px;
}
.accordion-duvidas .card .card-header{
    background: transparent;
    border-bottom: 0px;
    font-size: 1.27rem;
    font-weight: 700;
    border-top: 0px !important;
    padding: 20px 40px;
}
.accordion-duvidas .card .card-header a{
    display: block;
    padding-top: 4px;
    padding-bottom: 4px;
    position: relative;
    color: #072F80;
    font-weight: 700;
    font-family: "Work Sans";
}
.accordion-duvidas .card .card-header a:before{
    font-weight: 400;
    font-family: "Font Awesome 5 Pro";
    content: "\f077";
    position: absolute;
    top: 5px;
    right: 0px;
    color: #93A6CD;
}
.accordion-duvidas .card .card-header a.collapsed:before{
    content: "\f078" !important;
}
.accordion-duvidas .card p{
    font-size: 1.07rem;
    font-weight: 400;
    line-height: 1.6em;
}


.especialidades-lista{
    list-style: none;
    padding-top: 30px;
}
.especialidades-lista li{
    margin-bottom: 20px;
}
.especialidades-lista li a{
    color :#fff;
    font-size: 1.19rem;
}


footer{
    padding-top: 60px;
    padding-bottom: 15px;
    color: #374151;
    border-top: 1px solid #eee;
}
footer a{
    color: #374151;
    font-size: 19px;
}
footer ul{
    list-style: none !important;
}
footer ul li{
    margin-bottom: 15px;
}

footer .redes-sociais{
    color: #B3B6BF;
    font-size: 1.4rem;
}



.section-destaque-interna{
    padding-top: 50px;
    position: relative;
}
.section-destaque-interna:before{
    width: 100%;
    height: calc(100% - 24px);
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    background: #F4F6FA;
    content: '';

}
.section-destaque-interna .container{
    max-width: 700px;
}

.section-destaque-interna2{
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    background: #F4F6FA;
}
.section-destaque-interna2 .container{
    max-width: 700px;
}


.breadcrumb{
    background: none;
    padding: 0px;
    border-radius: 0px;
    text-align: center;
    justify-content: center;
}

.breadcrumb .breadcrumb-item.active{
    color: var(--secondary);
}
.breadcrumb .breadcrumb-item a{
    color: var(--primary);
}
.breadcrumb-item+.breadcrumb-item::before{
    font-family: "Font Awesome 5 Pro";
    content: "\f105";
    font-size: 0.75rem;
}
.section-destaque-interna  h1{
    color: var(--secondary);
    font-size: 2.37rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 30px;
}
.filtro-destaque-interna .busca{
    color: var(--secondary);
    font-family: "Work Sans";
    font-weight: 700;
    font-size: 1.5rem;
}
.filtro-destaque-interna .input-group{
    border: 0px !important;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.filtro-destaque-interna .input-group .input-group-text{
    border: 0px;
    background: #fff !important;
    font-size: 1.4rem;
    padding-left: 16px;
}
.filtro-destaque-interna .input-group .form-control{
    height: 48px;
    border: 0px !important;
    outline: none !important;
    font-size: 1.07rem;
    font-weight: 500;
    padding-left: 0px;
}

.card-especialidade-item-hoz {
    margin: 0px !important;
}
.card-especialidade-item-hoz .card-body{
    padding: 12px;
}


.card-filtro-interna{
    border: 1px solid #E0DDF6;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    color: var(--secondary);
}
.card-filtro-interna .border-top{
    border-top: 1px solid #E0DDF6 !important;
}
.card-filtro-interna h3{
    font-size: 1.19rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.card-filtro-interna a.card-link{
    text-decoration: underline;
}
.card-filtro-interna .input-group{
    border-radius: 5px;
    border: 1px solid #E0DDF6;
    background: #FFF;
    overflow: hidden;
}
.card-filtro-interna .input-group .input-group-text{
    background: none;
    padding-right: 4px;
    border: 0px;
}
.card-filtro-interna .input-group .form-control{
    border:0px;
    height: 37px;
    outline: none;
}

.card-credenciado{
    border: 1px solid #E0DDF6 !important;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    color: var(--secondary);
    overflow: hidden;
}
.card-credenciado .card-footer{
    background: transparent;
    border: 0px;
}
.card-credenciado .card-body{
    position: relative;
}
.card-credenciado .card-title{
    font-size: 1.19rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.card-credenciado .card-text{
    font-size: 0.875rem;
}
.card-credenciado .card-valores strong{
    font-size: 1.19rem;
    font-weight: 700;
    font-family: "Work Sans", sans-serif;
}
.card-credenciado .btn-credenciado{
    height: 28px;
    font-size: 0.875rem;
    border-radius: var(--border-radius);
    line-height: 16px;
}
.card-credenciado .badge-success{
     color: var(--secondary);
    background: #AFFF3F;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    padding: 6px 12px;
    position: absolute;
    margin-top: -56px;
}


.card-credenciado-detalhes{
    border-radius: var(--border-radius);
    border: 1px solid #E0DDF6;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    overflow: hidden;
    color: var(--secondary);
    font-size: 0.94rem;
}
.card-credenciado-detalhes .card-header{
    border-radius: 15px 15px 0 0;
    background: #374151;
    color :#fff;
    padding-bottom: 20px;
    padding-top: 20px;
}
.card-credenciado-detalhes .card-header h3{
    font-weight: 700;
    font-size: 1.19rem;
}
.card-credenciado-detalhes .card-body p,
.card-credenciado-detalhes .card-body{
    font-size: 0.875rem !important;
}
.card-credenciado-detalhes .card-body .valor{
    color: var(--danger);
    font-size: 1.5rem;
    font-weight: 800;
}
.card-credenciado-detalhes .card-body .endereco{
    font-size: 0.94rem;
    margin-top: 4px;
    border-radius: 8px;
    border: 1px solid  #e0ddf64a;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    padding: 8px 12px;
    display: block;
}
.card-credenciado-detalhes .card-body .detalhes{
    line-height: 1.6rem;
}
.card-credenciado-detalhes .card-footer{
    background: none;
    display: block;
    line-height: 1.4em;
    font-size: 0.84rem;
}
.card-credenciado-detalhes .title{
    font-size: 1.5rem;
    letter-spacing: -0.7px;
    line-height: 1.1em;
    font-weight: 700;
}
.card-credenciado-detalhes .cred-clinica{
    font-size: 0.875rem !important;
    color: var(--secondary);
}
.card-credenciado-detalhes .cred-clinica .btn-credenciado{
    height: 31px;
    font-size: 0.875rem;
    line-height: 13px;
}
.card-credenciado-detalhes .cred-clinica strong{
    font-size: 1rem;
}


.cred-clinica-form .input-group{
    border-radius: 5px;
    border: 1px solid #E0DDF6;
    background: #FFF;
    overflow: hidden;
}
.cred-clinica-form .input-group .input-group-text{
    background: none;
    padding-right: 4px;
    border: 0px;
}
.cred-clinica-form .input-group .form-control{
    border:0px;
    height: 37px;
    outline: none;
}
.cred-clinica-form .input-group .btn{
    border-radius: 0px !important;
    height: 39px;
    margin-top: -1px;
    margin-bottom: -1px;
}


.card-credenciado-detalhes .title-obg{
    font-size: 1.2rem;
    letter-spacing: -0.7px;
    line-height: 1.1em;
    font-weight: 700;
}

.section-pagina-interna{
    padding-top: 30px;
    padding-bottom: 30px;
}
.section-pagina-interna .page-title h1,
.section-pagina-interna .page-title h2{
    font-size: 1.5rem;
    color: var(--secondary);
}


.section-pagina-interna p{
    font-size: 1rem;
    line-height: 1.6em;
}

.alert-credenciado{
    border: 1px solid #E3E5E6;
    background-color: #F7F9FA;
    color: #444E58;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.alert-credenciado i{
    font-size: 1.4rem;
}

.card-opiniao h4{
    font-weight: 500;
    font-size: 1.07rem;
}
.card-opiniao .avatar{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #d1dffb;
    color:#fff;
    border: 1px solid #cccccd;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 30px;
}
.card-opiniao .badge-success{
    background: #d1dffb !important;
    font-weight: 700 !important;
    color: #0a5aff;
    padding: 4px 12px;
}
.card-opiniao .data{
    font-size: 0.9rem;
}

.card-credenciado-info{
    border-radius: var(--border-radius);
    border: 1px solid #E0DDF6;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    overflow: hidden;
    font-size: 0.94rem;
    color: var(--secondary);
}
.card-credenciado-info h1{
    font-size: 1.5rem;
    letter-spacing: -0.7px;
    line-height: 1.1em;
    font-weight: 700;
}
.badge-especialidade.badge-success,
.card-credenciado-info .badge-success{
     color: var(--secondary);
    background: #AFFF3F;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    padding: 6px 12px;
}
.card-credenciado-info .btn{
    height: 38px;
    border-radius: 8px;
}
.card-credenciado-info .btn-outline-success{
    color: #128c7e;
    border: 2px solid #E0DDF6;
}
.card-credenciado-info .btn-outline-success:hover{
    background-color: #128c7e;
    border-color: #128c7e;
    color :#fff;
}
@media(max-width: 576px){
    .card-credenciado-info .btn{
        margin-bottom: 4px;
    }
}


.form-group select.form-control,
.form-group input.form-control{
    border-radius: 8px;
    border: 1px solid #E0DDF6;
    background: #FFF;
    height: 46px;
    outline: none !important;
}

.form-group textarea.form-control{
    border-radius: 8px;
    border: 1px solid #E0DDF6;
    background: #FFF;
    min-height: 46px;
    outline: none !important;
}

.identificacao .login{
    border-right: 1px solid #eee;
}
.identificacao .conteudo2{
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}
.identificacao-divisor{
    position: relative;
    text-align: center;
    font-size: 1.19rem;
    padding-top: 2px;
    padding-bottom: 2px;
    display: block;
}
.identificacao-divisor span{
    display: inline-block;
    padding-left: 8px;
    padding-right: 8px;
    background: #fff;
}
.identificacao-divisor:before{
    position: absolute;
    display: block;
    top: 13px;
    z-index: -1;
    left: 0px;
    height: 2px;
    width: 100%;
    background-color: #d3dadd;
    content: "";
}


.btn-circle{
    background: #F4F6FA;
    border-radius: 50%;
    width: 41px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    color: #0A5AFF;
    font-size: 1.5rem;
    padding: 0px;
}

@media(max-width: 576px){
        .identificacao .login{
            border-right: 0px;
        }
}


.container-checkout{
    max-width: 980px;
}



.nav-link-pagamento{
    text-align: center;
    width: 138px;
    min-height: 80px;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #E2E8F0;
    margin-right: 15px;
    color: #020617 !important;
}
.nav-link-pagamento span{
    display: block;
    font-size: 0.87rem;
    margin-top: 4px;
}
.nav-link-pagamento.active{
    border-color: #006DFF !important;
    background: #EBF0FE !important;
}


.modal-conteudo p{
    line-height: 1.4em;
}
.modal-conteudo h3{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.modal-conteudo h4{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.modal-conteudo h5{
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

@media(max-width: 576px){
    .page-title-obg h1{
        font-size: 1.2rem !important;
    }
}

.footer-checkout,
.footer-checkout a {
    font-size:0.85rem;
    color: var(--secondary) !important;
}
.footer-checkout {
    border-top: 0px !important;
}
.footer-checkout a{
    text-decoration: underline !important;
}

.card-pagamento-obg{
   border: 1px solid #F4F6FA;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    border-left: 8px solid #eee;
}
.card-pagamento-obg .card-body{
    padding: 30px;
}
.card-pagamento-obg-recusado{
    border-left: 8px solid var(--danger);
}
.card-pagamento-obg-confirmado{
    border-left: 8px solid var(--success2);
}
.card-pagamento-obg-pendente{
    border-left: 8px solid #FFB42C;
}


.conteudoinfo .title-sobre{
    font-size: 3rem;
}
.conteudoinfo ul{
    font-size: 1.07rem;
    line-height: 1.6em;
    list-style: outside;
    margin-left: 20px;
}
.conteudoinfo p{
    font-size: 1.07rem;
    line-height: 1.6em;
}

.card-contato{
    border: 1px solid #F4F6FA;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    overflow: hidden;
}
.card-contato .lateral{
    background: #073B89;
    color: #fff;
}
.card-contato .card-body{
    padding: 60px 60px;
}
.card-contato h2{
    font-weight: 600;
}


.card-contato .contato-item {
    display: flex;
    align-items: center;
}
.card-contato .contato-item small{
    color: #839DC4;
    font-weight: 600;
}
.card-contato .contato-item strong{
    display: block;
}
.card-contato .redes-sociais a{
    display: inline-block;

    color: #fff;
    font-size: 25px;
    text-align: center;
}
.card-contato .redes-sociais a i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    line-height: 44px;
    background: rgba(255, 255, 255, 0.08);
}

@media(max-width: 576px){
    .card-contato .formulario .card-body{
        padding: 60px 30px;
    }
}


.card-credenciado-item{
    border: 1px solid #F4F6FA;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}
.card-credenciado-item .card-body{
    padding: 32px;
}
.card-credenciado-item i{
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 1.5rem;
    text-align: center;
    background: #F0F5FF;
    color: var(--primary);
    border-radius: 8px;
}
.card-credenciado-item h3{
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.card-credenciado-item span{
    font-size: 0.9rem;
    color: #555;
}

.section-credenciado-sobre{
    position: relative;
}
.section-credenciado-sobre:before{
    width: 50%;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    background: url(../img/credenciado-sobre.png) center left no-repeat;
    background-size: cover;
    z-index: -1;
    content: '';
}

.credenciado-sobre-item i{
    font-size: 1.2rem;
    margin-top: 4px;
}
.credenciado-sobre-item small{
    display: flex;
    line-height: 1.4em;
    font-size: 0.85rem;
    margin-top: 8px;
}

@media(max-width: 768px){
    .section-credenciado-sobre:before{
        display: none;
    }
}

.section-credenciado-contato{
    margin-top: 60px;
    margin-bottom: 100px;
    padding-top: 80px;
    padding-bottom: 0px;
    position: relative;
}
.section-credenciado-contato:after{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: url(../img/credenciado-contato.png) left bottom no-repeat;
    background-size: cover;
    z-index: -1;
    content: '';
}

.section-credenciado-contato:before{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 50%;
    background: #094FB7;
    z-index: -2;
    content: '';
}

@media(max-width: 576px){
    .section-credenciado-contato:after{
        height: 85%;
    }
    .section-credenciado-contato{
        padding-top: 40px;
        margin-bottom: 60px;
    }
}

.card-contato-credenciado{
    border: 1px solid #F4F6FA;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    overflow: hidden;
}
.card-contato-credenciado .card-body{
    padding: 30px 40px;
}
.card-contato-credenciado h3{
    font-weight: 600;
}


.card-clinica-especialidade img {
    height: 59px;
    width: auto !important;
}

.card-clinica-especialidade .card-link{
    color: #374151;
}
.card-clinica-especialidade .card-title{
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.19rem;
    margin-top: 15px;
    margin-bottom: 4px;
}

.table-busca th{
    border-top: 0px !important;
    font-size: 0.9rem;
    font-weight: 700 !important;
}
.table-busca td{
    vertical-align: middle;
    font-size: 0.9rem;
}