.icon {
    display: block;
    width: 24px;
    height: 24px;
}

.icon.icon-arrow-down-blue {
    background: url("../img/svg/icon-arrow-down-blue.svg") no-repeat center center;
    background-size: contain;
}

.icon.icon-arrow-down-yellow {
    background: url("../img/svg/icon-arrow-down-yellow.svg") no-repeat center center;
    background-size: contain;
}

.btn {
    display: inline-flex;
    align-items: center;
    transition: all 300ms ease;
}

.btn .txt+.icon {
    margin-left: 10px;
}

.btn .icon+.text {
    margin-left: 10px;
}

.btn-primary {
    background: var(--purple);
    border-color: var(--purple);
    font-weight: bold;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--blue3) !important;
    border-color: var(--blue3) !important;
    color: var(--purple) !important;
}

.btn-secondary {
    background: var(--blue1);
    border-color: var(--blue1);
    font-weight: bold;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--blue3) !important;
    border-color: var(--blue3) !important;
    color: var(--blue1) !important;
}

.btn-danger {
    background: var(--pink);
    border-color: var(--pink);
    font-weight: bold;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-danger:hover,
.btn-danger:focus {
    background: var(--blue3) !important;
    border-color: var(--blue3) !important;
    color: var(--blue1) !important;
}

.header {
    background: var(--white);
    border-top: 20px solid var(--purple);
    padding: 15px 0;
}

@media (min-width: 992px) {
    .header {
        border-top-width: 48px;
        padding: 20px 0;
    }
}

.header .wrapper {
    display: flex;
}

.header .logo {
    width: 175px;
    max-width: 100%;
}

.header .col-logo {
    display: flex;
    justify-content: center;
}

@media(min-width: 576px) {
    .header .col-logo {
        justify-content: start;
    }
}

.header .logo a {
    display: block;
    width: 100%;
}

.header .menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.header .menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .menu ul li {
    padding: 0 5px;
}

.header .menu ul li a {
    color: var(--black);
    font-weight: bold;
    padding: 10px 0;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 300ms ease;
    position: relative;
    font-size: 13px;
}

@media (min-width: 768px) {
    .header .menu ul li {
        padding: 0 10px;
    }

    .header .menu ul li a {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .header .menu ul li a {
        font-size: 16px;
    }
}

.header .menu ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 2px;
    background: var(--white);
    transition: all 300ms ease;
}

.header .menu ul li a:hover {
    color: var(--purple);
}

.header .menu ul li a.current {
    color: var(--pink);
}

.header .menu ul li a.current::after {
    background: var(--pink);
}

.footer {
    background: var(--purple);
    padding: 20px 0 0;
    border-top: 2px solid var(--white);
}

@media(min-width: 768px) {
    .footer .logo img {
        margin: 0 0 0 auto;
    }

    .footer .text {
        text-align: right;
    }
}


.footer,
.footer a {
    color: var(--yellow);
}

.footer a.current {
    color: var(--white);
    text-decoration: underline;
}

.footer p {
    font-size: 14px;
}

.footer .text br {
    display: none;
}

@media (min-width: 992px) {
    .footer .text br {
        display: block;
    }
}

@media (min-width: 992px) {
    .footer {
        padding: 50px 0 0;
        text-align: left;
    }

}

.menu-footer {}

@media (min-width: 578px) {
    .menu-footer {
        border-top-width: 0;
        margin-top: 0px;
        padding-top: 0px;
    }
}

.menu-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-footer ul li {}

.menu-footer ul li.separator {
    margin: 4px 10px;
    display: none;
}

@media (min-width: 578px) {
    .menu-footer ul {
        flex-direction: row;
    }

    .menu-footer ul li.separator {
        margin: 4px 10px;
        display: block;
    }
}

.menu-footer ul li {
    color: var(--white);
}

.menu-footer ul li a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    transition: all 300ms ease;
    text-align: center;
    font-size: 13px;
    color: var(--white);
}

