@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Lato-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/Lato-Italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Lato Bold';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Lato-Heavy.woff2') format('woff2');
}
@font-face {
    font-family: 'Libella Bold';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/LatoLibella-Black.woff2') format('woff2');
}
@font-face {
    font-family: 'Libella Light';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/LatoLibella-Light.woff2') format('woff2');
}
:root {
    --libella-green: #0097a9;
    --libella-green-bg: #eaf7f8;
    --libella-green-sh: rgba(234,247,248,.25);
}

html {
}

h1,h2,h3,h4,h5,h6 {
    color: var(--libella-green);
    font-family: 'Lato Bold';
}

@media (min-width: 992px) {
    h2 {
        font-size: 42px;
        line-height: 42px;
    }
}

.bg-libella {
    background-color: var(--libella-green-bg);
}

.bg-libella-dark {
    background-color: var(--libella-green);
}

.text-libella {
    color: var(--libella-green);
}

.text-libella-price {
    color: var(--libella-green);
    font-family: 'Lato Bold';
}

body {
    position: relative;
    font-family: 'Lato';
    font-weight: 400;
    font-size: 21px;
    line-height: 25px;
    background-color: #fafafa;
    background-color: #fff;
    padding-top: 74px;
}

div.develmark {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 5px;
    z-index: 9000;
    background-color: red;
    opacity: 0.4;
    z-index: 9999;
}

.navbar.navbar-main {
    padding: 0.5rem 0.5rem;
    border-bottom: 3px solid var(--libella-green-bg);
    background-color: #fff
}
@media (min-width: 992px) {
    .navbar.navbar-main {
        border-bottom: 1px solid #fafafa;
    }
}

@media (min-width: 992px) {
    .navbar.navbar-main {
        max-height: 74px;
        padding: 0.5rem 1.25rem;
    }
}

@media (min-width: 1200px) {
    .navbar.navbar-main {
        padding: 0.5rem 2.5rem;
    }
}

.navbar.navbar-main.fixed-top.in {
    top: 0px;
    transition: top 0.4s;
}

.navbar.navbar-main.fixed-top.out {
    top: -94px;
    transition: top 0.4s;
}

.navbar.navbar-main .navbar-nav {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 992px) {
    .navbar.navbar-main .navbar-nav {
        margin-top: 0rem;
        margin-bottom: 0rem;
        margin-right: 2rem;
    }
}

.navbar-series {
    position: relative;
    background-color: #40b1bf;
}

@media (min-width: 1200px) {
    .navbar-series {
        position: -webkit-sticky;
        position: sticky;
        top: 74px;
        height: 74px;
        z-index: 1028;
    }
    .navbar-series.navbar-series-stuck {
        height: 44px;
    }
}

.navbar.navbar-series .navbar-nav {
    gap: 10px;
    padding: 10px;
}

.navbar.navbar-series .navbar-nav .nav-link {
    color: #fff;
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 400;
    padding: 5px 20px;
    border-radius: 20px;
}

.navbar.navbar-series .navbar-nav .nav-link:hover,
.navbar.navbar-series .navbar-nav .nav-link:focus {
    color: var(--libella-green);
    background-color: #fff;
}

.btns-chlg {
    padding-left: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .btns-chlg {
        padding-left: 0rem;
        margin-top: 0rem;
        margin-bottom: 0rem;
        margin-right: 2rem;
    }
}

.btns-store {
    padding-left: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .btns-store {
        padding-left: 0rem;
        margin-top: 0rem;
        margin-bottom: 0rem;
    }
}

.navbar.navbar-main .navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 0.5rem 1rem 0.5rem 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.02px;
    color: var(--libella-green);
}

@media (min-width: 992px) {
    .navbar.navbar-main .navbar-nav .nav-item .nav-link {
        padding: 1rem 1rem;
    }
}

.navbar.navbar-main .navbar-nav .nav-item .nav-link::after {
    position: absolute;
    left: 0px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background: var(--libella-green);
    border-radius: 50%;
    content: "";
    transition: opacity 0.3s;
    opacity: 0;
}

@media (min-width: 992px) {
    .navbar.navbar-main .navbar-nav .nav-item .nav-link::after {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: calc(-0.5rem - 8px);
        margin-top: 0px;
        margin-left: -8px;
    }
}

.navbar.navbar-main .navbar-nav .nav-item.active .nav-link::after,
.navbar.navbar-main .navbar-nav .nav-item .nav-link:hover::after {
    opacity: 1;
}

.navbar-light .navbar-toggler,
.navbar-light .navbar-toggler:focus {
    color: var(--libella-green);
    border: none;
    box-shadow: none;
    font-size: 2.75rem;
}

.nav-breadcrumb {
    background-color: var(--libella-green-bg);
}

@media (min-width: 992px) {
    .nav-breadcrumb {
        padding: 0rem 1.25rem;
    }
}

@media (min-width: 1200px) {
    .nav-breadcrumb {
        position: -webkit-sticky;
        position: sticky;
        top: 74px;
        z-index: 1028;
        padding: 0rem 2.5rem;
    }
}

