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

    --font-80: clamp(40px, 4.3vw, 80px);
    --font-70: clamp(30px, 3.9vw, 70px);
    --font-60: clamp(25px, 3.2vw, 60px);
    --font-52: clamp(24px, 2.8vw, 52px);
    --font-48: clamp(24px, 2.5vw, 48px);
    --font-40: clamp(28px, 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);
    --font-20: clamp(16px, 1.2vw, 20px);

    --container-padding: 40px;

    --row-gap: 5px;

    /** SPECIFIC **/
    --color-primary: #133050;
    --color-panel: #0c8dd5;
    --color-secondary: #6DD5FF;
    --color-default: #133050;
    --color-border-deafult: #ccc;
    --gradient-primary: linear-gradient(116deg, #004DA2 -3.92%, #13B3F4 89.27%);
}

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

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

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

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

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

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

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

/**
 * 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--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-lg {
    padding: 0 var(--space-40);
    height: 46px;
}

.btn-md {
    padding: 0 calc(var(--space-40) - 5px);
    height: 46px;
}

.btn-small {
    padding: 0 var(--space-25);
    height: 46px;
}

.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: #fff;
}

.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: #fff;
}


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

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


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

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


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

.btn-primary-reverse[disabled],
.btn-primary-reverse[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-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: #fff;
        color: var(--color-primary);
    }

    .btn-primary-reverse:not([disabled]):hover,
    .btn-primary-reverse:not([disabled]).active:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        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);
    }

    .servicePage .btn-newsletter:not([disabled]):hover,
    .servicePage .btn-newsletter:not([disabled]).active:hover {
        border-color: #fff;
        background: #133050;
        color: #fff;
    }

}

/**
 * BUTTONS
 */

.btn {
    letter-spacing: 0.28px;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/**
 * 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: 16px;
    line-height: 30px;
    color: var(--color-primary);
}

/** 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;
    /*margin-bottom: -23px;*/
    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 ul > li > *:not(ul),
.text ol > li > *:not(ul){
    display: inline-block;
}

/** 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
 */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: calc(var(--space-25) + 5px) 30px 10px 30px;
    transition: all .2s linear;
}

header.sticky,
body:not(.mainpage) header {
    background-color: #fff;
}

#content {
    padding-top: 113px;
}

.header-main-inner {
    display: flex;
    gap: var(--space-60);
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px var(--space-50);
    flex-grow: 1;
    background: var(--gradient-primary);
    border-radius: 15px;
    transition: all .2s linear;
}

.logo {
    float: left;
}

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

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

#main-menu li a {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s;
}

#main-menu li.active a {
    color: var(--color-secondary);
}

@media screen and (min-width: 1139px) {
    #main-menu li a:hover {
        color: var(--color-secondary);
    }
}

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

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

#main-menu li:hover > ul {
    display: block;
}

.main-menu-button {
    float: right;
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}

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

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

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

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

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

/*
* USER NAV
*/

.user-nav {
    display: flex;
    align-items: stretch;
    gap: var(--space-25);
}

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

.user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.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);
}

.user-nav-item .icon {
    width: 16px;
    height: 18px;
    margin-right: 16px;
}

/**
 * FOOTER
 */
footer {
}

/* FOOTER BAR */
.footer-bar {
    padding: 18px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    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: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: #fff;
}

.form .form-element-name {
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
}

.input-group-addon {
    background: #F4F4F4;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: none;
}

/* 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: 57px;
    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: var(--gradient-primary);
    border-radius: 0;
    border: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    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 {
        color: var(--gradient-primary);
        background: transparent;

    }

    .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: 6px;
    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: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #000;
}

.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: 16px;
    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: 16px;
    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);
}

@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: #6d6e71;
}

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

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

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

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * PAGINATION
 */

.pagination-wrapper ul li a {
    color: #333;
    transition: color 0.4s;
}

.pagination-wrapper ul li.active a {
    color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
}

