:root {
    --primary-color: #a11032;
    --featured-color: #fdd88e;
    --bg-color: #f5f3f0;
    --light-color: #fff;
    --dark-color: #000;
    --text-color: #474847;
}

html,
body {
    font-family: "Next Rounded";
    font-weight: 400;
    font-size: 20px;
    scroll-padding-top: 150px;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.content {
    padding-top: 100px;
    min-height: calc(100vh - 207px);
}

.page-template-page-home .content,
.page-template-page-reminder .content,
.page-template-page-changepassword .content,
.page-template-page-register .content,
.error404 .content {
    background: url(../images/soluvet-bg.jpg) repeat center top;
}

h1 {
    font-size: 34px;
    line-height: normal;
    font-weight: 700;
    color: var(--dark-color);
}

h2 {
    font-size: 24px;
    line-height: 50px;
    font-weight: 700;
    color: var(--text-color);
}

h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

p {
    font-size: 20px;
}

ul li,
ol li {
    margin-bottom: .5rem;
}

a {
    color: var(--primary-color);
    text-decoration: underline;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 5px 25px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-back {
    text-decoration: none !important;
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-transform: none;
    width: max-content;
    padding: 6px 1.2rem 6px;
    color: var(--dark-color) !important;
    font-size: 16px;
    font-weight: 400 !important;
    border: 1px solid #cacaca;
    border-radius: 35px;
    background-color: var(--light-color);
}

.btn-back:hover {
    background: #f5f5f5;
    color: var(--dark-color) !important;
}

.btn-back svg {
    margin-right: 7px;
    vertical-align: middle;
    margin-top: 2px;
}

.btn-contact {
    background-color: #66081e;
    color: var(--light-color);
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--featured-color);
    margin-bottom: 12px;
    text-transform: none;
    padding: 9px 30px;
}

.btn-contact:hover {
    background-color: #4b0515;
    color: var(--light-color);
    border: 2px solid var(--featured-color);
}

.btn-contact svg {
    margin-right: 10px;
    vertical-align: middle;
}

.btn-search {
    background-color: var(--light-color);
    border-color: var(--light-color);
    padding: 5px 15px;
}

.btn-search:hover {
    background-color: var(--light-color);
    border-color: var(--light-color);
}

.btn-search:hover svg path {
    fill: var(--primary-color);
}

.btn-search:focus,
.btn-search:active,
.btn-search:focus:active {
    box-shadow: none;
    border-color: var(--light-color);
}

.btn-product {
    font-size: 15px;
    font-weight: 500;
    color: #010101;
    text-transform: none;
    background-color: #f2f0ec;
    border: none;
    border-radius: 35px;
    padding: 5px 25px 7px;
    margin: 0 0 0 auto;
    display: block;
    width: max-content;
    max-width: 100%;
}

.btn-product:hover {
    background-color: #e1dfdb;
    color: #010101;
    border: none;
}


.btn-login {
    background-color: var(--primary-color);
    color: var(--light-color)!important;
    border: 1px solid var(--primary-color);
    border-radius: 35px;
    padding: 5px 35px 8px;
    text-transform: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--light-color);
    color: var(--primary-color)!important;
    border: 1px solid var(--primary-color);
}

.btn-buy-form {
    font-size: 16px;
    text-transform: none;
    border-radius: 35px;
    padding: 5px 20px 7px;
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 40px auto 10px;
}

.btn-buy-form svg {
    margin-right: 5px;
    vertical-align: top;
}

.desktop-only {
    display: block
}

.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .content {
        padding-top: 80px;
    }

    .desktop-only {
        display: none!important;
    }

    .mobile-only {
        display: block!important;
    }
}

/*-- Header --*/
header {
    background: var(--primary-color);
}

header .col-main-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    padding: 0 40px 0 30px;
    position: relative;
}

