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

    --font-60: 60px;
    --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;

    /** SPECIFIC **/
    --color-primary: #36549d;
    --color-secondary: #00ff00;
    --color-default: #001446;
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

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

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

h2 a {
    color: #000;
}

h2 a:hover {
    text-decoration: underline;
    color: #000;
}

blockquote {
    font-style: italic;
    padding-left: 35px;
}

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

/**
 * Icon
 */
.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/user2.svg);
    mask-image: url(../images/icons/user2.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/logout2.svg);
    mask-image: url(../images/icons/logout2.svg);
}


/**
 * BUTTONS
 */

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

.btn-lg {
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 0 45px;
    height: 46px;
    line-height: 44px;
    border-radius: 0;
    font-size: 14px;
    font-weight: normal;
    box-shadow: 0 0 0 transparent !important;
}

.btn-sm {
    border-radius: 0;
    padding: 0 32px;
    height: 30px;
    line-height: 28px;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid;
    text-decoration: none !important;
}


.btn.has-icon {
    display: flex;
    align-items: center;
    padding: 0 10px;
    min-width: 210px;
    justify-content: center;
}

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

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

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


/**
 * THEMES
 */

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

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

.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-primary .btn-icon svg,
.btn.btn-primary .btn-icon svg * {
    fill: var(--color-primary);
}

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

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


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

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

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

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

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

    .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-40);
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.text.txt h2 {
    font-weight: 700;
    font-size: var(--font-36);
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.text.txt h3 {
    font-weight: 700;
    font-size: var(--font-30);
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.text.txt h4 {
    font-weight: 700;
    font-size: var(--font-24);
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.text.txt h5 {
    font-weight: 700;
    font-size: var(--font-18);
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: 30px;
}


.text.txt h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.66667;
    color: var(--color-primary);
    margin-bottom: 30px;
}


/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
    text-align: justify;
}

/** 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: -8px;
    font-family: sans-serif;
    position: relative;
    top: -2px;
    width: 4px;
    height: 4px;
    background-color: var(--color-default);
    border-radius: 50%;
}

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

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

.text table tr:nth-child(odd),
.text table tr.shop-product-variant-table-row.row-white {
    background: #fff;
}

.text table tr:nth-child(even),
.text table tr.shop-product-variant-table-row.row-gray {
    background: rgba(0, 0, 0, 0.05);
}

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


.text ul > li h1, .text ul > li h2, .text ul > li h3, .text ul > li h4, .text ul > li h5, .text ul > li h6 {
    display: inline;
}

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

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

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

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

#container-page {
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    /*background: url(../images/page.jpg) no-repeat center -64px*/
}

/**
 * HEADER
 */

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

}

header:after {
    width: 100%;
    position: absolute;
    content: '';
    height: 1px;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
}


/*.header-top {    background-color: #337ab7;}
.header-top-inner {    width: 100%;    display: flex;    justify-content: flex-end;    align-items: stretch;    min-height: 54px;}
.header-top-right {    display: flex;    align-items: stretch;}*/


.top {
    position: relative;
}

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

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

.logo {
    float: none;
    width: 28%;
    display: flex;
    justify-content: flex-end;
}

.logo a {
    display: block;
    width: 402px;
}

.logo a img {
    display: block;
    max-width: 100%;
    transition: all 300ms ease-out;
    height: 96px;
}

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

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

#main-menu li.vsubmenu {
    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: 14px;
    text-transform: uppercase;
    padding-top: 37px;
    color: #fff;
    padding-bottom: 37px;
    display: block;
}

#main-menu > ul > li.active > a:after {
    width: 100%;
    background: #fff;
    height: 1px;
    display: block;
    position: absolute;
    content: '';
    bottom: 10px;
}

#main-menu > ul > li > a:hover:after {
    width: 100%;
    background: #fff;
    height: 1px;
    display: block;
    position: absolute;
    content: '';
    bottom: 0;
}

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

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

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

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

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

.submenu-full {
    display: none;
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    min-height: 100vh;
}

#main-menu ul .submenu-full > ul {
    flex-wrap: wrap;
    justify-content: flex-start;
}

#main-menu li.hsubmenu:hover .submenu-full {
    display: block;
}

#main-menu ul .submenu-full > ul {
}

#main-menu ul .submenu-full > ul li {
    display: flex;
    width: 16.666%;
    align-items: center;
}

#main-menu ul .submenu-full > ul li a {
    flex-direction: column;
    width: 100%;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    padding: 90px var(--space-50) var(--space-60);
    border: 0 none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    display: flex;
}

.submenu-full .subcategory-icons-small {
    right: 35px;
}

.submenu-full .subcategory-icon {
    margin-right: 0;
    margin-bottom: 25px;
    width: 120px;
    height: 120px;
}

.submenu-full .subcategory-name {
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
    margin-bottom: 36px;
}

.menu-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.menu-arrow svg {
    fill: #fff;
}

#main-menu ul .submenu-full > ul li a:hover {
    background: #fff;
}

#main-menu ul .submenu-full > ul li a:hover .subcategory-name {
    color: #001446;
}

#main-menu ul .submenu-full > ul li a:hover .menu-arrow svg {
    fill: #001446;
}


#main-menu ul .submenu-full > ul li .subcategory-icon-small svg,
#main-menu ul .submenu-full > ul li .subcategory-icon-small svg * {
    fill: var(--icon-color);
}

#main-menu ul .submenu-full > ul li .subcategory-icon-small svg #a {
    fill: #fff;
}

#main-menu ul .submenu-full > ul li a:hover .subcategory-icon-small {
    background-color: var(--icon-color);
}

#main-menu ul .submenu-full > ul li a:hover .subcategory-icon-small svg,
#main-menu ul .submenu-full > ul li a:hover .subcategory-icon-small svg * {
    fill: #fff;
}

#main-menu ul .submenu-full > ul li a:hover .subcategory-icon-small svg #a {
    fill: var(--icon-color);
}

/*#main-menu ul .submenu-full > ul li a:hover .green-icon svg,*/
/*#main-menu ul .submenu-full > ul li a:hover .green-icon svg * {*/
/*    fill: #fff*/
/*}*/

/*#main-menu ul .submenu-full > ul li a:hover .green-icon {*/
/*    background: #309A37*/
/*}*/

/*#main-menu ul .submenu-full > ul li a:hover .blue-icon svg,*/
/*#main-menu ul .submenu-full > ul li a:hover .blue-icon svg * {*/
/*    fill: #fff*/
/*}*/

/*#main-menu ul .submenu-full > ul li a:hover .blue-icon {*/
/*    background: #40C6EC*/
/*}*/

/*#main-menu ul .submenu-full > ul li a:hover .blue-icon #a {*/
/*    fill: #40C6EC;*/
/*}*/

/*#main-menu ul .submenu-full > ul li a:hover .yellow-icon svg,*/
/*#main-menu ul .submenu-full > ul li a:hover .yellow-icon svg * {*/
/*    fill: #fff*/
/*}*/

/*#main-menu ul .submenu-full > ul li a:hover .yellow-icon {*/
/*    background: #ffe600*/
/*}*/

#main-menu li li a {
    border-top: 1px solid #e5e5e5;
    padding: 12px 20px 13px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    background: #f5f5f5;
    color: #000;
}

#main-menu li.vsubmenu ul {
    width: 310px;
    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    padding-top: 0;
}

#main-menu li li a:hover,
#main-menu li li a.active {
    color: #fff;
    background: #36549d;
}

#main-menu li li.active a:hover {
    color: #fff;
    background: #36549d;
}

.rwdMenu ul li li a.active{
    color: #36549d;
}

.user {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-out;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-link {
    align-items: flex-start;
    font-size: var(--font-18);
    line-height: 200%;
    font-weight: 400;
    display: flex;
    padding: 40px;
}

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

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

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

}

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

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

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

.mainsearch.rwdPanel {
    display: flex;
    align-items: center;
    padding: 0
}

.mainsearch-search {
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mainsearch {
    float: left;
    display: inline-block
}

@media screen and (min-width: 1140px) {
    .mainsearch .form-element-container {
        position: absolute;
        right: 0;
        width: 0;
        transition: width .5s;
        background: #fff;
        z-index: 1;
        top: 0;
        height: 100%;
    }

    .mainsearch input.form-control {
        opacity: 0;
        pointer-events: none;
        padding-left: 50px !important;
        background: url(../images/icons/loupe_white.svg) no-repeat 17px center / 18px
    }
}

.mainsearch input.form-control {
    display: block;
    height: 50px;
    padding: 5px 15px;
    box-shadow: none;
    transition: opacity .2s;
    font-size: 14px;
    letter-spacing: .05em;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    color: var(--color-default);
    margin-top: 22px;
}

.mainsearch input.form-control::placeholder {
    color: var(--color-default)
}

.mainsearch-close {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    padding: 13px;
    z-index: 1;
    transition: all 300ms ease-out
}

.active .mainsearch-close {
    pointer-events: initial;
    opacity: 1;
    z-index: 9999;
    background: transparent;
    border: 0 none;
    top: 23px;
    right: 30px;
}

.active .mainsearch-close svg {
    display: block;
    max-width: 100%;
    width: 30px;
    height: 30px;
    fill: #fff
}

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

    .active .mainsearch-close:hover svg, .active .mainsearch-close:hover svg * {
        fill: var(--color-primary);
    }
}

.active .mainsearch-close svg, .active .mainsearch-close svg * {
    fill: #36424b
}