/**
 * 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: #fff;
    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
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #f0f;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * 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 {
    margin: -5px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 5px;
}

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

.gallery-picture > img {
    display: block;
    max-width: 100%;
}

.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.6);
    transition: opacity 0.3s;
}

@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;
}


.servicePage .siteblock-message {
    color: #FFF;
    font-size: 60px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.1667em;
    max-width: 650px;
    margin-bottom: var(--space-50);
}

.servicePage .newsletter-box .title {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6667em; /* 166.667% */
    max-width: 600px;
    margin-bottom: var(--space-50);
}

.servicePage #content {
    padding: 30px;
    height: 100vh;
}

.servicePage .wrapper {
    display: flex;
    height: 100%;
    position: relative;
}

.servicePage .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servicePage .right {
    width: 50%;
    display: flex;
    align-items: end;
    justify-content: end;
}

.servicePage .right img {
    display: block;
    max-width: 100%;
    margin-right: calc(var(--space-60) * 2);
}

.servicePage #page {
    position: relative;
}

.servicePage .logo-name {
    color: #133050;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%);
}

.servicePage.sticky-footer #page {
    padding-bottom: 0;
}

.servicePage .container {
    max-width: 1660px;
}

.servicePage::after {
    content: '';
    inset: 30px;
    z-index: -1;
    border-radius: 30px;
    position: absolute;
    background: url('../images/background.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.servicePage .form-email {
    position: relative;
}

.servicePage .form-control, .servicePage .form .form-control {
    height: 52px;
}

.servicePage .form-control {
    background: transparent;
    border-radius: 57px;
    border: 1px solid #FFF;
    max-width: 550px;
}

.servicePage .form-email {
    max-width: 580px;
    position: relative;
}

.servicePage .form-email input::placeholder {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.servicePage .form-email input {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.servicePage .form-group-lg .form-control {
    padding: 10px 40px 10px 32px;
}

.servicePage .btn-newsletter {
    transition: all 0.3s;
    display: flex;
    width: 148px;
    height: 52px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    background: #133050 !important;
    border-radius: 57px;
    position: absolute;
    right: 0;
    top: 0;
    border-color: transparent;
}

.servicePage .form-element-container {
    max-width: 450px;
}

.servicePage .form-control-feedback {
    right: 22px;
    top: 54%;
}

.servicePage .form-group-lg .form-control + .form-control-feedback, .servicePage .input-group-lg + .form-control-feedback, .servicePage .input-lg + .form-control-feedback {
    display: none;
}

.servicePage .modal-header {
    background: linear-gradient(30deg, #004DA2, #13B3F4);
}

.servicePage .modal-title {
    color: #fff;
}

.servicePage .modal-body .form-group-lg .form-control {
    padding: 10px 40px 10px 10px;
    background: #fff;
}

.servicePage .modal-body .form .form-group-lg button.captcha-refresh {
    width: 52px;
    height: 52px;
}

.servicePage .modal-body .form-control, .servicePage .modal-body .form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.userpanel-container-inner .login-box {
    max-width: 568px;
    margin: 0 auto;

}

.userpanel-container-inner .login-box .panel {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
    var(--gradient-primary) border-box;
    border-radius: 30px;
}

.userpanel-container-inner .login-box .panel-heading {
    background: transparent;
    border: 0;
    padding: var(--space-40) 0;
}

.userpanel-container-inner .login-box .panel-heading .title-small {
    text-align: center;
    font-size: calc(var(--font-24) + 2px);

    color: var(--color-primary);
}

.userpanel-container-inner .panel-body {
    padding: 0 var(--space-40) var(--space-50);
}

.custom-shape {
    width: 420px;
    height: 30px;
    background-color: #fff;
    opacity: 1;
    clip-path: path("M0,0 L0,0 C65,-5 40,30 95,30 L320,30 C355,30 350,-5 395,0 L420,0 L0,0 Z");
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    z-index: 2;
}


#content {
    padding: 30px 30px 0 30px;
}

footer {
    padding: 0 30px;
}

.slider-section {
    position: relative;
    height: auto;
    color: #fff;
    padding: calc(var(--space-50) * 2) 0;
}

.slider-section .wrapper {
    min-height: calc(802px - (var(--space-50) * 2) * 2);
}

.background {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 30px;
    background: var(--gradient-primary);
}

.slider-section .img {
    position: relative;
    bottom: calc(var(--space-50) * -2);
    right: calc(var(--space-60) * 2);
    width: 50%;
    display: flex;
    justify-content: end;
}

.slider-section .img img {
    max-height: 100%;
}

.slider-section .title {
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 300;
    line-height: 1.1667em; /* 116.667% */
    margin-bottom: calc(var(--space-40) - 5px);
}

.slider-section .text {
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6667em; /* 166.667% */
    margin-bottom: var(--space-50);

}

.slider-section .wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.slider-section .text-wrapper {
    align-self: end;
    width: 50%;
    margin-bottom: var(--space-50);
}

.height100 {
    height: 100%;
}

.custom-shape-text {
    position: absolute;
    left: 50.5%;
    bottom: -5px;
    transform: translateX(-50%);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    z-index: 3;
    white-space: nowrap;
}

.numbers-section .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: calc(var(--space-50) * 4 - 10px);
    row-gap: var(--space-50);
}

.background-wrapper {
    position: relative;
    padding: calc(var(--space-50) + 5px) calc(var(--space-50) * 3 - 10px);
}

.numbers-section .number {
    color: #FFF;
    font-size: calc(var(--font-36) - 1px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.8571em; /* 185.714% */
}

.numbers-section .text {
    color: #FFF;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: 1.75em;
}

.numbers-section .icon-number-wrapper {
    display: flex;
}

.numbers-section .icon {
    display: flex;
    justify-content: start;
    min-width: 55px;
    align-items: center;
}

.section-heading {

}

.section-title {
    text-align: center;
    font-size: var(--font-40);
    font-style: normal;
    font-weight: 300;
    line-height: 1.375em; /* 137.5% */
}

.section-title.section-title-sm {
    font-size: var(--font-30);
}

.product-view-description .section-title {
    margin-bottom: var(--space-25);
}

.section-heading .text {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
    margin-top: calc(var(--space-25) + 5px);
}

.functions-section .tile .title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: calc(var(--space-25) - 10px);
}

.functions-section .tile .icon {
    margin-bottom: calc(var(--space-25) - 10px);
}

.functions-section .tile .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
}

.functions-section .tile {
    padding: var(--space-40);
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 22px;
}

.functions-section .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--space-25) - 3px);
}

