/*
* Geral
* ================================================== */
body {
    color: #000000;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 0.2px;
    background-color: #fff;
}

time {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

#slider-topo {
    position: absolute;
    height: 650px;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

#slider-topo .selected {
    opacity: 1;
}

#slider-topo picture {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.85s linear;
}

#slider-topo picture img {
    height: 100%;
}

a {
    text-decoration: none;
}
.base {
    max-width: 1300px !important;
}
/*
* Topo
* ================================================== */
.topo {
    background-color: transparent;
    color: #fff;
}
.topo a {
    color: #fff;
}
.topo-conteudo {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.topo .topo-logo {
    width: 150px;
    z-index: 99;
}
.topo-pesquisa {
    z-index: 99;
}
.topo-pesquisa img {
    width: 25px;
    padding-top: 40px;
}
.topo-pesquisa-btn {
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease 0s;
    padding: 10px;
}
.topo-pesquisa-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#menu-menu-principal-logado {
    margin-right: 20px;
}

header .topo-menu ul > li {
    position: relative;
}

header .topo-menu ul li ul {
    display: none;
    position: absolute;
    left: 0;
    list-style: none;
}

.menu-mobile ul li ul {
    display: block;
}

header .topo-menu ul li ul li {
    margin: 5px 2px;
}

header .topo-menu ul li:hover ul,
header .topo-menu ul li:active ul {
    display: block;
}

header .topo-menu ul.sub-menu {
    background-color: #ee8744;
    border-radius: 10px;
    padding-bottom: 10px;
    padding-inline-start: 15px;
    padding-top: 10px;
    padding-right: 15px;
}

header .topo-menu ul li.menu-item-has-children > a:after {
    content: "";
    height: 15px;
    width: 15px;
    display: inline-block;
    background: transparent url("../../imagens/icones/arrow-down.png") no-repeat;
    background-size: contain;
    margin-left: 10px;
}

header .topo-menu .sub-menu a:hover {
    transition: all 0.3s linear;
    color: #000;
}

.aviso-topo {
    margin-right: 30px;
}

.logado-deslogado {
    margin-top: 40px;
    padding: 0 20px;
    background-color: #ee8744;
    color: #ffffff;
    height: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 30px;
    white-space: nowrap;
    z-index: 99;
}
.menu-principal-logado-mobile {
    display: none !important;
}
@media (max-width: 768px) {
    .menu-principal-logado-mobile {
        display: block !important;
    }
}
.menu-principal-logado-mobile .logado-deslogado {
    width: fit-content;
    margin-top: 0 !important;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
}

.logado-deslogado span {
    content: url(../../imagens/icones/avatar.png);
    margin-left: 15px;
    height: 24px;
}

.aviso-topo .link-topo-aviso {
    display: block;
    text-align: center;
    padding: 5px 20px;
    background-color: #f1863b;
    border-radius: 3px;
    line-height: 1;
    font-weight: bold;
}
/* Menu */
.topo-menu {
    height: 87.5px;
    flex-grow: 1;
    padding-left: 20px;
    justify-content: center;
    display: flex;
    font-family: "Futura Std", Helvetica, Arial, sans-serif;
    z-index: 99;
}
.topo-menu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    justify-content: space-around;
}
header ul.menu-principal > li {
    padding-top: 40px;
}

.topo-menu ul a {
    border-radius: 3px;
    transition: all 0.3s ease 0s;
    font-weight: 600;
    white-space: nowrap;
}
.topo-menu > ul > li > a:hover,
.topo-menu ul li.menu-ativo a {
    background-color: rgba(255, 255, 255, 0.1);
}
.topo-menu ul li {
    margin: 2px;
}

/* Menu fixo */
.menu-fixo {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    display: none;
    background-color: #1c3761;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.menu-fixo a {
    color: #fff;
}
.menu-fixo .topo-logo {
    width: 100px;
    padding: 10px 0;
}
.menu-fixo .btn-alt {
    color: #fff;
    background: #34abaa;
}

.menu-fixo li {
    padding-top: 0 !important;
}

.menu-fixo .topo-pesquisa img {
    padding-top: 0;
}

.menu-fixo .logado-deslogado {
    margin-top: 0;
}

/* Mobile */
.menu-mobile {
    position: fixed;
    left: -300px;
    top: 0;
    bottom: 0;
    background-color: #1c3761;
    width: 290px;
    z-index: 100001;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease 0s;
    box-shadow: 2px 0 3px rgba(0, 0, 0, 0.1);
    max-height: 100%;
    overflow-y: auto;
}
.menu-mobile-container {
    position: fixed;
    inset: 0px;
    z-index: 100000;
    display: none;
}

