.section.tuning {
    min-height: calc(100vh - 530px);
}

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

@media (max-width: 800px) {
    .tuning__info {
        flex-direction: column;
    }

    .tuning__info .info__column,
    .tuning__info .info__column--order,
    .tuning__info .info__column--menu {
        margin-bottom: 15px;
    }
}

.tuning__info .info__column,
.tuning__info .info__column--order,
.tuning__info .info__column--menu {
    flex: 1;
}

.tuning__info .tuning__counter {
}

.tuning__info .info__column--order {
    text-align: center;
}

.tuning__info .info__column--menu {
    text-align: right;
}


.tuning-button {
    display: inline-block;
    height: 37px;
    font-size: 14px;
    font-weight: 700;
    background-color: #F3F3F3;
    padding: 7px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    border: 1px solid #A2A2A2;
    color: #000;
    min-width: 115px;
    font-family: "Ubuntu", "Open Sans", "trebuchet MS", sans-serif;
    pointer-events: all;
    text-align: center;
}

.tuning-button--icon {
    background-color: #000;
}

.tuning-button:hover {
    background-color: #1FA84C;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.tuning-button--green {
    background-color: rgb(43, 156, 4);
}

.tuning-button--green-blink {
    background-color: rgb(43, 156, 4);
    animation: blink 0.8s linear infinite;
}

@keyframes blink {
    50% {
        background-color: rgb(56, 210, 5);
    }
}

@keyframes blink {
    50% {
        background-color: rgb(56, 210, 5);
    }
}

.tuning-button--icon {
    min-width: auto;
}

.tuning__container {
    display: flex;
}

.tuning__menu {
    width: 210px;
    margin-right: 16px;
    padding-right: 16px;
    /* border-right: 1px solid #dfdfdf; */
    border-right: 2px solid #1fa84c;
    font-size: 14px;
}

.tuning__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tuning__menu li {
    display: flex;
}

.tuning__menu li a {
    width: 100%;
    color: #fff;
    line-height: 1.5;
}

.tuning__menu li:hover a,
.tuning__menu li.selected a {
    color: #1FA84C;
}

.tuning__menu li + li {
    margin-top: 8px;
}

.tuning__content {
    width: 100%;
    flex: 1;
}

.tuning__header {
    margin-bottom: 40px;
}

.tuning__errors {
    margin-bottom: 16px;
    color: red;
    font-weight: 700;
    text-align: center;
}

.tuning__filter {
    padding-bottom: 24px;
    /* border-bottom: 1px solid #dfdfdf; */
    border-bottom: 2px solid #1fa84c;
}


.tuning__filter .filter__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tuning__filter .filter__container .filter__group {
    width: 100%;
    max-width: 300px;
}

.tuning__filter input[type=text],
.tuning__filter select {
    width: 100%;
    height: 37px;
    border-radius: 3px;
}

.filter__group > label {
    margin: 0 0 8px 0;
    font-weight: 700;
}

.tuning__filter .input--file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.tuning__filter input[type="text"].hasDatepicker {
    width: calc(100% - 33px);
    margin-right: 8px;
}

.filter__group--file {
    flex: 1;
    max-width: unset !important;
}

.filter__group--file .filter__field {
    display: flex;
}

.filter__group--file .tuning-button {
    margin: 0 8px 0 0;
}


.filter__group--file .input--filename {
    flex: 1;
}

.filter__group--button {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
    width: 100%;
    max-width: unset !important;
}

.filter__group--button .tuning-button + .tuning-button {
    margin-left: 16px;
}


.filter__group--buttons {
    grid-column: span 4;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    max-width: unset !important;
}

.filter__group--buttons .tuning-button + .tuning-button {
    margin-left: 24px;
}

.tuning__result {
    width: 100%;
    margin-top: 24px;
}

.tuning__table {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #dfdfdf;
    table-layout: initial;
    text-align: center;
}

.tuning__table * {
    font-family: 'Arial', sans-serif;
    font-weight: normal;
}

.tuning__table thead {
    border: 1px solid rgb(209, 15, 37);
    /* border-bottom: 4px double #dfdfdf; */
}

