/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-70: clamp(30px, 3.9vw, 70px);
    --font-60: clamp(25px, 3.2vw, 60px);
    --font-48: clamp(24px, 2.5vw, 48px);
    --font-40: clamp(22px, 2.1vw, 40px);
    --font-36: clamp(20px, 2.2vw, 36px);
    --font-32: clamp(19px, 1.7vw, 32px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-24: clamp(16px, 1.3vw, 24px);

    --container-padding: 40px;

    --row-gap: 5px;

    --font-secondary: "Playfair Display", serif;
    --font-tertiary: "Red Hat Display", sans-serif;

    /** SPECIFIC **/
    --color-primary: #DEEEF4;
    --color-blue-light: #BAD2DC;
    --color-secondary: #262626;
    --color-secondary-light: #525858;
    --color-tertiary: #4D606E;
    --color-default: #333;
    --color-border-deafult: rgba(38, 38, 38, 0.1);
}

body {
    color: var(--color-secondary);
    font-family: "Poppins", sans-serif;
}

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: var(--color-secondary);
    transition: all .2s linear;
}

a:hover, a:focus {
    color: var(--color-secondary);
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

.container {
    clear: both;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-small {
    max-width: 1440px;
}

.container-xsmall {
    max-width: 1030px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-facebook {
    -webkit-mask-image: url('../images/icons/social/facebook.svg');
    mask-image: url('../images/icons/social/facebook.svg');
}

.icon-instagram {
    -webkit-mask-image: url('../images/icons/social/instagram.svg');
    mask-image: url('../images/icons/social/instagram.svg');
}

.icon-linkedin {
    -webkit-mask-image: url('../images/icons/social/linkedin.svg');
    mask-image: url('../images/icons/social/linkedin.svg');
}

.icon-twitter,
.icon-x {
    -webkit-mask-image: url('../images/icons/social/twitter.svg');
    mask-image: url('../images/icons/social/twitter.svg');
}

.icon-youtube {
    -webkit-mask-image: url('../images/icons/social/youtube.svg');
    mask-image: url('../images/icons/social/youtube.svg');
}

.icon-pinterest {
    -webkit-mask-image: url('../images/icons/social/pinterest.svg');
    mask-image: url('../images/icons/social/pinterest.svg');
}

.icon-user {
    -webkit-mask-image: url('../images/icons/user.svg');
    mask-image: url('../images/icons/user.svg');
}

.icon-register {
    -webkit-mask-image: url('../images/icons/register.svg');
    mask-image: url('../images/icons/register.svg');
}

.icon-logout {
    -webkit-mask-image: url('../images/icons/logout.svg');
    mask-image: url('../images/icons/logout.svg');
}


/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-tertiary);
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-tertiary);
}


.btn-primary.active {
    background-color: #fff;
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.btn-secondary.active {
    background-color: #fff;
    color: var(--color-secondary);
}

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary-reverse,
.btn-secondary-reverse:hover,
.btn-secondary-reverse:focus,
.btn-secondary-reverse:active,
.btn-secondary-reverse.active,
.btn-secondary-reverse.active:focus,
.btn-secondary-reverse:hover:focus,
.btn-secondary-reverse:hover:active,
.btn-secondary-reverse:focus:active {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.btn-secondary-reverse.active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary-reverse[disabled],
.btn-secondary-reverse[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.active:focus,
.btn-white:hover:focus,
.btn-white:hover:active,
.btn-white:focus:active {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-secondary);
}

.btn-white.active {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-white[disabled],
.btn-white[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-white-reverse,
.btn-white-reverse:hover,
.btn-white-reverse:focus,
.btn-white-reverse:active,
.btn-white-reverse.active,
.btn-white-reverse.active:focus,
.btn-white-reverse:hover:focus,
.btn-white-reverse:hover:active,
.btn-white-reverse:focus:active {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-white-reverse.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-secondary);
}

.btn-white-reverse[disabled],
.btn-white-reverse[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

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


.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: var(--color-default);
    border-color: var(--color-default);
}


.btn-default.active {
    background-color: #fff;
    color: var(--color-default);
}

.btn-default[disabled],
.btn-default[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
        color: #fff;
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-secondary);
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-default);
    }

    .btn-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-secondary);
    }

    .btn-white-reverse:not([disabled]):hover,
    .btn-white-reverse:not([disabled]).active:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-secondary);
    }

    .btn-secondary-reverse:not([disabled]):hover,
    .btn-secondary-reverse:not([disabled]).active:hover {
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
        color: #fff;
    }
}

/**
 * BUTTONS
 */

.btn {
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .2s linear;
}

.btn-lg {
    min-height: 50px;
    border-radius: 25px;
    font-size: 15px;
    padding: 10px var(--space-25);
}

.btn.btn-has-arrow {
    gap: calc(var(--space-50) + var(--space-25));
}

.btn.btn-has-arrow > .icon {
    width: 10px;
    flex-shrink: 0;
}

.btn-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-inner .icon {
    width: 20px;
    flex-shrink: 0;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 15px;
    line-height: 2em;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

/**
 * HEADER
 */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 133px;
}

#content {
    padding-top: 133px;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid var(--color-border-deafult);
}

.header-top {
    border-bottom: 1px solid var(--color-border-deafult);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: all .2s linear;
}

header.sticky .header-bottom-inner,
header.sticky .header-top-inner {
    padding: 8px 0;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: calc(var(--space-50) + 5px);
}

.header-top-link {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .header-top-link:hover {
        text-shadow: 0 0 1px rgba(38, 38, 38, 1);
    }
}

.header-top-link .icon-wrapper {
    width: 17px;
    flex-shrink: 0;
}

.logo {
    width: 208px;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
}

#main-menu {
    align-self: stretch;
}

#main-menu > ul {
    height: 100%;
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 10px);
}

#main-menu > ul > li {
    display: flex;
    align-items: center;
}

#main-menu > ul > li > a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

#main-menu > ul > li.active > a {
    text-shadow: 0 0 1px rgba(38, 38, 38, 1);
}

@media screen and (min-width: 1140px) {
    #main-menu > ul > li > a:hover {
        text-shadow: 0 0 1px rgba(38, 38, 38, 1);
    }
}

.first-home-link {
    width: 17px;
    height: 17px !important;
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    height: 100%;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    padding-top: 20px;
    transition: all .2s linear;
    display: flex;
    flex-direction: column;
}

header.sticky #main-menu li:hover > ul{
    padding-top: 13px;
}

#main-menu li > ul > li {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    overflow: hidden;
}

#main-menu li > ul > li + li {
    border-top: 1px solid #e6e6e6;
}

#main-menu li > ul > li:first-child{
    border-radius: 15px 15px 0 0;
    border-top: 1px solid #e6e6e6;
}

#main-menu li > ul > li:last-child {
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0 0 15px 15px;
}