.menu-mobile.menu-mobile-visivel {
    left: 0;
}
.menu-mobile a {
    text-decoration: none;
}
.menu-mobile .topo-menu {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.menu-mobile .topo-logo img {
    display: table;
    margin: auto;
    padding: 30px;
}
.menu-mobile ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.menu-mobile > ul {
    padding: 0 0 50px;
}

.menu-mobile ul.sub-menu {
    padding-inline-start: 15px;
}

.menu-mobile .topo-menu ul li {
    width: 100%;
}
.menu-mobile ul a {
    color: #fff;
    display: block;
    padding: 10px;
}
.menu-mobile ul a:hover,
.menu-mobile .current-menu-item a {
    color: #fff;
}
.menu-mobile .box-pesquisa {
    width: auto;
    margin: 15px;
}
.menu-mobile .btn-avaliacao {
    margin: 15px;
}
.menu-mobile .btn-avaliacao a {
    justify-content: center;
}
.menu-mobile .topo-conteudo {
    flex-direction: column;
}

/* Responsivo */
.btn-menu-responsivo-box {
    display: none;
    width: 60px;
    justify-content: flex-end;
    z-index: 999;
}
.btn-menu-responsivo {
    cursor: pointer;
    width: 30px;
    display: flex;
    flex-direction: column;
}
.btn-menu-responsivo span {
    height: 4px;
    border-radius: 1px;
    background-color: #fff;
    width: 100%;
}
.btn-menu-responsivo span + span {
    margin-top: 5px;
}

/*
* Banner
* ================================================== */
.banner-destaque {
    background-size: cover;
    background-position: center center;
    text-align: center;
    margin-top: -100px;
}
.banner-destaque h1,
.banner-destaque .vetsapiens {
    color: #ffffff;
    text-align: start;
    margin-top: 0;
    font-size: 2.4rem;
    line-height: 2.7rem;
    padding-left: 5%;
    font-weight: 600;
}
.banner-destaque .vetsapiens {
    display: block;
    padding-top: 160px;
    margin-bottom: 0;
}
.banner-destaque .coruja {
    position: relative;
    display: inline-block;
    margin-left: 35%;
    margin-top: -30px;
}
.banner-destaque .coruja h2 {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2rem;
    border: 1px solid #fff;
    border-radius: 5px;
    display: inline-block;
    padding: 10px;
    font-weight: 500;
}
.banner-destaque .coruja span {
    content: url(../../imagens/logo-branco-alt.png);
    position: absolute;
    right: -53px;
    top: 80px;
    height: 65px;
}

.banner-destaque .links {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 160px;
    margin-top: 50px;
    padding-left: 5%;
}
.banner-destaque a {
    padding: 0 20px;
    background-color: #ee8744;
    color: #ffffff;
    height: 50px;
    text-align: center;
    border-radius: 30px;
    line-height: 50px;
    white-space: nowrap;
}
.banner-destaque .links .login {
    margin-left: 35px;
    width: 195px;
}

.banner-destaque .forum-link {
    padding: 20px;
    background-color: #ee8744;
    color: #ffffff;
    text-align: center;
    border-radius: 30px;
    line-height: 50px;
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: center;
    height: 155px;
    margin-right: 120px;
    margin-left: -16%;
}

.banner-destaque .forum-link .icon {
    display: block;
    height: 60px;
    width: 60px;
    margin-bottom: 30px;
    content: url(../../imagens/icones-paginas/icone-forum-branco.png);
}

.banner-destaque .forum-link .h2 {
    font-size: 1.4rem;
    line-height: 2rem;
}

/*
* Banner Calculadoras
* ================================================== */
@font-face {
    font-family: "Futura";
    src: url("../../fonts/FuturaStd-Light.woff");
}
@font-face {
    font-family: "Futura Medium";
    src: url("../../fonts/FuturaStd-Medium.woff");
}
@font-face {
    font-family: "Futura Bold";
    src: url("../../fonts/FuturaStd-Bold.otf");
}

.banner-calculadoras {
    height: 100%;
    font-family: "Futura Medium" !important;
}

.banner-calculadoras #slider-topo img {
    width: 100%;
}

.banner-calculadoras #slider-topo picture::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000;
}
.banner-calculadoras #slider-topo .opacity-0:before {
    opacity: 0;
}
.banner-calculadoras #slider-topo .opacity-1:before {
    opacity: 0.2;
}
.banner-calculadoras #slider-topo .opacity-2:before {
    opacity: 0.4;
}
.banner-calculadoras #slider-topo .opacity-3:before {
    opacity: 0.6;
}
.banner-calculadoras #slider-topo .opacity-4:before {
    opacity: 0.8;
}
.banner-calculadoras #slider-topo .opacity-5:before {
    opacity: 1;
}

.banner-calculadoras__titulo {
    margin-top: 100px;
}

@media (max-width: 576px) {
    .banner-calculadoras #slider-topo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .banner-calculadoras__titulo {
        margin-top: 30px;
    }
    .banner-calculadoras #slider-topo img {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .banner-calculadoras #slider-topo img {
        height: 450px;
    }
}

.banner-calculadoras__titulo span {
    font-size: 12px;
    line-height: 20px;
    color: #ee8744;
    font-weight: 700;
}

.banner-calculadoras__titulo h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;

    font-size: 32px;
    line-height: 40px;
    color: #ee8744;
    font-weight: 700;
    font-family: "Futura Medium" !important;
}

.banner-calculadoras__info p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    max-width: 430px;
}
@media (max-width: 570px) {
    .banner-calculadoras__titulo h1 {
        font-size: 24px;
    }
    .banner-calculadoras__titulo {
        margin-top: 20px;
    }
}
/* END BANNER */
/*
* Selecione Especie Calculadoras
* ================================================== */
.radio-custom {
    opacity: 0;
    position: absolute;
}
.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.radio-custom-label {
    position: relative;
}

.radio-custom-label:active,
.radio-custom-label:visited {
    border: 0;
    top: auto;
    display: contents;

    width: 403px;
    height: 170px;
}

.radio-custom-label.active {
    border: 0;
    top: auto;
    display: contents;

}

.radio-custom-label.active .especie-img {
    width: 403px;
    height: 170px;
    border: 2px solid #EE8744;
    border-radius: 16px;
}

.radio-custom-label:before .radio-custom {
    content: "";
    background: #fff;
    border: 2px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    text-align: center;
    border-radius: 50%;
}

.radio-custom-label:before .radio-custom:checked {
    content: "\f00c";
    font-family: "FontAwesome";
    color: #bbb;
}

.radio-custom-label .radio-custom:focus  {
    outline: 1px solid #ddd; /* focus style */
}

.selecione-especie {
    font-family: "Open Sans";
}

.selecione-especie__titulo {
    margin-top: 160px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

.selecione-especie__subtitulo {
    margin: 30px auto;
}

.selecione-especie .card {
    border: 0;
}
.selecione-especie .card .card-img-overlay {
    top: inherit;
    right: inherit;
    left: 20px;
}

.selecione-especie .card .card-img-overlay .btn-light.active {
    background: #44ee88;
}

.selecione-especie .card label {
    font-family: "Futura Bold";
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
}

.selecione-especie .especie-img.border-checked {
    border: 2px solid #ee8744;
    border-radius: 16px;
}

.preencha-o-form {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 48px 0 24px 0;
}

.selecione-especie #formulario {
    background: #f1f5f8;
    border-radius: 16px;
    padding: 24px;
}

.selecione-especie #formulario label {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #000000;
}