.tuning__table th {
    border-top: 1px solid #dee2e6;
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: rgb(209, 15, 37);
    color: white;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.tuning__table th a {
    font-weight: bold;
    color: white;
}

.tuning__table td {
    font-family: 'Arial', sans-serif;
    vertical-align: middle;
    padding: 10px;
    word-wrap: break-word;
    font-size: 13px;
    text-transform: uppercase;
}

.tuning__table tr {
    background-color: #f8f9fa;
}

.tuning__table tr:nth-child(odd) {
    background-color: #fff;
}

.tuning__table a {
    color: #000;
    text-decoration: none;
}

.tuning__table .width-50 {
    width: 50px;
}

.tuning__table .width-75 {
    width: 75px;
}

.tuning__table .width-100 {
    width: 100px;
}

.tuning__table .width-150 {
    width: 150px;
}

.tuning__table .width-200 {
    width: 200px;
}

.tuning__table .width-350 {
    width: 350px;
}

.tuning__table .actions {
    display: flex;
}

.tuning__table .actions .tuning-button--icon {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.tuning__table .actions .tuning-button--icon + .tuning-button--icon {
    margin-left: 8px;
}

.tuning__table .actions svg {
    font-size: 16px;
}

.tuning__table--front td {
    padding: 0;
}

.tuning__table--front td a {
    display: block;
    width: 100%;
    padding: 10px 2px;
}

.tuning__table--front tbody tr:hover {
    background-color: #1FA84C;
}

.tuning__table--front tbody tr:hover a {
    color: #FFF;
}

.tuning__table-form {
    width: 700px;
}

.tuning__table-form--single {
    width: 400px;
}

.tuning__table-form td {
    padding: 8px;
    border: none;
    vertical-align: middle;
}

.tuning__table-form td:first-of-type {
    text-align: right;
    text-transform: uppercase;
    font-weight: 600;
}

.tuning__table-form td:last-of-type input[type="text"],
.tuning__table-form td:last-of-type input[type="file"],
.tuning__table-form td:last-of-type input[type="number"],
.tuning__table-form td:last-of-type input[type="password"],
.tuning__table-form td:last-of-type select,
.tuning__table-form td:last-of-type textarea {
    width: 100%;
}

.tuning__table-form td:last-of-type input[type="text"].hasDatepicker {
    width: calc(100% - 33px);
    margin-right: 8px;
}

.tuning__table-form td.sufix input[type="text"],
.tuning__table-form td.sufix input[type="file"],
.tuning__table-form td.sufix input[type="number"],
.tuning__table-form td.sufix input[type="password"],
.tuning__table-form td.sufix select,
.tuning__table-form td.sufix textarea {
    width: calc(100% - 25px);
    margin-right: 5px;
}

.tuning__table-form label {
    margin: 0;
}

.tuning__table-data {
    width: 750px;
}

@media (max-width: 700px) {

    .tuning__table-data,
    .tuning__table-form {
        width: 100%;
    }
}

.tuning__table-data td {
    padding: 8px;
    border: none;
    vertical-align: middle;
    /* color: #fff; */
}

.tuning__table-data td:not(.text--red) {
    color: #fff;
}

.tuning__table-data td:first-of-type {
    font-weight: 700;
    text-align: right;
}

.tuning__table--hexedit td {
    padding: 8px;
}

.tuning__table--hexedit input[type="text"] + input[type="number"] {
    width: 100%;
    height: 22px;
    padding: 0 4px;
    font-family: monospace;
    outline: none;
}

.tuning__table--hexedit select {
    width: 100%;
    outline: none;
}

.tuning__table--hexedit textarea {
    width: 100%;
    height: 36px;
    line-height: 34px;
    resize: none;
    padding: 0 8px;
    font-family: monospace;
    outline: none;
}

.tuning__table--hexedit input[type="text"] + input[type="text"] {
    margin-top: 8px;
}

.tuning__pagination {
    margin-top: 24px;
    margin-bottom: 0;
}

.tuning__buttons {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.tuning__buttons--login {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.tuning__buttons--login .tuning-button:not(:first-child) {
    margin-left: 20px;
}

@media (max-width: 500px) {
    .tuning__buttons--login {
        flex-direction: column;
    }

    .tuning__buttons--login .tuning-button {
        margin-left: 0 !important;
    }

    .tuning__buttons--login .tuning-button:not(:first-child) {
        margin-top: 20px;
    }
}

.tuning__buttons .tuning-button + .tuning-button {
    margin-left: 24px;
}

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

.tuning__message--error {
    color: red;
}

.tuning__message + .tuning__message {
    margin-top: 8px;
}

.tuning__message--infobox {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
    font-weight: 700;
    border: 3px solid red;
    padding: 15px;
    display: none;
}

.tuning__message--infobox.positive {
    border-color: #00ff00;
}

.tuning__message--positive,
.tuning__message--negative {
    display: none;
}

.tuning__submit-button:not(.active) {
    display: none;
}

.tuning__message--infobox.active.positive .tuning__message--positive {
    display: block;
}

.tuning__message--infobox.active:not(.positive) .tuning__message--negative {
    display: block;
}

.tuning__message--infobox.active {
    display: block;
}

.tuning__prices {
    width: 700px;
    display: flex;
    justify-content: space-between;
    margin: 40px auto 0 auto;
}

.tuning__prices .tuning__price {
    padding: 32px;
    text-align: center;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
}

.tuning__prices .tuning__price p + p {
    margin-top: 16px;
}

.tuning__prices .tuning__price a {
    margin-top: 32px;
}


/*=== Product Catalog ===*/
.prodcat__delete input[type=checkbox] {
    position: relative;
    top: 1px;
    margin-right: 3px;
}

.prodcat__delete input[type=submit] {
    margin-left: 30px;
}

.prodcat__catalog {
    float: left;
}

.prodcat__catalog a {
    text-decoration: none;
}

.prodcat__catalog h6 {
    text-align: left;
    line-height: 0.8;
    margin: 10px;
}

.prodcat__catalog h5 {
    text-align: left;
    font-size: 12px;
    margin: 4px 10px;
}

.prodcat__catalog p {
    text-align: left;
}

.prodcat__item {
    padding: 0px;
    background-size: auto 60%;
    background-position: 50% 5px;
    background-color: white;
    /* background-color: black; */
    background-repeat: no-repeat;
    display: inline-grid;
    height: 290px;
    border: 1px solid #e1e1e1;
    position: relative;
    font-size: 14px;
    overflow: hidden;
    color: initial;

}

.prodcat__catalog .prodcat__trash {
    position: absolute;
    top: 5px;
    left: 8px;
}

.prodcat__catalog .prodcat__trash .fa {
    position: relative;
    top: -1px;
    left: 3px;
    width: 12px;
    height: 16px;
}

.prodcat__catalog .prodcat__title {
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    margin-top: 8px;
    color: red;
}

.prodcat__catalog .table--few-columns thead tr th {
    text-align: left;
}

.prodcat__catalog .table--few-columns {
    min-width: unset;
}

.prodcat__catalog .table--few-columns {
    /* margin:5px 0px 0px 0px; */
}


.prodcat__item .prodcat__button {
    transition: all 0.5s ease-in-out;
    opacity: 0;
    text-align: center;
    width: 70%;
    font-size: 12px;
    line-height: 26px;
    margin-bottom: 22px;
    margin-left: 15%;
    position: relative;
    bottom: 0px;
}

.prodcat__item:hover .prodcat__button {
    opacity: 1;
}

.prodcat__button--color:hover {
    background-color: #000 !important;
}

.prodcat__item .prodcat__text {
    position: relative;
    bottom: -190px;
    height: 100%;
    margin-left: 0;
    background-color: rgba(250, 250, 250, 0.6);
    transition: all 0.5s ease;
    justify-content: flex-start;
}

.prodcat__item:hover .prodcat__text {
    bottom: -140px;
    background-color: rgba(250, 250, 250, 0.8);
}

@media (min-width: 1299px) {

    .prodcat__item,
    .prodcat__filters .prodcat__param,
    .prodcat__filters .prodcat__filter_button input {
        width: 25%;
    }
}

@media (max-width: 1299px) {

    .prodcat__item,
    .prodcat__filters .prodcat__param,
    .prodcat__filters .prodcat__filter_button input {
        width: 33.333%;
    }
}

@media (max-width: 991px) {

    .prodcat__item,
    .prodcat__filters .prodcat__param,
    .prodcat__filters .prodcat__filter_button input {
        width: 50%;
    }
}

@media (max-width: 479px) {

    .prodcat__item,
    .prodcat__filters .prodcat__param,
    .prodcat__filters .prodcat__filter_button input {
        width: 100%;
    }

}

.prodcat__filters {
    width: 100%;
}

.prodcat__filters .prodcat__param {
    margin-bottom: 20px;
    display: inline-grid;
}

.prodcat__filters .prodcat__param label {
    font-weight: normal;
}

.prodcat__filters .prodcat__filter_button {
    width: 100%;
}

.prodcat__filters .prodcat__filter_button input {
    width: calc(25% - 26px);
    float: right;
}

.prodcat__filters input,
.prodcat__filters select,
.prodcat__view input,
.prodcat__view select {
    border: 1px solid #e1e1e1;
    background-color: #F8F9FA;
    padding: 1px 18px;
    height: 30px;
    width: 100%;
}

.prodcat__filters input[type=number],
.prodcat__view input[type=number] {
    padding-right: 8px;
}

.prodcat__view input,
.prodcat__view select {
    width: 50%;
}

.prodcat__product h2 {
    text-transform: uppercase;
}

.prodcat__product .prodcat__description {
    display: flex;
}

.prodcat__product .prodcat__picture {
    display: inline-block;
    text-align: center;
    width: 40%;
    margin: 0px 5px;
}

.prodcat__product .prodcat__picture img {
    max-height: 300px;
    margin: 30px 0px;
}

.prodcat__product .prodcat__parameters {
    display: flex;
    line-height: 1.75;
    flex-direction: column;
    width: 60%;
}

.prodcat__parameter {
    display: flex;
    width: 100%;
}

.prodcat__parameter > div {
    display: inline-block;
    flex: 1;
    text-align: right;
}

.prodcat__parameter > div.prodcat__value {
    font-weight: bold;
    text-align: left;
    flex: 3;
    padding-left: 8px;
}

.prodcat__parameter > div.prodcat__desc {
    font-weight: normal;
}

@media (max-width: 991px) {

    .prodcat__product .prodcat__picture,
    .prodcat__product .prodcat__parameters {
        width: 100%;
    }

    .prodcat__product .prodcat__picture img {
        max-height: 150px;
        margin: 10px 0px;
    }

    .prodcat__product .prodcat__description {
        text-align: center;
        display: block;
    }
}

.prodcat__view .prodcat__photos--update {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.prodcat__view .prodcat__photo--update {
    display: flex;
}

.prodcat__view .prodcat__photo_options {
    display: flex;
    flex-direction: column;
}

.prodcat__view .prodcat__photo_options * {
    margin: 4px;
}

.prodcat__view .prodcat__photo_options input {
    height: unset;
    width: unset;
}

.prodcat__view .prodcat__photo--update img {
    height: 70px;
}

/*=== END Product Catalog ===*/


/*=== HEXEDIT TABLE ===*/
table.hexedit-table,
table.hexedit-table textarea,
table.hexedit-table select,
table.hexedit-table td,
table.hexedit-table p {
    color: black;
    font-family: monospace;
    font-size: 22px;
    margin: 0;
    padding: 0;

}

table.hexedit-table textarea {
    border: 1px solid black;
    outline: none;
    resize: none;
    /*overflow: hidden;*/
    height: 1.3em;
    padding: 0.5em;
}

table.hexedit-table.bottom textarea {
    height: auto;
}

table.hexedit-table select {
    padding: 0.5em;
    border: 1px solid black;
}

table.hexedit-table.bottom {
    margin-top: 50px;

}

table.hexedit-table.bottom tbody {
    vertical-align: top;
}

table.hexedit-table tr {
    text-align: center;
}

table.hexedit-table input {
    color: black;
    border: 1px solid black;
    font-size: 16px;
    outline: none;
    resize: none;
}


.hexedit-table table.menu_tab td {
    width: 100%;
    font-size: 16px
}

table.hexedit-table {
    margin-top: 35px;
}

.hexedit-table #float {
    display: none;
    position: fixed;
    padding: 1em;
    align-items: center;
    left: 50px;
    bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    border-width: 1px;
    border-color: black;
    border-style: solid;
    transition: all 3s;
}

.hexedit-table #menu {
    position: relative;
    vertical-align: top;
    font-size: 16px;
    transition: all 3s;
}

.hexedit-table #page {
    overflow-y: auto;
    display: block;
    height: 20em;
    width: 90%;
    border-width: 1px;
    border-color: black;
    border-style: solid;
}

.hexedit-table #menu1 {
    position: sticky;
    top: 100px;
    left: 0;
    right: 0;
    margin: 5px 25px;
}

.hexedit-table .row {
    width: 250px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 4px;
    display: flex;
}

.hexedit-table .col-md-4,
.hexedit-table .col-md-8 {
    display: flex !important;
    flex: 0 0 50%;
    color: black;
    font-family: monospace;
    font-size: 16px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.hexedit-table .col-md-8 input {
    width: 100%;
}

.hexedit-table--normal {
    width: 100%;
    table-layout: fixed;
}

.hexedit-table--normal input {
    width: 100%;
}

.hexedit-table--normal tbody tr th:first-of-type,
.hexedit-table--normal tbody tr td:first-of-type {
    width: 50px;
}

.hexedit-table--advanced {
    width: 100%;
    table-layout: fixed;
}

.hexedit-table--advanced input,
.hexedit-table--advanced textarea {
    width: 100%;
}

.hexedit-table--advanced textarea {
    margin: 0;
}

.hexedit-table--advanced tbody tr th:first-of-type,
.hexedit-table--advanced tbody tr td:first-of-type {
    width: 50px;
}

.hexedit-table--advanced tbody tr th:last-of-type,
.hexedit-table--advanced tbody tr td:last-of-type {
    width: 250px;
}

.hexedit-table--advanced tbody tr td:nth-of-type(3) {
    padding: 0 10px;
}

.login-form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-form input {
    width: 300px !important;
}

.header__mobile.active {
    width: 100vw;
}

.header__mobile.active ul {
    width: 100%;
}

.section {
    background-color: black !important;
    color: white;
}

.section--gray {
    background-color: black !important;
    color: white;
}

.section--white {
    background-color: black !important;
    color: white;
}

.section_color {
    background-color: black;
    color: white;
}

main {
    background-color: black;
}

body {
    background-color: black;
    color: white;
}

.tuning__table * {
    color: white;
}

.tuning__table select option {
    color: black;
}

#tresc-menu {
    background-color: black;
    color: white;
}

.table--few-columns thead tr th {
    background-color: black;
}

#tiles {
    border-top: 2px solid #1FA84C;
}

