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

    /** SPECIFIC **/
    --color-primary: #000000;
    --color-secondary: #ed1c24;
}

.todo {
    font-size: 30px;
    font-weight: 900;
    color: #ff00d8;
}

.mh-auto {
    margin: 0 auto;
}

.mv-auto {
    margin: auto 0;
}

/*.slick-list,*/
/*.slick-track {*/
/*display: flex;*/
/*width: 100%;*/
/*}*/

html {
    scroll-behavior: smooth;
}

body {
    color: #000;
    font-family: "Open Sans", sans-serif;
}

/**
 * BASIC
 */

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: inherit;
}

a[href^=tel] {
    color: inherit;
    text-decoration: none;
}

a:hover, a:focus {
    color: inherit;
}

label a {
    color: var(--color-secondary);
}

/**
 * FOOTER
 */

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

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

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

#content {
    padding-top: 154px;
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1670px;
    width: 100%;
}

.container--sm {
    max-width: 1350px;
}

.container--xs {
    max-width: 1030px;
}

.container--noClear {
    clear: none;
}

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

.title {
    color: #000000;
    font-family: 'Open sans', sans-serif;
}

.about-us-title {
    color: #fff;
}

.section-title {
    color: #e3000f;
    font-size: 30px;
    font-weight: 900;
    line-height: 36px;
}

.text h2 {
    font-size: var(--font-24);
    font-weight: 900;
    line-height: 36px;
    padding-bottom: 10px;
    text-align: center;
}

.text p + h2 {
    padding-top: 10px;
}

.text ol {
    padding: var(--space-50) 0;
}

.page-heading {
    margin: var(--space-60) 0 var(--space-50) 0;
}

.page-heading-title {
    font-size: var(--font-40);
    font-weight: 900;
    text-align: center;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    text-align: left;
}

.page-heading-text {
    padding-top: var(--space-50);
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding-left: var(--space-40);
    padding-right: var(--space-40);
}

.section-text {
    padding-top: var(--space-50);
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

.subtitle {
    color: #000000;
    font-size: var(--font-40);
    font-weight: 800;
    text-align: left;
}

.red {
    color: var(--color-secondary);
}

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

.btn-transparent,
.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active,
.btn-transparent.active,
.btn-transparent.active:focus,
.btn-transparent:hover:focus,
.btn-transparent:focus:active {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
}

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

.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-green,
.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active,
.btn-green.active:focus,
.btn-green:hover:focus,
.btn-green:hover:active,
.btn-green:focus:active {
    background-color: #93bf1b;
    border-color: #93bf1b;
    color: #fff;
}

.btn-green.active {
    background-color: #fff;
    color: #93bf1b;
}

.btn-green-transparent,
.btn-green-transparent:hover,
.btn-green-transparent:focus,
.btn-green-transparent:active,
.btn-green-transparent.active,
.btn-green-transparent.active:focus,
.btn-green-transparent:hover:focus,
.btn-green-transparent:hover:active,
.btn-green-transparent:focus:active {
    border-color: #93bf1b;
    background-color: #fff;
    color: #93bf1b;
}

.btn-green-transparent.active {
    background-color: #93bf1b;
    color: #fff;
}

.btn-default-light,
.btn-default-light:hover,
.btn-default-light:focus,
.btn-default-light:active,
.btn-default-light.active,
.btn-default-light.active:focus,
.btn-default-light:hover:focus,
.btn-default-light:hover:active,
.btn-default-light:focus:active {
    background-color: #808080;
    border-color: #808080;
    color: #fff;
}

.btn-default-light.active {
    background-color: #fff;
    color: #808080;
}

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

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

.btn-arrow,
.btn-arrow:hover,
.btn-arrow:focus,
.btn-arrow:active,
.btn-arrow.active,
.btn-arrow.active:focus,
.btn-arrow:hover:focus,
.btn-arrow:hover:active,
.btn-arrow:focus:active {
    background-color: transparent;
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-arrow.active {
    background-color: #686868;
    color: #fff;
    border: 2px solid #686868;
}

.btn-arrow.active {
    background-color: transparent;
    color: #000000;

}

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

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

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

    .btn-green-transparent:not([disabled]):hover,
    .btn-green-transparent:not([disabled]).active:hover {
        background-color: #93bf1b;
        color: #fff;
    }

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

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

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

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

    .btn-link:hover .caption, .btn-link:focus .caption,
    .btn-link:focus, .btn-link:hover {
        color: var(--color-secondary);
    }

    .pagination-wrapper ul li a:hover span {
        color: #fff;
    }
}

.btn .icon {
    width: 100%;
    height: 100%;
}

/**
 * BUTTONS
 */
.btn {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*text-transform: uppercase;*/
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 24px;
    box-shadow: none !important;
    transition: all 0.3s;
}

.btn-lg {
    min-width: 220px;
    padding: 0 32px;
    height: 56px;
    border-radius: 28px;
}

.btn-md {
    height: 46px;
    min-width: 160px;
    padding: 0 24px;
    border-radius: 20px;
}

.btn-sm {
    padding: 0 16px;
    min-width: 120px;
    height: 34px;
    border-radius: 15px;
}

.btn-link {
    color: #000;
}

.btn-circle {
    padding: 5px;
    width: 38px;
    height: 38px;
    border-radius: 50%;

}

@media screen and (min-width: 1140px) {
    .work-list-item .btn-circle:hover {
        border-color: var(--color-secondary);
    }

}

.work-list-item.active .btn-circle {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
    color: #fff;
}

.work-list-item.active .work-list-title {
    background-color: #f8f8f8 !important;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    color: #000000;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
    padding: calc(var(--space-25) + 5px) 0;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

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

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

.text li h3,
.text li p {
    display: inline-block;
    vertical-align: top;
}

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

.text table th {
    padding: 12px 12px;
    /*border: 1px solid #ddd;*/
    font-weight: 600;
}

.text table td {
    padding: 12px 12px;

}

.text a {
    text-decoration: underline;
}

.shop-product-size-table a,
.text .grammages-item {
    text-decoration: none;
}

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

/**
 * Icons
**/
.icon {
    width: 40px;
    height: 40px;
    display: block;
}

.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-mask.icon-mask.reversed {
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}

.icon-downgrade {

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

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

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

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

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

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

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

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

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

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

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

.icon-refresh {
    -webkit-mask-image: url('../images/captach-refresh.png');
    mask-image: url('../images/captach-refresh.png');
}

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

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

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

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

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

/**
 * HEADER
**/
header {
    background-color: #fff;
}

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

.header-bottom-right,
.mainsearch,
.logo,
.logo-min {
    transition: all 0.3s;
}

header.sticky .header:not(.header-b2b) .logo-min {
    margin: 5px 0 0 15px
}

header.sticky .header:not(.header-b2b) .logo {
    padding-top: 4px;
    padding-bottom: 4px;
}

header.sticky .header:not(.header-b2b) .mainsearch {
    padding: 8px 0 !important;
}

header.sticky .header:not(.header-b2b) .header-bottom-right {
    padding-top: 0;
}

header.sticky .header:not(.header-b2b) .logo a img {
    width: 102px;
}

/*.subpage header {*/
/*position: relative;*/
/*z-index: 1;*/
/*}*/

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

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

.user-logged .header-top-right {
    justify-content: flex-end;
}

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

.header-top-right .btn-link {
    padding-left: var(--space-25);
    padding-right: var(--space-25);
}

.header-top-right .btn-link .caption {
    line-height: 26px;
}

.header-top-right .btn-link .icon {
    width: 22px;
    height: 22px;
    color: rgba(0, 0, 0, 0.6);
    margin-right: 6px;
}

.header-bottom-right {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.logo {
    float: left;
    padding-top: 15px;
    padding-left: 190px;
    position: relative;
}

.logo-big {
    position: absolute;
    left: 0;
    display: block;
    z-index: 99999999;
}

.logo-min {
    display: inline-flex;
    align-items: flex-start;
    margin: 15px 0 0 15px;
}

.logo-min img {
    display: block;
    max-width: 90px;
}

.logo-min > * + * {
    margin-left: 10px;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    float: left;
    width: 112px;
    transition: width 0.4s;
}

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

#main-menu ul li {
    padding-left: calc(var(--space-25) + 5px);
}

.header-bottom-b2b #main-menu > ul {
    display: flex;
    justify-content: center;
}

.header-bottom-b2b #main-menu > ul > li {
    padding-left: calc(var(--space-50) - 2px);
    vertical-align: middle;
    display: flex;
}

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

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

#main-menu li > a > ul > li a {
    color: #000;
}

#main-menu li.active > a > ul > li a {
    color: #000;
}

#main-menu li > a > ul > li a {
    color: #000;
}

#main-menu li a {
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    padding: 13px 0;
}

.header-bottom-b2b #main-menu li a {
    padding-right: 15px;
}

.header-bottom-b2b #main-menu > ul > li > a::after {
    content: '\f078';
    font-family: 'FontAwesome';
    display: block;
    position: relative;
    right: -6px;
    font-size: 9px;
}

#main-menu li.active a ul li a,
#main-menu li a ul li a {
    color: #000;
}

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

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

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

#main-menu li:hover > ul {
    display: block;
    position: absolute;
    left: 0;
    background: #fff;
    z-index: 999;
}

#main-menu > ul > li > ul {
    position: absolute;
    right: 0;
    padding: 0;
    max-width: 1670px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin: 0 auto;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#main-menu li > ul {
    display: none;
    top: 99%;
    left: 0;

}

#main-menu > ul > li > ul {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    transition-delay: 0.2s;
}

header.sticky #main-menu li > ul {
    top: 93%;
}

#main-menu > ul > li > ul::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    width: 100vw;
    bottom: 0;
    top: 0;
    background: #000;
    box-shadow: 4px 7px 8px 1px rgba(0, 0, 0, 0.07);
}

.header-bottom-b2b #main-menu > ul > li > ul::before {
    background: #fff;
}

#main-menu > ul > li > ul > li > ul::before {
    content: '';
    position: absolute;
    right: 0;
    left: -10%;
    width: 120vw;
    bottom: 0;
    top: 0;
    background: #fff;
    box-shadow: 4px 7px 8px 1px rgba(0, 0, 0, 0.07);
}

@media screen and (min-width: 1670px) {
    #main-menu > ul > li > ul::before {
        left: calc(-1 * (100vw - 1670px) / 2);
    }
}

#main-menu li > ul > li > a {
    color: #fff;
    padding: 20px 0;
}

#main-menu li > ul > li > ul > li > a {
    color: #000;
    padding: 10px 0;
}

#main-menu li > ul > li > ul > li > a:hover {
    color: var(--color-secondary);
}

.header-bottom-b2b #main-menu li > ul > li > a {
    color: #000;
    padding: 13px 0;
    max-width: initial;
}

.header-bottom-b2b #main-menu li > ul {
    padding: 20px;
    justify-content: flex-start;
}

.header-bottom-b2b #main-menu li > ul > li > a:hover {
    color: var(--color-secondary);
}

.header-bottom-b2b #main-menu > ul > li > ul > li {
    width: 20%;
    position: relative;
    padding: 0;
}

#main-menu > ul > li > ul > li + li {
    padding-left: var(--space-50);
}


#main-menu li > ul > li > ul > li {
    display: block;
    width: 20%;
}

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

#main-menu > ul > li > ul > li > a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

#main-menu > ul > li > ul > li > a::after {
    content: '\f078';
    font-family: 'FontAwesome';
    display: block;
    position: relative;
    right: -6px;
    font-size: 9px;
}

.header-bottom-b2b #main-menu > ul > li > ul > li > a::after {
    display: none;
}