#main-menu li > ul > li > a {
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
    text-align: center;
    background-color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    max-width: 300px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#main-menu li > ul > li > a:hover {
    background-color: var(--color-primary);
}

.main-menu-button {
    float: right;
    width: 40px;
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: #b2d4ed;
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    position: relative;
    width: 270px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 50px;
    padding: 5px 20px;
    border: 1px solid var(--color-border-deafult);
    border-radius: 25px;
    box-shadow: none;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: var(--color-secondary);
}

.mainsearch input.form-control::placeholder {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: var(--color-secondary);
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: var(--color-secondary);
    background-color: transparent;
    border-radius: 50%;
    transition: all .2s linear;
    padding: 0;
    border: 1px solid transparent;
    margin-left: -50px;
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 1140px) {
    .mainsearch-submit:hover {
        border-color: var(--color-primary);
        background-color: var(--color-primary);
    }
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}

/*
* USER NAV
*/

.header-top .user-nav {
    display: flex;
    align-items: stretch;
}

.header-top .user-nav-item {
    display: flex;
    align-items: stretch;
    position: relative;
}

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #fff;
}

.header-top .user-nav-item + .user-nav-item {
    padding-left: 20px;
    margin-left: 20px;
}

.header-top .user-nav-item + .user-nav-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
}

.header-top .user-nav-item .icon {
    width: 26px;
    height: 26px;
}

/**
 * FOOTER
 */
footer {
}

/* FOOTER BAR */
.footer-bar {
    padding: 15px 0;
    line-height: 1.8571em;
    font-weight: 400;
    background-color: var(--color-secondary-light);
    font-size: 14px;
    color: #fff;
}

.footer-bar-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
}

.footer-bar-right {
    display: flex;
    align-items: center;
}

.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bar-links a {
    text-transform: uppercase;
}

.footer-bar-links {
    margin-left: -5px;
    font-size: 0;
    margin-right: 8px;
}

.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: currentColor;
    margin-right: 10px;
    display: inline-block;
}

.footer-bar-links > li + li:before {
    content: "|";
    color: currentColor;
    margin-right: 16px;
    display: inline-block;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 13px;
    line-height: 2;
    font-weight: 300;
}

.footer-bar-links a:hover {
    text-decoration: underline;
}

.footer-bar-links a {
    color: inherit;
}


.copyright-undicom {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.calculator-form-row .select2-container--default .select2-selection--multiple,
.calculator-form-row .select2-container .select2-selection--single {
    border-radius: 10px;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    /* font-size: 12px; */
}

.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 6px;
    box-shadow: none;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: #e10121;
    border-radius: 0 6px 6px 0;
    background-color: transparent;
    border-color: var(--color-default);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        border-color: #e10121;
        color: #e10121;
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 23px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 19px;
    font-size: 14px;
    padding-right: 44px;
    color: var(--color-secondary);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 8px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 14px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}

/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #000;
}

.breadcrumb > li > a {
    font-size: 14px;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 14px;
    padding: 0 15px;
    color: inherit;
}

@media screen and (min-width: 1140px) {
    .breadcrumb > li > a:hover {
        color: var(--color-tertiary);
    }
}

/**
 * ANIMATABLE ICON
 */

.loader-spin {
    margin: 0 10px;
    font-size: 3px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

.btn .loader-spin {
    margin: 0 14px;
}

@keyframes mulShdSpin {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em,
        2em -2em 0 0em, 3em 0 0 -1em,
        2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
        3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em,
        2em -2em 0 0, 3em 0 0 0.2em,
        2em 2em 0 0, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
        -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
        -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
        -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}


.loader2 {
    width: 48px;
    height: 48px;
    border: 5px solid #e5e5e5;
    border-bottom-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotationLoader2 1s linear infinite;
}

@keyframes rotationLoader2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: #b2d4ed;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.header-top-right .social-list > ul {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-40);
}

.header-top-right .social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 1rem;
}

.header-top-right .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height: 16px;
    color: var(--color-secondary);
    padding: 0;
    border: none;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .header-top-right .social:hover .social-icon {
        color: var(--color-primary);
    }
}

.social-list > ul {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 1rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #fff;
    padding: 15px;
    color: var(--color-secondary);
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .social:hover .social-icon {
        color: #fff;
        background-color: transparent;
    }
}

/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0 15px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

.article-image img {
    max-width: 100%;
}

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 30px;
}


/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/


/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: calc(var(--space-25) + 5px);
    font-size: 0;
}

.gallery-list-item {
    display: block;
    border-radius: 25px;
    overflow: hidden;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

.gallery-picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
}

.gallery-picture-hover .icon-wrapper {
    width: 70px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

@media screen and (min-width: 1140px) {
    .page-list-aside .ui-widget.ui-widget-content {
        -webkit-transform: scaleY(33.3333%);
        -moz-transform: scaleY(33.3333%);
        -ms-transform: scaleY(33.3333%);
        -o-transform: scaleY(33.3333%);
        transform: scaleY(33.3333%);
    }

    .page-list-aside .ui-widget.ui-widget-content:hover,
    .page-list-aside .ui-widget.ui-widget-content:focus,
    .page-list-aside .ui-widget.ui-widget-content:focus-within {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .ui-slider .ui-slider-handle {
        opacity: 0;
        transition: opacity 0.2s;
    }

    .ui-widget.ui-widget-content:hover .ui-slider-handle,
    .ui-widget.ui-widget-content:focus .ui-slider-handle,
    .ui-widget.ui-widget-content:focus-within .ui-slider-handle {
        opacity: 1;
    }
}

.ui-slider .ui-slider-range {
    border-radius: 0;
    background-color: var(--color-primary);
}

.ui-slider .ui-slider-handle {
    border-radius: 0;
    border: none;
    height: 13px;
    width: 13px;
    background-color: var(--color-primary);
}

.ui-slider-horizontal .ui-slider-handle {
    top: -2px;
    left: -7px;
}

.form-range .row + .row {
    margin-top: 15px;
}

.valueFrom .input-label,
.valueFrom .price-suffix,
.valueTo .input-label,
.valueTo .price-suffix {
    display: none;
}

.valueFrom .from,
.valueTo .to {
    height: 36px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Tenor Sans', sans-serif;
    color: var(--color-primary);
}

.valueTo:before {
    content: '-';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 33px;
    line-height: 36px;
}

.form-range {
    background-color: transparent;
    border: none;
}

.ui-widget.ui-widget-content {
    border-radius: 0;
}

.form-range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-range .range-row {
    width: 100%;
}

.form-range .col {
    width: 45%;
    margin-top: 10px;
}

.icon-wrapper,
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img,
.icon-wrapper svg,
.icon img,
.icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}

#container-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page {
    flex-grow: 1;
}

