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

    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;

    --container-padding: 40px;

    --row-gap: 15px;

    /** SPECIFIC **/
    --color-primary: #afbd00;
    --color-secondary: #3e5256;
    --color-onBackground: #fff;
    --color-default: #333;
    --color-topBackground: #fff;
    --color-leftMenu: #ebedee;
}

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: #ff00ff;
}
a:hover, a:focus {
    color: #00ff00;
}

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

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


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

.container-tiny {
    max-width: 970px;
}

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

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

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

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

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

.icon-arrowLeft {
    -webkit-mask-image: url('../images/icons/arrow-right.svg');
    mask-image: url('../images/icons/arrow-right.svg');
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

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

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

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

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

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


/**
 * THEMES
 */

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

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

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



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

.product-slider-arrows .btn-white{
    background-color: #fff;
}

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

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



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

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

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

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

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

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

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

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

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

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 5px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-lg{
    min-width: 170px;
    font-size: 14px;
    font-weight: 400;
    height: 46px;
    letter-spacing: 0.7px;
}

.btn-square{
    width: 46px;
    height: 46px;
}

.btn-square .icon{
    width: 16px;
    height: 16px;
}

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

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.7px;
    color: var(--color-secondary);
}

.text h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.3888;
}

.text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.3888;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}
.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}
.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-primary);
}
.text ol > li::marker {
    word-spacing: 3px;
}

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

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

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

/**
 * HEADER
 */

header {
    /*position: fixed;*/
    z-index: 1000;
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    background-color: var(--color-topBackground);
}

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

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

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

#main-menu ul {
    font-size: 0;
}

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

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

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

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

.main-menu-button {
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}
.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}

.mainsearch.rwdPanel {
    display: block;
}
.mainsearch {
    position: relative;
    width: 342px;
    max-width: 100%;
}
.mainsearch-search {
    display: flex;
    align-items: stretch;
}
.mainsearch .form-element-container {
    flex-grow: 1;
}
.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}
.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.mainsearch .form-control-feedback {
    display: none;
}


/*
* USER NAV
*/

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

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

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

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

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

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

/**
 * FOOTER
 */
footer {
}

/* FOOTER BAR */
.footer-bar {
    padding: 10px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
    color: #f4f4f4;
    background-color: #f0f;
}

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

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

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

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

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

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

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

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}
/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
    height: 46px;
    border-radius: 4px;
}

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

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

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

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


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

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


.form .form-element-name{
    color: var(--color-secondary);
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-primary);
    border-radius: 0 4px 4px 0;
    background-color: transparent;
    border: 0;
    border-left: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

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

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

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

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

.form-element-container a {
    color: var(--color-primary);
}

.form-element-container a:hover{
    text-decoration: underline;
}

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

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

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * MAP POINTS
 */

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

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

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

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

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

/**
 * BREADCRUMB
 */

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

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

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

.breadcrumb > li > a {
    font-size: 12px;
}
.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

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

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

.breadcrumb > li > a:hover{
    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: gray;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}
.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}
.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}
.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}
.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}
.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}
.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}
.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}
.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

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

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

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

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

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

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


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

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

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

.social-icon img {
    display: block;
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}
.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}
.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}
.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}
.langs-menu--list .lang {
    background: none;
}
.langs-menu--list .langs-menu-icon {
    margin: 0;
}

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

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

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

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

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

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

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

/**
 * GALLERY
 */

.gallery {
    clear: both;
    margin-bottom: var(--space-60);
}

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

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

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

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

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

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



.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    padding: 15px 0;
}

header{
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-inner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-25) 0;
}

.footer-left{
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    margin: -6px;
}

.footer-column{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 6px;
}

.footer-column a{
    display: flex;
    align-items: center;
    color: #fff;
    transition: color 0.3s;
}

@media screen and (min-width: 1140px){
    .footer-column a:hover{
        color: var(--color-primary);
    }
}