.mainsearch-search.active .form-element-container.form-element-search-container {
    border-left: 30px solid #fff;
    border-right: 30px solid #fff;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .2s;
    padding: 0;
    z-index: 1;
    position: relative;
    width: 96px;
    height: 96px;
    border: 0 none;
    background: url(../images/icons/search.svg) no-repeat center center;
}

.mainsearch .form-element-container {
    right: 0;
}

button.mainsearch-rwd-button {
    margin-left: 10px
}

.mainsearch-submit svg {
    fill: currentColor
}

.mainsearch-submit .icon {
    height: 22px;
    width: 22px
}

.mainsearch-close .icon {
    height: 22px;
    width: 22px;
    background-color: var(--color-primary)
}

.mainsearch .alert-block, .mainsearch .form-control-feedback {
    display: none
}

.active .mainsearch-submit {
    opacity: 0
}

.mainsearch .active input.form-control {
    pointer-events: initial;
    opacity: 1;
    color: var(--color-default);
    background: url(../images/icons/loupe.svg) no-repeat 8px center / 37px;
}

.mainsearch .active .form-element-container {
    z-index: 9999
}

.active-search .top-right {
    position: relative
}

.mainsearch-submit .fa {
    display: none
}


/*
* USER NAV
.header-top .user-nav {    display: flex;    align-items: stretch;}
.header-top .user-nav-item {    display: flex;    align-items: stretch;    position: relative;}
.header-top .user-nav-item-inner {    display: flex;    align-items: center;    color: #fff;}
.header-top .user-nav-item + .user-nav-item {    padding-left: 20px;    margin-left: 20px;}
.header-top .user-nav-item + .user-nav-item::before {    content: '';    display: block;    position: absolute;    top: 50%;    left: 0;    -ms-transform: translate3d(0, -50%, 0);    transform: translate3d(0, -50%, 0);    width: 1px;    height: 12px;    background-color: rgba(255, 255, 255, 0.6);}
.header-top .user-nav-item .icon {    width: 26px;    height: 26px;}
*/


/**
 * FOOTER
 */


footer {
    position: relative;
    background: url(../images/footer_bg.jpg) no-repeat top left / 33.33% auto;
}

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

.footer-boxes {
    display: flex;
    justify-content: space-between;
    position: relative;
}

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

.footer-col-title {
    margin-bottom: var(--space-30);
    color: rgb(255, 255, 255);
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
}


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


.footer-box .text a {
    color: #001446;
    padding-left: 40px;
    position: relative;
}

.footer-box:last-child {
    padding-right: 0;
    text-align: right;
    width: 33.33%;
}

img.logo-min {
    max-width: 33%;
    margin-bottom: var(--space-60);
}


.footer-left {
    display: flex;
    width: 66.66%;
    padding-top: calc(var(--space-50) + var(--space-60));
    justify-content: flex-end;
    padding-bottom: calc(var(--space-40) + var(--space-40) + var(--space-25));
    position: relative;
}

.footer-right {
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
}

.footer-left-content {
    padding-left: var(--container-padding);
    width: 100%;
    max-width: 1178px;
    padding-right: 18%;
}

.footer-boxes-text {
    display: flex;
}

.footer-box:first-child {
    width: 66.66%;
}



.footer-box a {
    background: url(../images/icons/web.svg) no-repeat left center / 15px;
}

.footer-box a[href^="mailto:"] {
    background: url(../images/icons/icon_mail.svg) no-repeat left center;
}

.footer-box a[href^="tel:"] {
    background: url(../images/icons/icon_phone.svg) no-repeat left center;
}

.footer-box a[href^="fax:"] {
    background: url(../images/icons/icon_fax.svg) no-repeat left center;

}

.footer-left:after {
    width: 80px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #001446;
}

.footer-left:before {
    height: 80px;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #001446;
}

.footer-right:before {
    width: 80px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #001446;
}

.footer-right:after {
    height: 80px;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #001446;
}

.footer-box-container:after {
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(0, 20, 70, 0.1);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0
}

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

.ue-right {
    display: flex;
    justify-content: space-between;
    width: 46%;
    align-items: center;
}

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

.footer-ue-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-50);
}

.ue-left {
    width: 43%;
}

.ue-item{
    max-width: 46%;
    display: block;
}

.ue-right img {
    display: block;
    max-width: 100%;
    max-height: 88px;

}

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

.oig-box .slogan-left {
    max-width: 14%;
}

.oig-box .slogan-left img {
    display: block;
    max-width: 100%;
}


.oig-box .slogan-right {
    max-width: 14%;
}

.oig-box .slogan-right img {
    display: block;
    max-width: 100%;
}

.oig-box-container {
    padding-top: 46px;
    padding-bottom: 46px;
    background: url(../images/oig_bg.jpg) no-repeat top center / cover;
}

.oig {
    width: 28%;
}

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


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

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


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

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

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

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

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

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

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

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

.copyright {
    position: relative;
}

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

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

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


/**
 * FORM
 */

.form-box-title {
    margin-bottom: var(--space-50);
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    text-transform: uppercase;
    color: #36549d;
    text-align: center;
    padding-bottom: 4px;
}

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

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

.form .form-element-name {
    margin-bottom: 2px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #001446;
}


/* INPUTY */
.form-control,
.form .form-control {
    height: 46px;
    box-shadow: 0 0 0 transparent;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    font-family: poppins, sans-serif;
    background-color: rgb(255, 255, 255);
    border-radius: 0;
    border: 1px solid #fff;
    font-weight: 400;
    font-size: 13px;
    color: #001446;
}

.form-control, .form .form-control {
    border-color: #e5e5e5;
}

.form-box-wrapper .form-control, .form-box-wrapper .form .form-control {
    border-color: #fff;
}

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

/* KLAUZULE I ZGODY */
.form .before-consent-row, .form .after-consent-row, .form .consent-all {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #001446;
}

.form .consent-row label {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    letter-spacing: 0.05em;
    color: #001446;
}

.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: 0;
    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;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #e5e5e5;
}

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

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

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

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


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

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

.form .consent-all-row {
    color: #001446;
    margin-bottom: 46px;
}

.form .consent-row label {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    letter-spacing: 0.05em;
    color: #001446;
}


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

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

.select2-container--default .select2-selection--multiple, .select2-container .select2-selection--single {
    height: 46px;
    border: 1px solid rgba(0, 20, 70, 0.1) !important;
    border-radius: 0;
    text-align: left;
    padding: 0;
    background: #f5f5f5;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

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

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

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

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

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

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

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

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

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

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

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

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

.form-box-wrapper button.btn.btn-primary.btn-lg {
    margin: 0 auto;
    display: block;
    width: 203px;
    padding: 0;
}


@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 {
    padding: 20px var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

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

.breadcrumb > li {
    position: relative;
    display: inline;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    color: #001446;
}

.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: #fff;
    transition: all .4s ease;
}

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

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

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

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

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

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

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

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

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

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

/**
 * LOGOTYPES SLIDER
 */
.logotypes-box-container {
    padding-top: var(--space-60);
    padding-bottom: var(--space-60);
}

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

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

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


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 50%;
}

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

.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;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

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

.langs-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 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 a {
    border: 0 none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
}

.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: 14px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

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

.lang span.langs-menu-icon {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 0 none;
    background-color: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    width: 96px;
    height: 96px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
}

.lang-button .langs-menu-icon {
    display: none;
}

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

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

.lang span.langs-menu-icon {
    display: none;
}

.langs-menu a:hover {
    background: transparent;
    font-weight: bold;
}

/**
 * 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: var(--space-50);
    margin-bottom: 20px;
}

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

.article-subtitle {
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    color: #36549d;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
}

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

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

.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: var(--font-20);
    color: #fff;
    transition: opacity 0.3s;
    background: rgba(54, 84, 157, 0.8);
}

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

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

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

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

/**
* PAGINATION
*/

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

.about-sub-box-container .pagination-wrapper {
    padding: 0;
    margin-bottom: -30px;
}

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

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

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


.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;
    border: 0 none;
    background: transparent;
    BORDER-RADIUS: 50%;
}

.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 {
        background: transparent;
        border-color: transparent;
    }

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

    .pagination-wrapper ul li.prev a:hover {
        background: transparent;
        border-color: transparent;
    }

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

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


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

.main-slider .slick-track {
    display: flex;
}

.main-slider .slick-slide {
    height: initial;
}

.slider {
    height: 100vh;
    min-height: 670px;
    position: relative;
}

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

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

.mask.slider-mask {
    background: #36549d;
    opacity: 0.8;
}

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


.slider-slogans {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1640px;
    top: 135px;
}

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

.slogan-left {
    max-width: 25%;
}

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

.slogan-right {
    max-width: 25%;
}

.slider-title {
    width: 50%;
}

.slider-desc {
    width: 41%;
}

.title1 {
    font-weight: 700;
    font-size: var(--font-60);
    line-height: 1.16667;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
}

.title1 img {
    height: 75px;
    margin: 0 auto;
}

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

.modal-content .description {
    color: #001446;
    margin-bottom: 0; 
}

.slider-box {
    padding-top: calc(var(--space-50) + var(--space-50));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 300px;
}


.slider-bottom-arrows {
    position: absolute;
    display: flex;
    bottom: 0;
    justify-content: space-between;
    width: 100%;
}

.slider-bottom-arrows button {
    display: flex;
    align-items: center;
    background: transparent;
    border: 0 none;
    padding: -0;
}

button.next-slide {
    flex-direction: row-reverse;
}