header .col-main-menu .wpml-ls-legacy-list-horizontal .wpml-ls-item a {
    color: var(--light-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

header .col-main-menu .wpml-ls-legacy-list-horizontal .wpml-ls-item a:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: var(--light-color);
    position: absolute;
    left: 0;
    top: 8px;
}

header .col-main-menu .wpml-ls-legacy-list-horizontal .wpml-ls-item:first-child a:before {
    display: none;
}

header .col-main-menu .wpml-ls-legacy-list-horizontal .wpml-ls-item a:hover span {
    text-decoration: underline;
}

header .col-main-menu .wpml-ls-legacy-list-horizontal .wpml-ls-current-language a {
    color: var(--featured-color);
    font-weight: 700;
}

header .navbar-brand {
    margin-right: 4rem;
}

header .language-selector {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

header .logout {
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 7px;
}

header .logout:hover {
    text-decoration: underline;
}

header .logout svg {
    margin-top: -3px;
    margin-left: 5px;
    vertical-align: middle;
}

header .contact {
    color: var(--light-color);
    text-decoration: none;
    margin-right: .5rem;
    margin-left: 2.5rem;
    position: relative;
}

header .contact a {
    color: var(--light-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

header .contact a:hover {
    text-decoration: underline;
}

header .contact:before {
    content: "";
    display: none;
    width: 1px;
    height: 15px;
    background-color: var(--light-color);
    position: absolute;
    left: -1rem;
    top: 11px;
}

header .user {
    color: var(--light-color);
    text-decoration: none;
    margin-left: 1.5rem;
    position: relative;
}

header .user:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: var(--light-color);
    position: absolute;
    left: -1rem;
    top: 13px;
}

header .user>svg {
    margin-top: -7px;
}

header .user .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0;
    vertical-align: middle;
    content: "";
    width: .6em;
    height: .6em;
    border-right: .13em solid currentColor;
    border-bottom: .13em solid currentColor;
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
}

header #user-menu {
    position: absolute;
    inset: 43px 0 auto auto !important;
    transform: none !important;
    border-radius: .75rem;
    padding: 0;
    background-color: var(--primary-color);
    border: 1px solid #f4f3ef;
}

header #user-menu .user-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--light-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header #user-menu .user-link:last-child {
    border-bottom: none;
}

header #user-menu .user-link:hover {
    text-decoration: underline;
}

@media (max-width: 1199px) {
   header .contact {
        margin-left: 1rem;
    }

    header .navbar-brand {
        margin-right: .5rem;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        display: none!important;
    }
}

@media (max-width: 767px){
    header nav {
        width: 100%;
    }

    header .navbar-brand svg {
        max-width: 200px;
        height: auto;
    }

    header .col-main-menu {
        padding: 0 15px;
    }

    header .navbar-toggler {
        border: 1px solid var(--bg-color);
        margin-bottom: 12px;
    }

    header .navbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(245,243,240, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")
    }

    header .navbar-nav {
        margin-left: -15px;
        margin-right: -15px;
        width: 100vw;
        padding-top: .5rem;
    }

    header .navbar-nav > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0 55px .5rem;
    }

    header .navbar-nav > li:last-child {
        border-bottom: none;
    }

    header .navbar-nav li a{
        color: var(--light-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
    }

    header .navbar-nav li a:hover {
        text-decoration: underline;
    }   

    header .navbar-nav li svg {
        margin-right: 5px;
        margin-left: -36px;
    }

    header .navbar-nav .language-selector {
        margin-left: -35px;
    }

    header .navbar-nav .wpml-ls-legacy-list-horizontal {
        padding: 0;
    }

     header .navbar-nav .wpml-ls-legacy-list-horizontal ul li:first-child a{
        padding-left: 0;
    }

    header .contact {
        margin-left: 0rem;
    }

    header .logout {
        padding: 0;
    }

    header .logout svg {
        margin-left: 5px!important;
    }
}

/*-- Footer --*/
footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 35px 0px 50px;
}

footer .col-footer {
    padding: 0 40px;
}

footer .footer-elements {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .footer-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-menu ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
}

footer .footer-menu ul li {
    margin: 0 10px 10px;
}

footer .footer-menu ul li a {
    color: #f5f3f0;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

footer .footer-menu ul li a:hover {
    text-decoration: underline;
}

footer .copyright {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: var(--light-color);
    margin-top: 30px;
    margin-bottom: -40px;
}

footer .footer-social a svg {
    margin-right: 5px;
}

footer .footer-social a:hover svg {
    opacity: 0.85;
}

/*-- Cookies --*/
.wcc-consent-container {
    width: 600px !important;
    max-width: 100%;
}

.wcc-consent-container .wcc-consent-bar {
    border: 10px solid var(--primary-color) !important;
    padding: 20px 30px 30px !important;
}

.wcc-consent-bar .wcc-notice-des p {
    font-size: 17px;
    text-align: center;
    line-height: 28px;
    margin-bottom: 2rem !important;
}

.wcc-notice-btn-wrapper .wcc-btn,
.wcc-prefrence-btn-wrapper .wcc-btn {
    border-radius: 35px;
    text-transform: uppercase;
    font-size: 15px;
    padding: 8px;
    border-color: var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
}

.wcc-notice-btn-wrapper .wcc-btn:hover,
.wcc-prefrence-btn-wrapper .wcc-btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--light-color) !important;
    opacity: 1;
}

.wcc-btn-revisit-wrapper:hover .wcc-revisit-help-text {
    display: none !important;
}

/*-- Home --*/
.home-content {
    padding: 115px 15px;
}

.home-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-info .home-info-element {
    padding: 30px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-info .home-info-element p {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--light-color);
    line-height: normal;
}