.menu-buttons {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;
    background: #FFF;
    padding: 8px;
    text-align: center;
}

.menu-buttons .menu-button {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-buttons .menu-button:hover,
.menu-buttons .menu-button:focus {
    color: #1FA84C;
    text-decoration: none;
}

.menu-buttons .menu-button + .menu-button {
    margin-left: 16px;
}

.contact {
    color: #000;
}

.navbar ul li span a {
    color: white !important;
}

.header__mobile {
    background-color: #000;
}

.js-toggleMobileMenu span,
.js-toggleMobileMenu span::after {
    background-color: #fff;
}

@media only screen and (max-width: 1200px) {
    #tiles {
        border: none;
    }
}

.tuning__table-form {
    color: #fff !important;
}

form .tuning__table * {
    color: #000;
}

.footer::before {
    height: 2px;
    background-color: #1FA84C;
}

.footer__bottom::before {
    height: 2px;
    background-color: #1FA84C;
}

.body {
    background: black !important;
}

table.prodcat__view label,
.prodcat__photo_options {
    color: #fff !important;
}

.cms_komunikatok {
    background: #00ff00;
    color: black;
    padding: 20px 30px;
    border: 1px solid #00ff00;
    font-weight: 500;
    position: relative;
}

.cms_komunikatok::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 5px solid #000;
}