.header-bottom-b2b #main-menu > ul > li > ul {
    flex-wrap: wrap;
}

#main-menu > ul > li > ul > li > ul {
    padding: 20px 10px;
    flex-wrap: wrap;
    top: 100% !important;
}

#main-menu > ul > li > ul > li > ul > li a {
    height: initial;
    line-height: 30px;
    font-weight: 700;
    font-size: 14px;
}

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

#main-menu li > ul > li > ul {
    left: 100%;
    padding: 15px;
    box-shadow: 4px 7px 8px 1px rgba(0, 0, 0, 0.07);
    top: 99%;
}

#main-menu li:hover > ul {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

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

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

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

.mainsearch.rwdPanel {
    display: block;
}

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

.mainsearch-search {
    display: flex;
    align-items: stretch;
    margin-right: 25px;
}

.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;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #686868;
    transition: background-color 0.3s;
    border-radius: 0 4px 4px 0;
}

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

/**
 * FOOTER
 */
footer {
    background-color: #000;
    background-image: url("../images/footer-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.footer-floating-img {
    position: absolute;
    bottom: -160px;
    right: 32vw
}

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

.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;
    transition: color 0.3s;
}

.footer-bar-links a:hover {
    color: var(--color-secondary);
}

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

.footer-icon {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 6px 0;
}

.footer-icon .icon {
    width: 38px;
    height: 38px;
}

.footer-main {
    padding: var(--space-60) 0;
    color: #ffffff;
}

.footer-cols {
    display: flex;
}

.footer-col-title,
.footer-col-subtitle {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    text-align: left;
}

.footer-col-title {
    display: flex;
    font-weight: 700;
}

.footer-col-content {
    padding-top: var(--space-40);
    color: #ffffff;
    font-size: 15px;
    line-height: 34px;
    font-weight: 300;
}

.footer-col-content .box {
    padding-top: var(--space-40);
}

.footer-col-content .box .social-icon {
    margin-top: var(--space-40);
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    width: 25%;
}

.footer-col-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-col-4 .footer-col-content {
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-col-4 .footer-col-content img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}

.footer-col-2 .footer-col-content {
    max-width: 250px;
}

.footer-col-2 .footer-col-content .address {
    color: #ffffff;
    font-size: 15px;
    line-height: 34px;
    font-weight: 300;
    padding-bottom: 5px;
}

.footer-col-2 .footer-col-content .phone,
.footer-col-2 .footer-col-content .whatsapp,
.footer-col-2 .footer-col-content .email {
    display: flex;
    align-items: center;
}

.footer-col-2 .footer-col-content .phone a,
.footer-col-2 .footer-col-content .whatsapp a,
.footer-col-2 .footer-col-content .email a {
    padding-left: var(--space-25);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 2, 125em;
    transition: color 0.3s;
}

.footer-col-2 .footer-col-content .phone a:hover,
.footer-col-2 .footer-col-content .whatsapp a:hover,
.footer-col-2 .footer-col-content .email a:hover {
    color: var(--color-secondary);
}

.footer-col-1 .footer-col-content ul li a {

    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    transition: color 0.3s;
}

.footer-col-1 .footer-col-content ul li a:hover {
    color: var(--color-secondary);
}

/**********************************/
/*
 * FORM
 */
form.form {
    padding: 15px 0;
    font-size: 14px;
}

/* INPUTY */
.form .form-control {
    height: 46px;
    border-radius: 12px;
    font-size: 14px;
}

.form .element-row {
    position: relative;
}

.form .form-element-name {
    margin-bottom: 8px;
    font-weight: bold;
}

.form .form-required-mark {
    color: #a94442;
}

.form .alert-block .error {
    font-size: 12px;
    font-weight: normal !important;
    color: #a94442 !important;
    margin-top: 4px;
    margin-bottom: 0;
    clear: both;
    display: block;
}

/* TEXTAREA */
.form textarea.form-control {
    height: 130px;
}

/* RADIO I CHECKBOX */
.form .checkboxradio-container + .alert-block .error {
    margin-top: 0;
    padding-left: 26px;
}

.form .checkboxradio-container label {
    line-height: 1.6;
    font-size: 12px;
    color: #000;
    margin-bottom: 0;
    padding-left: 26px;
}

.form .checkboxradio-container [class^="icheckbox"],
.form .checkboxradio-container [class^="iradio"] {
    position: absolute;
    margin-left: -26px;
}

.form .has-feedback .checkboxradio-container {
    padding-right: 42.5px;
}

.form .checkboxradio-container .form-control-feedback {
    line-height: 24px;
}

/* SELECT */
.form .controls + .form-control-feedback {
    top: auto;
    bottom: 0;
}

.form .form-group-sm .controls + .form-control-feedback,
.form .form-group-sm .select2-container + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.form .form-group-lg .controls + .form-control-feedback,
.form .form-group-lg .select2-container + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

.form-element.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 28px;
}

.form-group-sm .form-element.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 24px;
}

.form-group-lg .form-element.has-feedback .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 40px;
}

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 7px;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 8px;
}

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

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

.form .consent-all {
    margin-bottom: 10px;
    padding: 0;
    border: none;
}

.form .before-consent-row,
.form .after-consent-row {
    margin-bottom: 10px;
}

.form .consent-all-row {
    margin-bottom: 15px;
}

/* CAPTCHA */
.form .captcha-image-wrapper {
    display: block;
    width: 100%;
    height: 34px;
    padding: 0 33px 0 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    text-align: center;
}

.form .form-group-sm .captcha-image-wrapper {
    height: 30px;
    padding: 0 29px 0 0;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.form .form-group-lg .captcha-image-wrapper {
    height: 46px;
    padding: 0 45px 0 0;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.form .captcha-container .captcha-image {
    height: 100%;
}

.form .captcha-container .captcha-image img {
    position: relative;
    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);
}

@media (max-width: 767px) {
    .form .col-sm-6 .captcha-image-wrapper {
        margin-bottom: 15px;
    }
}

.form button.captcha-refresh {
    position: absolute;
    right: 15px;
    width: 34px;
    height: 100%;
    top: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.form .form-group-sm button.captcha-refresh {
    width: 30px;
}

.form .form-group-lg button.captcha-refresh {
    width: 46px;
    color: var(--color-secondary);
}

.form button.captcha-refresh .fa {
    font-size: 16px;
}

.form button.captcha-refresh .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 .form-group-lg button.captcha-refresh:hover {
        color: #fff;
    }

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

/**********************************/
/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

.form-control {
    border-radius: 0;
}

/* INPUTY */
.form-control,
.form .form-control {
    box-shadow: none;
}

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

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

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

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 12px;
    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;
}

.select2-container .select2-selection--single {
    padding: 0;
}

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

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

.breadcrumb > li {
    position: relative;
    display: inline-block;
    color: #686868;

}

.breadcrumb > li > a {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}

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

.breadcrumb > li > a:hover {
    color: var(--color-secondary);
}

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

.breadcrumb > li > ul {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 270px;
    top: 100%;
    left: 22px;
    transition: all 0.2s;
    z-index: 13;

    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 640px) {
    .breadcrumb > li:hover > ul {
        opacity: 1;
        pointer-events: initial;
    }
}

.breadcrumb > li > ul > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb > li > ul > li > a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: inherit;
}

@media screen and (min-width: 1140px) {
    .breadcrumb > li > ul > li > a:hover,
    .breadcrumb > li > ul > li > a:focus {
        color: var(--color-secondary);
    }
}

/**
 * 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: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
}

.box .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.social-icon:hover a {
    color: #fff;
}

.social-icon:hover svg {
    fill: #fff;
}

.box .social-icon a {
    color: #000;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.social-icon.social-allegro svg {
    width: 50px;
    height: 50px;
}

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

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

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

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

.langs-menu-short {
    padding-left: 10px;
    /* display: none !important; */
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border: 1px solid transparent;
    /* border-radius: 50%; */
}

.subpage .langs-menu a {
    border: 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: 46px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color, border-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;
    background-color: #fff;
    border: 1px solid transparent;
    margin-right: 0;
}

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

.langs-menu ul li {
    /* margin-left: 10px; */
    /* border: 1px solid rgba(0,0,0,0.1); */
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        border-color: var(--color-secondary);
    }

    .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 {
    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-content {
    display: flex;
}

.article-image {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    max-width: 53%;
    margin-right: 20px;
    margin-bottom: 18px;
}

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

.article-subtitle {
    padding-bottom: calc(var(--space-40) - 8px);
    font-size: var(--font-30);
    color: var(--color-secondary);
    font-weight: 800;
    text-align: center;
}

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

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

.article-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-top: calc(var(--space-25) - 6px);
}

.article-top .news-date {
    margin-bottom: 0;
    font-size: 15px;
}

.news-tags {
    display: flex;
    margin: -5px;
    margin-left: var(--space-25);
}

.news-tag {
    font-size: 12px;
    font-weight: 400;
    padding: 3px 16px;
    background-color: #000;
    color: #fff;
    margin: 5px;
}

/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/

/**
 * GALLERY
 */
.gallery {
    margin-bottom: var(--space-50);
}

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

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 33.333%;
    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%;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s;
}

.gallery-picture-hover > * {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

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

/**INDEX**/
.slide img {
    display: block;
    max-width: 100%;
}

.btn-link .icon {
    width: 30px;
    height: 30px;

}

.tiles .tile-item {
    display: flex;
    flex-direction: row;
    position: relative;
}

.tiles .tile-text {
    color: #000000;
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;

}

.tiles .tile-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.tiles .tile-item:nth-child(even) .tile-left {
    margin-left: 0;
    margin-right: calc((1590px - 100vw) / 2);
}

.tiles .tile-item:nth-child(even) .tile-right {
    padding-right: calc(2 * var(--space-60));
    padding-left: 0;
}

.tile-right {
    width: 50%;
    padding-left: calc(2 * var(--space-60));
    padding-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-left {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    margin-left: calc((1590px - 100vw) / 2);
    width: calc(50% + ((100vw - 1590px) / 2));
}

.tiles-dashboard.tiles-dashboard .tile-item:nth-child(odd) .tile-right {
    padding-right: calc(var(--space-60) + 10px);
    padding-left: 0;
    padding-top: var(--space-60);
    align-items: center;
}

.tiles-dashboard.tiles-dashboard .tile-item:nth-child(odd) .tile-left {
    margin-left: 0;
    margin-right: calc((1590px - 100vw) / 2);
    width: calc(50% + ((100vw - 1590px) / 2));
}

.tiles-dashboard.tiles-dashboard .tile-item:nth-child(even) .tile-right {
    padding-left: calc(var(--space-60) + 10px);
    padding-right: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--space-60) + 10px);
}

.tiles-dashboard.tiles-dashboard .tile-item:nth-child(even) .tile-left {
    margin-right: 0;
    margin-left: calc((1590px - 100vw) / 2);
    width: calc(50% + ((100vw - 1590px) / 2));
}

.tiles .subtitle {
    padding-bottom: var(--space-40);
}

.tiles .text {
    padding-bottom: var(--space-40);
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
    padding-bottom: var(--space-50);
}

.tag-item {
    padding: 5px;
}

.tag {
    height: 50px;
    border-radius: 20px;
    border: 2px solid rgba(23, 23, 21, 0.1);
    background-color: #ffffff;
    padding: 0 var(--space-25);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    color: #000;
}