.home-info .home-info-element p a {
    
    text-decoration: underline;
}

.home-info .home-info-element p a:hover {
    text-decoration: none;
}

.home-info .home-info-element p strong,
.home-info .home-info-element p b {
    color: #323232;
    font-weight: 500;
}

.home-info .home-info-element:nth-child(1) {
    background-color: #83b5d6;
    width: 100%;
    margin-bottom: 20px;
}

.home-info .home-info-element:nth-child(2) {
    background-color: #bfc980;
    width: 48%;
    margin-bottom: 20px;
}

.home-info .home-info-element:nth-child(3) {
    background-color: #e2b02b;
    width: 48%;
    margin-bottom: 20px;
}

.home-info .home-info-element:nth-child(4) {
    background-color: #61d3c8;
    width: 100%;
}

@media (max-width: 991px){
    .home-content {padding: 80px 15px;}
}

/*-- Login --*/
.login .col-form .loginForm {
    background: var(--primary-color);
    border-radius: 35px;
    padding: 45px 30px;
    z-index: 1;
    position: relative;
    max-width: 100%;
    height: 100%;
}

.wppb-required {
    color: var(--primary-color);
}

.login .col-form .loginForm .main-title {
    font-size: 46px;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 30px;
    text-align: center;
}

.login .col-form .loginForm .subtitle {
    color: var(--light-color);
    margin-bottom: 30px;
    text-align: center;
}

.login .col-form .loginForm form .form-fields{
    padding: 0 100px;
}

.login .col-form .loginForm label {
    font-weight: 300;
    font-size: 14px;
    color: var(--light-color);
    padding: 0 15px 5px;
}

.login .col-form .loginForm .btn {
    color: var(--primary-color)!important;
    background-color: var(--light-color);
    border: 1px solid var(--light-color);
    font-size: 24px;
    font-weight: 700;
    min-width: 185px;
    width: max-content;
    max-width: 100%;
}

.login .col-form .loginForm .btn:hover {
    color: var(--light-color)!important;
    background-color: var(--primary-color);
    border: 1px solid var(--light-color);
}

.login .col-form .loginForm p {
    color: var(--light-color);
    font-size: 16px;
    font-weight: 400;
    padding: 0 25px;
}

.login .col-form .loginForm .login-register a {
    color: var(--light-color);
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
}

.form-control {
    border-radius: 10px;
    border: 1px solid var(--light-color);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--light-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--light-color);
    color: var(--light-color);
}

.form-check-input:focus {
    box-shadow: none;
}

.wppb-checkbox {
    padding: 0 27px;
}

.wppb-checkbox>label {
    padding: 0 !important;
}

.form-check-inline label {
    padding-left: 3px !important;
    font-family: "Arial" !important;
    font-size: 13px !important;
    color: var(--light-color) !important;
}

.legal-checkbox input {
    margin-right: 3px;
}

.legal-checkbox label {
    font-family: "Arial" !important;
    font-size: 13px !important;
    color: var(--light-color) !important;
}


.pass-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pass-options * {
    font-family: "Arial" !important;
    font-size: 13px !important;
    color: var(--light-color) !important;
    cursor: pointer;
}

.login-msg.error {
    color: var(--featured-color)!important;
}

.login-msg.error a {
    color: var(--featured-color)!important;
    text-decoration: underline;
}

.login-msg.error a:hover {
    text-decoration: none;
}

.login-msg.text-success {
    color: var(--light-color)!important;
}

.login-msg.text-success a {
    color: var(--light-color)!important;
    text-decoration: underline;
}

.login-msg.text-success a:hover {
    text-decoration: none;
}

.col-form .single-product {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 20px 25px 5px 25px;
    margin-bottom: 45px;
    position: relative;
}

.col-form .single-product h2 {
    line-height: normal;
}

.col-form .single-product .product-specifications {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.col-form .single-product .product-specifications .product-spec {
    margin-right: 25px;
    margin-bottom: 10px;
    width: 45%;
}

.col-form .single-product .product-specifications .product-spec span {
    font-size: 14px;
    font-weight: 500;
}

.col-form .single-product .product-specifications .product-spec p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
}

.col-form .single-product .btn-product {
    margin: 10px 0 0 0;
    border: 1px solid!important;
    font-size: 18px!important;
    line-height: 1.8!important;
}