.selecione-especie input#peso {
    background: #ffffff;
    border: 1px solid #d6dadd;
    border-radius: 8px;
    max-width: 140px;
}
.selecione-especie .container-calc .input-group-append span {
    font-weight: bold;
    color: #000;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.selecione-especie #formulario #calcular {
    background: #ee8744;
    border-radius: 8px;
    border: 0;
    color: #ffffff;
    padding: 16px 32px;

    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
}
.selecione-especie #formulario .limpar {
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #032D53;
}

.selecione-especie__resultado table {
    display: table !important;
}

@media (max-width: 576px) {
    .selecione-especie__resultado table {
        display: block !important;
        overflow-x: auto;
    }

    .selecione-especie__titulo {
        margin-top: 80px;
    }
}

.selecione-especie__resultado h5 {
    font-family: "Futura Bold";
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: #000000;
}
.selecione-especie__resultado .selecione-especie__requerimento-titulo {
    margin-top: 20px;
}

.selecione-especie__resultado .selecione-especie__requerimento-titulo strong {
    font-family: "Futura Bold";
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #000000;
    margin-bottom: 12px;
}

.selecione-especie__resultado p:last-child {
    margin: 12px 0 32px 0;
}

.selecione-especie__resultado .table-cao {
    display: table;
}

.selecione-especie__resultado .variation-info {
    background: #fffae0;
    border: 1px solid #eec944;
    border-radius: 8px;
}
.selecione-especie__resultado .variation-info p {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #574505;
}

.selecione-especie__resultado .conteudo-font {
    background: #f1f5f8;
    border: 1px solid #e7ecf0;
    border-radius: 8px;
}

.selecione-especie__resultado .conteudo-font strong {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 16px !important;
    line-height: 24px;
    color: #000000;
}

table td {
    border-top: 1px solid #dee2e6 !important;
    font-family: "Open Sans" !important;
    font-style: normal;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 24px;
    color: #000000 !important;
}

/* table tbody tr.linha-0 {
    border-radius: 8px 0px 0px 0px !important;
}

table tbody tr:not(.linha-0):nth-child(odd) td {
    background: #e7ecf0 !important;
}
table tbody tr:not(.linha-0):nth-child(even) td {
    background: #f1f5f8 !important;
}

table tbody .linha-0 td:not(:first-child) {
    background: #032d53 !important;
    color: #fff !important;
    border-top: 0 !important;
    border-radius: 8px 0px 0px 0px !important;
}

table tbody .linha-0 td:last-child:not(:first-child) {
    border-radius: 0px 8px 0px 0px !important;
}

.selecione-especie__resultado #tabela-resultado td,
.selecione-especie__resultado #tabela-resultado-5 td {
    background: #f1f5f8 !important;
    color: #000;
}

.selecione-especie__resultado .desabilitado {
    opacity: 1;
} */

.section-duvidas-contribuicao .card {
    border: 0;
}

.recomendacao-produto {
    background: #f1f5f8;
    border-radius: 16px;
    padding: 48px;
}

@media (max-width: 576px) {
    .recomendacao-produto {
        padding: 25px;
    }
}

.recomendacao-produto h4 {
    font-family: "Futura Bold";
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ee8744;
}

.recomendacao-produto h4 span {
    font-size: 20px;
    line-height: 32px;
    color: #032d53;
}

.recomendacao-produto p {
    font-family: "Futura Medium";
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.recomendacao-produto .recomendacao-produto__saiba-mais {
    font-family: 'Open Sans';
    background: #ee8744;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 25px;
    line-height: 22px;
    color: #FFFFFF;
}

.recomendacao-produto .recomendacao-produto__saiba-mais:hover {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 25px;
    line-height: 22px;
    font-family: inherit;
}

@media (min-width: 576px) {
    .recomendacao-produto .recomendacao-produto__wrapp {
        position: absolute;
        right: 0;
        bottom: 25px;
        height: 100%;
        margin-right: -48px;
    }
}

.recomendacao-produto .recomendacao-produto__bg {
    border-radius: 16px;
}

.recomendacao-produto .recomendacao-produto__img {
    position: absolute;
    left: 70px;
}

.compartilhar-resultado .recalcular {
    background: #ee8744;
    border-radius: 8px;

    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff !important;
    padding: 16px 40px;
}

.compartilhar-resultado .recalcular:hover {
    background: #1C3761;
}

@media (max-width: 568px) {
    .section-duvidas-contribuicao .card {
        height: 270px;
    }

    .section-duvidas-contribuicao .card .card-img {
        height: 100%;
        object-fit: cover;
    }
}

.section-duvidas-contribuicao .card {
    border: 0;
}

.section-duvidas-contribuicao .card-img-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    top: initial;
    right: initial;
    text-align: left;
}

.section-duvidas-contribuicao .card-img-overlay h5 {
    font-family: "Futura Bold";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #000000;
    max-width: 65%;
}

.section-duvidas-contribuicao .card-contribuicao .card-img-overlay h5 {
    color: #ee8744;
}

.section-duvidas-contribuicao .card p {
    max-width: 60%;
}

