/******************************************************************************/

:root {
    /* KOLORY */
    --primary-color: #EA2D1E;
    --secondary-color: #9FC818;
    --darkred-color:#CC180F;
    --text-dark:#000000;
    --text-medium:#626262;
    --text-light:#AEAEAE;
    --text-white:#FFFFFF;
    --text-input:#7E7E7E;
    --background-white:#FFFFFF;
    /* FONTY */
    --font-50:5rem;
    --font-25:2.5rem;
    --font-20:2rem;
    --font-16:1.6rem;
}

.color-primary{
    color:var(--primary-color);
}
.color-red {
    color:var(--darkred-color);
}
.color-pink {
    color:#F9789C;
}
.color-green {
    color:#9FC818;
}
.color-purple {
    color:#8A409B;
}

/******************************************************************************/
/*
 * Fonty
*/

.font-50{
    font-size:var(--font-50);
}
.font-25{
    font-size:var(--font-25);
}
.font-20{
    font-size:var(--font-20);
}
.font-16{
    font-size:var(--font-16);
}

/******************************************************************************/
.qtip{
    margin-left:-6.5rem;
}
/******************************************************************************/

/*
 * Form
 */
.form {
    margin: 0 auto;
    max-width: 100rem;
}
form .ibs {
    margin-bottom: 1rem;
}

/******************************************************************************/

/*
 * Input
 */
.input[type="number"]::-webkit-outer-spin-button,
.input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input[type=number] {
  -moz-appearance: textfield;
}
.input {
    background: #fff;
    border: 1px solid #888;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    clear: both;
    display: inline-block;
    font-size: 2.4rem;
    line-height: 3.6rem;
    max-width: 100%;
    outline: none;
    padding: 0.4rem 2rem;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
    width: 22rem;

    border-radius: 2rem;
    font-size: 1.6rem;
    border-color: #E9E9E9;
}
.input--short {
    text-align: center;
    width: 7rem;
}
.input--long {
    width: 35rem;
}
.input--full {
    max-width: none;
    width: 100%;
}

.input:hover {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.33);
}
.input:focus {
    border-color: #000 !important;
}

.lbl.-focus .input {
    border-color: #000;
    border-color: #ddd;
}
.lbl:focus-within .input,
.lbl:has(:focus) .input {
    border-color: var(--quaternary);
}

.input:disabled,
.input[disabled],
.input[readonly] {
    opacity: 0.5;
    pointer-events: none;
}

.input--invalid {
    border-color: #d47171;
}

.input-input {
    margin-left: -100%;
    opacity: 0;
    position: absolute;
    width: 0;
    z-index: -1;
}