#container-page > footer {
    margin-top: auto;
    width: 100%;
}

.header-bottom-inner {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    justify-content: space-between;
    padding: 15px 0;
    transition: all .2s linear;
}

.header-bottom-right {
    display: flex;
    align-items: center;
    gap: 13px;
}

.only-rwdPanel {
    display: none !important;
}

.rwdPanel .only-rwdPanel {
    display: block !important;
}

.header-bottom-right > .header-store-list {
    display: flex;
    align-items: center;
    gap: 13px;
}

.header-bottom-right > .user-nav .user-nav-item-inner,
.header-bottom-right > .header-store-list > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-border-deafult);
    padding: 16px;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .header-bottom-right > .user-nav .user-nav-item-inner:hover,
    .header-bottom-right > .header-store-list > li > a:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }
}

.text.footer-mid {
    font-size: 14px;
    line-height: 1.8571em;
}

.footer-top {
    position: relative;
    padding-top: calc(var(--space-60) + 10px);
}

.footer-top-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.footer-top-bg img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-top-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    gap: var(--space-40);
    padding-bottom: calc(var(--space-60) + 10px);
}

.footer-col.footer-col-logo {
    max-width: 300px;
    width: 100%;
}

.footer-col.footer-col-logo img {
    display: block;
    max-width: 100%;
}

.footer-col-title {
    font-size: var(--font-32);
    font-family: var(--font-secondary);
    line-height: 1.1;
    font-style: italic;
    color: #fff;
}

.footer-col-content {
    padding-top: var(--space-25);
}

.footer-col-content > ul > li > a {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 2em;
}

@media screen and (min-width: 1140px) {
    .footer-col-content > ul > li > a:hover {
        text-shadow: 1px 1px 1px #fff;
    }
}

.footer-col-content > ul > li.active > a {
    text-shadow: 1px 1px 1px #fff;
}

.footer-pad-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-pad-list .icon-wrapper {
    width: 122px;
    height: 54px;
    border-radius: 25px;
    background-color: #fff;
    padding: 10px;
}

.footer-pad {
    padding: calc(var(--space-25) + 10px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-col-content > .text {
    max-width: 260px;
    color: #fff;
}

.footer-col-content > .text:first-child:not(:last-child) {
    margin-bottom: var(--space-50);
}

.footer-col-content > .social-list:not(:last-child) {
    margin-bottom: var(--space-60);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    font-size: var(--font-24);
    color: #fff;
    font-weight: 300;
}

.footer-contact-link + .footer-contact-link {
    margin-top: 10px;
}

.footer-contact-link .icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--color-secondary);
    border-radius: 50%;
    padding: 15px;
}

@media screen and (min-width: 1140px) {
    .footer-contact-link:hover {
        color: #fff;
        text-decoration: underline;
    }
}

.newsletter-box {
    margin: calc(2 * var(--space-50)) 0;
}

.newsletter-box-inner {
    background-color: var(--color-tertiary);
    border-radius: 25px;
    padding: calc(var(--space-60) + var(--space-25)) calc(2 * var(--space-60));
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: calc(2 * var(--space-60) + var(--space-40));
    align-items: center;
    color: #fff;
}

.newsletter-box-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.newsletter-box-title {
    font-size: var(--font-70);
    font-family: var(--font-secondary);
    font-style: italic;
    line-height: 1.1428em;
}

.newsletter-input-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.newsletter-input-row > .form-group {
    flex-grow: 1;
}

.newsletter-input-row > .form-group .form-control {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    padding: 5px 30px;
    border-radius: 25px;
    background-color: transparent;
    height: 50px;
}

.newsletter-input-row > .form-group .form-control::placeholder {
    color: #fff;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.page-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-40);
    margin-bottom: var(--space-60);
}

.page-heading > .text {
    max-width: 1070px;
    font-size: var(--font-24);
    text-transform: uppercase;
    font-weight: 300;
    line-height: normal;
    text-align: center;
}

.page-title {
    font-size: var(--font-70);
    font-weight: 200;
    line-height: 1.1428em;
    text-align: center;
    color: var(--color-secondary-light);
}

.page-title em {
    font-family: var(--font-secondary);
    font-style: italic;
}

.text h2 {
    font-size: var(--font-24);
    font-weight: 300;
}

* + .gallery {
    margin-top: calc(var(--space-60) + 10px);
}

.relative {
    position: relative;
}

.mt-70 {
    margin-top: calc(var(--space-60) + 10px)
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: calc(-1 * (var(--space-25) + 10px)) -15px;
}

.news-item {
    width: 33.3333%;
    height: unset;
    padding: calc(var(--space-25) + 10px) 15px;
}

.news-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-50);
}

.news-item-image {
    width: 100%;
}

.news-item-image img {
    display: block;
    width: 100%;
    object-fit: contain;
    border-radius: 25px;
}

.news-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-40);
    padding: 0 var(--space-50);
}

.news-item-content .text {
    flex-grow: 1;
    text-align: center;
}

.news-item-name {
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
}

.news-filter-form {
    margin-bottom: var(--space-60);
    display: flex;
    justify-content: center;
}

.news-filter-form > .filters-form {
    max-width: 662px;
    width: 100%;
}

.news-filter-form-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.news-filter-form-row .form-control {
    border-color: #262626;
    height: 50px;
    border-radius: 25px;
    font-size: 15px;
    color: var(--color-secondary);
    font-family: "Poppins", sans-serif;
    padding-left: calc(var(--space-25) + 3px);
}

.news-filter-form-row .form-control::placeholder {
    font-size: 15px;
    color: var(--color-secondary);
    font-family: "Poppins", sans-serif;
}

.news-filter-form-row .form-group {
    flex-grow: 1;
}

.news-filter-form-submit {
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
    border-radius: 50%;
    margin-left: -50px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #000;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .news-filter-form-submit:hover {
        color: #fff;
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}

.glyphicon {
    display: none !important;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--space-50) + var(--space-25));
}

.about-top-image-inner img {
    display: block;
    max-width: 100%;
}

.about-top-section {
    margin-bottom: calc(var(--space-60) + 7px);
}

.text.font-light {
    font-weight: 300;
}

.about-top-logo {
    display: block;
    width: 354px;
    margin-left: calc(-1 * (var(--space-50) + var(--space-25)));
    transform: translateX(-110px);
    margin-bottom: var(--space-50);
    padding-bottom: var(--space-50);
}

.about-top-image-inner {
    position: relative;
    z-index: 2;
}

.about-top-logo:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100vw - (2 * var(--container-padding)));
    max-width: calc(1720px - (2 * var(--container-padding)));
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 2;
    pointer-events: none;
}

.about-top-logo img {
    display: block;
    max-width: 100%;
}

.page-title.page-title-white {
    color: #fff;
}