.section-duvidas-contribuicao .card-contribuicao p {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.section-duvidas-contribuicao .card-contribuicao p span {
    color: #ee8744;
}
.section-duvidas-contribuicao .section-duvidas-contribuicao__baixar {
    background: #ee8744;
    border-radius: 8px;
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
}

.section-duvidas-contribuicao .section-duvidas-contribuicao__baixar:hover {
    border-radius: 8px;
}

.section-duvidas-contribuicao .card-footer {
    border: 0;
    background-color: unset;
    padding-left: 0;
}

@media (max-width: 570px) {
    .section-duvidas-contribuicao .card-img-overlay h5 {
        font-size: 17px;
    }
    .section-duvidas-contribuicao .card-contribuicao p {
        font-size: 12px;
        max-width: 80%;
    }
    .section-duvidas-contribuicao .card p {
        font-size: 12px;
    }
}

/* END */

.base-logado-home {
    padding-top: 200px;
}

.base-logado-home .base-content {
    display: flex;
    justify-content: center;
}

.base-logado-home .nome-cliente {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.base-logado-home h2 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.6rem;
    margin-bottom: 15px;
    text-align: start;
}

.base-logado-home p {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-top: 20px;
}

.base-logado-home .widget_search {
    margin-bottom: 80px;
    width: 100%;
}

.base-logado-home .widget_search button {
    background-color: #ee8744;
}

.base-logado-home .widget_search input {
    outline: none;
}

.base-logado-home .widget_search .pesquisa-box {
    border: 1px solid #ee8744;
}
/*
* Conteúdo
* ================================================== */
.titulo,
.fs-titulo {
    font-size: 36px;
}
.titulo {
    font-family: "Futura Std", Helvetica, Arial, sans-serif;
    color: #f1863b;
    font-weight: normal;
}
.subtitulo {
    font-family: "Futura Std", Helvetica, Arial, sans-serif;
    font-weight: normal;
}
.subtitulo,
.fs-subtitulo {
    font-size: 24px;
}
.texto {
    font-size: 20px;
    line-height: 1.4;
    word-wrap: break-word;
}
.texto a {
    color: #49a8df;
}
.texto pre {
    white-space: break-spaces;
}
mark {
    background-color: #f9feff;
    border: 1px solid #49a8df;
    border-radius: 2px;
    padding-left: 3px;
    padding-right: 3px;
    font-size: 0.9em;
}
.link-hover:hover {
    color: #49a8df;
}
.espacamento-conteudo {
    padding-top: 50px;
    padding-bottom: 50px;
}
.transition-color {
    transition: color 0.3s ease 0s;
}

/* Imagens hover trocar icones */
.container-img-hover:hover .box-img-hover > img:nth-child(1) {
    display: none;
}
.container-img-hover .box-img-hover {
    text-align: center;
}
.container-img-hover .box-img-hover > img:nth-child(2) {
    display: none;
}
.container-img-hover:hover .box-img-hover > img:nth-child(2) {
    display: inline;
}

/* Ícone equipe */
.icone-equipe-avatar {
    position: absolute;
    bottom: 0;
    left: 0;
}
.icone-equipe-avatar img {
    width: 30px;
}
.comentario-sub .icone-equipe-avatar img {
    width: 15px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 18px;
    border-bottom: 1px solid #dfe5ed;
    padding: 20px 0;
}
.breadcrumb-separador:before {
    font-family: FontAwesome;
    content: "\f105";
    margin: 0 15px;
}
.breadcrumb a:first-child:before {
    font-family: FontAwesome;
    content: "\f015";
    margin-right: 10px;
}

fieldset {
    border: 1px solid #dfe5ed;
    border-radius: 3px;
}

/* Icones */
.icone-tamanho {
    width: 40px;
    min-width: 40px;
    height: 40px;
}
.icone-titulo {
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-flex;
}

/* Vídeo embutido com 100% do container */
.embed-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}
.embed-video-container iframe,
.embed-video-container object,
.embed-video-container embed,
.embed-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Compartilhar postagem */
.compartilhar-postagem {
    display: flex;
    align-items: center;
    justify-content: center;
}
.compartilhar-postagem-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    padding: 10px;
    border-radius: 50%;
    margin: 10px;
    font-size: 20px;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s,
        border-color 0.3s ease 0s;
}
.compartilhar-postagem-link:hover {
    color: #fff;
    border-color: transparent;
}
.link-whatsapp:hover {
    background-color: #2ec650;
}
.link-facebook:hover {
    background-color: #4267b2;
}
.link-twitter:hover {
    background-color: #1da1f2;
}
.link-linkedin:hover {
    background-color: #0077b5;
}
.overlay-box-default {
    max-width: 100%;
    box-sizing: border-box;
}
.overlay-default {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 3px;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.box-default {
    background-color: #eee;
    border-radius: 5px;
}

/* Mapa do Google */
.mapa {
    width: 100%;
    height: 500px;
}
.clone-box-default {
    display: none;
}
.box-clone-input-file + .box-clone-input-file {
    margin-top: 15px;
}

/* Anexos */
.anexo-container {
    font-size: 16px;
}
.anexo-box {
    margin-top: 15px;
}
.anexo-loop-box + .anexo-loop-box {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e1e1e1;
}

/* Foto Profissional */
.profissional-foto {
    width: 130px;
    height: 130px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.profissional-foto-bg {
    padding: 10px 10px 45px;
    background: url("../../imagens/logo-bg.png") no-repeat left top;
    background-size: contain;
}

/*
* Footer
* ================================================== */
.footer {
    background-color: #032d53;
    padding: 30px 0;
}
.footer a {
    color: #638db3;
    transition: all 0.3s ease 0s;
}
.footer a:hover {
    color: #49a8df;
}
.footer-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.footer-menu ul {
    flex-direction: column;
}
.footer-redes-sociais a {
    display: block;
    transition: all 0.3s ease 0s;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.footer-redes-sociais a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.footer-redes-sociais li + li {
    margin-left: 10px;
}
.footer-logo {
    max-width: 150px;
}
.footer-menu {
    font-size: 15px;
}
.footer-menu li + li {
    margin-top: 15px;
}

/*
* Bottom bar
* ================================================== */
.bootombar {
    background-color: #64c3fa;
    justify-content: flex-end;
    padding: 15px 0;
}
.bootombar .oneweb img {
    width: 80px;
    margin-right: 20px;
}
.bootombar .bottombar-box {
    display: flex;
    justify-content: space-between;
}
.bootombar .bottombar-box p {
    margin: 0;
}
.bottombar-box {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.bottombar-box a {
    margin-left: 10px;
}
.bottombar-box img {
    width: 50px;
}

/*
* Cores
* ================================================== */
.color-1 {
    color: #49a8df;
}
.color-1-hover:hover,
.color-1-hover:hover .color-3 {
    color: #49a8df;
}
.color-2 {
    color: #f1863b;
}
.color-3 {
    color: #1c3761;
}
.color-4 {
    color: #fcfcfc;
}

.bg-1 {
    background-color: #49a8df;
}
.bg-2 {
    background-color: #f1863b;
}
.bg-3 {
    background-color: #1c3761;
}
.bg-4 {
    background-color: #eeeeee;
}

/*
* Frameworcss
* ================================================== */
.transition-box {
    transition: border-color 0.3s ease 0s, background-color 0.3s ease 0s;
}
.fs-subtitulo {
    font-size: 21px;
}
.flex-basis-0 {
    flex-basis: 0;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.padding-v-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.padding-v-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.margin-t-80 {
    margin-top: 80px;
}
.border-radius-3 {
    border-radius: 3px;
}
.align-flex-start {
    align-items: flex-start;
}
.bg-center-v {
    background-position: left center;
}
.min-w-30 {
    min-width: 30px;
}
.break-word {
    word-break: break-word;
}
.pre-wrap {
    white-space: pre-wrap;
}
.bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.img-1 {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#podcasts-destaque {
    position: relative;
    padding-top: 80px;
}

@media (max-width: 767px) {
    #podcasts-destaque {
        margin-top: 30px;
    }
}

#podcasts-destaque .video .embed-video-container {
    max-width: 100%;
    height: 100% !important;
}

#podcasts-destaque .area-video .embed-video-container iframe {
    width: 100% !important;
    position: relative;
}

#podcasts-destaque .swiper-slide {
    height: 300px;
    margin-right: 15px;
    margin-left: 15px;
}

#podcasts-destaque .embed {
    width: 100%;
}