.loader {
    width: 50px;
    aspect-ratio: 1.154;
    position: relative;
    background: conic-gradient(from 120deg at 50% 64%, #0000, #00ff00 1deg 120deg, #0000 121deg);
    animation: l27-0 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform-origin: 50% 66%;
    animation: l27-1 1.5s infinite;
}

.loader:after {
    --s: -1;
}


/* HTML: <div class="loader"></div> */
.loader2 {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid #ffffff;
    animation: l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}

.tuning__modification-count-wrapper:not(.active) .loader2 {
    display: none;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }
    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }
    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }
    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }
    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }
    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }
    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }
    49.99% {
        transform: scaleY(1) rotate(135deg)
    }
    50% {
        transform: scaleY(-1) rotate(0deg)
    }
    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}


@keyframes l27-0 {
    0%, 30% {
        transform: rotate(0)
    }
    70% {
        transform: rotate(120deg)
    }
    70.01%, 100% {
        transform: rotate(360deg)
    }
}

@keyframes l27-1 {
    0% {
        transform: rotate(calc(var(--s, 1) * 120deg)) translate(0)
    }
    30%, 70% {
        transform: rotate(calc(var(--s, 1) * 120deg)) translate(calc(var(--s, 1) * -5px), 10px)
    }
    100% {
        transform: rotate(calc(var(--s, 1) * 120deg)) translate(0)
    }
}