.nav-breadcrumb .breadcrumb-item {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-breadcrumb .breadcrumb-item,
.nav-breadcrumb .breadcrumb-item a,
.nav-breadcrumb .breadcrumb-item.active,
.nav-breadcrumb .breadcrumb-item.active a {
    text-decoration: none;
    color: var(--libella-green);
}
.nav-breadcrumb .breadcrumb-item.active,
.nav-breadcrumb .breadcrumb-item.active a {
    font-family: 'Lato Bold';
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "→";
    color: var(--libella-green);
    font-family: 'Lato Bold';
}

.btn {
    border-radius: 40px;
}

.btn:hover {
}

.btn-libella {
    color: #fff;
    background-color: var(--libella-green);
    border-color: var(--libella-green);
    border-radius: 40px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 15.6px;
    letter-spacing: 1.03px;
    font-weight: 400;
}

.btn-libella:hover,
.btn-libella:focus,
.btn-libella.active {
    color: var(--libella-green);
    background-color: #fff;
}

.btn-libella:focus {
    box-shadow: 0 0 0 0.25rem var(--libella-green-sh);
}

.btn-outline-libella {
    color: var(--libella-green);
    background-color: transparent;
    border-color: var(--libella-green);
    border-radius: 40px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 15.6px;
    letter-spacing: 1.03px;
    font-weight: 400;
}

.btn-outline-libella:hover,
.btn-outline-libella:focus,
.btn-outline-libella.active {
    color: var(--libella-green);
    background-color: var(--libella-green-bg);
}

.btn-outline-libella:focus {
    box-shadow: 0 0 0 0.25rem var(--libella-green-sh);
}

.btn-libella.btn-lg,
.btn-outline-libella.btn-lg {
    border-radius: 40px;
    font-size: 15px;
    line-height: 18px;
    padding: 13px 25px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: normal;
}

@media (min-width: 992px) {
    .btn-libella.btn-lg,
    .btn-outline-libella.btn-lg {
        font-size: 21px;
        line-height: 25.2px;
    }
}

.btn-libella-plus {
    text-decoration: none;
    text-transform: uppercase;
    color: var(--libella-green);
    letter-spacing: 1.3px;
    font-size: 1rem;
    font-family: 'Lato';
    padding: 0.15rem 0rem;
}

.btn-libella-plus:focus,
.btn-libella-plus:hover {
    color: var(--libella-green);
    text-shadow: none;
}

.btn-libella-plus .icon {
    position: relative;
    width: 20px;
    height: 20px;
    margin-top: -1px;
}

.btn-libella-plus .icon span {
    position: absolute;
    background-color: var(--libella-green);
    transition: all 0.3s;
    display: block;
}

.btn-libella-plus .icon span:nth-child(1){
    top: 0px;
    left: 9px;
    width: 1px;
    height: 9px;
}

.btn-libella-plus .icon span:nth-child(2){
    top: 9px;
    left: 0px;
    width: 18px;
    height: 1px;
}

.btn-libella-plus .icon span:nth-child(3){
    top: 9px;
    left: 9px;
    width: 1px;
    height: 9px;
}

.btn-libella-plus:hover .icon span:nth-child(1){
    transform: translateX(6.2px) translateY(2.2px) rotate(-45deg);
}

.btn-libella-plus:hover .icon span:nth-child(3){
    transform: translateX(6.2px) translateY(-1.2px)  rotate(45deg);
}

.btn-libella-plus .label {
    padding-left: 16px;
}

.faq-subcategories .btn-libella-plus {
    padding: 2.25rem 0rem;
}

.btn-navbar {
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    letter-spacing: 1.02px;
}

.btn-navbar.btn-chlg,
.btn-navbar.btn-chlg:focus {
    padding: 0.3rem;
    margin: 0rem 0.1rem;
    box-shadow: none;
    border: none;
    border-radius: 14px;
}

.btn-navbar.btn-chlg:hover,
.btn-navbar.btn-chlg:focus {
    color: var(--libella-green);
    background-color: transparent;
}

.btn-navbar.btn-chlg.active {
    color: #fff;
    background-color: var(--libella-green);
}

.btn-navbar.btn-navbar-cart {
    position: relative;
    border-radius: 14px;
}

.btn-navbar.btn-navbar-cart span.badge {
    position: absolute;
    top: -4px;
    right: -2px;
    width: 19px;
    height: 16px;
    padding: 4px 0px 3px 0px;
    border-radius: 50%;
    font-size: 0.6rem;
    background-color: #f00;
    text-align: center;
}

.footer-row {
    padding: 2.5rem 0rem;
    color: #fff;
    background-color: var(--libella-green);
    font-size: 1.1rem;
}

.footer-row a {
    color: #fff;
    text-decoration: none;
}

.footer-row a:hover {
    opacity: 0.75;
}

.footer-row h4 {
    font-size: 1.15rem;
    font-family: 'Lato Bold';
    color: #fff;
}

.footer-row .social-row a {
    margin-right: 1rem;
}

.footer-row .social-row a.facebook {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
}

.footer-row .social-row a.instagram,
.footer-row .social-row a.youtube {
    display: inline-block;
    text-align: center;
    width: 34px;
    height: 34px;
    background-color: #fff;
    text-decoration: none;
    border-radius: 50%;
}

.footer-row .social-row a.instagram i,
.footer-row .social-row a.youtube i {
    height: 21px;
    color:  var(--libella-green);
}

footer .copy {
    padding: 0.75rem 0rem;
    font-size: 1rem;
    color:  var(--libella-green);
}

footer .copy a {
    text-decoration: none;
    color:  var(--libella-green);
}

div.reference {
    margin: 2rem 0rem;
}
@media (min-width: 992px) {
    div.reference {
        margin: 5rem 0rem;
    }
}

div.reference div.reference-item {
    background-color: var(--libella-green-bg);
    color: var(--libella-green);
    padding: 1.5rem;
}

@media (min-width: 576px) {
    div.reference div.reference-item {
        padding: 2.5rem;
    }
}

div.reference .splide__slide:not(.is-active.is-visible) div.reference-item {
    opacity: 0.5;
}

div.reference div.reference-item p.text {

}

div.reference div.reference-item p.name {
    font-size: 1rem;
    line-height: 17px;
    font-family: 'Lato Bold';
    margin-bottom: 0.5rem;
}

div.reference div.reference-item p.info {
    font-size: 0.9rem;
    line-height: 17px;
}

div.faq {
    max-width: 760px;
    margin: 5rem auto;
}

div.faq p {
    color: var(--libella-green);
}

div.faq h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
div.faq div.faq-subcategories {
    margin-bottom: 65px;
}

div.faq div.faq-item {
    padding: 0.75rem 1.25rem;
    background-color: var(--libella-green-bg);
    color: var(--libella-green);
}

div.faq div.faq-item h3 {
    padding: 0px;
    margin: 0px;
    font-size: 1.25rem;
    color: var(--libella-green);
}

div.faq div.faq-item a {
    text-decoration: none;
    color: var(--libella-green);
}

div.faq div.faq-item a.collapsed i.bi-plus-lg,
div.faq div.faq-item a:not(.collapsed) i.bi-dash-lg {
    display: inline-block;
}

div.faq div.faq-item a:not(.collapsed) i.bi-plus-lg,
div.faq div.faq-item a.collapsed i.bi-dash-lg {
    display: none;
}

div.faq div.faq-item div.faq-item-answer {
    padding: 1rem 0rem 0.5rem 0rem;
    font-size: 1.1rem;
}

div.cover {
    position: relative;
    width: 100%;
    height: 415px;
    background-size: cover;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
}

div.cover h1 {
    font-family: 'Lato Bold';
    font-size: 3.25rem;
    color: #fff;
    text-shadow: 0px 0px 20px rgb(0 0 0 / 40%);
}

div.cover.cover-main {
    position: relative;
    height: auto;
    margin: auto;
}

div.cover.cover-main .d-flex>div:first-child {
}

div.cover.cover-main .d-flex>div:last-child {
    max-width: 490px;
    padding: 20px 33px;
}

div.cover.cover-main h1 {
    position: relative;
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    text-align: left;
    text-shadow: none;
    color: var(--libella-green);
    font-family: 'Lato Bold';
    margin: auto;
}

@media (min-width: 992px) {
    div.cover.cover-main {
        max-width: 960px;
    }

    div.cover.cover-main h1 {
        margin-left: -85px;
        font-size: 47px;
        line-height: 47px;
    }
}

@media (min-width: 1200px) {
    div.cover.cover-main {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    div.cover.cover-main {
        max-width: 1320px;
    }
}

div.cover.cover-main p {
    position: relative;
    font-size: 21px;
    line-height: 23px;
    font-weight: 400;
    text-align: left;
    text-shadow: none;
    color: var(--libella-green);
    font-family: 'Lato';
}

.btn-outline-libella.btn-readon:hover,
.btn-outline-libella.btn-readon:focus,
.btn-outline-libella.btn-readon.active {
    color: var(--libella-green);
}

div.cover.cover-products {
    background-image: url('../img/products.jpg');
}

div.cover.cover-ourstory {
    background-image: url('../img/ourstory.jpg');
}

div.cover.cover-libellalife {
    background-image: url('../img/libellalife.jpg');
}

div.cover.cover-libellalife-tag {
    background-image: url('../img/libellalife-tag.png');
}

div.cover.cover-contact {
    background-image: url('../img/contact.jpg');
}

div.cover.cover-reference {
    background-image: url('../img/references.jpg');
}

div.cover.cover-faqs {
    background-image: url('../img/faqs.png');
}

div.cover.cover-faq {
    background-image: url('../img/faq.png');
}

div.cover.cover-tac {
    background-image: url('../img/termsacond.jpg');
}

div.cover.cover-gdpr {
    background-image: url('../img/gdpr.jpg');
}

div.cover.cover-newsletter {
    background-image: url('../img/newsletter.jpg');
}

div#readon {
    margin-top: 50px;
}

.product-line-item a.content-link,
#homeCoverCarousel a.content-link {
    text-decoration: none;
    color: var(--libella-green);
    display: block;
}