.menu-footer ul li a span {
    display: block;
}

.menu-footer ul li a:hover {
    color: var(--yellow);
}

.footer .menu-wrapper {
    padding: 10px 0;
    margin-top: 20px;
    background: var(--grey);
}

.section {
    padding: 50px 0;
}

.section img {
    margin: auto;
}

.section-hero {
    color: var(--white);
    background: var(--pink);
    text-align: center;
}

@media (max-width: 768px) {
    .section-hero {
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {
    .section-hero {
        background: var(--pink) url("../img/hero-bg.png") no-repeat center center;
        background-size: auto 100%;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .section-hero {
        padding: 100px 0;
    }
}

.section-hero h1.h2 {
    font-size: 20px;
}

@media (min-width: 992px) {
    .section-hero h1.h2 {
        font-size: 20px;
    }
}

.section-hero h2.h1 {
    font-family: "Verdana Pro";
    font-weight: 900;
}

@media (min-width: 992px) {
    .section-hero h2.h1 {
        font-size: 43px;
    }
}

.section-tiroid {
    background: var(--yellow);
    border-bottom: 20px solid var(--purple);
    color: var(--white);
}

@media (min-width: 992px) {
    .section-tiroid {
        padding-bottom: 0;
    }
}

@media (min-width: 992px) {
    .section-tiroid {
        border-bottom-width: 48px;
    }

    .section-tiroid .item-img {
        overflow: hidden;
    }

    .section-tiroid .item-img img {
        margin-bottom: -5%;
    }
}

.section-hipotiroidism {
    background: var(--blue2);
    border-bottom: 20px solid var(--yellow);
    color: var(--white);
}

@media (min-width: 992px) {
    .section-hipotiroidism {
        border-bottom-width: 48px;
    }
}

.blog-carousel .col-item-blog .img {
    margin-bottom: 20px;
}

.blog-carousel .col-item-blog .img,
.blog-carousel .col-item-blog .img img {
    border-radius: 10px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}

.blog-carousel .col-item-blog .img img {
    width: 100%;
}

.section.section-toggle {
    transition: all 300ms ease;
}

.section.section-toggle.active {
    padding-bottom: 0;
}

.toggleWrapper {
    background-color: var(--white);
    color: var(--black);
    padding: 0;
    height: 0;
    opacity: 0;
    transition: all 300ms ease;
    overflow: hidden;
}

.toggleWrapper .wrapper {
    max-width: 1600px;
    margin: auto;
}

.section-tiroid .toggleWrapper .wrapper {
    background-image: url("../img/fluturasi.png");
    background-repeat: no-repeat;
    background-position: right bottom 3%;
    background-size: 15% auto;
}

.section-hipotiroidism .toggleWrapper .wrapper {
    background-image: url("../img/bg-hipotiroidism.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 15% auto;
}

@media (min-width: 992px) {

    .section-tiroid .toggleWrapper .wrapper,
    .section-hipotiroidism .toggleWrapper .wrapper {
        background-size: 220px auto;
    }
}

.active .toggleWrapper {
    padding: 40px 0 0 0;
    height: auto;
    opacity: 1;
}

@media (min-width: 992px) {
    .toggleWrapper {
        padding: 0;
    }

    .active .toggleWrapper {
        padding: 100px 0 0 0;
    }
}

.toggleWrapper .icon {
    transform: scale(-1);
}

.toggleWrapper ul {
    margin: 20px 0;
    padding-left: 20px;
}

.toggleWrapper ul li {
    padding: 4px 0;
}

.references {
    margin-top: 30px;
}

.references p {
    margin: 0;
}

.references a {
    color: inherit;
}

.section-questionnaire {
    background: var(--purple);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-questionnaire .bg-buline,
.section-questionnaire .bg-lines {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.section-questionnaire .bg-lines::before,
.section-questionnaire .bg-lines::after,
.section-questionnaire .bg-buline::before,
.section-questionnaire .bg-buline::after {
    display: block;
    content: "";
    position: absolute;
    max-width: 10%;
    width: 300px;
    top: 0;
    bottom: 0;
    transition: all 300ms ease;
}

@media (max-height: 750px) and (max-width: 1460px) {

    .section-questionnaire .bg-lines::before,
    .section-questionnaire .bg-lines::after,
    .section-questionnaire .bg-buline::before,
    .section-questionnaire .bg-buline::after {
        max-width: 7%;
    }
}

@media (min-width: 1460px) {

    .section-questionnaire .bg-lines::before,
    .section-questionnaire .bg-lines::after,
    .section-questionnaire .bg-buline::before,
    .section-questionnaire .bg-buline::after {
        max-width: 15%;
    }
}

.section-questionnaire .bg-lines::before {
    background: url("../img/bg-linii-stanga-2.png") no-repeat right top;
    background-size: contain;
    left: 0;
}

.section-questionnaire .bg-lines::after {
    background: url("../img/bg-linii-dreapta-2.png") no-repeat left bottom;
    background-size: contain;
    right: 0;
}

.section-questionnaire .bg-buline::before {
    background: url("../img/bg-buline-stanga.png") no-repeat left bottom;
    background-size: contain;
    left: 0;
}

.section-questionnaire .bg-buline::after {
    background: url("../img/bg-buline-dreapta.png") no-repeat right top;
    background-size: contain;
    right: 0;
}

.section-questionnaire .content {
    position: relative;
    color: var(--white);
}

.section-questionnaire .owl-nav,
.section-questionnaire .owl-dots {
    display: none;
}

.section-questionnaire .actions {
    display: flex;
    flex-direction: row;
}

.section-questionnaire .actions .slider-arrow {
    display: flex;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    margin-right: 5px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0));
}

.section-questionnaire .actions .slider-arrow:hover {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.45));
}

.section-questionnaire .actions .slider-arrow.disabled {
    opacity: 0.5;
    cursor: default;
}

.section-questionnaire .actions .slider-arrow:first-of-type {
    margin-right: 30px;
}

.section-questionnaire .actions .slider-arrow .ico {
    display: flex;
    width: 28px;
    height: 28px;
    padding: 4px;
    margin: auto 0;
    background-color: var(--white);
    border-radius: 100%;
}

.section-questionnaire .actions .slider-arrow-prev .ico {
    margin-right: 10px;
}

.section-questionnaire .actions .slider-arrow-next .ico {
    margin-left: 10px;
}

.section-questionnaire .actions .slider-arrow-prev .ico:before,
.section-questionnaire .actions .slider-arrow-next .ico:before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
}

.section-questionnaire .actions .slider-arrow-prev .ico:before {
    background: url("../img/svg/icon-arrow-left-purple.svg") no-repeat center center;
    background-size: contain;
}

.section-questionnaire .actions .slider-arrow-next .ico:before {
    background: url("../img/svg/icon-arrow-right-purple.svg") no-repeat center center;
    background-size: contain;
}

.progress {
    max-width: 400px;
}

.progress .progress-bar {
    width: 20%;
    background: var(--purple-light);
}

.checkInput label {
    display: inline-flex;
    cursor: pointer;
    position: relative;
    padding: 7px;
    background: var(--white);
    border-radius: 40px;
    transition: all 300ms ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
    margin: 5px 5px 5px 0;
}

.checkInput label:hover {
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.35);
}