input[type=number] {
    border: 1px solid #d6d9df;
    background-color: #f8f9fa;
    font-size: 16px;
    color: #000 !important;
    padding: 5px 18px;
}

.loading-box {
    padding: 45px !important;
}

.container__mirror--differences {
    font-family: monospace;
    position: absolute;
    padding: 0 8px;
    inset: 1px 18px;
    margin-left: 0px;
    text-transform: none;
    text-align: left;
    pointer-events: none;
    line-height: 1.2 !important;
    font-size: 10px !important;
}

.container__mirror--transparent,
.container__mirror--normal {
    font-family: monospace !important;
    color: transparent !important;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.container__mirror--normal::after,
.container__mirror--transparent::after {
    content: ' ';
}

.container__mirror--transparent {
    pointer-events: none;
}

.container__mirror--normal > span {
    background: rgba(0, 46, 255, .65);
    font-family: monospace !important;
    color: transparent !important;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
}

#mercedes-canvas {
    background: #000000;
}

@media (max-width: 1024px) {
    #mercedes-canvas {
        display: none;
    }
}

.tuning__grid {
    display: flex;
    max-width: 700px;
    flex-direction: column;
}

.tuning__grid tbody {
    display: flex;
    flex-direction: column-reverse;
}

.tuning__grid tr {
    display: grid;
    grid-template-columns: 0.3fr 1fr 0.3fr;
}

