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

    --font-50: 50px;
    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-35: 35px;
    --font-33: 33px;
    --font-32: 32px;
    --font-30: 30px;
    --font-26: 26px;
    --font-25: 25px;
    --font-24: 24px;
    --font-22: 22px;
    --font-21: 21px;
    --font-20: 20px;
    --font-18: 18px;

    --container-padding: 40px;
    --row-gap: 8px;

    /** SPECIFIC **/
    --color-primary: #ff004d;
    --color-secondary: #00A0E3;
    --color-tertiary: #E5136C;
    --color-default: #333;
}

body {
    color: #000;
    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-primary);
}

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

/**
 * 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: 0 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-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');}
*/

/**
 * BUTTONS
 */

.btn, a, button {
    border-radius: 0;
    transition: all 0.2s;
}

.btn-lg {
    border: 1px solid transparent;
    padding: 0 31px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    border-radius: 23px;
}

.btn-sm {
    border: 2px solid;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 30px;
    height: 40px;
    line-height: 36px;
}


.btn.has-icon {
    display: flex;
    align-items: center;
    padding-left: 2px;
    background: transparent;
}

.btn.has-icon .btn-icon {
    width: 44px;
    height: 44px;
    padding: 6px;
}

.has-arrow {
    padding-right: 58px;
}

.btn.has-arrow:after {
    width: 44px;
    height: 44px;
    display: block;
    content: "\f105";
    font: normal normal normal 20px/1 FontAwesome;
    transition: all 300ms ease-out;
    line-height: 44px;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    font-size: 15px;
    top: 50%;
    margin-top: -22px;
}


/**
 * THEMES
 */

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

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

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

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

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

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

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

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

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


.btn.btn-primary .btn-icon svg,
.btn.btn-primary .btn-icon svg * {
    fill: #fff;
}

.btn.btn-secondary .btn-icon svg,
.btn.btn-secondary .btn-icon svg * {
    fill: transparent;
}

.slide-buttons .btn.btn-secondary .btn-icon svg *[stroke] {
    stroke: currentColor !important;
}

.slide-buttons .btn.btn-secondary .btn-icon svg *[fill] {
    fill: currentColor !important;
}

.slide-buttons .btn.btn-secondary:hover .btn-icon svg * {
    fill: #fff;
}

.btn.btn-white .btn-icon svg,
.btn.btn-white .btn-icon svg * {
    fill: #fff;
}


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

    .btn-primary:hover .btn-icon svg,
    .btn-primary:hover .btn-icon svg * {
        fill: var(--color-primary);
    }

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

    .btn-secondary:hover .btn-icon svg,
    .btn-secondary:hover .btn-icon svg * {
        fill: var(--color-secondary);
    }

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

    .btn-tertiary:hover .btn-icon svg,
    .btn-tertiary:hover .btn-icon svg * {
        fill: var(--color-tertiary);
    }

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

    .btn-default:hover .btn-icon svg,
    .btn-default:hover .btn-icon svg * {
        fill: var(--color-default);
    }

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

    .btn-white:hover .btn-icon svg,
    .btn-white:hover .btn-icon svg * {
        fill: var(--color-default);
    }

}


/**
 * 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;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

/**
 * TITLES
 */


.text.txt h1 {
    font-size: var(--font-36);
    margin-bottom: 9px;
    line-height: 1.5;
    font-weight: 300;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text.txt h2 {
    margin-bottom: 9px;
    line-height: 1.5;
    font-weight: 300;
    font-size: var(--font-32);
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text.txt h3 {
    font-size: var(--font-30);
    margin-bottom: 9px;
    line-height: 1.5;
    font-weight: 300;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text.txt h4 {
    font-size: var(--font-24);
    margin-bottom: 9px;
    line-height: 1.5;
    font-weight: 300;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text.txt h5 {
    font-size: var(--font-20);
    margin-bottom: 9px;
    line-height: 1.5;
    font-weight: 300;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.text.txt h6 {
    font-size: var(--font-18);
    margin-bottom: 9px;
    line-height: 1.5;
    font-weight: 300;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/**
 * TEXT
 */

.modal-header {
    background: linear-gradient(-90deg, #5a063d 0%, #0b5eb7 35%, #2d4e70 100%);
}

.modal-title {
    margin: 0;
    font-weight: 400;
    font-size: var(--font-30);
    line-height: 1.27778;
    color: #fff;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
}

.modal-header button.close {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -23px;
    width: 46px;
    height: 46px;
    border: 1px solid #fff;
    opacity: 1;
    border-radius: 50%;
    color: #fff;
    text-shadow: 0 0 transparent;
    font-size: 30px;
}

.modal-header button.close:hover {
    background: #fff;
    color: var(--color-primary);
}


.modal-body button.btn.btn-lg.btn-primary {
    display: block;
    margin: 0 auto;
}

.modal-body .controls.captcha-container {
    width: 100%;
}


/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
}

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

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

.text ul > li::before {
    content: "•";
    display: inline-block;
    left: -10px;
    margin-left: -10px;
    font-family: sans-serif;
    position: relative;
    width: 14px;
    height: 14px;
}

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


.text a:hover {
    text-decoration: underline;
}

.vcenter {
    display: block;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
}

.photo-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.photo-bg img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    pointer-events: none;
}

.grayscale, .gray {
    filter: grayscale(100%);
}

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

div#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
}

/**
 * HEADER
 */

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

.header-top {
    background: linear-gradient(135deg, #e5136c 0%, #e5136c 20%, #00a0e3 69.78%, #00a0e3 100%);
    background-attachment: fixed;
    padding-top: 13px;
    padding-bottom: 13px;
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slogan {
    font-weight: 400;
    font-size: 16px;
    line-height: 2.25;
    color: #fff;
}

.top {
    padding-top: 32px;
    padding-bottom: 32px;
}

.top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    padding-left: 31px;
}

.logo {
    float: none;
    margin-right: 10px;
}

.logo a {
    display: block;
}

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

#main-menu {
    transition: all 300ms ease-out;
}

#main-menu ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#main-menu li {
    position: relative;
}

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

#main-menu li a {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-align: justify;
    color: #fff;
    display: block;
    padding: 10px 24px;
}

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

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

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

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

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

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

.contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 33px;
}

.contact-link {
    align-items: center;
    display: flex;
    font-weight: 300;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: #003e99;
    width: 100%;
}

.contact-link .btn-icon {
    margin-right: 39px;
    position: relative;
    border-radius: 50%;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border: 1px solid #e5e5e5;
    padding: 14px;
    text-align: center;
}

.contact-links .contact-link svg, .contact-links .contact-link svg * {
    fill: currentColor;
}

.contact-link .caption strong {
    display: block;

}

@media screen and (min-width: 1140px) {
    a.contact-link:hover {
        text-decoration: underline;
        color: var(--color-primary);
    }

    .contact-link:hover .btn-icon {
        background: #fff;
    }
}

.top-right .btn {
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    text-align: justify;
    color: #fff;
}

.btn.shop-online {
    padding-right: 21px;
}

.btn.shop-online .btn-icon {
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.user-zone {
    border: 1px solid #fff;
    border-radius: 23px;
    padding-right: 25px;
    padding-left: 15px;
}

.btn.user-zone .btn-icon {
    margin-right: -3px;
}

button.btn.btn-close {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
}

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

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}


.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
.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;    -ms-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 {
    position: relative;
}

.teams-icon svg {
    width: 24px;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-bottom: var(--space-25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}


.footer-box-container {
    position: relative;
    padding-top: var(--space-50);
    background-size: cover;
    background-position: center top;
}

.footer-box {
    padding-right: 5px;
    position: relative;
    width: 27%;
}

.footer-col-title {
    font-weight: 700;
    font-size: var(--font-22);
    line-height: 1.63636;
    color: #fff;
    margin-bottom: calc(var(--space-40) + 5px);
    display: none;
}


.footer-box ul {
    margin: 0;
    list-style-type: none;
    padding: 8px 0 0;
}

.footer-box ul li {
    margin-bottom: 16px;
}

.footer-box ul li,
.footer-box ul li a {
    display: block;
    font-weight: 600;
    font-size: var(--font-18);
    line-height: 115%;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .footer-box ul li a:hover {
        text-decoration: none;
        color: var(--color-primary);
    }
}

.footer-box .text a {
    color: #fff;
}


img.logo-min {
    display: block;
    margin-bottom: 0;
    max-width: 100%;
}

.footer-box .text.txt {
    font-weight: 600;
    font-size: var(--font-18);
    line-height: 2;
    color: #fff;
}

.contact-link-bottom {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 2.14286;
    color: #fff;
    margin-bottom: 4px;
}

.contact-link-bottom .btn-icon {
    border-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px 0 0;
}


.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 43px;
}

.footer-top-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 48%;
}

.social {
    display: block;
    border-radius: 50%;
}

.footer-top .social-list > ul > li {
    padding: 5px 10px;
}

.footer-top .social-list > ul {
    margin: -5px -10px;
}

.btn.find-dealer {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding-right: 0;
    width: 245px;
    padding-left: 40px;
    justify-content: space-between;
    display: flex;
    border: 0 none;
}

.btn.find-dealer .btn-icon {
    padding: 9px;
}

.footer-left {
    width: 29%;
    padding-right: 5px;
}

.footer-right {
    width: 75%;
    display: flex;
    justify-content: space-between;
}

.footer-left .footer-box:first-child, .footer-left .footer-box:last-child {
    width: 100%;
}


.contact-footer-box-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 27px;
    flex-shrink: 0;
}

.box-top, .box-bottom {
    display: flex;
}

.contact-footer-box-icon svg, .contact-footer-box-icon svg * {
    fill: #fff;
}

.contact-footer-box {
    display: flex;
}

.contact-footer-box.emails {
    display: flex;
    flex-direction: column;
}

.footer-box .emails ul li {
    margin-bottom: 16px;
}


.footer-box:last-child {
    padding-right: 0;
    width: 18%;
    padding-left: 0 !important;
}

.qr-code-footer {
    text-align: center;
}

.qr-code-footer img {
    display: block;
    max-width: 80%;
    margin: 0 auto;
}

.footer-bottom {
    padding-top: var(--space-50);
    display: flex;
    align-items: center;
    padding-bottom: var(--space-50);
}

.footer-bottom .footer-box {
    padding-left: 60px;
    font-weight: 600;
    width: unset;
    font-size: 16px;
    /* line-height: 36px; */
    line-height: 2.25;
    color: #fff;
}

.footer-bottom .footer-left {
    padding-top: 0;
}

.footer-bottom .footer-left img {
    display: block;
    max-width: 100%;
}

.footer-bg {
    background: url(../images/footer_bg.jpg) no-repeat top right / cover;
}


/* FOOTER BAR */
.footer-bar {
    line-height: 30px;
    font-weight: 300;
    font-size: 14px;
    color: #fff;
    position: relative;
}

.footer-bar-content {
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}


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

.footer-bar-content > * {
    float: left;
    color: #fff;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 40px;
}

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

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

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

@media screen and (min-width: 1140px) {
    .footer-bar-links a:hover {
        text-decoration: underline
    }
}

.copyright:before {
    content: '';
    width: 1px;
    height: 10px;
    background: #fff;
    position: absolute;
    left: -25px;
    top: 50%;
    margin-top: -5px;
}

.copyright {
    position: relative;
}

.copyright-undicom {
    display: flex;
    float: right;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    align-items: center;
    color: #fff;
}

.copyright-undicom a {
    display: inline-block;
    vertical-align: middle;
}

.copyright-undicom svg {
    max-width: 15px;
    margin-right: 2px;
    fill: currentColor;
    margin-bottom: -3px;
}


/**
 * FORM
 */

.form-box-title {
    font-weight: 300;
    font-size: var(--font-24);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 27px;
}

form.form {
    padding: 9px 0 0;
}

.form-group {
    margin-bottom: 19px;
}

.form .form-element-name {
    margin-bottom: 18px;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.00023;
    color: #000;
    text-transform: uppercase;
    font-style: normal;
}

.form-box-wrapper .form .form-element-name {
    color: #fff
}


/* INPUTY */
.form-control, .form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    font-family: poppins, sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(255, 255, 255);
    border-color: #e5e5e5;
    border-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* 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 {
    color: #000;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.71343;
    letter-spacing: 0.05em;
}