@media (max-width: 1399px) {
    .login .col-form .loginForm form .form-fields {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .login .col-form {
        margin-bottom: 20px;
        order: -1;
    }
}

@media (max-width: 767px) {
    .form-check-inline {
        display: inline-block;
        margin-right: 1rem;
        min-width: 50%;
    }
}

@media (max-width: 575px) {
    .form-check-inline {
        display: inline-block;
        margin-right: 1rem;
        min-width: 100%;
    }

    .home-info .home-info-element:nth-child(2),
    .home-info .home-info-element:nth-child(3) {
        width: 100%;
    }
}

/*-- Search --*/
.search-input-group {
    border-radius: 35px;
    border: 3px solid #ababab;
    background-color: var(--light-color);
    overflow: hidden;
    padding: 10px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.search-input-group .btn-search {
    border-radius: 0;
}

.search-input-group .form-control {
    border-radius: 0;
    border: none;
    box-shadow: none;
    font-size: 18px;
    font-weight: 500;
    color: #868686;
}

.search-input-group .form-control::placeholder {
    color: #868686;
    opacity: 1;
}

.search-input-group .form-control:focus {
    border: none;
    box-shadow: none;
}

.filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 3rem;
}

.single-filter {
    margin-top: 8px;
    margin-bottom: 18px;
    width: max-content;
    min-width: 33.3%;
    max-width: 100%;
}

.filter-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #868686;
}

.filter-link:hover {
    text-decoration: underline;
}

.filter-link.active {
    font-weight: 700;
    text-decoration: underline;
}

.filter-link div {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #868686;
    margin-right: 8px;
}

.filters .clear-filters-wrapper .btn {
   background-color: #e0dfdd;
   border: none;
   border-radius: 35px;
   padding: 5px 35px;
   text-transform: none;
   font-size: 15px;
   color: #575757;
}

.filters .clear-filters-wrapper .btn svg {
    margin-right: 5px;
    vertical-align: middle;
}

.filters .clear-filters-wrapper .btn:hover{
   background-color: #cacaca;
   color: #010101;
   border: none;
}



.product-availability-results {
    background-color: var(--light-color);
}

.no-results {
    border: 1px solid #ababab;
    border-radius: 20px;
}

.no-results h3 {
    margin-bottom: 0;
}

.products-results .single-product {
    border: 1px solid #ababab;
    border-radius: 20px;
    padding: 20px 25px 5px 45px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 45px;
    position: relative;
}

.products-results .single-product .product-main-info {
    width: 50%;
}

.products-results .single-product .product-additional-info {
    width: 30%;
    margin-top: 41px;
}

.products-results .single-product .product-buttons {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-results .single-product .product-main-info h2 {
    font-weight: 500;
    line-height: normal;
}

.products-results .single-product .product-main-info h2 span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #868686;
    margin-right: 15px;
    margin-left: -30px;
}

.products-results .single-product .product-spec {
    display: flex;
}

.products-results .single-product .product-spec.flex-row {
    align-items: center;
}

.products-results .single-product .product-spec.flex-row p {
    line-height: 31px;
}

.products-results .single-product .product-spec.flex-row span {
    margin-bottom: .5rem;
    margin-right: 5px;
}

.products-results .single-product .product-spec span {
    font-size: 14px;
    font-weight: 500;
}

.products-results .single-product .product-spec p {
    margin-bottom: .5rem;
    font-size: 18px;
    font-weight: 500;
}

.products-results .single-product .edited {
    position: absolute;
    bottom: -25px;
    right: 50px;
    width: max-content;
    max-width: 100%;
    font-size: 14px;
    color: #868686;
}

.products-results .single-product .alternative-key {
    font-size: 18px;
    font-weight: 500;
    margin: 0 25px 10px auto!important;
    display: block;
    width: max-content;
    max-width: 100%;
}