.product-line-item {
    margin: 4rem 0rem;
}
@media (min-width: 992px) {
    .product-line-item {
        margin: 8rem 0rem;
    }
}

.product-msorder h1,
.product-detail h1,
.product-variants h1,
.cart h1,
.product-line-item h2,
#homeCoverCarousel h2,
.product-detail .variants-item h3,
.cart .variants-item h3 {
    font-family: 'Libella Bold';
}
@media (min-width: 992px) {
    .product-msorder h1,
    .product-detail h1,
    .product-variants h1,
    .cart h1,
    .product-line-item h2,
    #homeCoverCarousel h2 {
        font-size: 3.0rem;
    }
}

.product-msorder h1 span,
.product-detail h1 span,
.product-variants h1 span,
.cart h1 span,
.product-line-item h2 span,
#homeCoverCarousel h2 span,
.product-detail .variants-item h3 span,
.cart .variants-item h3 span {
    font-family: 'Libella Light';
}

.product-line-item p,
#homeCoverCarousel p {
    margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
    .product-line-item p,
    #homeCoverCarousel p {
        margin-bottom: 3.5rem;
    }
}

div.vera .said {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
}

div.vera h3 {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 900;
}

div.vera em {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 400;
}

.owners .owner {
    width: 320px;
}

.owners .owner .ownerth {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    margin-bottom: 30px;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-size 0.15s ease-in-out;
}