.functions-section .section-heading {
    margin-bottom: calc(var(--space-60) + 5px);
}

.functions-section .wrapper {
    margin-top: calc(var(--space-60) + 5px);
}

.functions-section {
    margin-top: calc(var(--space-60) + 5px);
    margin-bottom: calc(var(--space-60) + 10px);
}

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

.tiles-section .wrapper {
    display: flex;
    flex-direction: column;
    row-gap: calc(var(--space-50) - 5px);
}

.tiles-section .inner-wrapper .title {
    font-size: calc(var(--font-24) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.6154em; /* 161.538% */
    margin-bottom: calc(var(--font-40) - 5px);
}

.tiles-section .tile .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
}

.tiles-section .text-wrapper {
    padding-left: calc(var(--space-50) * 3);
    width: 50.5%;
}

.tiles-section .inner-wrapper {
    display: flex;
    align-items: center;
}

.tiles-section .inner-wrapper:nth-of-type(even) {
    flex-direction: row-reverse;
}

.tiles-section .inner-wrapper:nth-of-type(even) .text-wrapper {
    padding-left: 0;
    padding-right: calc(var(--space-50) * 3);
}

.tiles-section img {
    width: 49.5%;
}

.page-title {
    text-align: center;
    font-size: var(--font-40);
    font-style: normal;
    font-weight: 700;
    line-height: 1.375em; /* 137.5% */
}