.btn-arrow {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-arrow svg {
    fill: #fff;
}

@media screen and (min-width: 1140px) {
    .slider-bottom-arrows button:hover .btn-arrow {
        background: #fff;
    }

    .slider-bottom-arrows button:hover svg {
        fill: var(--color-primary);
    }
}

.slide-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.42857;
    letter-spacing: 1.4em;
    text-transform: uppercase;
    color: #fff;
}

.prev-slide .slide-title {
    padding-left: 56px;
}

.next-slide .slide-title {
    padding-right: 56px;
}

.slider-bottom-arrows:before {
    content: '';
    width: 57.7%;
    height: 1%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
}

.slider-bottom-arrows:after {
    content: '';
    width: 31.7%;
    height: 1%;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
}

.prev-slide .btn-arrow:after {
    width: 1px;
    height: 50%;
    position: absolute;
    content: '';
    right: 0;
    top: 1px;
    background: #fff;
    display: block;
}

.next-slide .btn-arrow:after {
    width: 1px;
    height: 50%;
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    background: #fff;
    display: block;
}

.about-photo-row.photo-top {
    display: flex;
}

.about-photo-row img {
    display: block;
    max-width: 33.33%;
}

.about-photo-row.photo-top {
    justify-content: flex-end;
}

.about-photo-row.photo-bottom {
    justify-content: flex-start;
}

.about-photo-row img {
}

.about-box-title {
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1;
    text-transform: uppercase;
    color: #36549d;
    width: 100%;
}

.about-box {
    display: flex;
}

.about-left {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.about-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.about-middle {
    width: 33.33%;
    position: relative;
}

.about-right {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

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

.slider-about-arrows button {
    width: 60px;
    height: 60px;
    background: transparent;
    margin-left: 35px;
    border: 1px solid #fff;
}

.slider-about-arrows button svg {
    fill: #001446;
}

@media screen and (min-width: 1140px) {
    .slider-about-arrows button:hover svg {
        fill: var(--color-primary);
    }
}

.slider-about-arrows {
    margin-bottom: calc(var(--space-40) + var(--space-40));
    display: flex;
    justify-content: flex-end;
    padding-right: 80px;
}

.about-box-container {
    background: url(../images/about_left_bg.jpg) no-repeat top left / 33.33% auto, url(../images/about_right1.jpg) no-repeat bottom right / 33.33% auto;
}


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

.about-right-content {
    width: 100%;
    max-width: 540px;
    padding: 15% var(--container-padding) 0 16%;
}

.about-middle:after {
    content: '';
    width: 1px;
    height: calc(100% + 320px);
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    top: -160px;
}

.about-middle:before {
    content: '';
    width: 1px;
    height: calc(100% + 320px);
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: -160px;
}

.category-main-box-container {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.category-main-box-container .about-middle:before {
    display: none;
}

.category-main-box-container .about-middle:after {
    display: none;
}

.category-box-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    letter-spacing: 1.4em;
    text-transform: uppercase;
    color: #36549d;
    margin-bottom: 34px;
}

.category-main-box-container .about-left-content {
    padding-top: 18%;
    padding-right: 16%;
    justify-content: flex-start;
    align-items: flex-start;
}

.category-main-box-container .about-box {
    /* align-items: flex-start; */
}

.category-main-box-container .about-right-content {
    padding-top: 18%;
    padding-left: 16%;
}

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

.category-main-box-container .about-left {
    background: url(../images/about_left_bg2.jpg) no-repeat left top / 100% auto;
}

.category-main-box-container .about-right {
    background: url(../images/about_right2.jpg) no-repeat left top / 100% auto;
}

.subcategory-left {
    width: 33.33%;
    display: flex;
    justify-content: flex-end;
    border-right: 1px solid #fff;
}

.subcategory-box {
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

.subcategory-right {
    width: 66.66%;
    display: flex;
    flex-wrap: wrap;
}

.subcategory-left-content {
    width: 100%;
    max-width: 540px;
    height: 100%;
    padding-left: var(--container-padding);
}

.subcategory-title {
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1.75;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 21px;
}

.subcategory-desc {
    height: 100%;
    padding-top: calc(var(--space-40) + var(--space-40));
    padding-right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 140px;
}

.subcategory-desc .text.txt {
    color: #fff;
    margin-bottom: 30px;
}

.subcategory-item {
    width: calc(50% + 1px);
    position: relative;
    margin-bottom: -1px;
    margin-left: -1px;
}

.subcategory-link {
    display: flex;
    align-items: center;
    padding: 93px 94px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.subcategory-icon {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 28px;
    flex-shrink: 0;
}

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

.mainpage .subcategory-box-container .subcategory-icon {
    width: 150px;
    height: 150px;
}

.subcategory-name {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.subcategory-box-container .subcategory-name {
    width: 57%;
}

.subcategory-box-container {
    position: relative;
    margin-bottom: -1px;
}

.corner-left-top {
    position: absolute;
    left: 0;
    top: 0
}

.corner-right-top {
    position: absolute;
    right: 0;
    top: 0
}

.corner-left-bottom {
    position: absolute;
    left: 0;
    bottom: 0
}

.corner-right-bottom {
    position: absolute;
    right: 0;
    bottom: 0
}

.corner-left-top:before {
    width: 80px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
}

.corner-left-top:after {
    height: 80px;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
}

.corner-right-bottom:before {
    width: 80px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
}

.corner-right-bottom:after {
    height: 80px;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
}


.corner-right-top:before {
    width: 80px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
}

.corner-right-top:after {
    height: 80px;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
}

.corner-left-bottom:before {
    width: 80px;
    height: 1px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
}

.corner-left-bottom:after {
    height: 80px;
    width: 1px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
}

@media screen and (min-width: 1140px) {
    .subcategory-link:hover {
        border: 1px solid #ffff;
        background: #36549d;
    }
}

.mask.sub-mask {
    background: rgba(54, 84, 157, 0.8);
}

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

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

.subcategory-box-container:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
}

.subcategory-icons-small {
    display: flex;
    position: absolute;
    right: 20px;
    top: 30px;
}

.subcategory-icon-small {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 7px;
}

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

.news-link {
    display: flex;
    flex-direction: column;
    padding: 16%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mainpage .news-link {
    border-bottom: 0 none;
    height: 100%;
}

.mainpage .news-slider .corner-left-bottom{ display:none}
.mainpage .news-slider .corner-right-bottom{ }

.mainpage .news-slider .corner-right-bottom:before{ display:none}

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


.news-photo {
    margin-bottom: var(--space-50);
}

.news-name {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.5;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-30);
}

.news-link .text.txt {
    color: #fff;
}

.more {
    font-weight: bold;
}

@media screen and (min-width: 1140px) {
    .news-link:hover .more {
        text-decoration: underline;
    }

    .news-link:hover .news-name {
        text-decoration: underline;
    }

    .news-link:hover {
        background: #36549d;
    }
}

.news-box-container:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #fff;
    left: 0;
    top: 0;
}

.news-item {
    width: calc(50% + 1px);
    position: relative;
    margin-bottom: -1px;
    margin-left: -1px;
}

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

.slider-news-arrows {
    display: flex;
    justify-content: flex-end;
}

.slider-news-arrows button {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 0 none;
    margin-left: 35px;
}

.slider-news-arrows button svg {
    fill: #fff;
}

.news-box-container .subcategory-right {
    flex-direction: column;
}

.news-slider {
    width: 100%;
}

.subpage header {
    background: url(../images/top_bg.jpg) no-repeat top center;
    background-size: cover;
}

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

.page-heading-title {
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1.75;
    text-transform: uppercase;
    color: #36549d;
    text-align: center;
    margin-bottom: var(--space-40);
}

.basket-heading-title, .userpanel-container .userpanel-title, .search-group-heading-title {
    font-weight: 700;
    padding-right: 30px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1.75;
    text-transform: uppercase;
    color: #36549d;
}

.page-heading-title > span, .basket-heading-title > span, .search-group-heading-title > span {
    background: url(../images/h1_bg.png) no-repeat left center;
    display: inline;
    padding: 2px 20px;
}

.search-group-heading-main .search-group-heading-title {
    margin-bottom: 0;
}


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

.menu-box ul li a {
    display: block;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #001446;
    padding: 12px 23px;
    position: relative;
    transform-style: preserve-3d;
}

.menu-box ul li a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: skew(24deg) translateZ(-1px);
    z-index: 0;
    background-color: #fff;
    border: 1px solid #e7e8ed;
}

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

@media screen and (min-width: 1140px) {
    .menu-box ul li a:hover:before {
        background: #36549d;
        border-color: #36549d;
    }
}

.menu-box ul li.active a:before {
    background: #36549d;
    border-color: #36549d;
}

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

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

.about-sub-box-container:first-child .menu-box {
    margin-bottom: var(--space-40);
}

.about-sub-box-container .article-text.text.txt {
    margin-bottom: 0;
}

.article-big-image {
    display: block;
    max-width: 100%;
}

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

.about-sub-box-container:not([data-scroll='o-firmie']) {
    padding-bottom: calc(var(--space-50) + var(--space-50));
    border-bottom: 1px solid #e5e5e5;
    padding-top: calc(var(--space-30) + var(--space-40));
}

.about-sub-box-container:first-child {
    padding-top: 0;
}

.section-heading-title {
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1.75;
    text-transform: uppercase;
    color: #36549d;
    text-align: center;
    margin-bottom: 27px;
}

.section-heading-title > span {
    background: url(../images/h1_bg.png) no-repeat left center;
    display: inline;
    padding: 2px 20px;
}

.menu-box {
    max-width: 100%;
    margin: 0 auto var(--space-50);
}

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

.history-item {
    position: relative;
    padding-top: 0;
    padding-bottom: 150px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.history-item:nth-child(odd) .mask.history-mask {
    background: rgba(0, 20, 70, 0.8);
}

.history-item:nth-child(even) .mask.history-mask {
    background: rgba(54, 84, 157, 0.8);
}

.year {
    border-radius: 100%;
    width: 186px;
    height: 186px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: var(--font-40);
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    line-height: 0.75;
}

.history-item:nth-child(odd) .year {
    background: #36549d;
}

.history-item:nth-child(even) .year {
    background: #001446;
}

.history-desc {
    width: 33.5%;
    text-align: center;
    padding: 0 34px;
}

.history-desc-title {
    font-weight: 200;
    font-size: var(--font-24);
    line-height: 168%;
    color: #001446;
    margin-bottom: 26px;
}

.history-desc .text.txt {
    padding: 0 0px;
    text-align: center;
}

.history-img {
    width: 33.5%;
}

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

.history-content {
    align-items: center;
    display: flex;
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    justify-content: space-between;
}


.history-item .photo-bg {
    display: none;
}

.files-list ul {
    display: flex;
    flex-wrap: wrap;
    margin: -34px -44px;
    position: relative;
}

.files-list ul li {
    width: 25%;
    padding: 34px 44px;
}

.file-photo {
    width: 100%;
    position: relative;
    margin-bottom: var(--space-40);
    padding-bottom: 139%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}


.file-photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

.file-name {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    color: #001446;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.icon-download {
    width: 50px;
    height: 50px;
    border: 1px solid #001446;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.files-list ul li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    position: relative;
}

img.icon-info {
    position: absolute;
    right: 16px;
    top: 12px;
    z-index: 1;
}

.file-content {
    width: 100%;
}

.person-item {
    position: relative;
    padding-top: calc(var(--space-50) + var(--space-50) + var(--space-50));
    padding-bottom: calc(var(--space-50) + var(--space-50) + var(--space-50));
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.peron-name {
    font-weight: 700;
    font-size: var(--font-32);
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    line-height: 138%;
    margin-bottom: 3px;
}

.position {
    font-weight: 300;
    font-size: var(--font-20);
    line-height: 1.5;
    text-align: center;
    color: #fff;
}

.person-content {
    position: relative;
}

.person-item:nth-child(odd) .mask.history-mask {
    background: rgba(0, 20, 70, 0.8);
}

.person-item:nth-child(even) .mask.history-mask {
    background: rgba(54, 84, 157, 0.8);
}

.news-box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(var(--space-30) + var(--space-40));
    position: relative;
}

.news-box .news-item {
    width: 33.33%;
}

.news-item:nth-child(6n+1) .news-mask {
    background: rgba(23, 49, 113, 0.9);
}

.news-item:nth-child(6n+2) .news-mask {
    background: rgba(31, 62, 136, 0.9);
}

.news-item:nth-child(6n+3) .news-mask {
    background: rgba(54, 84, 157, 0.9);
}

.news-item:nth-child(6n) .news-mask {
    background: rgba(23, 49, 113, 0.9);
}

.news-item:nth-child(6n+4) .news-mask {
    background: rgba(31, 62, 136, 0.9);
}

.news-item:nth-child(6n+5) .news-mask {
    background: rgba(54, 84, 157, 0.9);
}

.news-box .news-link {
    padding-bottom: 20%;
    height: 100%;
}


.subcategory-sub-box .subcategory-item {
    width: 33.33%;
}

.subcategory-sub-box .subcategory-link {
    flex-direction: column;
    padding-bottom: calc(var(--space-30) + var(--space-40));
    padding-top: calc(var(--space-50) + var(--space-50) + var(--space-50));
    justify-content: space-between;
    height: 100%;
}

.subcategory-sub-box .subcategory-icon-small {
    width: 83px;
    height: 83px;
    padding: 10px;
}


.subcategory-sub-box .subcategory-icons-small {
    right: 34px;
    top: 44px;
}

.subcategory-sub-box .subcategory-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-40);
}

.subcategory-sub-box .subcategory-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.875;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 0 22%;
    margin-bottom: var(--space-60);
}