.tag-all {
    height: 50px;
    border-radius: 20px;
    border: 2px solid rgba(23, 23, 21, 0.1);
    padding: 0 var(--space-25);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

@media screen and (min-width: 1139px) {
    .tag:hover {
        border-color: var(--color-secondary);
        color: var(--color-secondary);
        cursor: pointer;
    }
}

.tile-left img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.tile-right-inner {
    padding: var(--space-25) 0;
}

.tile-right-inner .subtitle a {
    transition: all 0.3s;
}

.tile-right-inner .subtitle a:hover {
    color: var(--color-secondary);
}

section.dots {
    background-image: url("../images/dots-bg.webp");
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
}

section.dots {
    position: relative;
}

section.dots .dots-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

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

.dots-wrapper {
    padding: var(--space-60) 0;
    padding-bottom: calc(var(--space-60) + 12px);
}

.dot-item {
    width: 240px;
    margin: 0 var(--space-60);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    color: #fff;
}

.dot-item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dots-row {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    padding-top: calc(var(--space-50) - 2px);
    position: relative;
    margin: 0 auto;
}

.dot-text {
    font-size: 15px;
    font-weight: 400;
    max-width: 200px;
    line-height: 20px;
    text-align: center;
}

.dot-icon {
    width: 80px;
    height: 80px;
}

.dot-icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    filter: brightness(0) invert(1);
}

section.product-slider {
    display: flex;
    position: relative;
}

section.product-slider .slick-dots {
    position: absolute;
    right: var(--space-40);
    top: 50%;
    transform: translateY(-50%);
}

section.product-slider .slick-dots li + li {
    margin-top: 15px;
}

.product-slider-left {
    position: absolute;
    left: 0;
    min-height: 630px;
    display: flex;
    align-items: center;
}

.product-left {
    width: 60%;
    position: relative;
    z-index: 1;
}