.about-icons-sections {
    position: relative;
    padding: calc(2 * var(--space-50) - 10px) 0;
}

.about-icons-sections .page-title {
    margin-bottom: var(--space-60);
}

.about-icons-section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about-icons-section-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about-icons-section-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
}

.about-icons-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-40);
}

.about-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
}

.about-icon-item > .icon-wrapper {
    width: 100%;
    height: 100%;
}

.about-icon-item > .icon-wrapper img {
    width: 100%;
    height: 100%;
    max-width: unset;
    max-height: unset;
    object-fit: cover;
}

.about-icon-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: var(--space-60);
}

.about-icon-item-inner .caption {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
}

.about-top-text .page-title {
    text-align: left;
}

.about-text-image-item {
    display: flex;
    gap: calc(2 * var(--space-50));
}

.about-text-image-item:nth-of-type(even) .about-text-image-item-image {
    order: 1;
}

.about-text-image-item-image {
    position: relative;
    width: 50%;
    flex-shrink: 0;
}

.about-text-image-item-image-logo {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: calc(2 * var(--space-40));
    transform: translateY(-50%);
    width: 161px;
}

.about-text-image-item:nth-of-type(even) .about-text-image-item-image-logo {
    left: unset;
    right: calc(2 * var(--space-40));
}

.about-text-image-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.about-texts-images-section {
    margin: calc(2 * var(--space-50)) 0;
}

.about-text-image-item-text-inner > h2:first-child {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-text-image-item-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-50) 0;
}

.about-text-image-item-text-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 582px;
}

.section-heading {
    margin-bottom: var(--space-60);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--space-25) + 10px);
}

.section-heading > .text {
    max-width: 1060px;
    text-align: center;
    text-transform: uppercase;
    font-size: var(--font-24);
    font-weight: 300;
    line-height: 1.5em;
}

.section-heading-top:has(.arrows) {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-40);
    align-items: center;
}

.section-heading-top:has(.arrows):before {
    content: '';
}

.section-heading-top:has(.arrows) .arrows {
    justify-content: flex-end;
}

.arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.btn-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    background-color: transparent;
    pointer-events: initial;
    transition: all .2s linear;
}

.btn-arrow .icon {
    width: 11px;
}

.btn-arrow .icon svg {
    width: 100%;
    object-fit: contain;
}

@media screen and (min-width: 1140px) {
    .btn-arrow:hover {
        background-color: var(--color-secondary);
        color: #fff;
    }
}

.metamorphosis-section {
    padding: calc(2 * var(--space-50)) 0;
    background-color: #F9F8F6;
}

.metamorphosis-slider {
    width: calc(100% + var(--space-25));
    margin: calc(var(--space-25) / -2);
}

.metamorphosis-item {
    width: 33.3333%;
    padding: calc(var(--space-25) / 2);
    display: flex;
    flex-direction: column;
    gap: var(--space-60);
}

.metamorphosis-item-images {
    position: relative;
    width: 100%;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 530 / 380;
}

.metamorphosis-item-image {
    display: block;
}

.metamorphosis-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.metamorphosis-item-weight {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-24);
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 14px;
    background-color: var(--color-primary);
    border-radius: 25px;
}

.metamorphosis-item-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--space-25) - 3px);
    padding: 0 var(--space-25);
    text-align: center;
}

.metamorphosis-item-title {
    font-size: var(--font-24);
    line-height: 1.5;
    font-weight: 300;
}

.team-section {
    margin: calc(2 * var(--space-50)) 0;
}

.team-slider {
    width: calc(100% + var(--space-40));
    margin: calc(var(--space-40) / -2);
}

.team-item {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--space-40) / 2);
    text-align: center;
}

.team-item .icon-wrapper {
    width: 100%;
    margin-bottom: calc(var(--space-25) + 8px);
}

.team-item .icon-wrapper img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    object-fit: cover;
}

.team-item-name {
    font-size: var(--font-24);
    line-height: 1.5;
    font-weight: 300;
}

.team-item > .text {
    margin-top: calc(var(--space-25) - 3px);
}

.social-section {
    padding-bottom: calc(2 * var(--space-40) + 10px);
    margin: calc(2 * var(--space-60)) 0;
}

.social-section-inner {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--space-60) + 10px);
    padding: calc(2 * var(--space-60)) calc(2 * var(--space-60) - 8px);
    background-color: var(--color-primary);
    border-radius: 25px;
}

.social-section-left {
    max-width: 450px;
    width: 100%;
    flex-shrink: 0;
}

.social-section-left .page-title {
    text-align: left;
    margin-bottom: 10px;
}

.social-section-left .social-list:not(:first-child) {
    margin-top: calc(var(--space-25) + 5px);
}

.social-section-right {
    flex-grow: 1;
    margin: calc(-2 * var(--space-60) - (2 * var(--space-40) + 10px)) 0;
    justify-content: flex-start;
}

.about-top-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-top-image-deco {
    position: absolute;
    display: block;
    width: calc(50% - (var(--space-40) + 5px));
}

.about-top-image-deco-1 {
    left: 0;
    top: 0;
    z-index: -1;
}

.about-top-image-deco-2 {
    right: 0;
    top: 0;
    z-index: -1;
}

.about-top-image-deco-3 {
    left: 0;
    bottom: var(--space-60);
    z-index: 3;
}

.about-top-image-deco-4 {
    right: 0;
    bottom: var(--space-60);
    z-index: -1;
}

.about-top-image-deco img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.page-heading.mb-40 {
    margin-bottom: var(--space-40);
}

.news-description-images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--space-25) + 7px);
}

.news-description-images img {
    display: block;
    max-width: 100%;
    border-radius: 25px;
}

.news-description-video:not(:first-child),
.news-description-images:not(:first-child) {
    margin-top: var(--space-50);
}

.news-description-video:not(:last-child),
.news-description-images:not(:last-child) {
    margin-bottom: var(--space-50);
}

.my-70 {
    margin-top: calc(var(--space-60) + 10px);
    margin-bottom: calc(var(--space-60) + 10px);
}

.news-description-video-inner {
    display: block;
}

.news-description-video-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.news-description-video-placeholder img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-description-video-placeholder:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
}

.news-description-video-placeholder .icon {
    width: 70px;
    height: 70px;
    border: 1px solid #fff;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border-radius: 50%;
    transition: all .2s linear;
}

.news-description-video > iframe,
.news-description-video > video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

@media screen and (min-width: 1140px) {
    .news-description-video-placeholder .icon:hover {
        color: var(--color-secondary);
        background-color: #fff;
    }
}

.main-news-section {
    margin: calc(2 * var(--space-50)) 0;
}

.news-section {
    padding: calc(2 * var(--space-50)) 0;
    background-color: #F9F8F6;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--container-padding);
    margin: var(--space-60) 0;
    max-width: 100%;
    width: 100%;
}