.footer-column .icon-wrapper{
    width: 46px;
    height: 46px;
    border-radius: 4px;
    background-color: var(--color-primary);
    margin-right: calc(var(--space-25) + 6px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-column .icon-wrapper .icon{
    width: 19px;
    height: 19px;
    color: #fff;
}

.footer-column .icon-wrapper .icon-pin{
    width: 15px;
    height: 22px;
}

.footer-withContent{
    justify-content: space-between;
}

.footer-withContent .footer-logo{
    padding-left: calc(3 * var(--space-50) + 12px);
}

.footer-logo{
    max-width: 348px;
}

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

.mainCategories-inner{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: calc(-0.5 * var(--space-40)) calc(-1 * var(--space-40));
}

.category-box{
    width: 16.6666%;
    padding: calc(var(--space-40)/2) var(--space-40);
}

.category-box-inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.category-box-image{
    width: 100%;
    aspect-ratio: 1;
    padding: 7px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(62, 82, 86, 0.1);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.11);
    transition: all .2s linear;
}

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

.category-box-text{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333em;
    color: var(--color-secondary);
    text-align: center;
    padding: 0 15px;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px){
    .category-box-inner:hover .category-box-text{
        color: var(--color-primary);
    }
    .category-box-inner:hover .category-box-image{
        border-color: var(--color-primary);
    }
}

.section-heading{
    padding: var(--space-50) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-heading-right{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: stretch;
    gap: calc(var(--space-50) + 2px);
}

.page-heading{
    margin-bottom: calc(var(--space-25) + 5px);
}

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

.slider-arrows{
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title{
    font-size: var(--font-30);
    font-weight: 700;
    text-align: center;
    color: var(--color-secondary);
}

.section-title-sm{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333;
    color: var(--color-secondary);
    margin-bottom: calc(var(--space-25) - 5px);
}

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

.mainsearch-input{
    border-radius: 5px;
    border: 1px solid rgba(42, 42, 42, 0.1);
    background-color: #ffffff;
    color: var(--color-secondary);
}

.mainsearch-input::placeholder{
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 400;
}

.mainsearch-submit{
    background-color: var(--color-primary);
    border-radius: 5px;
    color: var(--color-onBackground);
    margin-left: -46px;
    z-index: 3;
    border: 1px solid var(--color-primary);
    transition: all .2s linear;
}


.mainsearch-submit *{
    fill: #fff;
    transition: all .2s linear;
}

@media screen and (min-width: 1140px) {
    .mainsearch-submit:hover * {
        fill: var(--color-secondary);
    }
    .mainsearch-submit:hover{
        background-color: #fff;
        color: var(--color-primary);
    }
}

.top-text{
    font-size: 14px;
    color: #3e5256;
    font-weight: 400;
}

.mainText{
    margin: var(--space-50) 0;
}

.mainText-inner{
    display: flex;
    gap: calc(var(--space-60) + var(--space-25));
}

.mainText-left, .mainText-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.mainText-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.mainText-title{
    font-size: var(--font-30);
    font-weight: 700;
    color: var(--color-secondary);
}

/*PRODUCT*/

.discountGroup-section{
    background-color: #f6f7f7;
    padding-bottom: calc(2 * var(--space-40));
}

.shop-product-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * (var(--space-40) + 2px));
}

.shop-product-box {
    padding: calc(var(--space-40) + 2px);
    width: 25%;
    flex-shrink: 0;
}

.product-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(62, 82, 86, 0.1);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    padding: 18px;
    padding-bottom: 20px;
    position: relative;
    background-color: #fff;
    transition: all 0.3s;
}

.product-title {
    font-size: 16px;
    text-transform: uppercase;
    color: #3e5256;
    font-weight: 700;
    line-height: 1.5;
    transition: color 0.3s;
}

.product-subtitle{
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    height: 17px;
}

.product-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.shop-product-box .product-image{
    margin-bottom: calc(var(--space-60) / 2);
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.product-actions{
    display: flex;
    justify-content: flex-end;
    margin-left: 10px;
}

@media screen and (min-width: 1140px){
    .product-container:hover{
        box-shadow: none;
    }

    .product-container:hover .btn{
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-onBackground);
    }
}

/*ASIDE*/

.asidedPage {
    display: flex;
    width: 100%;
    position: relative;
}

.aside {
    width: 411px;
    z-index: 800;
    color: #fff;
    background-color: var(--color-leftMenu);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
}

.aside.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
    z-index: 9999;
}

.aside-shadow {
    z-index: 800;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s;
    opacity: 1;
    pointer-events: auto;
    display: none;
}

.aside-shadow.active {
    opacity: 1;
    pointer-events: auto;
}

.asidedPage .page-heading-title {
    font-size: var(--font-36);
}

.aside-button {
    position: fixed;
    top: 140px;
    left: 0;
    font-size: 26px;
    background-color: var(--color-primary);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.aside-bg {
    background-color: #fafafa;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.aside-close {
    z-index: 10;
    position: absolute;
    right: 20px;
    top: 18px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    transition: color 0.4s;
    display: none;
}

.asidedPage-content {
    flex-grow: 1;
    padding-left: calc(var(--space-50) + var(--space-40));
    width: calc(100% - 411px);
    margin-bottom: calc(var(--space-60) + 10px);
}

.mainpage .asidedPage-content{
    margin-bottom: 0;
}

.aside-header {
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    padding: 15px 18px;
    border-radius: 5px;
    margin-bottom: calc(var(--space-25) + 6px);
}

.aside-header .icon{
    width: 13px;
    height: 13px;
    margin-right: var(--space-25);
    color: #000;
}

.aside-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.aside-link {
    text-transform: uppercase;
    font-size: 0.6875rem;
    letter-spacing: var(--wcag-letterSpacing, 0);
    font-weight: 500;
    color: #2c2b2c;
    transition: color 0.3s;
}

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

.menuList {
    overflow-y: auto;
    max-height: 100%;
    font-size: 0;
    display: block;
}



.menuList-image{
    width: 41px;
    height: 41px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.11);
    border: 1px solid rgba(62, 82, 86, 0.1);
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    margin-right: 18px;
}

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