.subpage #content {
    padding-top: 123px;
}

.faq-title-section {
    margin: calc(var(--space-40) - 5px) 0;
}

.faq-content-section .text {
    display: none;
}

@media screen and (min-width: 1140px) {
    .faq-content-section .title:hover {
        cursor: pointer;
    }

    .faq-content-section .title:hover .icon {
        background: linear-gradient(26deg, #004DA2 -3.92%, #13B3F4 89.27%);
        color: #fff;
        border: 0;
    }

    .footer-col-content a:hover {
        color: var(--color-secondary);
        text-decoration: underline;
    }

}

.faq-content-section .title {
    display: flex;
    align-items: center;
    padding: 7px calc(var(--space-25) + 5px) 7px calc(var(--space-40));
    font-size: calc(var(--font-20) - 2px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.02em;
    justify-content: space-between;
}

.faq-content-section .media-body {
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 15px;
    transition: 0.3s;
}

.faq-content-section .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
    padding: 12px calc(var(--space-25) + 5px + 60px) 12px calc(var(--space-40));;
}

.faq-content-section .media-body:has(.title.active) {
    border: solid 2px transparent;
    border-radius: 22px;
    background-image: linear-gradient(white, white),
    var(--gradient-primary);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.faq-content-section .media {
    margin-top: 20px;
}

.faq-content-section .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 46px;
    height: 46px;
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-content-section .fa-angle-down:before {
    font-size: 16px;
    font-weight: 600;
}

.faq-content-section .title .icon i {
    transition: all 0.3s;
}

.faq-content-section .title.active .icon i {
    rotate: 180deg;
}

.footer-main {
    background: var(--gradient-primary);
    border-radius: 30px 30px 0 0;
    position: relative;
    padding-top: var(--space-60);
    color: #fff;
}

.footer-main .custom-shape {
    left: 50%;
    position: absolute;
    top: -1px;
    transform: translateX(-50%);
}

.header-main-right {
    display: flex;
    align-items: center;
    gap: var(--space-40);
}

.header-main-content {
    height: 80px;
}

.mainpage header:not(.sticky) .logo {
    display: none;
}

.mainpage header:not(.sticky) .header-main-content {
    padding: 15px 0;
    background: transparent;
}

footer .custom-shape .custom-shape-text {
    bottom: unset;
    top: -4px;
}

.footer-wrapper {
    display: flex;
}

.footer-logo {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 25%;
}

.footer-right {
    width: 75%;
}

.footer-cols {
    display: flex;
}

.footer-col {
    width: 35%;
}

.footer-col:first-of-type {
    width: 45%;
}

.footer-col:last-of-type {
    width: 20%;
}

.footer-col-title {
    margin-bottom: calc(var(--space-40) - 5px);
    font-size: calc(var(--font-20) - 2px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-col-content {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25em; /* 225% */
}

.footer-col-content a {
    color: #fff;
}

.footer-logotypes {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
}

.footer-contributors {
    display: flex;
    margin-left: 25%;
    align-items: center;
    margin-top: calc(var(--space-50) * 2);
}

.footer-contributors .title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-right: calc(var(--space-50) * 3);
}

.footer-contributors .logotypes-wrapper {
    display: flex;
    align-items: center;
    gap: calc(var(--space-60) + 5px);
}

.copyright-undicom, .copyright-undicom a {
    display: flex;
    align-items: center;
    color: #FFF;
    text-align: justify;
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 200% */
}

.copyright-undicom .icon {
    display: flex;
    align-items: center;
    margin-right: 3px;
}

.copyright-undicom .icon {
    fill: #fff;
}

.copyright {
    color: #FFF;
    text-align: justify;
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 200% */
}

.footer-bar-links a {
    color: #FFF;
    text-align: justify;
    font-family: "Figtree", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 200% */
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.30);
    margin-top: calc(var(--space-40) + 5px);
}

.faq-content-section {
    margin-top: calc(var(--space-40) - 5px);
    margin-bottom: var(--space-60);
}

.contact .section-heading {
    margin-top: calc(var(--space-40) - 5px);
    margin-bottom: calc(var(--space-50) - 5px);
}

.form .captcha-image-wrapper, .form .form-group-sm .captcha-image-wrapper, .form .form-group-lg .captcha-image-wrapper {
    border-radius: 5px;
}

.form .captcha-container .captcha-image {
    display: flex;
    align-items: start;
    justify-content: center;
}

.contact {

    margin-bottom: calc(var(--space-60) + 5px);
}


.contact-left .title {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: calc(var(--space-40) - 5px);
}

.contact-left .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.25em; /* 225% */
}

.contact .form .form-control {
    color: #133050;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact .form-group-lg .form-control {
    padding: 10px 43px 10px 21px;
}

.contact .form .form-control {
    color: #133050;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact .form-element-option-text {
    color: #133050;
    text-align: justify;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6923em; /* 169.231% */
    text-transform: capitalize;
}

.phone-tiles-section .section-title {
    text-align: start;
    width: 97%;
    margin-bottom: var(--space-50);
    margin-top: calc(var(--space-40) - 5px);
}

.phone-tiles-section .tile .title {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
}

.phone-tiles-section .tile .text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.02em;

}