.subcategory-sub-box .menu-arrow {
    width: 80px;
    height: 80px;
}

.subcategory-sub-box .menu-arrow svg {
    width: 55%;
}

.subcategory-sub-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

@media screen and (min-width: 1140px) {
    .subcategory-sub-box .subcategory-link:hover {
        border-color: rgba(255, 255, 255, 0.2);
    }


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

    .files-list ul li a:hover .icon-download {
        background: var(--color-default);
    }

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

.subcategory-sub-box .subcategory-icon-small svg,
.subcategory-sub-box .subcategory-icon-small svg * {
    fill: #fff;
}

.subcategory-sub-box .subcategory-icon-small svg #a {
    fill: var(--icon-color);
}

.subcategory-sub-box .subcategory-icon-small {
    background: var(--icon-color)
}

@media screen and (min-width: 1140px) {
    .subcategory-sub-box .subcategory-link:hover .subcategory-icon-small svg,
    .subcategory-sub-box .subcategory-link:hover .subcategory-icon-small svg * {
        fill: var(--icon-color);
    }

    .subcategory-sub-box .subcategory-link:hover .subcategory-icon-small svg #a {
        fill: #fff;
    }

    .subcategory-sub-box .subcategory-link:hover .subcategory-icon-small {
        background: transparent;
    }
}

/*.subcategory-sub-box .green-icon svg,*/
/*.subcategory-sub-box .green-icon svg *,*/
/*.subcategory-sub-box .blue-icon svg,*/
/*.subcategory-sub-box .blue-icon svg *,*/
/*.subcategory-sub-box .yellow-icon svg,*/
/*.subcategory-sub-box .yellow-icon svg * {*/
/*    fill: #fff*/
/*}*/

/*.subcategory-sub-box .blue-icon svg #a {*/
/*    fill: #40C6EC;*/
/*}*/

/*.subcategory-sub-box .green-icon {*/
/*    background: #309A37*/
/*}*/

/*.subcategory-sub-box .blue-icon {*/
/*    background: #40C6EC;*/
/*}*/

/*.subcategory-sub-box .yellow-icon {*/
/*    background: #ffe600*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*    .subcategory-sub-box .subcategory-link:hover .green-icon svg,*/
/*    .subcategory-sub-box .subcategory-link:hover .green-icon svg * {*/
/*        fill: #309A37*/
/*    }*/

/*    .subcategory-sub-box .subcategory-link:hover .green-icon {*/
/*        background: transparent;*/
/*    }*/

/*    .subcategory-sub-box .subcategory-link:hover .blue-icon svg,*/
/*    .subcategory-sub-box .subcategory-link:hover .blue-icon svg * {*/
/*        fill: #40C6EC*/
/*    }*/

/*    .subcategory-sub-box .subcategory-link:hover .blue-icon svg #a {*/
/*        fill: #fff;*/
/*    }*/

/*    .subcategory-sub-box .subcategory-link:hover .blue-icon {*/
/*        background: transparent;*/
/*    }*/

/*    .subcategory-sub-box .subcategory-link:hover .yellow-icon svg,*/
/*    .subcategory-sub-box .subcategory-link:hover .yellow-icon svg * {*/
/*        fill: #ffe600*/
/*    }*/

/*    .subcategory-sub-box .subcategory-link:hover .yellow-icon {*/
/*        background: transparent;*/
/*    }*/
/*}*/

.product-list-container .page-heading-title {
    margin-bottom: 20px;
}

.text-intro {
    text-align: center;
    max-width: 1360px;
    margin: 0 auto calc(var(--space-30) + var(--space-40));
}

.text-intro .text.txt {
    text-align: center;
}

.filter-box {
    margin-bottom: var(--space-60);
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin: -35px -15px 3px;
}

.product-item {
    width: 25%;
    padding: 35px 15px;
}

.product-item-link {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 4px;
    height: 100%;
}

.product-item .product-photo {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
    transition: all 300ms ease-out;
    width: 100%;
    padding-bottom: 100%;
}


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

.product-photo .subcategory-icon-small {
    width: 42px;
    height: 42px;
    padding: 6px;
}

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

.product-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.71429;
    text-transform: uppercase;
    color: #001446;
    padding-right: 10%;
    display: flex;
    height: 100%;
    align-items: center;
    padding-bottom: 20px;
}

.product-photo img {
    /* opacity: 0; */
}

.product-photo .subcategory-icon-small {
    background: var(--icon-color);
}

.product-photo .subcategory-icon-small svg,
.product-photo .subcategory-icon-small svg * {
    fill: #fff;
}

.product-photo .subcategory-icon-small svg #a {
    fill: var(--icon-color);
}

/*.product-photo .yellow-icon {*/
/*    background: #ffe600*/
/*}*/

/*.product-photo .green-icon {*/
/*    background: #309A37*/
/*}*/

/*.product-photo .blue-icon {*/
/*    background: #40C6EC;*/
/*}*/

/*.product-photo .yellow-icon svg,*/
/*.product-photo .yellow-icon svg *,*/
/*.product-photo .green-icon svg,*/
/*.product-photo .green-icon svg *,*/
/*.product-photo .blue-icon svg,*/
/*.product-photo .blue-icon svg * {*/
/*    fill: #fff;*/
/*}*/

.product-photo .subcategory-icons-small {
    right: 25px;
    top: 25px;
}

.product-photo .subcategory-icon-small {
    margin-left: 4px;
}