.tuning__grid tr td input {
    width: 100%;
}

.new-checkbox span,
.new-checkbox label {
    user-select: none;
    cursor: pointer;
}

.new-checkbox input {
    display: none;
}

.new-checkbox span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #00ff00;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.new-checkbox input:checked + span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #00ff00;
}

.black-mode {
    background-color: black;
    color: white;
}

.black-mode .autoecu-table__header {
    background-color: black;
}

.autoecu-table__content,
.autoecu-table__column,
.autoecu-table__header,
.autoecu-table__row {
    border-color: #8d8d8d;
}

.black-mode .tuning__filter {
    border-color: #8d8d8d;
}

.black-mode label {
    color: white;
}

.black-mode table {
    border-color: #8d8d8d;
}

.black-mode td {
    color: white;
    border-color: #8d8d8d;
}

.black-mode th {
    color: white;
    border-color: #8d8d8d;
}

.black-mode th a {
    color: white;
    border-color: #8d8d8d;
}

.black-mode .tuning__table thead {
    background-color: black;
    color: white;
    border-color: #8d8d8d;
}

.black-mode .tuning__table thead tr {
    background-color: black;
    color: white;
    border-color: #8d8d8d;
}

.black-mode .tuning__table thead th {
    background-color: rgb(170, 17, 35);
    color: white;
    border-color: #8d8d8d;
}

.black-mode .tuning__table tr {
    background-color: black;
}