.container .pagination-wrapper {
    padding: 0;
}

.pagination-wrapper > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 620px;
}

.pagination-wrapper > ul > li.prev {
    margin-right: auto;
}

.pagination-wrapper > ul > li.next {
    margin-left: auto;
}

.pagination-wrapper ul li.next a,
.pagination-wrapper ul li.prev a {
    display: flex;
}

.pagination-wrapper ul li.next a span,
.pagination-wrapper ul li.prev a span {
    padding: 0;
}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    font-size: 15px;
}

.pagination-wrapper ul li.active a {
    font-weight: 700;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        text-decoration: underline;
    }
}


.news-slider {
    width: calc(100% + 30px);
    margin: calc(-1 * (var(--space-25) + 10px)) -15px;
}

.news-author {
    width: 100%;
    max-width: 1080px;
    margin: calc(var(--space-60) + 10px) auto;
    padding: calc(var(--space-40) + 5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: calc(var(--space-50) + var(--space-25));
}

.news-author-image {
    width: 162px;
    height: 162px;
    flex-shrink: 0;
}

.news-author-image img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.news-author-content {
    max-width: 525px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-author-title {
    font-size: 14px;
    line-height: 1.05;
    color: #fff;
    background-color: var(--color-secondary);
    border-radius: 5px;
    padding: 3px 5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.news-author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.news-author-content .text {
    font-size: 14px;
}

.news-author:last-child {
    margin-bottom: 0;
}

.faq-list {
    padding-bottom: 1px;
}

.faq-item {
    position: relative;
    padding: 0;
    transition: background-color .2s linear, border-radius .2s linear;
}

.faq-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -1px;
    border: 1px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.1);
    z-index: 2;
    pointer-events: none;
    transition: all .2s linear;
}

.faq-item.active + .faq-item:before {
    border-top-color: transparent;
}

.faq-item.active:before {
    border-radius: 25px;
    border-color: #000 !important;
}

.faq-item:last-child:before {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.faq-item-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
    padding: calc(var(--space-25) + 8px) calc(var(--space-40) + 5px);
    cursor: pointer;
    font-size: 18px;
}

.faq-item-title {
    font-size: 18px;
    line-height: 1.5;
}

.faq-item-heading .icon {
    width: 47px;
    height: 47px;
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
    transition: all .2s linear;
    flex-shrink: 0;
}

.faq-item-heading:hover .icon {
    color: #fff;
    background-color: var(--color-secondary);
}

.faq-item.active .faq-item-heading .icon {
    transform: rotate(180deg);
}

.faq-item-content {
    display: none;
    padding: 0 calc(var(--space-40) + 5px) calc(var(--space-40) + 5px) calc(var(--space-40) + 5px);
}

.mt-100 {
    margin-top: calc(2 * var(--space-50));
}

@media screen and (min-width: 1140px) {
    .footer-col-heading > .icon-wrapper {
        display: none;
    }
}

.main-slider-item {
    width: 100%;
    height: unset;
    position: relative;
    padding: calc(2 * var(--space-60)) 0;
}

.main-slider-item-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.main-slider-item-bg img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider-item-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
}

.main-slider-item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-25);
    max-width: 700px;
}

.main-slider-item-inner .page-title {
    text-align: left;
}

.main-slider-item-inner .text {
    font-size: var(--font-24);
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.5em;
}

.main-slider-item-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.main-slider-item-logo {
    width: 125px;
}

.main-slider-pagination {
    display: flex;
    justify-content: flex-end;
    align-self: center;
    gap: 10px;
    pointer-events: initial;
}

.main-slider-pagination-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    font-size: 15px;
    text-align: center;
}

.main-slider-section {
    position: relative;
}

.main-slider-logo-pagination-wrapper {
    position: absolute;
    top: calc(2 * var(--space-60));
    bottom: calc(2 * var(--space-60));
    right: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.main-slider-logo-pagination {
    height: 100%;
    width: fit-content;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: calc(var(--space-60) + 7px);
}

.main-slider-logo-pagination .icon-wrapper {
    width: 300px;
}

.main-slider-logo-pagination-wrapper > .container {
    height: 100%;
}

.main-slider-pagination-btn.active {
    border-color: var(--color-blue-light);
    color: var(--color-blue-light);
}

@media screen and (min-width: 1140px) {
    .main-slider-pagination-btn:hover {
        border-color: var(--color-blue-light);
        color: var(--color-blue-light);
    }
}

.consultation-section {
    margin: calc(2 * var(--space-50)) 0;
}

.consultation-section-inner {
    display: flex;
    gap: calc(3 * var(--space-60));
}

.consultation-left {
    width: calc(50% - 3 * var(--space-60));
    display: block;
}

.consultation-left img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.consultation-right {
    width: calc(50% + 20px + 50px);
    padding: 25px;
    margin: -35px;
}

.consultation-right .shop-product-box {
    width: 50%;
}

.subscription-section {
    padding-top: calc(2 * var(--space-50));
    padding-bottom: var(--space-60);
    background-color: #F9F8F6;
}

.subscription-section-inner {
    display: flex;
    align-items: center;
    gap: var(--space-50);
    margin-bottom: var(--space-60);
}

.subscription-section-image {
    width: 30%;
    margin-right: min(calc(((1720px - 2 * var(--container-padding) - 100vw) / 2)), calc(-1 * var(--container-padding)));
}

.subscription-section-image img {
    display: block;
    max-width: 100%;
}

.subscription-section-slider {
    width: calc(70% - var(--space-50) + 20px + 50px + (max(calc(((1720px - 2 * var(--container-padding) - 100vw) / -2)), var(--container-padding))));
    padding: 25px;
    margin: -35px;
}

.subscription-section-slider .shop-product-box {
    width: 33.3333%;
    height: 100%;
}

.subscription-section-bottom-inner {
    padding-top: var(--space-60);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
    align-items: center;
    gap: var(--space-60);
}

.subscription-bottom-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.subscription-bottom-item + .subscription-bottom-item {
    padding-left: var(--space-60);
}

.subscription-bottom-item + .subscription-bottom-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 37px;
    background-color: rgba(0, 0, 0, 0.1);
}

.subscription-bottom-item .icon-wrapper {
    width: 32px;
    flex-shrink: 0;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
}

.product-list,
.product-list-slider {
    width: calc(100% + 20px + 50px);
    padding: 25px;
    margin: -35px;
}

.discount-group-section {
    margin: calc(2 * var(--space-50)) 0;
}

.discount-group-section.has-bg {
    position: relative;
    margin: 0;
    padding: calc(2 * var(--space-50)) 0;
}

.discount-group-section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.discount-group-section-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.discount-group-section-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
}

.shop-product-box {
    padding: 10px;
    width: 25%;
    height: unset;
    display: inline-block;
    vertical-align: top;
}