.product-slider-right {
    padding-left: var(--space-60);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.product-slider-item {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.product-right {
    width: 40%;
    position: relative;
}

.img-top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

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

.product-slider-inner {
    display: flex;
    align-items: center;
    position: relative;
}

.slide-item-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.slide-content {
    padding-left: var(--space-50);
}

.slide-title {
    font-size: 30px;
    font-weight: 800;
    text-align: left;
}

.slide-text {
    padding-top: var(--space-40);
    max-width: 450px;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

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

.btn-row {
    padding-top: var(--space-40);
}

section.main-slider {
    position: relative;
    display: flex;
    overflow: hidden;
}

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

section.main-slider .slide-item {
    width: 100%;
    flex-shrink: 0;
    max-height: 750px;
}

section.main-slider .slick-dots {
    display: flex;
    justify-content: center;
    max-width: 1670px;
    margin: 0 auto;
    padding: var(--container-padding);
    padding-bottom: 0;
    left: 0;
    right: 0;
    bottom: 15px;
    position: absolute;
}

section.main-slider .slick-dots li + li {
    margin-left: 15px;
}

.slick-dots li button {
    width: 46px;
    height: 46px;
    box-shadow: -3px 4px 5px rgba(23, 23, 21, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    border-radius: 50%;
    transition: all 0.3s;
    outline: 0 !important;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    border-color: #fc4428;
    color: #fc4428;

}

section.about-us {
    background-color: #000;
    position: relative;
}

.about-us-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-us-bg img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.about-us-content {
    display: flex;
    position: relative;

}

.content-right {
    width: 60%;
    padding-bottom: var(--space-60);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.content-right img {
    display: block;
    max-width: 100%;
    width: 400px;
}

.content-right .caption {

    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    padding-left: 120px;
    text-align: left;
    font-family: "Open sans";
}

.content-right .title-big {
    color: #ffffff;
    font-size: 150px;
    font-weight: 800;
    line-height: 140px;
    padding-left: 120px;
    text-align: left;
    margin-bottom: -130px;
}

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

.content-left {
    padding: calc(2 * var(--space-60)) 0;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.content-left-inner {
    max-width: 500px;
}

section.about-us .subtitle {
    color: #ffffff;
    font-family: "Open Sans";
    font-size: 40px;
    text-align: left;
    font-weight: 300;

}

.about-us-text {
    padding-top: var(--space-40);
    /* Style for "Zaopatruje" */

    color: #ffffff;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.875em;
}

.content-left .btn {
    margin-top: var(--space-40);
}

.social-row {
    display: flex;
    padding-top: var(--space-60);
}

.social-row .box + .box {
    margin-left: var(--space-60);
}

.box .box-caption {
    padding-bottom: var(--space-25);
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    text-align: left;
}

section.product-slider {
    position: relative;
}

section.product-slider .slide-item {
    height: 100vh;
    padding: var(--space-50) 0;
    min-height: 630px;
    z-index: 20;
}

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

.product-dots {
    position: absolute;
    right: var(--space-40);
    z-index: 99;
    pointer-events: initial;
}

.product-dots-wrapper {
    z-index: 9999;
}

.product-dots li {
    padding: 25px 0;
}

.product-dots li button,
.product-dots li a {
    color: #000000;
    width: 44px;
    height: 44px;
    box-shadow: -3px 4px 5px rgba(23, 23, 21, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.product-dots li.active a,
.product-dots li a:hover,
.product-dots li.active button,
.product-dots li button:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.img-box-wrapper {
    /*position: absolute;*/
    /*left: 0;*/
    /*right: 0;*/
    display: flex;
    align-items: center;
    width: 100%;
}

.img-box {
    width: 70%;

}

.images-outer {
    width: 30%;
    position: relative;
}

.bg-absolute {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.bg-absolute > img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    right: 0;
    top: 60px;
    z-index: 10;
    display: none !important;
}

.clove-spice-floating {
    display: none;
    position: absolute;
    bottom: 0;
    right: calc(((1590px - 100vw) / 2) - 40px);
}

.tile-item:last-child .clove-spice-floating {
    display: block;
}

.icon-loupe {
    width: 26px;
    height: 30px;
    color: #fff;
}

.mainsearch-submit:hover {
    background-color: var(--color-secondary);
}

.mainsearch.form .form-control {
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.page-text .page-title {
    padding-top: var(--space-40);
}

.gallery .btn-row {
    display: flex;
    padding: 0;
    justify-content: center;
}

.gallery-picture-hover:before {
    content: '';
    width: 1px;
    height: 44px;
    display: block;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    background-color: #fff;

}

.gallery-picture-hover:after {
    content: '';
    width: 44px;
    height: 1px;
    margin-left: -22px;
    display: block;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
}

/*work offer page*/
section.work-list {
    padding-bottom: var(--space-40);
    position: relative;
    z-index: 999;
    /* background-color: #ffff; */
}

.work-page-wrapper {
    position: relative;
    /* z-index: 99; */
}

.work-page-wrapper .page-heading {
    position: relative;
    z-index: 99;
}

.image-floating-3 {
    position: absolute;
    top: 0;
    left: calc((1270px - 100vw) / 2);
    z-index: 0;
}

.work-list-item.active .fa {
    transition: all 0.3s;
}

.work-list-item.active .fa {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.work-list-item {
    padding: 10px 0
}

.work-list-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(21, 21, 20, 0.1);
    padding: 5px 10px;
    background-color: #fff;
}

.work-title-left {
    display: flex;
    justify-content: flex-start;
}

.work-title-left .caption {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    padding-left: 15px;
}

.work-list-content {
    padding: calc(var(--space-25) + 5px);
    border: 1px solid rgba(21, 21, 20, 0.1);
    display: none;
    background-color: #f8f8f8;
    line-height: 30.04px;
}

.work-list-item.active .work-list-title {
    border-bottom: none;
}

.work-content-heding {
    padding-bottom: var(--space-50);
}

.work-info-row {
    display: flex;

}

.work-info {
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    line-height: 1.875em;
}

.work-info-caption {
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    padding-left: 5px;
    line-height: 1.875em
}

.btn-row .icon {
    width: 50px;
    height: 40px;
    margin-left: -15px;
}

.work-title-left .icon {
    width: 50px;
    height: 50px;
    margin: -15px;
    margin-left: 0px;
    opacity: 0.4;
}

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

.work-list-content .btn-row .btn-md {
    min-width: 180px;
    font-weight: 700;
}

.work-content-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
}

.work-list-item .btn-circle {
    background-color: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

/*certificate page*/
section.certificate {
    display: flex;
    flex-wrap: wrap;
}

section.certificate .certificate-left,
section.certificate .certificate-right {
    width: 50%;
    padding-bottom: var(--space-60);
}

section.certificate .certificate-left {
    padding-right: var(--space-50);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

section.certificate .certificate-right {
    padding-left: var(--space-50);

}

.file-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
}

.file-item-wrapper {
    width: 33.33%;
    padding: 20px;
}

.file-item {
    height: 100%;
}

/*.file-item:before {*/
/*content: '';*/
/*display: block;*/
/*padding-top: 100%;*/

/*}*/

.file-item-inner {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-25);
    text-align: center;
    transition: border-color 0.3s;
    height: 100%;
}

@media screen and (min-width: 1140px) {
    .file-item-inner:hover {
        border-color: var(--color-secondary);
    }
}

.file-item .icon-pdf {
    display: block;
    max-width: 140px;
    object-fit: contain;
}

.file-item-inner .caption {
    padding-top: var(--space-25);
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.file-description {
    padding-top: var(--space-50);
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.certificate-right .subtitle {
    color: #000000;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
    padding-bottom: calc(var(--space-25) + 5px);
}

.production-circle {
    width: 116px;
    height: 116px;
    border: 3px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff;

}

.production-circle svg {
    display: block;
    max-width: 60px;
    object-fit: contain;
}

.production-number {
    color: #000000;
    font-size: 26px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    border-bottom: 3px solid var(--color-secondary);
    width: 50px;
    padding-bottom: 12px;
    position: absolute;
    bottom: 50%;
    right: 100%;
}

.certificate-right .left {
    position: relative;
}

.production-list-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    min-height: calc(116px + 60px);
}

.production-list-item .right {
    padding-right: calc(45px + var(--space-25));
    width: calc(50% - 58px);
}

.production-title {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-align: right;
}

.production-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    text-align: right;
    padding-top: var(--space-25);
}

.production-list-item:nth-child(2n) .production-number {
    left: 100%;
    right: unset;
    text-align: right;
}

.production-list-item:nth-child(2n) {
    flex-direction: row;
}

.production-list-item:nth-child(2n) .right {
    padding-right: 0;
    padding-left: calc(45px + var(--space-25));
}

.production-list-item:nth-child(2n) .production-title,
.production-list-item:nth-child(2n) .production-text {
    text-align: left;
}

.production-list {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: var(--space-40) 0;
}

.production-list:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #686868;
    opacity: 0.2;
}

.production-dot {
    background-color: var(--color-secondary);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 7px);

}

.production-dot.top {
    top: 0;
}

.production-dot.bottom {
    bottom: 0;
}

.btn-link .caption {
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
}

.section-facts .section-title {
    color: #000;
    text-align: center;
}

.boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
    padding-top: var(--space-40);
    padding-bottom: calc(var(--space-50) + 5px);
}

.box-item {
    width: 50%;
    padding: 5px;
}

.box-item-inner {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    min-height: 100px;
    padding: 10px var(--space-25);
    transition: border-color 0.3s;
}

.box-icon {
    font-size: 34px;
    color: var(--color-secondary);
}

.box-text {
    padding-left: var(--space-25);
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

section.target {
    background-image: url("../images/target-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.target .section-title,
section.target .section-text {
    color: #fff;
}

section.target .section-heading {
    height: 530px;
    justify-content: center;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-60) 0;
}

.section-heading .section-icon {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-50);
}

.section-heading .section-icon img {
    display: block;
    object-fit: cover;
    max-width: 100%;
}

section.vision .section-title {
    color: #000;
}

section.vision .box-icon {
    font-size: 30px;
    font-weight: 900;
}

section.vision .box-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

section.vision .section-heading {
    padding-bottom: 0;
}

section.vision .box-item-inner {
    min-height: 150px;
}

section.europe {
    background: url("../images/vision-bg.png") no-repeat center;
    color: #fff;
    padding: calc(var(--space-50) * 2) 0;
}

section.europe .text {
    color: #fff;
}

.europe-top {
    display: flex;
}

.europe-top .right img {
    display: block;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.europe-top .left,
.europe-top .right {
    width: 50%
}

.europe-top .title-small {
    font-size: 17px;
    font-weight: 400;
    line-height: 15.81px;
}

.europe-top .title-big {
    font-size: 126px;
    font-weight: 900;
    line-height: 126px;
    letter-spacing: -8px;
}

.europe-top .title-big span {
    padding-left: 140px;
}

.europe-bottom .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 30.04px;
    text-align: center;
}

.europe-bottom {
    padding-top: var(--space-25);
}

.europe-top .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.history .section-title {
    color: #000;
}

section.history .production-circle {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

section.history .production-text {
    padding-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    max-width: 250px;
}

section.history .production-list-item .right {
    display: flex;
    justify-content: flex-end;
}

section.history .production-list-item:nth-child(2n) .right {
    display: flex;
    justify-content: flex-start;
}

section.gallery .btn-row {
    display: none;
}

section.gallery .gallery,
section.gallery .gallery-list {
    padding-bottom: 0;
}

section.gallery .gallery {
    padding-top: var(--space-60);
}

section.contact {
    display: flex;
    padding-bottom: calc(var(--space-40) + 5px);
}

section.contact .section-title {
    color: #000;
}

section.contact .contact-left {
    width: 50%;
    padding-right: 150px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

section.contact .contact-right {
    width: 50%;
    padding-left: 150px;
}

.captcha-refresh .icon {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
}

.captcha-refresh:hover .icon {
    color: #fff;
}

section.contact .section-heading {
    padding-top: 0;
    padding-bottom: var(--space-50);
}

.contact-right .btn-row {
    padding: 0;
    display: flex;
}

.contact-left .logistic,
.contact-left .contact-buissnes {
    padding-top: var(--space-60);
}

.contact-label {
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
}

.contact .phone,
.contact .email {
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

.contact .phone .footer-icon,
.contact .email .footer-icon {
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
    margin-right: 20px;
}

.contact .phone a,
.contact .email a {
    color: #000;
    font-size: 20px;
    font-weight: 400;

}

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

@media screen and (min-width: 1140px) {
    .contact .phone a:hover,
    .contact .email a:hover {
        color: var(--color-secondary);

    }
}

.contact-left .text {
    padding-top: var(--space-60);
}

.contact-left .address .text {
    padding-top: 0;
}

.goto-b2b {
    padding-top: var(--space-50);
    text-align: center;
}

.goto-b2b .btn {
    margin-top: var(--space-25);
}

.goto-b2b .btn .icon {
    width: 40px;
    height: 25px;
}

/*login user panel*/
.d-flex {
    display: flex;
    flex-direction: column;
}

.b2b-right .panel-default > .panel-heading {
    background-color: transparent;
    padding: 0;
}

.b2b-right .panel-heading h2 {
    background: none;
    color: #000;
}

.b2b-right .panel-heading,
.b2b-right .panel {
    border: none;
}

.b2b-right .panel-heading h1 {
    color: #000000;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.b2b-right .panel-heading h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 48px;
    text-align: center;
}

.b2b-right .panel-heading .panel-title-small {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding-top: 10px;
}

.row.centered {
    text-align: center;
}

.row-flex-center {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 15px;
}

.b2b-left {
    width: 65%;
    padding-right: var(--space-50);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
}

.b2b-right:before {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    left: 0;
    width: 1px;
    height: 700px;
    background-color: rgba(0, 0, 0, 0.1);
}

.b2b-right {
    width: 35%;
    padding-left: var(--space-50);
    position: relative;

}

.b2b-wrapper {
    display: flex;
    padding-top: var(--space-50);
    padding-bottom: calc(var(--space-60) + var(--space-40));
}

.login-forgotPassword a {
    color: var(--color-secondary);
}

.login-forgotPassword {
    margin-bottom: 15px;
}

.panel-body .form-offset-inner .text {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}

.b2b-wrapper .login-info {
    padding-top: var(--space-60);
}

.b2b-left .page-heading {
    padding-top: 0;
}

.b2b-description-bottom .text {
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.b2b-icons-item {
    width: 25%;
    padding: calc(var(--space-25) + 5px)
}

.b2b-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-1 * (var(--space-25) + 5px));
}

.b2b-icons-item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.b2b-icons-item-inner .icon {
    width: 60px;
    height: 60px;
}

.b2b-icons-item-inner .icon img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.b2b-icons-item-inner .caption {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding-top: calc(var(--space-25) - 5px);
}

.product-category-wrapper .tags-wrapper {
    justify-content: center;
}

.product-category-wrapper .tag.all {
    background-color: #686868;
    border-color: #686868;
    color: #fff;
}

.shop-product-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin: -15px;
}

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

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

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

.product-list-item-inner {
    padding: calc(var(--space-25) + 5px) var(--space-25);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    transition: box-shadow 0.3s;
    position: relative;
}

.product-image {
    display: flex;
    align-items: center;
    padding-bottom: var(--space-25);
    height: 100%;
    flex-direction: column-reverse;
    justify-content: space-between;
}

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

.product-text {
    color: #949494;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding-top: 15px;
    height: 65px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.product-page-right .product-text {
    display: block;
    overflow: visible;
    height: unset;
}

.product-name {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
}

.product-weights-variants {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    /*height: 55px;*/
    flex-wrap: wrap;
    margin: 0 -4px;
}

.variant-item {
    font-size: 11px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    margin: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    cursor: default;
    border-color: #686868;
    color: #686868;
}

.product-list-b2b-items .variant-item {
    cursor: pointer;
}

@media screen and (min-width: 1140px) {
    .product-list-b2b-items .variant-item:hover {
        background-color: #686868;
        color: #fff;
    }
}

.product-btn-row {
    text-align: center;
    padding-top: 15px;
}

.product-btn-row .btn {
    text-transform: none;
}

.product-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
}

.product-bottom {
    position: relative;
    height: 125px;
    overflow: hidden;
}

.product-bottom-inner {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transition: top 0.4s;
}

@media screen and (min-width: 1140px) {
    .product-list-item-inner:hover {
        box-shadow: 5px 8px 12px 1px rgba(23, 23, 21, 0.15);
    }

    .product-list-item-inner:hover .product-bottom-inner {
        top: -70px;
    }
}

.pagination-wrapper {
    max-width: 550px;
    margin: 0 auto;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    border-radius: 50%;
}

.btn-pagination img {
    display: block;
    max-width: 100%;
    padding: 10px;
}

.pagination-wrapper ul li.next.disabled a,
.pagination-wrapper ul li.prev.disabled a {
    display: flex;
    opacity: 0 !important;
    background-color: transparent;
    color: #686868;
    border: 2px solid rgba(0, 0, 0, 0.1);

}

.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
    color: #000;
    transition: color 0.3s;
}

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

section.map {
    line-height: 0;
}

section.map iframe {
    width: 100%;
}

@media screen and (min-width: 1140px) {
    .tag.all:hover {
        background-color: var(--color-secondary);
        border-color: var(--color-secondary);
    }
}

.btn .icon-book {
    width: 30px;
    height: 30px;
    margin: 0;
    margin-right: 10px;
}

.certificate-left .btn-row {
    text-align: center;
}

/**KARTA PRODUKTU**/
section.product-page-top {
    padding-top: var(--space-60);
    padding-bottom: var(--space-50);
}

.product-page-top-inner {
    display: flex;
}

.product-page-right {
    width: 60%;
}

.product-page-left {
    width: 40%;
}

.product-page-left {
    padding-right: var(--space-25);
    position: relative;
}

.product-page-right {
    padding-left: var(--space-25);
}

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

.slider-arrows-wrapper {
    position: absolute;
    right: 0;
    bottom: var(--space-25);
}

.shop-product-photos .slider-arrows-wrapper {
    right: 15px;
    left: 15px;
    top: calc(50% - 12px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: initial;
    display: flex;
    justify-content: space-between;
}

.shop-product-photos .slider-arrows-wrapper .btn {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background-color: #fff;
    border-width: 1px;
}

@media screen and (min-width: 1140px) {
    .shop-product-photos .slider-arrows-wrapper .btn:hover {
        background-color: var(--color-secondary);
        color: #fff;
    }
}

.option-item {
    display: flex;
    align-items: center;
}

.recomended-slider-heading {
    position: relative;
    margin-bottom: var(--space-25);
}

.product-nav-slider-item-inner {
    max-width: 150px;
}

.product-nav-slider-item-inner img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.product-slider-wrapper {
    padding-bottom: var(--space-25);
}

.product-slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    cursor: pointer;
    margin: 1px;
}

.product-slide-image:focus {
    outline: none;
}

.product-slide-image img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.product-title {
    color: #000000;
    font-size: var(--font-36);
    font-weight: 900;
    text-align: left;
    line-height: 1.1;
}

.shop-product-photos {
    position: relative;
}

.product-tag-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 10px;
    right: 10px;
    margin: -5px;
    z-index: 1;
}

.product-top .product-tag-wrapper {
    position: static;
}

.product-tag {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    background-color: #686868;
    padding: 3px 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin: 5px;
}

.product-page-right .product-text {
    padding-top: 12px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

.weight-selection-wrapper {
    padding-top: var(--space-50);
}

.weight-selection-title {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 60px;
    text-align: left;
    text-transform: uppercase;
}

.product-page-right .btn-row {
    padding-top: var(--space-40);
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.product-page-right .btn-row .btn {
    text-transform: uppercase;
    width: 50%;
}

.product-page-right .btn-row .btn + .btn {
    margin-left: calc(var(--space-25) - 5px);
}

.product-description-list {
    padding-top: var(--space-50);
}

.product-description-list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.product-description-list-item:first-of-type,
.product-page-heading + .product-description-list-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);

}

.product-description-list-title {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-size: 16px;
    height: 50px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 20px;
    cursor: pointer;
    transition: color 0.3s;
}

.product-description-list-title .title-right {
    padding-right: 8px;
}

.product-description-list-title .title-right .icon {
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

.product-description-list-title .title-right .icon-downgrade {
    width: 25px;
    height: 25px;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
    transition: transform 0.3s;
}

.product-description-list-title .title-left {
    display: flex;
    align-items: center;
}

.product-description-list-title .title-left img {
    display: block;
    max-width: 30px;
    max-height: 35px;
    margin-left: 20px;
}

.product-description-list-title.active .title-right .icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media screen and (min-width: 1140px) {
    .product-description-list-title:not(.product-description-list-title-scroll):hover .title-right .icon {
        -webkit-transform: translateY(3px) rotate(-90deg);
        -moz-transform: translateY(3px) rotate(-90deg);
        -ms-transform: translateY(3px) rotate(-90deg);
        -o-transform: translateY(3px) rotate(-90deg);
        transform: translateY(3px) rotate(-90deg);
    }

    .product-description-list-title:not(.product-description-list-title-scroll).active:hover .title-right .icon {
        -webkit-transform: rotate(90deg) translateX(3px);
        -moz-transform: rotate(90deg) translateX(3px);
        -ms-transform: rotate(90deg) translateX(3px);
        -o-transform: rotate(90deg) translateX(3px);
        transform: rotate(90deg) translateX(3px);
    }


}

.product-description-list-content .text {
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
}

.product-description-list-content {
    display: none;
    padding: calc(var(--space-25) - 5px);
    padding-top: 15px;
}

section.product-page-middle {
    background-color: #fafafa;
    padding: var(--space-50) 0;
}

.product-tile {
    display: flex;
    flex-direction: row-reverse;
}

.product-tile.alignRight {
    flex-direction: row;
}

.product-tile-left,
.product-tile-right {
    width: 50%;
}

.product-tile-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-40);
}

.product-tile-left .text {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    text-align: justify;
    max-width: 400px;
}

.product-tile-right img {
    display: block;
    width: 100%;
    object-fit: cover;
}

section.product-page-bottom {
    padding: var(--space-50) 0;
}

.product-page-bottom-heading .section-title {
    color: #fff;
    background-color: var(--color-secondary);
    line-height: 60px;
    border-radius: 30px;
    padding: 0 calc(var(--space-25) + 5px);
}

.product-description-list .btn-row {
    text-align: center;
    padding-top: var(--space-50);
}

.description-box-item-inner .icon {
    width: 45px;
    height: unset;
    margin-right: 15px;
    flex-shrink: 0;
}

.description-box-item-inner .icon img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.description-box-item-inner {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: calc(var(--space-25) - 5px) 15px;
}

.description-box-item-inner .caption {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.description-box-item {
    width: 25%;
    padding: 5px;
}

.product-description-boxes {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.product-badges {
    position: absolute;
    top: 0;
    right: var(--space-25);
}

.product-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #686868;
    border-radius: 50%;
    width: 85px;
    height: 85px;
}

.badge-top {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    padding-bottom: 4px;
}

.badge-bottom {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.35px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-page-top-inner .btn-row .btn + .btn {
    margin-top: 0 !important;
}

.slick-slide img {
    max-width: 100%;
}

.contact-form .form-element-option-text a {
    color: var(--color-secondary);
}

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

.product-tile-left .btn-wrapper {
    padding: 5px;
}

.search-boxes .tile-item {
    display: flex;
}

.search-boxes .tile-item .btn {
    margin-top: var(--space-25);
}

.job-form-wrapper {
    max-width: 700px;
}

.btn-file {
    border-radius: 23px;
}

.btn-file {
    background-color: #fff !important;
    color: #fff !important;
    border: 1px solid #ccc !important;
}

.btn-file:hover {
    color: #fff !important;
    background-color: var(--color-secondary) !important;
    cursor: pointer !important;
}

.btn-file .text > * {
    -webkit-transition: all .2 linear;
    -moz-transition: all .2 linear;
    -ms-transition: all .2 linear;
    -o-transition: all .2 linear;
    transition: all .2 linear;
}

.btn-file:hover .text > * {
    color: #fff !important;
}

.job-form-wrapper .btn-row {
    text-align: center;
    display: flex;
}

.section-imageTiles {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
    padding-bottom: calc(var(--space-60) * 2);
}

.section-imageTiles .image-tile {
    width: 33.333%;
    padding: 0 5px var(--space-50) 0;
    cursor: pointer;
}

.section-imageTiles .image-tile .image-name {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    padding-top: var(--space-25);
}

.section-imageTiles .image-tile .image-inner img {
    display: block;
    max-width: 100%;

}

.section-imageTiles .image-tile .image-inner {
    overflow: hidden;
}

.section-imageTiles .image-tile .image-item {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.section-imageTiles .image-tile:hover .image-inner .image-item {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.tiles .btn-category-list {
    background-color: transparent;
    border: 2px solid grey;
    color: #000;
}

.tiles .btn-category-list:hover {
    color: #fff;
    border-color: var(--color-secondary);

}

.section-brand-info {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: var(--space-60);
}

.section-brand-info .brand-info-item {
    width: 33.333%;
    padding: 0 var(--space-60);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-brand-info .brand-info-item .info-icon {
    max-width: 110px;
}

.section-brand-info .brand-info-item .info-icon img,
.section-brand-info .brand-info-item .info-icon svg {
    display: block;
    max-width: 100%;
}

.section-brand-info .brand-info-item .info-name {
    color: #000000;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.section-brand-info .brand-info-item .info-text {
    padding-top: var(--space-25);
    color: #000000;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1.375em;
    max-width: 280px;
}

.section-columns {
    /*background-color: rgba(247, 247, 247, 0.3);*/
    padding: var(--space-50) 0;
}

.section-columns .column-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.column-item {
    width: 50%;
    max-width: 500px;
    padding-right: 15px;

}

.column-item:nth-child(even) {
    padding-right: 0;
    padding-left: 15px;
}

.column-item:nth-child(even):before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    height: calc(100% - 20px);
}

.column-box-wrapper {
    padding-top: var(--space-25);

}

.column-box + .column-box {
    padding-top: 20px;
}

.column-box-inner {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    align-items: center;
}

.column-box .column-icon {
    max-width: 100px;
    flex-shrink: 0;
}

.column-name {
    padding-right: 10px;
}

.column-box .column-icon img,
.column-box .column-icon svg {
    display: block;
    max-width: 100%;
}

.section-images {
    padding: var(--space-50) 0;
    text-align: center;

}

.section-images .section-images-inner {
    padding-top: var(--space-60);
}

.section-images .image-row {
    padding-top: var(--space-60);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-images .image-row .image-item {
    width: 33.333%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-images .image-row .image-item img {
    display: block;
    max-width: 100%;
}

section.product-slider .slider-wrapper {
    display: flex;
}

.section-images-wrapper {
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 0;*/
    /*right: 0;*/
    /*-webkit-transform: translateY(-50%);*/
    /*-moz-transform: translateY(-50%);*/
    /*-ms-transform: translateY(-50%);*/
    /*-o-transform: translateY(-50%);*/
    /*transform: translateY(-50%);*/
}

.images-outer:before {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}

.section-images-wrapper img {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    max-width: 100%;
    object-fit: cover;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.login-box .form-offset-indent {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.upload-results {
    display: none !important;
}

.fancybox-container .section-heading {
    padding: 0;
    margin: 0 0 var(--space-40);
}

.reset-passwd {
    transition: all 0.4s;
}

.reset-passwd:hover {
    text-decoration: underline;
    color: #000000;
}

.form-register-multiselect .select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: none;
    background-color: transparent;
    font-weight: 600;
    width: 98%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    float: right;
    color: red;
    font-size: 18px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 12px;
}

.form-register-multiselect .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 600;
    padding: 0 28px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 400;
}

.form-register-multiselect .form-control-text {
    font-weight: 600;
}

.form.update-form .btn-sm {
    min-width: unset !important;
    padding: 6px 12px;
}

.btn .fa-plus {
    margin-right: 5px;
}

.text.form-offset-inner {
    font-size: 14px;
}

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

.select2-container--default .select2-selection--multiple {
    height: unset !important;
    min-height: 46px;
}

.select2-selection--multiple .form-control {
    height: unset !important;

}

.product-nav-slider-item-inner .product-slide-image {
    padding: 10px;
}

.product-nav-slider {
    margin: 0 -10px;
}

.product-description-list-content table {
    margin: 0 auto;
}

.product-tiles-wrapper .btn-wrapper {
    margin-top: 15px;
}

.column-item .column-title {
    text-align: center;
}

.text table td {
    max-width: 500px;
    font-size: 16px;
}

.text table td:not(:first-child) {
    text-align: left;
}

section.main-slider iframe,
section.main-slider video {
    width: 100%;
    height: 100%;
    display: block;
}

section.main-slider .slick-dots li button {
    background-color: #fff;
}

.select2-dropdown {
    border-radius: 23px;
    overflow: hidden;
}

.select2-container--default .select2-results__option + .select2-results__option {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-element-nip .input-group-btn button {
    height: 46px;
}

.form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

.form-element-nip.has-feedback .input-group + .form-control-feedback {
    right: 154px;
}

.select2-results__option {
    padding: 6px 25px;
}

.select2-container .select2-selection--single .select2-selection__clear {
    font-size: 18px;
    color: red;
    margin-right: 21px;
}

.form-register-multiselect .form-control-text {
    padding: 0 30px;
}

.search-boxes .tile-left {
    display: none;
}

.search-boxes .tile-right .tags-wrapper,
.search-boxes .tile-right .tile-text,
.search-boxes .tile-right .btn {
    display: none;
}

.search-boxes .tile-right {
    width: unset;
}

.search-boxes .tile-right-inner .subtitle {
    font-size: 16px;

}

.search-boxes .tile-right {
    padding: 10px;
}

.search-boxes .tile-right-inner {
    border: 1px solid #000;
    padding: 10px;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .search-boxes .tile-right-inner:hover {
        background-color: #000;
        color: #fff;
    }
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    position: relative;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    content: '';
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    margin-left: -4px;
    position: absolute;
    top: 50%;
    width: 0;
    right: 1px;
}

.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__rendered:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.register-form-container .select2-container--default .select2-selection--single {
    border-color: #aaa;
}

.header-top-inner .category-list {
    padding-bottom: 0;
}

.icon-pdf-download {
    width: 40px;
}

.product-description-list-title .title-right .fa {
    font-size: 28px;
}

.breadcrumb > li > a.last {
    /*font-weight: 900;*/
    /*color: #000;*/
    pointer-events: none;
}

.tile-right .title {
    text-align: center;
}

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

.top-box-submenu ul li a {
    display: block;
    padding: 10px 15px;
    width: 100%;
    color: var(--shop-primary);
    background: var(--shop-primaryText);
}

.top-box-submenu li {
    display: block;
    width: 100%;
}

.page-footer-text {
    margin-bottom: var(--space-50);
}

.heading-right.sort-right .form-element-text {
    display: inline-block;
    margin-right: 17px;
    min-width: 130px;
}

.heading-right.sort-right .form-element-wrapper {
    display: inline-block;
}

.heading-right.sort-right .select2.select2-container.select2-container--default {
    width: 180px !important;
}

.heading-right.sort-right .select2-container .select2-selection--single {
    height: 46px;
    width: 180px;
}

.heading-right.sort-right {
    display: flex;
    justify-content: flex-end;
}

.select2-container--open .select2-dropdown--below {
    border-bottom-right-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}

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

.heading-right.sort-right .form-element-text {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.product-identifier {
    display: block;
    font-weight: normal;
    font-size: 12px;
}

.login-box .panel {
    border: none;
}

/*dashboard-section*/
.dashboard-section {
    position: relative;
}

.dashboard-left-background {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background-color: #000000;
    opacity: 0.05;
}

.dashboard-left,
.dashboard-right {
    position: relative;
    width: 45%;
    padding-top: calc(var(--space-60) + 10px);
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 520px;
    padding-bottom: var(--space-50);
}

.dashboard-left {
    color: #93c01b;
}

.dashboard-right {
    color: #d7010f;
}

.dashboard-section-inner {
    display: flex;
    justify-content: space-between;
}

.dashboard-title {
    color: #000000;
    font-family: "Open Sans", sans-serif;
    font-size: calc(var(--font-36) + 4px);
    font-weight: 900;
    text-align: center;
}

.dashboard-subtitle {
    color: inherit;
    font-family: "Open Sans";
    font-size: 24px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin-top: 10px;
}

.dashboard-list {
    width: 100%;
    margin: var(--space-50) 0;
}

.dashboard-list ul li + li {
    margin-top: 10px;
}

.dashboard-list ul.list-short li {
    width: 18%;
    margin: 0 1%;
    float: left;
}

.list-icon {
    width: 40px;
    height: 40px;
    display: block;
}

.list-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgba(23, 23, 21, 0.1);
    border-radius: 25px;
    padding: 0 var(--space-25);
    color: #000;
    transition: all 0.3s;
    cursor: pointer;
}

.dashboard-list .list-link {
    background-color: #fff;
    min-height: 50px;
    padding: 5px var(--space-25);
    padding-right: 14px;
}

.dashboard-list ul li.active .list-link {
    border-color: #93bf1b;
}

.dashboard-list .iradio_minimal-custom {
    position: relative;
    border-radius: 50%;
    width: 23px;
    height: 23px;
    background: none;
    background-color: #f3f3f3;
    margin-right: 10px;
    flex-shrink: 0;
}

.dashboard-list .iradio_minimal-custom.checked::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    background: url('../images/check.svg');
    background-size: contain;
}

@media screen and (min-width: 1140px) {
    .list-link:hover {
        border-color: #93bf1b;
    }

}

.list-link-inner {
    display: flex;
    align-items: center;
    color: #000;

}

.dashboard-bottom-text {
    color: #000000;
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    padding: 15px var(--space-50) 15px 10px;
    border: 1px solid rgba(23, 23, 21, 0.1);
}

.dashboard-bottom-text .icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.icon-arrow {
    width: 50px;
    height: 50px;
}

.page-dashboard .page-title {
    color: #000000;
    font-family: "Open Sans", sans-serif;
    font-size: calc(var(--font-36) + 4px);
    font-weight: 900;
    text-align: center;
    margin-top: calc(var(--space-50) + var(--space-40));
}

.page-dashboard .category-list {
    display: flex;
    flex-wrap: wrap;
    padding: var(--space-40) 0;
    margin: -15px;
}

.page-dashboard .category-item {
    width: 33%;
    padding: 15px
}

.page-dashboard .category-link {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.page-dashboard .category-link img {
    display: block;
    max-width: 100%;
    transition: all 0.4s;
}

.page-dashboard .category-link:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.page-dashboard .category-image {
    display: block;
    overflow: hidden;
    margin: var(--space-40);
}

.page-dashboard .category-name {
    width: 100%;
    display: block;
    padding: var(--space-25) 10px;
    color: #000000;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    align-items: center;
}

.section-orders {
    padding-top: var(--space-40);
}

.tiles-dashboard .tile-left {
    position: relative;
    max-height: 630px;
    align-self: center;

}

.tile-left-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 var(--space-60) var(--space-60) var(--space-60);

}

.tiles-dashboard {
    padding-top: var(--space-50);
    margin-bottom: calc(var(--space-50) * 2);
}

.tiles-dashboard .tile-right img {
    display: block;
}

.tiles-dashboard .date-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiles-dashboard .dashboard-news-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--space-25);
}

.tiles-dashboard .text {
    padding: 10px 0 var(--space-25) 0;
    text-align: justify;
}

.dashboard-news-link {
    font-weight: 900;
    transition: all 0.4s;
}

.dashboard-news-name:hover {
    color: var(--color-secondary);
}

.dashboard-news-name {
    text-align: center;
    font-weight: 700;
    transition: all 0.4s;
}

.dashboard-news-link:hover {
    color: var(--color-secondary);
}

.tiles-dashboard .subtitle {
    padding-bottom: 0;
}

.tiles-dashboard .tile-left:before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8071603641456583) 0%, rgba(255, 255, 255, 0) 80%);
}

.tile-logo {
    width: 110px;
    height: 110px;
}

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

.tile-content-title {
    font-family: "Open Sans", sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-align: left;
    margin-left: var(--space-25);
    max-width: 240px;

}

.link-item {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1.19px;
    transition: all 0.4s;

}

.link-item:hover {
    color: var(--color-secondary);
}

.link-item + .link-item {
    margin-top: 10px;
}

.link-item .link-icon {
    font-size: 20px;
    color: #fff;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-25);
}

.page-heading .date {
    padding-top: var(--space-25);
}

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

.news-item {
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    padding: 20px var(--space-25)
}

.news-item .see-more {
    font-weight: 700;
}

.news-heading {
    color: #000;
    text-transform: none;
    font-weight: 700;
    font-size: 16px;
    padding-top: 10px;
    transition: all 0.4s;
}

.news-heading:hover {
    color: var(--color-secondary);
}

/*.news-body time {*/
/*padding: 10px 0 20px 0;*/
/*}*/
.news-item p {
    margin-top: 10px;
}

.article-content .date {
    padding-bottom: var(--space-25);
}

.tiles-dashboard .tile-right {
    flex-direction: column;
    align-self: flex-start;
}

.tiles-dashboard .tile-right .table-responsive-wrapper {
    padding-top: var(--space-60);
}

.tiles-dashboard .tile-right table,
.tiles-dashboard .tile-right .table-responsive,
.tiles-dashboard .tile-right .table-responsive-wrapper {
    width: 100%;
}

.tiles-dashboard .tile-right table thead th {
    text-align: center;
    padding-bottom: var(--space-60);
    padding-left: 5px;
    padding-right: 5px;
}

.tiles-dashboard .tile-right table tbody td {
    text-align: center;
    padding: 15px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-title-wrapper {
    display: flex;
    align-items: center;
}

.filters-n-shorts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}

.filters-n-shorts .form-group {
    margin: 0 !important;
}

.filters-n-shorts-left .form-element-container {
    display: flex;
    align-items: center;
}

.filters-n-shorts-left .form-element-container .form-control {
    width: 280px;
    height: 46px;
    margin-left: 20px;
    border-radius: 4px;
}

.filters-n-shorts-left .form-element-container .form-element-name {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    font-size: 15px;

}

.filters-n-shorts-left {
    position: relative;
}

.heading-right.sort-right .form-element-container {
    white-space: nowrap;
}

.filters-submit-btn {
    position: absolute;
    height: 46px;
    bottom: 0;
    right: 15px;
    width: 46px;
    background-color: #686868;
    border: none;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: background-color .2s linear;
    -moz-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    -o-transition: background-color .2s linear;
    transition: background-color .2s linear;
    border-radius: 0 4px 4px 0;
}

.filters-submit-btn .icon {
    display: block;
    width: 30px;
    height: 30px;
    color: #fff;
    -webkit-transition: color .2s linear;
    -moz-transition: color .2s linear;
    -ms-transition: color .2s linear;
    -o-transition: color .2s linear;
    transition: color .2s linear;
}

@media screen and (min-width: 1140px) {
    .filters-submit-btn:hover {
        background-color: var(--color-secondary);
    }

    .filters-submit-btn:hover .icon {
        color: #fff;
    }
}

.shop-product-size-table thead tr td {
    background-color: #686868;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.shop-product-size-table thead tr th {
    background-color: #686868;
    color: #fff;
    font-weight: normal;
    text-align: center;
}

.shop-product-size-table thead tr th span {
    font-weight: bold;
}

.shop-product-size-table table {
    border-collapse: collapse;
}

.shop-product-size-table table td {
    border: 1px solid rgba(23, 23, 21, 0.1);

}

.shop-product-size-table .icon-basket {
    display: block;
    width: 20px;
    height: 20px;
}

.shop-product-size-table .btn-shop-add-variant-to-basket {
    padding: 10px;
}

.top-box-product .top-box-right .product-name {
    flex-direction: column;
    align-items: flex-start;
}

.basket-summary .btn-sm:hover .fa {

    color: grey;
}

.basket-summary .btn-sm:hover {
    background-color: transparent;
}

.basket-summary .btn-sm .fa {
    transition: all 0.4s;
}

.basket-summary .btn-sm {
    min-width: unset;
    padding: 0 10px;
    border-radius: 50%;
    border: 1px solid grey;
    transition: all 0.4s;
}

.shop-product-size-table thead tr td .caption,
.shop-product-size-table tbody tr td:nth-child(3) .caption {
    white-space: nowrap;
}

.shop-product-size-table .variant-favourite {
    min-width: 50px;
    text-align: center !important;
}

.caption-quantity {
    font-size: 12px;
}

.summary-box .summary-panel-data {
    margin-bottom: 25px;
    padding: 15px;
}

.basket-summary-total table > tfoot > tr > th {
    padding-left: 14px;
}

.news-item .see-more {
    transition: all 0.4s;
}

.news-item .see-more:hover {
    color: var(--color-secondary);
}

.date-time-wrapper .icon {
    margin-left: -10px;
    margin-right: 5px;
}

.date-time-wrapper {

    display: flex;
    align-items: center;
}

.login-box .register-form .collection-row-wrapper {
    margin: 0 -15px 5px -15px;
}

.login-box .register-form > .form-element-name {
    margin-bottom: 10px;
    font-size: 16px;
}

.dashboard-table {
    min-width: 450px;
    padding-top: var(--space-25);
}

.header-right {
    padding-left: 5px;
}

.btn-shop-add-all-to-basket:hover {
    background-color: var(--color-secondary);
}

.basket-availability {
    font-weight: normal;
    margin-top: 7px;
    display: block;
    color: #000 !important;
}

.main-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-offer-box .shop-product-tax span {
    color: var(--color-secondary);
}

.shop-product-offer-box .shop-product-tax {
    margin-top: 20px;
    font-weight: 700;
}

.shop-product-offer-box .text table {
    margin-top: 0;
    margin-left: 1px;
    margin-right: 1px;
}

.shop-product-variant-table-row img {
    max-width: 60px;
}

.shop-product-variant-table {

}

.shop-product-variant-table-row.active {
    border: red solid 2px;
}

.modal-content .product-name,
.basket-table .product-name {
    text-align: left !important;
    height: initial;
}

.basket-table .product-name .title {
    transition: color 0.3s;
}

.basket-table .product-name .title:hover {
    color: var(--color-secondary);
}

.shop-product-size-table table {
    width: 100%;
}

.shop-product-size-table table thead td {
    font-size: 13px;
    line-height: 1.2;
}

.shop-product-size-table table td {
    vertical-align: middle;
    text-align: center !important;
    padding: 6px;
}

.shop-product-size-table .shop-quantity-box input.input-qty {
    width: 110px;
    margin: 0 auto;
}

.shop-product-size-table .input-counter {
    display: block;
}

.shop-product-size-table .add-variant-to-basket-wrapper {
    display: flex;
    justify-content: center;
}

.modal-content .top-box-product .price-box .price-net,
.modal-content .top-box-product .price-box .price-gross {
    justify-content: flex-start;
}

.caption-unit {
    position: absolute;
    top: 4px;
    right: 35px;
}

.btn-row.row-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-25) 0;
}

.btn-row.row-flex .btn + .btn {
    margin-left: var(--space-25);
}

.icon-wrapper {
    display: block;
    width: 40px;
    height: 40px;
    padding: 5px 0;
}

.icon-wrapper svg *,
.icon-wrapper svg {
    fill: currentColor;
}

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

}

.text-wrapper .icon-wrapper {
    width: 100px;
    height: 100px;
}

.own-brands-info {
    margin-bottom: 15px;
}

.own-brands-info .dashboard-bottom-text {
    border-radius: var(--shop-radius-default);
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-spec-download-wrapper {
    width: 100%;
    text-align: left;
    padding-bottom: var(--space-50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.grammages-title {
    font-weight: 700;
}

.grammages-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.grammages-item {
    width: 33.3333%;
    padding: 5px;
}

.grammages-item-inner {
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.grammages-item-inner.variant-photo-change.active {
    border-color: #f00;
}

.variant-photo-change {
    cursor: pointer;
}

.grammages-image {
    width: 55%;
}

.grammages-box + .grammages-box {
    margin-top: calc(var(--space-25) + 4px);
    margin-bottom: 2px;
}

.grammages-title {
    margin-bottom: 8px;
}

.grammages-box:first-of-type {
    margin-top: -5px;
}

.product-description-list-title .title-left .amount {
    display: block;
    margin-left: 5px;
    color: var(--color-secondary);
}

.product-page-bottom .btn-row {
    display: flex;
    justify-content: center;
}

.product-list-b2b {
    width: 100%;
    margin-bottom: calc(var(--space-40) - 5px);
}

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

.product-list-b2b-header {
    display: flex;
    margin: -1px;
}

/*.multiadd-wrapper{*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

.multiadd-text {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.multiadd-wrapper .btn {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}

.product-list-b2b-header > div {
    background-color: #686868;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 0;
    text-align: center;
}

.product-list-b2b-header .product-list-b2b-name {
    text-align: left;
    padding-left: calc(var(--space-25) + 4px);
}

.product-list-b2b-header .product-list-b2b-variants {
    text-align: left;
}

.product-list-b2b-image {
    width: 9%;
    padding: 10px 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.product-list-b2b .product-image {
    width: 80px;
    margin: 0 auto;
    padding-bottom: 0;
}

.shop-product-list-b2b {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.product-list-b2b-item {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.product-list-b2b-item > div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 900;
}

.product-list-b2b-name {
    width: 26%;
    padding: 14px calc(var(--space-25) + 4px);
    justify-content: center !important;
    align-items: flex-start !important;
    flex-direction: column;
}

.product-list-b2b-name .product-name {
    font-weight: 400;
    text-align: left;
    font-size: 16px;
    height: initial;
}

.product-list-b2b-name .product-name a {
    transition: color 0.3s;
}

@media screen and (min-width: 1140px) {
    .product-list-b2b-name .product-name a:hover {
        color: var(--color-secondary) !important;
    }
}

.product-list-b2b-tax-rate {
    width: 10%;
    font-weight: 400 !important;
}

.product-list-b2b-price {
    width: 10%;
}

.product-list-b2b-variants {
    width: 45%;
    justify-content: space-between !important;
    padding-left: 20px !important;
    padding-right: calc(var(--space-25) + 6px);
}

.variant-item-more {
    cursor: pointer;
    width: 123px;
    border-radius: 23px;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) and (hover) {
    .variant-item-more:hover {
        background-color: #686868;
        color: #fff;
    }
}

.product-list-b2b-variants .product-weights-variants {
    padding-top: 0;
    flex-grow: 1;
    justify-content: flex-start !important;
    padding-right: calc(var(--space-25) + 9px);
}

.product-bottom-b2b {
    box-shadow: 3px 4px 9px 1px rgba(23, 23, 21, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.product-bottom-b2b table {
    margin: 0;
}

.product-bottom-b2b table td {
    border: none;
}

.product-bottom-b2b table tbody td {
    height: 70px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-list-b2b-more .btn {
    border-radius: 23px;
    min-width: 143px;
    height: 40px;
}

.product-bottom-b2b .shop-quantity-box input.input-qty {
    width: 55px;
}

.product-bottom-b2b .shop-product-size-table thead tr td {
    background-color: #d3d3d3;
    color: #000;
}

.product-list-b2b-badges {
    margin-top: 4px;
}

.product-list-b2b-badge {
    font-size: 11px;
    font-weight: 400;
    padding: 3px 14px;
}

.product-list-b2b-variants .variant-item-more {
    margin-left: auto;
}

.variant-item-last {
    margin-right: 10px;
}

.product-bottom-b2b .shop-product-size-table .input-counter {
    width: 170px;
    margin: 0 auto;
}

.product-page-heading .shop-product-variants {
    margin-top: var(--space-40);
}

.grammages-text {
    padding: 0 5px;
    text-align: center;
}

.add-to-favs-button .product-addFav {
    border: 2px solid #ababab;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    padding: 4px 26px 3px;
    display: block;
    background: #fff;
    color: #434343;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.add-to-favs-button .product-addFav .icon {
    width: 36px;
    height: 36px;
    display: inline-block;
    vertical-align: middle;
    margin: -8px -6px -4px 4px;
}

.add-to-favs-button .product-addFav .icon.fill svg,
.add-to-favs-button .product-addFav .icon.fill svg path {
    fill: var(--primary) !important;
}

.favorite-list .basket-table td.product-info-box {
    width: initial;
}

.add-to-favs-button {
    margin-top: 15px;
    display: inline-flex;
}

.alert-info {
    background-color: #686868;
    border-color: #505050;
    color: #fff;
}

.alert-info .close {
    text-shadow: none;
    color: #fff;
    opacity: 0.6;
}

.alert-info .close:hover {
    opacity: 0.9;
}

.product-bottom-content {
    height: 125px;
}

.product-description-list-content .text {
    text-align: justify;
}

.shop-product-size-table .table-responsive {
    overflow-x: initial;
}

.btn-select-delivery {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary) !important;
    bottom: 4px;
}

@media screen and (min-width: 1140px) {
    .btn-select-delivery:hover {
        border-color: var(--color-secondary);
        color: var(--color-secondary) !important;
    }
}

.variant-item-more .caption-less {
    display: none;
}

.variant-item-more.active .caption-less {
    display: block;
}

.variant-item-more.active .caption-more {
    display: none;
}

.basket-remove-item {
    display: block !important;
    margin: 0 auto;
}

.remove-column label {
    margin: 4px 0;
    margin-top: 8px;
    font-size: 13px;
    display: block;
}

.top-box-product .product-name {
    height: initial;
}

.basket-summary .top-box-product .product-name {
    text-align: left;
}

.header-top-right .btn-link i {
    margin-bottom: 4px;
    margin-left: 8px;
    font-size: 13px;
}

.caption-user {
    line-height: 1.4 !important;
    text-align: center !important;
}

.caption-small {
    font-size: 11px;
}

.user-logged .header-top-right .btn-link .icon {
    width: 36px;
    height: 36px;
    margin-right: 2px;
}

.user-logged .header-top-right .btn-www .icon {
    margin: -17px;
    width: 72px;
    height: 72px;
}

.btn-favs .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    background-color: #686868;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.btn-favs .icon-wrapper .icon {
    color: #fff;
    width: 38px;
    height: 38px;
}

header .btn-favs .icon-wrapper {
    border: 2px solid #686868;
    background-color: #fff;
}

header .btn-favs .icon-wrapper .icon {
    color: #686868;
}

.user-logged .header-bottom-right {
    justify-content: flex-end;
}

.btn-dashboard {
    padding-right: 0 !important;
}

.btn-dashboard .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    border: 2px solid #686868;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.btn-dashboard .icon-wrapper .icon {
    width: 39px;
    height: 39px;
}

.btn-dashboard .icon-wrapper {
    color: #686868;
}

.user-logged {
    padding-bottom: 8px;
}

.header-b2b .logo-min {
    margin: 5px 0 0 15px;
}

.header-b2b .logo {
    padding-left: 108px;
    padding-top: 5px;
}

.header-b2b .header-bottom-right {
    padding-top: 3px;
}

.header-b2b .mainsearch {
    padding-top: 10px;
    padding-bottom: 5px;
}

.header-wrapper {
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.header-bottom-b2b {
    background-color: #000;
    position: relative;
    margin-top: 0;
    transition: margin-top 0.4s;
}

header.sticky.rollup .header-bottom-b2b {
    margin-top: -80px;
}

/*.header-bottom-b2b #main-menu {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin: -10px;*/
/*}*/

/*.header-bottom-b2b #main-menu li {*/
/*    padding: 10px;*/
/*}*/

.header-bottom-b2b #main-menu > ul > li > a {
    color: #fff;
    font-weight: 700;
    transition: color 0.3s;
    padding: 19px 0;
    max-width: 266px;
}

/*.header-bottom-b2b #main-menu li.active > a{*/
/*    color: var(--color-secondary);*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*    .header-bottom-b2b #main-menu li > a:hover {*/
/*        color: var(--color-secondary);*/
/*    }*/
/*}*/

.header-delivery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
    border-radius: 23px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 22px;
    margin-right: 50px;
}

.header-delivery .btn {
    border-color: #93bf1b;
    border-width: 2px;
    text-transform: uppercase;
    font-weight: 700;
    min-width: 128px;
}

.top-box-basket-container {
    margin-left: 50px;
}

@media screen and (min-width: 1140px) {
    .header-delivery .btn:hover {
        border-color: #93bf1b;
        background-color: #93bf1b;
        color: #fff;
    }

    .header-bottom-b2b #main-menu > ul > li > a:hover {
        color: var(--color-secondary);
    }
}

.header-deliver-left {
    display: flex;
    align-items: center;
    margin-right: calc(var(--space-60) + 5px);
}

.header-deliver-left .icon {
    width: 29px;
    height: 29px;
    margin-left: 14px;
    flex-shrink: 0;
}

.page-b2b #content {
    padding-top: 188px;
}

.list-link-inner .iradio {
    width: 25px;
    height: 25px;
}

.rwd-only {
    display: none;
}

.rwd-menu-item {
    display: none;
}

tr.order-row {
    cursor: pointer;
    transition: color 0.3s;
}


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

    .header-item-wrapper.top-box-container .top-box-submenu .btn.btn-link:hover {
        background: #808080;
        color: var(--shop-primaryText);
        text-decoration: none;
    }

    .header-item-wrapper.top-box-container .top-box-submenu .btn.btn-link:hover .caption {
        color: var(--shop-primaryText);
    }


    tr.order-row:hover {
        color: var(--color-secondary);
    }
}


.multidelete {
    margin-left: 10px;
}

#logistic-box {
    width: 568px;
}