.product-details {
    display: flex;
    justify-content: space-between;
    padding-top: 7px;
    padding-bottom: var(--space-60);
    border-bottom: 1px solid #e5e5e5;
    align-items: flex-start;
}

.product-details-photo {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 46%;
    margin-top: 15px;
    position: relative;
}

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

.product-details-photo .subcategory-icon-small {
    border: 1px solid #e5e5e5;
}

.product-right {
    width: 47.6%;
}

.product-right .page-heading-title {
    text-align: left;
    margin-bottom: 23px;
}

.product-desc {
    padding-bottom: var(--space-40);
    border-bottom: 1px solid #e5e5e5;
}

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

.buy-box .price-gross {
    display: flex;
    align-items: baseline;
}

.buy-box .price-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
    margin-right: 37px;
}

.buy-box .price.price-old {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    text-decoration: line-through;
    color: #001446;
    padding-right: 10px;
}

.buy-box .price.price-new {
    font-weight: 700;
    font-size: var(--font-32);
    line-height: 0.9375;
    color: #001446;
    padding-left: 18px;
    letter-spacing: 0.04em;
}

@media screen and (min-width: 1140px) {
    .product-files ul li:hover {
        border-color: var(--color-default);
    }
}

.product-files ul li {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.product-files ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 14px 16px 18px 25px;
}

.product-files .file-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
    width: 100%;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-bottom: 0;
}

.file-download {
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-default);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-box-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    text-transform: uppercase;
    color: #36549d;
    margin-bottom: var(--space-50);
}

.product-specification ul li a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-specification ul {
    display: flex;
    flex-wrap: wrap;
    margin: -30px;
}

.product-specification ul li {
    padding: 30px;
    width: 50%;
}

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

.product-specification ul li a img {
    display: block;
    max-width: 100%;
}

.variants-box-container .product-box-title {
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: #36549d;
    margin-bottom: var(--space-40);
}

.variants-box-container {
    padding-top: var(--space-60);
    background: #f5f5f5;
    padding-bottom: var(--space-60);
    margin-bottom: var(--space-30);
}

.text.txt table {
    width: 100%;
    margin: 0;
}

.text.txt table th {
    font-size: 14px;
    line-height: 1.28571;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: middle;
    background: #36549D;
    padding: 16px 20px;
    font-weight: normal;
    text-align: center;
}


.variants-box table th {
    font-weight: 700;
    padding: var(--space-30) 20px;
}


.variants-box table th:last-child {
    width: 130px;
}

.text.txt table td {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #001446;
    padding: 16px 20px;
    vertical-align: middle;
}

.variants-box table td {
    padding: 9px 20px 10px;
    text-align: center;
}

.certificate-box-container {
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
}

.certificate-box-container .files-list ul li {
    padding: 35px;
}

.certificate-box-container .files-list ul {
    margin: -35px;
}

.certificate-box-container .files-list ul li .icon-download {
    width: 43px;
    height: 43px;
}

.certificate-box-container .files-list ul li .file-content {
    margin-bottom: var(--space-30);
}

.files-list {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: calc(var(--space-30) + var(--space-40));
}

.certificate-box-container:last-child .files-list {
    border-bottom: 0 none;
}

.buttons-center {
    text-align: center;
    display: flex;
    justify-content: center;
}

.buttons-center a {
    margin: 5px;
}

.buttons-center .has-icon {
    padding-left: 0
}

.buttons-center .has-icon .btn-icon {
    margin-right: 0;
}

.buttons-center:last-child {
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.subcategory-sub-box2 .subcategory-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.subcategory-sub-box2 .subcategory-name {
    font-weight: normal;
    margin-bottom: calc(var(--space-30) + var(--space-40));
}

.extended-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    text-transform: uppercase;
    color: #36549d;
    margin-bottom: var(--space-30);
}

.extended-text-gallery .text.txt {
    margin-bottom: 20px;
}

.gallery-text {
    display: flex;
    justify-content: space-between;
    margin: -10px;
}

.gallery-text-item {
    /*width: 50%;*/
    width: 100%;
    padding: 10px;
}

.gallery-text-item img {
    display: block;
    max-width: 100%;
}

.extended-text-gallery {
    padding-bottom: var(--space-50);
}


.extended-text-box .extended-text-gallery:last-child {
    padding-bottom: 0
}

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

.extended-text-box:last-child .extended-text-gallery {
    padding-bottom: 0;
}

.projects-box-container {
    padding-bottom: calc(var(--space-50) + var(--space-50));
    border-bottom: 1px solid #e5e5e5;
    padding-top: calc(var(--space-40) + var(--space-40));
}

.projects-box-container:first-child {
    padding-top: 0;
}

.gallery-long {
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
}

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

.production-info {
    padding-bottom: var(--space-60);
}

.cooperation-box-title {
    font-weight: 700;
    font-size: var(--font-20);
    text-transform: uppercase;
    color: #36549d;
    margin-bottom: var(--space-40);
    line-height: 1.8;
}

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

.logotypes-box ul li {
    width: 33.33%;
    padding: 5px;
}

.logotypes-box ul li a {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: var(--space-50);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: var(--space-50);
}

.logotype-photo {
    text-align: center;
    width: 100%;
    padding-bottom: 28%;
    position: relative;
    margin-bottom: var(--space-40);
}

.logotype-name {
    font-weight: 400;
    font-size: var(--font-20);
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    color: #001446;
    margin-bottom: 5px;
    padding: 0 5px;
}

.logotype-photo img {
    display: block;
    max-width: 75%;
    max-height: 75%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.job-box-container .page-heading-title {
    color: #fff;
}

.job-box-container .page-heading-title > span {
    background: url(../images/h1_bg2.png) no-repeat left center;
}

.job-box-container .page-heading-title {
    color: #fff;
}

.job-box-container .page-heading-title > span {
    background: url(../images/h1_bg2.png) no-repeat left center;
}

.job-box-container .text-intro .text.txt {
    color: #fff;
}

.job-box {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: var(--space-40);
    position: relative;
}

.job-item {
    width: 50%;
    margin-bottom: -1px;
    margin-left: -1px;
    position: relative;
}

.job-link {
    display: flex;
    justify-content: space-between;
    padding: 6.7% 9.6%;
    height: 100%;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.job-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    flex-shrink: 0;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.job-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1.5;
    color: #fff;
    margin-bottom: 13px;
}

.job-item .text.txt {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-content {
    padding-right: 23%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.job-arrow svg {
    fill: #fff;
}

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

.job-box-container {
    padding-bottom: var(--space-40);
    position: relative;
    z-index: 1;
}

.job-box-container .pagination-wrapper ul li a, .job-box-container .pagination-wrapper ul li span {
    color: #fff;
}

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

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

.job-box-container .pagination-wrapper ul li.active a {
    text-decoration: underline
}

@media screen and (min-width: 1140px) {
    .job-box-container .pagination-wrapper ul li.prev a:hover, .job-box-container .pagination-wrapper ul li.next a:hover {
        border: 1px solid #FFF;
        BORDER-RADIUS: 50%
    }

    .job-box-container .pagination-wrapper ul li a:hover {
        text-decoration: underline
    }
}

.job-box-container .container-small {
    position: relative;
    z-index: 9999;
}

.job-box-container .breadcrumb > li, .job-box-container .breadcrumb > li a {
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .job-box-container .breadcrumb > li:hover a span {
        color: #fff;
        text-decoration: underline
    }
}

.job-item:nth-child(4n+1):before {
    width: 80px;
    height: 1px;
    position: absolute;
    content: '';
    right: 0;
    background: #fff;
    bottom: 0;
}

.job-item:nth-child(4n+1):after {
    height: 80px;
    width: 1px;
    position: absolute;
    content: '';
    right: 0;
    background: #fff;
    bottom: 0;
}

.job-item:nth-child(4n+2):before {
    width: 80px;
    height: 1px;
    position: absolute;
    content: '';
    left: 0;
    background: #fff;
    bottom: 0;
}

.job-item:nth-child(4n+2):after {
    height: 80px;
    width: 1px;
    position: absolute;
    content: '';
    left: 0;
    background: #fff;
    bottom: 0;
}

.job-item:nth-child(4n+3):before {
    width: 80px;
    height: 1px;
    position: absolute;
    content: '';
    right: 0;
    background: #fff;
    top: 0;
}

.job-item:nth-child(4n+3):after {
    height: 80px;
    width: 1px;
    position: absolute;
    content: '';
    right: 0;
    background: #fff;
    top: 0;
}

.job-item:nth-child(4n+4):before {
    width: 80px;
    height: 1px;
    position: absolute;
    content: '';
    left: 0;
    background: #fff;
    top: 0;
}

.job-item:nth-child(4n+4):after {
    height: 80px;
    width: 1px;
    position: absolute;
    content: '';
    left: 0;
    background: #fff;
    top: 0;
}

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

.grid-content {
    width: 49%;
    padding-top: var(--space-30);
}

.grid-photo {
    width: 49.2%;
    position: relative;
}

.grid-photo img {
    display: block;
    clip-path: polygon(36% 0, 100% 0, 100% 100%, 0% 100%);
    max-width: 100%;
}

.grid-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    text-transform: uppercase;
    color: #36549d;
    margin-bottom: var(--space-30);
}

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

.grid-item:nth-child(even) .grid-photo img {
    clip-path: polygon(0 0, 100% 0, 63% 99%, 0% 100%);
}

.job-graf {
    width: 200px;
    height: 107px;
    position: absolute;
    right: -10px;
    bottom: -10px;
    background: url(../images/job_right.png) no-repeat;
}

.grid-item:nth-child(even) .job-graf {
    left: -10px;
    bottom: -10px;
    background: url(../images/job_left.png) no-repeat;
}

.job-details-container {
    padding-bottom: 25px;
}

.contact-title {
    font-weight: 700;
    font-size: var(--font-20);
    line-height: 1;
    text-transform: uppercase;
    color: #36549d;
    margin-bottom: 17px;
    min-height: 40px;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 1px;
    position: relative;
}

.contact-item {
    width: 33.33%;
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
    border: 1px solid #e5e5e5;
    margin-bottom: -1px;
    margin-right: -1px;
    position: relative;
}

.address {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
}

.address img {
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-bottom: 4px;
}

.address h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
    min-height: 60px;
    margin-bottom: 10px;
}

.contact-item a {
    color: #001446;
    padding-left: 30px;
    position: relative;
}

.contact-item a[href^="mailto:"] {
    background: url(../images/icons/icon_mail.svg) no-repeat left center;
}

.contact-item a[href^="tel:"] {
    background: url(../images/icons/icon_phone.svg) no-repeat left center;
}

.contact-item a[href^="fax:"] {
    background: url(../images/icons/icon_fax.svg) no-repeat left center;

}

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

.label-contact {
    padding-left: 30px;
}

.contact-item-content {
    padding: calc(var(--space-30) + var(--space-40)) var(--space-50) var(--space-60);
    height: 100%;
}

.contact-item iframe {
    height: 100%;
    display: block;
    width: 100%;
}

.contact-subtitle {
    font-weight: 700;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
    min-height: 60px;
    margin-bottom: 10px;
}

.contact-box-title {
    font-weight: 700;
    font-size: var(--font-40);
    line-height: 1.5;
    text-transform: uppercase;
    color: #001446;
    height: 100%;
    display: flex;
    align-items: center;
}



.contact-item-lang {
    padding-left: 30px;
}

.contact-box.contact-dark .contact-item, .contact-box.contact-light .contact-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-main-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 110px;
    background: #F5F5F5;
    padding-top: calc(var(--space-50) + var(--space-50));
}