.owners .owner:hover .ownerth {
    background-size: 110%;
    transition: background-size 0.15s ease-in-out;
}

.owners .owner a.btn {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    white-space: nowrap;
    transition: opacity 0.3s;
    opacity: 0;
}

.owners .owner:hover a.btn {
    transition: opacity 0.3s;
    opacity: 1;
}

.owners .owner a.btn:hover {
    background-color: var(--libella-green-bg);
}

.owners h3 {
    font-size: 29px;
    line-height: 34.8px;
    font-weight: 800;
}

.owners em {
    font-size: 21px;
    line-height: 25.2px;
    font-weight: 400;
}

div.owners .said,
div.owners .about {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
}

.eteps h3 {
    font-size: 25px;
    line-height: 30px;
    font-weight: 800;
}

.eteps em {
    font-size: 17px;
    line-height: 20.4px;
    font-weight: 400;
}

.eteps .etep {
    width: 320px;
}

.eteps .etep .etepth {
    width: 230px;
    height: 230px;
    margin: auto;
    border-radius: 50%;
    margin-bottom: 30px;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-size 0.15s ease-in-out;
}

.eteps .etep:hover .etepth {
    background-size: 110%;
    transition: background-size 0.15s ease-in-out;
}

.eteps .etep a.btn {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    white-space: nowrap;
    transition: opacity 0.3s;
    opacity: 0;
}

.eteps .etep:hover a.btn {
    transition: opacity 0.3s;
    opacity: 1;
}

.eteps .etep a.btn:hover {
    background-color: var(--libella-green-bg);
}

div.eteps .said,
div.eteps .about {
    font-size: 18px;
    line-height: 21.6px;
    font-weight: 500;
}

div.contact .ergolabs {
    max-width: 780px;
    margin: auto;
}

div.contact p {
    max-width: 670px;
    margin: auto;
    text-align: center;
    font-size: 19px;
    line-height: 22.8px;
}

div.contact .contacts {
    max-width: 990px;
    margin: auto;
}

div.contact .contacts img {
    width: 77px;
    border-radius: 50%;
}

@media (min-width: 992px) {
    div.contact .contacts img {
        width: 177px;
    }
}

div.contact .contacts h3 {
    font-size: 25px;
    line-height: 26px;
}

div.contact .contacts em {
    font-size: 19px;
    line-height: 22.8px;
}

div.fragment-buttons {
    text-align: center;
}

div.fragment-text {
}

div.fragment-text p {
    font-size: 1.15rem;
    font-size: 18px;
    line-height: 24px;
}

div.fragment-perex {
}

div.fragment-perex p {
    font-size: 1.5rem;
    line-height: 28px;
    color: var(--libella-green);
}

div.product-detail div.fragment-perex p {
    font-style: italic;
}

div.fragment-col3,
div.fragment-col4,
div.fragment-col5 {
}

div.fragment-col3 h2,
div.fragment-col4 h2,
div.fragment-col5 h2 {
    font-size: 1.20rem;
    margin-bottom: 0.2rem;
}

div.fragment-col3 p,
div.fragment-col4 p,
div.fragment-col5 p {
    font-size: 17px;
    line-height: 20.4px;
    color: var(--libella-green);
}

.libella-sm-container {
    max-width: 860px;
}

div.fragment-html,
div.fragment-html-b,
div.fragment-ol5,
div.fragment-ul5 {
    font-size: 1.15rem;
}

div.fragment-html h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.tac div.fragment-html p, .gdpr div.fragment-html p,
.tac div.fragment-html ol li, .gdpr div.fragment-html ol li,
.tac div.fragment-html ul li, .gdpr div.fragment-html ul li,
.tac div.fragment-ol5 p, .gdpr div.fragment-ol5 p,
.tac div.fragment-ol5 ol li, .gdpr div.fragment-ol5 ol li,
.tac div.fragment-ol5 ul li, .gdpr div.fragment-ol5 ul li,
.tac div.fragment-ul5 p, .gdpr div.fragment-ul5 p,
.tac div.fragment-ul5 ol li, .gdpr div.fragment-ul5 ol li,
.tac div.fragment-ul5 ul li, .gdpr div.fragment-ul5 ul li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.tac div.fragment-ol5 p, .gdpr div.fragment-ol5 p,
.tac div.fragment-ol5 ol li, .gdpr div.fragment-ol5 ol li,
.tac div.fragment-ol5 ul li, .gdpr div.fragment-ol5 ul li,
.tac div.fragment-ul5 p, .gdpr div.fragment-ul5 p,
.tac div.fragment-ul5 ol li, .gdpr div.fragment-ul5 ol li,
.tac div.fragment-ul5 ul li, .gdpr div.fragment-ul5 ul li {
    font-size: 1.25rem;
}