.product-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 25px;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .product-container:hover {
        border-color: var(--color-secondary);
    }
}

.product-box-image {
    width: 100%;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.product-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--space-50);
}

.shop-product-box.shop-product-box-service .product-box-content,
.shop-product-box.shop-product-box-subscription .product-box-content {
    padding: 0 0 var(--space-40) 0;
    gap: 0;
}

.shop-product-box.shop-product-box-service .product-box-content {
    height: 100%;
}

.product-box-subscription-title {
    font-size: 20px;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-tertiary);
    text-transform: uppercase;
}

.product-box-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3333em;
}

.product-box-availability,
.product-box-price .price:not(.price-old) {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.product-box-content > .btn,
.shop-add-to-basket {
    margin-top: 7px;
}


.product-box-content > .btn,
.shop-add-to-basket .btn {
    gap: calc(var(--space-25) + 6px);
}

.product-box-content > .btn .btn-inner,
.shop-add-to-basket .btn .btn-inner {
    gap: 15px;
}

.product-box-content > .btn .btn-inner .icon,
.shop-add-to-basket .btn .btn-inner .icon {
    width: 12px;
}

.product-box-content .price-gross {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-box-content .price-gross .price.price-old {
    order: -1;
    font-size: 15px;
    font-family: var(--font-tertiary);
    font-weight: 400;
}

.product-box-content .price-gross .price.price-new {
    font-family: var(--font-tertiary);
}

section.has-bg .page-title {
    color: #fff;
}

section.has-bg .btn-arrow:not(:hover) {
    border-color: #fff;
    color: #fff;
}

.mainpage .about-top-section {
    margin-top: var(--space-60);
    margin-bottom: calc(var(--space-25) + 5px);
}

.about-text-image-item-text-inner > .btn {
    align-self: flex-end;
}

.about-text-image-item:nth-of-type(even) .about-text-image-item-text {
    align-items: flex-end;
}

#content > section:last-child {
    margin-bottom: 0;
}

.categories-btn-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-category + section {
    margin-top: var(--space-60);
}

.product-view-price {
    margin-bottom: calc(var(--space-25) + 5px);
}

.basket-form-inner {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: calc(var(--space-40) + 5px);
    background-color: rgba(38, 38, 38, 0.05);
    border-radius: 25px;
}

.product-view-row {
    display: flex;
    gap: calc(2 * var(--space-50));
}

.product-view-row:not(:last-child) {
    padding-bottom: calc(var(--space-60) + 10px);
    margin-bottom: calc(var(--space-60) + 10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-view-photos {
    position: relative;
    width: calc(50% - var(--space-50));
}

.product-view-photos .btn-favorite {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 2;
}

.product-view-row-content {
    width: calc(50% - var(--space-50));
}

.product-view-title {
    font-family: var(--font-secondary);
    font-size: var(--font-48);
    font-style: italic;
    margin-bottom: var(--space-40);
}

.shop-product-view .item-rating-container {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    margin-bottom: var(--space-25);
}

.product-view-price .price:not(.price-old) {
    font-size: var(--font-36);
    font-family: var(--font-tertiary);
    font-weight: 700;
}

.product-view-price .price-gross {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.product-view-price .price.price-old {
    font-size: var(--font-24);
    margin-bottom: 4px;
}

.basket-form-inner .input-counter {
    padding: 0;
}

.basket-form-inner .shop-quantity-box .qty-down,
.basket-form-inner .shop-quantity-box .qty-up {
    top: 0;
}

.basket-form-inner .shop-quantity-box .qty-down {
    border-bottom-left-radius: 23px;
    border-top-left-radius: 23px;
}

.basket-form-inner .shop-quantity-box .qty-up {
    border-bottom-right-radius: 23px;
    border-top-right-radius: 23px;
}

.basket-form-inner .shop-quantity-box input.input-qty {
    border-radius: 23px;
}

.basket-form-inner > .btn {
    gap: 15px;
    min-height: 46px;
    border-radius: 23px;
    padding: 10px calc(var(--space-25) - 5px);
}

.basket-form-inner .form-element-name {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.basket-view-quantity,
.product-view-basket-select {
    width: 175px;
}

.product-view-row-content .shop-product-history-price-before-discount {
    font-size: 13px;
    color: var(--color-secondary);
    margin: 0;
    letter-spacing: unset;
    margin-bottom: 10px;
}

.product-view-availability {
    font-size: 15px;
    margin-top: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-secondary);
}

.product-view-icons {
    margin-top: var(--space-50);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-25);
}

.product-view-icon-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-view-icon-item .icon-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: var(--color-primary);
    padding: 12px;
    border-radius: 50%;
}

.product-view-icon-item .text {
    font-size: 14px;
    line-height: 1.4285em;
}

.product-view-description-title {
    font-size: var(--font-32);
    font-family: var(--font-secondary);
    font-style: italic;
    margin-bottom: var(--space-25);
}

.product-view-sections-wrapper > section:first-child {
    margin-top: 0;
}

.product-view-images {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-25);
}

.product-view-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(38, 38, 38, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .product-view-image:hover {
        border-color: var(--color-tertiary);
    }
}

.product-view-sections-wrapper {
    margin-top: calc(var(--space-60) + 10px);
}

.video-section {
    margin: calc(var(--space-60) + 10px) 0;
}

.text-image-section {
    position: relative;
    margin: calc(2 * var(--space-40)) 0;
}

.text-image-section-inner {
    display: flex;
    gap: calc(2 * var(--space-40));
}

.text-image-section-text {
    flex-grow: 1;
}

.shop-product-box.shop-product-box-subscription {
    height: 100%;
}

.text-image-section-image {
    width: calc(50% - var(--space-40));
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.text-image-section-image-inner {
    position: absolute;
}

.text-image-section-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.comment-section {
    position: relative;
    padding: calc(2 * var(--space-50)) 0 var(--space-40) 0;
}

.comment-section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.comment-section-bg img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.comment-section-bg:before {
    content: '';
    position: absolute;
    z-index: 2;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.comment-section .section-heading {
    align-items: flex-start;
    margin-bottom: var(--space-50);
}

.comment-section .section-heading .page-title {
    text-align: left;
}

.add-opinion-title {
    width: calc(100% + 48px);
    margin: -24px -24px 24px -24px;
    padding: 14px 24px;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    text-align: center;
    font-size: var(--font-24);
    text-transform: uppercase;
    font-family: var(--font-secondary);
    font-style: italic;
}

.fancybox-close-small:after {
    color: var(--color-secondary);
}

.fancybox-close-small:hover:after {
    color: var(--color-secondary);
    background: #eee;
}

.add-opinion-subtitle {
    font-style: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .add-opinion-container .captcha-container .col-sm-4 {
        width: 50%;
    }
}

.comment-section-logo {
    width: 300px;
    flex-shrink: 0;
}


.comment-section-inner {
    display: flex;
    justify-content: space-between;
    gap: var(--space-60);
}

.comment-section-content {
    width: 65%;
    max-width: 1045px;
}

.opinion-list {
    width: calc(100% + var(--space-40));
    margin: calc(-0.5 * var(--space-40));
}

.rating-summary-stars {
    display: flex;
    align-items: center;
    gap: 11px;
}

.rating-summary-stars .icon-wrapper {
    width: 17px;
}

.rating-summary-count {
    font-size: 15px;
    font-weight: 400;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    flex-wrap: wrap;
}

.rating-summary-nr {
    font-size: 15px;
    font-weight: 700;
}

.product-view-row-content .rating-summary {
    margin-bottom: var(--space-25);
}

.opinion-item {
    padding: calc(var(--space-40) / 2);
}

.opinion-item-inner {
    width: 100%;
    height: 100%;
    padding: var(--space-40);
    border: 1px solid #fff;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.2);
}

.opinion-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.opinion-heading-stars {
    display: flex;
    align-items: center;
    gap: 11px;
}

.opinion-heading-stars .icon-wrapper {
    width: 17px;
}

.opinion-heading-stars .icon-wrapper.star-full {
    filter: brightness(0) invert(1);
}

.opinion-heading-inner-bottom {
    display: flex;
    align-items: center;
    gap: var(--space-25);
    flex-wrap: wrap;
}

.opinion-date {
    font-size: 15px;
    color: #fff;
}

.opinion-text {
    margin-top: var(--space-25);
}

.opinion-text .text {
    color: #fff;
    font-family: var(--font-tertiary);
}

.comment-section-bottom-pagination:empty {
    display: none;
}

.btn-opinion-more {
    display: inline;
    padding: 0;
    background-color: transparent;
    color: inherit !important;
    font-size: inherit;
    font-family: inherit;
    font-weight: 700;
    text-transform: lowercase;
}

.btn-opinion-more:hover {
    text-decoration: underline;
}

.comment-section-bottom {
    display: flex;
    align-items: center;
    gap: var(--space-50);
    flex-wrap: wrap;
}

.swiper-pagination-bullet {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: transparent;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all .2s linear;
    cursor: pointer;
    opacity: 1 !important;
    margin: 0 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #fff;
    color: var(--color-secondary);
}

@media screen and (min-width: 1140px) {
    .swiper-pagination-bullet:hover {
        background-color: #fff;
        border-color: #fff;
        color: var(--color-secondary);
    }
}

.comment-section-bottom-pagination {
    width: fit-content !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opinion-chunk-item {
    height: unset;
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.fancybox-slide .opinion-item {
    width: 100%;
    padding: 0;
    background-color: transparent;
    max-width: min(750px, calc(100% - (2 * var(--container-padding))));
}

.product-box-subscription-params {
    width: 100%;
}

.opinion-item .fancybox-close-small {
    top: 6px;
    right: 6px;
}

.opinion-item .fancybox-close-small:not(:hover):after {
    color: #fff;
}

.product-box-subscription-param-item {
    width: 100%;
}

.product-box-subscription-param-item-heading {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 5px);
    padding: 9px calc(var(--space-25) + 5px);
    transition: all .2s linear;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--color-tertiary);
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-tertiary);
}

@media screen and (min-width: 1140px) {
    .product-box-subscription-param-item-heading:hover {
        color: var(--color-blue-light);
    }
}

.product-box-subscription-param-item-content.text ul > li::before {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("../images/icons/list-check.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: -12px;
    margin-left: -12px;
}

.product-box-subscription-param-item-heading > * {
    pointer-events: none;
}

.product-box-subscription-param-item-heading .icon:last-child {
    transition: transform .2s linear;
}

.active .product-box-subscription-param-item-heading .icon:last-child {
    transform: scaleY(-1);
}

.product-box-subscription-param-item-heading .icon:first-child {
    width: 30px;
    flex-shrink: 0;
}

.product-box-subscription-param-item-heading .icon:last-child {
    width: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.product-box-subscription-param-item-content.text {
    padding: 15px calc(var(--space-25) + 5px);
    font-size: 14px;
}

.product-box-subscription-param-item + .product-box-subscription-param-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-box-subscription-param-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shop-product-box-service .product-box-price,
.shop-product-box-subscription .product-box-price,
.shop-product-box-service .price-box,
.shop-product-box-subscription .price-box,
.shop-product-box-service .product-box-content .price-gross,
.shop-product-box-subscription .product-box-content .price-gross {
    width: 100%;
}

.shop-product-box-service .product-box-price {
    margin-top: auto;
    padding: var(--space-25) calc(var(--space-25) + 5px) 0 calc(var(--space-25) + 5px);
}

.shop-product-box-subscription .product-box-price {
    margin-top: auto;
    padding: 15px calc(var(--space-25) + 5px);
}

.shop-product-box-service .product-box-content .price-gross {
    justify-content: center;
    gap: 10px;
    align-items: flex-end;
}

.shop-product-box-subscription .product-box-content .price-gross {
    justify-content: space-between;
    gap: 10px;
    align-items: flex-end;
}

.shop-product-box-service .product-box-content .price-gross .price:not(.price-old),
.shop-product-box-subscription .product-box-content .price-gross .price:not(.price-old) {
    font-size: var(--font-40);
    font-family: var(--font-tertiary);
    color: var(--color-tertiary);
}

.shop-product-box-service .product-box-content .price-gross .caption,
.shop-product-box-subscription .product-box-content .price-gross .caption {
    font-size: 14px;
    margin-bottom: 5px;
}

.subscription-filter-form .row > .col-xs-12 > label {
    padding: 0;
}

.subscription-filter-form .row > .col-xs-12 > label > .iradio_minimal-custom {
    display: none;
}

.subscription-filter-form .row > .col-xs-12 > label > .form-element-option-text {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-secondary);
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    min-height: 50px;
    border-radius: 25px;
    padding: 8px 20px 8px 10px;
    transition: all .2s linear;
    cursor: pointer;
}

@media screen and (min-width: 1140px) {
    .subscription-filter-form .row > .col-xs-12 > label > .form-element-option-text:hover {
        border-color: var(--color-blue-light);
        color: var(--color-blue-light);
    }
}

.subscription-filter-form .row > .col-xs-12 > label > input {
    display: none;
}

.subscription-filter-form .row > .col-xs-12 > label > .checked + .form-element-option-text {
    border-color: var(--color-blue-light);
    color: var(--color-blue-light);
}

.subscription-filter-form .row > .col-xs-12 > label > .form-element-option-text .icon:first-child {
    width: 30px;
    flex-shrink: 0;
}

.subscription-filter-form .row > .col-xs-12 > label > .form-element-option-text .icon:last-child {
    width: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.subscription-filter-form .row {
    width: 100%;
    --row-gap: 7px;
    row-gap: calc(2 * var(--row-gap));
    justify-content: center;
}

.subscription-filter-form .row > .col-xs-12 {
    width: unset;
}

.subscription-filter-form.form {
    width: 100%;
}

.subscription-filter-form.form .checkboxradio-container {
    padding-right: 0;
}

.arrows:has(.swiper-button-lock) {
    display: none;
}

.product-box-content-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(var(--space-25) + 4px);
    padding-bottom: var(--space-25);
    padding-right: 50px;
    padding-left: 50px;
    width: 100%;
    background-color: #F3F8FA;
    color: var(--color-tertiary);
}

.product-box-service-list-item {
    padding: 10px var(--space-25);
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) - 5px);
    min-height: 50px;
    font-size: 15px;
}

.product-box-service-list-item + .product-box-service-list-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-box-service-list-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-box-service-list-item .icon-wrapper {
    width: 21px;
    flex-shrink: 0;
}

.comment-section-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.calculator-section {
    position: relative;
    padding: calc(2 * var(--space-50)) 0;
}

.calculator-section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.calculator-section-bg img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calculator-section-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4);
}