.phone-tiles-section {
    margin: calc(var(--space-50) + 5px) 0;
}

.phone-tiles-section .left .img {
    margin-right: calc(var(--space-60) * 2 - 5px);
}

.phone-tiles-section .wrapper {
    display: flex;
}

.phone-tiles-section .tile {
    border-radius: 22px;
    display: flex;
    gap: calc(var(--space-40) - 5px);
    align-items: center;
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: calc(var(--space-25) - 5px) calc(var(--space-25) - 7px);
    transition: all 0.3s;
}

.phone-tiles-section .tiles-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--space-25) - 8px);
}

.phone-tiles-section .tile .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #efefef;
    width: 90px;
    height: 90px;
    transition: all 0.3s;
    flex-shrink: 0;
}

@media screen and (min-width: 1140px) {
    .phone-tiles-section .tile:hover {
        border: solid 2px transparent;
        background-image: linear-gradient(white, white),
        var(--gradient-primary);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        color: var(--color-primary);
    }

    .phone-tiles-section .tile:hover .icon {
        color: #fff;
        background: var(--gradient-primary);
    }
}

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

.offer-section .section-title {
    color: #FFF;
    text-align: center;
    font-size: var(--font-40);
    font-style: normal;
    font-weight: 700;
    line-height: 1.375em; /* 137.5% */
    margin-bottom: calc(var(--space-25) + 5px);
}

.offer-section .text {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
    max-width: 812px;

}

.offer-section .section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-section .upper {
    position: relative;
    padding-top: calc(var(--space-60) + 10px);
    padding-bottom: calc(var(--space-50) * 6 + var(--space-25) - 5px);
}

.offer-section .bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-25);
    margin-top: calc(var(--space-50) * -3 - var(--space-40) + 2px);
}


.offer-tile .tile-upper {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: calc(var(--space-40) + 4px);
    position: relative;
}

.offer-tile .tile-upper::after {
    content: '';
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: calc((var(--space-40) + 4px) / -2);
    left: 0;
}