.tac div.fragment-html ul,
.tac div.fragment-html ol,
.gdpr div.fragment-html ul,
.gdpr div.fragment-html ol,
div.fragment-ol5 ul,
div.fragment-ol5 ol {
    position: relative;
    list-style: none;
}
.tac div.fragment-html ul li::before,
.gdpr div.fragment-html ul li::before {
    content: '\2192';
    color: var(--libella-green);
    position: absolute;
    left: 0;
}
.tac div.fragment-html ol > li,
.gdpr div.fragment-html ol > li,
div.fragment-ol5 ol > li {
    counter-increment: lia;
}
.tac div.fragment-html ol > li > ol > li,
.gdpr div.fragment-html ol > li > ol > li,
div.fragment-ol5 ol > li > ol > li {
    counter-increment: lib;
}
.tac div.fragment-html ol > li > ol > li,
.gdpr div.fragment-html ol > li > ol > li,
div.fragment-ol5 ol > li > ol > li {
    counter-reset: lia;
}
.tac div.fragment-html ol > li::before,
.gdpr div.fragment-html ol > li::before,
div.fragment-ol5 ol > li::before {
    content: counter(lia) ". ";
    color: var(--libella-green);
    position: absolute;
    left: 0px;
}
.tac div.fragment-html ol > li > ol > li::before,
.gdpr div.fragment-html ol > li > ol > li::before,
div.fragment-ol5 ol > li > ol > li::before {
    content: counter(lib) ". ";
    color: var(--libella-green);
    position: absolute;
    left: 0px;
}
div.fragment-ul5 ul li {
    padding-left: 0.5rem;
}
div.fragment-ul5 ul > li::marker {
    color: var(--libella-green);
}

div.tac,
div.gdpr {
    margin-bottom: 8rem;
}

div.tac div.fragment-html h3,
div.gdpr div.fragment-html h3 {
    text-align: center;
}

.carousel img,
.carousel-dark.carousel img {
    max-height: 100vh;
    max-width: 100%;
    display: block;
    margin: auto;
}

.carousel-control-prev-icon,
.carousel-dark .carousel-control-prev-icon {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230097a9'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon,
.carousel-dark .carousel-control-next-icon {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230097a9'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators [data-bs-target],
.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #0097a9;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: 5px;
}

#homeCoverCarousel .carousel-indicators {
    bottom: 30px;
}

.product-detail .product-price {
    font-size: 1.15rem;
}

.product-detail .product-price .col.text-start {
    color: var(--libella-green);
}

.product-detail .product-price .note {
    font-style: italic;
}

.fragment-download .download-file-item,
.product-detail .product-downloads .download-file-item {
    color: var(--libella-green);
    text-decoration: none;
}

.fragment-download .pdf-icon,
.product-detail .product-downloads .pdf-icon {
    border-radius: 50%;
    background-color: var(--libella-green-bg);
    float: left;
    width: 80px;
    height: 80px;
    padding: 20px;
    margin-right: 20px;
}

.product-detail .product-accessories .product-accessories-item {
    text-decoration: none;
}

.product-detail .product-accessories .product-accessories-item h3 {
    text-align: center;
    font-size: 1.5rem;
}

.navbar.productsubmenu {
    right: 1rem;
    z-index: 1029;
}

.navbar.productsubmenu.in {
    top: 70px;
    transition: top 0.4s;
}
@media (min-width: 992px) {
    .navbar.productsubmenu {
        right: 3.25rem;
    }

    .navbar.productsubmenu.in {
        top: 90px;
    }
}

.navbar.productsubmenu.out {
    top: 0px;
    transition: top 0.4s;
}

.navbar.productsubmenu .nav-link {
    border-radius: 50%;
    background-color: var(--libella-green-bg);
    color: var(--libella-green);
    text-decoration: none;
    text-align: center;
    padding: 0.45rem 0.55rem;
    margin: 0px 5px;
    font-size: 1.6rem;
    display: none;
}
@media (min-width: 992px) {
    .navbar.productsubmenu .nav-link {
        display: block;
    }
}

.navbar.productsubmenu .btn {
    padding: 0.25rem 1.5rem;
    margin: 0px 5px;
    font-size: 1.3rem;
    text-transform: none;
    line-height: 1.5;
    letter-spacing: normal;
}

.navbar.productsubmenu.in .btn {
    display: none;
}
@media (min-width: 992px) {
    .navbar.productsubmenu.in .btn {
        display: block;
    }
}
.navbar.productsubmenu.out .btn {
    display: block;
}

.navbar.productsubmenu .btn:hover,
.navbar.productsubmenu .btn:focus {
    background-color: #fff;
}

.navbar.productsubmenu .nav-link.active,
.navbar.productsubmenu .nav-link:hover,
.navbar.productsubmenu .nav-link:focus {
    background-color: var(--libella-green);
    color: var(--libella-green-bg);
}

.productslistwrapper,
.postslistwrapper,
.partnerslistwrapper {

}

.productslistwrapper > h2,
.postslistwrapper > h2,
.partnerslistwrapper > h2 {
    font-size: 42px;
    line-height: 42px;
}

.productslistwrapper > p,
.postslistwrapper > p {
    font-size: 15px;
    line-height: 18px;
}

.productslistwrapper-3 {
    max-width: 958px;
    margin: auto;
}

.postslistwrapper-3 {
    max-width: 1140px;
    margin: auto;
}

.partnerslistwrapper-3 {
    max-width: 970px;
    margin: auto;
}

.row.productslist .productitem,
.row.partnerslist .partneritem,
.partnercarousel-item {
    border-radius: 15px;
    overflow: hidden;
}

.partnercarousel-item {
    max-width: 320px;
    margin: auto;
}

.row.productslist .productitem a.productth,
.row.partnerslist .partneritem a.partnerth,
.partnercarousel-item a.partnerth {
    height: 280px;
    background-color: var(--libella-green);
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0px 0px;
    transition: background-size 0.15s ease-in-out;
}

.row.partnerslist .partneritem a.partnerth,
.partnercarousel-item a.partnerth {
    height: 161px;
    background-color: #fff;
}