#podcasts-destaque .video h3 {
    width: 80%;
}

#podcasts-destaque .embed-video-container {
    height: 100%;
    margin: auto;
}

#podcasts-destaque .logado {
    display: flex;
}

#podcasts-destaque .podcasts.logado .area-podcast {
    width: 100% !important;
}

#podcasts-destaque .podcasts .area-podcast {
    width: 100% !important;
}
#podcasts-destaque .area-quiz {
    width: 30%;
}

#podcasts-destaque .area-quiz p {
    color: #1c3761;
    line-height: 100%;
    font-weight: bold;
    text-align: center;
    padding-top: 100px;
}

#podcasts-destaque .area-quiz a {
    background-color: #1c3761;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    border-radius: 30px;
    display: block;
    margin: auto;
    margin-top: 80px;
    max-width: 200px;
}

#podcasts-destaque .base {
    display: flex;
    flex-direction: column;
}
#podcasts-destaque h3 {
    color: #ee8744;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 40px;
    width: 100%;
}

#podcasts-destaque h2 span {
    margin-right: 30px;
    content: url(../../imagens/icones/icone-podcast.png);
}
#podcasts-destaque .area-quiz h2 span {
    content: url(../../imagens/icones/quiz.png);
}
#podcasts-destaque .podcasts {
    overflow-x: hidden;
}

#forum-destaque .anuncios {
    width: 20%;
    padding-left: 50px;
    margin-top: -910px;
}

#forum-destaque .anuncios.logado {
    width: 20%;
    padding-left: 50px;
    margin-top: -200px;
}

#forum-destaque .anuncios a img {
    display: block;
    margin-left: auto;
}

#forum-destaque .anuncios a {
    display: block;
    margin-bottom: 48px;
}

#podcasts-destaque .swiper-slide {
    height: 285px;
    position: relative;
}
#podcasts-destaque .swiper-slide iframe {
    max-width: 360px !important;
}

#podcasts-destaque .swiper-slide p {
    display: none;
}

#podcasts-destaque .swiper-button-next span,
#forum-destaque .swiper-button-next span,
#noticias-destaque .swiper-button-next span,
#doutores-destaque .swiper-button-next span,
#artigos-destaque .swiper-button-next span {
    right: 5px;
    z-index: 999;
    content: url(../../imagens/icones/arrow-right.png);
}
#podcasts-destaque .swiper-button-next,
#forum-destaque .swiper-button-next,
#noticias-destaque .swiper-button-next,
#doutores-destaque .swiper-button-next,
#artigos-destaque .swiper-button-next {
    right: 0;
    top: 45%;
    position: absolute;
    z-index: 999;
    cursor: pointer;
}
#podcasts-destaque .swiper-button-prev,
#forum-destaque .swiper-button-prev,
#noticias-destaque .swiper-button-prev,
#doutores-destaque .swiper-button-prev,
#artigos-destaque .swiper-button-prev {
    left: 0;
    top: 45%;
    position: absolute;
    z-index: 999;
    cursor: pointer;
}
#podcasts-destaque .swiper-button-prev span,
#forum-destaque .swiper-button-prev span,
#noticias-destaque .swiper-button-prev span,
#doutores-destaque .swiper-button-prev span,
#artigos-destaque .swiper-button-prev span {
    z-index: 999;
    content: url(../../imagens/icones/arrow-left.png);
}
#noticias-destaque .swiper-slide {
    margin-bottom: 60px;
    margin-right: 15px;
    margin-left: 15px;
}

#podcasts-destaque .swiper-pagination-bullets,
#noticias-destaque .swiper-pagination-bullets,
#forum-destaque .swiper-pagination-bullets,
#doutores-destaque .swiper-pagination-bullets {
    bottom: -5px !important;
}

#podcasts-destaque .slick-dots li,
#noticias-destaque .slick-dots li,
#forum-destaque .slick-dots li,
#doutores-destaque .slick-dots li {
    margin: 0 10px;
}

#podcasts-destaque .slick-dots li button:before,
#noticias-destaque .slick-dots li button:before,
#forum-destaque .slick-dots li button:before,
#doutores-destaque .slick-dots li button:before,
#videos-anunciantes .slick-dots li button:before {
    background-color: #ee8744;
    height: 18px;
    width: 18px;
    content: "";
    border-radius: 100%;
    margin-right: 17px;
}
#forum-destaque {
    margin-bottom: 60px;
    padding-left: 10px;
    margin-top: 70px;
}

#forum-destaque .base {
    display: flex;
}

#forum-destaque.logado {
    width: 98% !important;
}

#forum-destaque h2 {
    color: #ee8744;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 50px;
    width: 80%;
}