.offer-tile .tile-upper .text{
    color: var(--color-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
}

.offer-tile .title {
    color: var(--color-primary);
    text-align: center;
    font-size: var(--font-30);
    font-style: normal;
    font-weight: 400;
    line-height: 1.8333em; /* 183.333% */
}

.product-actions {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.offer-tile .price {
    text-align: center;
    font-size: var(--font-30);
    font-style: normal;
    font-weight: 700;
    line-height: 1.8333em; /* 183.333% */
    background-clip: text;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-tile .text {
    /*color: var(--color-primary);*/
    text-align: left;
    /*font-size: 16px;*/
    /*font-style: normal;*/
    /*margin-top: -5px;*/
    /*font-weight: 400;*/
}

.offer-tile > .text {
    margin-bottom: calc(var(--space-25) + 5px);
    flex-grow: 1;
    color: var(--color-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em; /* 240% */
}

.offer-tile li {
    display: flex;
    align-items: center;
    color: var(--color-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em; /* 240% */
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 0 !important;
}

.offer-tile li:before {
    content: '' !important;
    background-image: url("../images/icons/li-icon.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: static !important;
    margin-right: 18px;
    flex-shrink: 0;
    width: calc(1em + 2px) !important;
    aspect-ratio: 1;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    left: unset !important;
    display: inline-block !important;
}

.offer-tile li + li {
    margin-top: 10px;
}

.offer-tile .icon {
    margin-right: 18px;
    flex-shrink: 0;
    width: calc(1em + 2px);
}

.offer-tile {
    padding: calc(var(--space-25) + 5px) calc(var(--space-40) - 5px) var(--space-40) calc(var(--space-40) - 5px);
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offer-tile .btn-lg {
    display: flex;
    width: 77%;
    margin: 0 auto;
}


.popular {
    font-size: calc(var(--font-24) - 2px);
    padding-top: 2.5em;
    border-radius: 25px;
    border: solid 3px transparent;
    background-image: linear-gradient(269deg, #FFC011 -3.7%, #FF8D28 101.18%),
    linear-gradient(269deg, #FFC011 -3.7%, #FF8D28 101.18%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: var(--color-primary);
    margin-top: calc(var(--space-60) * -1);
}


.popular .offer-tile {
    border-top-right-radius: 0;
    border: transparent;
    border-top-left-radius: 0;
}

.popular-text {
    display: none;
}

.popular .popular-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-size: calc(var(--font-24) - 2px);
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
    line-height: 2.5em; /* 250% */
    margin-top: calc(2.5em * -1);
    transform: translateY(calc((var(--space-25) + 5px) * -1));
}

.popular .popular-text .icon {
    margin-right: 10px;
    flex-shrink: 0;
}

.text-title-section {
    margin-top: calc(var(--space-40) - 5px);
    margin-bottom: calc(var(--space-60) + 10px);
}

.text-content-section .img {
    width: 50%;
    float: left;
    margin-right: var(--space-60);
    margin-top: calc(var(--space-25) * -1 + 10px);
}

.text-content-section .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
}

.text-content-section .text h2 {
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.02em;
}

.text-content-section {
    margin-bottom: calc(var(--space-50));
}

.text-bottom-section .text-bottom {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */

}

.text-bottom-section {
    margin: var(--space-50) 0;
}

.text-bottom-section .text-bottom h2 {
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.02em;
}

.text-gallery-section {
    margin-top: var(--space-50);
    margin-bottom: var(--space-60);
}

.rwdPanel.active {
    top: 100px !important;
}

.rwdMenu:has(.rwd-basket) {
    display: none;
}

.phone-tiles-section .left {
    display: flex;
    align-items: center;
}

.tiles-section .text {
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
    margin-right: -10px;
}


body *::-webkit-scrollbar {
    width: 3px;
}

body *::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

body *::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

footer .fa.fa-angle-down {
    display: none;
}

#rwd-mainmenu .header-btn {
    display: none;
}

.opinions-slide-inner {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: var(--space-40);
}

.opinions-slide {
    padding: 0 10px;
    width: 33.33%;
}

.opinions-slider {
    display: flex;
    width: calc(100% + 20px);
    margin: 0 -10px;
}

.slick-autoplay-toggle-button {
    display: none;
}

.opinions-section {
    position: relative;
    margin-top: calc(var(--space-50) * 1.5);
    margin-bottom: calc(var(--space-40) * 2);
}

.date-and-star {
    display: flex;
    gap: calc(var(--space-40) - 8px);
    margin-bottom: calc(var(--space-25) + 5px);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-items: center;
}

.date-and-star-extra {
    display: flex;
    gap: calc(var(--space-40) - 8px);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--space-40) * 2);
}

.date-and-star span {
    display: flex;
    align-items: center;
}

.opinion-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875em; /* 187.5% */
    margin-bottom: calc(var(--space-25) + 5px);
}

.opinion-name {
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    line-height: 1.875em; /* 187.5% */
}

.opinions-slide-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.opinions-section .section-title {
    font-weight: bold;
    margin-bottom: var(--space-25);
}

.opinions-section .prev, .opinions-section .next {
    border-radius: 100%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    transition: all 0.3s;
}

@media screen and (min-width: 1839px) {

    .opinions-section .prev {
        left: calc(var(--space-40) * -1);
    }

    .opinions-section .next {
        right: calc(var(--space-40) * -1);
    }
}

@media screen and (max-width: 1839px) {
    .opinions-section .prev {
        left: var(--space-40);
        bottom: unset;
        top: -70px;
    }

    .opinions-section .next {
        right: var(--space-40);
        bottom: unset;
        top: -70px;
    }
}

@media screen and (min-width: 1140px) {
    .opinions-section .prev:hover, .opinions-section .next:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .opinions-section .prev:hover i, .opinions-section .next:hover i {
        color: #fff;
    }
}

.opinions-section .prev i, .opinions-section .next i {
    color: var(--color-primary);
    font-size: 20px;
    font-weight: bold;
}

.opinions-section .prev i {
    padding-right: 2px;
}

.opinions-section .next i {
    padding-left: 2px;
}

.opinions-section .container {
    position: relative;
}

.page-top-margin {
    margin-top: calc(var(--space-40) - 5px);
}

.product-teaser {
    margin-bottom: var(--space-25);
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.fancybox-slide #login-box {
    max-width: 568px;
    margin-left: auto;
    margin-right: auto;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-primary) border-box;
    border-radius: 30px;
}

.fancybox-slide #login-box .top-box-buttons {
    display: flex;
    justify-content: center;
}

.fancybox-slide #login-box .top-box-buttons .btn {
    width: fit-content;
}