.tiles-dashboard .tile-right table tbody tr.no-border td {
    border: 0;
}

header .shop-itemsTotalWeight {
    font-weight: 700;
    font-size: 15px;
    text-transform: initial;
}

.rwdMenu .shop-itemsTotalWeight {
    font-weight: 400;
    font-size: 17px;
}

.rwd-basket .shop-basket-quantity {
    display: flex !important;
    margin-left: 10px !important;
}

.rwd-basket .basket-caption {
    display: flex !important;
    align-items: center;
}

.top-box .form .form-element-name {
    width: 100%;
    text-align: left;
    color: #000;
}

.top-box .form .forgot-password {
    color: #000;
}

.top-box .form .forgot-password a:hover {
    color: var(--color-secondary);
}

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

.top-box-buttons .btn {
    display: flex;
    align-items: center;
}

.list-link-nameType {
    display: inline-block;
}

.list-link-content .list-icon {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
}

.list-link-teaser {
    display: inline;
}

.modal-footer .btn.btn-default.pull-left {
    border-color: #93bf1b;
    color: #93bf1b;
    background-color: #fff;
    border-width: 2px;
    font-weight: 700;
}

.modal-footer .btn.btn-primary {
    border-color: #93bf1b;
    background-color: #93bf1b;
    border-width: 2px;
    font-weight: 700;
}