.form-box-wrapper .form .before-consent-row,
.form-box-wrapper .form .after-consent-row,
.form-box-wrapper .form .consent-row label,
.form-box-wrapper .form .consent-all {
    color: #fff
}

.form .before-consent-row {
    padding-top: 14px;
}


.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: 5px;
    box-shadow: none;
    background: #fff;
}

/* 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(--color-primary);
    border-radius: 0 5px 5px 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e5e5;
}

.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: #000;
        border-color: #e5e5e5;
        border-radius: 0 5px 5px 0;
    }

    .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;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}


.controls.captcha-container {
    width: 100%;
}

.row-flex-center {
    padding-top: 14px;
}

.form .consent-all-row {
    color: #fff
}

/*---- 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: #ccc;
    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: #555;
}

.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-error .form-control {
    border-color: #a94442;
}

.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%;
    -ms-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', sans-serif;
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -ms-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;
    }
}

.form-box-wrapper button.btn.btn-tertiary.btn-lg {
    font-weight: 600;
    font-size: var(--font-18);
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    width: 100%;
    height: 60px;
}


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-tertiary.btn-lg:hover {
        color: var(--color-tertiary);
        background-color: #fff;
    }


}

.form .consent-all-row strong {
    padding-top: 20px;
    display: block;
}

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

.form .alert-block .error {
    background: #a94442 !important;
    color: #fff !important;
    padding: 2px;
}


/**
 * 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;
    -ms-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;
}


.map-box-container iframe {
    width: 100%;
    display: block;
    height: 600px;
}

/**
 * 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);
}

/**
 * ANIMATABLE ICON
 */
.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: var(--color-primary);
    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);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    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%;
    -ms-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%;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-40) + var(--space-50) + 5px);
}

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

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    position: relative;
    display: block;
}


/**
 * 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: 50px;
    height: 50px;
    color: #fff;
    padding: 4px;
    border-radius: 50%;
}

.social:hover .social-icon {
    color: #fff;
    background: linear-gradient(90deg, #00a0e3 0%, #e5136c 100%);
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


/**
 * LANGUAGES MENU
 */

.langs-menu {
    position: relative;
    float: right;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    margin: 0 -5px 0 20px;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    padding-top: 10px;
    width: 100%;
    transition: all 0.3s;
}


.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);
    background: linear-gradient(-90deg, #5a063d 0%, #0b5eb7 35%, #2d4e70 100%);
    background-attachment: fixed;
    background-position: center center;
    padding: 5px;
    height: auto;
    text-transform: lowercase;
}


.langs-menu a:hover span.langs-menu-icon {
    background: #fff
}

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

.lang .langs-menu-long {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
}

.lang-button {
    cursor: pointer;
    position: relative;
    background: transparent;
    font-weight: 400;
    font-size: 13px;
    color: #fff;
    border: 0 none;
    text-transform: lowercase;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 21px;
    font-size: 12px;
    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: var(--color-primary);
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        margin-top: -5px;
    }

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

    .lang-button {
        cursor: pointer;
        position: relative;
        background: transparent;
        font-weight: 400;
        font-size: 13px;
        color: #fff;
        border: 0 none;
        padding: 0;
    }

    span.langs-menu-icon {
        border: 1px solid #fff;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 13px;
        flex-shrink: 0;
    }

    .lang span.flag-icon {
        font-size: 14px;
    }

    span.langs-menu-short {
        display: none;
    }

}

.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;
    padding-bottom: 18px;
}

.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: 47%;
    margin-right: 92px;
    margin-bottom: 10px;
}

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

.article-subtitle {
    font-weight: 300;
    font-size: var(--font-32);
    text-align: center;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 140%;
    padding-bottom: 0;
    padding-top: 6px;
}

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

.article-text {
    margin-bottom: var(--space-30);
}

/**
 * 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;
    transition: opacity 0.3s;
    background-image: linear-gradient(180deg, rgba(0, 88, 165, 0.7) 0%, rgba(0, 9, 30, 0.7) 100%);
}

.gallery-picture-hover > * {
    background: url(../images/icons/loupe_white.svg) no-repeat center center /86%;
    text-indent: -20000px;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 100px;
    height: 100px;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 0;
    margin: 0 auto;
    display: block;
    top: 50%;
}

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

.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.png);
    top: 6px;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.png);
    }
}

/**
* PAGINATION
*/

.pagination-wrapper {
    clear: both;
    width: 100%;
    margin: 0 auto;
}

.pagination-wrapper ul li {
    padding: 0 5px;
}

.pagination-wrapper ul li.next, .pagination-wrapper ul li.prev {
    padding: 0 186px;
    vertical-align: middle;
    float: none;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    line-height: 50px;
    padding: 0 14px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}


.pagination-wrapper ul li.prev a, .pagination-wrapper ul li.next a {
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 transparent;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 1);
}

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

.pagination-wrapper ul li.next a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_right.svg) no-repeat center center;
}

.pagination-wrapper ul li.prev a > * {
    text-indent: -20000px;
    width: 100%;
    height: 100%;
    background: url(../images/icons/arrow_left.svg) no-repeat center center;
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li.next a:hover, .pagination-wrapper ul li.prev a:hover {
        background: var(--color-secondary);
        border-color: var(--color-secondary);
    }

    .pagination-wrapper ul li.next a:hover > * {
        background: url(../images/icons/arrow_right.svg) no-repeat center center;
    }

    .pagination-wrapper ul li.prev a:hover > * {
        background: url(../images/icons/arrow_left.svg) no-repeat center center;
    }

    .pagination-wrapper ul li a:hover {
        color: var(--color-secondary);
    }
}

.main-slider, .slider .slide, .slider .slider-photo, .main-slider .slick-list, .main-slider .slick-track {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.slider {
    opacity: 1 !important;
    pointer-events: auto;
    padding-top: 175px;
    height: 845px;
    position: relative;
    background: url(../images/slider_bg.jpg) no-repeat top center;
    transition: background-color 300ms;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: overlay;
}

.slider.bright {
    background-color: transparent;
}

.slider .container {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    top: 0;
}

.img-watermark.opacityZero {
    opacity: 0 !important;
}

.img-watermark img {
    width: 100%;
    display: block;
    opacity: 0.5;

}

.img-watermark {
    display: block;
    right: 0;
    position: absolute;
    max-width: 45.5%;
    top: 175px;
    pointer-events: none;
    z-index: 1;
}

.main-slider {
    z-index: 2;
}

.mask.slider-mask {

}

.slide-box {
    display: flex;
    justify-content: space-between;
    margin-right: -9px;
}


.slide-left {
    width: 66.3%;
    border: 1px solid #fff;
    border-radius: 25px;
    backdrop-filter: blur(19px);
    background: rgba(255, 255, 255, 0.05) url(../images/slide_left_mask.png) no-repeat bottom left / 59%;
    padding: 48px 42px calc(var(--space-50) + 5px) 48px;
    height: 602px;
}

.slide-left-content {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.slide-left-image-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.slide-left-text {
    padding-top: 20px;
    width: 42%;
}

.slide-buttons .btn {
    margin-right: 18px;
    min-width: 96px;
}

.slide-left-img {
    width: 53%;
}

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


.slide-right {
    width: 32%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid #fff;
    padding: 41px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.title1-left {
    font-weight: 700;
    font-size: var(--font-50);
    line-height: 1.4974;
    color: #fff;
}

.title2-left {
    font-weight: 400;
    font-size: var(--font-50);
    line-height: 1.4974;
    color: #fff;
}


.title1-left {
}

.title1-right {
    font-weight: 700;
    font-size: var(--font-35);
    line-height: 1.4261;
    text-align: center;
    color: #fff;
}

.title2-right {
    font-weight: 300;
    font-size: var(--font-35);
    line-height: 1.4261;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}

.description-left, .description-right {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
}


.description-right {
    text-align: center;
    padding: 0 10px;
    margin-bottom: 20px;
}

.slide-right-img {
    text-align: center;
    width: 82%;
    margin: 0px auto 25px;
    position: relative;
    padding-bottom: 68%;
}

.slide-right-img img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 100%;
}

.slide-right .btn.has-icon {
    padding-left: 13px;
    font-size: 15px;
    text-align: center;
    margin-right: 0;
    padding-right: 31px;
}

.slide-right .btn.has-icon .btn-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    margin-right: 10px !important;
    justify-content: center;
    padding: 0;
}

.slider .slick-arrow {
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 9;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 28px;
    border-radius: 50%;
    top: 50%;
    margin-top: -30px;
}

.slider button.prev.slick-arrow {
    left: 50%;
    margin-left: -860px;
}

.slider button.next.slick-arrow {
    right: 50%;
    margin-right: -860px;
}

@media screen and (min-width: 1140px) {
    .slider button.slick-arrow:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }
}


.user-zone-box-wrapper {
    display: flex;
    justify-content: space-between;
}

.title-text {
    line-height: 130%;
    font-weight: 300;
    padding: 0.2em 0;
    margin: -0.2em 0;
    font-size: var(--font-32);
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.user-zone-title strong {
    font-size: var(--font-48);
    display: inline-block;
}

.user-zone-title {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.user-zone-container {
    padding-top: calc(var(--space-40) + var(--space-50) + 5px);
    padding-bottom: calc(var(--space-50) + var(--space-50));
    position: relative;
    z-index: 2;
}

.user-zone-text {
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 53px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.06);
    width: 58%;
    margin-right: -5%;
    padding: calc(var(--space-60) + 5px) 8.6% var(--space-30) 60px;
}


.title-icon {
    margin-right: 17px;
}

.user-zone-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-40);
}

.btn-user-item {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
}

.btn-user-icon {
    margin-right: 22px;
}


.user-zone-photo {
    width: 47.7%;
    margin-top: -16px;
    margin-bottom: -16px;
    position: relative;
}

.btn.btn-login.btn-primary.has-arrow {
    background: #e5136c;
    border-radius: 100px;
    width: 304px;
    height: 70px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #fff;
    position: relative;
    margin-right: 43px;
    line-height: 55px;
}

.btn.btn-login.btn-primary.has-arrow:hover {
    color: #e5136c;
    background: #fff;
}

.user-zone-bottom {
    display: flex;
    align-items: center;
}

.no-user {
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.no-user a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

.user-zone-photo img {
    display: block;
    max-width: 100%;
}

.user-zone-photo-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 6px;
    height: 100%;
}

.user-zone-photo-title {
    font-size: var(--font-25);
    line-height: 1.42857;
    text-align: center;
    color: #fff;
    margin-bottom: 22px;
}

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

.qr-box {
    margin-bottom: 20px;
    max-width: 24%;
}

.qr-info {
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
}

header.sticky {
    background: linear-gradient(-90deg, #5a063d 0%, #0b5eb7 35%, #2d4e70 100%);
}

.new-box {
    display: flex;
    padding: calc(var(--space-50) + var(--space-50)) 0 calc(var(--space-50) + var(--space-50)) calc(var(--space-40) + var(--space-40));
    margin-right: -56px;
    position: relative;
    border-radius: 53px 0 0 53px;
}

.new-item {
    width: 35.1%;
    margin-right: 25px;
    position: relative;
    border-radius: 0 0 53px 53px;
}

.new-item img {
    display: block;
    max-width: 100%;
    border-radius: 25px;
}

.newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 29.8%;
    padding-left: 3.5%;
    padding-right: 3.5%;
    padding-bottom: 20px;
    padding-top: 20px;
    justify-content: center;
    position: relative;
}

.newsletter-icon {
    width: 42%;
    margin-bottom: 14px;
    position: relative;
}

.newsletter-heading .newsletter-icon svg *[stroke] {
    stroke: #fff;
}

.newsletter-heading .newsletter-icon svg *[fill] {
    fill: #fff;
}

.newsletter-heading .newsletter-icon {
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
}


.newsletter-title {
    font-weight: 700;
    font-size: var(--font-25);
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
}

.newsletter-text {
    font-weight: 300;
    font-size: var(--font-20);
    text-align: center;
    color: #fff;
    padding: 0 10px;
    margin-bottom: var(--space-30);
    position: relative;
}

.newsletter form#newsletter-form {
    width: 94%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    position: relative;
}

.newsletter .form-element-container.form-element-email-container {
    border-radius: 35px;
    width: 100%;
    height: 70px;
}