.form-box-wrapper {
    width: 56.85%;
    display: flex;
    justify-content: flex-end;
}

.form-img {
    width: 41%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-50);
    padding-bottom: var(--space-50);
}

.form-img img {
    display: block;
    margin: 0 auto;
    max-width: 51%;
}

.form-box-inner {
    width: 100%;
    max-width: 854px;
    padding-left: var(--container-padding);
}

.panel-top {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e5e5e5;
}

.panel-top-left {
    width: 33.33%;
}

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

.panel-top-right {
    width: 33.33%;
}

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

.panel-middle {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}

.panel-middle-left {
    width: 33.33%;
    padding-top: calc(var(--space-50) + var(--space-50));
    padding-bottom: calc(var(--space-50) + var(--space-50));
}

.panel-middle-center {
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 796px;
}

.panel-middle-center img {
    max-width: 100%;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-middle-right {
    width: 33.33%;
    padding-top: calc(var(--space-50) + var(--space-50));
    padding-bottom: calc(var(--space-50) + var(--space-50));
}

.panel-title {
    font-weight: 700;
    font-size: var(--font-24);
    line-height: 38px;
    text-transform: uppercase;
    text-align: center;
    color: #36549d;
    margin-bottom: var(--space-40);
}

.panel-title > span {
    background: url(../images/h2_bg.png) no-repeat left center;
    display: inline;
    padding: 2px 20px;
}

.panel-middle .form-control, .panel-middle .form .form-control {
    border-color: #e5e5e5;
}

.form-offset {
    padding: 0 16.5%;
}

.big-font {
    position: absolute;
    font-size: 15vw;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.product-item .price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.shop-product-price .price-box {
    padding-top: 11px;
    padding-bottom: 6px;
}

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

.basket {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #36549D;
    border: 1px solid #36549D;
    border-radius: 50%;
    margin-left: 20px;
    transition: all 300ms ease-out;
}

.price-caption {
    font-weight: 400;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
}

.price-from {
    font-weight: 700;
    font-size: 14px;
    line-height: 2.14286;
    text-align: right;
    color: #001446;
}

@media screen and (min-width: 1140px) {
    a.product-item-link:hover .basket {
        background: #fff;
    }

    a.product-item-link:hover .basket svg, a.product-item-link:hover .basket svg * {
        fill: #36549D;
    }

    a.product-item-link:hover .product-photo {
        box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.15);
    }
}

@media screen and (min-width: 1140px) {
    @media screen and (max-height: 900px) {
        .slider-box {
            padding-bottom: 200px;
        }
    }
}


.mainsearch .dropdown-menu .dropdown-search-li.group span {
    background-color: var(--color-primary);
}

.mainsearch .dropdown-menu .dropdown-search-li.all-search-results a {
    background: #001446;
}


.upload-add-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.upload-add-btn.clearfix {
    width: 35%;
    padding-right: 7%;
}

.upload-add-dropzone {
    width: 65%;
    margin-top: 0;
}

.dropzone-uploader {
    border: 1px dashed #001446;
    background: #fff;
    border-radius: 0;
    height: 110px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.00005;
    letter-spacing: 0.05em;
    text-align: center;
    color: #2f2f2f;
}

label.btn.btn-default.btn-file {
    border: 1px solid #001446;
    background: transparent;
    width: 94%;
    height: 46px;
    line-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 17px !important;
}

.fileupload-info {
    font-weight: 400;
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #001446;
}

.btn-file > .text .fa {
    background: url(../images/icons/file_icon.svg) no-repeat;
    width: 22px;
    height: 24px;
    text-indent: -20000px;
    margin-right: 7px;
}

.btn-file > .text {
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: #001446;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.container + .projects-box-container:nth-child(2) {
    padding-top: 0;
}

.file-photo img.icon-info {
    right: 16px;
    top: 12px;
    left: auto;
    transform: none;
}

.cloud {
    box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.25);
    padding: 50px;
    position: absolute;
    width: calc(400% - 88px);
    bottom: 100%;
    left: 0;
    right: 0;
    background: #fff;
    margin: 34px 44px;
    display: none;
    margin-bottom: -20px;
    z-index: 1;
}

.cloud:after {
    background: url(../images/t.png) no-repeat top center;
    width: 44px;
    height: 30px;
    position: absolute;
    bottom: -29px;
    content: '';
    left: calc(25% - 120px);
    z-index: 1;
}

.files-list ul li {
    position: relative;
}


.files-list ul li:nth-child(4n+2) .cloud {
    left: -100%;
}

.files-list ul li:nth-child(4n+3) .cloud {
    left: -200%;
}

.files-list ul li:nth-child(4n+4) .cloud {
    left: -300%;
}


.files-list ul li:nth-child(4n+2) .cloud:after {
    left: calc(50% - 96px);
}


.files-list ul li:nth-child(4n+3) .cloud:after {
    left: calc(75% - 74px);
}

.files-list ul li:nth-child(4n+4) .cloud:after {
    left: calc(100% - 50px);
}


.cloud .text.txt h1,
.cloud .text.txt h2,
.cloud .text.txt h3,
.cloud .text.txt h4,
.cloud .text.txt h5,
.cloud .text.txt h6 {
    text-transform: uppercase;
    margin-bottom: 10px;
}


.uploaded-file-name {
    display: flex;
    align-items: center;
}

.uploaded-file-name .file-name {
    margin: 0;
    padding-left: 6px;
}


.thumbnail-editor {
    width: 30px;
    padding: 0;
    height: 30px;
}

.file-upload-delete.media-remove {
    width: 30px;
    height: 30px;
    border: 0;
    padding: 0;
    margin-left: 4px !important;
}


.form-box-container {
    margin-bottom: 100px;
}

.filter-box label.form-element-name {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #001446;
}

.filter-box label.form-element-name {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #001446;
}

.filter-box .form-control, .filter-box .form .form-control {
    border: 1px solid rgba(0, 20, 70, 0.1);
    background: #f5f5f5;
}

.form-group.form-group-lg.col-sm-6.col-md-4.col-lg-3.filter-form-buttons.pull-right {
    width: 15%;
    display: flex;
    padding-top: 26px;
}

.filters-reset a {
    height: 46px;
    line-height: 100%;
    background: #36549d;
    color: #fff;
    text-decoration: none;
}

@media screen and (min-width: 1140px) {
    .filters-reset a:hover {
        background-color: transparent;
        color: var(--color-primary);
        border-color: var(--color-primary);
        text-decoration: none;
    }
}

.filters-apply a {
    height: 100%;
}

.filters-reset a span {
    display: block;
    height: 100%;
    line-height: 32px;
}

.icon.icon-mask.icon-close {
    display: none;
}

button.btn.btn-filter {
    height: 46px;
    margin-left: 8px;
}



.product-nav-slider .product-slide {
    padding: 4px;
}

