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

    --font-64: 64px;
    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-32: 32px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --container-padding: 40px;
    --row-gap: 5px;
    --border-radius: 200px;

    /** SPECIFIC **/
    --color-primary: #9aa3f9;
    --color-secondary: #616ac5;
    --color-default: #000;
}

body {
    color: #000;
    font-family: 'Open Sans', 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;
    text-transform: uppercase;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

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

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

.has-arrow {
    text-align: left;
    padding-left: 20px;
    padding-right: 50px;
}

.btn.has-arrow:after {
    text-align: center;
    width: 50px;
    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: 18px;
    top: 0;
}


/**
 * 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-default,
.btn.btn-default:focus,
.btn.btn-default:active,
.btn.btn-default:focus:active {
    background-color: #fff;
    border-color: #000;
    color: #000;
}

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

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


.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: var(--color-primary);
}

.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 * {
        stroke: 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-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: #000;
        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: #fff;
        border-color: #fff;
        color: #000;
    }

    .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-weight: 700;
    font-size: var(--font-22);
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: poppins, sans-serif;
    margin-bottom: 12px;
}

.text.txt h2 {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: poppins, sans-serif;
    margin-bottom: 12px;
}

.text.txt h3 {
    font-weight: 700;
    font-size: var(--font-18);
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: poppins, sans-serif;
    margin-bottom: 12px;
}

.text.txt h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: poppins, sans-serif;
    margin-bottom: 12px;
}

.text.txt h5 {
    font-weight: 700;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: poppins, sans-serif;
    margin-bottom: 12px;
}


.text.txt h6 {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: poppins, sans-serif;
    margin-bottom: 12px;
}


/**
 * 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: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "";
    display: inline-block;
    left: -16px;
    margin-left: -6px;
    font-family: sans-serif;
    position: relative;
    top: -1px;
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.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%;
    /* opacity: 0; */
}

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

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

/**
 * HEADER
 */

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

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 54px;
}

.header-top-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 30%;
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.top {
}

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

.top-right {
    width: 77%;
}

.logo {
    float: none;
    width: 20%;
}

.logo a {
    display: block;
}

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

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

#main-menu ul {
    display: flex;
    justify-content: center;
    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: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    padding: 29px;
    font-family: 'Open Sans', sans-serif;
    display: block;
}

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

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

#main-menu li.active li a {
    color: #fff;
}

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

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

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

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

#main-menu li li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#main-menu li li:last-child {
    border-bottom: 0 none;
}

#main-menu li li a {
    font-size: 14px;
    color: #fff;
    display: block;
    padding: 16px 55px 15px 24px;
}

#main-menu li li a:after {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: absolute;
    right: 15px;
    content: '';
    top: 50%;
    margin-top: -15px;
    background: url(../images/icons/arrow_right_white.svg) no-repeat center center;
    opacity: 0;
}

#main-menu li li.active a {
    color: #fff;
    background: #000;
}

#main-menu li li a:hover:after {
    opacity: 1;
}

#main-menu li li a:hover {
    background: #000;
    color: #fff
}

#main-menu li li.active a:after {
    opacity: 1;
}

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

.contact-link {
    align-items: center;
    line-height: 200%;
    display: flex;
    font-size: 16px;
    color: #fff;
    font-family: "open sans", sans-serif;
}

.contact-link .btn-icon {
    margin-right: 9px;
    position: relative;
    border-radius: 10px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-primary);
    padding: 11px;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
}

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


@media screen and (min-width: 1140px) {
    .contact-link:hover {
        color: var(--color-primary);
        font-weight: 600;
    }

    .contact-link:hover .btn-icon {
        background: #fff;
        border-color: #fff;
        color: var(--color-primary);
    }
}

.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;
    padding: 0;
}

.mainsearch {
    float: left;
    position: relative;
    max-width: 100%;
    border: 1px solid #fff;
    border-radius: 10px;
    width: 373px;
    height: 46px;
}

.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;
    background: transparent;
    border-color: transparent;
    border-radius: 10px;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 50%;
    padding: 7px;
    color: #fff;
}

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

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

.top nav.social-list {
    margin-left: 15%;
}

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


/*
* 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 {
    position: relative;
}

footer .photo-bg {
    border-radius: var(--border-radius) 0 0 0;
    overflow: hidden;
}

.mask.footer-mask {
    background: rgba(0, 0, 0, 0.8);
}

.footer-box-container {
    position: relative;
    padding-top: calc(var(--space-40) + var(--space-30));
    padding-bottom: var(--space-60);
    background: url(../images/footer_mask.png) no-repeat right bottom;
}

.footer-boxes-container .container {
    position: relative;
    z-index: 2;
}

.footer-boxes {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 6.91%;
}

.footer-box {
    padding-right: 30px;
    position: relative;
    width: 26%;
}

.footer-col-title {
    margin-bottom: var(--space-40);
    line-height: 30px;
    font-weight: 700;
    font-size: var(--font-20);
    color: #fff;
}


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

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

.footer-box ul li a {
    display: block;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 30px;
    color: #fff;
}

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

.footer-box .text {
    color: rgb(255, 255, 255);
    font-size: var(--font-18);
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 30px;
}


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

.footer-box:last-child {
    padding-right: 0;
    width: 48%;
}

img.logo-min {
    max-width: 60%;
    margin-bottom: calc(var(--space-40) + var(--space-50));
}

.footer-left {
    width: 65%;
    display: flex;
}

.footer-right {
    width: 24.3%;
    text-align: right;
}

.footer-box.footer-bands ul {
    column-count: 2;
}

.footer-right .footer-box {
    width: 100%;
}

.contact-links-bottom {
    width: 60%;
}

.footer-box .social-list {
    width: 46px;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.contact-link-bottom {
    display: flex;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    align-items: center;
}

.contact-link-bottom .btn-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}


/* FOOTER BAR */
.footer-bar {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-bar-content {
    padding: 15px 0;
}


.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;
    position: relative;
    margin-right: 40px;
}

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

.footer-bar-links > li:first-child:before {
    display: none;
}

ul.footer-bar-links {
    margin-right: 8px!important;
}

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

@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: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-50);
}

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

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

.form .form-element-name {
    margin-bottom: 18px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}


/* INPUTY */
.form-control, .form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    font-family: poppins, sans-serif;
    color: #000;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.form-box-container .form-control {
    border: 1px solid rgba(0, 0, 0, 0);color: #fff;
}

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