.checkInput label div {
    pointer-events: none;
}

.checkInput label div,
.slide input {
    background: var(--white);
    color: var(--black);
    position: relative;
    display: flex;
    border-radius: 40px;
    border: none;
}

.slide input {
    font-size: 18px;
    height: 50px;
    text-align: center;
    padding: 10px;
    width: 200px;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 10px;
}

.checkInput label input {
    opacity: 0;
    position: absolute;
    top: -100%;
    pointer-events: none;
}

.checkInput label span {
    display: block;
    min-width: 50%;
    padding: 7px 15px;
    z-index: 2;
    color: var(--black);
    transition: all 300ms ease;
    pointer-events: none;
    font-size: 16px;
}

.checkInput label span::selection {
    background: none;
}

.checkInput label span:first-of-type {
    color: var(--white);
}

.checkInput label div::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    left: 0;
    background: var(--pink);
    z-index: 1;
    border-radius: inherit;
    transition: all 300ms ease;
}

.checkInput label input:checked+div::before {
    left: 50%;
}

.checkInput label input:checked+div span:first-of-type {
    color: var(--black);
}

.checkInput label input:checked+div span:last-of-type {
    color: var(--white);
}

@media(min-width: 992px) {
    .slide h2 {
        font-size: 23px;
    }

    .slide h3 {
        font-size: 17px;
    }
}