.black-mode .tuning__table--hexedit {
    border-color: black;
}

.black-mode .tuning__table--hexedit td {
    border-color: black;
}

.black-mode .tuning__table--hexedit th {
    border-color: black;
}

.black-mode .tuning__table--hexedit,
.black-mode .tuning__table--hexedit textarea,
.black-mode .tuning__table--hexedit td,
.black-mode .tuning__table--hexedit p,
.black-mode .tuning__table--hexedit select,
.black-mode .tuning__table--hexedit input {
    color: lightgreen !important;
    background: rgba(0, 0, 0, .9);
    font-family: monospace;
    font-size: 22px;
}

.black-mode .tuning__table--hexedit select:focus {
    background-color: white;
}

.black-mode .tuning__table--hexedit input,
.black-mode .tuning__table--hexedit textarea,
.black-mode .tuning__table--hexedit select {
    border-color: green !important;
}

.black-mode .hexedit-table * {
    background-color: black;
    color: lightgreen !important;
}

.black-mode .hexedit-table input:not([type='file']),
.black-mode .hexedit-table select,
.black-mode .hexedit-table textarea {
    border-color: green;
}

label {
    /* color: white; */
}

.article-info {
    /* position: absolute; */
    /* top: 65px; */
    margin-top: 90px;
    margin-bottom: 150px;
    width: 50%;
    z-index: 90;
}

@media only screen and (max-width: 1000px) {
    .article-info {
        position: static;
        width: 100%;
    }
}

.popup {
    position: fixed;
    width: 100%;
    max-width: 800px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-color: #000;
    padding: 50px;
    z-index: 100000;
    border-radius: 10px;
    height: fit-content;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.75);
    border: 2px solid #1FA84C;
}

.popup-img {
    width: 100%;
    height: 100%;
    display: flex;
}

.popup-img img {
    max-width: 100%;
}

.popup-close-button {
    position: absolute;
    right: 10px;
    top: 7px;
    background-color: transparent;
    outline: none;
    border: none;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

@media (max-width: 900px) {
    .popup {
        padding: 30px;
        max-width: 90%;
    }

    .popup-close-button {
        top: 0px;
        right: 5px;
        font-size: 20px;
    }
}

.discount-popup__title {
    text-align: center;
    color: white;
    font-size: 25px;
    font-weight: 650;
}

.discount-popup__subtitle {
    text-align: center;
    color: rgb(219, 203, 203);
    font-size: 18px;
}

.discount-popup__image {
    height: 300px;
    margin: 20px;
}

.discount-popup__image-containter {
    display: flex;
    justify-content: center;
}

.discount-popup__body {
    padding: 30px;
}

.popup-dont-show-again-button {

}

.discount-popup__subtitle--date {
    text-align: center;
    color: white;
    font-size: 13px;
}

.tuning__details-file {
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 5px;
    max-width: 300px;
    margin-bottom: 25px;
    text-decoration: none;
    color: #333;
}

.tuning__details-file:hover {
    border-color: #008000;
    text-decoration: none;
    color: #008000;
}

.tuning__details-file {
    transition: 0.3s all;
}

.tuning__details-file:hover p {
    color: #008000;
}

.tuning-button--smaller {
    padding: 5px 8px;
    height: 28px;
    font-size: 11px;
    min-width: auto;
}

.tuning__details {
    background: #efefef;
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
    padding: 25px 35px;
    max-width: 1100px;
    margin: auto;
}

@media (max-width: 991px) {
    .tuning__details {
        grid-template-columns: 1fr;
    }
}

.tuning__details .tuning__table-form td:first-of-type {
    text-align: left;
}

.tuning__details h4 {
    font-size: 1rem;
    font-weight: bold;
}

.tuning__details h4,
.tuning__details .tuning__table-form td,
.tuning__details .tuning__table-form td label {
    color: black;
}

.tuning__details .tuning__table-form td {
    font-size: 13px;
    padding: 2px 8px;
}

.tuning__details .tuning__table-form {
    width: 100%;
}


.tuning__details .tuning__table-highlight-row td,
.tuning__details .tuning__table-highlight-row td label {
    color: #ff0000;
    font-weight: 600;
}