.product-nav-slider .product-slide-image {
    width: 100%;
    padding-bottom: 79%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-nav-slider .product-slide-image img {
    position: absolute;
    max-width: 95%;
    max-height: 95%;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product-nav-slider .product-slide-inside {
    width: 100%;
    border: 1px solid #e5e5e5;
}

.product-nav-slider {
    margin-bottom: 20px;
    max-height: 167px !important;
    max-width: 624px !important;
    display: flex;
    flex-wrap: wrap;
}

.product-slider {
    max-height: 434px !important;
    max-width: 623px !important;
    overflow: hidden;
}

.product-slider .product-slide {
    max-height: 434px !important;
    max-width: 623px !important;
    overflow: hidden;
}

.product-nav-slider .product-slide {
    max-height: 167px !important;
    max-width: 208px !important;
    overflow: hidden;
}

.product-nav-slider .slick-list, .product-slider .slick-list {
    height: 100% !important;
	 width: 100% !important;  overflow: hidden;
}



.product-nav-slider  .slick-track,.product-nav-slider  .slick-list, .product-slider  .slick-track,.product-slider  .slick-list {
    display: flex;
    width: 100%;
}

.product-right .product-files {
    padding-top: 15px;
}

.heading-description {
    text-align: center;
    max-width: 1360px;
    margin: 0 auto calc(var(--space-30) + var(--space-40));
    overflow: visible;
    font-size: 14px;
    line-height: 2.14286;
    color: #001446;
}

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

li.user-nav-item.top-box-container {
    width: 100%;
    height: 100%;
}

a.user-nav-item-inner {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}

ul.user-nav {
    width: 100%;
    height: 100%;
}

button.btn.btn-primary.btn-block.basket span {
    display: none;
}

button.btn.btn-primary.btn-block.basket span.icon {
    display: flex;
}

button.btn.btn-primary.btn-block.basket svg path {
    fill: #fff;
}

button.btn.btn-primary.btn-block.basket {
    background: #36549D;
    border: 1px solid #36549D;
    transition: none;
}

.price-box-right .price-box {
    border: 0 none;
}

@media screen and (min-width: 1140px) {
    button.btn.btn-primary.btn-block.basket:hover {
        background: #fff;
    }


    button.btn.btn-primary.btn-block.basket:hover svg {
        fill: var(--color-primary);
    }

    a.product-item-link:hover button.btn.btn-primary.btn-block.basket {
        background: #fff;
    }

    a.product-item-link:hover button.btn.btn-primary.btn-block.basket svg, a.product-item-link:hover button.btn.btn-primary.btn-block.basket svg * {
        fill: var(--color-primary);
    }
}

.modal-header button.close {
    margin-top: -15px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 1140px) {
    .modal-header:hover .close {
        color: var(--color-primary);
        background: #fff;
    }
}

.user-bar-header-box {
    background: #36549D;
    padding-top: 12px;
    padding-bottom: 12px;
}

.user-bar-header-left {
    display: flex;
    width: 41%;
    justify-content: space-between;
}

.user-nav-item-logout {
    width: auto;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
    display: flex;
    align-items: center;
}


.user-nav-item-inner {
    display: flex;
    align-items: center;
}

.user-nav-item-inner-icon {
    border: 1px solid #fff;
    border-radius: 18px;
    width: 36px;
    height: 36px;
    text-align: center;
    padding: 8px;
    margin-right: 20px;
}

.user-nav-item-inner-caption {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
}

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

.user-bar-header .basket-icon {
    width: 36px;
    height: 36px;
    padding: 0px;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 18px;
}

.user-bar-header .basket-box-btn {
    background: transparent;
    margin: 0;
}

.user-bar-header .basket-box-btn .caption-count {
    font-size: 8px;
    width: 17px;
    height: 17px;
}

.user-bar-header .caption-value {
    display: none;
}

.user-bar-header .caption-basket {
    margin-right: 15px;
    display: block;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .user-bar-header .basket-box-btn:hover .basket-icon {
        background: #fff;
        color: var(--color-primary);
    }
}

.user-bar-header span.icon.icon-mask.icon-logout {
    border: 1px solid #fff;
    border-radius: 18px;
    width: 36px;
    height: 36px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1140px) {
    .user-nav-item-logout:hover {
        color: #fff
    }

    .user-nav-item-logout:hover span.icon.icon-mask.icon-logout {
        background: #fff
    }

    .user-nav-item-logout:hover span.icon.icon-mask.icon-logout svg, .user-nav-item-logout:hover span.icon.icon-mask.icon-logout svg * {
        fill: var(--color-primary)
    }
}

.top-box-submenu-list li {
    border-color: #e5e5e5;
}


.basket-table thead tr > * {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    color: #fff;
    background: var(--shop-primary);
}

.basket-table thead tr > th:nth-child(2) {
    text-align: left;
}


.basket-table td:last-child .btn {
    border-radius: 0;
    background-color: #FF0000;
    border-color: #FF0000;
}


.shop-quantity-box input.input-qty {
    background: #f5f5f5;


}

.shop-quantity-box .qty-down, .shop-quantity-box .qty-up {
    background: #f5f5f5;
}


.order-history-view .panel-heading h3, .order-history-view .form-element-name, .basket-view .basket-summary-right h3, .form *[class*="form-element-collection"] > .form-element-name, .form *[class*="form-element-collection"] > .form-element-label-wrapper > .form-element-name, .panel-default > .panel-heading h2, .order-history-view .form-element-name, .basket-view .summary-box .form-element-name, .basket-view .summary-box h3, .filter-grid h2, .order-history-container .table.table-crud thead th {
    color: #fff;
    background: #36549D;
    border-radius: 0;
}


.panel-radius.panel-radius {
    border-radius: 0;
}

.basket-view-bottom a {
    margin-right: 10px;
    margin-bottom: 10px;
}

.basket-view {
    padding-bottom: 40px;
}

.basket-view .btn.btn-default {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    margin-bottom: 10px;
}


@media screen and (min-width: 1140px) {
    .basket-view .btn.btn-default:hover {
        background-color: #fff;
        color: var(--color-primary);
    }
}

.invoice-address-fieldset .form-element-label-wrapper .form-element-name {
    color: #fff;
    background: var(--shop-primary);
    border-radius: 0;
}

@media screen and (min-width: 1140px) {
    .sidebar-side-left .submenu > ul > li > a:hover {
        color: #fff;
        background: var(--color-default);
    }
}

.login-box .panel-heading {
    color: #fff;
    background: var(--shop-primary);
    border-radius: 0;
}

.userpanel-container .form-element-collection\\AddressInvoiceCollection-container .form-element-label-wrapper, .userpanel-container .form-element-collection\\AddressDeliveryCollection-container .form-element-label-wrapper {
    color: #fff;
    background: var(--color-primary);
    border-radius: 0;
}

.login-box .panel {
    border-radius: 0;
    margin-bottom: 0;
}

.sidebar-side-left + .sidebar-side-right {
    width: calc(100% - 350px);
    padding-bottom: 40px;
}

.shop-product-offer-box .shop-product-price .price-gross {
    display: flex;
    align-items: baseline;
    flex-direction: row-reverse;
}

.shop-product-offer-box .price.price-old {
    margin-right: 15px;
}

.shop-product-offer-box {
}

.shop-product-offer-box form.shop-add-to-basket {
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
}

.shop-product-offer-box .shop-product-price-gross {
    font-weight: 700;
    font-size: 32px;
    line-height: 0.9375;
    color: #001446;
}

.shop-product-offer-box .price.price-discount.price-new.shop-product-price-gross {
    font-weight: 700;
    font-size: 32px;
    line-height: 0.9375;
    text-align: right;
    color: #001446;
}

.shop-product-offer-box .shop-product-price .price-box.has-discount {
    border: 0;
}


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

@media screen and (min-width: 1140px) {
    .shop-product-offer-box .btn.btn-primary:hover,
    .shop-product-offer-box .btn.btn-primary:focus:hover,
    .shop-product-offer-box .btn.btn-primary:active:hover,
    .shop-product-offer-box .btn.btn-primary:focus:active:hover {
        background-color: transparent;
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    label.btn.btn-default.btn-file:hover {
        background: var(--color-primary);
        color: #fff;
    }

    label.btn.btn-default.btn-file:hover span.text {
        color: #fff;
    }

    label.btn.btn-default.btn-file:hover .text .fa {
        background: url(../images/icons/file_icon2.svg) no-repeat;
        width: 22px;
        height: 24px;
        text-indent: -20000px;
        margin-right: 7px;
    }

    .product-nav-slider .product-slide-inside:hover {
        border-color: var(--color-primary);
    }
}

.product-slide.slick-slide.slick-current.slick-active .product-slide-inside {
    border-color: var(--color-primary);
}

.product-details-container + .buttons-center {
    padding-top: 30px;
}

.slide-background {
    width: 100%;
    height: 100%;
}

.slide-background video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.subcategory-icon rect {
    display: none;
}

.subcategory-icon path {
    stroke: #fff;
    fill: #fff;
}

.logged-in.subpage #content {
    padding-top: 156px;
}

header.sticky, header.without-slider {
    background: url(../images/top_bg.jpg) no-repeat center bottom;
    background-size: cover;
}

header.without-slider + #content {
    padding-top: 96px;
}

@media screen and (min-width: 1140px) {
    a.product-item-link:hover .product-name {
        color: var(--color-primary);
    }

    .subcategory-link:hover .subcategory-icon path {
        stroke: var(--color-primary);
        fill: var(--color-primary);
    }

}

/*.alert-container {
    position: fixed;
    z-index: 9999;
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding-left: 15px;
    padding-right: 15px;
}*/

.mainpage .alert-container {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 96px;
    left: 0;
    right: 0;
    padding-left: 15px;
    padding-right: 15px;
}

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

.mainpage.logged-in .alert-container {
    top: 156px;
}

.alert-container {
    position: relative;
}

.top-box-buttons .btn {
    padding-top: 0;
    padding-bottom: 0;
}


.logged-in .slider-slogans {
    top: 180px;
}


.logged-in .top-box {
    top: 48px;
}

.logged-in .user .top-box {
    top: 100%;
}

.footer-box-container {
    position: relative;
    border-top: 1px solid #e5e5e5;
}

@media screen and (min-width: 1140px) {
    .mainpage .subcategory-box-container .subcategory-link:hover .subcategory-icon svg, .mainpage .subcategory-box-container .subcategory-link:hover .subcategory-icon svg * {
        fill: #fff;
        stroke: #fff;
    }

    .subcategory-sub-box .subcategory-link:hover .subcategory-icon path {
        fill: #fff;
        stroke: #fff;
    }
}

@media screen and (min-width: 1140px) {
    .search-group a.product-item-link:hover {
        border-color: var(--color-primary);
    }

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

}

.top-box-submenu-list li.active a {
    background: var(--color-primary);

}


.order-history-container .filter-grid .col-xs-12.col-lg-3:last-child {
    width: 100%;
}

.filter-grid {
    border-radius: 0;
}

.alert-container > .alert:first-child {
    margin-top: 20px;
}

.basket-box-btn .caption {
    display: none;
}


.top-box.top-box-submenu .user-nav-item-logout {
    text-align: center;
    background: var(--shop-primary);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .top-box.top-box-submenu .user-nav-item-logout:hover {
        background: #fff;
        color: var(--shop-primary);
    }
}

#aktualnosci {
    padding-bottom: 0;
}