#forum-destaque h2 span {
    content: url(../../imagens/icones-paginas/icone-forum-azul-escuro.png);
    margin-right: 15px;
    height: 60px;
}

#forum-destaque .infos {
    display: flex;
    align-items: center;
}

#forum-destaque .category {
    background-color: #ee8744;
    color: #ffffff;
    padding: 5px 10px;
    font-weight: 600;
}

#forum-destaque .infos p {
    margin-right: 20px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

#forum-destaque .infos .date span {
    content: url(../../imagens/icones/calendar.png);
    height: 15px;
    margin-right: 8px;
}

#forum-destaque .infos .respostas span {
    content: url(../../imagens/icones/chat.png);
    height: 15px;
    margin-right: 8px;
}

#forum-destaque .swiper-slide .resumo {
    height: 105px;
}

#forum-destaque .swiper-slide {
    background-color: #eeeeee;
    padding: 30px;
    height: 320px;
    margin-right: 15px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

#forum-destaque .slick-dots {
    bottom: 40px;
}

#forum-destaque .swiper-slide h3 {
    color: #ee8744;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 1.2rem;
    line-height: 1.2rem;
}
#forum-destaque p {
    font-size: 1rem;
}

#forum-destaque a {
    color: #000;
}

#forum-destaque .link {
    background-color: #1c3761;
    color: #ffffff;
    height: 44px;
    line-height: 41px;
    border-radius: 20px;
    border: 0 none;
    padding: 0;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: 400;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 20px;
}
#forum-destaque .swiper-container,
#forum-destaque .swiper-wrapper {
    height: 470px;
}

#forum-destaque .swiper-container {
    width: 80%;
}

#videos-anunciantes {
    margin-bottom: 60px;
}

#videos-anunciantes iframe {
    width: 90%;
    height: 230px;
}

#videos-anunciantes .item {
    text-align: center;
    width: 100%;
}

#videos-anunciantes .slick-track {
    display: flex;
    justify-content: space-between;
}
#videos-anunciantes .slick-list {
    width: 100%;
}

#videos-anunciantes h2 {
    color: #ee8744;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 50px;
}
#videos-anunciantes h2 span {
    margin-right: 20px;
    content: url(../../imagens/icones/play.png);
}

#videos-anunciantes .base {
    display: flex;
    justify-content: space-between;
}

#videos-anunciantes .slick-dots {
    bottom: -30px;
}

#videos-anunciantes .slick-dots {
    bottom: -30px;
}

#artigos-destaque .base {
    display: flex;
    flex-direction: column;
}

#artigos-destaque .area-calculadora {
    padding-top: 90px;
}

#artigos-destaque .area-calculadora {
    padding-top: 90px;
}
#artigos-destaque .area-calculadora .calculadoras-container .calculadora {
    position: initial !important;
    min-height: 0 !important;
}

#artigos-destaque .area-calculadora .container-img-hover {
    padding-bottom: 40px;
}

#artigos-destaque .area-calculadora .calculadoras-container {
    flex-wrap: nowrap;
    overflow: visible;
    padding-bottom: 0;
}

#artigos-destaque .area-calculadora .calculadora.flex {
    min-width: 25%;
    max-width: 25%;
}

#artigos-destaque .area-calculadora .swiper-slide {
    height: 480px;
}
#artigos-destaque .area-calculadora .swiper-slide a {
    height: 100%;
}

#artigos-destaque .area-calculadora .swiper-slide p {
    font-size: 1rem;
}

#artigos-destaque .area-calculadora h2 {
    color: #ee8744;
}
#artigos-destaque .area-calculadora h2 span {
    margin-right: 20px;
    content: url(../../imagens/icones-paginas/icone-calculadoras-azul-escuro.png);
    height: 60px;
}

#artigos-destaque .area-calculadora .ver-outras,
#doutores-destaque .ver-outras {
    background-color: #1c3761;
    color: #ffffff;
    height: 44px;
    width: 90px;
    display: block;
    margin: auto;
    line-height: 41px;
    border-radius: 30px;
    border: 0 none;
    padding: 0;
    padding-right: 30px;
    padding-left: 30px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 50px;
    white-space: nowrap;
}

#artigos-destaque h2 {
    color: #ee8744;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 50px;
}
#artigos-destaque .artigos h2 span {
    margin-right: 20px;
    content: url(../../imagens/icones-paginas/icone-artigos-azul-escuro.png);
    height: 60px;
}
#artigos-destaque .artigo {
    margin-bottom: 25px;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#artigos-destaque .artigo img {
    width: 300px;
    height: 100%;
}

#artigos-destaque article {
    position: relative;
}

#artigos-destaque .artigo span {
    background-color: #1c3761;
    color: #ffffff;
    height: 44px;
    line-height: 41px;
    border-radius: 30px;
    border: 0 none;
    padding: 0;
    margin-right: 30px;
    padding-right: 30px;
    padding-left: 30px;
    font-weight: 400;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 20px;
    white-space: nowrap;
    margin-left: 40px;
}
#artigos-destaque .artigo h3 {
    color: #1c3761;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 500;
    margin-bottom: 0;
    margin-left: 70px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

#artigos-destaque .area-calculadora .swiper-slide {
    margin: 0 15px;
}

#noticias-destaque {
    margin-top: 30px;
    margin-bottom: 60px;
    overflow-x: hidden;
}

#noticias-destaque article {
    width: 100%;
    position: relative;
}

#noticias-destaque .title {
    color: #ee8744;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 1.5em;
}
#noticias-destaque .title span {
    margin-right: 30px;
    height: 50px;
    content: url(../../imagens/icones-paginas/icone-noticias-azul-escuro.png);
}

#noticias-destaque .swiper-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
    padding: 30px;
    position: relative;
    height: 180px;
}
#noticias-destaque .swiper-slide img {
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 170px;
    margin-bottom: 55px;
}
#noticias-destaque .text {
    color: #1c3761;
    font-weight: 400;
    position: absolute;
    top: 160px;
    left: 0;
    text-align: center;
    font-size: 1.15rem;
}

#noticias-destaque .swiper-pagination-bullet {
    background-color: #ee8744;
    height: 18px;
    width: 18px;
    margin-right: 17px;
}