.newsletter .form-control {
    border-color: transparent;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    height: 70px;
    line-height: 70px;
    padding-left: 28px;
    background: #e5136c !important;
    border-radius: 35px;
}

.newsletter form#newsletter-form button.btn.btn-primary {
    font-size: var(--font-24);
    width: 70px;
    height: 70px;
    background: #e5136c;
    border-color: #e5136c;
    border-radius: 0 35px 35px 0;
}

.newsletter:before {
    content: '';
    width: 158%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(360deg, rgba(0, 103, 255, 0.6) 0%, rgba(229, 19, 108, 0.6) 100%);
    border-radius: 25px 0 0 25px;
    pointer-events: none;
}

.new-box:before {
    content: '';
    width: 116%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(18px);
    background: linear-gradient(44deg, #3d2d64 0%, #003e99 43.5%, #00a0e3 100%);
    border-radius: 53px 0 0 53px;
}

.newsletter input.form-control.form-control-email::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
}

.newsletter input.form-control.form-control-email::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}

.newsletter input.form-control.form-control-email:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}

.newsletter input.form-control.form-control-email:-moz-placeholder { /* Firefox 18- */
    color: #fff;
}

.newsletter-box input.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #fff;
}

.newsletter-box input.form-control::-moz-placeholder { /* Firefox 19+ */
    color: #fff;
}

.newsletter-box input.form-control:-ms-input-placeholder { /* IE 10+ */
    color: #fff;
}

.newsletter-box input.form-control:-moz-placeholder { /* Firefox 18- */
    color: #fff;
}

form.form.newsletter-form button.btn.btn-primary {
    position: absolute;
    right: 17px;
    top: 26px;
    background: #e5136c !important;
    border-color: #e5136c !important;
}


form.form.newsletter-form {
    position: relative
}

img.img-newsletter {
    position: absolute;
    max-width: 76%;
    right: -23%;
    bottom: -33%;
}

.newsletter form#newsletter-form button.btn.btn-primary:hover {
    color: var(--color-secondary);
}

.small-boxes-container {
    padding-top: calc(var(--space-40) + var(--space-40) + 5px);
    padding-bottom: calc(var(--space-40) + var(--space-40) + 5px);
}

.small-boxes-wrapper {
    margin: -30px;
}

.small-box {
    width: 33.33%;
    padding: 30px;
}

.small-box {
    padding-top: 101px;
}

.small-box-icon {
    width: 46%;
    position: relative;
    padding: 8.5%;
    margin: -23% auto 27px;
}

.small-box-link {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border-radius: 53px;
    flex-direction: column;
    height: 100%;
    padding-bottom: var(--space-50);
    justify-content: space-between;
}

.small-box-title {
    font-weight: 700;
    font-size: var(--font-24);
    color: #000;
    text-align: center;
    margin-bottom: 25px;
}

.small-box-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #000;
    margin-bottom: var(--space-40);
}

.small-box-inner {
    padding: 0 65px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
}

.online-shop-box .dp5-mask {
    top: 50%;
    transform: translateY(-50%);
}

.online-shop-box {
    justify-content: space-between;
    display: flex;
    padding-right: 2%;
    padding-left: 1%;
    position: relative;
}

.online-shop-text {
    width: 46%;
    display: flex;
    align-items: center;
    padding-top: var(--space-40);
    padding-bottom: var(--space-30);
    position: relative;
}

.online-shop-photo {
    width: 44.2%;
    margin-top: -22px;
    margin-bottom: -16px;
    position: relative;
}

.online-shop-photo img {
    display: block;
    max-width: 100%;
}

.online-shop-title {
    font-weight: 700;
    font-size: var(--font-33);
    line-height: 130%;
    color: #fff;
    margin-bottom: 10px;
}

.shop-online-text .text.txt {
    font-weight: 300;
    font-size: var(--font-21);
    color: #fff;
}

.online-shop-content .text.txt {
    font-weight: 300;
    font-size: var(--font-21);
    color: #fff;
    line-height: 130%;
    margin-bottom: 20px;
}

.online-shop-icon svg *[fill] {
    fill: #fff;
}

.online-shop-icon svg *[stroke] {
    stroke: #fff;
}

.online-shop-icon > svg {
    width: 50%;
}