@media (max-width: 1199px) {
    .single-filter {
        min-width: 50%;
    }

    .products-results .single-product .product-main-info {
        width: 40%;
    }

    .products-results .single-product .product-additional-info {
        width: 35%;
    }

    .products-results .single-product .product-buttons {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .col-main-menu .menu-buttons {
        position: absolute;
        top: 8px;
        right: 45px;
    }

    .col-main-menu .menu-buttons .btn-contact {
        padding: 7px 20px;
    }

    .filters {
        margin: 0 25%;
    }

    .single-filter {
        min-width: 100%;
    }

    .products-results .single-product .product-spec.flex-row {
        flex-direction: column !important;
        align-items: start;
    }

    .products-results .single-product .product-spec.flex-row span {
        margin-bottom: 0;
    }

    .products-results .single-product .product-main-info {
        width: 100%;
    }

    .products-results .single-product .product-additional-info {
        width: 100%;
        margin-top: 0px;
    }

    .products-results .single-product .product-buttons {
        width: 100%;
    }

    .products-results .single-product .btn-product {
        margin: 10px 0;
    }
}

@media (max-width: 767px) {
    .filters {
        margin: 0 15%;
    }
}

@media (max-width: 575px) {
    .filters {
        margin: 0 5%;
    }
}

/*-- Product --*/
.product-content {
    background-color: var(--light-color);
    padding-bottom: 3rem;
}

.product-content .product-details {
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 10px 20px 20px;
}

.product-content .product-details>h2 {
    margin-top: 1rem;
    line-height: normal;
}

.product-content .product-label h2 {
    line-height: normal;
    margin-top: -5px;
    font-size: 28px;
}

.product-content .product-label span {
    font-size: 14px;
    font-weight: 500;
}

.product-content .product-label p {
    margin-top: -5px;
    margin-bottom: .5rem;
    font-weight: 500;
}

.product-content .product-details p {
    line-height: normal;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: .5rem;
}

.product-content .edited {
    font-size: 15px;
}

.product-content .product-alternative-details {
    border: 1px solid #aaaaaa;
    border-radius: 20px;
    padding: 60px 50px 25px;
    position: relative;
}

.product-content .product-alternative-details .alternative-title {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: var(--light-color);
    border-radius: 35px;
    padding: 8px 20px 10px;
    width: max-content;
}

.product-content .product-alternative-details .product-buttons {
    margin-top: 1.5rem;
}

.product-content .product-alternative-details .product-buttons .btn-document {
    color: var(--light-color);
    font-size: 16px;
    text-transform: none;
    font-weight: 400;
    border: none;
    margin: 0 0 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 400px;
    max-width: 100%;
    padding: 12px 25px;
    border-radius: 20px;
}

.product-content .product-alternative-details .product-buttons .btn-document:hover {
    filter: brightness(1.1);
}

.product-content .product-alternative-details .product-buttons .btn-document svg {
    margin-right: 10px;
    vertical-align: middle;
}

.product-content .product-comments {
    margin-top: 2rem;
}

.product-content .product-comments .btn-comments {
    margin: 0 auto;
    font-size: 16px;
    color: var(--dark-color);
    background-color: #f2f0ec;
    border: none;
    border-radius: 35px;
    padding: 8px 25px;
    text-transform: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    max-width: 100%;
    cursor: pointer;
}

.product-content .product-comments .btn-comments:hover {
    background-color: #e1dfdb;
    color: var(--dark-color);
    border: none;
}

.product-content .product-comments .btn-comments img {
    margin-right: 10px;
    vertical-align: middle;
}

.product-content .comments-published {
    margin-top: 30px;
}

.product-content .comments-published .comment {
    border: 1px solid #ababab;
    border-radius: 20px;
    padding: 15px 25px 15px 50px;
    margin-bottom: 15px;
    background-color: #f6f6f5;
}

.product-content .comments-published>div:nth-child(even) {
    background-color: #e7eff5;
}

.product-content .comments-published .comment .coment-meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    margin-left: .5rem;
}

.product-content .comments-published .comment .coment-meta span:before {
    content: " | ";
    margin: 0 3px;
}

.product-content .comments-published .comment img {
    margin-left: -37px;
    margin-right: 5px;
}

.product-content .comments-published .comment .coment-text {
    margin-bottom: 0;
    font-size: 16px;
    color: #636262;
}

.product-content .comments-section {
    border: 1px solid #ababab;
    border-radius: 20px;
    margin-top: 1.5rem;
}

.product-content #comments-form .comment-respond {
    padding: 20px;
}

.product-content #comments-form h3 {
    color: var(--dark-color);
}

.product-content #comments-form label {
    display: block;
    font-size: 14px;
}

.product-content #comments-form label .required {
    color: var(--primary-color);
}

.product-content #comments-form p {
    margin-bottom: .5rem;
    font-size: 16px;
}

.product-content #comments-form form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-content #comments-form .comment-form-comment {
    width: 100%;
}

.product-content #comments-form textarea {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    border: 1px solid #cacaca;
    padding: 10px;
    font-size: 20px;
    outline: none;
}

.product-content #comments-form .comment-form-author,
.product-content #comments-form .comment-form-email {
    max-width: 49%;
    width: 100%;
    float: left;
}

.product-content #comments-form .comment-form-author input,
.product-content #comments-form .comment-form-email input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #cacaca;
    padding: 3px 10px 5px;
    font-size: 20px;
    outline: none;
}

.product-content #comments-form .comment-form-cookies-consent {
    max-width: 100%;
    float: left;
    margin-top: 1rem;
}

.product-content #comments-form .comment-form-cookies-consent label {
    display: inline;
}

.product-content #comments-form .form-submit {
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.product-content #comments-form .form-submit input {
    background: #f2f0ec;
    color: var(--dark-color);
    border: none;
    border-radius: 35px;
    padding: 8px 30px;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    cursor: pointer;
}

.product-content #comments-form .form-submit input:hover {
    background-color: #e1dfdb;
    color: var(--dark-color);
    border: none;
}