#doutores-destaque {
    padding-top: 80px;
    margin-bottom: 60px;
    overflow-x: hidden;
}
#doutores-destaque a {
    color: #000;
    outline: none;
}

#doutores-destaque .slick-dots {
    bottom: -20px;
}

#doutores-destaque .fundo-colaborador {
    content: url(../../imagens/icones/shape_laranja.png);
    height: 130px;
    display: block;
    margin: auto;
}

#doutores-destaque h3 {
    color: #ee8744;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 1.5em;
}
#doutores-destaque h3 span {
    margin-right: 5px;
    height: 35px;
    content: url(../../imagens/icones/people.png);
}

#doutores-destaque .swiper-slide {
    margin-bottom: 40px;
    padding: 0 40px;
    height: 460px;
    position: relative;
}

#doutores-destaque h2 {
    color: #ee8744;
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 50px;
}

#doutores-destaque .name {
    background-color: #efefef;
    padding: 30px;
    margin-top: -10px;
    height: 105px;
}

#doutores-destaque .especialidade {
    font-size: 0.9rem;
    line-height: 1.1rem;
    margin-top: 5px !important;
}

#doutores-destaque .swiper-slide {
    height: 260px !important;
}

#doutores-destaque .swiper-slide a {
    margin: 0;
    padding: 0;
    color: #000;
    display: block;
    text-align: center;
}
#doutores-destaque .swiper-slide a:hover {
    color: #ee8744;
}

#doutores-destaque .profissional-foto {
    width: 98px;
    height: 98px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgb(0 0 0 / 30%);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

#doutores-destaque .swiper-slide img {
    margin-bottom: 15px;
    border-radius: 100%;
    display: block;
    max-width: 100%;
    height: auto;
}

#doutores-destaque .swiper-slide p {
    text-align: start;
    font-size: 1rem;
    margin: 0;
}

#doutores-destaque .swiper-slide p strong {
    display: block;
    text-align: start;
    font-size: 1.1rem;
}

#doutores-destaque .ver-outras {
    width: 135px;
}

#anuncios-patrocinadores {
    overflow-x: hidden;
    position: relative;
    background-color: #efefef;
    padding-top: 70px;
}

#anuncios-patrocinadores h3 {
    color: #ee8744;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.5em;
    text-align: center;
}

#anuncios-patrocinadores .slick-skin-default .slick-prev {
    left: -15px;
}

#anuncios-patrocinadores .slick-skin-default .slick-next {
    right: -15px;
}

@media (min-width: 770px) {
    #anuncios-patrocinadores .slick-skin-default .slick-prev {
        left: 0px;
    }

    #anuncios-patrocinadores .slick-skin-default .slick-next {
        right: 0px;
    }
}

#conteudoCalc .info-nao-logado {
    display: block;
    padding: 0.75rem;
    background-color: #ee8744;
    color: #fff;
    margin-top: 20px;
}
#conteudoCalc .disabled {
    cursor: default;
    color: #fff;
    background-color: #acacac !important;
}

#conteudoCalc .info-nao-logado a {
    color: #fff;
    margin: 0;
    text-decoration: underline;
}

@media (max-width: 769px) {
    .menu-mobile-container .menu-item {
        padding: 0;
    }

    .menu-mobile-container .menu-item a {
        padding: 10px;
        padding-top: 20px;
    }

    .menu-mobile-container .menu-principal {
        padding: 0 0 0;
    }

    #podcasts-destaque .area-video .embed-video-container iframe {
        height: 230px !important;
    }

    #podcasts-destaque .video h3 {
        width: 100%;
    }

    #forum-destaque .swiper-container {
        width: 100%;
    }

    #videos-anunciantes .base {
        flex-direction: column;
    }
    #videos-anunciantes iframe {
        width: 100%;
        margin-bottom: 20px;
    }

    #slider-topo {
        position: absolute;
        height: 500px;
        width: 100%;
        left: 0;
        top: 0;
        z-index: -1;
    }
    .banner-destaque .vetsapiens,
    .banner-destaque h1 {
        font-size: 1.7rem;
        line-height: 2.1rem;
    }
    #forum-destaque .swiper-slide .resumo {
        height: 170px;
    }

    .base-logado-home {
        padding-top: 100px;
    }
    .banner-destaque .links {
        flex-direction: column;
        margin-top: 0;
        padding-bottom: 0;
    }
    .banner-destaque .links .login {
        margin-top: 20px;
    }

    .banner-destaque .coruja {
        display: none;
    }
    #anuncios-patrocinadores {
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: hidden;
    }

    #podcasts-destaque .podcasts.logado .area-podcast {
        width: 100% !important;
    }
    .logado-deslogado {
        display: none;
    }
    #podcasts-destaque .podcasts {
        width: 100%;
    }
    #podcasts-destaque .podcasts {
        margin-bottom: 30px;
    }
    #podcasts-destaque .base {
        flex-direction: column;
    }
    #artigos-destaque .artigo {
        flex-direction: column;
    }
    #artigos-destaque .artigo span {
        margin-right: 0;
        margin-bottom: 10px;
        margin-left: 0;
    }
    .base-logado-home .nome-cliente .widget_search {
        width: 100%;
    }
    .banner-destaque .forum-link {
        display: none;
    }
    .topo-pesquisa img {
        padding-top: 0;
    }

    #artigos-destaque .base {
        flex-direction: column;
    }
    #artigos-destaque .artigos,
    #artigos-destaque .area-calculadora {
        width: 100%;
    }

    #artigos-destaque .area-calculadora {
        margin-top: 30px;
    }

    #artigos-destaque .artigo h3 {
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
        margin-top: 20px;
    }

    #podcasts-destaque,
    #forum-destaque,
    #artigos-destaque,
    #noticias-destaque,
    #doutores-destaque,
    #videos-anunciantes {
        padding-right: 15px;
        padding-left: 15px;
    }

    #artigos-destaque .area-calculadora .calculadoras-container {
        flex-wrap: wrap;
        overflow: visible;
        padding-bottom: 0;
    }

    #artigos-destaque .area-calculadora .calculadora.flex {
        min-width: 100%;
        max-width: 100%;
    }
    #forum-destaque .swiper-container {
        height: 570px;
    }
    #forum-destaque .swiper-slide {
        height: 400px;
    }

    #doutores-destaque .slick-dots {
        bottom: -45px;
    }
    #podcasts-destaque .slick-dots,
    #noticias-destaque .slick-dots {
        bottom: -30px;
    }
    #doutores-destaque .ver-outras {
        margin-top: 60px;
    }
    #forum-destaque h2 {
        width: 100%;
    }

    #forum-destaque .anuncios {
        width: 100%;
        padding-left: 0;
        display: none;
    }

    #forum-destaque .anuncios a img {
        display: block;
        margin-left: auto;
    }

    #forum-destaque .anuncios a {
        display: block;
        margin-bottom: 20px;
    }

    #forum-destaque,
    #forum-destaque.logado {
        width: 92% !important;
    }

    .area-video .embed-video-container iframe {
        width: 100%;
    }

    #podcasts-destaque .logado {
        flex-direction: column;
    }
    #podcasts-destaque .logado .area-podcast {
        width: 100%;
    }
    #podcasts-destaque .logado .area-quiz {
        margin-top: 30px;
        width: 100%;
    }

    #link-whatsapp {
        right: 5%;
    }
}