.menuList > li {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.menuList > li.active > a{
    background-color: var(--color-primary);
    color: var(--color-onBackground);
}


.menuList > li > ul > li.active > a{
    color: var(--color-primary);
    text-decoration: underline;
}

.menuList li a {
    font-size: 14px;
    font-weight: 700;
    padding: 9px calc(var(--space-40) + 5px);
    color: var(--color-secondary);
    line-height: 1.7143;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s;
}

.menuList-toggle{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: calc(var(--space-40) - 10px);
    padding: 5px;
    font-size: 18px;
    z-index: 1;
}

.menuList li.slided .menuList-toggle,
.menuList li.active .menuList-toggle{
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -moz-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    -o-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}

.menuList li a .caption{
    display: block;
}

.menuList > li > ul {
    display: none;
    padding: 22px 0;
}

.menuList > li > ul > li > ul{
    background-color: rgba(0, 0, 0, 0.03);
    padding-top: 7px;
    padding-bottom: 7px;
}

.menuList > li.active > ul {
    display: block;
}

.menuList  li.slided > ul {
    display: block;
}

.menuList > li > ul > li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 1.7142;
    display: inline-block;
    padding: 8px 0;
    transition: color 0.3s;
}

.menuList > li > ul > li {
    position: relative;
    padding-left: 61px;
    padding-right: 15px;
}
.menuList > li > ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -16px;
    margin-left: 0;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-primary);
}

.menuList > li.slided > a{
    background-color: var(--color-primary);
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .menuList > li > a:hover{
        background-color: var(--color-primary);
        color: var(--color-onBackground);
    }

    .menuList > li > ul > li a:hover{
        color: var(--color-primary);
        text-decoration: underline;
    }
}

.asidedPage-content .product-list{
    margin: calc(-1 * var(--space-25));
}

.asidedPage-content .shop-product-box{
    width: 33.3333%;
    padding: var(--space-25);
}

/*PRODUCT VIEW */


.shop-product-inner{
    display: flex;
    margin-bottom: calc(var(--space-50) + var(--space-25) - 5px);
}

.shop-product-left{
    width: 43%;
    position: relative;
}

.product-photo{
    position: relative;
}

.shop-product-right{
    width: 57%;
    padding-left: calc(var(--space-50) + var(--space-40) - 6px);
}

.product-slide-inside{
    position: relative;
    width: 100%;
    padding: 1px;
}

.product-slide-inside::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.product-slide-image{
    position: absolute;
    inset: 1px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: border-color 0.3s;
}

.product-nav-slider .product-slide-image{
    cursor: pointer;
}

@media screen and (min-width: 1140px) {
    .product-nav-slider .product-slide-image:hover{
        border-color: var(--color-primary);
    }
}

.product-photo .product-slider,
.product-photo .product-nav-slider{
    display: flex;
    overflow: hidden;
}

.product-photo .product-slider .slick-list,
.product-photo .product-nav-slider .slick-list{
    width: 100%;
}

.product-photo .product-slide{
    flex-grow: 1;
    width: 100%;
    flex-shrink: 0;
}
.product-nav-slider .product-slide{
    width: 33.3333%;
}

.product-nav-slider{
    margin: -5px;
    margin-top: 5px;
}

.product-nav-slider .product-slide-image{
    margin: 5px;
    padding: 8px;
}

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

.product-specification{
    margin-bottom: 16px;
}

.product-specification li{
    font-size: 14px;
    letter-spacing: 0.7px;
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 2.8571;
    display: flex;
}

.product-specification li + li{
    margin-top: 14px;
}

.product-specification li .name{
    width: 40%;
    line-height: 1.65;
}

.product-specification li .value{
    width: 60%;
    font-weight: 700;
    line-height: 1.65;
}


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

.product-slider-wrapper{
    position: relative;
}

.product-slider-arrows{
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
    z-index: 1;
}

.shop-product-bottom .row-flex-center{
    margin-bottom: calc(var(--space-25) + var(--space-50) - 5px);
}

.row-flex-center{
    display: flex;
    justify-content: center;
}

.text-left{
    text-align: left;
}

.shop-product-bottom .section-title{
    margin-bottom: var(--space-40);
}