.product-content #comments-form .comments-area {
    margin-top: 1.5rem;
}

.product-content #comments-form a {
    color: var(--text-color);
}

.product-content .form-messages .correct {
    color: #85b6d7;
    font-size: 18px;
    font-weight: 500;
}

.product-content .form-messages .error {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .product-content .product-alternative-details {
        margin-top: 3rem;
        padding: 35px 20px 10px;
    }
}

@media (max-width: 575px) {
    .product-content #comments-form .comment-form-author, 
    .product-content #comments-form .comment-form-email {
        max-width: 100%;
    }
}

/*-- Contact --*/
.contact-content {
    border-radius: 35px;
    padding: 50px;
    background: #fafafa;
}

.contact-content .contact-form-col {
    border: 1px solid #ababab;
    border-radius: 20px;
    padding: 30px;
    background-color: var(--light-color);
}

.contact-content .legal {
    margin-top: -15px
}

.contact-content .legal #btninfo {
    font-size: 14px;
    letter-spacing: 0px;
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 700
}

.contact-content .legal #collapseLegal p {
    font-size: 12px;
    color: var(--text-color);
    display: block;
    margin-bottom: 0;
    margin-top: .5rem
}

.contact-content .legal #collapseLegal strong {
    font-size: 12px
}

.contact-content .legal #collapseLegal a {
    font-size: 12px;
    color: var(--text-color);
    text-decoration: underline
}

.contact-content .legal #collapseLegal a:hover {
    text-decoration: none !important
}

.contact-content .btn {
    background-color: var(--primary-color)!important;
    color: var(--light-color)!important;
    border: 1px solid var(--primary-color)!important;
    border-radius: 20px!important;
    padding: 5px 20px 7px!important;
    text-transform: none!important;
    font-size: 20px!important;
    font-weight: 500!important;
    transition: all 0.3s ease;
}

.contact-content .btn:hover {
    background-color: var(--light-color)!important;
    color: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
    box-shadow: none!important;
}

.contact-content .forminator-consent__label p a {
    color: var(--text-color);
    text-decoration: underline
}

.contact-content .forminator-consent__label p a:hover {
    text-decoration: none;
}

.contact-content .forminator-checkbox-box {
    background: transparent !important;
    color: var(--text-color);
}

.contact-content input:checked+.forminator-checkbox-box {
    border-color: var(--text-color) !important;
}

.contact-content .forminator-checkbox-box:before {
    color: var(--text-color);
}

.contact-content textarea {
    border-radius: 15px;
}

.contact-content input[type="text"],
.contact-content input[type="email"],
.contact-content textarea,
.contact-content .select2-selection {
    border-radius: 10px !important;
    background-color: #fafafa !important;
    border-color: #cacaca !important;
}

.contact-content .forminator-required {
    color: var(--primary-color) !important;
}

.contact-content .forminator-error-message {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}

.contact-content .forminator-ui.forminator-custom-form[data-design=default] .forminator-checkbox input:checked+.forminator-checkbox-box:before {
    color: var(--primary-color) !important;
}

.contact-content .forminator-ui.forminator-design--default .forminator-label {
    padding: 0 10px 5px !important;
}

.contact-content .disabled input {
    pointer-events: none;
    opacity: 0.6;
}

.contact-content .disabled .forminator-label {
    pointer-events: none;
}

/*-- Userinfo --*/
.col-userinfo .loginForm {
    background: var(--light-color);
    border: 1px solid #ababab;
    border-radius: 35px;
    padding: 45px 30px;
    z-index: 1;
    position: relative;
    max-width: 100%;
    height: 100%;
}

.col-userinfo .user-field strong {
    font-weight: 500;
    font-size: 14px;
}

.col-userinfo .user-field p {
    font-size: 18px;
    font-weight: 500;
}

.col-userinfo .user-field .badge-success {
    background-color: var(--featured-color);
}

.col-userinfo .user-field .badge-danger {
    background-color: var(--primary-color);
}

/*-- Pagination --*/
.product-availability-results .pagination-wrapper {
    margin-top: 3rem !important;
    margin-bottom: 2rem !important;
}

.product-availability-results .pagination-info p {
    color: #666 !important;
    font-size: 14px !important;
    margin-bottom: .75rem !important;
    font-weight: 400 !important;
}

.product-availability-results .pagination {
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    border: 1px solid #aaa !important;
    border-radius: 35px !important;
    overflow: hidden !important;
}

.product-availability-results .page-item {
    margin: 0 2px !important;
}

.product-availability-results .page-item:first-child .page-link {
    color: var(--primary-color) !important;
    border-right: 1px solid #aaa !important;
    padding: 4px 20px 6px !important;
    margin-right: 30px !important;
}