.row.productslist .productitem:hover a.productth,
.row.partnerslist .partneritem:hover a.partnerth,
.partnercarousel-item:hover a.partnerth {
    background-size: 110%;
    transition: background-size 0.15s ease-in-out;
}

.row.productslist .productitem a.productth div.text-libella,
.row.partnerslist .partneritem a.partnerth div.text-libella,
.partnercarousel-item a.partnerth div.text-libella {
    height: 33px;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}
@media (min-width: 992px) {
    .row.productslist .productitem a.productth div.text-libella,
    .row.partnerslist .partneritem a.partnerth div.text-libella,
    .partnercarousel-item a.partnerth div.text-libella {
        height: 0px;
    }
}

.row.productslist .productitem:hover a.productth div.text-libella,
.row.partnerslist .partneritem:hover a.partnerth div.text-libella,
.partnercarousel-item:hover a.partnerth div.text-libella {
    height: 33px;
    transition: height 0.4s ease-in-out;
}

.row.productslist .productitem a h3,
.row.partnerslist .partneritem a h3,
.partnercarousel-item a h3 {
    font-size: 24px;
    line-height: 24px;
    padding: 20px 30px 10px 30px;
}

.row.productslist .productitem a h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.row.productslist .productitem a p,
.row.partnerslist .partneritem a p,
.partnercarousel-item a p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    padding: 0px 30px 0px 30px;
    margin-bottom: 0px;
}

.row.productslist .productitem > div:last-child {
    padding-bottom: 30px!important;
}

.row.partnerslist .partneritem div > a.btn-libella,
.partnercarousel-item div > a.btn-libella {
    margin: 20px 30px 0px 30px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;


    opacity: 1;
    text-transform: none;
    padding: 6px 20px 8px 20px;
    background-color: #eaf7f8;
}

.row.partnerslist .partneritem div > a.btn-libella,
.partnercarousel-item div > a.btn-libella {
    border-color: var(--libella-green-bg);
    letter-spacing: normal;
    font-size: 15px;
}

.row.partnerslist .partneritem:hover div > a.btn-libella,
.partnercarousel-item:hover div > a.btn-libella {
    background-color: var(--libella-green);
    color: #fff;
}