.input-txt {
    display: block;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.input-txt::before {
    content: '\0000a0';
}

/*
* Input text
*/
.input--text {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
.input--text::-webkit-inner-spin-button,
.input--text::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*
 * Input number
 */
.input--number {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    text-align: center;
    width: 5.5rem;
}
.input--number::-webkit-inner-spin-button,
.input--number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*
 * Textarea
 */
.input--textarea {
    padding:2rem 3rem;
    font-size: 1.8rem;
    line-height: 3rem;
    width: 100%;
}
.input--textarea--medium {
    height: 20rem;
}
.input--textarea--large {
    height: 40rem;
}

/*
 * Select
 */
.input--select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-attachment: scroll;
    background-image: url('../images/select.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 3rem auto;
    min-width: 15rem;
    outline: medium none !important;
    padding: 0.4rem 4.4rem 0.4rem 0.9rem;
    text-overflow: '';
    z-index: 1;
}
select::-ms-expand {
    display: none;
}
.select--full {
    width: 98%;
}
body div.static,
body span.static,
body .static{
    position: static;
}

/*
* Input tile
*/
.input--tile {
    border-width: 1px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-height: 100%;
    overflow: visible;
    padding: 1rem;
    position: relative;
    text-align: center;
    width: 100%;
}
.input--tile:has(input:checked) {
    -webkit-box-shadow: inset 0 0 0 3px var(--quaternary);
    -moz-box-shadow: inset 0 0 0 3px var(--quaternary);
    box-shadow: inset 0 0 0 3px var(--quaternary);
}

.input--tile .input-image {
    display: block;
    margin: 0.5em auto;
    padding: 3.5rem 0 0;
    position: relative;
}

.input--tile .input-img {
}

.input--tile .input-name {
    font-weight: bolder;
    margin: 0.3em auto;
}

.input--tile .input-hint {
    font-size: 0.8em;
    margin: 0.3em;
}

.input--tile .input-hint span {
    white-space: nowrap;
}
.input--tile:has(input:checked) .input-hint span {
    color: var(--quaternary);
    font-size: 1.25em;
    font-weight: bolder;
    white-space: nowrap;
}

.input--tile:has(input:checked) {
    border-color:var(--darkred-color);
    outline:0.2rem solid var(--darkred-color);
}

.input.input--tile .badge {
    position: absolute;
    background:white;
    border-radius:5rem;
    border:0.2rem solid var(--darkred-color);
    color:var(--darkred-color);
    box-shadow:0 2px 2px 2px rgba(0,0,0,0.15);
    padding:0 1rem;
    top:-2.5rem;
    left:0;
    right:0;
    margin:auto;
    font-weight:600;
    text-transform:uppercase;
    font-size:1.1rem;
    letter-spacing:0.11rem;
}

/*
 * Input checkbox, Input radio
 */
.input--checkbox,
.input--radio {
    background: none;
    border-width: 0;
    cursor: pointer;
    display: inline-block;
    height: 2.4rem;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    width: 2.4rem;
}
span.input.input--checkbox {
    width:2.5rem;
    height:2.5rem;
    border-radius:1rem;
    display:block;
    padding:0;
}
.input-i {
    background: #fff;
    /* border: inherit; */
    border-width: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #E7E7E7;
    border-radius: 1rem;
}
.input-input:checked + .input-i {
    background: #f5f5f5;
    border-color: #000;
}
.input-i::before {
    background: #282828;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    bottom: -50%;
    content: '';
    display: block;
    left: -50%;
    position: absolute;
    right: -50%;
    top: -50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.input--checkbox .input-input:checked + .input-i::before {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.input--checkbox .input-i::after {
    background: none;
    border-bottom: 0.2rem solid rgba(255, 255, 255, 1);
    border-right: 0.2rem solid rgba(255, 255, 255, 1);
    bottom: 50%;
    content: '';
    height: 0;
    left: 15%;
    opacity: 0;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    -moz-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    -o-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    -moz-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    -o-transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    transition: all 0.2s ease-out 0.1s, height 0.1s ease-in 0s;
    width: 0;
}
.input--checkbox .input-input:checked + .input-i::after {
    height: 60%;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    -moz-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    -o-transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    transition: all 0.2s ease-in 0s, height 0.2s ease-out 0.2s;
    width: 35%;
}

.input--radio,
.input--radio .input-i,
.input--radio .input-i::before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.input--radio .input-input:checked + .input-i::before {
    -webkit-transform: scale(0.35);
    -moz-transform: scale(0.35);
    -ms-transform: scale(0.35);
    -o-transform: scale(0.35);
    transform: scale(0.35);
}

/******************************************************************************/

/*
 * Button
 */
.button {
    background: #bbb;
    border: 1px solid #888;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2.4rem;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem 5rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    z-index: 3;
    border-radius: 5rem;
    font-size: 1.4rem;
}
.button--large {
    font-size: 1.4rem;
    padding: 1.3rem 1.8rem;
}
.button--big{
    font-size: 2rem;
}
.button--biger {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    padding: 1.6rem 1rem;
}
.button--full {
    width: 100%;
}
.button:hover,
a:hover .button {
    background: #ddd;
    border-color: #888;
    color: #000;
    text-decoration: none;
}
.button:active {
    background: #e1e1e1;
    border-color: #666;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
}


.button--light,
.button.button--light,
.header-content form .button.button--light{
    background-color: #F3F3F3;
    color:var(--text-dark);
    border-color:#F3F3F3;;
    font-weight: bold;
    font-size:1.9rem;
    display: flex;
    align-items: center;
}

.button--primary,
.button.button--primary,
.header-content form .button.button--primary{
    background-color: var(--primary-color);
    color:var(--text-white);
    border-color:var(--primary-color);
    font-weight: bold;
}

.button.button--primary:hover{
    background-color: var(--darkred-color);
}

.button--secondary,
.button.button--secondary {
    background-color: var(--secondary-color);
    color:var(--text-white);
    border-color:var(--secondary-color);
    font-weight: normal;
}

.button--black,
.button.button--black {
    background-color:#000;
    color:var(--text-white);
    border-color:#000;
    font-weight: bold;
}

.button--black:hover,
.button.button--black:hover{
    background-color:var(--primary-color);
    border-color:var(--primary-color);
    color:var(--text-white);
}

.button-small {
    font-size: 75%;
    font-weight: lighter;
}

button:active,
button:focus {
    background-image: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

/*
 * Button Remove
 */
.button--remove {
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    font-size: 0.000001rem;
    height: 2.8rem;
    margin: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding: 0;
    position: relative;
    width: 2.8rem;
}
.button--remove::before,
.button--remove::after {
    background: none;
    border-style: solid;
    border-width: 1px;
    bottom: 0;
    content: '';
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    width: 50%;
}
.button--remove::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.button--remove::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*
 * Button Attach
 */
.button--attach,
.button--attach:hover {
    background: #fff;
    border: 0;
    display: block;
    height: 2.2rem;
    margin: auto;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding: 0;
    position: relative;
    width: 2.2rem;
}
.button--attach::before {
    background: url('../images/icons/button--attach.svg') no-repeat center;
    background-size: auto 100%;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0.75;
    position: absolute;
    right: 0;
    top: 0;
}
.button--attach:hover::before {
    opacity: 1;
}

/*
 * Button Password
 */
.button--password,
.button--password:hover {
    background: #fff;
    border: 0;
    max-height: none;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    width: 5rem;
}
.button--password::before {
    background: url('../images/icons/button--password.svg') no-repeat center;
    background-size: auto 100%;
    content: '\0000a0';
    display: block;
    opacity: 0.75;
}
.button--password:hover::before {
    opacity: 1;
}
.button--password::after {
    border: 1px solid #888;
    bottom: 0;
    content: '';
    display: none;
    height: 100%;
    left: 0;
    margin: auto;
    opacity: 0.75;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 0;
}
.input[type='text'] + .button--password::after {
    display: block;
}

/******************************************************************************/

/*
 * File
 */
.file {
    display: block;
    position: relative;
}
.input--file {
    overflow: hidden;
    position: relative;
}
.input--file .input-txt {
    margin-right: 3rem;
}
.file-button {
    position: absolute !important;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.file-button.button--attach,
.lbl.-focus .file-button.button--remove {
    display: block;
}
.lbl.-focus .file-button.button--attach,
.file-button.button--remove {
    display: none;
}

/******************************************************************************/

/*
 * Password
 */
.password {
    display: block;
    position: relative;
}
.password-button {
    position: absolute;
    right: 0.1rem;
    top: 0.1rem;
}
.password-button::before {
    height: 50%;
    position: relative;
    top: 25%;
}

/******************************************************************************/

/*
* Matches
*/
.matches {
    display: block;
    font-size: 0.9em;
    font-weight: normal;
    margin: 0.5em 0;
    position: relative;
}

.matches-item {
    display: block;
    margin: 0.1em 0;
    opacity: 0.75;
    padding: 0 0 0 1.5em;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.matches-item.-active {
    opacity: 1;
}

.matches-item::before,
.matches-item::after {
    background: red;
    content: '';
    height: 1em;
    left: 0.5em;
    margin: -0.5em auto auto 0;
    position: absolute;
    width: 2px;
    top: 50%;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.matches-item::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.matches-item::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.matches-item.-active::before,
.matches-item.-active::after {
    background: green;
}
.matches-item.-active::before {
    height: 0.5em;
    margin-top: 0;
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}
.matches-item.-active::after {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

/******************************************************************************/

/*
 * LBLs
 */
.lbl {
    display: block;
    line-height: 1.4;
    position: relative;
    text-align: left;
}
.lbl-name {
    /* color: #777;
    display: block;
    float: left;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5em;
    margin: -0.75em 0.5rem;
    overflow: hidden;
    padding: 0 0.5rem;
    pointer-events: none;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: translateY(2.3rem);
    -moz-transform: translateY(2.3rem);
    -ms-transform: translateY(2.3rem);
    -o-transform: translateY(2.3rem);
    transform: translateY(2.3rem);
    z-index: 1; */
    display:block;
    font-size:2.2rem;
    line-height:3rem;
    font-weight:500;
}
.lbl .input {
    font-size: 2rem;
    line-height: 3rem;
    padding: 1.6rem 2rem;
    border-color: #A1A1A1;
    margin-top:0.5rem;
}
.password-button{
    top:1.4rem;
    right:1rem;
}
/* .lbl.-focus .lbl-name,
.no-js .lbl-name {
    background: #fff;
    font-size: 1.4rem !important;
    -webkit-transform: translateY(0) !important;
    -moz-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important;
} */
.lbl input[type='text'],
.lbl input[type='password'],
.lbl input[type='email'],
.lbl .input--file,
.lbl textarea,
.lbl select {
    clear: both;
    width: 100%;
}
.lbl-aside {
    display: block;
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin: -2.4rem auto auto 3.6rem;
    position: relative;
}
.lbl-help {
    display: block;
    font-size: 1.4rem;
    opacity: 0.5;
    padding: 0.5rem 0;
}
.lbl-error {
    display: block;
    font-size: 1.5rem;
    line-height: 1.7rem;
    padding: 0.3rem 0 0;
}
.lbl--invalid,
.lbl--invalid .lbl-name,
.lbl--invalid .lbl-aside,
.lbl--invalid .lbl-help,
.lbl--invalid .lbl-error {
    color: #b72b2b !important;
}
.lbl--invalid .input,
.lbl--invalid .checkbox i {
    border-color: #b72b2b !important;
}
.lbl-title {
    display: block;
    font-size: 0.8em;
    font-weight: bolder;
    opacity: 0.4;
    padding: 0.75em 0 0.1em;
    text-transform: uppercase;
}
.lbl-value {
    display: block;
    padding: 0.1em 0 0.75em;
}

/******************************************************************************/

/* form actions */
.formActions {
    clear: both;
    display: block;
    margin: 1rem 0;
    padding: 0;
}
.formActions--center {
    padding-left: 0;
    text-align: center;
}
.formActions--sides {
    overflow: hidden;
    padding: 15px;
}
.formActions--sides-left {
    float: left;
}
.formActions--sides-right {
    float: right;
}

/******************************************************************************/

/*
 * Loading
 */
.loading {
    position: relative;
    z-index: 999;
    opacity:0.5;
}
.loading::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:red;
    top:0;
    left:0;
    z-index:999;
    background:white;
    opacity:0.8;
    transition: 0.2s;
}
.loading--full {
    background-color: #fff;
    bottom: 0;
    left: 0;
    filter: alpha(opacity = 80);
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
}
.loading-text {
    position: absolute;
    text-align: center;
    top: 51%;
    width: 100%;
}
.loading::after {
    -webkit-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    -moz-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    -o-animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    animation: spin 0.5s cubic-bezier(0.61, 0.28, 0.37, 0.82) infinite;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #282828;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index:999;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@-o-keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/******************************************************************************/

/*
 * Media element
 */
.media {
    display: block;
    margin: 0.8em 0;
    overflow: hidden;
}
.media-image {
    float: left;
    margin-right: 0.8em;
}
.media-content {
    margin: 0;
    overflow: hidden;
}
.media--triple,
.media--double {
    display: inline-block;
    margin: 0.8em 0.4%;
    vertical-align: top;
    width: 48.8%;
}
.media--triple {
    width: 32%;
}

.media2 {
    display: table;
    margin: 0.8em 0;
}
.media2-image,
.media2-content {
    display: table-cell;
    vertical-align: middle;
}
.media2-image {
    padding: 0 0.6em 0 0;
}
.media2-image--after {
    padding: 0 0.6em;
}
.media2--double {
    display: inline-block;
    margin: 0.4em 0.4% 0.8em;
    vertical-align: top;
    width: 48.9%;
}
.media2--inline {
    display: inline-block;
    margin: 0.8em 0.3em;
    vertical-align: middle;
}

/******************************************************************************/

/*
 * Table Grid
 */
.grid {
    display: table;
    width: 100%;
}
.grid--fixed {
    table-layout: fixed;
}
.grid-cell {
    display: table-cell;
    vertical-align: middle;
}
.grid-cell--tabloid {
    width: 1px;
}

/******************************************************************************/

/*
 * Dropdown
 */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    z-index: 500;
}

/******************************************************************************/

/*
 * Hint
 */
.hint {
    color: #999;
    font-size: 0.8em;
    line-height: 1.3em;
}

/******************************************************************************/

/*
 * Container
 */
.container {
    margin: 0 auto;
    max-width: 152rem;
    /* padding: 0 1rem; */
    position: relative;
}

.container .container {
    padding: 0;
}

.main.container{
    top: -1rem;
    overflow: auto;
}

.container-white{
    position:relative;
    background:white;
}
.container-white::before,
.container-white::after{
    content:'';
    position:absolute;
    height:100%;
    background:white;
    z-index:1;
    width:calc((100vw - 150rem) / 2);
    top:0;
}

.container-white::before{
    left:calc(-50vw + 75rem);
}

.container-white::after{
    right:calc(-50vw + 75rem);
}

/******************************************************************************/

/*
 * Left
 */
.leftBlock {
    display: table-cell;
    -webkit-flex: 3;
    -moz-flex: 3;
    -ms-flex: 3;
    flex: 3;
    min-width: 200px;
    padding-right: 20px;
    vertical-align: top;
    width: 200px;
    position: relative;
}

/******************************************************************************/

/*
 * Right
 */
.rightBlock {
    display: table-cell;
    min-width: 200px;
    padding-left: 20px;
    vertical-align: top;
    width: 200px;
}

/******************************************************************************/

/*
 * Content
 */
.content {
    display: block;
    vertical-align: top;

    overflow-wrap: break-word;
    word-wrap: break-word;
    /*
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    */
}
.content img {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
}
.content-noimg img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    max-width: none;
}
.content .dropdown-content {
    background: #fff;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    font-size: 1.4rem;
    min-width: 140px;
    padding: 5px 10px;
}

/******************************************************************************/

.scrollBody {
    left: 0;
    top: 0;
    position: relative;
}
.scroll .scrollBody {
    position: fixed;
    top: 0;
    max-height: 100% !important;
    overflow: hidden;
}
.scrollbottom {
    position: relative;
}

.scrollbottom .scrollBody {
    position: absolute !important;
}

/******************************************************************************/

/*
 * Breadcrumbs
 */
.breadcrumbs {
    z-index: 1;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    color: #B5B5B5;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    text-align: center;
    height: 2rem;
    padding-top: 2rem;
}
.breadcrumbs a,
.breadcrumbs b,
.breadcrumbs span {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs-inside{
    width: 100%;
}

/******************************************************************************/

/*
 * Swiper + Slider
 */
.swiper-container {
    height: 100%;
    overflow: hidden;
    width: 100%;
    max-width: 152rem;
}
.swiperGallery{
    height:80rem;
    overflow:hidden;
}
.swiper-slide {
    background: none;
    cursor: pointer;
    text-align: center;
    /* padding: 0 3rem; */
}
.product-gallery .swiper-slide{
    max-height: 18rem;
    max-width: 18rem;
    height: auto !important;
    width: auto;
    margin:0;
    padding:0;
}
.swiper-slide img{
    width: 100%;
}
.swiper-button-next,
.swiper-button-prev {
    background: none;
    border: 0;
    color: #888;
    font-size: 3.4rem;
    height: 4.4rem;
    line-height: 4.4rem;
    margin: -2.2rem 0.8rem 0;
    opacity: 0.85;
    text-align: center;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 4.4rem;
}
.swiperGallery .swiper-button-next,
.swiperGallery .swiper-button-prev {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 5;
    width: 100%;
    background: white;
}
.swiperGallery  .swiper-button-next{
    bottom: 0;
    top: unset;
}
.swiperGallery .swiper-button-prev {
    bottom: unset;
    top: 0;
}
.swiperGallery .swiper-button-next .icon,
.swiperGallery .swiper-button-prev .icon{
    transform: rotate(90deg);
}
.swiper-button-white {
    background-image: unset;
    background-color: #fff;
    border: 0.2rem solid #b3b3b3;
    color: #b3b3b3;
    display: grid;
    place-items: center;
}
.swiper-button-white:after {
    font-family: "icomoon" !important;
    font-size: 4rem;
    position: absolute;
}
.swiper-button-prev.swiper-button-white:after {
    content: "\e905";
}
.swiper-button-next.swiper-button-white:after {
    content: "\e906";
}
  
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #888;
    opacity: 1;
}
.swiper-button-prev {
    margin:0;
    left: calc(50vw - (152rem / 2) - 3rem);
    right: auto;
}
.swiper-button-next {
    margin:0;
    right:calc(50vw - (152rem / 2) - 3rem);
    /* left: auto; */
}
@media only screen and (max-width:1270px){
    .swiper-button-prev{
        left:0;
    }
    .swiper-button-next{
        right:0;
    }
}
.swiper-button-next .icon,
.swiper-button-prev .icon {
    line-height: 4.4rem;
}
.swiper-pagination {
    display: inline-block;
    opacity: 1;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: auto;
    top:-4.2rem;
}

.swiper-pagination-bullet {
    background: none;
    height: auto;
    margin: 0 0.6rem;
    min-width:2rem;
    min-height:2rem;
    opacity: 0.5;
    outline: none;
    position: relative;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    vertical-align: middle;
    width: auto;
    opacity:1;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-pagination-bullet::before {
    background: #888;
    border: #888;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    height: 2rem;
    left: 0;
    margin: -0.6rem 0 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    width: 2rem;
    background-color: white;
    margin-top:-1rem;
}
.swiper-pagination-bullet:hover::before,
.swiper-pagination-bullet-active::before {
    background: rgba(234, 45, 30, 0.8);
    border-color: rgba(234, 45, 30, 0.8);
}
.swiper-pagination-bullet-active::before{
    background-color: var(--primary-color);
}
.swiper-pagination-txt {
    color: #888;
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    margin: 0 5rem 0 2rem;
    max-width: 16rem;
    text-align: left;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.swiper-pagination-bullet:hover .swiper-pagination-txt,
.swiper-pagination-bullet-active .swiper-pagination-txt {
    color: inherit;
}

.swiper-conetnt {
    position: absolute;
    z-index: 1;
    text-align:start;
}
.swiper-conetnt .swiper-content-name {
    font-size:7rem;
    line-height:8.2rem;
    font-weight:700;
    white-space:pre-line;
}

.swiper-conetnt .swiper-content-text {
    font-size:2.6rem;
    line-height:3.7rem;
    font-weight:normal;
    white-space:pre-line;
    margin-top:1.6rem;
}
.swiper-conetnt .button {
    margin-top:3rem;
}

.slider {
    overflow: visible;
    position: relative;
    width: 100%;
}
.slider-slides {
    position: relative;
}
.slider-thumbs {
    position: relative;
}
.slider-container {
    left: 0;
    margin: 0 auto;
    max-width: 184rem;
    padding: 0 6rem;
    position: absolute;
    right: 0;
}
.slider-container--1 {
    bottom: 0;
    padding-bottom: 4rem;
    padding-top: 4rem;
    top: 0;
}
.slider-container--2 {
    top: 50%;
}
.slider-container--3 {
    bottom: 1.5rem;
    font-size: 0.000001rem;
    text-align: center;
}

.product-gallery.swiperGallery .swiper-wrapper{
    flex-direction: column !important;
}
@media (max-width: 1000px) {
    .breadcrumbs{
        padding: 5rem 0 2rem 0;
    }
    .breadcrumbs .breadcrumbs-inside{
        margin: auto;
    }
    .breadcrumbs.container-white .breadcrumbs-inside{
        width: calc(100% - 12rem);
    }
    .product-gallery.swiperGallery div.swiper-wrapper{
        flex-direction: row !important;
    }
    .product-gallery.swiperGallery {
        width: 100%;
        min-width: 100%;
        padding-top: 0;
        margin-right: 0;
        height: 18rem !important;
    }
    .product-gallery .swiper-slide {
        width: 100%;
        height: 18rem !important;
        display: grid;
        place-items: center;
    }
    .product-gallery .swiper-slide img {
        height: 100%;
        width: auto !important;
        display: block;
        min-height: 18rem;
    }
    .swiperGallery .swiper-button-prev,
    .swiperGallery .swiper-button-next{
        height:100%;
        width:5rem;
        align-items:center;
        display:grid;
        transform:rotateZ(180deg);
    }    
    .swiperGallery  .swiper-button-prev{
        bottom:0;
        right:unset;
    }
    .swiperGallery .swiper-button-next{
        top:0;
        left:unset;
    }
}
/******************************************************************************/

/*
 * Pagination
 */
.pagination {
    margin: 3em 0;
    text-align: center;
}
.pagination-info {
    color: #ccc;
    padding-bottom: 0;
}
.pagination .table {
    margin: 0 auto;
    width: auto;
}
.pagination .td:first-child {
    text-align: left;
}
.pagination .td:last-child {
    text-align: right;
}
.pagination-element {
    background: #ededed;
    color: #000;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin: 0.3rem;
    min-width: 4.6rem;
    padding: 1.2rem 0.3rem;
    position: relative;
    text-align: center;
    text-decoration: none;
}
.pagination-element--left,
.pagination-element--right {
    background-color: #000;
    color: #fff;
    padding: 1.3rem 3rem;
}
.pagination-element:hover {
    background-color: #ddd;
    color: #444;
    position: relative;
    text-decoration: none;
}
.pagination-element--active,
.pagination-element--active:hover {
    background: #666;
    color: #fff;
    font-weight: bold;
}
.pagination-element--disabled,
.pagination-element--disabled:hover {
    background-color: transparent;
    color: #ccc;
    font-weight: normal;
    pointer-events: none;
}

@media only screen and (max-width: 800px) {
    .pagination .table {
        display: block;
        padding: 6rem 0 0;
        position: relative;
    }
    .pagination .td {
        display: block;
    }
    .pagination .td:first-child {
        left: 0;
        position: absolute;
        top: 0;
        width: 48%;
    }
    .pagination .td:last-child {
        position: absolute;
        right: 0;
        top: 0;
        width: 48%;
    }

    .pagination-element--left,
    .pagination-element--right {
        width: auto;
    }
}

/******************************************************************************/

/*
 * Items
 */
.item {
    background: none;
    display: inline-block;
    margin: 0;
    padding: 5px 0 20px;
    text-align: center;
    vertical-align: top;
}
.item--2 {
    width: 49.5%;
}
.item--3 {
    width: 32.5%;
}
.item--4 {
    width: 24.5%;
}
.item--5 {
    width: 20%;
}

.item-image {
    display: block;
    height: 140px;
    line-height: 140px;
}
.item-image img {
    vertical-align: middle;
}

.item-name {
    display: block;
    font-weight: normal;
    line-height: 1.2em;
    margin: 0 auto;
    max-width: 70%;
    min-height: 2.4em;
}

/******************************************************************************/

/*
 * Box
 */
.box {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    color: #666;
    line-height: 1.4em;
    margin: 0.9em 0;
    padding: 0.7em 1em;
    position: relative;
    text-align: left;
}
.box-close {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
    color: #666;
    cursor: pointer;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    right: -6px;
    text-align: center;
    top: -6px;
    width: 16px;
}
.box-close:hover {
    font-weight: bold;
    height: 18px;
    line-height: 18px;
    right: -7px;
    top: -7px;
    width: 18px;
}

.box--ok,
.box--ok .box-close {
    background: #f7ffed;
    border-color: #78ca52;
    color: #4dab01;
}
.box--error,
.box--error .box-close {
    background: #fff0f0;
    border-color: #ff9494;
    color: #d92a2a;
}
.box--info,
.box--info .box-close {
    background: #e9f1ff;
    border-color: #81aeff;
    color: #2f5db3;
}
.box--alert,
.box--alert .box-close {
    background: #ffffde;
    border-color: #e1d042;
    color: #a99b27;
}

/******************************************************************************/

/*
 * galeria
 */
.galeria-item {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    max-width: 100%;
}
.galeria-item img {
    max-width: 100%;
}

/******************************************************************************/

/*
 * Socials
 */
.socials {
    font-size: 0.000001px;
    font-weight: normal;
    margin: -0.2rem;
}
.socials-a {
    background: #474747;
    color: #fff;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    height: 3rem;
    margin: 0.5rem;
    overflow: hidden;
    padding: 0.5rem 0 0;
    text-align: center;
    text-shadow: 1px 1px 1px #474747, 2px 2px 1px #474747, 3px 3px 1px #474747,
        4px 4px 1px #474747, 5px 5px 1px #474747, 6px 6px 1px #474747, 7px 7px 1px #474747,
        8px 8px 1px #474747, 8px 8px 1px #474747, 9px 9px 1px #474747,
        10px 10px 1px #474747, 11px 11px 1px #474747, 12px 12px 1px #474747,
        13px 13px 1px #474747, 14px 14px 1px #474747, 15px 15px 1px #474747,
        16px 16px 1px #474747, 17px 17px 1px #474747;
    vertical-align: middle;
    width: 3rem;
    will-change: transform;
}
.socials-a:hover {
    background: #888;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
}
.socials-a--facebook:hover {
    background: #3b5998;
}
.socials-a--google:hover {
    background: #de5246;
}
.socials-a--instagram:hover {
    background: #3f729b;
}
.socials-a--linkedin:hover {
    background: #0e76a8;
}
.socials-a--pinterest:hover {
    background: #c8232c;
}
.socials-a--skype:hover {
    background: #00aff0;
}
.socials-a--twitter:hover {
    background: #00acee;
}
.socials-a--youtube:hover {
    background: #c4302b;
}

/******************************************************************************/

/*
 * Img
 */
.img {
    height: auto;
    width: auto;
}

/*
 * Image
 */
.image {
    background: url('../images/icons/img.svg') no-repeat center;
    background-size: 5rem;
    display: block;
    overflow: hidden;
    padding: 100% 0 0;
    position: relative;
}
.image-img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.image-img--1,
.image-img--2 {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    will-change: opacity;
}
.image-img--1,
a:hover .image-img--2 {
    opacity: 1;
}
.image-img--2,
a:hover .image-img--2 + .image-img--1,
a:hover .picture + .picture .image-img--1 {
    opacity: 0;
}

/******************************************************************************/

/*
 * Picture
*/
.picture {
    display: block;
}

/******************************************************************************/

/*
 * Logo
 */
.logo {
    display: block;
    font-size: 1.4rem;
    margin: 0;
    max-width: 100%;
    padding: 0;
    position: absolute;
    top: -3rem;
}
.logo-a {
    color: #000;
    display: block;
}
.logo-img {
    display: block;
    margin: auto;
    width: 100%;
    max-height: 21rem;
}

/******************************************************************************/

/*
 * Header
 */
.header {
    background: var(--background-white);
    position: relative;
    max-width: 100vw;
    position: sticky;
    top: -18rem;
    z-index: 10;
}
.header{
	container-type: scroll-state;
}

/* STICKY - START */
@container scroll-state(stuck: top) {
	.header .nav {
        box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);
        background-color: white;
	}
    .header .logo{
        top:-5rem;
    }
    .nav-list {
        padding:0.5rem 0;
        margin-top:-2rem;
    }
}
    .header.isStuck .nav {
        box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);
        background-color: white;
    }
    .header.isStuck .logo{
        top:-5rem;
    }
    .header.isStuck .nav-list {
        padding:0.5rem 0;
        margin-top:-2rem;
    }
/* STICKY - END*/


.header a:hover{
    text-decoration: none;
}
.container.header-container{
    display:flex;
    flex-direction:row;
    height: 11.8rem;
    position: relative;
}

.header::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    height: 15rem;
    top: 0;
}

.header-content{
    margin-left:25rem;
    display:flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}


.header-content form{
    text-wrap: nowrap;
    position: relative;
}
.header-content form:first-of-type{
    /* margin-right:4.2rem; */
    /* margin-left:0; */

    margin-right: 1.7rem;
    margin-left: 1rem;
}
.header-content form .input{
    font-size: 2rem;
    color: var(--text-input);
    padding: 1.5rem 3rem;
    border: 0.3rem solid black;
    border-radius: 10rem;
    font-weight: 300;
}
.header-content form .button{
    font-size: 2rem;
    color: var(--text-white);
    background-color: black;
    padding: 2.1rem 2.6rem;
    border: 0.3rem solid black;
    border-radius: 10rem;
    position: absolute;
    right: 0;
    border-color: black;
    box-sizing: border-box;
    font-weight: 500;
}
.header-content form .input.voucher {
    padding-right: 5rem;
    box-sizing: content-box;
    border-color:var(--primary-color);
}

.form-search .button-search {
    position: absolute;
    top: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    font-size: 2.7rem;
    background:transparent;
    border:none;
    outline:none;
    border-radius:5rem;
    width:5rem;
    height:5rem;
    margin:auto;
    transition:0.35s;
    right:calc(100% - 6.3rem);
    cursor:unset;
    pointer-events:none;
}

.form-search:has(.input.input-search:not(:placeholder-shown)) .button-search:hover,
.form-search:has(.input.input-search:focus) .button-search:hover{
    background:var(--darkred-color) !important;
}
.form-search .input.input-search{
    padding-left:5.5rem;
    max-width: 31.5rem;
    width: 100%;
    padding-left: 6rem;
    min-width: 27rem;
}

.form-search .input.input-search:not(:placeholder-shown),
.form-search .input.input-search:focus{
    padding-left:3rem;
}

.form-search:has(.input.input-search:not(:placeholder-shown)) .button-search,
.form-search:has(.input.input-search:focus) .button-search{
    background:var(--primary-color);
    color:var(--text-white);
    right:1.3rem;
    cursor:pointer;
    pointer-events:all;
}

/* .input-search .icon{
    position:absolute;
    top:0;
    bottom:0;
    display:grid;
    place-items:center;
    margin-left: 2.7rem;
    font-size:2.7rem;
} */

.header-content--info{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.header-content--info .dropdown-adv ul li{
    line-height:4rem;
    text-align:right;
    font-size: 2.1rem;
    font-weight: 500;
    position: relative;
}
.header-content--info .dropdown-adv ul li a{
    color:var(--text-dark);
    position: relative;
}

.header-content--info .dropdown-adv ul li a:before{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    height:2px;
    width: 100%;
    transform:scaleX(0);
    transform-origin: left;
    transition: 0.2s;
    opacity: 0;
    background-color: var(--text-dark);
}

.header-content--info .dropdown-adv ul li a:hover:before{
    transform:scaleX(1);
    opacity: 1;
}

.header-content--concact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-wrap: nowrap;
    padding-left:3.8rem;
}
.header-content--concact a{
    font-size: 2.85rem;
    color:var(--text-dark);
}
.header-content--concact span{
    font-size: 1.6rem;
}

.header-content--box{
    display:inline-flex;
    align-items:center;
    color:var(--text-dark);
    cursor: pointer;
    font-weight: 600;
    margin-left:4.8rem;
}
.header-content--box:last-child{
    color:#848484;
    font-weight: normal;
}
.header-content--info-text {
    font-size: 1.5rem;
    color: #848484;
    font-weight: 500;
}
.header-content--info-logged .header-content--info-text {
    color: var(--text-black);
    font-weight: 600;
    word-break: break-word;
}
.header-content--box span.icon{
    font-size:4rem;
    padding-right:1rem;
    color:var(--text-dark);
}
 .content-phone-icon{
    margin-left:1.5rem;
    display:none;
}
.content-phone-icon .icon{
    font-size:4.4rem;
    font-weight:500;
}

.content-phone-text {
    font-weight: 500;
    display:block;
}


@media only screen and (max-width:1200px){
    .header-content--info .header-content--box{
        margin-left:2rem;
    }   
    .content-phone-icon{
        display:flex;
    }
    .content-phone-text {
        display:none;
    }
}
/******************************************************************************/

/*
 * Header bar
 */
.bar {
    color:var(--text-white);
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    font-weight: 500;
    position:relative;
    overflow:hidden;
    height:31px;
}

.bar-item{
    position:absolute;
    top:0;
    left:0;
    padding:0.3rem 0;
    width:100%;
    transform:translateX(100%);
    transition:transform .5s ease-in-out;
    user-select:none;
}
.bar-item:first-of-type{
    transform:translateX(0);
}

.bar li {
    display: inline-block;
}
.bar li a {
    display: block;
    padding: 2px 10px;
}
.bar li:first-child a {
    padding-left: 0;
}
.bar li:last-child a {
    padding-right: 0;
}


/* ******* BAR NOWA ANIMACJA ******* */

.bar {
    overflow: hidden;
}

.bar-item {
    opacity: 1;
    pointer-events: none;
    transform:translateX(0);
}
.bar-item span{
    font-weight:600;
}
.bar-item > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(1rem);
    transition:
        opacity 0.5s 0.25s ease-in-out,
        transform 0.5s 0.25s ease-in-out;
}

.bar-item.is-active {
    pointer-events: auto;
}

.bar-item.is-active > span {
    opacity: 1;
    transform: translateY(0);
}

.bar-item.is-leaving > span {
    opacity: 0;
    transform: translateY(-1rem);
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
}
.bar-item{
    background:transparent !important;
}
.bar-item.is-active span{
    opacity: 1;
    transform: translateY(0);
}
/******************************************************************************/

/*
 * Nav
 */
.nav {
    /* background: transparent; */
    background-color: #F8F8F8;
    clear: both;
    padding-top:5rem;
    margin-bottom:4rem;
}

.nav-white{
    background: transparent;
}
.nav-forms{
    display:none;
}
.container.nav-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


/*Menu na mobilke*/

.c-hamburger {
    display: none;
}
.c-hamburger-bg {
    display: none;
}

@media only screen and (max-width:360px){
    .content-phone-icon{
        display: none;
    }
}
    
@media only screen and (max-width:480px){
    body .header .dropdown.headerCart .dropdown-a,
    .logo{
        width:100%;
    }
    .headerCart-name,
    .headerCart-empty,
    .headerCart-amount,
    .header-content--info-text {
        display:none
    }
    .header-content {
        padding:0;
        margin:0;
        width:unset;
    }
    .header-content--info{
        padding-left:0;
        margin-left:0;
    }
    .header-container{
        padding:0;
    }
    .logo-img{
        margin-left:15%;
    }
}
@media only screen and (max-width:1170px){
    .nav .table li{
        padding: 0 1rem;
    }
}

@media only screen and (max-width:1050px){
    .nav .table li{
        padding: 0 0.8rem;
    }
    .table-start li:after{
        right:-1rem;   
    }
}

@media only screen and (max-width:1000px){
    .nav .table{
        display:none;
    }
    .header-forms{
        position: fixed;
        z-index: 99999;
        left: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        transition:0.5s;
        width:calc(100% - 5rem);
        -webkit-transform: translateX(calc(-100vw - 10rem));
        transform: translateX(calc(-100vw - 10rem));
        max-width: 50rem;
    }
    .header:has(.nav.-active){
        .header-forms{
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    .header-forms form {
        margin-bottom:0.5rem;
    }
    .header-content form{
        display:flex;
        justify-content:center;
        width:calc(100% - 2rem);
        margin-left:1rem;
    }
    .header-content form input.input,
    .header-content form input.input.input-search{
        width:100%;
        max-width:100%;
    }
    .header-content--info-logged .dropdown-adv{
        display:none !important;
    }
    .nav-forms{
        display:flex;
    }
    .nofon {
        display: none;
    }
    .c-hamburger-bg {
        /* background: rgba(0, 0, 0, 0.3); */
        background-color: rgba(0, 0, 0, 0.5);
        display: block;
        height: 120%;
        left: 0;
        opacity: 0;
        position: fixed;
        right: 0;
        top: 0;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        will-change: opacity;
        z-index: 1000;
    }

    .c-hamburger {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        -webkit-border-radius: none;
        -moz-border-radius: none;
        border-radius: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        cursor: pointer;
        display: block;
        font-size: 0;
        height: 50px;
        left: 1rem;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: fixed;
        /*right: 0;*/
        text-indent: -9999px;
        top: 4.4rem;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        width: 50px;
        will-change: transform;
        z-index: 1010;
    }
    .c-hamburger.-active {
        -webkit-transform: translateX(calc(100vw - 10rem));
        -moz-transform: translateX(calc(100vw - 10rem));
        -ms-transform: translateX(calc(100vw - 10rem));
        -o-transform: translateX(calc(100vw - 10rem));
        transform: translateX(calc(100vw - 10rem));
    }
    .c-hamburger.-active + .c-hamburger-bg {
        opacity: 1;
        visibility: visible;
    }

    .c-hamburger:focus {
        outline: none;
    }
    .c-hamburger span {
        background: #fff;
        display: block;
        height: 4px;
        left: 9px;
        position: absolute;
        right: 9px;
        top: 23px;
        will-change: background;
    }
    .c-hamburger span::before,
    .c-hamburger span::after {
        background: #fff;
        content: '';
        display: block;
        height: 4px;
        left: 0;
        position: absolute;
        width: 100%;
        will-change: transform;
    }

    .c-hamburger span::before {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .c-hamburger span::after {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    .c-hamburger--htx {
        background-color: #999;
        background-image: -webkit-gradient(linear, top, bottom, from(#ccc), to(#999));
        background-image: -webkit-linear-gradient(top, #ccc, #999);
        background-image: -moz-linear-gradient(top, #ccc, #999);
        background-image: -o-linear-gradient(top, #ccc, #999);
        background-image: linear-gradient(to bottom, #ccc, #999);
        -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.28);
        -moz-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.28);
        box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.28);
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }

    .c-hamburger--htx span {
        /*transition: background 0s 0.5s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before,
    .c-hamburger--htx span::after {
        /*transition-delay: 0.5s, 0s;*/
        -webkit-transition-duration: 0.5s, 0.5s;
        -moz-transition-duration: 0.5s, 0.5s;
        -o-transition-duration: 0.5s, 0.5s;
        transition-duration: 0.5s, 0.5s;
    }
    .c-hamburger--htx span::before {
        -webkit-transition-property: top, transform;
        -moz-transition-property: top, transform;
        -o-transition-property: top, transform;
        transition-property: top, transform;
    }
    .c-hamburger--htx span::after {
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
    }
    /* active state, i.e. menu open */
    .c-hamburger--htx.-active {
        background-color: #c61e1e;
        background-image: -webkit-gradient(
            linear,
            top,
            bottom,
            from(#ed4545),
            to(#c61e1e)
        );
        background-image: -webkit-linear-gradient(top, #ed4545, #c61e1e);
        background-image: -moz-linear-gradient(top, #ed4545, #c61e1e);
        background-image: -o-linear-gradient(top, #ed4545, #c61e1e);
        background-image: linear-gradient(to bottom, #ed4545, #c61e1e);
    }
    .c-hamburger--htx.-active span {
        background: rgba(255, 255, 255, 0);
        /*opacity: 0;*/
    }
    .c-hamburger--htx.-active span::before {
        /*top: 0;*/
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .c-hamburger--htx.-active span::after {
        /*bottom: 0;*/
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .c-hamburger--htx.-active span::before,
    .c-hamburger--htx.-active span::after {
        /*transition-delay: 0s, 0.5s;*/
    }
    .mainpage .nav,
    .nav {
        background: #fff;
        bottom: 0;
        -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
        clear: both;
        display: block;
        float: none;
        height: 100%;
        left: 0;
        margin-left: 0;
        margin-top: 0;
        max-width: 100%;
        padding: 0;
        position: fixed;
        top: 0;
        -webkit-transform: translateX(calc(-100vw - 5rem));
        -moz-transform: translateX(calc(-100vw - 5rem));
        -ms-transform: translateX(calc(-100vw - 5rem));
        -o-transform: translateX(calc(-100vw - 5rem));
        transform: translateX(calc(-100vw - 5rem));
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        width: calc(100vw - 5rem) !important;
        will-change: transform;
        z-index: 1005;
    }
    .nav.-active {
        overflow-y: auto;
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
        transform: translateX(0px);
        visibility: visible;
    }

    .table {
        display: block;
        width: 100%;
    }
    .table li {
        display: inline-block;
        float: left;
        width: 100%;
    }

    /* ============================================== */
    .nav .nav-container {
        padding-top:2.3rem;
        display:flex;
        flex-direction:column;
        left:0;
        height: calc(100% - 14rem)
    }
    .nav .table{
        display:flex;
        flex-direction:column;
    }
    .nav .table li{
        text-align:start;
        padding:1rem 1rem;
    }
    .table-start li:after{
        display:none;   
    }
    .nav .table li a:before,
    .nav .table .nav-a:before{
        content:unset;
    }
    
    .table.table-start .dropdown-content {
        position:relative;
    }
    .table.table-start .dropdown-content--list {
        background:white;
        display:flex;
        flex-direction:column;
    }
    .nav-forms{
        display:block;
    }
    .nav-forms form{
        display:flex;
        margin-bottom:0.5rem;
    }
    
    .nav-forms form input.input.input-search,
    .nav-forms form input.input.voucher{
        max-width:calc(100% - 5rem);
        width:calc(100% - 5rem);
        padding:0.4rem 2rem;
    }
    .nav-forms form .button{
        position:absolute;
        right:6rem;
        width:10rem;
        padding:1rem 0;
    }
    .logo{
        position: relative;
        top: -0.1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left:6rem;
    }
    .logo a{
        height: 100%;
        width: 15rem;
    }
    .header-content{
        margin-left:0;
        right: 0;
    }
    
    button.c-hamburger.c-hamburger--htx {
        margin-top:1.2rem;
        background: white;
        box-shadow: unset;
    }
    
    button.c-hamburger.c-hamburger--htx span,
    button.c-hamburger.c-hamburger--htx span:after,
    button.c-hamburger.c-hamburger--htx span:before{
        background:black;
    }
    button.c-hamburger.c-hamburger--htx.-active span{
        background:transparent;
    }


    .table.table-start .dropdown.dropdown--open .dropdown-content{
        grid-template-columns:1fr;
    }
    
}

/******************************************************************************/

/*
 * Search
 */
.search {
    border: 0;
    float: right;
    min-width: 300px;
    padding: 20px 0;
    text-align: right;
    white-space: nowrap;
}
.search legend {
    display: none;
}

/******************************************************************************/

/*
 * Categories
 */
.categories {
    display: block;
}
.categories a {
    display: block;
    font-size: 1.4rem;
    padding: 2px 10px;
    text-decoration: none;
}
.categories ul {
    border-left: 1px solid #eee;
    display: none;
    margin-left: 15px;
    padding: 0 0 5px 5px;
}
.categories ul a {
    font-size: 1.3rem;
}
.categories .open > a {
    font-weight: bold;
}
.categories .-active > a {
    background-color: #eee;
    font-weight: bold;
}

/******************************************************************************/

/*
 * Main
 */
.main {
    clear: both;
    display: table;
    overflow: hidden;
    position: relative;
    table-layout: fixed;
    width: 100%;
}

/******************************************************************************/

.contactIco {
    padding-left: 40px;
    position: relative;
}
.contactIco .icon {
    font-size: 3rem;
    left: 0;
    position: absolute;
    top: 0;
}

/******************************************************************************/

.map {
    height: 450px;
    margin: 3rem 0;
    position: relative;
    width: 100%;
}
.map iframe {
    height: 100%;
    width: 100%;
}

/******************************************************************************/

/*
* Not Found
*/
.notfound {
    position: relative;
    text-align: center;
}

.notfound-image {
    margin: 1em auto;
    padding: 36.7rem 0 0;
    width: 45rem;
}

.notfound-h {
    margin: 0.5em 0;
}

.notfound p {
    margin: 1em 0;
    padding: 0;
}

.notfound-a {
    color: inherit;
    text-decoration: underline;
}
.notfound-a:hover {
}

.notfound .-c2 {
}

.notfound .search {
    bottom: auto;
    max-width: 40rem;
    margin: 3em auto 1.5em;
    position: relative;
    right: auto;
}

.notfound .search-div {
    width: 100%;
}

.notfound .search-formdiv {
    max-width: 100% !important;
    width: auto !important;
}

.notfound .searchhints {
    left: 0;
    right: 0;
    width: auto;
}

/******************************************************************************/

.fluidTabs {
    overflow: hidden;
    padding-top: 42px;
}
.fluidTabs .fluidTabs-tabs {
    /*overflow: hidden;*/
    display: table;
    width: 100%;
    margin: 0;
    /*min-height: 43px;*/
    padding: 0;
    table-layout: fixed;
    -webkit-box-shadow: inset 0px -31px 22px -30px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0px -31px 22px -30px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0px -31px 22px -30px rgba(0, 0, 0, 0.12);
}
.fluidTabs .fluidTabs-tabs li {
    background: none;
    color: #282828;
    cursor: pointer;
    display: table-cell;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 1px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    vertical-align: middle;
}

.fluidTabs .fluidTabs-tabs li.-active {
    /*color: #e7184d;*/
    /*background: #fff;*/
}
.fluidTabs .fluidTabs-tabs li::before {
    -webkit-box-shadow: 0px 0px 30px -6px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 30px -6px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 30px -6px rgba(0, 0, 0, 0);
    border-top: 4px solid #e7184d;
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    left: 100%;
    z-index: 1;
    position: absolute;
    right: 0;
    top: 0px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.fluidTabs .fluidTabs-tabs li.-active::before {
    -webkit-box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 0px 30px -4px rgba(0, 0, 0, 0.14);
}
.fluidTabs .fluidTabs-tabs li.-active ~ li::before {
    left: 0;
    right: 100%;
}
.fluidTabs .fluidTabs-tabs li.-active::before {
    z-index: 2;
    left: 0 !important;
    right: 0 !important;
}
.fluidTabs .fluidTabs-tabs li a {
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 15px 5px;
    color: #282828;
    border-top: none;
    position: relative;
    z-index: 3;
    display: block;
}
.fluidTabs .fluidTabs-tabs li a:hover {
    text-decoration: none;
}

.fluidTabs .fluidTabs-tabs li:hover a,
.fluidTabs .fluidTabs-tabs li.-active a {
    color: #e7184d;
}

.fluidTabs .fluidTabs-tab-box {
    margin-bottom: -30px;
    overflow: hidden;
    /*-ms-overflow-x: scroll;
            overflow-x: scroll;*/
    padding-bottom: 50px;
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 9;
}
.fluidTabs .fluidTabs-tab-div {
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    max-height: 0px;
    overflow: visible;
    padding: 10px;
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    vertical-align: top;
    white-space: normal;
    width: 100%;
}
.fluidTabs .fluidTabs-tab-div.-active {
    max-height: 1500px;
    filter: alpha(opacity = 100);
    opacity: 1;
}

/******************************************************************************/

/*
 * Footer
 */
.footer {
    background: transparent;
    clear: both;
    padding: 2.5rem 0;
    margin-top:5rem;
}
.mainpage .footer{
    background: var(--background-white);
}
.footer .footer-h{
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.footer-span,
.footer-a {
    display: block;
    font-size: 1.6rem;
    color:var(--text-medium);
    line-height: 2;
}
.footer-a{
    position: relative;
    line-height: 2.22;
    display: table;
}
.footer-a:hover{
    text-decoration: none;
}

a.footer-a:before{
    content:'';
    position:absolute;
    left:0;
    bottom:0.8rem;
    height:1px;
    width: 100%;
    transform:scaleX(0);
    transform-origin: left;
    transition: 0.2s;
    opacity: 0;
    background-color: var(--text-medium);
}

a.footer-a:hover:before{
    transform:scaleX(1);
    opacity: 1;
    background-color: var(--text-dark);
}

.footer label span{
    font-size:1.3rem;
    padding:2rem 0;
}

.footer-copy a,
.footer-copy > span {
    display: block;
    text-align: right;
    width: 100%;
}

.footer-copy a:hover {
    opacity: 1;
}

.socials.footer-socials{
    margin-left: 0.1rem;
}

@media only screen and (max-width:1000px){
    .ibs.footer-ibs .ib{
        width:50%;
    }
    
    .ibs.footer-ibs .ib:last-child{
        width:100%;
        text-align:center;
    }
}

@media only screen and (max-width:600px){
    .ibs.footer-ibs .ib{
        width:100%;
    }
}
.redhand {
    position: relative;
}

.redhand::after {
    -webkit-transform-origin: 8px 10px;
    -moz-transform-origin: 8px 10px;
    -ms-transform-origin: 8px 10px;
    -o-transform-origin: 8px 10px;
    transform-origin: 8px 10px;
    -webkit-transform: rotate(-95deg);
    -moz-transform: rotate(-95deg);
    -ms-transform: rotate(-95deg);
    -o-transform: rotate(-95deg);
    transform: rotate(-95deg);
    -webkit-transition: all 0.7s cubic-bezier(0.22, 2.65, 0.81, 0.96);
    transition: all 0.7s cubic-bezier(0.22, 2.65, 0.81, 0.96);
    content: '';
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA6UlEQVR4AZXPQUcFURiH8UPEEK0iUlzO6q6ibatWcVd3dYn5AK2ib9BqaBsx24j5BhEREcN8gLZtY4hZDcO/ZzGHVzpnmsXPOYv3fXid3GHKMQocwMFjHy74vbCHO5zDoYFwjwxfaFKBawgdPB4hfGAJAfGARw/hHTk0WsUCCzR4xREKaHSLAcJDLLA0Q584RQuht38Iw18n5CbyjQpKyGACsBHzxtzYQCyS0mHHBqxL6B/ObGAba2xwghqakNtACc20DoEtvKGFZtiEgLXAFZ7QQwllCMTs4gIFniGjQmYCkzxqvGAFF/wAE9ukCYLfD9EAAAAASUVORK5CYII=');
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -6px;
    bottom: 10%;
    opacity: 0;
}
.redhand:hover {
    color: #ff001d;
    text-decoration:unset;
}
.redhand:hover::after {
    margin-left: -8px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
    bottom: 100%;
}za
/******************************************************************************/
/* 
Copyrights
*/
.copyrights {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 0;
    position: relative;
}
.copyrights-span {
    display: inline-block;
    margin: 0;
}
.realization {
    display: inline-block;
    margin: 0.5rem 0;
    padding: 0;
    position: relative;
}
.cr {
    border-top:1px solid #CECECE;
    clear: both;
    color: #808080;
    font-size: 1.6rem;
    line-height: 1.39;
    padding: 3.4rem 0 0.9rem 0;
    text-align: center;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    max-width: 152rem;
    margin: auto;
    margin-top: 2.5rem;
}

/******************************************************************************/
.section {
    margin-bottom:4rem;
}

.section--hap{
    text-align: center;
}

.section--hap .section-h{
    color:var(--text-dark);
    font-weight: 700;
    font-size: 5rem;
    margin-bottom:2rem;
}

.section--hap .section-h-red{
    color:var(--primary-color);
}

.section--hap .section-h-left{
    text-align: start;
    font-weight: 600;
    color:var(--text-dark);
}

.section--hap p{
    color:var(--text-dark);
    font-size: 2rem;
}

.seciton-hap-text,
.seciton-hap-text p,
.seciton-hap-text span,
.seciton-hap-text *{
    color:#7E7E7E;
    font-size:1.8rem;
}

/******************************************************************************/

/*
 * Modyfikatory
 */

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.alignLeft {
    text-align: left;
}
.alignRight {
    text-align: right;
}
.alignCenter {
    text-align: center;
}

.right {
    float: right;
}
.left {
    float: left;
}

.pullLeft {
    float: left;
    margin: 0.7em 0.7em 0.7em 0;
}
.pullRight {
    float: right;
    margin: 0.7em 0 0.7em 0.7em;
}
.pullRight:first-child,
.pullLeft:first-child {
    margin-top: 0;
}

.pullCenter {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: auto;
}

.movie {
    display: block;
    padding: 56.25% 0 0;
    position: relative;
    width: 100%;
}
.movie > iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/* read more link */
.more {
    font-size: 0.9em;
    font-weight: bold;
    padding-left: 5px;
}

/* multiline indent */
.rr {
    display: inline-block;
    vertical-align: top;
}

/* invisible link */
.il {
    color: inherit;
    text-decoration: inherit;
}
.il:hover {
    color: inherit;
    text-decoration: underline;
}

.mt30 {
    margin-top: 30px;
}
.pt0 {
    padding-top: 0;
}
.mt0 {
    margin-top: 0;
}
.mb0 {
    margin-bottom: 0;
}
.mb20 {
    margin-bottom: 20px;
}
.mb60 {
    margin-bottom: 60px;
}

.block {
    display: block;
}
.hide {
    display: none;
}

.ninja {
    border: 0 !important;
    height: 1px;
    left: -1px;
    margin: 0 !important;
    opacity: 0;
    overflow: hidden;
    padding: 0 !important;
    position: absolute !important;
    text-indent: 1px;
    top: -1px;
    width: 1px;
}

.relative {
    position: relative;
}

.clearfix::before,
.clearfix::after {
    content: '';
    display: table;
}

.clearfix::after {
    clear: both;
}

.clear {
    clear: both;
}

.pointer {
    cursor: pointer;
}

/****************************************************************************/

@media only screen and (max-width: 1600px) {
    html {
        font-size: 9px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 1400px) {
    html {
        font-size: 8px;
    }
}

/****************************************************************************/

@media only screen and (max-width: 1240px) {
    .nav-list-dropdown{
        margin-left:-1rem !important;
    }
    .main.container,
    .compare-bar--inner,
    .container{
        padding: 0 1rem;
    }
    
    .cr{
        padding:3.4rem 1rem 0.9rem 1rem;
    }
}

/****************************************************************************/

@media only screen and (max-width: 800px) {
    .content,
    .leftBlock,
    .rightBlock {
        display: block;
        min-width: auto;
        padding: 0;
        width: auto;
    }
}

/******************************************************************************/

@media only screen and (max-width: 480px) {
    .span {
        float: none;
        margin-left: 0 !important;
        width: auto;
    }
    .label--invalid .tooltip-bottom {
        margin-bottom: 50px;
    }
    .media--double,
    .media2--double {
        display: block;
        margin: 0.8em 0;
        width: auto;
    }
}

@media only screen and (max-width: 600px) {
    .fill {
        margin-left: 0;
        width: 100%;
    }
    .fill + .fill {
        margin-top: 20px;
    }
}

/******************************************************************************/

@media only screen and (max-width: 1000px) {
    .swiper-conetnt .swiper-content-name{
        font-size:5.1rem;
        line-height:unset;
    }
    .swiper-conetnt .swiper-content-text{
        font-size:1.9rem;
        line-height:unset;
    }
    .swiper-conetnt .button{
        margin-top:1rem;
    }
    .ibs.container.contact-container .ib.ib--concact-1,
    .ibs.container.contact-container .ib.ib--concact-2{
        width:50%;
    }
    .ibs.container.contact-container .ib.ib--concact-3{
        width:100%;
    }   
}


@media only screen and (max-width: 768px) {
    .header::before{
        height:18rem;
    }
    .bar{
        height: 6.2rem;
    }
    .bar-item{
        display:grid;
        height: 100%;;
    }
    .bar-item > span{
        display: grid;
        place-items: center;
        padding: 0 1rem;
    }
    .c-hamburger{
        top:7.4rem;
    }
    .slider .swiper-container .swiper-wrapper .swiper-conetnt{
        padding-top:1rem;
        position:relative;
        left:0 !important;
        right:0 !important;
        margin:auto;
        text-align:center;
        justify-content:center;
    }
    .slider .swiper-pagination {
        padding-top:1rem;
        top:0;
        margin:0;
    }
    .slider .swiper-pagination-bullet:before{
        background:var(--text-light);
    }
    .slider .swiper-pagination-bullet-active:before{
        background:var(--primary-color);
    }
    .swiper-conetnt .swiper-content-name{
        font-size:4.3rem;
        line-height:unset;
    }
    .swiper-conetnt .swiper-content-text{
        font-size:1.6rem;
        line-height:unset;
    }
    .swiper-conetnt .button{
        margin-top:1rem;
        padding:0.6rem 3rem;
    }
    .ibs.container.contact-container .ib.ib--concact-1,
    .ibs.container.contact-container .ib.ib--concact-2{
        width:100%;
    }




    /* ============= TEST ============== */
    .swiper-conetnt {
        position:absolute !important;
        top:0 !important;
        left:0 !important;
        bottom:0;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
    }
    .swiper-content-info{
        position:relative;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        width:80%;
        width:calc(100% - 8rem);
        max-width:50rem;
    }
    /* .swiper-conetnt:has(.swiper-content-name):before, */
    .swiper-conetnt:has(.swiper-content-name) .swiper-content-info:before{
        content:'';
        position:absolute;
        left:0;
        top:0;
        width:100%;
        height:100%;
        z-index:-1;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(5.5px);
        -webkit-backdrop-filter: blur(5.5px);
        border-radius:1rem;
        border:1px solid rgba(255, 255, 255, 0.5);
    }
    .swiper-conetnt .swiper-content-name,
    .swiper-content-text {
        position:relative;
        white-space: normal !important;
        width:100%;
        margin:0 !important;
    }
    .swiper-conetnt .swiper-content-text {
        padding-top:1.6rem !important;
    }
    .swiper-button-white {
        top:calc(50% - 4.6rem);
    }
}

@media only screen and (max-width:480px){
    .swiper-conetnt .swiper-content-name {
        font-size:3rem;
    }
}

/******************************************************************************/

/*
 * HR
 */
.hr {
    border: 0 solid #ddd;
    display: block;
    margin: 2rem 0;
    padding: 0;
    position: relative;
}
.hr::before {
    border: inherit;
    border-top-width: 1px;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
}

.hr--txt {
    overflow: hidden;
    text-align: center;
}
.hr--txt::before {
    display: none;
}
.hr-txt {
    border: inherit;
    position: relative;
}
.hr-txt::before,
.hr-txt::after {
    border: inherit;
    border-top-width: 1px;
    content: '';
    margin: 0 2rem;
    position: absolute;
    top: 50%;
    width: 555%;
}
.hr-txt::before {
    right: 100%;
}
.hr-txt::after {
    left: 100%;
}

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

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

/******************************************************************************/

/*
 * Border, Border Before & Border After
 */
.border,
.borderBefore::before,
.borderAfter::after {
    border: 1px solid #ddd;
}
.borderBefore::before,
.borderAfter::after {
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

/******************************************************************************/

/*
 * Progress Bar
 */
.progressBar {
    margin: 2rem 0;
    position: relative;
    text-align: center;
}
.progressBar-desc {
    color: #c4c4c4;
    margin: 0 0 1rem;
}
.progressBar-progress {
    color: #000;
}
.progressBar-stroke {
    background: #ddd;
    height: 0.4rem;
    overflow: hidden;
    position: relative;
}
.progressBar-fill {
    background: #000;
    bottom: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

/******************************************************************************/

/*
 * Popup Info
 */
 @keyframes popupTimer{
     from{
         transform:scaleX(1);
     }
     to{
         transform:scaleX(0);
     }
}

.popupInfo {
    background: #fff;
    -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
    color: #000;
    display: inline-block;
    font-size: 2.1rem;
    font-weight: normal;
    opacity: 0;
    padding: 2rem;
    position: fixed;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 99999;
    top:-3rem;
    right:1.2rem;
}
.popupInfo--visible {
    opacity: 1;
    top:1rem;
    cursor: pointer;
}
.popupInfo.popupInfo-err{
    background:var(--primary-color);
    color:white;
}

.popupInfo.popupInfo-success{
    background:var(--secondary-color);
    color:white;
}

.popupInfo-timer{
    content:'';
    top:0;
    left:0;
    width:100%;
    height:0.5rem;
    background:black;
    position:absolute;
    transform-origin:left;
    animation: popupTimer linear forwards;
}

/******************************************************************************/

/*
 * User Menu - Account
 */
.userMenu-logged ul{
    display:none;
}
@media only screen and (max-width:1000px){
    .userMenu-logged ul{
        display:flex;
        flex-direction:row;
        justify-content:center;
        gap:2rem;
        flex-wrap:wrap;
    }
    .userMenu-logged ul li{
        border:2px solid var(--primary-color);
        background:white;
        padding:1rem 2rem;
        border-radius:1rem;
        font-weight:600;
    }
    .userMenu-logged ul li a{
        color:var(--primary-color);
    }
    .userMenu-logged ul li:last-of-type{
        border:2px solid black;
        background:black
    }
    .userMenu-logged ul li:last-of-type a{
        color:white;
    }
}
@media only screen and (max-width:480px){
    .userMenu-logged ul{
        gap:1rem;
    }
    .userMenu-logged ul li{
        width:100%;
        text-align:center;
    }
}
/******************************************************************************/

/*
 * User Box
 */
.userBox {
    margin: 0 auto;
    max-width: 80rem;
    padding: 1.5rem;
    position: relative;
}
.userBox-h {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 1rem 0 2rem;
    padding: 0;
    text-align: center;
}
.userBox-or {
    color: #888;
    font-size: 1.8rem;
    margin: 1rem 0;
}
.userBox-txt {
    font-size: 2.2rem;
    margin: 2rem 0 1rem;
    text-align: center;
}
.userBox-ico {
    color: #888;
    display: block;
    margin: 1rem 0;
    min-height: 4rem;
    padding: 1rem 0 1rem 7rem;
}
.userBox-ico--1 {
    background: url('../images/icons/userbox-ico--1.svg') no-repeat 0 center;
    background-size: 4.9rem auto;
}
.userBox-ico--2 {
    background: url('../images/icons/userbox-ico--2.svg') no-repeat 1.3rem center;
    background-size: 3.2rem auto;
}
.userBox-ico--3 {
    background: url('../images/icons/userbox-ico--3.svg') no-repeat 1.2rem center;
    background-size: 3.3rem auto;
}
.userBox-ico--4 {
    background: url('../images/icons/userbox-ico--4.svg') no-repeat 1.4rem center;
    background-size: 3rem auto;
}
.userBox .formActions {
    margin: 1rem 0;
    padding: 0;
}
.userBox .formActions-a {
    display: inline-block;
    font-size: 1.8rem;
    margin: 1rem 0 0;
}

.userBox.userBox--login{
    border-radius: 3rem;
    padding:5rem 3rem;
    background-color: white;
}

.userBox .formActions.formActions--center {
    display: grid;
    place-items: column;
}

.button--user,
.userBox .formActions.formActions--center .button {
    width:50%;
    margin:auto;
    min-width:20rem;
    font-size: 2.5rem;
    font-weight: 500;
    padding: 1.5rem 6.7rem;
    min-width: 30rem;
    line-height: 2.5rem;
}

@media only screen and (max-width:600px){
    .userBox .formActions.formActions--center .button {
        width: 100%;
    }
}

/******************************************************************************/

@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot?gznsyz');
    src: url('fonts/icomoon.eot?gznsyz#iefix') format('embedded-opentype'),
        url('fonts/icomoon.ttf?gznsyz') format('truetype'),
        url('fonts/icomoon.woff?gznsyz') format('woff'),
        url('fonts/icomoon.svg?gznsyz#icomoon') format('svg');
    font-style: normal;
    font-weight: normal;
}

[class^='icon-'],
[class*=' icon-'] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-Basket::before {
    content: '\e90d';
}
.icon-Check::before {
    content: '\e910';
}
.icon-Error::before {
    content: '\e91d';
}
.icon-Error-2::before {
    content: '\e91e';
}
.icon-Home::before {
    content: '\e927';
}
.icon-Info::before {
    content: '\e92a';
}
.icon-Left::before {
    content: '\e92f';
}
.icon-Mail::before {
    content: '\e935';
}
.icon-Phone::before {
    content: '\e93d';
}
.icon-Right::before {
    content: '\e949';
}
.icon-Search::before {
    content: '\e951';
}

/****************************************************************************/

.dataprocessing {
    display: block;
    line-height: 1.2;
    text-align: left;
}
/*
.dataprocessing .dp-law { display: block; margin: 0 0 5px; opacity: 0.8; }
.dataprocessing .dp-lbl { display: inline-block; }
.dataprocessing .dp-inf { display: block; }
.dataprocessing .dp-dsc { display: block; }
*/
.mfp-bg {
    z-index: 21042;
}
.whiteBackground .mfp-content {
    min-height: 0;
    border-radius: 2rem;
    padding: 3rem 5rem;
}
.mfp-wrap {
    z-index: 21043;
}
/*
.mfp-content ul {
    margin: 0 0 0 25px;
    padding: 0;
}
.mfp-content ul > li {
    list-style: disc;
    margin: 0;
    padding: 1px 0;
}
.mfp-content ol {
    margin: 0 0 0 25px;
    padding: 0;
}
.mfp-content ol > li {
    list-style: decimal;
    margin: 0;
    padding: 1px 0;
}
*/

/****************************************************************************/

@keyframes autofill {
    0% {
    }
    100% {
    }
}
input:-webkit-autofill {
    animation-name: autofill;
}

/****************************************************************************/

.no-js * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

/******************************************************************************/

::-moz-selection {
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2), -1px -1px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: #282828;
}

::selection {
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.2), -1px -1px 0px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: #282828;
}

* {
    /*-webkit-backface-visibility:  hidden;*/
    -webkit-tap-highlight-color: transparent;
}

/* ================================================================================ */
/* ==================================== KONTAKT ==================================== */
/* ================================================================================ */
.contact-container .ib{
    padding: 0;
    margin:0;
}

.concact-text {
    font-size:2rem;
    display: block;
    line-height: 3rem;
    text-align: center;
}
.concact-box-start .concact-text{
    text-align: start;
}
.concact-text-margin {
    margin-top:2rem;
}
.concact-text-margin2{
    margin-top:0.6rem;
}
.concact-text a{
    color:var(--text-dark);
    position: relative;
}

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

.concact-text a:before{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    height:2px;
    width: 100%;
    transform:scaleX(0);
    transform-origin: left;
    transition: 0.2s;
    opacity: 0;
    background-color: var(--text-dark);
}

.concact-text a:hover:before{
    transform:scaleX(1);
    opacity: 1;
}

.concact-box .concact-text:first-of-type {
    margin-top:2rem;
}
.section-span{
    color:#7E7E7E;
}

.concact-box{
    padding:0;
    margin:0;
    height:60rem;
    position:relative;
}
.concact-box.concact-box-main{
    background-image:url('../images/kuvins_footer2.jpg');
    display:flex;
    justify-content:center;
    background-position:center;
}

.concact-box.concact-box-main-mini{
    background-image:url('../media/static/kuvins_concact.jpg');
    display:flex;
    justify-content:center;
    background-position:center;
    max-height:40.8rem;
    margin-top:2rem;
}

.concact-box-main-mini .button,
.concact-box-main .button{
    position:absolute;
    bottom:2rem;
    margin:auto 0;
    font-size: 1.7rem;
    font-weight: 600;
}

.concact-box-map{
    background-image: url(../images/kontakt-mapa2.jpg);
    display: grid;
    place-items: center;
    background-position: center;
}

.concact-box.concact-box-map .concact-pin{
    margin-bottom: 40px;
    margin-left: 18px;
}
.concact-box-map .map-attribution {
    position:absolute;
    right:0;
    bottom:0;
    padding:0.2rem 0.5rem;
    font-size:1.5rem;
    color:var(--text-medium);
    backdrop-filter:blur(2px);
    user-select:none;
}
.ibs-concact{
    display: flex;
    margin-bottom:5rem;
}
.ibs-contact-map {
    background: white;
    position:relative;
    z-index:1;
}
.ibs-contact-map iframe{
    z-index:1;
    position:relative;
    margin-bottom:-0.7rem;
}
.ibs-contact-map:after{
    content:'';
    position:absolute;
    background:white;
    height:100%;
    bottom:0;
    left:0;
    width:100vw;
    left:calc(-50vw + (100% / 2));
    z-index:0;
}
.ibs-concact .ib-concact{
    background:white;
    border-radius:2rem;
    margin:1rem;
    margin-top:8rem;
    max-width:calc(50% - 2rem);
    padding:2rem;
}
.contactIco.contactIco--home {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:0;
    margin:0;
    margin-top:-8rem;
}
.ib.ib-concact.ib-concact-form .mt0{
    font-size:3.5rem;
    font-weight:600;
    line-height:3rem;
    padding:0 3rem;
    padding-top: 2rem;
}

.ib.ib-concact.ib-concact-form .contact-label {
    padding:0 3rem;
}

.ib.ib-concact.ib-concact-form .contact-name {
    font-size:2.2rem;
    line-height:3rem;
    font-weight:500;
    display:block;
    margin-bottom:1rem;
}

.ib.ib-concact.ib-concact-form textarea,
.ib.ib-concact.ib-concact-form .contact-input {
    font-size:2rem;
    line-height:3rem;
    padding:1.6rem 2rem;   
}

.ib.ib-concact.ib-concact-form .lbl-aside {
    font-size:1.3rem;
    line-height:2rem;
    color:#626262;
}

.ib.ib-concact.ib-concact-form .button{
    font-size:2.5rem;
    font-weight:500;
    padding:1.5rem 6.7rem;
}

.ibs.ibs-concact .lbl-error{
    position:absolute;
    top:0.5rem;
    right:3rem;
}
.lbl.dataprocessing.contact-label .lbl-error {
    position:relative;
    left:3rem;
}

@media screen and (max-width:1000px){
    .ibs-concact{
        flex-wrap:wrap;      
        padding-right:2rem;
        margin-top:10rem;
    }
    .ibs-concact .ib-concact{
        min-width:100%;
        width:100%;
        margin-top:2rem;
    }
}

@keyframes heartbeat {
    0%   { transform: scale(1.05); }
    
    8%   { transform: scale(1.06); }
    
    14%  { transform: scale(1.11); }
    22%  { transform: scale(1.035); }
    
    30%  { transform: scale(1.09); }
    38%  { transform: scale(1.05); }

    55%  { transform: scale(1.05); }

    63%  { transform: scale(1.06); }

    69%  { transform: scale(1.11); }
    77%  { transform: scale(1.035); }

    85%  { transform: scale(1.09); }
    93%  { transform: scale(1.05); }

    100% { transform: scale(1.05); }
}
.concact-pin{
    will-change:transform;
    transition:0.25s;
    transform-origin: center;
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
}
.concact-box.concact-box-map:hover .concact-pin{
    transform: scale(1.05);
}
.concact-pin:hover{
    animation: heartbeat 2s infinite;
}

.concact-box-info{
    background-color: #F5F5F5;
    border:1px solid rgba(0,0,0,0.11);
    border-right: 0;
    padding: 5.8rem 0 0 5.2rem;
}

.concact-box-info--img {
    margin-top:-1.9rem;
    margin-left:1.2rem;
}

.concact-box-info--img img{
    width:27rem;
    height:22rem;
}

.ib.ib--concact-1{
    width:33.8%;
}
.ib.ib--concact-2{
    width:32.4%;
}
.ib.ib--concact-3{
    width:33.8%;
}

/* ================================================================================ */
/* ==================================== OPINIE ==================================== */
/* ================================================================================ */
.opinions-container{
    padding:5rem 0;
    overflow: hidden;
}
.opinions-container.opinions-container-product{
    padding:0;
}

.opinions-h{
    font-size:1.5rem;
    color:#7E7E7E;
    margin-bottom:3rem;
    letter-spacing: 0.2rem;
}

.opinions {
    display: flex;
    gap: 0;
    transition: transform .4s ease;
    cursor: pointer;
}

.opinion{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding-right: 5rem;
    flex: 0 0 50%;
    box-sizing: border-box;
}
.opinion.opinion-more {
    display: none;
    visibility: hidden;
}
.opinion-name{
    font-size: 2.5rem;
    color:var(--text-dark);
    margin: 0;
}
.opinion-date{
    color: #7E7E7E;
    font-size: 1.6rem;
}
.opinion-stars{
    font-size: 2.2rem;
    margin-top: 1rem;
    margin-bottom: 0.2rem;
}
.opinion-stars .icon{
    color:var(--primary-color);
}
.opinion-text{
    font-size: 1.8rem;
    color: var(--text-dark);
    text-wrap: wrap;
    margin-top: 1rem;
    line-height:3rem;
}
.button-opinions-text{
    font-weight:600;
}

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

.opinions-nav{
    display:inline-flex;
    gap:1rem;
}
.opinion-button{
    padding-right:9rem;
}
.opinion-icon{
    position:absolute;
    font-size:1.4rem;
    right:3rem;
}
.button-arrow{
    width:5.2rem;
    height:5.2rem;
    border:0.2rem solid #B3B3B3;
    display:grid;
    place-items:center;
    transition: 0.25s;
    cursor: pointer;
    color: #B3B3B3;
}
.button-arrow:hover{
    border-color: var(--text-dark);
    color: var(--text-dark);
}
.button-arrow .icon{
    font-size:4rem;
    font-weight:100;
}
.button-arrow.disabled {
    opacity: .3;
    pointer-events: none;
}

/* ==================== */
.opinions-container-full .opinions {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    pointer-events:none;
}
.opinions-container-full .opinion{
    margin-top:2rem;
    border-bottom:1px solid #E0E0E0;
}
.opinions-container-full .opinion.opinion-more {
    display: flex;
    visibility: visible;
}
.opinions-container-full .opinion:nth-child(1),
.opinions-container-full .opinion:nth-child(2){
    margin-top:0;
}
.opinions-container-full .opinion:last-child,
.opinions-container-full .opinion:nth-child(odd):nth-last-child(2){
    border:none;
}
.opinions-container-full .button-arrow{
    opacity: 0.3;
    pointer-events: none;
}
/* ==================== */


@media screen and (max-width:768px){
    .opinion {
        flex: 0 0 100%;
        box-sizing: border-box;
    }
    .opinions-container-full .opinions {
        grid-template-columns:1fr;
    }
}


/* ================================================================================ */
/* ==================================== BANER ==================================== */
/* ================================================================================ */

.section-baner{
    padding:8rem 0;
}

.section-baner--title{
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    padding-bottom:4rem;
}

.section-baner--image{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================================================================================ */
/* ========================= TABELA - PORÓWNANIE PRODUKTÓW ======================== */
/* ================================================================================ */

.compare-table {
    border:1px solid transparent;
    box-sizing: border-box;
}

.compare-row {
    display:grid;
    grid-template-columns:repeat(var(--compare-count), 1fr);
    text-align: center;
}

.compare-cell {
	border-right: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
    box-sizing:border-box;
    padding:1rem;
    text-wrap: wrap;
    /* word-break: break-all; */
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1.2rem;
    font-size:1.6rem;
}
.compare-cell.compare-cell--feature {
    font-weight:600;
    display: flex;
    align-items: flex-start;
    justify-content:flex-start;
    font-size:1.8rem;
}

a.compare-cell {
    cursor: pointer;
    color: var(--text-dark);
    transition: 0.2s;
}

.compare-color {
    border-radius:50%;
    border:1px solid #848484;
    width:2.5rem;
    height:2.5rem;
}

.compare-row-main .compare-cell{
    display: flex;
    flex-direction: column;
    padding-top:3rem;
    position: relative;
}

.compare-row-main .compare-cell--feature{
    align-items: flex-end;
    flex-direction: row;
}

.compare-row-main .compare-row-title{
    margin-top:1rem;
}

.compare-delete{
    position:absolute;
    top:0;
    right:0;
    width:2.2rem;
    height:2.2rem;
    margin:0 0.5rem;
    border-radius:50%;
    background:#EA2D1E;
    display:grid;
    place-items:center;
    cursor:pointer;
}

.compare-delete:before,
.compare-delete:after{
    content:'';
    position:absolute;
    width:1.4rem;
    height:0.3rem;
    border-radius:1rem;
    background:white;
    transform-origin:center;
    transition:0.2s;
    will-change:transform;
}

.compare-delete:hover:before{
    transform:rotate(-45deg);
}
.compare-delete:hover:after{
    transform:rotate(45deg);
}

.compare-header{
    display:flex;
    align-items:center;
    padding-bottom:1.6rem;
    flex-wrap: wrap;
}
.compare-header .icon{
    font-size:3.6rem;
}
.compare-header .compare-header-big{
    font-size:4.8rem;
    font-weight:700;
    margin:0 2rem;
}
.compare-header .compare-header-text{
    font-size:1.8rem;
    color:#7E7E7E;
}
.compare-top-scroll {
    display: none;
}

@media (max-width: 1000px) {
    .compare-header .icon{
        position:relative;
        left:0;
        right:0;
        margin:auto;
        border-radius:5rem;
        display:grid;
        place-items:center;
        background:black;
        color:white;
        width:7rem;
        height:7rem;
    }
    .compare-header .compare-header-big,
    .compare-header .compare-header-text{
        width:100%;
        text-align:center;
    }
    .compare-table {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .compare-row {
        display: grid;
        grid-template-columns: minmax(12rem, 18rem) repeat(var(--compare-count-mobile), minmax(16rem, 1fr));
        width: 100%;
        min-width: 58rem;
    }
    .compare-cell {
        min-width: 0;
        width: auto;
        scroll-snap-align: start;
    }
    .compare-cell.compare-cell--feature {
        grid-column: 1;
        position: sticky;
        left: 0;
        z-index: 1;
        background: #E0E0E0;
        border-color: white;
        text-align: start;
    }
    .compare-top-scroll {
        position: sticky;
        top: 0;
        z-index: 1;
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        height: 16px;
        background: #fff;
        -webkit-overflow-scrolling: touch;
    }
    .compare-top-scroll-inner {
        height: 1px;
    }
    .compare-table {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .compare-top-scroll::-webkit-scrollbar {
        height: 8px;
    }
    .compare-top-scroll::-webkit-scrollbar-thumb {
        background: #000;
        border-radius: 10px;
    }
    .compare-top-scroll::-webkit-scrollbar-track {
        background: #eee;
    }
}

/* ========================= TABELA - DODAJ BOX ======================== */

.compare-bar {
    background: var(--background-white);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    z-index: 99;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 -2px 4px 0 rgba(0, 0, 0, 0.1);
}

.compare-bar--inner {
    max-width: 152rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.compare-bar--products {
    display: flex;
    gap: 1rem;
}

.compare-bar--product {
    position:relative;
    display:flex;
    border-radius:1rem;
    border:1px solid #E0E0E0;
    min-height:7rem;
    height:7rem;
    min-width:7rem;
    max-width:7rem;
    width:auto;
    align-items:center;
    justify-content:center;
    /* padding:0.1rem; */
    transition:0.25s;
    cursor: pointer;
}
.compare-bar--product img.compare-img-mini {
    border-radius: 0.8rem;
    object-fit: cover;
    height: 100%;
}

.compare-bar--product span{
    position:absolute;
    width:auto;
    bottom:8rem;
    left:0;
    text-wrap:nowrap;
    background:white;
    border-radius:1rem;
    padding:0.4rem 1rem;
    border:1px solid #E0E0E0;
    transition:0.25s;
    transform:translateY(5rem);
    opacity:0;
}

.compare-bar--product span:after{
    content:'';
    position:absolute;
    bottom:-1rem;
    left:2.2rem;
    width: 0; 
    height: 0; 
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1rem solid #E0E0E0;
    transition:0.25s;
}

.compare-bar--product:hover span{
    /* border-color:var(--text-dark); */
    /* color:var(--text-dark); */
    transform:translateY(0);
    opacity:1;
    box-shadow:0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.compare-bar--product:hover span:after{
    border-top-color:var(--text-light);
}

.compare-bar--product img {
    border-radius:5rem;
    height:100%;
    width:auto;
}

.compare-bar .compare-delete{
    margin-top:-0.5rem;
    margin-right:-1rem;
}
.compare-bar--note-full{
    width:100%;
    display:block
}
@keyframes mojaAnimacja {
    0% {
        transform: translateY(101%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.compare-bar--visible{
    animation: mojaAnimacja 0.2s ease-in;
}
.compare-bar--hidden{
    animation: mojaAnimacja 0.2s ease-in reverse;
}
.compare-bar--buttons .button{
    font-weight: 600;
    text-transform: uppercase;
}
@media only screen and (max-width:1000px){
    .box--alert.compare-bar--note {
        font-size:1.8rem;
        padding:1rem;
        max-width:calc(100% - 10rem);
    }
    .compare-bar--buttons .button[data-compare-delete-all] {
        display:none;
    }
    .compare-bar--products {
        width:100%;
        position:relative;
        overflow-x:auto;
        padding-top: 0.5rem;
        max-width:calc(100% - 10rem);
    }
    .compare-bar--products:after{
        content:'';
        position:absolute;
        top:0;
        left:calc(100% - 2rem);
        height:100%;
        width:2rem;
        background-image:linear-gradient(to right, transparent ,white);
    }
}


/* ============================ NEWSLETTER ============================ */
.nwesletter-box {
    display:grid;
    padding:0;
    margin:0;
    place-items:start;
    padding:1rem 0;
}

.nwesletter-box .lbl-aside{
    width:100%;
    padding:0;
}
/* ========================= NEWSY - OGŁOSZENIA ======================== */
.ibs.news{
    display: flex;
    flex-wrap: wrap;
}
.news-item {
    padding:0;
    margin:0;
    margin-bottom:5rem;
}
.news-a {
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    margin:0 1rem;
    overflow:hidden;
    border-radius:3rem 3rem 0 0;
}
.news-a:hover{
    text-decoration:none;
    /* transform:translateY(-0.4rem); */
}
.news-a:hover .button{
    background-color:var(--darkred-color);
    color:var(--text-white);
    border-color:var(--darkred-color);
}
.news-img {
    max-height: 30rem;
    object-fit: cover;
    width: 100%;
}
.news-content {
    text-align: center;
    padding: 1rem;
    padding-bottom: 4.6rem;
}
.news-date {
    font-size:1.2rem;
    color:#7E7E7E;
}
.news-name {
    font-size:3rem;
    line-height:3.5rem;
    color:var(--text-dark);
    margin: 0.5rem 0 2rem 0;
    transition:0.2s;
    will-change:auto;
}
.news-a:hover .news-name{
    color:var(--darkred-color);
}
.news-desc {
    display:flex;
    text-align:justify;
    font-size:1.8rem;
    color:#7E7E7E;
}
.news-content .button{
    margin-top:1.5rem;
    font-size:1.7rem;
    padding:1rem 2.3rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: center;
    display: flex;
    width: 17.1rem;
}

.con-news{
    font-size: 2rem;
    padding:0 1rem;
}

.con-news-date {
    font-size:1.2rem;
    color:#7E7E7E;
    padding:1rem;
    margin-top:2rem;
    line-height:2.5rem;
}

.news-comments {
    margin-top:3rem;
}
.news-comment-text {
    font-size:3.5rem;
    font-weight:600;
    text-transform:capitalize;
    line-height:5rem;
    display:block;
    margin-bottom:1rem;
}
.news-comment {
    background-color: white;
    border-radius:1rem;
    padding:2.5rem 3.3rem;
    margin-bottom:2rem;
    box-shadow:0 0.4rem 1rem 0 rgba(0,0,0,0.15);
}
.news-comment-name {
    font-size:2.5rem;
    line-height:2.5rem;
    margin:0;
    margin-bottom:1rem;
}
.news-comment-content {
    font-size:1.8rem;
    line-height:3rem;
}
.news-comments form{
    display:flex;
    flex-direction:column;
    gap:2rem;
    align-items:flex-start;
}
.news-comments form textarea{
    width:100%;
}
.news-comments form button[type="submit"]{
    background-color:var(--darkred-color);
}
.news-details .ib-sticky {
    position:sticky;
    top:7rem;
}

@media only screen and (max-width:1000px){
    .ibs.news-details .ib{
        width:100%;
    }
}

/* KOSZYK REMOVE */

a[data-cartproducts-remove]{
    padding: 0;
    margin: 0;
    height: auto;
    display: grid;
    place-items: center;
    font-size:2.6rem;
    color:var(--darkred-color);
    will-change:auto;
    transition:0.1s;
    transform:rotate(45deg);
    border-radius:5rem;
    width:2.7rem;
    margin-left:3rem;
}
a[data-cartproducts-remove]:hover{
    text-decoration:unset;
    filter:brightness(0.75);
}

/* MARKI */

.marki-box {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
    justify-content:center;
}

main.content[role="main"]:has(.marki-box){
    padding:2rem 1rem;
}

.marki-box .marki-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    gap: 1rem;
    border:1px solid #E8E8E8;
    border-radius:2rem;
    flex-direction:column;
    background-color: white;
}

.marki-box .marki-item:nth-child(odd) {
    border-right:1px solid#E0E0E0;
}

.marki-box img {
    max-width:20rem;
}
.marki-box span {
    font-weight:500;
    color:var(--text-dark);
    text-transform:uppercase;
    text-wrap:wrap;
    text-align:center;
    transition:0.2s;
}
.marki-box .marki-item:hover{
    text-decoration:none;
    transform: translatey(-0.2em);
    box-shadow:0 0.4rem 0 0 black;
}
.marki-box .marki-item:hover span{
    color:var(--darkred-color);
}

@media only screen and (max-width:1000px){
    .marki-box {
        grid-template-columns:1fr;
    }
    .marki-box .marki-item:nth-child(odd) {
        border-right:unset;
    }
}




/* ========================================================
========================================================
======================================================== */
/* */

.nav-list {
    display:flex;
    width:100%;
    margin-top:-1rem;
}
.nav-li {
    display:flex;
    margin-left: 3.6rem;
    position: static;
    line-height:4.5rem;
    font-size:2rem;
}
.nav-a{
    font-size: 2.1rem;
    font-weight:500;
    color:var(--text-dark);
    text-align:center;
    position:relative;
}
.nav-a:before{
    content:'';
    position:absolute;
    width:100%;
    height:0.2rem;
    bottom:0;
    left:0;
    opacity:0;
    transform-origin:left;
    transform:scaleX(0);
    background:black;
}

.nav-a:hover:before{
    transform:scaleX(1);
    opacity:1;
}
.nav-li.nav-li--first {
    display:flex;
    margin-right: 3.6rem;
    margin-left:0;
    position: static;
    padding-bottom:1rem;
    margin-bottom: -1rem;
}
.nav-li.nav-li--first .icon{
    font-size:1.6rem;
    margin-left:1rem;
    bottom: 0.1rem;
}
.nav-li.nav-li--first .nav-a{
    position: relative;
}
.nav-li.nav-li--first .nav-a:after{
    content:'';
    position:absolute;
    right:-3.4rem;
    top:0;
    bottom:0;
    margin:auto;
    width:3px;
    height:2.7rem;
    background:black;
}
.nav-list-dropdown .nav-li .nav-a:after{
    content:unset;
    background:red
}

.nav-list-dropdown .nav-li .nav-a:before{
    content:'';
    position: absolute;
    width:0.4rem;
    height: 100%;
    left:-2rem;
    top:0;
    background:var(--primary-color);
    transform:scaleX(0);
    opacity:0;
}


ul.nav-list-dropdown .nav-li .nav-list-dropdown-2 .nav-li a.nav-a:hover:before,
.nav-list-dropdown .nav-li:has(.nav-list-dropdown-2:hover) .nav-a:before,
.nav-list-dropdown .nav-li .nav-a:hover:before{
    transform:scaleX(1);
    opacity:1;
}

ul.nav-list-dropdown .nav-li .nav-list-dropdown-2 .nav-li a.nav-a:hover,
.nav-list-dropdown .nav-li:has(.nav-list-dropdown-2:hover) .nav-a,
.nav-list-dropdown .nav-li .nav-a:hover{
    color:var(--primary-color);
}

.nav-list-dropdown .nav-li:has(.nav-list-dropdown-2:hover) .nav-list-dropdown-2 .nav-a:before{
    transform: scale(0);
    opacity: 0;
}
.nav-list-dropdown .nav-li:has(.nav-list-dropdown-2:hover) .nav-list-dropdown-2 .nav-a{
    color:#000;
}



.nav-list-dropdown .nav-li{
    display: grid;
    grid-template-columns:1fr 1fr 2fr;
}

.nav-list-dropdown .nav-li .nav-list-dropdown-2 .nav-a.nav-a-primary,
.nav-list-dropdown .nav-li .nav-a{
    text-align:start;
    font-weight: 600;
}
.nav-list-dropdown .nav-li  .nav-list-dropdown-2 .nav-a{
    font-weight: 500;
}
.nav-li.nav-li--last {
    display:flex;
    margin-left:0rem;
    margin-right:0;
    margin-left: 3.6rem;
}
.nav-li.nav-li--last:nth-last-of-type(2){
    margin-left: auto;
}

.nav-list-dropdown{
    position:absolute;
    width:100%;
    z-index: 1;
    margin-top:5rem;
    background-color: white;
    padding: 2rem 0;
}

.nav-list-dropdown:after{
    content:'';
    top:0;
    left:calc(-50vw + 50%);
    right:0;
    position:absolute;
    width:100vw;
    height:100%;
    margin:auto;
    background:white;
    z-index:-1;
    box-shadow:0 0.4rem 0.8rem rgba(0,0,0,0.15)
}

.nav-li:has(.nav-list-dropdown):hover .nav-list-dropdown{
    display:block;
}
.nav-list-dropdown .nav-a:before,
.nav-list-dropdown .nav-a:after{
    content:unset;
}

.nav-list-dropdown .nav-li .nav-list-dropdown-2{
    position: absolute;
    top: 0;
    left: 25%;
    width: 100%;
    height: 100%;
    padding: 2rem;
}
.nav-list-dropdown .nav-li:hover .nav-list-dropdown-2{
    display:block;
}








/* DLA MENU ZMIANY ===== START ===== */
@media only screen and (min-width:1000px){
    @keyframes navdropdownshow{
        0%{
            transform:scaleY(0.2) translateY(-2rem);
            opacity:0;
        }
        100%{
            transform:scaleY(1) translateY(0);
            opacity:1;
        }
    }
    .nav-list-dropdown{
        transform-origin:top;
        transform:scaleY(1) translateY(0);
        opacity:1;
        transition:0.1s;
        animation:navdropdownhide 0.2s;
    }
    
    .nav-li:hover .nav-list-dropdown{
        animation:navdropdownshow 0.2s;
    }
    ul.nav-list-dropdown{
        padding:0;
        width: unset;
    }
    .nav-list-dropdown .nav-li {
        margin: 0 2rem;
        background: white;
        width: 100%;
    }
    .nav-list-dropdown:before,
    .nav-list-dropdown:after{
        content:unset;
    }
    .nav-list-dropdown .nav-li .nav-list-dropdown-2{
        /* padding:2rem 0; */
        width:100%;
        left:100%;
        background:white;
     }
    .nav-list-dropdown .nav-li .nav-list-dropdown-2 .nav-li{
        padding-left:2rem;
        text-wrap: nowrap;
    }
    .nav-list-dropdown > .nav-li:hover > .nav-list-dropdown-2{
        display:grid;
        background:white;
    }
    .nav-list-dropdown-2{
        padding:0;
    }
    .nav-list-dropdown .nav-li{
        padding:0 2rem;
        width:calc(100% + 5rem) !important;
    }
    .nav-list-dropdown .nav-li:hover{
        max-width:unset;
    }
    ul.nav-list-dropdown .nav-li:first-of-type{
        padding-top:2rem;
    }
    ul.nav-list-dropdown .nav-li:last-of-type{
        padding-bottom:2rem;
    }
    .nav-list-dropdown-2 .nav-li:hover{
        max-width:100%;
    }
}
/* DLA MENU ZMIANY ====== END ====== */



@media only screen and (min-width:1000px){
    /* .nav-a.nav-a--drop .icon {
        display: none;
    } */
    .footer .socials.footer-socials {
        margin-top:7.2rem;
    }

    ul.nav-list-dropdown{
        width: unset;
    }

    .logo-img{
        position: relative;
        left:-2rem;        
    }
     
    .nav-list-dropdown .nav-li{
        display:flex;
        width:auto;
    }
    .nav-list-dropdown .nav-li:hover{
        /* max-width:100%;    */
    }
    .nav-list-dropdown .nav-a{
        z-index:5;
    }
    .nav-list-dropdown-2{
        z-index:1;
    }
    .nav-list-dropdown-2:before {
        content:'';
        width:100%;
        height:100%;
        position:absolute;
        left:-35rem;
        z-index:-5;
    }
    .nav-list-dropdown-2 .nav-li{
        max-width:100%;
    }
    .nav-list-dropdown-2 .nav-a{
        min-width:100%;
    }
    .nav-list-dropdown > .nav-li:hover > .nav-list-dropdown-2 {
        /* display: flex; */
        display: grid;
        padding:0;
    }
    .nav-list-dropdown-2 {
        display: none;
        position: absolute;
        top: 0;
        left: 25%;
        width: 75%;
        height: 100%;
        padding: 2rem 4rem;
        box-sizing: border-box;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
        row-gap: 0;
        column-gap:25%;
    }
    .nav-list-dropdown .nav-li{
        cursor:pointer;
    }
    ul.nav-list-dropdown .nav-li:hover .nav-list-dropdown-2 .nav-li a.nav-a:hover,
    ul.nav-list-dropdown .nav-li .nav-list-dropdown-2 .nav-li:hover a.nav-a,
    .nav-list-dropdown .nav-li:has(.nav-list-dropdown-2:hover) .nav-a,
    .nav-list-dropdown .nav-li:hover .nav-a{
        color:var(--primary-color);
    }
    ul.nav-list-dropdown .nav-li:hover .nav-list-dropdown-2 .nav-li a.nav-a{
        color:black;
    }
    ul.nav-list-dropdown .nav-li:hover .nav-list-dropdown-2 .nav-li:hover a.nav-a:before,
    ul.nav-list-dropdown .nav-li .nav-list-dropdown-2 .nav-li:hover a.nav-a:before,
    .nav-list-dropdown .nav-li:hover .nav-a:before{
        transform: scaleX(1);
        opacity: 1;
    }
    ul.nav-list-dropdown .nav-li:hover .nav-list-dropdown-2 .nav-li a.nav-a:before{
        transform: scaleX(0);
        opacity: 0;
    }

}

@media only screen and (max-width:1200px){
    .nav-li.nav-li--last,
    .nav-li {
        margin-left: auto;
    }
    .nav-li.nav-li--first:after{
        right:-3rem;
    }
    .nav-li.nav-li--last:nth-last-of-type(2){
        margin-left:4rem;
    }
    .nav-list-dropdown{
        padding: 2rem;
    }
    /* .header-content form .input.input-search{
        width: 100%;
        max-width: 250rem;
    } */
}

@media only screen and (max-width:1000px){
    .nav-list-dropdown:after{
        content: unset;
    }
    .nav-li.nav-li--first .nav-a:after{
        display: none;
    }
    .header-content form:first-of-type{
        margin-left: 1rem;
    }
    .nav-list-dropdown .nav-li .nav-list-dropdown-2 .nav-a.nav-a-primary{
        display: none;
    }
    .nav-list-dropdown .nav-li .nav-a .icon{
        transition:0.2s;
    }

    .nav-list-dropdown .nav-li:has(.nav-list-dropdown-2:hover) .nav-a .icon,
    .nav-list-dropdown .nav-li .nav-a:hover .icon{
        display:inline-block;
        width:1.8rem;
        transform:rotate(180deg);
    }
    .nav-list {
        flex-direction: column;
        height: 100%;
        overflow: auto;
    }
    .nav-li.nav-li--first{
        padding-bottom:0;
        flex-direction: column;
        align-items: start;
    }
    .nav-li.nav-li--first,
    .nav-li.nav-li--last:nth-last-of-type(2),
    .nav-li.nav-li--last,
    .nav-li{
        margin:0;
        padding:0;
        margin-left:0;
        justify-content:start;
        padding:1rem;
    }
    .nav-li.nav-li--first:after{
        content:unset;
    }

    .nav-list-dropdown{
        position: relative;
        margin-top:1rem;
    }

    .nav-list-dropdown .nav-li,
    .nav-list-dropdown .nav-li.active{
        display: block;
    }
    
    .nav-list-dropdown .nav-li.active .nav-list-dropdown-2 .nav-li{
        text-align: start;
    }

    .nav-li.nav-li--first:hover .nav-list-dropdown,
    .nav-list-dropdown .nav-li .nav-list-dropdown-2{
        display:none !important;
    }
    
    .nav-li.nav-li--first.active .nav-list-dropdown,
    .nav-list-dropdown .nav-li.active .nav-list-dropdown-2{
        padding:0 2rem;
        margin:0;
        display:block !important;
        text-align: start;
    }
    
    .nav-list-dropdown .nav-li .nav-a:hover .nav-list-dropdown-2{
        display:none !important;
    }
    .nav-li.active .nav-list-dropdown-2{
        position:relative;
        display:flex;
        left:0;
    }
}