.product-availability-results .page-item:first-child:hover .page-link {
    background-color: #f2f0ec !important;
}

.product-availability-results .page-item.disabled:first-child .page-link svg path {
    fill: #6c757d !important;
}

.product-availability-results .page-item:last-child .page-link {
    color: var(--primary-color) !important;
    border-left: 1px solid #aaa !important;
    padding: 4px 20px 6px !important;
    margin-left: 30px !important;
}

.product-availability-results .page-item:last-child:hover .page-link {
    background-color: #f2f0ec !important;
}

.product-availability-results .page-item.disabled:last-child .page-link svg path {
    fill: #6c757d !important;
}

.product-availability-results .page-link {
    display: block !important;
    padding: 6px 8px !important;
    color: var(--dark-color) !important;
    text-decoration: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    transition: all 0.2s ease !important;
    font-size: 18px !important;
}

.product-availability-results .page-link:focus {
    box-shadow: none !important;
}

.product-availability-results .page-link:hover {
    color: var(--primary-color) !important;
    background-color: transparent !important;
    border: none !important;
    text-decoration: underline !important;
}

.product-availability-results .page-item.active .page-link {
    z-index: 1 !important;
    color: var(--primary-color) !important;
    background-color: transparent !important;
    border: none !important;
}

.product-availability-results .page-item.active:hover .page-link {
    text-decoration: none !important;
}

.product-availability-results .page-item.disabled .page-link {
    color: #6c757d !important;
    pointer-events: none !important;
    cursor: auto !important;
    background-color: transparent !important;
    text-decoration: none !important;
}

.product-availability-results .page-item.disabled:hover .page-link {
    text-decoration: none !important;
    background-color: transparent !important;
}

.product-availability-results .sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
/* MM 20251005 */

.character-counter {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 5px;
    text-align: right;
}

.character-counter #char-count {
    font-weight: 600;
    transition: color 0.3s ease;
}

.comment-form-comment {
    position: relative;
}

.comment-form-comment textarea {
    margin-bottom: 5px;
    resize: vertical;
}

.comment-form-comment .character-counter {
    margin-bottom: 0;
}



.single-product {
    position: relative;
}

.single-product:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-top: 25px solid transparent;
    border-right: 25px solid #f2f0ec;
    border-bottom: 25px solid #f2f0ec;
    border-radius: 0 0 20px 0px;
}

body.single-product:after {
    display: none;
}





form.marketingForm > div {
    max-width: 100% !important;
}

form.marketingForm table {
    width: 100% !important;
}

form.marketingForm .columnContainer {
    width: 100% !important;
}

form.marketingForm th.inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

form.marketingForm .textFormFieldBlock, 
form.marketingForm .dateTimeFormFieldBlock, 
form.marketingForm .twoOptionFormFieldBlock, 
form.marketingForm .optionSetFormFieldBlock, 
form.marketingForm .multiOptionSetFormFieldBlock, 
form.marketingForm .lookupFormFieldBlock {
    padding: 15px 15px 20px !important;
    gap: 5px !important;
    width: calc(50% - 30px) !important;
}

form.marketingForm .textFormFieldBlock label, 
form.marketingForm .dateTimeFormFieldBlock label, 
form.marketingForm .lookupFormFieldBlock label, 
form.marketingForm .twoOptionFormFieldBlock label.block-label, 
form.marketingForm .optionSetFormFieldBlock label.block-label, 
form.marketingForm .multiOptionSetFormFieldBlock label.block-label, 
form.marketingForm div[data-editorblocktype="Captcha"] label[id^="wlspispHipInstructionContainer"] {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #777771 !important;
    padding: 0 10px !important;
}

form.marketingForm .textFormFieldBlock label::after, 
form.marketingForm .twooption_checkbox label::after, 
form.marketingForm .dateTimeFormFieldBlock label::after, 
form.marketingForm .lookupFormFieldBlock label::after, 
form.marketingForm .twoOptionFormFieldBlock label.block-label::after, 
form.marketingForm .twoOptionFormFieldBlock div.twooption_checkbox label::after, 
form.marketingForm .optionSetFormFieldBlock label.block-label::after, 
form.marketingForm .multiOptionSetFormFieldBlock label.block-label::after, 
form.marketingForm .consentBlock label p:first-of-type::after, 
form.marketingForm .eventSession label::after, 
form.marketingForm div[data-editorblocktype="Captcha"] label[id^="wlspispHipInstructionContainer"]::after {
    color: #a11032 !important;
    width: 12px !important;
}

form.marketingForm .optionSetFormFieldBlock select, 
form.marketingForm .textFormFieldBlock input, 
form.marketingForm .dateTimeFormFieldBlock input, 
form.marketingForm .lookupFormFieldBlock input, 
form.marketingForm .marketingForm textarea, 
form.marketingForm div[data-editorblocktype="Captcha"] input {
    border-radius: 10px !important;
    background-color: #fafafa !important;
    border-color: #cacaca !important;
    padding: 10px !important;
    outline: none !important;
}