.row.partnerslist .partneritem:hover div > a.btn-libella,
.partnercarousel-item:hover div > a.btn-libella {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.row.productslist .productitem > div,
.row.partnerslist .partneritem > div,
.partnercarousel-item > div {
    background-color: #fff;
    border-radius: 0px 0px 15px 15px;
    padding-bottom: 22px;
}

.row.postslist .postitem {
    border-radius: 15px;
    overflow: hidden;
}

.row.postslist .postitem a.postth {
    height: 280px;
    background-color: var(--libella-green);
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0px 0px;
}

.row.postslist .postitem div h3 {
    font-size: 24px;
    line-height: 24px;
    padding: 20px 30px 5px 30px;
    margin: 0px;
}

.row.postslist .postitem div.postdate small {
    font-size: 16.5px;
    line-height: 19.8px;
    font-weight: normal!important;
    display: inline-block;
    padding: 0px 30px 5px 30px;
}

.row.postslist .postitem div.postdate {
    height: 30px;
    transition: height 0.2s ease-in-out;
    overflow: hidden;
}
@media (min-width: 992px) {
    .row.postslist .postitem div.postdate {
        height: 0px;
    }
}

.row.postslist .postitem:hover div.postdate {
    height: 30px;
    transition: height 0.3s ease-in-out;
}

.row.postslist .postitem div p {
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    padding: 0px 30px 0px 30px;
    margin-bottom: 0px;
}

.row.postslist .postitem div > a.btn-libella {
    margin: 20px 30px 0px 30px;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
@media (min-width: 992px) {
    .row.postslist .postitem div > a.btn-libella {
        opacity: 0;
    }
}

.row.postslist .postitem:hover div > a.btn-libella {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.row.postslist .postitem > div {
    background-color: #fff;
    border-radius: 0px 0px 15px 15px;
    padding-bottom: 22px;
}

.product-msorder .step-indicator,
.cart .step-indicator {
    width: 100%;
}

.product-msorder .step-indicator .step,
.cart .step-indicator .step {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    font-family: 'Lato Bold';
    line-height: 40px;
    color: #fff;
    background-color: #bfe5ea;
    border-radius: 50%;
    margin: 0px 10px;
}

.product-msorder .step-indicator .step.active,
.cart .step-indicator .step.active {
    background-color: var(--libella-green);
}

.product-msorder .step-indicator .line,
.cart .step-indicator .line {
    width: 100px;
    height: 2px;
    background: #bfe5ea;
    border-radius: 25px;
}

.form-libella select.form-select,
.form-libella select.form-select:focus,
.form-libella input.form-control,
.form-libella textarea.form-control,
.form-libella input.form-control:focus,
.form-libella textarea.form-control:focus {
    padding: 10px;
    margin-top: 0px;
    border-radius: 0px;
    font-size: 1.15rem;
    box-shadow: none;
    background-color: var(--libella-green-bg);
}

.form-libella select.form-select:disabled,
.form-libella select.form-select:focus:disabled {
    background-color: #e9ecef;
}

.form-libella .form-control:disabled,
.form-libella .form-control[readonly] {
    background-color: #e9ecef;
}

.form-libella select.form-select:not(.is-invalid),
.form-libella select.form-select:not(.is-invalid):focus,
.form-libella input.form-control:not(.is-invalid),
.form-libella textarea.form-control:not(.is-invalid),
.form-libella input.form-control:not(.is-invalid):focus,
.form-libella textarea.form-control:not(.is-invalid):focus {
    border-color: var(--libella-green-bg);
}

.bg-libella .form-libella select.form-select:not(.is-invalid),
.bg-libella .form-libella select.form-select:not(.is-invalid):focus,
.bg-libella .form-libella input.form-control:not(.is-invalid),
.bg-libella .form-libella textarea.form-control:not(.is-invalid),
.bg-libella .form-libella input.form-control:not(.is-invalid):focus,
.bg-libella .form-libella textarea.form-control:not(.is-invalid):focus {
    border-color: var(--libella-green);
}

.form-libella .form-label {
    margin-bottom: 0rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-family: 'Lato Bold';
    color: var(--libella-green);
}

.form-libella h3.msoform-label {
    text-transform: uppercase;
    font-size: 1rem;
    font-family: 'Lato Bold';
    color: var(--libella-green);
}

.form-libella .form-check-label,
.form-libella .form-check-label a {
    color: var(--libella-green);
    font-size: 1.15rem;
}

.form-libella .form-check-input,
.form-libella .form-check-input:focus {
    background-color: #bfe5ea;
    border: none;
    box-shadow: none;
    margin-top: 0.1em;
}

.form-libella .form-check-input:checked {
    background-color: var(--libella-green);
    border: none;
}

.form-libella.form-libellatc select.form-select,
.form-libella.form-libellatc select.form-select:focus {
    border-radius: 1.25rem;
    box-shadow: none;
    background-color: #fff;
    border-color: var(--libella-green);
    padding: 0.5rem 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
}

.form-libella.form-libellatc select.form-select:disabled,
.form-libella.form-libellatc select.form-select:focus:disabled {
    background-color: #e9ecef;
}

.product-msorder .mso-etep-item h3 {
    font-size: 1.25rem;
}

.product-detail .variants-item h3,
.cart .variants-item h3 {
    font-size: 1.75rem;
}

.product-msorder .mso-etep-item,
.product-detail .variants-item {
    font-size: 1.15rem;
}

.cart .variants-item {
    font-size: 1.25rem;
}

.product-msorder .mso-etep-item a:not(.btn) {
    color: var(--libella-green);
    text-decoration: none;
}

.product-msorder .mso-etep-item.selected,
.product-msorder .mso-etep-item.selected h3,
.product-msorder .mso-etep-item.selected a,
.product-msorder .mso-etep-item.selected .text-libella {
    background-color: var(--libella-green);
    color: var(--libella-green-bg);
    border-color: var(--libella-green-bg);
}

.product-msorder .mso-etep-item .btn-select .select,
.product-msorder .mso-etep-item.selected .btn-select .selected {
    display: inline;
}

.product-msorder .mso-etep-item .btn-select .selected,
.product-msorder .mso-etep-item.selected .btn-select .select {
    display: none;
}

.product-msorder .confirmtext,
.product-msorder .confirmtext a {
    color: var(--bs-body-color);
    font-size: 1.15rem;
}

.libellalife .tags .btn.btn-outline-libella:not(:hover):not(:focus) {
    border-color: #fff;
    background-color: #fff;
}

.libellalife .tags .btn.btn-outline-libella.active,
.libellalife .tags .btn.btn-outline-libella.active:not(:hover):not(:focus) {
    border-color: var(--libella-green-bg);
    background-color: var(--libella-green);
    color: var(--libella-green-bg);
}

@media (min-width: 992px) {
    .libellalifepost h1 {
        font-size: 3.15rem;
    }
}

.alert {
    margin-bottom: 0px;
}

.paginator .paginator-item {
    color: var(--libella-green);
    font-size: 1.15rem;
}

.paginator .paginator-item a.paginator-link {
    color: var(--libella-green);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
}

.paginator .paginator-item a.paginator-link.active {
    background-color: var(--libella-green);
    border-radius: 50%;
    color: var(--libella-green-bg);
}

.paginator .paginator-item a.paginator-link.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.3;
}

.libellalifepost .tags .btn.btn-outline-libella:not(:hover):not(:focus) {
    border-color: var(--libella-green-bg);
    background-color: var(--libella-green-bg);
}

.homebanner {
    position: absolute;
    top: 84px;
    right: 6.5%;
    width: 250px;
    height: 250px;
    background: var(--libella-green);
    color: #fff;
    border-radius: 50%;
    font-style: italic;
    text-align: center;
    display: block;
    z-index: 1029;
}

.homebanner .closelink {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    display: block;
}

.our-story-banner {
    position: relative;
    max-width: 1440px;
    background-size: cover;
    background-position: center center;
    margin: auto;
    overflow: hidden;
}

@media (min-width: 992px) {
    .our-story-banner {
        height: 740px;
    }
}

.btmcir {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 269px;
    height: 269px;
    border-radius: 134.5px;
    margin: auto;
    margin-bottom: -250px;
}

.our-story-banner .text-banner {
    position: relative;
    width: 303px;
    height: 303px;
    border-radius: 50%;
    font-size: 35px;
    line-height: 42px;
    margin-top: 105px;
    margin-bottom: -200px;
    z-index: 1001;
    padding-top: 56px;
}

@media (min-width: 992px) {
    .our-story-banner .text-banner {
        width: auto;
        height: 269px;
        border-radius: 134.5px;
        margin-top: 0px;
        margin-bottom: 91px;
        padding-top: 0px;
    }
}

.d-lg-none.bg-white {
    position: relative;
    width: 303px;
    z-index: 1002;
    font-size: 16.5px;
    line-height: 19.8px;
    font-weight: 600;
    text-align: center;
    margin: auto;
}

.our-story-banner .text-banner h2 {
    width: 268px;
}

.our-story-banner .text-banner > div {
    width: 0px;
    font-weight: 600;
    font-size: 19px;
    line-height: 22.8px;
    overflow: hidden;
    transition: width 0.35s ease-in-out;
}

.our-story-banner:hover .text-banner > div {
    width: 536px;
    transition: width 0.35s ease-in-out;
}

.our-story-banner .text-banner > div > div {
    width: 536px;
    padding: 0px 66px 0px 0px;
}

.home-contact {
    max-width: 900px;
    margin: auto;
    font-size: 1.1rem;
}

.home-contact-icon {
    background-color: var(--libella-green-bg);
    border-radius: 50%;
    text-align: center;
    padding: 19px 22px 22px 22px;
    margin-top: -21px;
    margin-right: -10px;
}

.ergo-icon {
    float: left;
    margin-top: -21px;
    margin-right: -10px;
}

.alert-icon {
    float: left;
    margin-top: -6px;
    margin-left: -40px;
}

.fragment-html a {
    color: var(--libella-green);
}

.fragment-video a.btn-play,
.fragment-video a.btn-play:hover,
.fragment-video a.btn-play:focus {
    position: absolute;
    top: 1.5rem;
    left: 0px;
    height: calc(100% - 85px - 3rem);
    width: 100%;
    color: #fff;
    text-decoration: none;
}

.fragment-video a.btn-play .bi-play-circle {
    font-size: 100px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -50px;
}

.fragment-video:hover a.btn-play .bi-play-circle,
.fragment-video:focus a.btn-play .bi-play-circle,
.fragment-video a.btn-play:hover .bi-play-circle,
.fragment-video a.btn-play:focus .bi-play-circle {
    color: var(--libella-green);
}

.text-imglabel {
    font-size: 1rem!important;
}

.newsletter-box {
    position: fixed;
    bottom: 100px;
    right: 0%;
    min-width: 230px;
    min-height: 100px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.modal-backdrop {
    z-index: 99990;
}

.modal-cposta,
.modal-cookies,
#discountmodal {
    z-index: 99999;
}

.newsletter-box {
    z-index: 99998;
}

#homeCoverCarousel .carousel-img {
    background-size: cover;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
}

#homeCoverCarousel .carousel-img h1,
#homeCoverCarousel .carousel-img h2 {
    position: relative;
    max-width: 550px;
    margin: auto;
    text-align: center;
    padding-top: calc(50vh - 2rem - 50px);
    font-family: 'Lato Bold';
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0px 0px 20px rgb(0 0 0 / 40%);
}