.online-shop-icon {
    width: 29%;
    padding: 10px;
    aspect-ratio: 1;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.online-shop-box:before {
    content: '';
    border-radius: 0 53px 53px 0;
    width: 121%;
    height: 100%;
    backdrop-filter: blur(18px);
    background: linear-gradient(92deg, #e5136c 0%, #00a0e3 100%);
    position: absolute;
    right: 0;
    top: 0;
}

img.img-online {
    position: absolute;
    max-width: 22%;
    top: 50%;
    margin-top: -24%;
    left: -10%;
}

.logotype-name {
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    color: #000;
}

.logotype:hover .logotype-name {
    color: #e5136c;
}

.btn.btn-gradient {
    background: linear-gradient(90deg, #00a0e3 0%, #e5136c 100%);
}

.logotype-img {
    height: 100px;
    margin-bottom: 15px;
    padding: 0 20px;
}

.subpage header {
    background: fixed;
    background: linear-gradient(-90deg, #5a063d 0%, #0b5eb7 35%, #2d4e70 100%);
}

header.stickable.sticky {
}

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

.subpage.banner-closed #content {
    padding-top: 114px;
}

.about-box {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    position: relative;
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-48);
    line-height: 1.29031;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
    display: inline-block;
}

.page-heading-subtitle {
    font-weight: 300;
    font-size: var(--font-32);
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: calc(var(--space-30) + 5px);
    display: inline-block;
}

.text.txt {
    font-weight: 400;
    font-size: 16px;
    line-height: 188%;
    color: #000;
}

.about-box-container {
    padding-top: calc(var(--space-30) + var(--space-40));
    padding-bottom: calc(var(--space-40) + var(--space-40));
}

.about-video {
    width: 41.586%;
    padding-top: 12px;
}

.video-link {
    display: block;
    position: relative;
    width: 100%;
}

a.video-link img {
    display: block;
    max-width: 100%;
    border-radius: 50px;
}

.about-left {
    width: 52%;
    display: flex;
    justify-content: flex-end;
}

.about-left-content {
    padding-left: var(--container-padding);
    width: 100%;
    max-width: 754px;
}

img.img-bg {
    position: absolute;
    max-width: 18%;
    top: 31%;
    pointer-events: none;
}

.functions-box-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.functions-left {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--space-60);
    position: relative;
}

.functions-box {
    width: 65%;
    column-count: 2;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
    column-gap: 4px;
    padding-bottom: var(--space-60);
}

.functions-box-title {
    font-weight: normal;
    font-size: var(--font-50);
    line-height: 1.4974;
    text-align: center;
    margin-bottom: calc(var(--space-50) + var(--space-50));
    color: #fff;
}

.functions-item {
    -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */
    page-break-inside: avoid; /* Firefox */
    break-inside: avoid;
    min-height: 36px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    padding-left: 66px;
    position: relative;
    padding-right: 13%;
}

.functions-item:before {
    background: url(../images/icons/fun_li.svg) no-repeat left center;
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -18px;
}

.functions-box .btn {
    position: relative;
}

.functions-box-wrapper:before {
    content: '';
    width: 116%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(18px);
    background: linear-gradient(44deg, #3d2d64 0%, #003e99 43.5%, #00a0e3 100%);
    border-radius: 53px 0 0 53px;
}

.modules-box-container {
    padding-top: calc(var(--space-30) + var(--space-40));
    padding-bottom: calc(var(--space-30) + var(--space-40));
    position: relative;
}


.modules-box ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.modules-box ul li span {
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    text-align: center;
    color: #003e99;
    display: block;
    border: 2px solid #003e99;
    border-radius: 25px;
    padding: 8px 40px;
}

.modules-box ul li {
    margin: 5px;
}

.watermark {
    font-weight: 700;
    font-size: 6.563vw;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    right: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    pointer-events: none;
}

@-moz-document url-prefix() {
    .watermark {
        opacity: 0.45;
    }
}

@media screen and (min-width: 1921px) {
    .watermark {
        font-size: 126px;
    }
}

.software-box {
    padding-top: calc(var(--space-40) + var(--space-40));
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(var(--space-40) + var(--space-50) + 5px);
    position: relative;
    height: 100%;
}

.software-box img.img-bg {
    position: absolute !important;
    max-width: 18% !important;
    top: 31% !important;
    pointer-events: none;
}

.software-box-title {
    font-size: var(--font-50);
    line-height: 1.4974;
    color: #fff;
    margin-bottom: var(--space-30);
}

.software-left {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.software-right {
    width: 47.3%;
    margin-right: -1%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.software-left .text.txt {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
    line-height: 194%;
}

.software-left .text.txt img {
    float: left;
    margin-right: 22px;
    margin-bottom: 16px;
    margin-top: 12px;
}

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

.software-box-wrapper:before {
    content: '';
    border-radius: 0 53px 53px 0;
    width: 121%;
    height: 100%;
    backdrop-filter: blur(18px);
    background: linear-gradient(92deg, #e5136c 0%, #00a0e3 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.software-box-wrapper {
    position: relative;
}

.software-box-wrapper img.img-bg {
    right: -10%;
    top: 78%;
    max-width: 21%;
}

.packages-box-container {
    padding-top: calc(var(--space-40) + var(--space-40));
    padding-bottom: var(--space-50);
}

.packages-box-wrapper {
    display: flex;
    position: relative;
    justify-content: space-between;
}

.packages-box-title {
    font-weight: 700;
    font-size: var(--font-48);
    line-height: 1.29031;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 26px;
}

.packages-info > p {
    font-weight: 300;
    font-size: var(--font-32);
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 22px;
}

.article-text ul li {
    left: 60px;
}

.article-text ul li:before {
    background: url(../images/icons/li_plus.svg) no-repeat left center;
    content: '';
    display: inline-block;
    width: 36px;
    height: 36px;
    top: 13px;
    left: -20px;
    margin-left: -36px;
}

.packages-left ul li:before {
    background: url(../images/icons/li_plus.svg) no-repeat left center;
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -18px;
}

.packages-left ul li {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    padding-left: 60px;
    margin-bottom: 31px;
}

@media screen and (min-width: 1460px) {
    .packages-info {
        max-width: 80%;
    }
}

.packages-left {
    width: 43%;
}

.packages-right {
    width: 53%;
    margin-right: -4.4%;
}

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

.packages-right-photo {
    margin-bottom: var(--space-60);
}

.packages-buttons {
    display: flex;
    justify-content: flex-end;
    margin-right: 8.2%;
    margin-bottom: calc(var(--space-40) + 5px);
}

.packages-buttons .btn {
    margin-left: 13px;
}

.packages-box-note {
    text-align: right;
    margin-right: 8.2%;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.benefits-box-wrapper {
    position: relative;
    padding: var(--space-40) 0 var(--space-60) 4%;
}

.functions-box-wrapper img.img-bg {
    right: 0;
    top: 22%;
}

.software-box img.img-bg {
    right: -10%;
    top: 78%;
    max-width: 21%;
}

.packages-box-wrapper img.img-bg {
    left: -10%;
    max-width: 22%;
    top: 20%;
}

.benefits-slider {
    margin-right: -3%;
}

.benefits-slider .slick-track {
    display: flex !important;
}

.benefits-slider .slick-slide {
    height: inherit !important;
}

.benefit-item {
    padding: 0 0.5%;
}

.benefit-item-content {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.benefit-icon svg *[stroke] {
    stroke: #fff;
}

.benefit-icon svg *[fill] {
    fill: #fff;
}

.benefit-icon {
    margin-bottom: 20px;
    max-width: 52%;
    aspect-ratio: 1;
    overflow: hidden;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15%;
    position: relative;
}

.benefit-icon .icon-border {
    inset: 10px;
}

.functions-box-icon {
    width: 34%;
    padding: 7%;
}

.benefit-item {
    padding-top: 0;
}

.btn-user-icon:has(> .icon-border) > svg {
    width: 65%;
}

.btn-user-icon {
    position: relative;
}

div:has(> .icon-border) > svg {
    width: 50%;
    height: 50%;
}

.new-package-icon:has(> .icon-border) > svg {
    width: 66%;
    height: 66%;
}


div:has(> .icon-border) {
    position: relative;
    aspect-ratio: 1;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-icon:has(> .icon-border) > svg,
.benefit-icon:has(> .icon-border) > svg {
    width: 40%;
    height: 40%;
}

.faq-help-icon:has(> .icon-border) > svg {
    width: 60%;
    height: 60%;
}

.small-box-icon:has(> .icon-border) > svg {
    width: 65%;
    height: 72%;
}

.login-box-icon:has(> .icon-border) > svg,
.online-shop-icon:has(> .icon-border) > svg {
    width: 40%;
    height: 40%;
}

.icon-border-white + svg *[stroke] {
    stroke: #fff;
}

.icon-border-white + svg *[fill] {
    fill: #fff;
}

.benefit-item:nth-child(2n) .icon-border path:nth-child(1) {
    animation-direction: normal;
}

.benefit-item:nth-child(2n) .icon-border path:nth-child(2) {
    animation-direction: reverse;
}

.benefit-name {
    font-weight: 700;
    font-size: var(--font-24);
    line-height: 1.20305;
    text-align: center;
    color: #fff;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    min-height: 58px;
    justify-content: center;
}

.benefit-item .text.txt {
    color: #fff;
}

.benefits-box-wrapper:before {
    content: '';
    width: 121%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    backdrop-filter: blur(18px);
    background: linear-gradient(44deg, #3d2d64 0%, #003e99 43.5%, #00a0e3 100%);
    border-radius: 53px 0 0 53px;
}

.benefits-box-wrapper img.img-bg {
    top: -12%;
    right: -10%;
    max-width: 21%;
}

.history-box-container {
    padding-top: calc(var(--space-30) + var(--space-40));
    position: relative;
}

.benefits-box-wrapper button.slick-arrow {
    z-index: 5;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    background-color: transparent;
    font-size: 29px;
    line-height: 58px;
    width: 60px;
    height: 60px;
}

.benefits-box-wrapper .prev {
    border: 1px solid #000;
    left: 50%;
    margin-left: -867px;
    color: #000;
}

.benefits-box-wrapper .next {
    right: 50%;
    margin-right: -773px;
    border: 1px solid rgb(255, 255, 255);
    color: #fff;
}


.benefits-box-wrapper .slick-prev {
    margin-left: -771px;
}

.benefits-box-wrapper .slick-next {
    margin-left: -710px;
}

@media screen and (min-width: 1140px) {
    .benefits-box-wrapper button.slick-arrow:hover, .history-slider button.slick-arrow:hover {
        background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
        border-color: #fff;
        color: #fff;
    }
}

.history-item {
    padding: 0 20px;


}

.history-item-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 53px;
    /* backdrop-filter: blur(18.967119216918945px); */
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: var(--space-40);
}

.history-slider {
    margin: 0 -20px;
}

.history-name {
    font-weight: 700;
    font-size: var(--font-25);
    line-height: 1.6;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.history-photo {
    width: 165px;
    height: 165px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-item-content .text.txt {
    padding: 0 78px;
    text-align: center;
}

.history-slider-wrapper {
    position: relative
}

.history-slider-wrapper .watermark {
    font-weight: normal;
    font-size: min(145px, 8vw);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
    padding-left: 4%;
    opacity: 0.1;
    line-height: 126%;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(0, -50%);
}

@-moz-document url-prefix() {
    .history-slider-wrapper .watermark {
        opacity: 0.3;
    }
}

.history-slider button.slick-arrow {
    z-index: 5;
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    background-color: transparent;
    font-size: 29px;
    line-height: 58px;
    width: 60px;
    height: 60px;
    border: 1px solid #000;
    color: #000;
}

.history-slider .prev {
    left: 50%;
    margin-left: -820px;
}

.history-slider .next {
    right: 50%;
    margin-right: -820px;
}

span.play {
    width: 27%;
    height: 42%;
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

span.play > svg {
    width: 40px;
    margin-right: -9px;
    height: 40px;
}

.about-clone .page-heading-subtitle {
    margin-bottom: 24px;
}

.about-clone img.img-bg {
    top: 73%;
}

.watermark2 {
    font-weight: 700;
    font-size: 6.6vw;
    line-height: 1;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 6%;
    left: 8%;
}

.btn.shop-online:hover .btn-icon {
    background: #fff;
}

.btn.shop-online:hover .btn-icon svg, .btn.shop-online:hover .btn-icon svg * {
    fill: var(--color-secondary);
}

.mode-box-wrapper {
    position: relative;
    padding-top: calc(var(--space-50) + 5px);
    padding-left: 134px;
    padding-bottom: calc(var(--space-60) + 5px);
}

.mode-box {
    display: flex;
    position: relative;
}

.mode-box-title {
    font-weight: 700;
    font-size: var(--font-50);
    line-height: 1.4974;
    color: #fff;
    margin-bottom: 16px;
}

.mode-item {
    width: 43%;
    margin-right: 3%;
}

.mode-item .text.txt {
    font-weight: 300;
    font-size: var(--font-30);
    /* line-height: 40px; */
    line-height: 1.33333;
    color: #fff;
}

.mode-item .text.txt ul li {
    font-weight: 300;
    font-size: var(--font-20);
    color: #fff;
    line-height: 141%;
}


.mode-item .text.txt ul {
    padding-top: 16px;
}

.about-box-container.about-clone {
    padding-bottom: var(--space-60);
}

.mode-box-wrapper:before {
    content: '';
    width: 121%;
    height: 100%;
    backdrop-filter: blur(18px);
    background: linear-gradient(92deg, #e5136c 0%, #00a0e3 100%);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 53px 0 0 53px;
}

.modules-box-container.modules-clone {
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
    padding-bottom: calc(var(--space-40) + var(--space-30) + 5px);
}

.modules-clone .modules-box ul li span {
    padding: 8px 43px;
}

.modules-clone .modules-box ul li {
    margin: 5px;
}


.interface-box-wrapper {
    padding-left: 134px;
    padding-bottom: var(--space-30);
    padding-top: var(--space-60);
    position: relative;
}

.interface-box {
    display: flex;
    margin: 0 -15px;
}

.interface-item {
    width: 33.33%;
    padding: 0 15px;
}

.interface-item-title {
    font-weight: 700;
    font-size: var(--font-32);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #fff;
    margin-bottom: var(--space-40);
    position: relative;
}

.interface-item ul li:before {
    background: url(../images/icons/fun_li.svg) no-repeat left center;
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -18px;
}

.interface-item ul li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 32px;
    padding-left: 66px;
    position: relative;
    padding-right: 13%;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}

.interface-box-wrapper:before {
    content: '';
    width: 116%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    backdrop-filter: blur(18px);
    border-radius: 0 53px 53px 0;
    background: linear-gradient(-56deg, #0251c6 0%, #392e68 100%);
}

.packages-box-watermark {
    font-weight: 700;
    font-size: 96px;
    line-height: 1.25;
    text-transform: uppercase;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    width: 33.6%;
    margin-left: -11%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@-moz-document url-prefix() {
    .packages-box-watermark {
        opacity: 0.45;
    }
}

.packages-box {
    display: flex;
    justify-content: space-between;
}

.packages-clone .packages-box-title {
    font-size: var(--font-32);
    margin-bottom: 4px;
}

.packages-clone .packages-box-wrapper {
    display: block;
}

.packages-clone .packages-right {
    width: 35.6%;
    margin-right: -2%;
}

.packages-clone .packages-left {
    width: 28%;
    padding-top: 12px;
}

.packages-clone .packages-info {
    margin-bottom: 15px;
}

.packages-clone .packages-left ul li {
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    line-height: 183%;
    min-height: calc(2em * 1.43);
}

.packages-clone .packages-left ul li:before {
    background: url(../images/icons/fun_li2.svg) no-repeat left center;
}

.packages-box-container.packages-clone {
    padding-bottom: calc(var(--space-30) + var(--space-40));
}

.packages-clone .packages-right-photo {
    margin-bottom: 0;
}

.technical-box-title {
    font-size: var(--font-50);
    line-height: 1.4974;
    color: #fff;
    padding-left: 134px;
    padding-top: 22px;
    padding-bottom: 22px;
    position: relative;
    transform-style: preserve-3d;
}

.technical-box-header:before {
    content: '';
    border-radius: 53px 0 0 53px;
    background: #e5136c;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(-1px);
}

.technical-box {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    justify-content: space-between;
    padding-bottom: calc(var(--space-30) + var(--space-40));
}

.technical-box-header {
    position: relative;
    margin-bottom: var(--space-60);
}

.technical-left {
    width: 49.5%;
    padding-top: calc(var(--space-30) + 5px);
}

.technical-right {
    width: 44.64%;
}

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

.technical-left ul {
    border-top: 1px solid #e5136c;
}

.technical-left ul li {
    border-bottom: 1px solid #e5136c;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.25;
    color: #000;
}

.technical-box + .buttons-center {
    display: flex;
    justify-content: center;
    padding-bottom: calc(var(--space-30) + var(--space-40));
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.btn.catalog-card {
    border-radius: 30px;
    width: 536px;
    height: 60px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    justify-content: space-between;
    padding-left: 27px;
    padding-right: 6px;
}

.technical-box-container {
    padding-bottom: 20px;
}


.box-header-page {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 22px;
}

.news-box-container {
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
}

.news-box-container .page-heading-title {
    margin-bottom: 24px;
}

.news-box {
    display: flex;
    flex-wrap: wrap;
    margin: -30px;
    padding-bottom: 1px;
}

.news-item {
    width: 33.33%;
    padding: 30px;
}

a.news-link {
    display: block;
}

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

.news-box-container .pagination-wrapper {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    padding: 50px 0 50px;
}

.newsletter-box .newsletter-icon {
    width: 6%;
    margin-right: 2%;
    padding: 1%;
    margin-bottom: 0;
}

.newsletter-box .newsletter-text {
    width: 44%;
    text-align: left;
    margin-bottom: 0;
}

.newsletter-box {
    display: flex;
    padding-top: var(--space-50);
    align-items: center;
    padding-bottom: var(--space-50);
    position: relative;
}

.newsletter-box .newsletter-title {
    text-align: left;
    font-weight: 700;
    font-size: var(--font-48);
    line-height: 1.29031;
    color: #fff;
    margin-bottom: -2px;
}

.newsletter-subtitle {
    font-weight: 300;
    font-size: var(--font-32);
    color: #fff;
}

.newsletter-form-box {
    width: 38%;
}

.newsletter-form-box {
}

.newsletter-form-box form.form {
    padding-top: 0;
}

.newsletter-form-box {
}

.newsletter-form-box .form-control {
    border-radius: 23px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}

.newsletter-box button.btn.btn-lg.btn-tertiary {
    border-radius: 131px;
    width: 279px;
    height: 56px;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    display: block;
    margin: 20px auto 0;
}

.newsletter-box button.btn.btn-lg.btn-tertiary:hover {
    background-color: #fff;
    color: var(--color-tertiary);
}

.newsletter-box-container {
    margin-bottom: 20px;
}


.newsletter-box:before {
    content: '';
    border-radius: 0 53px 53px 0;
    width: 121%;
    height: 100%;
    backdrop-filter: blur(18px);
    background: linear-gradient(92deg, #e5136c 0%, #00a0e3 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.text-box-container {
    padding-top: 90px;
}

.box-header-article .page-heading-subtitle {
    margin-bottom: 0;
}

.box-header-article {
    text-align: center;
    padding: var(--space-60) 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 53px;
    margin-bottom: calc(var(--space-50) + 5px);
}

.news-details-container .text ul > li::before {
    background: url(../images/icons/li_plus.svg) no-repeat left center;
    width: 36px;
    height: 36px;
    margin-left: -41px;
    top: 16px;
    left: -20px;
}


.news-details-container {
    padding-top: 90px;
    padding-bottom: var(--space-60);
}


.news-details-container .text ul > li {
    left: 60px;
    padding-right: 60px;
    margin-bottom: 12px;
}

.news-details-container .text ul {
    margin-bottom: calc(var(--space-40) + 5px);
}

small {
    font-size: 14px;
}

.btn-back {
    min-width: 283px;
    height: 56px;
    line-height: 54px;
    border-radius: 30px;
}

.other-box-wrapper {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--space-60);
}

.other-box-title {
    font-weight: 700;
    font-size: var(--font-48);
    /* line-height: 62px; */
    line-height: 1.29031;
    text-align: center;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.other-box-wrapper .box-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1360px;
    margin: 0 auto var(--space-60);
    padding-bottom: 0;
}

.other-box-wrapper .box-header .btn {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -23px;
}

.other-box-wrapper .news-box-wrapper {
    max-width: 1360px;
    margin: 0 auto;
}

.other-box-container {
    margin-bottom: var(--space-60);
    margin-top: var(--space-60);
}

.faq-box-container {
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
}

.faq-box-container .page-heading-title {
    margin-bottom: 26px;
}

.faq-box-container .box-header-page {
    padding-bottom: 0;
}

.documentation-box {
    justify-content: center;
    text-align: center;
    padding-top: calc(var(--space-40) + 5px);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 53px;
    padding-bottom: calc(var(--space-40) + 5px);
    flex-wrap: wrap;
}

.documentation-box .btn {
    border-radius: 30px;
    height: 60px;
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 5px 12px;
    min-width: 346px;
    justify-content: space-between;
    padding: 0 11px 0 28px;
}

.documentation-box .btn .btn-icon svg, .documentation-box .btn .btn-icon svg * {
    fill: #fff;
}

.documentation-box .btn .btn-icon svg {
    width: 19px;
}

.accordion-box-wrapper {
    display: flex;
    padding-top: calc(var(--space-50) + 5px);
    justify-content: space-between;
    margin-bottom: var(--space-40);
    position: relative;
}

.accordion-box:nth-child(2n) .accordion-box-inner {
    position: relative;
}

.accordion-box:nth-child(2n) .accordion-box-inner:before {
    content: "";
    position: absolute;
    left: -13.5%;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-box {
    width: 44%;
}

.accordion-box-title {
    font-weight: 700;
    font-size: var(--font-32);
    color: #e5136c;
    margin-bottom: 27px;
}


.accordion-box {
    margin-bottom: 20px;
}

.accordion-box-inner {
    border-bottom: 1px solid #e5136c;
}

.accordion-header {
    position: relative;
    border-top: 1px solid #e5136c;
    cursor: pointer;
}


.accordion-name {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    padding: 17px 52px 17px 16px;
}

.accordion-arrow {
    text-align: center;
    transition: all 300ms ease-out;
    position: absolute;
    top: 50%;
    margin-top: -18px;
    right: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    color: #fff;
    display: none;
}

@media screen and (min-width: 1140px) {
    .accordion-header:hover .accordion-arrow {
        transform: rotate(180deg);
        -ms-transform: rotate(180deg);
    }
}

.accordion-content {
    display: none;
    border-top: 0 none;
    padding: var(--space-40) 3px var(--space-40) 8px;
}

.accordion-content .text iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;

}

.accordion-header.active {
    border-radius: 20px;
    background: #e5136c;
    border-top: 1px solid #fff;
}

.accordion-header.active .accordion-name {
    color: #fff;
}

.help-box {
    display: flex;
    justify-content: space-between;
    padding-top: calc(var(--space-30) + 5px);
    padding-right: 75px;
    padding-bottom: calc(var(--space-30) + 5px);
    align-items: center;
    position: relative;
}

.help-icon {
    width: 14%;
    position: relative;
    display: block;
    padding: 2%;
}

.help-img {
    width: 33%;
    position: relative;
}

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

.help-text {
    width: 47%;
    position: relative;
}

.help-text-title {
    font-weight: 700;
    font-size: var(--font-33);
    line-height: 1.21212;
    color: #fff;
    margin-bottom: 25px;
}

.help-text .text.txt {
    font-weight: 300;
    font-size: var(--font-21);
    color: #fff;
    line-height: 146%;
}


.help-box:before {
    content: '';
    border-radius: 0 53px 53px 0;
    width: 121%;
    height: 100%;
    backdrop-filter: blur(18px);
    background: linear-gradient(92deg, #e5136c 0%, #00a0e3 100%);
    position: absolute;
    right: 0;
    top: 0;
}


img.img-bg.img-bg1 {
    top: 2%;
    max-width: 22%;
    left: -10%;
}

img.img-bg.img-bg2 {
    top: 48%;
    max-width: 22%;
    right: -10%;
}

img.dp5-mask {
    position: absolute;
    max-width: 37%;
    left: 33%;
}

.box-header-links {
    display: flex;
    justify-content: flex-end;
    margin-left: var(--space-60);
}

.box-header-right {
    display: flex;
    flex-wrap: wrap;
}

.box-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-40);
    align-items: center;
}

.contact-box-container {
    padding-top: 90px;
}

.box-header-links .btn {
    border-radius: 30px;
    height: 60px;
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    min-width: 328px;
    justify-content: space-between;
    padding: 0 0 0 28px;
    margin-left: 65px;
}

.box-header-links .btn .btn-icon {
    width: 54px;
    height: 54px;
    padding: 0;
    flex-shrink: 0;
}


.grid-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(var(--space-30) + var(--space-40));
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: calc(var(--space-30) + var(--space-40));
}

.grid-photo {
    width: 50%;
    position: relative;
    z-index: 2;
}

.grid-photo img {
    display: block;
    max-width: 100%;
    border-radius: 50px;
}

.grid-text {
    width: 39%;
    padding-top: 40px;
}

.grid-title {
    font-weight: 700;
    font-size: var(--font-32);
    line-height: 1.25;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 21px;
}

.link-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid currentColor;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.link-icon svg {
    fill: transparent;
}

.contact-link .caption {
    padding-left: 20px;
}

.contact-links.phones {
    flex-direction: column;
    align-items: flex-start;
}

.contact-links.others {
    flex-direction: column;
}

.grid-text-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 14px;
}

.contact-links.phones .contact-link {
    padding: 8px 20px 8px 0;
}

.contact-links.others .contact-link {
    padding: 8px 20px 8px 0;
}

.grid-text-contact .social-box ul li {
    padding: 9px;
}

.grid-text-contact .social-box ul {
    margin: -9px;
}

.grid-item:nth-child(even) {
    flex-direction: row-reverse;
}

.grid-text .text.txt {
    font-weight: 300;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: #003e99;
}

.online-shop-container.small-shop-online {
    padding-bottom: 20px;
}

.small-shop-online .online-shop-photo {
    width: 34%;
    right: 10.5%;
    margin-top: -15px;
    margin-bottom: -19px;
}

.grid-box-wrapper {
    position: relative;
}

.grid-box-wrapper img.img-bg {
    left: -10%;
    top: -2%;
    max-width: 22%;
}

.contact-box-wrapper img.img-bg {
    left: -10%;
    top: -3%;
    max-width: 22%;
}

.align-bottom {
    align-self: flex-end;
}

.contact-box-wrapper {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--space-60);
    display: flex;
    justify-content: space-between;
    padding-bottom: 71px;
}

.contact-box {
    width: 25.5%;
    padding-right: 20px;
    padding-top: 10px;
}

.form-box-wrapper {
    width: 75%;
    padding: 59px 7.3%;
    border-radius: 53px;
    /* backdrop-filter: blur(18.8282470703125px); */
    background: linear-gradient(104deg, #3d2d64 0%, #003e99 43.5%, #00a0e3 100%);
}

.contact-box-links {
    padding-top: var(--space-30);
}

.contact-box-links .contact-links:first-child .contact-link {
    line-height: 274%;
    align-items: flex-start;
}

.contact-box-links .contact-links:first-child .contact-link .link-icon {
    margin-top: 7px;
}

.contact-box-links .contact-links:first-child {
    margin-bottom: calc(var(--space-40) + 5px);
}

.contact-link strong {
    font-weight: 600;
}

.contact-box-links .contact-link {
    width: 100%;
    margin-bottom: 14px;
}

.contact-box-links .contact-link .caption {
    white-space: nowrap;
    display: flex;
}

.contact-box-links .contact-links .contact-link {
}

.contact-box-links .contact-links {
    margin-bottom: 42px;
}


.contact-box-wrapper .social-list > ul > li {
    padding: 9px;
}

.contact-box-wrapper .social-list > ul {
    margin: -9px;
}

.form-box-title strong {
    font-weight: 700;
    font-size: var(--font-32);
    color: #fff;
    margin-right: 40px;
}

.row.before-consent-row {
    font-weight: bold;
}

.row.after-consent-row {
    font-weight: bold;
    padding-top: 10px;
}

.form .consent-row {
    margin-bottom: 0;
}

.form-box-wrapper form.form > .row:last-child {
    align-items: center;
}

.form-box-wrapper form.form .row-last-child .col-xs-4 {
    align-items: flex-end;
}

.row:last-child .col-xs-12.col-sm-5 {
    text-align: right;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 53px;
}

.packages-subpage .packages-box-wrapper {
    margin-bottom: calc(var(--space-30) + var(--space-40));
}


.packages-list-title {
    font-weight: 700;
    font-size: var(--font-50);
    line-height: 1.4974;
    background: linear-gradient(90deg, #00a0e3 0%, #e5136c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.packages-list-container .box-header {
    padding-bottom: var(--space-40);
    align-items: center;
}

.packages-list-container .box-header .btn {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    min-width: 300px;
}

.packages-list-container .box-header .btn:hover {
    color: var(--color-tertiary);
}

.packages-list {
    display: flex;
    flex-wrap: wrap;
    margin: -30px;
}

.packages-list-item {
    padding: 30px;
}

.packages-list-item-width-short {
    width: 25%;
}

.packages-list-item-width-long {
    width: 50%;
}

.package-link {
    border: 2px solid #00409A;
    border-radius: 25px;
}

.packages-list-item-width-long .package-link {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 38px 33px;
}

.packages-list-item-theme-white.packages-list-item-width-long .package-link {
    border-color: #e5136c;
}

.package-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    height: 100%;
}

.packages-list-item-theme-dark .package-link {
    background: #00409A;
}

.packages-list-item-theme-dark .package-name {
    color: #fff;
}

.package-label {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e5136c;
}

.package-name {
    font-weight: 600;
    font-size: var(--font-20);
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    color: #00409a;
    margin-bottom: 20px;
}

.package-info-text {
    font-weight: 400;
    font-size: 14px;
    color: #00409a;
}

.package-link .btn {
    background: #0E73BF;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    width: 172px;
    height: 36px;
    line-height: 34px;
    border-color: #0E73BF;
}

.packages-list-item-width-long .package-link .btn {
    width: 201px;
    height: 46px;
    line-height: 44px;
}

.package-left-bottom {
    display: flex;
    padding-bottom: 20px;
    align-items: flex-end;
    justify-content: center;
}

.packages-list-item-width-long .package-name {
    font-size: var(--font-32);
    text-align: left;
    margin-bottom: calc(var(--space-30) + 5px);
}

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

.package-info {
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.package-info-icon {

    flex-shrink: 0;
}

.package-info-icon img {
    display: block;
    max-width: 100%;
}

.packages-list-item-width-long .package-left-bottom {
    padding-bottom: 0;
}

.packages-list-item-theme-dark .package-link .btn {
    border-color: #fff;
}

.package-link .btn:hover {
    border-color: #0E73BF;
    color: #0E73BF;
    background: #fff;
}

.packages-list-container {
    padding-bottom: calc(var(--space-30) + var(--space-40));
}

.new-package-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-60);
    padding-bottom: var(--space-50);
    padding-right: 10%;
    position: relative;
}

.new-package-icon {
    padding: 2%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(10%, 62px);
    margin-right: 2%;
    position: relative;
}

.new-package-text {
    width: 56%;
    margin-right: 7%;
    position: relative;
}

.new-package-btn {
    width: 22%;
    position: relative;
}

.new-package-btn .btn {
    border-radius: 28px;
    height: 56px;
    width: 100%;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 54px;
}

.new-package-text .text.txt {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
}

.new-package-box:before {
    content: '';
    border-radius: 0 53px 53px 0;
    width: 121%;
    height: 100%;
    backdrop-filter: blur(18px);
    background: linear-gradient(92deg, #e5136c 0%, #00a0e3 100%);
    position: absolute;
    right: 0;
    top: 0;
}

.user-zone-sub-box-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 38px;
    margin-bottom: calc(var(--space-40) + 5px);
}

.user-zone-sub-box-wrapper .user-zone-box {
    margin-bottom: 0;
    width: 47%;
}

.user-zone-sub-box-wrapper .user-zone-title {
    margin-bottom: 0;
    text-align: left;
    width: 56%;
    padding-right: 20px;
}

.user-zone-container.user-zone-subpage {
    padding-bottom: 0;
}

.login-header .user-zone-container.user-zone-subpage {
    padding-bottom: 0;
}

.login-box-header {
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.login-box-title {
    font-weight: 700;
    font-size: var(--font-32);
    color: #fff;
}

.login-box-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--space-60) + 5px);
}

.user-zone-subpage .user-zone-photo {
    width: 37.354%;
    margin: 0 6% 0 0;
}

.footer-box.mobile-only {
    display: none !important;
}

.login-box {
    width: 49.57%;
    padding: 50px 50px;
    border-radius: 53px;
    background: linear-gradient(90deg, #003e99 0%, #00a0e3 100%);
}

.login-box-header .btn {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    margin-left: 29px;
}

.login-box label.form-element-name {
    color: #fff;
    margin-bottom: 20px;
}

.login-box .form-group {
    margin-bottom: 10px;
}

.login-box > form > .row:last-child {
    padding-top: var(--space-30);
    align-items: center;
}

.login-box .row:last-child .col-sm-7 {
    text-align: right;
    color: #fff;
}

.forgot a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.login-box .row:last-child .col-sm-7 a strong {
    text-decoration: underline;
}

.forgot {
    font-weight: 400;
    font-size: 14px;
    text-align: right;
    color: #fff;
}

.login-box .row:last-child .btn {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding-right: 98px;
    padding-left: 24px;
    position: relative;
}

.login-box .checkboxradio-container {
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.login-box .form .consent-row .text label {
    color: #fff;
    letter-spacing: 0.05em;
}

.login-box .form .consent-row .text label {
    color: #fff
}

.forgot a:hover {
    text-decoration: none;
}

.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    padding-top: 19px;
    padding-bottom: 18px;
    background: #fff;
}

.header-bottom-inner .btn {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.header-bottom-inner .btn-user-icon {
    width: 46px;
    height: 46px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #392e68;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}

.header-bottom-inner .btn-user-item {
    font-size: 15px;
    color: #392e68;
    margin: 0 35px;
}

.user-name {
    display: flex;
    justify-content: normal;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    color: #392e68;
    margin-right: 25px;
}

.user-name-icon {
    background: #ff004d;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.user-name .mobile-only {
    display: none;
}

.header-bottom-inner .user-zone-box {
    margin-bottom: 0;
}

/*.subpage #content {
    padding-top: 258px;
}*/

.header-bottom {
    background: #fff;
    box-shadow: 0 10px 10px 0 rgba(0, 62, 153, 0.38);
}

.user-account-buttons .mobile-only {
    display: none;
}

.user-account-buttons {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 10px;
}
.main-slider .slick-list .slide{
    flex-shrink: 0;
    height: unset !important;
}
.main-slider .slick-list, .main-slider .slick-track {
    width: 100%;
    display: flex;
}
.slider-logged .slide-box {
    padding-top: var(--space-40);
}
.slider .slide-box .slide-left-only-image{
    height: unset;
    align-self: center;
}
.slider .slide-box{
    height: 100%;
    align-content: center;
    flex-wrap: wrap;
}
.slider-logged {
    padding-top: 83px;
    min-height: 670px;
    position: relative;
    background: url(../images/subslider-bg.webp) no-repeat center center / cover;
    padding-bottom: var(--space-50);
}

.slider-logged .title1-left {
    font-weight: 700;
    font-size: var(--font-32);
    line-height: 1.5625;
    text-align: center;
    color: #fff;
}

.slider-logged .title2-left {
    font-size: var(--font-32);
    line-height: 1.5625;
    text-align: center;
    color: #fff;
    margin-bottom: 33px;
}

.slider-logged .slide-left-img {
    margin: 0 auto;
    width: 61%;
}

.slider-logged .title1-right {
    font-weight: 700;
    font-size: var(--font-22);
    line-height: 1.36364;
    text-align: center;
    color: #fff;
}

.slider-logged .title2-right {
    font-size: var(--font-22);
    line-height: 1.36364;
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-30);
    padding: 0 5px;
}

.slider-logged .slide-right-img {
    width: 67%;
    flex-grow: 1;
    text-align: center;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 15px;
}

.slider-logged .slide-left-img {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.slider-logged .slide-left {
    padding-top: var(--space-40);
    padding-bottom: 31px;
    display: flex;
    flex-direction: column;
}

.slider-logged .slide-right {
    padding-bottom: 16px;
}

.user-zone-sub-container {
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
    padding-bottom: calc(var(--space-60) + 5px);
}

.user-zone-sub-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 21px;
}

.user-zone-sub-item {
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 53px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.06);
    width: 32%;
    padding: 47px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-zone-sub-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.user-sub-title {
    font-weight: 700;
    font-size: var(--font-36);
    line-height: 1.72042;
    text-transform: uppercase;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-sub-icon > svg {
    width: 30px;
    height: 30px;
}
.functions-box-icon{
    position: relative;
}
.user-sub-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    position: relative;
    height: 88px;
    margin-right: 16px;
}

.user-zone-sub-text {
    margin-bottom: 30px;
}

.user-zone-sub-content .btn {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    width: 100%;
    display: block;
    position: relative;
    text-align: left;
    border-radius: 28px;
    height: 56px;
    line-height: 54px;
}

.user-zone-sub-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.customer-news-box-title {
    font-weight: 700;
    font-size: var(--font-50);
    line-height: 1.4974;
    background: linear-gradient(90deg, #00a0e3 0%, #e5136c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 25px;
}

.customer-news-box {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.customer-news {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--space-50);
    padding-bottom: var(--space-60);
}

.customer-news-title {
    font-weight: 700;
    font-size: var(--font-32);
    line-height: 1.25;
    color: #00a0e3;
    margin-bottom: 26px;
}

.customer-news-text .text.txt {
    font-weight: 300;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: #003e99;
}

.header-bottom-inner .btn-user-item:hover {
    color: var(--color-secondary);
}

.forum-posts table {
    width: 100%;
}

.forum-posts table th {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.06667;
    text-transform: uppercase;
    color: #000;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.forum-posts table td {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.06667;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    padding: 14px 10px;
    border-left: 0 none;
    border-right: 0 none;
}

.forum-search-box {
    padding-top: 22px;
    padding-bottom: calc(var(--space-30) + var(--space-40));
}


.forum-box-container {
    padding-top: calc(var(--space-50) + 5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


label.forum-search-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.00023;
    text-transform: uppercase;
    margin-bottom: 17px;
    color: #003e99;
}

.forum-search-input-box input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 534px;
    height: 46px;
    margin-right: 24px;
}

.forum-sections-container {
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
}

.forum-sections {
    display: flex;
    justify-content: space-between;
    margin: 0 -5px;
}


.forum-sections a {
    flex-grow: 1;
    margin: 0 6px;
    width: 33.33%;
}

.latest-forum-posts-title {
    max-height: calc(1em * 1.38889);
    overflow: hidden;
}

.latest-forum-posts-header {
    position: relative;
    font-weight: 700;
    font-size: var(--font-36);
    line-height: 1.38889;
    color: #fff;
    transform-style: preserve-3d;
    padding-top: 27px;
    padding-bottom: 27px;
    margin-bottom: var(--space-40);
}

.latest-forum-posts-header:before {
    content: '';
    width: 132%;
    height: 100%;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    backdrop-filter: blur(18px);
    background: linear-gradient(44deg, #3d2d64 0%, #003e99 43.5%, #00a0e3 100%);
    border-radius: 0 53px 53px 0;
    margin: 0 auto 0 -21%;
    transform: translateZ(-1px);
}

.forum-posts table th:last-child {
    width: 10%;
}

.forum-posts table th:first-child {
    padding-left: 0;
}

.author {
    margin-bottom: 9px;
}

span.item-rating-star {
    background: linear-gradient(180deg, #ffda48 0%, #825000 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.forum-posts table td:first-child {
    padding-left: 0;
}

button.button-advanced-search {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}

button.forum-search-button {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    margin-right: 6px;
    padding: 0 45px;
}

.forum-sections .btn {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
}

.forum-sections .btn-secondary:hover {
    background: var(--color-tertiary);
    border-color: var(--color-tertiary);
    color: #fff;
}

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

.latest-forum-posts {
    padding-bottom: var(--space-50);
}

.latest-forum-replies .latest-forum-posts-header:before {
    background: linear-gradient(-90deg, #e5136c 0%, #0193d9 100%);
    border-radius: 53px 0 0 53px;
    width: 131%;
    margin-left: -10%;
}

.latest-forum-replies .forum-posts table th:nth-child(3) {
    width: 20%;
}

.latest-forum-replies .forum-posts table th {
    width: 10%;
}

.latest-forum-replies .forum-posts table td:nth-child(3) {
    padding-right: 13%;
}

.latest-forum-replies {
    padding-bottom: var(--space-50);
}

.category-list ul li {
    padding: 5px;
}

.category-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
    max-height: 126px;
    overflow-x: hidden;
    overflow-y: auto;
}

.category-list ul::-webkit-scrollbar-thumb {
    border-radius: 6px;

    background-color: var(--color-secondary);
}

.category-list ul::-webkit-scrollbar {
    width: 9px;
    background-color: rgb(0, 0, 0, 0.1);
    border-left: 4px solid #fff;
    border-right: 4px solid #fff;
}

.category-list ul li a.btn-secondary.active,
.category-list ul li a.btn-secondary:focus,
.category-list ul li a.btn-secondary:hover {
    background: var(--color-tertiary) !important;
    border-color: var(--color-tertiary) !important;
    color: #fff !important;
}

.category-list ul li a {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-secondary);
    display: block;
    padding: 0 28px;
    height: 46px;
    line-height: 44px;
    background: transparent;
    border-radius: 23px;
    border: 1px solid var(--color-secondary);
}

.category-list ul li a.active {
    background: var(--color-secondary);
    color: #fff;
}

.category-list ul li:hover a {
    background: var(--color-secondary);
    color: #fff;
}

.category-list {
    padding-top: 10px;
    padding-bottom: 50px;
}

.category-forum-posts {
    padding-bottom: var(--space-50);
}

.text ol ul {
    margin-bottom: var(--space-30);
}

.text ol li p {
    margin-bottom: var(--space-30);
}

.forum-rules-container .latest-forum-posts-header:before {
    background: linear-gradient(-90deg, #e5136c 0%, #0193d9 100%);
    border-radius: 53px 0 0 53px;
    width: 131%;
    margin-left: -10%;
}

section.download-box-container {
    padding-top: calc(var(--space-50) + 5px);
}

.text-box-intro {
    padding-top: 15px;
    padding-bottom: calc(var(--space-60) + 5px);
}

.text-box-intro .text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}

.download-category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -6px;
}

li {
}

.download-category ul li {
    padding: 6px;
}

.download-category ul li a {
    width: 216px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 53px;
    padding: 6px 6px 27px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}


.download-category-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #000;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    transition: color 300ms;
    padding: 0 13px;
}

.download-category-icon {
    width: 80%;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.download-category ul li.active a {
}

.download-category ul li a .download-category-icon {
    filter: brightness(0) saturate(100) invert(0);
    transition: filter 300ms;

}

.download-category ul li a:hover .download-category-icon,
.download-category ul li.active a .download-category-icon {
    filter: brightness(0) saturate(100) invert(1);
}

.download-category ul li a:hover,
.download-category ul li.active a {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.download-category ul li a:hover .download-category-title,
.download-category ul li.active a .download-category-title {
    color: #fff;
}

.download-category {
    margin-bottom: var(--space-60);
}

.file-name-box .icon-file {
    width: 15px;
    height: 15px;
    margin-right: 15px;
    flex-shrink: 0;
}

.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px -45px;
}

.files-list ul li {
    width: 50%;
    padding: 5px 45px;
}


.files-list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 17px 15px 22px;
    border: 1px solid #e5136c;
    border-radius: 25px;
}

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

    .files-list ul li a:hover {
        border-color: var(--color-secondary);
    }
}

.files-list ul li .file-name-box {
    display: flex;
    padding-right: 20px;
    align-items: center;
}

.files-list ul li .file-name-box .file-icon {
    margin-right: 14px;
    width: 15px;
    height: 21px;
}

.files-list ul li .file-name {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    color: #000;
}

.files-list ul li .file-download {
    border: 0 none;
    border-radius: 0;
    position: relative;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.files-list ul li .file-download svg * {
    fill: #000
}

.files-list {
    margin-bottom: var(--space-50);
    padding-bottom: calc(var(--space-40) + var(--space-30) + 5px);
    border-bottom: 1px solid var(--color-tertiary);
}

.legal-notice-title {
    display: inline-block;
    font-weight: 700;
    font-size: var(--font-36);
    line-height: 1.72042;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.legal-notice .text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}

.legal-notice {
    margin-bottom: calc(var(--space-30) + var(--space-40));
    padding-bottom: var(--space-60);
    border-bottom: 1px solid var(--color-tertiary);
}

.lastest-files-title {
    font-weight: 700;
    font-size: var(--font-36);
    line-height: 1.72042;
    color: #fff;
}

.files-box-wrapper {
    padding-top: calc(var(--space-30) + var(--space-40));
    padding-bottom: calc(var(--space-40) + var(--space-30) + 5px);
    position: relative;
}

.files-box-wrapper .box-header .btn {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 0 23px;
}

.files-box-wrapper .box-header {
    padding-bottom: var(--space-30);
}

.files ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.files ul li {
    padding: 5px;
}

.files ul li a {
    border: 2px solid var(--color-tertiary);
    border-radius: 23px;
    height: 46px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    color: #000;
    padding: 11px 28px 11px 28px;
    display: block;
}

.latest-files-container .files ul li a {
    border: 2px solid #fff;
    color: #fff;
}

.latest-files-container:before {
    content: '';
    width: 93%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    backdrop-filter: blur(18px);
    background: linear-gradient(270deg, #3d2d64 0%, #003e99 43.5%, #00a0e3 100%);
    border-radius: 53px 0 0 53px;
}

.latest-files-container {
    position: relative;
}

.files ul li a:hover {
    background: var(--color-tertiary);
    color: #fff;
}

.latest-files-container .files ul li a:hover {
    background: #fff;
    color: var(--color-secondary);
}

.download-box-container .forum-search-box {
    padding-top: 4px;
}

.download-box-container .files {
    padding-bottom: calc(var(--space-30) + var(--space-40));
}

.files.files-all > ul {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

.files.files-all ul li a {
    padding: 11px;
    width: 100%;
    word-break: break-word;
    height: 100%;
    min-height: 46px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-box-wrapper {
    justify-content: space-between;
    display: flex;
    margin-bottom: var(--space-50);
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-25);
    padding-bottom: calc(var(--space-30) + var(--space-40));
    border-bottom: 1px solid var(--color-tertiary);
}

.pagination-box-wrapper > .btn {
    min-width: 200px;
}

.pagination-wrapper {
    width: 60%;
    margin: 0;
    padding: 0;
}

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

.pagination-box-wrapper .pagination-wrapper ul li.next {
    float: right;
    padding-left: 10px;
}

.pagination-box-wrapper .pagination-wrapper ul li.prev {
    float: left;
    padding-right: 10px;
}

.seo-box-title {
    font-weight: 700;
    font-size: var(--font-36);
    line-height: 1.72042;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 26px;
}

.seo-box-container {
    padding-top: calc(var(--space-40) + var(--space-30) + 5px);
    padding-bottom: var(--space-30);
}

.seo-box-container .text.txt {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}


.help-box-container.help-subpage {
    padding-top: 130px;
}

.help-box-container.help-subpage .text-box-intro {
    padding-bottom: 0;
}

.help-subpage .help-box:before {
    right: auto;
    backdrop-filter: blur(18px);
    background: linear-gradient(260deg, #3d2d64 0%, #003e99 43.5%, #00a0e3 100%);
    left: 0;
    border-radius: 53px 0 0 53px;
}

.help-subpage .help-box {
    margin-top: var(--space-60);
    padding: var(--space-60) 0 var(--space-60) 10%;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.help-icon svg {
    display: block;
}

.help-subpage .help-text {
    width: auto;
    flex-grow: 1;
    padding-right: 44px;
}

.help-subpage .help-icon {
    margin-right: 40px;
    width: 16%;
}

.help-subpage .help-text .text.txt {
    font-weight: 300;
    font-size: var(--font-24);
    line-height: 1.25;
    color: #fff;
}

.help-subpage .help-box .btn {
    border-radius: 28px;
    height: 56px;
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    position: relative;
    text-align: left;
    padding-left: 33px;
    padding-right: calc(var(--space-60) * 2);
    line-height: 54px;
}

.form-box-container .form-box-wrapper {
    width: 100%;
    padding: 50px 20%;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.text.txt {
}

.info-text .text.txt {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}

.info-text {
    padding-bottom: var(--space-40);
    border-bottom: 1px solid var(--color-tertiary);
    margin-bottom: var(--space-40);
}

.info-text:last-child {
    margin-bottom: 0;
}

.online-shop-container {
    padding-bottom: 16px;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    height: 50px;
    width: 50px;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spinner 2s normal linear infinite;
    opacity: 0;
    z-index: 5;
}

@keyframes spinner {
    from {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    to {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

#map-container.awaiting .map-image {
    opacity: 0.5;
}

#map-container.awaiting .spinner {
    opacity: 1;
}


.btn.btn-lg.has-icon.user-zone:hover {
    background: #e5136c;
    border-color: #e5136c;
}

.login-box .form .before-consent-row .text {
    color: #fff;
    font-weight: normal;
}

.login-box .form .form-group-lg button.captcha-refresh {
    padding-right: 0;
    padding-left: 0;
    position: absolute;
}

.register-box-wrapper-container .login-box-wrapper {
    margin-bottom: 0;
}


#content > .container .alert-container > .alert {
    z-index: 9999;
}

.mainpage header .langs-menu a {
    background: url(../images/slider_bg.jpg) no-repeat top center;
    background-attachment: fixed;
}


.mainpage header.sticky {
    background: linear-gradient(-90deg, #5a063d 0%, #0b5eb7 35%, #2d4e70 100%);
}

.mainpage header.sticky .langs-menu a {
    background: linear-gradient(-90deg, #5a063d 0%, #0b5eb7 35%, #2d4e70 100%);
    background-attachment: fixed;

}

.modules-box ul li span a {
    color: #003e99;
}

.software-slider {
    margin-right: -4%;
}

ul.slick-dots {
    display: flex;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;

}

.software-slider ul.slick-dots {
    right: 0;
    margin-bottom: 0;
    position: absolute;

    bottom: 40px;
    width: 47.3%;
    margin-right: -2%;
    margin-top: 0;
    display: flex !important;
}

ul.slick-dots li {
    flex-shrink: 0;
    margin: 0 25px;
}

.software-slider ul.slick-dots li button {
    border: 0 none !important;

}

ul.slick-dots li button {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    width: 10px;
    height: 10px;
    display: block;
    font-size: 0;
    padding: 0;
}

.software-slider ul.slick-dots li.slick-active button {
    background: #fff
}

ul.slick-dots li button {
    border-radius: 50%;
    border: 1px solid var(--color-secondary);
    background: rgba(0, 160, 227, 0.3);
    width: 10px;
    height: 10px;
    display: block;
    border: 0 none;
    font-size: 0;
    padding: 0;
}

ul.slick-dots li.slick-active button {
    background: var(--color-secondary);
}


.software-slider .slick-track {
    display: flex !important;
    height: auto;
}

.software-slider .slick-slide {
    height: inherit !important;
}

.news-details-container + .container.container-small {
    margin-top: calc(-1 * var(--space-60));
}

.news-details-container + .container.container-small .pagination-wrapper {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    padding: 50px 0 50px;
}

.news-details-container .box-header-page {
    padding-bottom: 0;
}

.documentation-box .btn:hover .btn-icon svg, .documentation-box .btn:hover .btn-icon svg * {
    fill: var(--color-secondary)
}

.packages-list-item-theme-dark .package-info-text {
    color: #fff;
}

.reset-box-wrapper-container .login-box-header {
    justify-content: flex-start;
}

.login-box-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    padding: 25px;
}

.reset-box-wrapper-container .login-box-icon {
    margin-right: 30px;
}

.forum-posts table td a {
    color: #000;
}

.forum-posts .text table tr:nth-child(even) {
    background: transparent;
}

form#filter-form .form-element.form-element-text {
    margin-bottom: var(--space-25);
}

#latest-threads .forum-posts table td:nth-child(4) {
    white-space: nowrap;
}


td .item-rating-star-container {
    padding-top: 10px;
}


.small-boxes .slick-track {
    display: flex !important;
}

.small-boxes .slick-slide {
    height: inherit !important;
}

.contact-box-container .box-header .page-heading-title {
    margin-bottom: 0;
}

.contact-box-container .box-header .page-heading-subtitle {
    margin-bottom: 0;
}

.contact-box-container .box-header .box-header-links .btn {
    margin-left: 0;
}

.contact-box-container .box-header .page-heading-title {
    margin-bottom: 0;
    margin-right: 20px;
}

.contact-box-container .box-header .box-header-left {
    display: flex;
    align-items: center;
}

.filter-text .text.txt strong {
    font-weight: 700;
    font-size: var(--font-32);
}

.filter-text .text.txt {
    font-weight: 300;
    font-size: var(--font-24);
    text-align: center;
    background: linear-gradient(270deg, #e5136c 0%, #00a0e3 99.65%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom .footer-box.mobile-only {
    display: none !important;
}

.contact-box-container .box-header {
    padding-bottom: calc(var(--space-60) + 10px);
}

.map-filter-box {
    display: flex;
    width: 100%;
    margin-bottom: 46px;
    justify-content: space-between;
    align-items: center;
}

.filter-text {
    width: 70%;
    border: 0.83px solid rgba(0, 0, 0, 0.09);
    border-radius: 53px;
    backdrop-filter: blur(20.314687728881836px);
    background: rgba(255, 255, 255, 0.06);
    padding: 28px;
    padding-bottom: 14px;
}

.filter-select {
    width: 25.5%;
    padding-right: 3.2%;
    margin: -5px 0;
}

.filter-select .form-element-container.form-element-select-container {
    padding: 6px 0;
}

form#filter-form {
    padding-top: 0;
}


.filter-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 12px;
    padding-right: 44px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
}

.filter-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000;
}

.filter-select .select2-container .select2-selection--single {
    height: 48px;
    border-color: rgba(0, 0, 0, 0.09);
    border-radius: 25px;
    text-align: left;
    padding: 0;
}

.filter-select .select2-dropdown {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.09);
}

@keyframes map {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.map-marker {
    z-index: 2;
}

img.map-image {
    position: relative;
    border-radius: 0 53px 53px 0;
    display: block;
    max-width: 100%;
}

.map-left {
    width: 64.0625%;
    position: relative;
}

.map-marker img {
    box-shadow: 12px 12px 30px #03233f;
    border-radius: 50%;
    aspect-ratio: 1;
    max-width: 100%;
    display: block;
}

.map-container-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.map-right {
    max-width: 35.9375%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.map-right-content {
    padding-left: var(--space-60);
    padding-right: var(--container-padding);
    max-width: 412px;
    width: 100%;
}

.map-content-result {
    margin-bottom: var(--space-50);
}

.input-group-addon {
    background: #fff;
    font-weight: 600;
}

.modal-body .row-flex-center {
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uploaded-file-name {
    color: #000;
}

.uploaded-file .btn:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.uploaded-file .btn {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    padding: 0;
}

.upload-add-dropzone .well, .uploaded-file {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0;
    font-family: poppins, sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(255, 255, 255);
    border-color: #e5e5e5;
    border-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

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

input[type=file],
input[type=file]::file-selector-button {
    cursor: pointer;
}

.btn-file.btn {
    pointer-events: auto;
    cursor: pointer;
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    font-family: poppins, sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 300;
    background-color: rgb(255, 255, 255);
    border-color: #e5e5e5;
    border-radius: 23px;
}

.btn-file .upload-in-btn {
    background: #fff;
    cursor: pointer;
}

.map-content-text {
    font-weight: 300;
    line-height: 1.428571429;
    font-size: 14px;
}

.map-content-title {
    line-height: 1.428571429;

    font-size: 14px;
    font-weight: 700;
}


.dealers-map .map-container-row .map-left {
    width: unset;
    flex-grow: 1;
    margin-left: min(calc(((1440px - 2 * var(--container-padding) - 100vw) / 2)), calc(-1 * var(--container-padding)));

}

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

    .dealers-map .map-container-row .map-left {
        margin-left: min(calc(((1440px - 2 * var(--container-padding) - 1920px) / 2)), calc(-1 * var(--container-padding)));

    }
}

.dealers-map .map-container-row .map-right {
    width: 30%;
    flex-shrink: 0;
}

.dealers-map .map-container-row {
    flex-wrap: nowrap;
}

.map-right {
    height: 100%;
    display: flex;
    align-items: center;
}

.map-right-content::-webkit-scrollbar-thumb {
    border-radius: 6px;

    background-color: var(--color-secondary);
}

.map-right-content::-webkit-scrollbar {
    width: 9px;
    background-color: rgb(0, 0, 0, 0.1);
    border-left: 4px solid #fff;
    border-right: 4px solid #fff;
}


.user-zone-sub-box-wrapper {
    margin-top: var(--space-40);
}

.map-right-content {
    overflow: auto;
    height: 100%;
    max-height: min(875px, 45vw);
}

.login-box-header {
    justify-content: flex-start;
    gap: var(--space-25);
}

@keyframes markerstarred {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0;

    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px var(--color-primary), 0 0 10px var(--color-primary), 0 0 5px var(--color-primary);

    }
}

@keyframes marker {
    0% {
        transform: scale(0.7);
        opacity: 0;
        box-shadow: 0 0 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 15px #fff, 0 0 10px #fff, 0 0 5px #fff;
    }

}

.map-marker.starred {
    width: 64px;
}

.map-marker.starred img {

    animation: markerstarred 2.5s ease-in-out infinite alternate;
}

.map-marker img {
    transform: scale(0.7);

    animation: marker 4s ease-in-out infinite alternate;
}

.filter-select .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.filter-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: var(--space-25);
}

.forum-post-top strong {
    font-size: 20px;
}

.forum-post-top-wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    width: 100%;
}

.forum-post-top-wrapper:after {
    content: "";
    background: linear-gradient(-90deg, #5a063d 0%, #0b5eb7 35%, #2d4e70 100%);
    width: 50%;
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.forum-post-top {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    gap: 15px;
}

.btn-square {
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 30px;
    height: 30px;
}

.forum-post .item-rating-star-container {
    margin-left: -2px;
}

.post-date {
    font-size: 13px;
}

.forum-post-text {
    margin-bottom: var(--space-25);
    margin-top: var(--space-25);
}


.forum-post {
    margin-top: var(--space-60);
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.btn-circle {
    border-radius: 50%;
}

.footer-top .social-list > ul > li {
    animation: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.vote-badge {

    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 28px;
    display: inline-flex;
    height: 30px;
    line-height: 1;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    /* border-radius: 10px; */
    align-items: center;
}

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

.add-post-form-wrapper {
    margin-top: var(--space-60);
}

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

.online-shop-photo a {
    display: block;
    transition: transform 300ms;
}

.online-shop-photo a[href]:hover {
    transform: scale(1.05);
}

.slick-slide.slick-cloned.opacityZero {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.package-info-icon {
    transition: transform 300ms;
}

a[href].package-info:hover .package-info-icon {
    transform: scale(1.1) rotate(5deg);
}

#page:has(.header-top) .slider {
    padding-top: 200px;
}

.map-right-content .text.txt {
    font-size: 14px;
    line-height: 1.5;
}

.map-content-result {
    margin-bottom: 20px;
}

.map-wrapper {
    position: relative;
}

.map-masks {
    border-radius: 0 53px 53px 0;
    overflow: hidden;
    position: absolute;
    inset: 0;
}

.map-masks img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    display: block;
}

@keyframes lines {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translateY(40%);
    }
}

.world-lines {
    transform-origin: top center;
    animation: lines 10s ease-in-out infinite;
}

.world-lights {
    animation: map 5s ease-in-out infinite alternate;
    animation-delay: -1000ms;
}

.world-map {
    animation: map 3s ease-in-out infinite alternate;
}

.btn.has-arrow {
    position: relative;
}

.form .before-consent-row .text, .form .after-consent-row .text, .form .consent-row .text label, .form .consent-all {
    line-height: 1.8;
}

form#filter-form.forum-search-box .form-element.form-element-text {
    margin-bottom: 0;
}

.contact-box-wrapper .align-bottom {
    margin-top: var(--space-25);
}

.forum-search-box {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
    margin-top: 20px;
    gap: var(--space-25);
    justify-content: flex-start;
}

.forum-search-box .form-element-container .form-element-name {
    color: #003E99;
}

.forum-search-box .form-element-container {
    width: 40%;
}

.forum-sections-wrapper > div:nth-child(2n + 3) .latest-forum-posts-header:before {
    border-radius: 53px 0 0 53px;
    margin: 0 -21% 0 auto;
    background: linear-gradient(-90deg, rgba(229, 19, 108, 1) 0%, rgba(1, 147, 217, 1) 100%);
}

.dropdown.btn-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: all 300ms;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.dropdown.btn-circle:hover {
    background: var(--color-primary);
    color: #fff;
}

.heading-wrapper .dropdown.btn-circle {
    margin-bottom: 8px;
}

.heading-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

#add-thread-form {
    margin-bottom: var(--space-60);
}

#add-thread-form .form.group {
    margin-bottom: 20px;
}

.forum-sections-wrapper div {
    scroll-margin-top: 300px;
}

.search-form-wrapper + .container table {
    margin-top: 0;
}

.search-form-wrapper {
    margin-bottom: var(--space-40);
}

.text-more-inner {
    display: none;
}

.btn-text-less:hover,
.btn-text-more:hover {
    color: var(--color-primary);
}

.btn-text-less,
.btn-text-more {
    display: flex;
    margin-left: auto;
    margin-top: var(--space-25);
    text-transform: uppercase;
    background-color: transparent;
    border: none;
    transition: color 300ms;
    text-decoration: none !important;
    gap: 10px;
    align-items: center;
    font-size: 15px;
}

@media screen and (min-width: 1140px) {
    .btn-text-less:hover,
    .btn-text-more:hover {
        text-decoration: underline;
    }
}

.btn-text-more.active {
    display: none;
}

.text-more,
.experience-box .text > p:last-of-type {
    display: inline;
}

.toggle-text {
    padding-bottom: var(--space-60);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#latest-threads > div:nth-child(2) .latest-forum-posts-header:before {
    border-radius: 53px 0 0 53px;
    margin: 0 -21% 0 auto;
    background: linear-gradient(-90deg, rgba(229, 19, 108, 1) 0%, rgba(1, 147, 217, 1) 100%);
}

.modal-header {
    min-height: 76px;
}

.login-box .row:last-child .btn.btn-short {
    padding-right: 40px;
    width: 100%;
}

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

.functions-item-btn {
    display: flex;
    padding-left: 66px;
    /*justify-content: flex-end;*/
}

.slide-left:last-child {
    width: 100%;
}

.support-form-container .upload-add-container {
    display: flex;
    align-items: flex-end;
    gap: calc(2 * var(--row-gap));
}

.support-form-container .upload-add-container:before,
.support-form-container .upload-add-container:after {
    content: none;
}

.support-form-container .upload-add-btn {
    order: 2;
}

.support-form-container .upload-add-dropzone {
    flex-grow: 1;
}

.text-uppercase {
    text-transform: uppercase;
}

.forum-posts .text table {
    margin: 0;
}

.forum-posts table th:first-child, .forum-posts table td:first-child {
    width: 40%;
}

.forum-posts {
    margin: 30px 0;
}

.categories-table .forum-posts td, .subthreads .forum-posts td {
    height: 71px;
}

.categories-table .forum-posts .table-responsive-wrapper thead tr, .subthreads .forum-posts .table-responsive-wrapper thead tr {
    height: 71px;

}

.categories-table .forum-posts .table-responsive-wrapper thead, .subthreads .forum-posts .table-responsive-wrapper thead {
    background: #fff;
    vertical-align: middle;
    top: 0;
    position: absolute;
    right: 10px;
}

.categories-table .forum-posts .table-responsive-wrapper, .subthreads .forum-posts .table-responsive-wrapper {
    position: relative;
    padding-top: 71px;
}

.categories-table .forum-posts .table-responsive, .subthreads .forum-posts .table-responsive {
    max-height: 711px;
    padding-right: 10px;
    overflow: auto;
    margin-right: -10px;

}

.forum-posts .table-responsive-wrapper::-webkit-scrollbar-thumb,
.forum-posts .table-responsive::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: var(--color-secondary);
}

.forum-posts .table-responsive-wrapper::-webkit-scrollbar,
.forum-posts .table-responsive::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: rgb(0, 0, 0, 0.1);
    border-left: 4px solid #fff;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
}

.form-btns-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-25);
}

.slide-left.slide-left-only-image {
    padding: 0;
    overflow: hidden;
}

.slide-left.slide-left-only-image .slide-left-content .slide-left-img,
.slide-left.slide-left-only-image .slide-left-content {
    width: 100%;
    height: 100%;
}

.slide-left.slide-left-only-image .slide-left-content .slide-left-img img,
.slide-left.slide-left-only-image .slide-left-content .slide-left-img-rwd img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-left.slide-left-only-image .slide-left-content .slide-left-img-rwd {
    display: none;
}


.small-boxes-mobile-dots {
    display: none;
}

button.forum-search-button + .btn {
    font-weight: 400;
    font-size: 16px;
}

.tooltip-inner {
    border: 2px solid var(--color-primary);
    background-color: var(--color-secondary);
}

.tooltip.top .tooltip-arrow {
    border-top-color: var(--color-primary);
}

.user-zone-box {
    gap: var(--space-25);
}

.btn-user-icon > svg {
    width: 40px;
    height: 40px;
}

.btn-user-icon {
    width: 90px;
    padding: 15px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.icon-border {
    position: absolute;
    inset: 0;
    margin: auto;
}

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


.icon-border svg {
    overflow: visible;
}

.icon-border path:nth-child(1) {
    transform-origin: center center;
    animation: rotate 10s linear infinite reverse;
}

.icon-border path:nth-child(2) {
    transform-origin: center center;
    animation: rotate 10s linear infinite;
}

.icon-border-white svg *[fill] {
    fill: #fff;
}

.icon-border-white svg *[stroke] {
    stroke: #fff;
}

.btn-user-item:nth-child(2n) .icon-border svg path:nth-child(1) {
    transform-origin: center center;
    animation: rotate 10s linear infinite;
}

.btn-user-item:nth-child(2n) .icon-border svg path:nth-child(2) {
    transform-origin: center center;
    animation: rotate 10s linear infinite reverse;
}

.small-box:nth-child(2n) .icon-border svg path:nth-child(1) {
    transform-origin: center center;
    animation: rotate 10s linear infinite;
}

.small-box:nth-child(2n) .icon-border svg path:nth-child(2) {
    transform-origin: center center;
    animation: rotate 10s linear infinite reverse;
}

.user-zone-sub-item:nth-child(2n) .icon-border svg path:nth-child(1) {
    transform-origin: center center;
    animation: rotate 10s linear infinite;
}

.user-zone-sub-item:nth-child(2n) .icon-border svg path:nth-child(2) {
    transform-origin: center center;
    animation: rotate 10s linear infinite reverse;
}

.form .last-row {
    display: grid;
    grid-template-columns: 1fr auto;
}

.form .last-row .before-consent-row {
    grid-column-start: 1;
    grid-column-end: 3;
}

.form .last-row .consent-row:not(:nth-last-child(2)) {
    grid-column-start: 1;
    grid-column-end: 3;
}

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

.main-slider ul.slick-dots li button:hover,
.main-slider ul.slick-dots li.slick-active button {
    background-color: #fff;
}

.main-slider ul.slick-dots li {
    margin: 0 10px;
}

.main-slider ul.slick-dots {
    margin-bottom: 5px;
}

.main-slider ul.slick-dots li button {
    background-color: rgba(255, 255, 255, 0.5);
}

.form-element.has-success .alert-block {
    display: none !important;
}

.table-responsive table[align="center"]{
    margin-left: auto;
    margin-right: auto;
}

.table-responsive table[align="right"]{
    margin-left: auto;
}