@media screen and (min-width: 1140px) {
    .modal-footer .btn.btn-default.pull-left:hover {
        background-color: #93bf1b;
        color: #fff;
    }

    .modal-footer .btn.btn-primary:hover {
        background-color: #fff;
        color: #93bf1b;
    }
}

.btn-green-transparent,
.btn-green {
    border-width: 2px;
    font-weight: 700;
}

.shop-basket-summary .alert {
    margin-top: 28px;
}

.btn-pdf {
    padding-left: 0;
}

.btn-dashboard .icon-wrapper i {
    font-size: 20px;
}

.order-history-container .own-brands-info {
    margin-bottom: 20px;
}

.basket-coupon-box .form-control {
    border-radius: 6px;
}

.faq-list {
    margin-bottom: calc(var(--space-50) - 3px);
}

.faq:last-of-type {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    padding-left: 20px;
    color: #000;
    transition: color 0.3s, background-color 0.3s;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.faq-name {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 10px;
}

.faq-toggle {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #000;
    transition: background-color 0.3s, border-color 0.3s;
    flex-shrink: 0;
}

.faq-toggle .icon {
    width: 35px;
    height: 35px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: transform 0.3s;
}

.faq-content {
    padding: calc(var(--space-25) - 3px) var(--space-50);
    display: none;
}

.faq-content .text {
    word-break: break-word;
}

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

.faq-header.active .faq-toggle {
    color: #fff;
}

.faq-header .faq-toggle i {
    transition: transform 0.3s;
}

.faq-header.active .faq-toggle .icon {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

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

    .faq-header:hover .faq-toggle {
        color: #fff;
    }
}

.see-more-slider > div {
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.see-more-item {
    padding: 5px;
    width: 25%;
    display: flex;
}

.see-more-item-inner {
    display: flex;
    min-height: 46px;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px calc(var(--space-25) - 1px);
    flex-grow: 1;
    position: relative;
    background-color: #fff;
    transition: all 0.4s;
}

.see-more-item-inner img {
    max-width: 100%;
    max-height: 50px;
}

.see-more-image {
    width: 30%;
}

.see-more-image + .caption {
    text-align: left;
    padding-left: 12px;
}

.see-more-item-inner .caption {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    transition: color 0.3s;
    width: 70%;
}

.see-more-item-inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 31px;
    height: 31px;
    border-right: 2px solid var(--color-default);
    border-bottom: 2px solid var(--color-default);
    opacity: 0;
    transition: opacity 0.4s;
}

.see-more-item-inner.active .caption {
    color: var(--color-default);
}

.see-more-item-inner.active {
    border-color: #fff;
    box-shadow: 3px 4px 5px rgb(17 18 17 / 15%);
}

.see-more-item-inner.active::after {
    opacity: 1;
}

.toggle-more {
    display: none;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    min-width: 291px;
    justify-content: space-between;
}

.toggle-more i {
    font-size: 12px;
    margin-left: 8px;
}

.toggle-more.active .category-open {
    display: none;
}

.toggle-more.active .category-close {
    display: block;
}

.toggle-more .animIcon {
    margin-right: 15px;
    width: 21px;
}

.category-close {
    display: none;
}

@media screen and  (min-width: 1140px) {
    .see-more-item-inner:hover .caption {
        color: var(--color-default);
    }

    .see-more-item-inner:hover {
        border-color: #fff;
        box-shadow: 3px 4px 5px rgb(17 18 17 / 15%);
    }

    .see-more-item-inner:hover::after {
        opacity: 1;
    }
}

.product-page-heading-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.product-sku {
    margin-right: 12px;
}

.product-page-heading-info .add-to-favs.pull-left {
    float: none !important;
}

.product-page-heading-info .add-to-favs-button {
    margin-top: 0;
}

.caption.caption-user .caption-user-contractor {
    font-weight: bold;
}

.popup-select-contractor .panel-body {
    padding: 15px 0;
}

.popup-select-contractor .select2-container .select2-selection--single {
    height: 50px;
    border-radius: 26px;
}

.popup-select-contractor .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 25px;
    padding-right: 30px;
}