@media (min-width: 992px) {
    #homeCoverCarousel .carousel-img h1,
    #homeCoverCarousel .carousel-img h2 {
        font-size: 3rem;
        padding-top: calc(50vh - 3.5rem - 50px);
    }
}

#homeCoverCarousel .carousel-inner {
    /*height: calc(100vh - 105px);*/
}

#homeCoverCarousel .btn-libella-plus {
    top: 0px;
    left: 15%;
    right: 15%;
    width: 70%;
    /*    height: calc(100vh - 105px);*/
    bottom: 40px;
    z-index: 9998;
    font-weight: 600;
}

#homeCoverCarousel .btn-libella-plus > div {
    bottom: 180px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    border: 3px solid #fff;
    background-color: #fff;
    border-radius: 1.25rem;
}

@media (max-height: 640px) {
    #homeCoverCarousel .btn-libella-plus > div {
        bottom: 60px;
    }
}

@media (min-width: 992px) {
    #homeCoverCarousel .btn-libella-plus > div {
        right: 100px;
    }
}

#homeCoverCarousel .btn-libella-plus:hover > div,
#homeCoverCarousel .btn-libella-plus:focus > div {
    background-color: rgb(255,255,255);
}

.product-detail .variants-item .color-item,
.product-detail .variants-item .bcolor-item {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.15rem;
    cursor: pointer;
    border: 5px solid #fff;
}

.product-detail .variants-item .color-item.active,
.product-detail .variants-item .color-item:hover,
.product-detail .variants-item .bcolor-item.active,
.product-detail .variants-item .bcolor-item:hover {
    border: 5px solid #fff;
    box-shadow: 0px 0px 2px 1px var(--libella-green);
}

div.pv-itemdesc p,
div.pv-itemdesc dl,
div.pv-itemdesc ol,
div.pv-itemdesc ul {
    margin-bottom: 0.5rem!important;
}

div.productserieslinks {
    gap: 10px;
}

div.productserieslinks .btn {
    text-transform: none;
    border-radius: 20px;
    padding: 5px 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 21.6px;
    letter-spacing: normal;
}

div.topproducts h2.mb-4,
div.partnerslistwrapper h2.mb-4 {
    margin-bottom: 50px!important;
}

div.toplibellalife h2.mb-4 {
    margin-bottom: 45px!important;
}

div.section-products:last-child {
    margin-bottom: 0px!important;
}

div.section-msmnt .msmnt-intro {
    max-width: 490px;
    margin: auto;
}

div.section-msmnt .msmnt-intro h1 {
    margin-bottom: 15px;
    font-size: 42px;
    line-height: 42px;
}

div.section-msmnt .msmnt-intro p {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 18px;
}