/* 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: #fff;
    font-style: normal;
    font-size: 11px;
    line-height: 2;
    letter-spacing: 0.05em;
    font-family: poppins, sans-serif;
}

.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 !important;
    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;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

/*---- 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: #fff;
    border-radius: 6px;
    text-align: left;
    padding: 0;
    background: #fff;
}

.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;
	 font-family: poppins, sans-serif;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
    font-family: poppins, sans-serif;
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-family: 'Poppins', sans-serif;
}

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

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

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

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 7px;
    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);
}

.form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:after {
    display: block;
    position: absolute;
    content: '\f107';
    font-family: 'FontAwesome', sans-serif;
    font-size: 16px;
    vertical-align: middle;
    right: 16px;
    top: 13px;
    border: 0 none;
    margin: 0;
    width: auto;
}

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


@media screen and (min-width: 1140px) {
    .form-box-wrapper button.btn.btn-primary.btn-lg:hover {
    }

}

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


/**
 * 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: 0 auto 20px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
    padding-top: 25px;
}

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

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

.breadcrumb > li > a {
    font-size: 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: calc(var(--space-50) + var(--space-50));
    padding-bottom: calc(var(--space-50) + var(--space-40));
    border-radius: var(--border-radius) 0 0 0;
    position: relative;
}

.logotypes-box-container .container {
    position: relative;
}

.logotypes-box-container img {
    height: calc(100% + var(--border-radius));
}

.logotypes-box-title {
    color: #00306d;
    font-size: var(--font-22);
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.1em;
}

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

.logotypes-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-60);
}

.logotypes-box {
    display: flex;
    flex-wrap: wrap;
    margin: -25px -22px;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(var(--space-40) + var(--space-30));
}

.logotype {
    width: 165px;
    height: 165px;
    background: #fff;
    border-radius: 50%;
    margin: 25px 22px;
    border: 10px solid #fff;
}

@media screen and (min-width: 1140px) {
    .logotype:hover {
        border-color: #9AA3F9
    }
}

/**
 * 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;
    border: 1px solid #9aa3f9;
    color: #fff;
    padding: 4px;
    border-radius: 10px;
    width: 46px;
    height: 46px;
    background: #9aa3f9;
}

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

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-subtitle {
    padding-bottom: var(--space-30);
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    margin: 0;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0;
    position: relative;
}

.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: rgba(97, 106, 197, 0.6);
}

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

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

.gallery-list-item:before {
    width: 1px;
    height: 100%;
    background: #fff;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.gallery-list-item:after {
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: 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;
    padding: 0;
    text-align: center;
}

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

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

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    color: #000;
    font-size: 14px;
    line-height: 50px;
    padding: 0 11px;
}


.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 var(--color-primary);
    background: var(--color-primary);
}

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

.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 a:hover {
        color: var(--color-primary);
    }
}


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

.slider {
    height: 586px;
    position: relative;
    background: #f5f5f5;
}

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

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

.slider-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0 var(--border-radius) 0;
    overflow: hidden;
}

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

.slider-bg img {
    position: relative;
    overflow: hidden;
    height: 100%;
}

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

img.mask2 {
    position: absolute;
    bottom: 48px;
    left: 0;
    width: 70%;
}

img.mask3 {
    position: absolute;
    left: 0;
    top: 19%;
    width: 30%;
}

#content {
    padding-top: 151px;
    background: url(../images/content_main.png) no-repeat center 1095px / 100%;
}

.slider-box {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-bottom: var(--space-60);
}

.slider-photo {
    width: 50%;
    padding-top: 70px;
}

.slider-photo img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.mask.slider-mask {
    background-color: rgba(0, 0, 0, 0.9);
}

.slider-text {
    width: 39%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title1 {
    font-style: normal;
    line-height: 135%;
    position: relative;
    margin-bottom: calc(var(--space-30) + 4px);
    font-weight: 700;
    font-size: var(--font-36);
    color: #fff;
}

.description {
    font-style: normal;
    margin-bottom: var(--space-40);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.875;
    color: #fff;
}

ul.slick-dots {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 70px;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
}

ul.slick-dots:before {
    width: 100%;
    height: 1px;
    content: '';
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 6px;
}

ul.slick-dots li {
    display: inline-block;
    transition: all 0.2s;
    cursor: pointer;
    text-align: center;
    padding: 0 27px;
}

ul.slick-dots li .slide-nb {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    display: block;
    margin: 0 auto 32px;
}

ul.slick-dots li .slide-circle {
    width: 13px;
    height: 13px;
    display: block;
    background: rgba(255, 255, 255);
    border-radius: 50%;
    margin: 0 auto;
}

ul.slick-dots li.slick-active span.slide-circle {
    background: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    ul.slick-dots li:hover span.slider-circle {
        background: var(--color-primary);
    }
}

.filter-box-container {
    padding-bottom: 40px;
    padding-top: 40px;
    background: #f5f5f5;
    border-radius: 0 0 0 var(--border-radius);
}

.filter-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.filter-box-title {
    font-weight: 700;
    font-size: var(--font-32);
    color: #1a171b;
    width: 13%;
}

.filter-box {
    width: 83.2%;

}


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

.rent-box-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #1a171b;
    align-self: center;
    width: 100%;
    margin-bottom: 0;
}

.header-box {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: var(--space-60);
}

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

.rent-item {
    width: 25%;
    padding: 37px 18px;
}

.rent-link {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

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

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

.product-name {
    font-weight: 700;
    font-size: var(--font-20);
    color: #000;
    margin-bottom: 5px;
}

.car-info {
    display: flex;
    padding-bottom: 8px;
}

.car-info-item {
    border-radius: 5px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 2px 8px;
    margin-right: 10px;
}

.car-info-item:nth-child(odd) {
    background: #616ac5;
}

.car-info-item:nth-child(even) {
    background: #9aa3f9;
}

.rent-photo {
    margin-bottom: 50px;
}

.rent-box {
    margin: -37px -18px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 15px;
}

.car-features li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #000;
    padding-top: 14px;
    padding-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.car-features ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    margin-right: 20px;
}

.car-features li strong {
    margin-right: 4px;
}

.car-fee {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    padding-top: 21px;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-30);
}

.car-fee-caption {
    padding-right: 5px;
}

.car-fee-value {
    padding-top: 5px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    font-size: 16px;
}

.car-fee-value strong {
    font-size: var(--font-20);
}

.rent-content .btn {
    width: 100%;
}

.product-label {
    position: absolute;
    top: 60px;
    left: 60px;
    padding: 9px 20px;
    width: 210px;
    -ms-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    line-height: normal;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;

}

.about-box-slider {
    position: relative;
    width: 78.6%;
}

.about-slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-photo1 {
    width: 21.4%;
    display: flex;
    align-items: flex-end;
    margin-bottom: -50px;
    position: relative;
    z-index: 1;
}

.about-text {
    width: 63.4%;
    margin-left: 9.5%;
    padding-left: 17%;
    position: relative;
    display: flex;    align-items: center;
    padding-right: 0;
    margin-right: -27.5%;
}
.about-photo2 {
    width: 54.6%;
    margin-top: -50px;
    margin-bottom: 60px;
    position: relative;
}

.about-photo1 img {
}

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

.v-title {
    position: absolute;
    width: 1.2em;
    height: 1.2em;
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    z-index: 2;
    pointer-events: none;
    left: 0;
    line-height: 1;
    top: 50%;
    font-weight: 700;
    font-size: var(--font-64);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #fff;
    margin-top: -50px;
}

.v-title-content {
    position: absolute;
    white-space: nowrap;
    text-align: center;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
}

.about-photo-title {
    font-weight: 700;
    font-size: var(--font-36);
    color: #fff;
    margin-bottom: var(--space-30);
    max-width: 90%;
}

.text.txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    text-align: justify;
    color: #000;
}

.about-box-container-wrapper {
    position: relative;
    display: flex
;
}

.about-photo2 img {
    border-radius: 50px 0 0 0;
}

.about-photo1 img {
    display: block;
    border-radius: 0 0 50px 0;
    max-width: 100%;
}

.about-text-content {
    background: rgba(24, 24, 24, 0.7);
    padding-top: calc(var(--space-50) + var(--space-50));
    padding-bottom: calc(var(--space-30) + var(--space-40));
    margin-bottom: calc(var(--space-50) + var(--space-60));
    padding-right: 22%;
    position: relative;
    z-index: 1;
}

.about-text-content .text.txt {
    color: #fff;
    margin-bottom: var(--space-40);
}

.about-box-container-wrapper:before {
    background: #181818;
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 50px;
    border-radius: var(--border-radius) 0 0 0;
    bottom: 50px;
}

.about-box-slider ul.slick-dots {
    width: 43%;
    right: 0;
    left: auto;
    bottom: 150px;
    justify-content: flex-end;
    padding-right: calc((100% - 1720px) / 2);
}

.about-box-slider ul.slick-dots:before {
    right: 0;
}

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

.work-box-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #1a171b;
    margin-bottom: var(--space-30);
    line-height: 150%;
}

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

.work-item {
    width: calc(33.33% - 50px);
    padding-bottom: calc(33.33% - 50px);
    position: relative;
}

.work-item:last-child:after {
    display: none;
}

.work-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
}

.work-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-50);
}

.work-name {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1.5;
    text-align: center;
    color: #000;
    padding: 0 24px;
}

.work-item:after {
    width: 50px;
    padding-bottom: 50px;
    content: '';
    background: url(../images/arrow_work.png) no-repeat center center / contain;
    position: absolute;
    display: block;
    left: calc(100% + 12px);
    border-radius: 50%;
    top: 50%;
    margin-top: -25px;
}

.buttons-center {
    text-align: center;
    padding-bottom: 6px;
}


.newsletter .watermark {
    position: relative;
}


.newsletter-box-container {

}

.newsletter-box-container.dark {
    background: url(../images/upholstery.jpg) no-repeat top center;
}

.newsletter-box-wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0 var(--border-radius) 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 1;
    position: relative;
}

.newsletter-text-box {
    width: 31%;
}

.newsletter {
    width: 42.7%;
}

.newsletter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-text-box .text.txt {
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
}

#newsletter-form {
    display: flex;
    padding: 0;
}

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

.newsletter button.btn.btn-primary {
    background: var(--color-primary);
    width: 167px;
    border-radius: 10px;
    height: 46px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-left: 20px;
}

.newsletter input.form-control.form-control-email {
    width: 100%;
    height: 46px;
    padding-left: 18px;
    padding-right: 18px;
    border-color: transparent;
    border-radius: 10px;
    background: #f5f5f5;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
}

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

.newsletter-box-title {
    font-weight: 700;
    font-size: var(--font-64);
    color: #000;
    margin-bottom: 0;
}

.newsletter-left {
    width: 51%;
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
    background-size: 72% auto;
    background-position: right center;
    background-repeat: no-repeat;
}

.newsletter-left .text.txt {
    padding-right: 48%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-boxes-container {
    position: relative
}

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #1a171b;
    margin-bottom: var(--space-40);
    line-height: 150%;
}

.grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-photo {
    float: right;
    width: 47%;
    position: relative;
}

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

.container.container-small {
    position: relative;
    clear: left;
}

.grid-text {
    width: 47.5%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.grid-text-title {
    font-weight: 700;
    font-size: var(--font-20);
    color: #000;
    margin-bottom: 24px;
}

.grid-text-content {
    padding-left: var(--container-padding);
    width: 100%;
    max-width: 673px;
}

.grid-mask {
    font-weight: 700;
    font-size: var(--font-64);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

.grid-item:nth-child(odd) .grid-photo img {
    border-radius: 50px 0 0 0;
}

.grid-item:nth-child(even) .grid-text {
    align-items: flex-start;
}

.grid-item:nth-child(even) .grid-text .grid-text-content {
    padding-right: var(--container-padding);
    padding-left: 0;
}

.grid-box-container {
    padding-bottom: 5px;
}

.subpage .work-content {
    background: rgba(0, 0, 0, 0.05);
}

.subpage .work-box-container .container {
    max-width: 1440px;
}

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

.subpage .work-icon {
    width: 115px;
    height: 115px;
    margin-bottom: var(--space-40);
}

.subpage .work-name {
    font-size: 16px;
    line-height: 1.875;
}

.subpage .work-item {
    width: 29%;
    padding-bottom: 29%;
}

.partners-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #1a171b;
    margin-bottom: var(--space-60);
}

.partners-box-container .logotype {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.partners-box-container .logotype:hover {
    border-color: #9AA3F9;
}

.partners-box-container {
    padding-bottom: var(--space-30);
}

.realization-box-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #1a171b;
    margin-bottom: var(--space-60);
}

.realizations-box-container {
    padding-top: calc(var(--space-40) + var(--space-50));
    padding-bottom: calc(var(--space-40) + var(--space-30));
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0 var(--border-radius) 0 0;
}

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

.opinion-box-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #1a171b;
}


.opinion-box-container {
    padding-top: calc(var(--space-60) + 10px);
    position: relative;
    padding-bottom: calc(var(--space-60) + 10px);
}


.opinion-box .slick-track {
    display: flex;
    align-items: stretch;
}

.opinion-box .slick-track .opinion-item {
    height: unset;
}

.opinion-item {
    padding: 50px;
    width: 25%;
    flex-shrink: 0;
}

.opinion-item-inner {
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 100%;
    height: 100%;
    color: #000;
}

.opinion-item-bottom {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.opinion-item-inner .text {
    color: #000;
    font-size: 14px;
    line-height: 1.875em;
}

.opinion-item-inner .text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-name {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
}

.author-right {
    flex-grow: 1;
}

.opinion-slider {
    display: flex;
    flex-wrap: wrap;
}

.opinion-slider.slick-slider{ display:block}


.author-name {
    font-weight: 600;
}

.opinion-date {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.71429;
    color: #2c3240;
}

.opinion-author {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
    margin-bottom: 10px;
}

.author-image {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.more {
    font-weight: bold;
    line-height: 1.71429;
    text-align: justify;
    color: #2c3240;
    font-size: 14px;
    cursor: pointer;
}

.more:hover {
    color: var(--color-primary);
}


.opinion-box {
    display: flex;
    margin: -50px;
    padding-bottom: calc(var(--space-40) + var(--space-30));
}

.slider-navigation {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -25px;
}

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

.slider-navigation button {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    border-radius: 50%;
    margin-left: 6px;
}

.opinion-author-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.71429;
    text-align: justify;
    color: #2c3240;
}

.opinion-text .text.txt {
    line-height: 1.71429;
    text-align: justify;
    color: #2c3240;
}

.opinion-hidden {
    display: none;
    transition: all 300ms ease-out;
}

.opinion-hidden.active {
    display: block !important;
}


.opinion-slider .slick-track {
    top: 0;
    left: 0;
    margin-left:0;
    margin-right:0;
}

.opinion-text .text.txt:first-child {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.contact-bottom-title {
    font-weight: 700;
    font-size: var(--font-64);
    color: #000;
    margin-bottom: 0;
}

.contact-bottom-box-container {
    padding-top: 17px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 var(--border-radius) 0 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.contact-bottom-box {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.contact-bottom-right .btn-icon {
    margin-right: 14px;
    flex-shrink: 0;
}

.contact-bottom-left {
    width: 25%;
}

.contact-bottom-middle {
    width: 39%;
}

.contact-bottom-middle img {
    display: block;
    max-width: 100%;
}

.contact-bottom-right {
    width: 31%;
    display: flex;
    justify-content: flex-end;
}

.opinion-slider {
    margin: 0 -50px;
    padding-bottom: var(--space-30);
}

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

.cooperation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cooperation-text {
    width: 39%;
}

.cooperation-photo {
    width: 55%;
    position: relative;
}

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

.cooperation-mask {
    font-weight: 700;
    font-size: var(--font-64);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

.qualifications-box-container {
    background: url(../images/kwalifikacje_bg.jpg) no-repeat top center / cover;
) no-repeat top center / cover;
url(());
}

.qualifications-box {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.qualifications-right .text.txt {
    font-weight: 700;
    font-size: var(--font-30);
    text-align: center;
    color: #fff;
    line-height: 136%;
    padding-bottom: 11px;
}

.qualifications-left {
    width: 35%;
    margin-left: -3%;
}

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

.qualifications-right {
    width: 54%;
    padding-right: 14%;
}

.qualifications-box-container .container {
    height: 100%;
}

.contact-data-box {
    display: flex;
    flex-wrap: wrap;
    margin: -2.5%;
}

.contact-data-item {
    width: 20%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 2.5%;
    padding-bottom: 19.86%;
    position: relative;
}

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

.contact-data-item-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 19%;
    background: #fff;
    border-radius: 10px;
}

.contact-data-icon {
    border-radius: 10px;
    width: 46px;
    height: 46px;
    background: #9aa3f9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12%;
}

.contact-data-item .text.txt {
    font-size: 16px;
    line-height: 2.25;
    text-align: center;
    color: #000;
    font-weight: 300;
}

.contact-data-item .text.txt a {
    color: #000;
}

.contact-data-item:first-child {
    background: linear-gradient(180deg, #9aa3f9 0%, #616ac5 100%);
    border-top: 1px solid #9aa3f9;
}

.contact-data-item:first-child img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.contact-form-box {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 4px;
}

.contact-form-box-title {
    font-weight: 700;
    font-size: var(--font-36);
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-30);
}

.contact-form-box .text.txt {
    color: #fff;
    text-align: center;
    margin-bottom: var(--space-40);
}

.mask.contact-form-mask {
    background: rgba(0, 0, 0, 0.8);
}

.contact-form-box-container .container {
    position: relative;
}

.contact-form-box-container .photo-bg {
    border-radius: 0 0 var(--border-radius) 0;
    overflow: hidden;
}

.faq-box-container {
    padding-bottom: 10px;
}

.text.txt.text-intro {
    padding-top: 18px;
    padding-bottom: var(--space-60);
}

.faq-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -5px;
    flex-wrap: wrap;
}

.faq-menu ul li a {
    border: 1px solid #000;
    border-radius: 10px;
    min-width: 171px;
    height: 46px;
    display: flex;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    justify-content: center;
    align-items: center;
}

.faq-menu ul li {
    padding: 5px;
}

.faq-menu {
    margin-bottom: calc(var(--space-40) + var(--space-30));
}

.faq-menu ul li.active a {
    background: #616ac5;
    color: #fff;
    border-color: #616ac5;
}

@media screen and (min-width: 1140px) {
    .faq-menu ul li a:hover {
        background: #616ac5;
        color: #fff;
        border-color: #616ac5;
    }
}

.accordion-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.accordion-header-content {
    clear: both;
    margin: 0 auto;
    width: auto;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 4px 60px 5px 42px;
}

.accordion-name {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 10px 0 10px;
    font-size: 14px;
    line-height: 2.14286;
    color: #000;
}

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

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
}

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

.accordion-content {
    display: none;
    margin-top: -15px;
    padding: 0 40px 14px;
    border: 1px solid #616ac5;
    border-top: 0 none;
}

.accordion-header {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0);
    border-right: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
}

.accordion-header.active {
    border-color: #616ac5;
}

.accordion-header.active .accordion-name {
    color: #616ac5;
    font-weight: normal;
}

.check-offer-mask {
    background: rgba(0, 0, 0, 0.7)
}

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

.check-offer-title {
    font-weight: 700;
    font-size: var(--font-64);
    text-align: center;
    color: #fff;
    margin-bottom: var(--space-50);
}

.check-offer-box {
    text-align: center;
    padding-top: 7px;
    position: relative;
}

.check-offer-box .btn.has-arrow {
    padding-right: 130px;
}

.contact-box-container {
    padding-bottom: 40px;
}

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

.form-box-wrapper {
    max-width: 810px;
    margin: 0 auto;
    position: relative;
}

.form .checkboxradio-container label {
    font-size: 13px;
    line-height: 1.71429;
    letter-spacing: 0.05em;
}

.form-box-wrapper button.btn.btn-primary.btn-lg {
    border-radius: 10px;
    width: 205px;
    display: block;
    margin: 0 auto;
}

.mask.form-mask {
    background: rgba(0, 0, 0, 0.8);
}

.form-box-container .photo-bg {
    border-radius: 0 0 var(--border-radius) 0;
    overflow: hidden;

}

.text-intro-hidden.active {
    display: inline !important;
}

.text-intro-hidden {
    display: none;
}

.map-box-container iframe {
    height: 790px;
    margin-top: calc(-1 * var(--border-radius));
    border-radius: 0 0 0 var(--border-radius);
}

.map-box-container {
    border-radius: 0 0 0 var(--border-radius);
}

.offer-item-title {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #616AC5;
    font-weight: 700;
    font-size: var(--font-64);
    margin-bottom: var(--space-30);
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: calc(var(--space-40) + var(--space-40));
}

.offer-text {
    width: 40%;
}

.offer-text .text.txt {
    margin-bottom: var(--space-40);
}

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

.offer-photo {
    width: 49.3%;
}

.offer-photo img {
    display: block;
    max-width: 100%;
    border-radius: var(--border-radius) 0 0 0;
}

.offer-box {
    padding-top: var(--space-40);
}

.offer-item:nth-child(even) .offer-photo img {
    border-radius: 0 var(--border-radius) 0 0;
}

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

.offer-details-container .offer-box {
    padding-top: 10px;
}

.offer-item {
    margin-bottom: var(--space-50);
}

.subpage .filter-box-container {
    background: linear-gradient(90deg, #353f97 0%, #616ac5 100%);
}

.subpage .filter-box-title {
    color: #fff;
    line-height: 138%;
}
.rent-box-container {
}

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

.rent-count {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000;
}

.sorting-box {
    display: flex;
    align-items: center;
}

.list-view ul {
    display: flex;
    align-items: center;
}

.list-view li a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 46px;
    height: 46px;
    alignment-baseline: after-edge;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-view li {
    margin-left: 10px;
}

.list-view {
    margin-left: 40px;
}

.list-view li.active a {
    background: #616ac5;
}

.rent-box-right {
    display: flex;
    align-items: center;
}

.sorting-box label {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.04em;
}

.sorting > .select2 {
    width: 200px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #2f2f2f;
}

.sorting {
    width: 350px;
    margin-left: 45px;
}
.sorting .select2-container--default .select2-selection--single .select2-selection__rendered:after {
    width: 1px;
    height: 46px;
    content: '';
    background: rgba(0, 0, 0, 0.1);
    display: block;
    position: absolute;
    right: 46px;
    top: 0;
}

.sorting .select2-container--default .select2-selection--multiple, .select2-container .select2-selection--single {
    border-color: rgba(0, 0, 0, 0.1);
}

.form-group-lg select.form-control {
  color: rgba(0, 0, 0, 0.6);
  background: #fff;
}

.circle {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}

.rent-service {
    padding-top: 5px;
}

.rent-service ul {
    display: flex;
    justify-content: center;
    margin: -5px;
    flex-wrap: wrap;
}

.rent-service ul li {
    padding: 5px;
}

.rent-photo + .rent-service {
    margin-top: -46px;
    margin-bottom: 4px;
}

.circle:after {
    width: 17px;
    height: 17px;
    background: url(../images/icons/active.svg) no-repeat center center;
    content: '';
    position: absolute;
    right: -3px;
    top: -4px;
    opacity: 0;
}

.rent-service ul li.active .circle:after {
    opacity: 1;
}

.rent-service ul li.active .circle {
    border-color: #616AC5;
}

.rent-service ul li .circle svg, .rent-service ul li .circle svg * {
    stroke: #717171;
}

.rent-service ul li.active .circle svg, .rent-service ul li.active .circle svg * {
    stroke: #616AC5;
}

.rent-promotion {
    margin-top: -46px;
    margin-bottom: 4px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.discount {
    border-radius: 5px;
    width: 75px;
    height: 21px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: #d90000;
    line-height: 21px;
}

.price-old {
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
    text-align: right;
    color: #d90000;
    margin-right: 5px;
    padding-left: 5px;
}

.price {
    font-weight: 700;
    font-size: var(--font-20);
    text-align: right;
    margin-right: 5px;
    padding-left: 5px;
}

.price-old + .price {
    color: #d90000;
}

.price-gross {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

@media screen and (min-width: 1140px) {
    .rent-link:hover {
        box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.25);
        background: #fff;
    }
}

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

.subpage .rent-box {
    padding-bottom: var(--space-30);
}

.text-bottom {
    max-width: 1360px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 7px;
}

.text-bottom-hidden {
    display: none;
}

.list-view li.active a svg, .list-view li.active a svg * {
    fill: #fff;
}

.list-view li a svg, .list-view li a svg * {
    fill: var(--color-secondary);
}

.rent-box.rent-box-view2 {
    margin: -3%;
}

.rent-box.rent-box-view2 .rent-item {
    width: 33.33%;
    padding: 3%;
    position: relative;
}

.rent-box.rent-box-view2 .product-label {
    top: 75px;
    left: 75px;
    padding: 13px 20px;
    width: 300px;
}

.rent-box.rent-box-view2 .rent-link {
    padding: 43px;
}

.rent-box.rent-box-view2 .rent-photo img {
    display: block;
    width: 100%;
}

.rent-box.rent-box-view2 .product-name {
    margin-bottom: 16px;
}

.rent-box.rent-box-view2 .car-info-item {
    padding: 5px 22px;
}

.rent-box.rent-box-view2 .feature-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.rent-box.rent-box-view2 .feature-icon svg {
    width: 90%;
    height: 90%;
}

.rent-box.rent-box-view2 .car-features li {
    padding-top: 16px;
    padding-bottom: 15px;
}

.rent-box.rent-box-view2 .car-fee {
    font-size: var(--font-18);
    padding-top: 23px;
    padding-bottom: var(--space-30);
    margin-bottom: var(--space-40);
}

.rent-box.rent-box-view2 .car-fee strong {
    font-size: var(--font-24);
}

.rent-box.rent-box-view2 .rent-content .btn {
    height: 56px;
    line-height: 54px;
    padding-left: 40px;
}

.rent-box.rent-box-view2 .btn.has-arrow:after {
    font-size: 24px;
    height: 56px;
    line-height: 56px;
}

.rent-box.rent-box-view2 .rent-item:after {
    position: absolute;
    width: 1px;
    height: 88%;
    background: rgba(0, 0, 0, 0.1);
    content: '';
    left: 100%;
    top: 6%;
    bottom: 6%;
}

.details-box-container .box-header .page-heading-title {
    text-align: left;
    font-size: var(--font-32);
    margin-bottom: 0;
}

.details-box-container .box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.box-header-info .btn {
    min-width: 193px;
    margin-left: 5px;
}

.details-photo img {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: block;
    max-width: 100%;
}

.details-photo {
    position: relative;
    overflow: hidden;
    margin-bottom: calc(var(--space-40) + 5px);
    display: block;
}

.product-label {
    padding: 11px 20px;
}

.details-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--space-60);
}

.details-box-left {
    width: 48%;
    padding-bottom: 4px;
}

.details-box-right {
    width: 48%;
    position: relative;
}

.details-box-right-content {
    border-radius: var(--border-radius) 0 0 0;
    background: #f5f5f5;
    padding: 60px 8.4% 60px 7%;
}

.details-box-title {
    font-weight: 700;
    font-size: 14px;
    color: #000;
    margin-bottom: 25px;
}

.details-box .car-features ul {
    column-count: 2;
    column-gap: 60px;
    border: 0 none;
}

.details-box .car-features ul li {
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: -1px;
    padding-left: 10px;
}

.details-box .feature-icon svg {
    stroke: var(--color-secondary);
}

.details-box .feature-icon {
    margin-right: 10px;
}

.details-box .car-features li strong {
    width: 143px;
}

.details-box .car-features {
    padding-bottom: var(--space-50);
}

.details-box-container .car-info-item {
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    font-size: 14px;
    border-radius: 10px;
}

.equipment-box ul li {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: -1px;
    padding-left: 41px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    break-inside: avoid;
}

.equipment-box ul li:before {
    content: '';
    background: url(../images/li.png) no-repeat center center;
    width: 19px;
    height: 19px;
    display: block;
    position: absolute;
    left: 13px;
}


.equipment-box ul {
    column-count: 2;
    column-gap: 60px;
    border: 0 none;
    break-before: avoid;
}

.equipment-box {
    padding-bottom: var(--space-50);
}

.services-box {
}

.services-box ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services-box ul li {
    display: flex;
    width: 47%;
    padding: 12px 23px;
    align-items: center;
    margin-bottom: var(--space-50);
    mix-blend-mode: luminosity;
    opacity: 0.5;
    background: #f5f5f5;
    border-radius: 10px;
}

.details-service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.details-service-title {
    font-weight: 700;
    font-size: var(--font-24);
    color: #000;
    margin-bottom: 4px;
}

.in-price {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    padding-left: 29px;
    background: url(../images/no.png) no-repeat left center;
}

.services-box ul li.active {
    opacity: 1;
    mix-blend-mode: multiply;
}

.services-box li.active .details-service-icon svg, .services-box li.active .details-service-icon svg * {
    fill: var(--color-secondary);
}

.services-box ul li.active .in-price.on {
    background: url(../images/yes.png) no-repeat left center;
}

.services-box li:not(.active) .in-price.on,
.services-box li.active .in-price.off {
    display: none;
}

.desc-box {
    padding-bottom: var(--space-40);
}

.details-box .gallery-list-item {
    width: 50%;
    padding: 18px 22px;
}


.details-box .gallery-list {
    margin: -18px -22px;
}


.details-box .gallery-picture {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}


.details-box .gallery-list-item:after {
    display: none;
}

.details-box .gallery-list-item:before {
    display: none;
}

.details-box .gallery-box {
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.last-pieces {
    font-weight: 700;
    font-size: var(--font-24);
    text-align: center;
    color: #fff;
    background: #000;
    text-transform: uppercase;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: var(--space-40);
}

.installment-box-title {
    font-weight: 700;
    font-size: var(--font-32);
    text-align: center;
    color: #616ac5;
    margin-bottom: 21px;
}

.select-box {
    width: 48%;
    margin-bottom: 26px;
}

.label-select {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    margin-bottom: 9px;
}

.choice-lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 2px;
}

.select-box .select2-container--default .select2-selection--multiple, .select-box .select2-container .select2-selection--single {
    border-color: #fff;
}

.packages-box-title {
    font-weight: 700;
    font-size: var(--font-20);
    text-align: center;
    color: #616ac5;
    margin-bottom: 24px;
}

.packages-box {
    margin-bottom: 21px;
}

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

.packages-box ul li {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-right: 5px;
    margin-bottom: 5px;
}

.details-price-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
}

.details-price-left {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    padding-right: 10px;
}

.details-price-right {
    padding-left: 10px;
    text-align: right;
}

.price-net {
    font-weight: 700;
    font-size: var(--font-40);
    color: #616ac5;
}

.price-caption {
    font-weight: 700;
    font-size: 14px;
    color: #000;
}


.files-list {
}

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

.files-list ul li {
    width: 50%;
    padding: 7px;
    display: flex;
}

.files-list ul li a {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    background: transparent;
    justify-content: space-between;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 11px 19px 11px 16px;
    color: #000;
}

.files-list  .icon-file {
    width: 16px;
    display: block;
    flex-shrink: 0;
}

.files-list  .icon-file svg {
    fill: var(--color-secondary)
}

.files-list  .file-name {
    display: flex;
    align-items: center;
    padding-left: 11px;
    padding-right: 10px;
    line-height: 1.625;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.files-list  .file-name-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.files-list  .btn-download {
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 16px;
}

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

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

    .files-list ul li a:hover svg, .files-list ul li a:hover svg * {
        fill: #fff
    }
}

.details-buttons .btn {
    width: 48%;
}

.details-buttons {
    display: flex;
    justify-content: space-between;
}

.details-buttons .btn {
    margin: 7px;
}

.details-buttons {
    margin: -7px -7px 12px;
}

.files-box {
    margin-bottom: 13px;
}

.configuration-change {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
}

.change-icon {
    width: 50px;
    height: 50px;
    display: flex;    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.change-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1.2;
    color: #616ac5;
    padding: 0 32px 0 10px;
}

.configuration-left {
    display: flex;
    width: 45%;
}

.configuration-change .btn {
    padding: 0 21px;
}

.details-box-container {
    background: #fff;
}

.offer-details-container + .contact-data-container {
    padding-top: 12px;
    padding-bottom: calc(var(--space-40) + var(--space-30));
}

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


.contact-data-container.contact-data-container-dark {
    padding-top: calc(var(--space-40) + var(--space-30) + 6px);
    background: url(../images/upholstery.jpg) no-repeat top center;
}

.contact-data-container-dark .contact-data-item .text.txt {
    color: #000;
}

.contact-data-container-dark .contact-data-item .text.txt a {
    color: #000;
}


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

.text-bottom-container .text.txt h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    font-family: poppins, sans-serif;
    margin-bottom: 12px;
}

.text-bottom-container .text.txt {
    margin-bottom: calc(var(--space-30) + var(--space-40))
}

.contact-data-container.contact-data-container-dark .contact-data-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subpage #content {
    background: url(../images/content_bg.png) no-repeat center top / 100%;
}

.article-content {
    padding-top: var(--space-30);
}

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

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

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

.modal-header button.close {
    width: 40px;
    height: 40px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-top: -20px;
}

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

.modal-header:hover .close {
    color: inherit;
}

.subpage .offer-box-container {
    background: #fff;
}

.form-element-file .btn.binded {
    padding: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
}

.form-element-file .btn.binded.file-upload-delete {
    border-color: #d9534f;
    margin-left: 0px;
}

.uploaded-file-container {
    padding-top: 5px;
}

.filter-box-wrapper label.form-element-name {
    color: #fff;
    text-transform: none;
}

.mainpage .filter-box-wrapper label.form-element-name {
    color: #000;
}

.filter-box-wrapper .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: #fff;
    background: #fff;
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.filter-box-wrapper .select2-container--default .select2-selection--multiple .select2-selection__rendered, 
.filter-box-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
}


.filter-box-wrapper .price-body .form-control.form-range {
    background: transparent;
    border: 0 none;
    padding: 0;
}

.filter-box-wrapper .form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple {
    background: #fff;
    border-color: #fff;
    color: #000;
    font-size: 14px;
}

header.sticky .header-top {
    padding-top: 7px;
    padding-bottom: 7px;
}

header.sticky #main-menu li a {
    padding-top: 20px;
    padding-bottom: 20px;
}


.mainsearch input.form-control::placeholder {
    color: #fff;
}

.filter-box-wrapper .form-control.form-range {
    display: flex;
}

.filter-box-wrapper .form-control.form-range .col {
    width: calc(50% - 5px);
}

.filter-box-wrapper .range-row {
    display: none;
}

.filter-box-wrapper .form-control.form-range .col .input-label {
    display: none;
}

.filter-box-wrapper .form-control.form-range .col .price-suffix {
    display: none;
}

.filter-box-wrapper .form-control.form-range .col:last-child {
    margin-left: 10px;
}

.filter-box-wrapper .form-control.from, .filter-box-wrapper .form-control.to {
    background: #fff;
    border-color: #fff;
}

.filter-box-wrapper .btn.btn-link {
    background: transparent;
    border: 1px solid transparent;
    text-transform: none;
    padding: 0 10px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    color: #fff;
    margin-left: 5px;
}

.filter-box-wrapper .form-control, .filter-box-wrapper .form .form-control{ background:#fff}

.mainpage .filter-box-wrapper .btn.btn-link {
    color: #000;
    text-transform: none;
}

.filter-box-wrapper .btn.btn-link:after {
    content: '';
}

.filter-box-wrapper button.btn.btn-lg.btn-primary:after {
    width: 30px;
    height: 30px;
    content: '';
    background: url(../images/icons/loupe_white.svg) no-repeat center center / 100%;
    position: absolute;
    top: 7px;
}

.filter-box-wrapper button.btn.btn-lg.btn-primary {
    padding-left: 20px;
    padding-right: 40px;
}

.filter-box-wrapper button.btn.btn-lg.btn-primary:hover {
    background: var(--color-secondary);
    color: #fff;
}

.filter-box-wrapper .btn.btn-link:after {
    width: 30px;
    height: 30px;
    content: '';
    background: url(../images/icons/close.svg) no-repeat center center / 39%;
    position: absolute;
    top: 7px;
}

form#newsletter-modal-form .has-feedback .input-group + .form-control-feedback {
    right: 10px;
}

.btn-file span.fa.fa-plus {
    width: 30px;
    height: 30px;
    background: url(../images/icons/file.svg) no-repeat center center;
}

.btn-file span.fa.fa-plus:before {
    display: none;
}

.btn-file > .text {
    cursor: pointer;
    align-items: center;
    display: flex;
    font-size: 14px;
}

label.btn.btn-default.btn-file {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 0 none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 46px;
}

label.btn.btn-default.btn-file:after {
    width: 46px;
    height: 46px;
    position: absolute;
    right: 0;
    content: '\f105';
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    font: normal normal normal 14px / 1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 23px;
    line-height: 46px;
}

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

.subpage .filter-box-wrapper .btn.btn-link:after {
    background: url(../images/icons/close_white.svg) no-repeat center center / 39%;
}

.select2-container--open .select2-dropdown--below {
    border-color: #fff;
    border-radius: 0 0 10px 10px;
}

.select2-dropdown.select2-dropdown--below li:last-child{ border-color: #fff;
    border-radius:0 0 10px 10px;}

.select2-dropdown.select2-dropdown--above {
     
}

.select2-dropdown.select2-dropdown--above li:first-child{ border-color: #fff;
    border-radius: 10px 10px 0 0 ;}
	
	
	button.btn.btn-primary.load-next {
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.rent-item .btn-secondary:not([disabled]):hover, 
.rent-item .btn-secondary:not([disabled]).active:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
	
	strong#teaser-more {
    cursor: pointer;
    padding: 5px 0;
    display: block;
}

strong#teaser-more:hover {
    color: var(--color-primary);
}

.form-group-lg select[multiple].form-control, .form-group-lg textarea.form-control {
  height: 46px;
}

.select2-container--open .select2-dropdown {
    left: 0;
    border-color: #fff;
    background: #fff;

}


.form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
    background: url(../images/minimal.png) no-repeat;
}

.row.buttons-details {
    margin: -7px;
    margin-bottom: 7px;
}

.row.buttons-details .col-xs-6 .btn, .row.buttons-details .col-xs-6 button {
    width: 100%;
    display: flex;
    align-items: center;
}

.row.buttons-details .col-xs-6 {
    padding: 7px;
    margin-bottom: 7px;
}

.form-group.form-group-lg.col-custom-5:last-child {
    padding-top: 39px;
    padding-left: 20px;
}

.subpage .form-group.form-group-lg.col-custom-5:last-child button{ background:#000; border-color:#000}
.subpage .form-group.form-group-lg.col-custom-5:last-child button:hover{ background:var(--color-primary); border-color:var(--color-primary)}

.subpage .form-group.form-group-lg.col-custom-5:nth-child(5) {
    padding-left: 20px;
}

.btn.btn-lg.btn-primary.btn-auto-file {
    display: flex;
    max-width: 100%;
    width: 100%;
    background: transparent;
    justify-content: space-between;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 11px 19px 11px 16px;
    color: #000;
    align-items: center;
}

.btn-auto-file .file-name {
    display: flex;
    align-items: center;
    padding-left: 11px;
    padding-right: 10px;
    line-height: 1.625;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-auto-file .icon-file {
    width: 16px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    display: flex;
}

.btn-auto-file .btn-download {
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn.btn-lg.btn-primary.btn-auto-file:hover {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    color: #fff;
}

.btn.btn-auto-file:hover svg, .btn.btn-auto-file:hover svg *{ fill:#fff}



.packages-box .icheckbox_minimal-custom {
    background-image: url(../images/minimal2.png);
    width: 28px;
    height: 28px;
    top: 0;
}

.packages-box .icheckbox_minimal-custom.checked.disabled {
    background-position: -120px 0;
}

.packages-box .icheckbox_minimal-custom.hover {
    background-position: -30px 0;
}

.packages-box .icheckbox_minimal-custom.checked {
    background-position: -60px 0;
}

.packages-box .icheckbox_minimal-custom.disabled {
    background-position: -90px 0;
    cursor: default;
}

.modal-body .form .checkboxradio-container label {
    color: #000;
}

.modal-body .form .before-consent-row{
    color: #000;
}

.modal-body .form .before-consent-row {
    padding-top: 0;
}

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

.details-box-right-content.affixHandler-top {
    padding-left: 16.923%;
    padding-right: 20.3057%;
}

.offer-details-container .offer-item {
    align-items: center;
}

.filter-box .icheckbox_minimal-custom {
    background-image: url(../images/minimal@2x-filter.png);
    width: 34px;
    height: 34px;
    top: 6px;
    margin-left: -34px !important;
}

.filter-box .icheckbox_minimal-custom.checked.disabled {
    background-position: -120px 0;
}

.filter-box .icheckbox_minimal-custom.hover {
    background-position: -38px 0;
}

.filter-box .icheckbox_minimal-custom.checked {
    background-position: -76px 0;
}

.filter-box .icheckbox_minimal-custom.disabled {
    background-position: -90px 0;
    cursor: default;
}

.filter-box  .form-element-option-text {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    margin-left: 15px;
    overflow: hidden;
    display: block;
    line-height: 165%;
}

.filter-box   .form .checkboxradio-container label {
    padding-left: 34px;

}

.filter-box-wrapper .form-element-container.form-element-checkbox-container {
    padding-top: 39px;
    height: 85px;
}

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


@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
 .packages-box   .icheckbox_minimal-custom,.packages-box .iradio_minimal-custom {
            background-image: url(../images/minimal2.png);
		        -webkit-background-size: 280px 30px;
        background-size: 280px 30px;
    }
}



.shop-product-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 100%;
    margin-bottom: 30px;
}

.shop-product-box  .product-title {
    font-weight: 700;
    font-size: var(--font-20);
    color: #000;
    margin-bottom: 14px;
    text-align: center;
}

.shop-product-box  .car-info {
    justify-content: center;
}

.shop-product-box  .product-price {
    text-align: center;
}

.shop-product-box  .price-gross {
    justify-content: center;
    margin-bottom: 14px;
}

.shop-product-box  .product-actions a {
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 0 34px;
    height: 46px;
    line-height: 44px;
    box-shadow: 0 0 0 transparent !important;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    background: var(--color-secondary);
    color: #fff;
}

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


.details-box-right-content.affixHandler-bottom {
    padding-left: 16.923%;
    padding-right: 20.3057%;
}

h4.modal-title {
    padding-right: 17px;
}

.mainpage .filter-box .form-element-option-text {
    color: #000;
}


.col-custom-5 {
        width: 20%;
    }
	
.col-custom-5 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.filters-left {
    width: 80%;
}

.filters-right {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.search-group .shop-product-list.product-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.search-group  .shop-product-box {
    margin: 10px;
    width: calc(25% - 20px);
    height: auto;
}

.search-group .shop-product-box .product-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.affixHandler-middle.affixHandler-middle {
    padding-left: 133px;
    padding-right: 159px;
}