.filter-form-buttons {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-25);
    margin: var(--space-60) 0;
}

.offer-list:has(.popular) {
    margin-top: calc(2 * var(--space-60));
}

@media screen and (min-width: 1140px) {
    .mainpage #content > .container {
        position: relative;
    }

    .mainpage #content > .container > .alert-container {
        position: absolute;
        top: 120px;
        width: calc(1720px - (2 * var(--container-padding)));
    }
}

#chart {
    margin-bottom: 30px;
}

.order-history-container.qr-statistics .table.table-crud thead th {
    width: auto;
}

#qrcode-form *[class*="form-element-collection"] > .form-element-name {
    display: none;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #fff;
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

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

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

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

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

.footer-logotype {
    display: block;
}

.fancybox-slide .top-login-box .top-box-buttons {
    margin-top: var(--space-25);
}

.consent-row .form-element-option-text {
    color: var(--color-primary);
}

#login-box .fancybox-close-small {
    top: 12px;
    right: 12px;
}

#login-box .fancybox-close-small:after {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    #login-box .fancybox-close-small:hover:after {
        background-color: #fff;
        color: var(--color-primary);
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 860px;
    }
}

.slick-list,
.slick-track{
    width: 100%;
}

.opinions-section .slick-track{
    display: flex;
}

.opinions-section .opinions-slide{
    height: unset;
}

.opinions-section .prev.slick-hidden,
.opinions-section .next.slick-hidden{
    display: none;
}

.qr-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

#qrcode canvas,
#qrcode2 canvas {
    max-width: 100%;
}

.footer-col:first-of-type .footer-links{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.slider-section .text{
    color: #fff;
}

.footer-col-title.opacityZero{
    opacity: 0!important;
    pointer-events: none;
}

.footer-col:first-of-type .footer-col-content{
    display: block;
}

.text ul{
    /*clear: both;*/
}


#flot-tooltip {
    position: absolute;
    display: none;
    border: none;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    background-color: #222222;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    z-index: 99925;
    white-space: nowrap;
}