.popup-select-contractor .select2-container--default .select2-selection__arrow:after {
    position: absolute;
    color: #000;
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
    right: 15px;
    width: 30px;
    text-align: center;
    top: 52%;
    border: none;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all 0.4s;
}

.popup-select-contractor .select2-container--default.select2-container--open .select2-selection__arrow:after {
    -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);
}

.popup-select-contractor .select2-selection__arrow b {
    display: none;
}


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

.news-list {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
}

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

.news {
    width: 50%;
    padding: 8px;
}

.news-inner {
    border: 1px solid rgba(29, 28, 25, 0.1);
    display: flex;
    align-items: center;
    height: 100%;
}

.news-image {
    width: 43%;
}

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

.news-content {
    width: 57%;
    padding: var(--space-25) 0;
    padding-left: var(--space-40);
    padding-right: calc(var(--space-25) + 5px);
}

.news-page .news-content {
    width: initial;
}

.news-content-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.news-starred {
    display: flex;
    align-items: center;
    background-color: var(--color-secondary);
    color: #fff;
    position: absolute;
    top: -10px;
    left: -30px;
    padding: 4px 12px;
    font-size: 13px;
}

.news-starred i {
    margin-right: 5px;
}

.news-content-wrapper .news-info {
    flex-shrink: 0;
}

