
/* excerpt content accordion */
.entry-content.entry .accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px 0px rgba(0, 0, 0, .5);
    width: 100%;
    margin: 0 auto 30px;
}
.entry-content.entry .accordion {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 16px;
}
.entry-content.entry .accordion-wrapper .accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.entry-content.entry .accordion:last-child {
    margin-bottom: 0;
}
.entry-content.entry .accordion-label {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 16px;
    background: #dca314;
    font-weight: 700;
    cursor: pointer;
    font-size: 20px;
    align-items: center;
    padding-left: 35px;
    transition: all .3s;
}
.entry-content.entry .accordion-label:hover {
    background: #5a2e02;
}
.entry-content.entry .accordion-label::after {
    content: '';
    width: 26px;
    height: 26px;
    background: url(/wp-content/plugins/taraheto-custom-code-theme/assets/uploads/newArrow-white.svg);
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.entry-content.entry .accordion-content {
    max-height: 0;
    padding: 0 16px;
    color: rgba(4,57,94,1);
    background: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}
.entry-content.entry .accordion-content p {
    margin: 0;
    color: rgba(4,57,94,.7);
    font-size: 18px;
}
.entry-content.entry input:checked + .accordion-label {
    background: #5a2e02;
}
.entry-content.entry input:checked + .accordion-label::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.entry-content.entry input:checked ~ .accordion-content {
    max-height: 430px !important;
    padding: 16px !important;
    overflow-y: auto !important;
}

.entry-content.entry article .entry-content .accordion-wrapper h2 ,article .entry-content .accordion-wrapper h3 ,article .entry-content .accordion-wrapper h4,article .entry-content .accordion-wrapper h5 ,article .entry-content .accordion-wrapper h6  {
    margin: 0 !important;
    float: unset !important;
}



.tax-certified_specialist section.container.info_header_personal {
    display: flex;
    gap: 16px;
    background: #f7f7f7;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
    flex-wrap: wrap;
}
.tax-certified_specialist .personal_image {
    flex-shrink: 0;
    display: flex;
}
.tax-certified_specialist .personal_image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.tax-certified_specialist .personal_details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-basis: 77%;
}
.tax-certified_specialist .personal_details .name {
    font-size: 18px;
    font-weight: bold;
}
.tax-certified_specialist .personal_details .description p {
    line-height: 28px;
    font-size: 15px;
}
.tax-certified_specialist .personal_details .name span {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    margin-right: 7px;
}

.tax-certified_specialist .personal_details .social_link {
    position: absolute;
    left: 20px;
    top: 20px;
}
.tax-certified_specialist .personal_details .social_link .icons {
    display: flex;
    gap: 12px;
    background: white;
    padding: 6px 10px;
    border-radius: 10px;
    justify-content: center;
}
.tax-certified_specialist .personal_details .social_link .icons .icon {
    height: 25px;
}

.tax-certified_specialist section.header_wrapper {
    padding: 20px;
}
.tax-certified_specialist section.header_wrapper h1.title {
    font-size: 22px;
    color: #915e36;
}
.tax-certified_specialist section.header_wrapper .count {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: right;
    color: #91919a;
    display: block;
    margin-top: 8px;
}

@media screen and (max-width: 780px) {
    .tax-certified_specialist section.container.info_header_personal {
        flex-wrap: wrap;
        justify-content: center;
    }
    .tax-certified_specialist .personal_details {
        flex-basis: 100%;
    }
    .tax-certified_specialist .personal_details .social_link {
        position: static;
    }
    .post-content .entry-header-outer .certified-specialist div#specialist-box {
        width: auto !important;
    }
}
.certified-doctor {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a5a5a;
    font-weight: bold;
}

.post-content .entry-header-outer .certified-specialist {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a5a5a;
    font-weight: 700;
    position: relative;
    margin-top: 18px;
}
.post-content .entry-header-outer .certified-specialist #name_toggle {
    cursor: pointer;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box {
    position: absolute;
    right: 0;
    top: 28px;
    width: -moz-max-content;
    width: max-content;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 30px 8px rgba(224, 224, 224, 0.8);
    padding: 12px 8px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s, opacity 0.3s;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content {
    align-items: center;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .modal-image {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    height: 44px;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .modal-image img {
    border-radius: 50%;
    -o-object-fit: cover;
   object-fit: cover;
   height: 100%;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .title-modal {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #3d3d3d;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content > p {
    margin-bottom: 5px !important;
    font-size: 12px;
    text-align: center;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .specialist_blog_items {
    background: #f3f3f3;
    border-radius: 12px;
    padding: 12px;
    font-size: 13px;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .specialist_blog_items .item {
    border-bottom: 2px solid #ccc;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .specialist_blog_items .item:last-child {
    border-bottom: 0;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .specialist_blog_items .item .title {
    color: #333;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 25px;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .specialist_blog_items .item .date {
    color: #818181;
    font-size: 11px;
    margin-top: 8px;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .bottom {
    border: 2px solid #fcb82d;
    padding: 5px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    margin-top: 10px;
}
.post-content .entry-header-outer .certified-specialist div#specialist-box .modal-content .bottom span {
    font-size: 14px;
    color: #fcb82d;
}
.open_modal {
  visibility: visible !important;
  opacity: 1 !important;
  z-index:999;
}
.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow-x: hidden;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}
.go_overlay,
.inner.active, .active {
  visibility: visible !important;
  opacity: 1 !important;
}

.side-aside {
    z-index: 999 !important;
}
.grid-slider-wrapper .thumb-overlay, .grid-slider-wrapper .thumb-content {
    display: none !important;
}



@media (min-width: 992px) {
    .full-width .grid-4-big-first-half-second .slide {
        height: 494px !important;
    }
    .single-featured-image {
        text-align: center !important;
    }
    .featured-area img, .featured-area iframe {
        width: 71% !important;
        border-radius: 14px !important;
    }
    
    .tie-col-md-4.logo-container.clearfix {
        float: right !important;
        width: fit-content !important;
    }
}
span.post-cat-wrap a {
    padding: 6px 24px;
    font-size: 15px;
    font-weight: bold;
    margin: 10px !important;
    display: inline-block;
}
.entry-header-outer #breadcrumb {
    margin: 0 0 26px;
    padding: 0;
    height: 24px;
    font-weight: bold;
}
.schema-faq-question {
    cursor: pointer;
    font-size: 15px;
    line-height: 23px;
    font-weight: 600;
    background: #f8fafc;
    color: #333;
    border-radius: 12px;
    padding: 16px 28px;
    margin-top: 15px;
    width: 100%;
    display: block;
}

.schema-faq-answer {
    display: none;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    padding: 16px 28px;
    color: #485967;
    border-top: 1px solid #e5ecf1;
    border-radius: 0 0 12px 12px;
    background: #f8fafc;
}
.suggestedcontent_sidebar_specialist {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 8px 0;
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
        max-height: 560px;
    overflow: auto;
}
.suggestedcontent_sidebar_specialist a span.title {
    line-height: 36px;
    font-size: 16px;
}

.header-title {
    font-weight: 700;
}

.author-avatar img {
 border-radius: 0 !important;   
}
ul.components {
    display: flex;
}
#main-nav *, .search-in-main-nav.autocomplete-suggestions {
    border-color: rgba(255,255,255,0.07);
    color: white;
}
.components #search-input {
    color: white !important;
}
input#search-input::placeholder {
    color: white !important;
}
.author-bio {
    line-height: 30px;
    font-size: 15px;
}

.meta-author-avatar img {
    width: 45px;
    height: 30px;
     border-radius: 0 !important; 
}