.slide .results .result {
    display: none;
}

.slide .results .result.active {
    display: block;
}

ul.sitemap {
    list-style: none;
    padding-left: 0;
}

ul.sitemap li {
    margin-bottom: 10px;
}

ul.sitemap li a {
    color: var(--black);
    text-decoration: none;
    display: block;
    font-size: 18px;
    padding: 5px 0;
    transition: all 300ms ease;
}

ul.sitemap li a:hover {
    color: var(--pink);
}

ul.sitemap li ul {
    list-style: none;
}

ul.sitemap li ul li {
    margin-bottom: 5px;
}

ul.sitemap li ul li a {
    font-size: 14px;
}


.section-blog .link-item {
    display: flex;
    flex-direction: column;
    color: var(--black);
    text-decoration: none;
}

.section-blog .link-item .txt {
    display: flex;
    flex-direction: column;
    padding: 10px;
}



.section-blog .link-item .txt span {
    display: block;
    margin: 6px 0 0 0;
}

.section-blog .link-item .txt span.p {
    font-size: 12px;
}

.section-blog .link-item .txt span.h3 {
    font-size: 14px;
}

.section-blog .link-item .txt span.h2 {
    font-size: 16px;
}



@media(min-width: 768px) {
    .section-blog .link-item .txt {
        padding: 10px 10px 10px;
    }

    .section-blog .link-item .txt span {
        margin: 10px 0 0 0;
    }

    .section-blog .link-item .txt span.p {
        font-size: 14px;
    }

    .section-blog .link-item .txt span.h3 {
        font-size: 16px;
    }

    .section-blog .link-item .txt span.h2 {
        font-size: 20px;
    }

}

.blog-carousel .owl-nav button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    background: var(--white) !important;
    border: 2px solid var(--blue1) !important;
}

@media(min-width: 576px) {
    .blog-carousel .owl-nav button {
        top: 25%;
    }
}


.blog-carousel .owl-nav button.disabled {
    opacity: 0.25;
}

.blog-carousel .owl-nav button svg {
    display: block;
    width: 75%;
    object-fit: contain;
    fill: var(--blue1);
}

.blog-carousel .owl-nav button.owl-prev {
    left: 12px;
}

.blog-carousel .owl-nav button.owl-next {
    right: 12px;
}

.blog-carousel .owl-dots {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-carousel .owl-dots button {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    transition: all 300ms ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.blog-carousel .owl-dots button.active {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.blog-carousel .owl-item .item {
    width: 100%;

}

.section-article .hasNr {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--white);
    background: var(--pink);
    padding: 10px 20px;
    border-radius: 10px;
    gap: 20px;
    font-size: 18px;
}

.section-article .hasNr .nr {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: var(--white);
    color: var(--pink);
    border-radius: 100%;
}

.section-article .image img {
    border-radius: 10px;
}

.actions.d-none {
    display: flex !important;
}