form.marketingForm .twoOptionFormFieldBlock div.radiobuttons div input, 
form.marketingForm .twoOptionFormFieldBlock div.twooption_checkbox div input, 
form.marketingForm .optionSetFormFieldBlock div.radiobuttons div input, 
form.marketingForm .multiOptionSetFormFieldBlock fieldset>div>input[type="checkbox"], 
form.marketingForm .eventSession>div>input[type="checkbox"], .eventSession>div>input[type="radio"], 
form.marketingForm .consentBlock div input {
    accent-color: #a11032 !important;
    cursor: pointer !important;
}

form.marketingForm .consentBlock {
    padding: 15px 15px 0 !important;
}

form.marketingForm .consentBlock p * {
    font-size: 14px !important;
    color: #474847 !important;
}

form.marketingForm .consentBlock p span a {
    text-decoration: underline !important;
}

form.marketingForm .consentBlock p span a:hover {
    text-decoration: none !important;
}

form.marketingForm .primaryButtonWrapper, 
form.marketingForm .submitButtonWrapper {
    text-align: left !important;
    padding: 0px 15px !important;
}

form.marketingForm .primaryButtonWrapper button, 
form.marketingForm .submitButtonWrapper button {
    background-color: #a11032 !important;
    color: #fff !important;
    border: 1px solid #a11032 !important;
    border-radius: 20px !important;
    padding: 8px 20px 10px !important;
    text-transform: none !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-left: 15px !important;
}

form.marketingForm .primaryButtonWrapper button:hover,
form.marketingForm .submitButtonWrapper button:hover {
    background-color: #fff !important;
    color: #a11032 !important;
    border: 1px solid #a11032 !important;
    box-shadow: none !important;
}

@media (max-width: 767px) {
    form.marketingForm .textFormFieldBlock, 
    form.marketingForm .dateTimeFormFieldBlock, 
    form.marketingForm .twoOptionFormFieldBlock, 
    form.marketingForm .optionSetFormFieldBlock, 
    form.marketingForm .multiOptionSetFormFieldBlock, 
    form.marketingForm .lookupFormFieldBlock {
        width: 100% !important;
    }
}

.soluvet-form label {
    font-size: 12px;
    font-family: inherit;
    font-weight: 700;
    color: #777771;
    padding: 0 10px 5px;
}

.soluvet-form label .required {
    color: #a11032;
    width: 12px;
    margin-left: 3px;
}

.soluvet-form .login-msg.error {
    color: #a11032!important;
    font-weight: 700;
}

.soluvet-form .form-control,
.soluvet-form .form-select {
    font-size: 16px;
}

.soluvet-form .form-select {
    border-radius: 10px !important;
    background-color: #fafafa !important;
    border-color: #cacaca !important;
}

.soluvet-form .form-select:focus {
    box-shadow: none;
    border-color: #cacaca;
}

.soluvet-form .form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-top: 0em;
    margin-left: -2.25em;
    border-color: #777771;
}

.soluvet-form .form-check-input:checked {
    border-color: transparent;
}

.login .col-form .loginForm .admin-alert {
    background-color: white; 
    border: 2px solid var(--primary-color); 
    border-radius: 35px; 
    padding: 20px 35px;
    margin: 0 22px;
}

.login .col-form .loginForm .admin-alert p {
    color: var(--primary-color); 
    font-size: 18px;
    padding: 0;
}

.login .col-form .loginForm .admin-alert .alert-title {
    color: var(--primary-color); 
    font-size: 22px; 
    font-weight: 700;
}

.comment-reply {
    margin-left: 30px; 
    margin-top: 15px; 
    padding: 10px 15px; 
    border-left: 3px solid #85b6d7; 
}

.comment-reply .admin-tag {
    background-color: #e2b027;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    letter-spacing: 1px;
    margin-left: 5px;
    font-weight: bold;
    width: fit-content;
    display: inline-block;
    vertical-align: top;
}

.gln-external-link {
    font-size: 12px;
    padding-left: 10px;
    margin-top: 5px;
    margin-bottom: -15px;
    display: block;
    width: max-content;
    max-width: 100%;
}
.adminedit {
    display: none !important;
}

.btn-login.btn-secondary {
    background-color: var(--bg-color)!important;
    color: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
}

.btn-login.btn-secondary:hover {
    background-color: var(--light-color)!important;
    color: var(--primary-color)!important;
    border: 1px solid var(--primary-color)!important;
}

.token-user-info {
    background: #fff;
    border: 1px solid #ababab;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 2rem;
}