#aktualnosci .news-box {
    margin-bottom: 0;
}

#aktualnosci .news-box + .pagination-wrapper {
    margin-bottom: 50px;
    padding-top: 50px;
}

header.sticky .logo a img {
    height: 70px;
}

header.sticky .mainsearch-submit {
    height: 70px;
}

header.sticky .lang-button {
    height: 70px;
}

header.sticky .user {
    height: 70px;
}

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

header.sticky .mainsearch input.form-control {
    margin-top: 13px;
}

header.sticky .active .mainsearch-close {
    top: 13px;
}


header.sticky .submenu-full {
    top: 70px;

}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
    color: var(--color-primary);
}

.modal-dialog .alert-container {
    position: relative;
    top: auto;
    margin-bottom: 15px;
}

.cloud button.close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    font-weight: normal;
    color: #000;
    border-radius: 50%;
    opacity: 1;
}

@media screen and (min-width: 1140px) {
    .cloud button.close:hover span {
        text-shadow: 0 0 transparent;
        color: #fff;
        font-weight: normal;
    }

    .cloud button.close:hover {
        background: var(--color-primary);
        border-radius: 50%;
        opacity: 1;
    }
}

.basket-view .summary-box .form-element-name .correct-link {
    padding: 5px 0;
    font-size: 12px;
    display: flex;
}

.fancybox-slide > * {
    padding: 0;
    width: calc(100% - 30px);
    max-width: 1600px;
}


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

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

.files-list-box ul li a {
    display: flex;
    align-items: center;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    background: #fff;
    z-index: 1;
}


.icon-file {
    width: 56px;
    display: block;
    flex-shrink: 0;
}

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


.file-name2 {
    line-height: 122%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #00091e;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;

    overflow: hidden;
}


.file-name-content {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.btn-download {
    width: 50px;
    height: 50px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    flex-shrink: 0;
}

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

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

.btn-download svg {
    width: 16px;
}


.rwdMenu .rwd-basket.rwd-basket {
    color: #fff;
    background-color: var(--color-primary);
}

.gallery + .buttons-center {
    padding-top: var(--space-25);
}

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

.files-list-box {
    margin-bottom: var(--space-50);
}

.kod .form-element-container.form-element-text-container.col-xs-12.col-md-9 {
    width: 100%;
}

.kod .form-element-container.form-element-text-container.col-xs-12.col-md-3 {
    width: 100%;
}



.user-bar-header span.icon.icon-mask.icon-logout svg {
    display: none;
}

    .user-bar-header .user-nav-item-logout:hover span.icon.icon-mask.icon-logout {
        background: red;
    }

    .user-bar-header .user-nav-item-logout:hover {color: red;}
	
	.copyright:first-child:before {
    display: none;
}

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

.files-list ul li .cloud a {
    display: inline-block;
}

.files-list ul .cloud li {
    width: auto;
    padding: 0;
    padding-right: 40px;
}

.files-list ul .cloud ul {
    margin: 0;
    display: block;
}


.step-list .step {
    padding: 2px;
}

.step-list .step .step-inner a {
    font-size: 14px;
}

.news-slider .slick-list {
    height: 100%;
}

.news-slider .slick-track {
    height: 100%;
}

.basket-view.container.container--userpanel .order-summary-data.row {
    margin-bottom: 30px;
}

.basket-view.container.container--userpanel .basket-summary.panel-radius.summary-box-borderless {
    height: 100% !important;
}

.basket-view.container.container--userpanel .summary-box .summary-panel-data {
    border:0 none;
}

.basket-view.container.container--userpanel .basket-summary {

}

.basket-view.container.container--userpanel .summary-box {
    height: 100%;  
}

/*.variants-filters{ margin:-10px;}

.variants-filters .select2 {
    width: 25%;
    padding: 10px;
}
*/
.variants-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: var(--space-60);
}

.variants-filters .select2 .select2 {
    padding: 0;
}

.variants-filters .select2  label {
    margin-bottom: 8px;
}

.shop-variant-attribute {
    height: 100%;
    padding: 10px;
}

button.btn.btn-md.btn-link.btn-shop-reset-variant-filters:hover {
    border-color: var(--color-primary);
}
button.btn.btn-md.btn-link.btn-shop-reset-variant-filters {
    border: 1px solid transparent;
    text-transform: uppercase;
    padding: 0 45px;
    height: 46px;
    line-height: 44px;
    border-radius: 0;
    font-size: 14px;
    font-weight: normal;
    box-shadow: 0 0 0 transparent !important;
    background: #fff;
    color: var(--color-primary);
    text-decoration: none !important;
}





.multiadd-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    transition: transform 0.5s ease-in-out;
    z-index: 1;
}

.multiadd-bar.show {
    display: flex !important;
    justify-content: center;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.multiadd-bar:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    pointer-events: none;
    background: var(--color-primary);
}

.multiadd-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 20px;
    background: var(--color-primary);
    color: #fff;
    z-index: 10;
    margin: 0 auto;
}

.multiadd-wrapper .multiadd-amount {
    font-weight: bold;
}

.multiadd-text {
    font-size: 15px;
    color: #fefefe;
    font-weight: 400;
    margin-right: calc(var(--space-25) + 5px);
}

.shop-product-offer-box .shop-product-size-table.variants-box .price.price-old {
    margin-right: 0;
}

.shop-product-offer-box .shop-product-size-table.variants-box .price.price-discount.price-new.shop-product-price-gross,
.shop-product-offer-box .shop-product-size-table.variants-box .shop-product-price-gross {
    font-size: inherit;
    text-align: center;
}


.shop-product-variant.row.shop-variant-attribute {
    width: 25%;
    padding: 10px;
    margin: 0;
}

.shop-variant-attribute {
    width: 25%;
    padding: 10px;
}

.variants-filters {
    margin: -10px;
}

.shop-product-variant-row.row {
    flex-wrap: wrap;
}

.shop-product-variant-label.col-xs-12.col-sm-4 {
    width: 100%;
    margin-bottom: 5px;
}

.col-xs-12.col-sm-8.shop-product-variant-element {
    width: 100%;
}

.shop-product-variant.row.shop-variant-attribute > div {
    padding: 0;
}

.add-variant-to-basket-wrapper button.btn.btn-primary.btn-block.basket:hover svg, button.btn.btn-primary.btn-block.basket:hover svg * {
    fill: var(--color-pirmary);
}

.shop-quantity-box.input-counter {
    min-width: 110px !important;
}

.shop-product-offer-box.shop-product-variants {
    position: relative;
}

.logged-in header.without-slider + #content {
    padding-top: 156px;
}



@media (min-width: 1140px) and (max-height:899px) {


#main-menu ul .submenu-full > ul li a {
    padding-top: 80px;
}

.submenu-full .subcategory-icons-small {
    top: 15px;
}

.submenu-full .subcategory-icon {
    margin-bottom: 14px;
    height: 100px;
    width: 100%;
}

.submenu-full .subcategory-name {
    margin-bottom: 10px;
}
}


.year-box {
    width: 33.33%;
    text-align: center;
    position: relative;
}

.year {
    margin: 0 auto;
    position: relative;
}

.year-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    background: var(--color-primary);
    width: 2px;
    display: block;
    top: 0;
    bottom: calc(50% + 201px);
}

.year-line-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60%;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
}


.year-line-bottom:before{
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    content: '';
    position: absolute;
    top: -10px;
    margin-left: -4px;
}


.history-item:first-of-type .year-line,
.history-item:last-of-type .year-line-bottom{
    display: none;
}

.year-line:before {
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    content: '';
    position: absolute;
    bottom: -10px;
    margin-left: -4px;
}


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

#register-form .checkboxradio-container.element-row .col-xs-4 {
width: 100%;
}


.mini-basket-box .tinyscrollbar .scrollbar .track {
background: #e5e5e5;
}

.top-box-product .top-box-right {
padding-right: 10px;
}

.product-slide-inside {
padding: 2px;
}

.product-slide-image a {
display: block;
}

.shop-product-size-table.variants-box .text.txt table td:first-child .caption {text-align: center;}

.caption.caption-key {
white-space: nowrap;
}

.gallery-text-item .gallery-picture.video-player{
display: inline-block;
width: unset;
}