@media (max-width: 1005px) {
    .bootombar .bottombar-box {
        flex-direction: column;
        align-items: center;
    }

    .bootombar .bottombar-box p {
        margin-bottom: 30px;
        text-align: center;
    }
}

#link-whatsapp {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    background-color: #25d366;
    position: fixed;
    right: 2%;
    bottom: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
#link-whatsapp span {
    content: url(../../imagens/icones/whatsapp.png);
    height: 30px;
}

.banner-pagina {
    margin-top: -110px;
}

/*ESSA CLASSE ESTA QUEBRANDO O BANNER DA PAGINA MINHA CONTA - 22/02*/
/* .banner-pagina.Minha.conta .banner-destaque-pagina {
    background-position: -500px center !important;
} */

.woocommerce-account .texto.conteudo img,
.woocommerce-checkout .texto.conteudo img {
    display: none !important;
}

.banner-destaque-pagina {
    position: relative;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 330px;
    overflow-y: hidden;
}

.banner-destaque-pagina .base {
    position: relative;
    z-index: 10;
}

.banner-pagina .banner-destaque-img {
    padding-top: 150px;
}
@media (max-width: 570px) {
    .banner-pagina .banner-destaque-img {
        padding-top: 110px;
    }

    .banner-pagina h1 {
        margin-top: 0;
    }
}
.banner-pagina .banner-destaque-img img {
    display: block;
    max-width: 80px;
    margin: auto;
}
.banner-pagina h1 {
    text-align: center;
    padding-bottom: 20px;
    color: #ee8744;
    font-weight: 500;
}

#aviso-deslogado .btn-login {
    display: none;
}

@media (max-width: 769px) {
    #aviso-deslogado .btn-login {
        display: inline-flex;
        margin-top: 0.25rem;
        background-color: #ee8744;
    }
}

#msg-cookie {
    display: none;
    position: fixed;
    bottom: 20px;
    width: 100%;
    z-index: 9999;
}

#msg-cookie .base {
    background-color: #ee8744;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}
#msg-cookie .base a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
#msg-cookie .base p {
    margin-top: 0;
}

#msg-cookie button {
    background-color: #1c3761;
    border: 0 none;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
}

#tutor-reuseable-snackbar {
    display: none !important;
}

.woocommerce-cart header,
.woocommerce-checkout header {
    background-color: #1c3761 !important;
}
.woocommerce-cart .topo-menu ul li,
.woocommerce-checkout .topo-menu ul li {
    padding-top: 0;
}
.woocommerce-cart .topo-pesquisa img,
.woocommerce-checkout .topo-pesquisa img {
    padding-top: 0;
}
.woocommerce-cart .logado-deslogado,
.woocommerce-checkout .logado-deslogado {
    margin-top: 0;
}
.woocommerce-cart .banner-pagina,
.woocommerce-checkout .banner-pagina {
    margin-top: 0;
}

/* Cursos */
.tutor-container {
    width: auto;
}
.tutor-container .tutor-row {
    width: 100%;
}

/* WOOCOMMERCE */
@media (max-width: 570px) {
    .woocommerce
        table.shop_table_responsive
        .woocommerce-cart-form__cart-item.cart_item
        td {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #add_payment_method table.cart td.actions .coupon .input-text,
    .woocommerce-cart table.cart td.actions .coupon .input-text,
    .woocommerce-checkout table.cart td.actions .coupon .input-text {
        width: 100% !important;
        border-radius: 50px;
        text-align: center;
        display: block;
        margin-bottom: 10px !important;
        padding: 10px 30px !important;
    }

    .woocommerce #content table.cart td.actions .coupon .button.alt,
    .woocommerce #content table.cart td.actions .coupon .input-text + .button,
    .woocommerce table.cart td.actions .coupon .button.alt,
    .woocommerce table.cart td.actions .coupon .input-text + .button,
    .woocommerce-page #content table.cart td.actions .coupon .button.alt,
    .woocommerce-page
        #content
        table.cart
        td.actions
        .coupon
        .input-text
        + .button,
    .woocommerce-page table.cart td.actions .coupon .button.alt,
    .woocommerce-page table.cart td.actions .coupon .input-text + .button {
        width: 100% !important;
    }

    .woocommerce-cart table.cart .product-thumbnail {
        display: none !important;
    }

    .tutor-single-course-sidebar {
        max-width: 100% !important;
    }

    .tutor-single-course-sidebar .tutor-lesson-video-wrap .plyr--video,
    .plyr video {
        height: auto !important;
    }
}

/*WP Admin Bar*/

@media (max-width: 991px) {
    .topo-conteudo {
        margin-top: 15px;
    }

    #wpadminbar {
        margin-top: -10px;
    }

    .tutor-courses .tutor-course-col-3 {
        width: 100%;
    }
}