.calculator-form-row {
    --row-gap: 7px;
    row-gap: calc(var(--space-25) - 5px);
}

/*.calculator-form-row > .col-xs-12:nth-last-child(-n+2) {*/
/*    width: 100%;*/
/*}*/

.calculator-form-row .form-element-name {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5333em;
    margin-bottom: 11px;
}

.product-slider-section {
    padding: calc(1.2 * var(--space-50)) 0;
    background-color: #F9F8F6;
}

.faq-section {
    margin: calc(2 * var(--space-50)) 0;
}

.faq-section.has-bg {
    margin: 0;
    padding: calc(2 * var(--space-50)) 0;
    position: relative;
}

.faq-section-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.faq-section-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.faq-section-bg:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-section.has-bg .faq-item:before {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.faq-section.has-bg .faq-item.active + .faq-item:before {
    border-top-color: transparent;
}

.faq-section.has-bg .faq-item:last-child:before {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.faq-section.has-bg .faq-item.active:before {
    border-color: #fff !important;
}

.faq-section.has-bg .faq-item:not(.active) .faq-item-heading {
    color: #fff;
}

.faq-section.has-bg .faq-item:not(.active) .faq-item-heading:not(:hover) .icon {
    border-color: #fff;
    color: #fff;
}

.faq-section.has-bg .faq-item:not(.active) .faq-item-heading:hover .icon {
    border-color: #fff;
    background-color: #fff;
    color: var(--color-secondary);
}

.faq-section.has-bg .faq-item.active {
    background-color: #fff;
    border-radius: 25px;
}

.faq-section.has-bg .faq-item .faq-item-content .text {
    transition: color .2s linear;
}

.faq-section.has-bg .faq-item:not(.active) .faq-item-content .text {
    color: #fff;
}

.text-section {
    margin: calc(2 * var(--space-50)) 0;
}

.social-section-left .page-title {
    font-style: italic;
    font-family: var(--font-secondary);
}

.product-labels {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    pointer-events: none;
}

.product-labels .product-label {
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 15px;
    font-family: var(--font-tertiary);
    padding: 13px 5px;
    text-transform: uppercase;
    border-radius: 17px;
}

@media screen and (min-width: 1140px) {
    .first-home-link > a:hover {
        color: var(--color-blue-light);
    }
}

.first-home-link.active > a {
    color: var(--color-blue-light);
}

.consultation-section .section-heading > .text {
    max-width: 1200px;
}

.shop-product-box-service .product-container,
.shop-product-box-subscription .product-container {
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
}


.shop-product-box-service,
.shop-product-box-subscription {
    transition: all .2s linear;
}


.shop-product-box-service.swiper-slide:not(.swiper-slide-visible),
.shop-product-box-subscription.swiper-slide:not(.swiper-slide-visible) {
    opacity: 0;
    pointer-events: none;
}

.price-box.has-discount {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-box.has-discount .history-price {
    width: 12px;
}

.comment-section-bottom-pagination {
    display: flex;
    flex-wrap: wrap;
}


.form#newsletter-form .alert-block .error {
    color: #f55653 !important;
}

.modal-header .close {
    transition: all .2s linear;
}

.modal .controls.captcha-container > .row > .col-sm-4 {
    min-width: 50%;
}

.modal-footer .hide-after-success {
    width: 100%;
}

.modal-title {
    color: var(--color-tertiary);
}

.about-top-text {
    padding-top: calc(2 * var(--space-50));
}

.team-section + .social-section {
    margin-top: calc(3 * var(--space-60));
}

.gallery-picture-hover .icon-wrapper img {
    filter: brightness(0) invert(1);
}

.text-toggle,
.text-more,
.text-less {
    display: inline;
}

.text-toggle {
    font-size: inherit;
    font-weight: 700;
    cursor: pointer;
    text-transform: lowercase;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .text-toggle:hover {
        color: var(--color-tertiary);
    }
}

.text-less.active,
.text-more:not(.active) {
    display: none;
}

.text-less.active + .text-toggle {
    display: none;
}

.text-more > * {
    display: inline;
}

.btn-favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border-deafult);
    padding: 5px;
    transition: all .2s linear;
    cursor: pointer;
}