.news-date {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: calc(var(--space-25) + 3px);
}

.news-date .icon {
    width: 30px;
    height: 30px;
    margin: -7px;
    margin-right: 12px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3333;
    margin-bottom: calc(var(--space-25) - 2px);
    transition: color 0.3s;
}

.read-more {
    font-weight: 700;
    transition: color 0.3s;
    text-transform: lowercase;
    cursor: pointer;
    text-decoration: none !important;
}

@media screen and (min-width: 1140px) {
    .news-title:hover {
        color: var(--color-secondary);
    }

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

.news-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7333;
}

.news-text-inner {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.news-page .news {
    width: 100%;
}

.news-page .news-image {
    width: initial;
    margin-right: var(--space-50);
    flex-shrink: 0;
}

.news-page .news-content {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0;
    padding-bottom: 0;
    margin: var(--space-25) 0;
    margin-left: var(--space-50);
}

.news-list .alert {
    width: 100%;
    margin: 8px;
}

/*ASIDE*/

.asidedPage {
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: var(--space-60);
}

.aside {
    width: 310px;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 800;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
}

header.sticky + #content .aside {
    top: 112px;
}

.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: 185px;
    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: var(--space-60);
    width: calc(100% - 310px);
    margin-bottom: calc(var(--space-60) + 5px);
}

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

.aside-title {
    font-size: var(--font-30);
    font-weight: 800;
    color: #000;
}

.aside-categories {
    margin-bottom: 40px;
}


.aside #filter-form {
    display: flex;
    margin-bottom: 22px;
}

.aside #filter-form .form-element-text-container {
    flex-grow: 1;
}

.aside #filter-form .form-control {
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.aside-categories a {
    display: block;
    color: #000;
    font-size: 15px;
    line-height: 50px;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: background-color 0.3s;
    padding-left: calc(var(--space-25) - 5px);
}

.aside-categories a.active {
    background-color: #000;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .aside-categories a:hover {
        background-color: #000;
        color: #fff;
    }
}

.title-big {
    font-weight: 700;
}

.asidedPage-content .section-heading,
.news-page .section-heading {
    padding-top: 0;
    padding-bottom: calc(var(--space-50) - 5px);
}

.asidedPage-content .section-heading .section-title,
.news-page .section-heading .section-title {
    font-size: var(--font-40);
    font-weight: 800;
    text-align: center;
    line-height: 1.22;
    color: #000;
}

.asidedPage-content .section-heading + .text {
    margin-bottom: calc(var(--space-50) - 5px);
}

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

.news-page .related-products {
    margin-bottom: var(--space-50);
}

.news-page .related-products .section-title {
    margin-bottom: 15px;
}

.news-page {
    margin-top: var(--space-60);
}

.article-contents ol {
    padding-top: 10px;
}

.article-contents ol li {
    left: 34px;
}

.page-heading-custom .breadcrumb-container,
.news-page .breadcrumb-container {
    margin-top: 0;
}

.news-breadcrumbs .breadcrumb-container {
    margin-bottom: 0;
}

.shop-method-icon {
    display: none;
}

.product-bottom-b2b .shop-product-size-table thead tr.repeat-product-row td {
    background: #f3f3f3;
    font-weight: bold;
    padding: 12px 0;
}

.userpanel-container .product-bottom-b2b table > *:first-child > tr > *:first-child,
.userpanel-container .product-bottom-b2b table > *:first-child > tr > *:last-child {
    border-radius: 0;
}

.product-bottom-b2b .shop-product-size-table svg {
    max-height: 30px;
}

.modal .listContainer {
    position: relative;
    min-height: 80px;
}

.modal .listContainer .modal-loader {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    background: #f1f1f1;
}

.modal .listContainer .modal-loader img {
    max-height: 100px;
}

.order-top {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.order-top.place-right {
    justify-content: flex-end;
}

.product-margin {
    font-size: 14px;
}

.purchase-price {
    font-style: italic;
    font-weight: 400;
    color: #aaa;
    font-size: 14px;
}

.purchase-price.stock-info {
    font-size: 13px;
}

.userpanel-container .form-search .form-elements {
    margin-bottom: 0;
    display: flex;
    width: initial;
    gap: 12px;
}

.userpanel-container .form-search #search-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.userpanel-container .form-search {
    margin-bottom: var(--space-40);
    margin-top: 15px;
}

.userpanel-container .form-search .select2-container .select2-selection--single {
    height: 46px;
    border-radius: 12px;
    min-width: 219px;
}

.userpanel-container .form-search .form-control-text {
    width: 320px;
}

.userpanel-container .form-search .select2-selection__arrow::before {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.userpanel-container .form-search .select2-selection__arrow b {
    display: none;
}

.product-bottom-b2b + .product-bottom-b2b {
    margin-top: 25px;
}

footer {
    position: relative;
}

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

footer .footer-bg {
    inset: 0;
    position: absolute;
}

footer .footer-bg:before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.68);
    inset: 0;
}

footer .footer-main {
    position: relative;
    z-index: 1;
}

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

footer .footer-bar {
    position: relative;
    z-index: 1;
    padding: 0;
    background-color: transparent;
}

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

.footer-cols-inner {
    display: flex;
    max-width: 1050px;
    justify-content: space-between;
    flex-grow: 1;
}

.footer-col-4 {
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-col-4 .footer-col-content {
    padding-top: 0;
}

.footer-col-4 .footer-col-content img {
    max-width: 260px;
}

footer .social-icon {
    border-radius: 6px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}

footer .social-list > ul > li {
    padding: 9px;
}

.footer-col-2 .footer-col-content ul {
    margin-top: var(--space-25);
}

.footer-col-2 .footer-col-content .phone a, .footer-col-2 .footer-col-content .whatsapp a, .footer-col-2 .footer-col-content .email a {
    padding-left: 0;
}

@media screen and (max-width: 1139px) {
    .footer-cols-inner {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        width: 50%;
    }

    .footer-cols {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .footer-col-4 {
        justify-content: center;
        align-items: center;
        pointer-events: none;
    }
}


@media screen and (max-width: 560px) {
    .footer-cols-inner {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        width: 100%;
    }

    .footer-cols {
        flex-direction: column-reverse !important;
        justify-content: center !important;
        align-items: center !important;
        gap: var(--space-40);
    }

    .footer-col-4 {
        justify-content: center;
        align-items: center;
        pointer-events: none;
    }
}

.address_other .form-group {
    margin-bottom: 0 !important;
}

.address_other .checkboxradio-container .form-element-option-text {
    font-weight: 700;
    font-size: 16px;
}

.register-form-container .dashboard-list .row h4 {
    margin-bottom: 15px;
}

.register-form-container .dashboard-list .show-selected + .row,
.register-form-container .dashboard-list .show-selected-title {
    margin-top: 30px;
}

.register-form-container .dashboard-list > ul:not(.list-short) li + li {
    margin-top: 16px;
}

.register-form-container .form-element-captcha-container {
    margin-top: var(--space-25);
}

.register-form-container .dashboard-list {
    width: 75%;
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .register-form-container .dashboard-list {
        width: 100%;
    }
}