.shop-product-box-min .product-actions{
    position: absolute;
    bottom: 8px;
    right: 10px;
}

.shop-product-box-min .product-image{
    margin-bottom: 0;
}

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

.shop-product-slider{
    margin: calc(-1 * (var(--space-40) / 2));
}

.shop-product-slider .shop-product-box{
    padding: calc(var(--space-40) / 2);
}

.text-page-heading{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


.mainsearch-search .error{
    position: relative;
    top: 20px;
}

.search-group .shop-product-list{
    margin: -15px;
}

.search-group .shop-product-box{
    width: 20%;
    padding: 15px;
}

.mainsearch-rwd-button{
    margin-left: 15px !important;
    flex-shrink: 0;
}

.mainsearch-rwd-button i{
    color: #fff;
}

.footer-map iframe {
    width: 100%;
    height: 400px;
}

.footer-inner .text {
    color: #fff;
}

.error-actions{
    display: flex;
    justify-content: center;
}

.error-template h2{
    font-size: var(--font-30);
    font-weight: 700;
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

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

.shop-product-bottom .product-list{
    margin: -15px;
}

.shop-product-bottom .shop-product-box{
    padding: 15px;
}

.shop-product-bottom .shop-product-box .product-container{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
}


.color-item-list {
    text-align: center;
    z-index: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: -3px;
    margin-top: 3px;
}

.shop-product-box .color-item-list{
    padding-right: 10px;
}

.shop-product-box:not(.horizontal) .color-item-list{
    justify-content: center;
}

.color-item-list {
    text-align: center;
    z-index: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: -3px;
    margin-top: 3px;
    margin-bottom: calc(var(--space-40) - 3px);
}

.shop-product-box .color-item-list{
    padding-right: 10px;
}

.shop-product-box:not(.horizontal) .color-item-list{
    justify-content: center;
}
.color-item-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.color-item {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #888888;
    color: #888888;
    border-radius: 50%;
    padding: 3px;
    margin: 3px;
    transition: border-color 0.3s;
}

@media screen and (min-width: 1140px) {
    .color-item:hover{
        border-color:  var(--color-primary);
    }
}
.color-item-inner {
    display: block;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 10px;

}
.color-item-inner img {
    max-width: 100%;
}
.color-text-more,
.color-text-less {
    display: none;
}
.color-item-text {
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.color-item i.fa {
    display: none;
    font-size: 20px;
    line-height: 32px;
    color: #000;
}
.color-item.active i.fa {
    display: inline-block;
}
.color-item.dark i.fa {
    color: #fff;
}

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


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

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


.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a{
    width: 46px;
    height: 46px;
    display: flex;
    color: var(--color-secondary);
}

.text.bottom-text {
    padding-top: 6px;
    padding-bottom: 6px;
}


.text.bottom-text a {
    color: var(--color-secondary);
}

.text.bottom-text a:hover{
    color: var(--color-secondary);
}

.basket-form-section{
    margin-bottom: 60px;
}
.basket-form-text{
    margin-bottom: 15px;
}

.configurator-field-container > .row{
    padding: 0 25px;
}

.basket-link {
    background-color: var(--color-primary);
    border-radius: 5px;
    color: var(--color-onBackground);
    z-index: 3;
    border: 1px solid var(--color-primary);
    transition: all .2s linear;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.product-360 {
    width: 800px;
    height: 800px;
}

.product-360-btn {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 5;
    min-width: unset;
    padding-right: var(--space-25);
    padding-left: var(--space-25);
    background-color: #fff;
    color: #000;
    border-color: #000;
    gap: 0;
    height: 46px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.product-360-btn .icon{
    width: 36px;
    height: 36px;
    margin: -4px;
    margin-right: calc(var(--space-25) - 2px);
    transition: none;
}

.product-360-btn .icon *{
    transition: none;
}

@media screen and (min-width: 1140px){
    .product-360-btn:hover,
    .product-360-btn:focus{
        background-color: #000;
        color: #fff;
        border-color: #000;
    }
}

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

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

#product-360 {
    padding: 0;
    max-width: calc(100vw - (2 * var(--container-padding)));
    max-height: calc(100vw - (2 * var(--container-padding)));
}

#product-360 img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.basket-view .basket-summary {
    width: 100%;
    border: 0;
}

.basket-view .basket-summary th {
    padding-right: 91px;
}

.basket-table tfoot th {
    border: 0;
    border-collapse: collapse;
}
.basket-table tfoot tr:first-child th {
    border-top: 1px solid #e5e5e5;
}

.basket-summary .orderItemsValue {
    float: right;
    font-weight: 700;
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 0px;
    color: var(--color-secondary);
}

.basket-summary .orderItemsValue span {
    text-transform: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
}