.btn-favorite.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .btn-favorite:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }
}

.shop-product-box > .btn-favorite {
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
}

.modal .price-box.has-discount {
    justify-content: flex-end;
}


.text a:not([class]) {
    color: var(--color-blue-light);
}

@media screen and (min-width: 1140px) {
    .text a:not([class]):hover {
        text-decoration: underline;
    }
}

.calculator-section .result-container {
    text-align: center;
    margin-top: var(--space-25);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.about-top-section.about-top-section--calc .about-top-image-deco-4,
.about-top-section.about-top-section--calc .about-top-image-deco-3 {
    bottom: 5px;
}

.rwdPanel .social-list > ul {
    justify-content: center;
}

header.sticky .top-box {
    top: calc(100% + 8px);
}

.basket-table .price-box.has-discount {
    justify-content: center;
}

.basket-table .basket-table-column-btn .btn-lg {
    padding: 5px;
    width: 50px;
    height: 50px;
}

.product-view-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.calculator-form-row > .form-element-stringText-container:not(:first-of-type) {
    margin-top: var(--space-25);
}

.calculator-form-row > .form-element-stringText-container {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.basket-summary .checkboxradio-container .form-element-option-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-icon-item-inner > .icon-wrapper {
    width: 90px;
}

.main-slider-item-btns .btn {
    white-space: normal;
    text-align: left;
}

.product-list .alert{
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
}
#thyroid-hormone-form label{
    min-height: 46px;
}

