:root {
    --container-width: 1490px;
    --blue: #0055B8;
    --blue-sea: #3ca8ff;
    --blue-light: #D5E3F4;
    --green: #248b5f;
    --red: #b60e0e;
    --grey: #6d6d6d;
    --grey-dark: #232323;
    --grey-light: #e5e5e5;
    --font: 'Inter', Arial, Helvetica, sans-serif;
    --font-huge: 35px;
    --font-big: 28px;
    --font-medium: 22px;
}

body {
    width: 100%;
    margin: 0;
    padding: 194px 0 0;
    background-color: #fff;
    color: var(--grey-dark);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    overflow-x: hidden;
}

.container-full {
    clear: both;
    position: relative;
    width: 100%;
}

.container {
    clear: both;
    position: relative;
    width: var(--container-width);
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 26;
}
header.fixed {
}

header .container {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 5px;
}
header .container:before {
    position: absolute;
    top: 0;
    left: 20%;
    width: 80vw;
    height: 100%;
    background: url("../img/bg-header.jpg") 0 0 no-repeat;
    background-size: cover;
    content: "";
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    z-index: 2;
}
.logo img {
    width: 230px;
}

header .container > div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0 50px;
}

header .container > div ul {
    flex: 0 0 100%;
    margin: 0;
    padding: 2px 0 0;
    list-style-type: none;
    text-align: right;
}
header .container > div ul li {
    display: inline;
    margin-left: 10%;
    color: #fff;
}
header .container > div ul li a {
    text-decoration: none;
}

.header-search {
    position: relative;
}

.header-search input {
    position: relative;
    width: 260px;
    height: 28px;
    padding: 0 40px 0 10px;
    border: 0;
    background-color: #f8f8f8 !important;
    color: var(--blue);
}

.header-search button {
    position: absolute;
    top: 15px;
    right: 0;
    width: 28px;
    height: 28px;
    border: 0;
    background-color: #fff;
    cursor: pointer;
}
.header-search button:hover {
}

.header-search button img {
    height: 14px;
    transition: all 350ms linear;
}
.header-search button:hover img {
}

.header-right {
    padding: 15px 0 5px;
}

.header-right p {
    margin: 7px 0;
    color: #fff;
    font-size: 14px;
}

.header-right a, .header-right a:hover {
    text-decoration: none;
}

.header-right img {
    position: relative;
    top: 1px;
    max-height: 11px;
    margin-right: 3px;
}

.menu-main {
    border-top: 2px solid #000;
    background-color: var(--blue);
    color: #fff;
}
.menu-main nav {
    width: var(--container-width);
    margin: auto;
}
.menu-main nav > ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    border-left: 3px solid #fff;
    transform: skewX(32deg);
    list-style-type: none;
}
.menu-main nav > ul + ul,
.menu-main nav > p {
    display: none;
}
.menu-main nav > ul > li {
    position: relative;
    flex: 1 1 0;
    border-right: 3px solid #fff;
    color: #fff;
}
.menu-main nav > ul > li > * {
    transform: skewX(-32deg);
}
.menu-main nav > ul > li > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 15px 2px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}
.menu-main nav > ul > li:hover {
    background-color: var(--blue-sea);
}
.menu-main nav ul li.active a, .menu-main nav ul li a:hover {
    text-decoration: none;
}
.menu-main .level-2 {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    width: var(--container-width);
    margin: auto;
    padding-top: 30px;
    padding-bottom: 35px;
    border-bottom: 2px solid #cecece;
    background-color: #fbfbfb;
    color: initial;
    transform-origin: 0 0;
    text-align: left;
    z-index: 23;
}
.menu-main .level-2:before, .menu-main .level-2:after {
    position: absolute;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100%;
    border-bottom: 2px solid #cecece;
    background-color: #fbfbfb;
    content: "";
    z-index: 2;
}
.menu-main .level-2:after {
    left: auto;
    right: -100vw;
}
.menu-main .level-2 > p {
    display: none;
}
.level-2-overflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-height: 65vh;
    overflow-y: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
.level-2-overflow::-webkit-scrollbar {
    display: none;  /* Older Safari and Chromium */
}
.menu-main ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.menu-main a {
    text-decoration: none;
}
.menu-box {
    position: relative;
    padding: 10px;
    border: 1px solid #D8D8D8;
    background-color: #fff;
}
.menu-box:before {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-right: 1px solid #D8D8D8;
    background-color: #fbfbfb;
    content: '';
    transform: rotate(-48deg) translate(-76%);
}
.menu-box > div {
    display: grid;
    grid-template-columns: 60px auto;
    gap: 0 15px;
    min-height: 65px;
}
.menu-box > div p {
    margin: 0;
}
.menu-box > div a {
    margin-top: 10px;
    color: var(--blue);
    font-weight: bold;
}
.menu-main .level-3 {
    float: right;
    width: calc(100% - 75px);
    height: 67px;
    /*height: 130px;*/
    overflow: hidden;
}
.menu-box.active .level-3 {
    height: auto;
    overflow: auto;
}
.menu-main .level-3 li {
    padding: 2px 0;
}
/*
.menu-main .level-3 li + li + li + li {
    display: none;
}
.menu-main .menu-box.active .level-3 li + li + li + li {
    display: block;
}
*/
/*
.menu-main .level-3 > li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
*/
.menu-main .level-3 a:hover {
    color: var(--blue);
}
.main-menu-toggle {
    clear: both;
    display: block;
    margin-top: 5px;
    color: var(--blue);
    font-size: 20px;
    text-align: center;
}
.main-menu-toggle span {
    display: inline-block;
    transform: rotate(90deg);
}
.menu-box.active .main-menu-toggle span {
    transform: rotate(270deg);
}

.nav-div {
    width: 30%;
    padding: 0 0 0 20px;
    text-transform: none;
    text-align: center;
}
.nav-div a, .nav-div a:hover {
    color: var(--purple);
    text-decoration: underline;
}

.menu-responsive {
    display: none;
    position: fixed;
    top: 37px;
    right: 3vw;
    width: 26px;
    height: 20px;
    font-size: 0;
    z-index: 49;
}
.menu-responsive span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menu-responsive span:nth-child(1) {
    top: 0;
}
.menu-responsive span:nth-child(2), .menu-responsive span:nth-child(3) {
    top: 8px;
}
.menu-responsive span:nth-child(4) {
    top: 16px;
}
.menu-responsive.active span:nth-child(1) {
    top: 8px;
    left: 50%;
    width: 0;
}
.menu-responsive.active span:nth-child(2) {
    transform: rotate(45deg);
}
.menu-responsive.active span:nth-child(3) {
    transform: rotate(-45deg);
}
.menu-responsive.active span:nth-child(4) {
    top: 8px;
    left: 50%;
    width: 0;
}

#inquiryModal .h3 {
    text-align: center;
}

#RequestForm {
    display: grid;
    gap: 0 15px;
    color: var(--blue);
}

#RequestForm > *:nth-child(5), #RequestForm > *:nth-child(6) {
    grid-column: 1 / -1;
}

#RequestForm p {
    margin: 5px 0;
}

#RequestForm input:not([type='checkbox']) {
    width: 100%;
    height: 27px;
    margin-top: 8px;
    border: 1px solid #dcdcdc;
}

#RequestForm textarea {
    width: 100%;
    height: 120px;
    margin-top: 8px;
    padding: 5px 10px;
    border: 1px solid #dcdcdc;
}

#RequestForm > *:last-child {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 25px;
    padding: 10px 0;
}

#RequestForm .font13 input {
    position: relative;
    top: 1px;
    left: -3px;
}

.site-offer {
    padding-top: 25px;
    padding-bottom: 35px;
}

.offer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 15px 0;
}

.offer a {
    text-decoration: none;
}

.offer > div {
    position: relative;
    padding: 5px 20px 10px;
    border: 1px solid var(--blue-light);
    background-color: #fff;
    color: var(--blue);
    text-align: left;
}
.offer > div.active {
    box-shadow: 0 5px 10px #cecece;
    z-index: 8;
}

.offer-tag {
    position: absolute;
    top: 1px;
    right: 15px;
    z-index: 2;
}
.offer-tag img {
    max-height: 24px;
}

.offer-img {
    height: 190px;
    text-align: center;
}
.offer-img img {
    max-height: 100%;
}

.offer-menu {
    position: relative;
    height: 80px;
    overflow: hidden;
}
.active .offer-menu {
    overflow: visible;
}

.offer-menu > div {
    position: absolute;
    left: -21px;
    right: -21px;
    padding: 0 20px 35px;
    background-color: #fff;
    border: 1px solid var(--blue-light);
    border-top: 0;
}
.active .offer-menu > div {
    box-shadow: 0 10px 10px #cecece;
}

.offer-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.offer-menu ul li {
    padding: 6px 0;
    border-top: 1px solid var(--blue-light);
    font-weight: bold;
}

.offer-menu ul li a {
    text-decoration: none;
}

.offer-menu-toggle {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: block;
    padding: 0 0 10px;
    background-color: #fff;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    z-index: 3;
}
.offer-menu-toggle:hover {
    text-decoration: none;
}
.offer-menu-toggle span {
    display: inline-block;
    transform: rotate(90deg);
}
.active .offer-menu-toggle span {
    transform: rotate(270deg);
}
.active .offer-menu .offer-menu-toggle {
    top: auto;
    bottom: 0;
}

.site-home {
    padding: 20px 0 50px;
    background: url("../img/bg-site-home.png") 0 0 no-repeat;
    background-size: cover;
}

.site-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 35px;
}

.site-logos img {
    max-width: 115px;
    max-height: 85px;
}

.site-articles {
    padding-top: 25px;
    padding-bottom: 35px;
    text-align: left;
}

.site-articles .title {
    color: var(--blue);
}

.articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 15px;
    padding-bottom: 30px;
}

.articles a, .articles a:hover {
    text-decoration: none;
}

.articles > div {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 3fr;
    background-color: #fff;
}

.articles > div:after {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 67px;
    height: 67px;
    background: url("../img/mn.svg") 0 0 no-repeat;
    content: "";
    z-index: 2;
}

.articles-img {
    position: relative;
    width: 100%;
    margin: 0;
}

.articles-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 100%;
    margin: auto;
    z-index: 2;
}

.articles-img + * {
    position: relative;
    padding: 5px 20px;
}

.articles-text {
    height: 110px;
    margin-top: -15px;
    overflow: hidden;
}

.articles-date {
    position: absolute;
    left: 20px;
    bottom: -10px;
    color: var(--grey);
    font-size: 12px;
    text-transform: uppercase;
    z-index: 2;
}

.site-articles .link {
    text-align: center;
}

.site-content {
    padding-top: 15px;
    padding-bottom: 45px;
    text-align: left;
}
.site-content:first-of-type {
    min-height: 62vh;
}

.breadcrumbs {
    margin-top: 0;
    padding: 0 0 10px;
    color: #9a9a9a;
    font-size: 12px;
}
.breadcrumbs a {
    position: relative;
    display: inline-block;
    margin-right: 23px;
}
.breadcrumbs a:after {
    position: absolute;
    top: -3px;
    right: -19px;
    content: "→";
    font-size: 15px;
}

/* ul.ok1 {
    margin-left: 54px;

} */


ul.ok1 li{
   padding-bottom: 15px;

}

.content-title {
/*    display: grid;
    grid-template-columns: 3fr 1fr;*/
    gap: 0 7%;
    padding-bottom: 30px;
}

img.send-right {
    float:right;
}
.content-title > *:last-child {
    text-align: right;
}

.content-title > *:last-child img {
    max-height: 80px;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 15px;
    padding-bottom: 35px;
}
.categories > div {
    padding: 15px 25px;
    border: 1px solid #D8D8D8;
    background-color: #fff;
    transition: all 350ms linear;
    text-align: center;
}
.categories > div:hover {
    border: 1px solid #6a6a6a;
}
.categories h2 {
    font-size: 22px;
}
.categories a, .categories a:hover {
    text-decoration: none;
}
.category-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}
.category-img img {
    max-height: 100%;
}

img[alt='bila2'] {
    visibility: hidden;
}

.detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3%;
    padding-bottom: 30px;
}

.detail-img {
    padding: 15px 35px;
    border: 2px solid #EFEFEF;
    text-align: center;
    overflow: hidden;
}

.detail > *:last-child {
    position: relative;
}

.detail h1 {
    margin: 25px 0;
    color: var(--color);
}

.detail-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.detail-logo img {
    max-height: 80px;
}

.detail-prislusenstvi {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.detail-prislusenstvi > * {
    flex: 0 0 190px;
}

.detail-katalog,
.detail-katalogovy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 25px;
}
.detail-katalog > *,
.detail-katalogovy-list > * {
    max-width: 180px;
}

.detail-odkazy > * {
    max-width: 180px;
}

.box-grey {
    position: relative;
    padding: 10px 25px 15px;
    border: 2px solid #EFEFEF;
    background-color: #fff;
    min-height: 150px;
}

.content-title img:first-of-type {

    margin: 0 0 1em 1em;
}
.content-title p > img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 120px; !important/* mezera mezi obrázky */
}



.box-grey:before {
    position: absolute;
    bottom: -12px;
    left: -13px;
    width: 20px;
    height: 20px;
    border-right: 2px solid #EFEFEF;
    background: #fff;
    content: '';
    transform: rotate(315deg);
}

.tabs-menu {
    display: flex;
    margin: 20px 0;
    padding: 0;
    list-style-type: none;
}
.tabs-menu li {
    flex-grow: 1;
    position: relative;
    border: 1px solid var(--blue);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
.tabs-menu li:first-child:before {
    position: absolute;
    bottom: -7px;
    left: -8px;
    width: 13px;
    height: 13px;
    border-right: 1px solid var(--blue);
    background: #fff;
    content: '';
    transform: rotate(315deg);
}
.tabs-menu li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
}
.tabs-menu li.active a, .tabs-menu li a:hover {
    background-color: #fff;
    color: var(--blue);
}

.tabs {
    padding-top: 5px;
}
.tabs > * {
    display: none;
}
.tabs > *.active {
    display: block;
}

.detail-katalog .item img {
    max-height: 180px;
}
.detail-modely-list {
    display: flex;
    gap: 0 30px;
    flex-wrap: wrap;
}
.detail-modely-list .item img {
    max-height: 60px;
}
.ext-list .subcategory {
    display: flex;
    gap: 0 30px;
    flex-wrap: wrap;
}
.ext-list .subcategory .item {
    display: flex;
    align-items: center;
}
.ext-list .item img {
    max-height: 60px;
    margin-right: 10px;
}

.news-list {
    padding: 10px 0;
}
.news-list a {
    position: relative;
    display: grid;
    grid-template-columns: 300px auto;
    align-items: center;
    margin: 0 0 20px;
    border: 1px solid #fff;
    text-decoration: none;
}
.news-list a:after {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 67px;
    height: 67px;
    background: url("../img/mn.svg") 0 0 no-repeat;
    content: "";
    z-index: 2;
}
.news-list a:hover {
    border: 1px solid #d8d8d8;
    text-decoration: none;
}
.news-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin: 0;
    font-size: 0;
    overflow: hidden;
}
.news-img img {
    max-height: 100%;
}
.news-img + div {
    position: relative;
    padding-left: 35px;
}
.news-text {
}
.news-text + p {
    padding-top: 20px;
    color: var(--grey);
    font-size: 13px;
}

.news-detail {
    padding-left: 15%;
    padding-right: 15%;
}
.news-detail-img {
    padding: 20px 0;
}
.news-detail-img img {
}

.manufacturer-detail-img {
    padding: 20px 0;
}
.manufacturer-detail-img img {
    width: 200px;
}

.pagination {
    padding: 25px 0 15px;
    text-align: center;
}
.pagination ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.pagination li {
    display: inline-block;
    padding: 0 2px;
}
.pagination a {
    position: relative;
    display: block;
    padding: 5px 10px;
    border: 1px solid var(--blue);
    color: var(--blue);
    text-decoration: none;
}
.pagination a:hover {
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
}
.pagination a:before {
    position: absolute;
    left: 1px;
    bottom: 1px;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid var(--blue);
    transform: rotate(45deg);
    content: '';
    z-index: 2;
}
.pagination a:after {
    position: absolute;
    left: -6px;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background-color: #fbfbfb;
    transform: rotate(45deg);
    content: '';
    z-index: 3;
}

.gallery {
    display: flex;
}

.table {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
    border: 1px solid #383838;
    border-collapse: collapse;
    empty-cells: show;
    box-shadow: 0 0 10px #555;
    text-align: center;
    overflow: hidden;
}
.table th, .table td {
    position: relative;
    padding: 2px 7px;
    border: 1px solid #383838;
}
.table tr:nth-child(odd) {
    background-color: #f0f8ff;
}
.table tr:hover {
    background-color: #b1e0ff;
}
/*
.table:has(tr > *:nth-child(1):hover) tr > *:nth-child(1),
.table:has(tr > *:nth-child(2):hover) tr > *:nth-child(2),
.table:has(tr > *:nth-child(3):hover) tr > *:nth-child(3),
.table:has(tr > *:nth-child(4):hover) tr > *:nth-child(4),
.table:has(tr > *:nth-child(5):hover) tr > *:nth-child(5),
.table:has(tr > *:nth-child(6):hover) tr > *:nth-child(6),
.table:has(tr > *:nth-child(7):hover) tr > *:nth-child(7),
.table:has(tr > *:nth-child(8):hover) tr > *:nth-child(8),
.table:has(tr > *:nth-child(9):hover) tr > *:nth-child(9),
.table:has(tr > *:nth-child(10):hover) tr > *:nth-child(10),
.table:has(tr > *:nth-child(11):hover) tr > *:nth-child(11),
.table:has(tr > *:nth-child(12):hover) tr > *:nth-child(12),
.table:has(tr > *:nth-child(13):hover) tr > *:nth-child(13),
.table:has(tr > *:nth-child(14):hover) tr > *:nth-child(14),
.table:has(tr > *:nth-child(15):hover) tr > *:nth-child(15),
.table:has(tr > *:nth-child(16):hover) tr > *:nth-child(16),
.table:has(tr > *:nth-child(17):hover) tr > *:nth-child(17),
.table:has(tr > *:nth-child(18):hover) tr > *:nth-child(18),
.table:has(tr > *:nth-child(19):hover) tr > *:nth-child(19),
.table:has(tr > *:nth-child(20):hover) tr > *:nth-child(20),
.table:has(tr > *:nth-child(21):hover) tr > *:nth-child(21),
.table:has(tr > *:nth-child(22):hover) tr > *:nth-child(22),
.table:has(tr > *:nth-child(23):hover) tr > *:nth-child(23),
.table:has(tr > *:nth-child(24):hover) tr > *:nth-child(24),
.table:has(tr > *:nth-child(25):hover) tr > *:nth-child(25),
.table:has(tr > *:nth-child(26):hover) tr > *:nth-child(26),
.table:has(tr > *:nth-child(27):hover) tr > *:nth-child(27),
.table:has(tr > *:nth-child(28):hover) tr > *:nth-child(28),
.table:has(tr > *:nth-child(29):hover) tr > *:nth-child(29),
.table:has(tr > *:nth-child(30):hover) tr > *:nth-child(30),
.table:has(tr > *:nth-child(31):hover) tr > *:nth-child(31),
.table:has(tr > *:nth-child(32):hover) tr > *:nth-child(32),
.table:has(tr > *:nth-child(33):hover) tr > *:nth-child(33),
.table:has(tr > *:nth-child(34):hover) tr > *:nth-child(34),
.table:has(tr > *:nth-child(35):hover) tr > *:nth-child(35),
.table:has(tr > *:nth-child(36):hover) tr > *:nth-child(36),
.table:has(tr > *:nth-child(37):hover) tr > *:nth-child(37),
.table:has(tr > *:nth-child(38):hover) tr > *:nth-child(38),
.table:has(tr > *:nth-child(39):hover) tr > *:nth-child(39),
.table:has(tr > *:nth-child(40):hover) tr > *:nth-child(40) {
    background-color: #b1e0ff;
}
.table.table_row_1:has(tr > *:nth-child(1):hover) tr:first-child > *:nth-child(1),
.table.table_row_1:has(tr > *:nth-child(2):hover) tr:first-child > *:nth-child(2),
.table.table_row_1:has(tr > *:nth-child(3):hover) tr:first-child > *:nth-child(3),
.table.table_row_1:has(tr > *:nth-child(4):hover) tr:first-child > *:nth-child(4),
.table.table_row_1:has(tr > *:nth-child(5):hover) tr:first-child > *:nth-child(5),
.table.table_row_1:has(tr > *:nth-child(6):hover) tr:first-child > *:nth-child(6),
.table.table_row_1:has(tr > *:nth-child(7):hover) tr:first-child > *:nth-child(7),
.table.table_row_1:has(tr > *:nth-child(8):hover) tr:first-child > *:nth-child(8),
.table.table_row_1:has(tr > *:nth-child(9):hover) tr:first-child > *:nth-child(9),
.table.table_row_1:has(tr > *:nth-child(10):hover) tr:first-child > *:nth-child(10),
.table.table_row_1:has(tr > *:nth-child(11):hover) tr:first-child > *:nth-child(11),
.table.table_row_1:has(tr > *:nth-child(12):hover) tr:first-child > *:nth-child(12),
.table.table_row_1:has(tr > *:nth-child(13):hover) tr:first-child > *:nth-child(13),
.table.table_row_1:has(tr > *:nth-child(14):hover) tr:first-child > *:nth-child(14),
.table.table_row_1:has(tr > *:nth-child(15):hover) tr:first-child > *:nth-child(15),
.table.table_row_1:has(tr > *:nth-child(16):hover) tr:first-child > *:nth-child(16),
.table.table_row_1:has(tr > *:nth-child(17):hover) tr:first-child > *:nth-child(17),
.table.table_row_1:has(tr > *:nth-child(18):hover) tr:first-child > *:nth-child(18),
.table.table_row_1:has(tr > *:nth-child(19):hover) tr:first-child > *:nth-child(19),
.table.table_row_1:has(tr > *:nth-child(20):hover) tr:first-child > *:nth-child(20),

.table.table_row_2:has(tr > *:nth-child(1):hover) tr:first-child > *:nth-child(1),
.table.table_row_2:has(tr > *:nth-child(1):hover) tr:first-child + tr > *:nth-child(1),
.table.table_row_2:has(tr > *:nth-child(2):hover) tr:first-child > *:nth-child(2),
.table.table_row_2:has(tr > *:nth-child(2):hover) tr:first-child + tr > *:nth-child(2),
.table.table_row_2:has(tr > *:nth-child(3):hover) tr:first-child > *:nth-child(3),
.table.table_row_2:has(tr > *:nth-child(4):hover) tr:first-child > *:nth-child(4),
.table.table_row_2:has(tr > *:nth-child(5):hover) tr:first-child > *:nth-child(5),
.table.table_row_2:has(tr > *:nth-child(6):hover) tr:first-child > *:nth-child(6),
.table.table_row_2:has(tr > *:nth-child(7):hover) tr:first-child > *:nth-child(7),
.table.table_row_2:has(tr > *:nth-child(8):hover) tr:first-child > *:nth-child(8),
.table.table_row_2:has(tr > *:nth-child(9):hover) tr:first-child > *:nth-child(9),
.table.table_row_2:has(tr > *:nth-child(10):hover) tr:first-child > *:nth-child(10),
.table.table_row_2:has(tr > *:nth-child(11):hover) tr:first-child > *:nth-child(11),
.table.table_row_2:has(tr > *:nth-child(3):hover) tr:first-child + tr > *:nth-child(3),
.table.table_row_2:has(tr > *:nth-child(4):hover) tr:first-child + tr > *:nth-child(4),
.table.table_row_2:has(tr > *:nth-child(5):hover) tr:first-child + tr > *:nth-child(5),
.table.table_row_2:has(tr > *:nth-child(6):hover) tr:first-child + tr > *:nth-child(6),
.table.table_row_2:has(tr > *:nth-child(7):hover) tr:first-child + tr > *:nth-child(7),
.table.table_row_2:has(tr > *:nth-child(8):hover) tr:first-child + tr > *:nth-child(8),
.table.table_row_2:has(tr > *:nth-child(9):hover) tr:first-child + tr > *:nth-child(9),
.table.table_row_2:has(tr > *:nth-child(10):hover) tr:first-child + tr > *:nth-child(10),
.table.table_row_2:has(tr > *:nth-child(11):hover) tr:first-child + tr > *:nth-child(11),
.table.table_row_2:has(tr > *:nth-child(12):hover) tr:first-child + tr > *:nth-child(12),
.table.table_row_2:has(tr > *:nth-child(13):hover) tr:first-child + tr > *:nth-child(13),
.table.table_row_2:has(tr > *:nth-child(14):hover) tr:first-child + tr > *:nth-child(14),
.table.table_row_2:has(tr > *:nth-child(15):hover) tr:first-child + tr > *:nth-child(15),
.table.table_row_2:has(tr > *:nth-child(16):hover) tr:first-child + tr > *:nth-child(16),
.table.table_row_2:has(tr > *:nth-child(17):hover) tr:first-child + tr > *:nth-child(17),

.table.table_row_3:has(tr > *:nth-child(1):hover) tr:first-child > *:nth-child(1),
.table.table_row_3:has(tr > *:nth-child(1):hover) tr:first-child + tr > *:nth-child(1),
.table.table_row_3:has(tr > *:nth-child(1):hover) tr:first-child + tr + tr > *:nth-child(1),
.table.table_row_3:has(tr > *:nth-child(2):hover) tr:first-child > *:nth-child(2),
.table.table_row_3:has(tr > *:nth-child(2):hover) tr:first-child + tr > *:nth-child(2),
.table.table_row_3:has(tr > *:nth-child(2):hover) tr:first-child + tr + tr > *:nth-child(2),
.table.table_row_3:has(tr > *:nth-child(3):hover) tr:first-child > *:nth-child(3),
.table.table_row_3:has(tr > *:nth-child(4):hover) tr:first-child > *:nth-child(4),
.table.table_row_3:has(tr > *:nth-child(5):hover) tr:first-child > *:nth-child(5),
.table.table_row_3:has(tr > *:nth-child(6):hover) tr:first-child > *:nth-child(6),
.table.table_row_3:has(tr > *:nth-child(7):hover) tr:first-child > *:nth-child(7),
.table.table_row_3:has(tr > *:nth-child(8):hover) tr:first-child > *:nth-child(8),
.table.table_row_3:has(tr > *:nth-child(9):hover) tr:first-child > *:nth-child(9),
.table.table_row_3:has(tr > *:nth-child(10):hover) tr:first-child > *:nth-child(10),
.table.table_row_3:has(tr > *:nth-child(11):hover) tr:first-child > *:nth-child(11),
.table.table_row_3:has(tr > *:nth-child(3):hover) tr:first-child + tr > *:nth-child(3),
.table.table_row_3:has(tr > *:nth-child(4):hover) tr:first-child + tr > *:nth-child(4),
.table.table_row_3:has(tr > *:nth-child(5):hover) tr:first-child + tr > *:nth-child(5),
.table.table_row_3:has(tr > *:nth-child(6):hover) tr:first-child + tr > *:nth-child(6),
.table.table_row_3:has(tr > *:nth-child(7):hover) tr:first-child + tr > *:nth-child(7),
.table.table_row_3:has(tr > *:nth-child(8):hover) tr:first-child + tr > *:nth-child(8),
.table.table_row_3:has(tr > *:nth-child(9):hover) tr:first-child + tr > *:nth-child(9),
.table.table_row_3:has(tr > *:nth-child(10):hover) tr:first-child + tr > *:nth-child(10),
.table.table_row_3:has(tr > *:nth-child(11):hover) tr:first-child + tr > *:nth-child(11),
.table.table_row_3:has(tr > *:nth-child(12):hover) tr:first-child + tr > *:nth-child(12),
.table.table_row_3:has(tr > *:nth-child(13):hover) tr:first-child + tr > *:nth-child(13),
.table.table_row_3:has(tr > *:nth-child(14):hover) tr:first-child + tr > *:nth-child(14),
.table.table_row_3:has(tr > *:nth-child(15):hover) tr:first-child + tr > *:nth-child(15),
.table.table_row_3:has(tr > *:nth-child(16):hover) tr:first-child + tr > *:nth-child(16),
.table.table_row_3:has(tr > *:nth-child(17):hover) tr:first-child + tr > *:nth-child(17),
.table.table_row_3:has(tr > *:nth-child(3):hover) tr:first-child + tr + tr > *:nth-child(3),
.table.table_row_3:has(tr > *:nth-child(4):hover) tr:first-child + tr + tr > *:nth-child(4),
.table.table_row_3:has(tr > *:nth-child(5):hover) tr:first-child + tr + tr > *:nth-child(5),
.table.table_row_3:has(tr > *:nth-child(6):hover) tr:first-child + tr + tr > *:nth-child(6),
.table.table_row_3:has(tr > *:nth-child(7):hover) tr:first-child + tr + tr > *:nth-child(7),
.table.table_row_3:has(tr > *:nth-child(8):hover) tr:first-child + tr + tr > *:nth-child(8),
.table.table_row_3:has(tr > *:nth-child(9):hover) tr:first-child + tr + tr > *:nth-child(9),
.table.table_row_3:has(tr > *:nth-child(10):hover) tr:first-child + tr + tr > *:nth-child(10),
.table.table_row_3:has(tr > *:nth-child(11):hover) tr:first-child + tr + tr > *:nth-child(11),
.table.table_row_3:has(tr > *:nth-child(12):hover) tr:first-child + tr + tr > *:nth-child(12),
.table.table_row_3:has(tr > *:nth-child(13):hover) tr:first-child + tr + tr > *:nth-child(13),
.table.table_row_3:has(tr > *:nth-child(14):hover) tr:first-child + tr + tr > *:nth-child(14),
.table.table_row_3:has(tr > *:nth-child(15):hover) tr:first-child + tr + tr > *:nth-child(15),
.table.table_row_3:has(tr > *:nth-child(16):hover) tr:first-child + tr + tr > *:nth-child(16),
.table.table_row_3:has(tr > *:nth-child(17):hover) tr:first-child + tr + tr > *:nth-child(17),
.table.table_row_3:has(tr > *:nth-child(18):hover) tr:first-child + tr + tr > *:nth-child(18),
.table.table_row_3:has(tr > *:nth-child(19):hover) tr:first-child + tr + tr > *:nth-child(19),
.table.table_row_3:has(tr > *:nth-child(20):hover) tr:first-child + tr + tr > *:nth-child(20),
.table.table_row_3:has(tr > *:nth-child(21):hover) tr:first-child + tr + tr > *:nth-child(21),
.table.table_row_3:has(tr > *:nth-child(22):hover) tr:first-child + tr + tr > *:nth-child(22),
.table.table_row_3:has(tr > *:nth-child(23):hover) tr:first-child + tr + tr > *:nth-child(23),
.table.table_row_3:has(tr > *:nth-child(24):hover) tr:first-child + tr + tr > *:nth-child(24),
.table.table_row_3:has(tr > *:nth-child(25):hover) tr:first-child + tr + tr > *:nth-child(25),
.table.table_row_3:has(tr > *:nth-child(26):hover) tr:first-child + tr + tr > *:nth-child(26),
.table.table_row_3:has(tr > *:nth-child(27):hover) tr:first-child + tr + tr > *:nth-child(27),
.table.table_row_3:has(tr > *:nth-child(28):hover) tr:first-child + tr + tr > *:nth-child(28),
.table.table_row_3:has(tr > *:nth-child(29):hover) tr:first-child + tr + tr > *:nth-child(29),
.table.table_row_3:has(tr > *:nth-child(30):hover) tr:first-child + tr + tr > *:nth-child(30) {
    background-color: var(--blue);
}
.table.table_row_1:has(tr:first-child > *:hover) tr > *,
.table.table_row_2:has(tr:first-child > *:hover) tr > *,
.table.table_row_2:has(tr:first-child + tr > *:hover) tr > *,
.table.table_row_3:has(tr:first-child > *:hover) tr > *,
.table.table_row_3:has(tr:first-child + tr > *:hover) tr > *,
.table.table_row_3:has(tr:first-child + tr + tr > *:hover) tr > * {
    background-color: transparent;
}
*/
.table.table_row_1 tr:first-child {
    background-color: var(--blue);
    color: #fff;
}
.table.table_row_2 tr:first-child, .table.table_row_2 tr:first-child + tr {
    background-color: var(--blue);
    color: #fff;
}
.table.table_row_3 tr:first-child, .table.table_row_3 tr:first-child + tr, .table.table_row_3 tr:first-child + tr + tr {
    background-color: var(--blue);
    color: #fff;
}
.table td:hover {
    background-color: var(--blue);
    color: #fff;
}
/*.table::before {
    position: absolute;
    bottom: -7px;
    left: -8px;
    width: 13px;
    height: 13px;
    border-right: 1px solid #383838;
    background: #fff;
    content: '';
    transform: rotate(315deg);
}*/

.styled-checkbox label {
    position: relative;
    display: inline-block;
    padding: 0 0 0 22px;
    background: url("../img/checkbox-empty.svg") 0 3px no-repeat;
    overflow: hidden;
}
.styled-checkbox input {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 1px;
    height: 1px;
    appearance: none;
    z-index: -1;
}
.styled-checkbox input[type="checkbox"]:checked + label {
    background: url("../img/checkbox-checked.svg") 0 3px no-repeat;
}

.gallery {
    display: flex;
}

/* menu autocomplete */

#search-results {
    margin-top: -1px;
    padding: 10px 25px 25px;
    background-color: #fff;
    top: 110% !important;
    left: -45vw !important;
    right: -14vw !important;
    box-shadow: 0 1px 8px #e2e2e2;
    text-align: left;
    display: none;
    gap: 16px;
    overflow-y: auto;
    position: absolute;
    z-index: 2;
}
#search-results.active {
    display: block;
}
#search-results .search-body {
    display: flex;
    gap: 10px;
}
#search-results .suggested-category {
    flex: 1;
    min-width: 0;
}
#search-results .suggested-category div {
    clear: both;
}
#search-results .suggested-category img {
    float: left;
    position: relative;
    top: 0;
    width: 50px;
    margin: -5px 10px -10px 0;
}
#search-results .search-loading {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
#search-results .search-loading i {
    margin-right: 8px;
    color: #007bff;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Dots */
.slick-dots {
    position: absolute;
    bottom: 50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 2;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}
.slick-dots li button {
    display: block;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    border: 1px solid var(--blue);
    background: var(--blue);
}
.slick-dots li button:before {
    display: none;
}

/* Arrows */
.slick-prev, .slick-next {
    position: absolute;
    top: 45%;
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 0;
    transition: all 350ms linear;
    cursor: pointer;
    z-index: 3;
}
.slick-prev:before, .slick-next:before {
    display: none;
}
.slick-prev:hover, .slick-next:hover {
    color: var(--ocre);
}
.slick-prev {
    left: -75px;
}
.slick-next {
    right: -75px;
}
.slick-prev:after, .slick-next:after {
    display: block;
    padding: 34px;
    content: '';
    box-shadow: -2px -2px 0 0 #fff;
    transform: rotate(-45deg);
    transition: .3s;
    cursor: pointer;
}
.slick-prev:hover:after {
    box-shadow:-2px -2px 0 0 var(--beige);
}
.slick-next:after {
    box-shadow: 2px 2px 0 0 #fff;
}
.slick-next:hover:after {
    box-shadow: 2px 2px 0 0 var(--beige);
}


.blocker {
    z-index: 106;
}

.title {
    font-family: var(--font);
    font-size: var(--font-big);
    font-weight: bold;
}

.link > * {
    display: inline-block;
    padding: 10px 15px;
    border: 0;
    background-color: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 10px 100%, 0% 75%, 0% 0);
    transition: all 350ms linear;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}
.link > *:hover {
    text-decoration: none;
}
header .link > * {
    background-color: #000;
}

.halves {
    display: flex;
    justify-content: space-between;
}
.halves > * {
    width: 48%;
}

.thirds {
    display: flex;
    justify-content: space-between;
}
.thirds > * {
    width: 30%;
}

.quarters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.quarters > * {
    width: 24%;
}

.two-cols, .thirds_1_2, .thirds_2_1 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.col-1-5 {
    width: 20%;
}

.col-3-10 {
    width: 30%;
}

.col-2-5 {
    width: 40%;
}

.col-3-5 {
    width: 60%;
}

.col-7-10 {
    width: 70%;
}

.col-4-5 {
    width: 80%;
}

.col-1-3 {
    width: 33%;
}

.col-2-3 {
    width: 66%;
}

a[href^="tel:"], a[href^="tel:"]:hover {
    text-decoration: none;
}

hr {
    clear: both;
    width: 100%;
    height: 1px;
    padding: 0;
    border: 0;
    background-color: var(--blue-light);
}

footer {
    position: relative;
    padding-top: 15px;
    padding-bottom: 1px;
    background-color: #000;
    color: #fff;
    text-align: left;
}

footer a {
    text-decoration: none;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 35px;
}

.footer-top > *:last-child {
    text-align: center;
}
.footer-top > *:last-child img {
    max-height: 100px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 35px;
}

.container:after,
.container-full:after {
    clear: both;
    display: block;
    content: '';
}

.clear, .cleaner {
    clear: both;
    display: block;
    height: 1px;
    border: 0;
    font-size: 0;
}

.black {
    color: #000;
}

.white {
    color: #fff;
}

.blue {
    color: var(--blue);
}

.red {
    color: var(--red);
}

.green {
    color: var(--green);
}

.grey {
    color: var(--grey);
}

.uppercase {
    text-transform: uppercase;
}

.hidden {
    display: none;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

h1, .h1 {
    clear: both;
    margin-top: .7em;
    margin-bottom: .5em;
    color: var(--blue);
    font-family: var(--font);
    font-size: var(--font-huge);
    font-weight: bold;
    line-height: 1.2em;
}

h2, .h2 {
    clear: both;
    margin-top: .8em;
    margin-bottom: .6em;
    color: var(--blue);
    font-family: var(--font);
    font-size: var(--font-big);
    font-weight: bold;
    line-height: 1.2em;
}

h3, .h3 {
    margin-top: 1em;
    margin-bottom: .8em;
    font-family: var(--font);
    font-size: var(--font-medium);
    font-weight: bold;
    line-height: 1.2em;
}

h4 {
    clear: both;
    margin: 25px 0 15px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2em;
}

.font {
    font-family: var(--font);
}

.font10 {
    font-size: 10px;
}

.font11 {
    font-size: 11px;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font28 {
    font-size: 28px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.no-margin {
    margin: 0;
    padding: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--beige);
    font-size: 15px;
}
::-moz-placeholder { /* Firefox 19+ */
    color: var(--beige);
    opacity: 1;
    font-size: 15px;
}
:-ms-input-placeholder { /* IE 10+ */
    color: var(--beige);
    font-size: 15px;
}
:-moz-placeholder { /* Firefox 18- */
    color: var(--beige);
    font-size: 15px;
}

input, textarea, select, option, button {
    color: var(--beige);
    font-size: initial;
}

textarea {
    max-width: 100%;
    resize: none;
}

ul {
    margin: 15px 0;
    margin-left: 25px;
    padding: 0;
    list-style-position: inside;
}

p {
    margin: 15px 0;
    padding: 0;
}

a {
    color: inherit;
    transition: all 250ms linear;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    border: 0;
}

*:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}

/* ul.ok1
{
  list-style-image:url("/assets/frontend/img/checkbox_list_icon.png");
} */

ul.ok1 li {
    list-style: none;
}

ul.ok1 li::before {
    content: '';
    display: inline-block;
    height: 17px;
    width: 19px;
    background-image: url("/assets/frontend/img/checkbox_list_icon.png");
    background-size: cover;
    background-repeat: no-repeat;
	background-position: left center;
    margin-right: 5px;
    vertical-align: top;
}

ul.loga {
    list-style-type: none;
    padding: 15px;
}

ul.loga li {
    display: flex !important;
    column-gap: 20px !important;
    row-gap: 40px !important;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
    /* display: inline !important; */
}

ul.loga li>div {
    /* display: inline !important; */
    flex: 1;
    max-width: 22%;
    flex-basis: 22%;
    margin: 0px;
}

ul.loga li>div img {
    filter: grayscale(1);
    transition: all .3s ease-in;
}

ul.loga img {
    max-width: 200px;
}

ul.loga li>div img:hover {
    filter: grayscale(0);
}

.section {
    padding: 20px 0;
}

.col-xs-12 {
    width: 100%;
}

.col-sm-6, .col-lg-6, .col-xs-12, .col-md-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}




@media (min-width: 768){
    .col-sm-6 {
        width: 50%;
        float: left;
    } 

}


@media (min-width: 992px){
    .col-md-12 {
        width: 100%;
        float: left;
    } 

}

@media (min-width: 1200px){
    .col-lg-6 {
        width: 50%;
        float: left;
    } 

}

@media (min-width: 1086px) {
    .menu-main li:hover > .level-2 {
        display: block;
    }
}

@media (max-width: 1600px) {
    :root {
        --container-width: 100%;
    }
    .container {
        padding-left: 3vw;
        padding-right: 3vw;
    }
    .menu-main nav {
        padding-left: 3vw;
        padding-right: 3vw;
    }
    .menu-main nav ul ul {
        padding-left: 3%;
        padding-right: 3%;
    }
    .header-search {
        margin-right: 45px;
    }
    .header-search input {
        width: 180px;
    }
    .news-detail {
        padding: 0;
    }
}

@media (max-width: 1380px) {
    :root {
        --font-huge: 26px;
        --font-big: 20px;
        --font-medium: 18px;
    }
    .logo img {
        width: 170px;
    }
    .level-2-overflow {
        grid-template-columns: repeat(3, 1fr);
    }
    .menu-main nav > ul > li > a {
        font-size: 12px;
    }
    .menu-main nav > ul > li:hover > ul {
        gap: 0 10px;
    }
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }
    .offer {
        grid-template-columns: repeat(3, 1fr);
    }
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1086px) {
    body {
        padding: 80px 0 0;
    }
    .menu-responsive {
        display: block;
    }
    .menu-responsive.active span {
        background-color: #000;
    }
    header .container::before {
        left: 30%;
    }
    header .container > div ul {
        visibility: hidden;
        padding: 0;
        margin-top: -6px;
    }
    header .container > div ul li {
        margin-left: 15px;
    }
    .menu-main nav {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100vw;
        min-height: 100vh;
        padding: 80px 0 0;
        background-color: #fff;
        transform: translateX(-100vw);
        transition: all 350ms linear;
        z-index: 48;
    }
    .menu-main nav.active {
        transform: translateX(0);
    }
    .menu-main nav > ul {
        display: block;
        border-left: 0;
        transform: none;
        text-align: left;
    }
    .menu-main nav > ul + ul {
        display: block;
        margin-top: 20px;
        padding: 20px 0 10px;
        border-top: 1px solid var(--grey-light);
    }
    .menu-main nav > p {
        display: block;
        padding-left: 25px;
        text-align: left;
    }
    .menu-main nav ul li {
        display: block;
        padding: 10px 25px;
        border: 0;
    }
    .menu-main nav > ul + ul > li {
        padding: 5px 25px;
    }
    .menu-main nav > ul > li:hover {
        background-color: transparent;
    }
    .menu-main nav > ul > li > a {
        display: block;
        height: auto;
        padding: 0;
        color: var(--blue);
        font-size: 19px;
        font-weight: bold;
        transform: none;
        text-transform: none;
    }
    .menu-main nav > ul + ul > li > a {
        font-size: 16px;
    }
    .menu-main .level-2 {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        width: 100vw;
        min-height: 100vh;
        padding: 60px 0 0;
        border: 0;
        background-color: #fff;
        transform: translateX(100vw);
        transition: all 350ms linear;
        z-index: 2;
    }
    .menu-main nav.active .level-2 {
        display: block;
        visibility: hidden;
    }
    .menu-main nav.active .level-2.active {
        visibility: visible;
        transform: translateX(0);
        z-index: 3;
    }
    .menu-main .level-2::before, .menu-main .level-2::after {
        display: none;
    }
    .menu-main .level-2 > p {
        display: block;
        padding: 0 0 20px 28px;
        border-bottom: 1px solid var(--grey-light);
    }
    .menu-main .level-2 > p img {
        margin-right: 10px;
    }
    .main-menu-toggle {
        display: none;
    }
    .level-2-overflow {
        display: block;
        max-height: none;
    }
    .menu-box {
        padding: 0;
        border: 0;
    }
    .menu-box::before {
        display: none;
    }
    .menu-box > div {
        display: block;
        min-height: auto;
        padding: 10px 25px;
    }
    .menu-box > div p {
        display: none;
    }
    .menu-box > div a {
        margin-top: 0;
    }
    .menu-main .level-3 {
        display: none;
    }
    .header-right {
        display: none;
    }
    #search-results {
        right: -7vw !important;
    }
    .articles {
        display: block;
    }
    .detail-prislusenstvi {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .halves {
        display: block;
    }
    .halves > * {
        width: auto;
    }
    .thirds {
        display: block;
    }
    .thirds > * {
        width: auto;
    }
    .quarters {
        row-gap: 20px;
    }
    .quarters > * {
        width: 48%;
    }
}

@media (max-width: 926px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
    .offer {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top > :last-child {
        text-align: left;
    }
    .footer-bottom {
        display: block;
        padding-bottom: 45px;
        overflow: auto;
    }
    .footer-bottom > * {
        float: left;
        margin-right: 25px;
    }
    .footer-bottom > *:first-child {
        position: absolute;
        left: 0;
        bottom: 10px;
        padding: 0 3vw;
    }
}

@media (max-width: 767px) {
    .header-search {
        margin-right: 50px;
    }
    #search-results .search-body {
        display: block;
    }
    .site-image > p img {
        width: auto;
        max-width: none;
        height: 250px;
        object-fit: cover;
    }
    .categories {
        gap: 10px;
    }
    .offer {
        gap: 10px;
    }
    .news-list {
        grid-template-columns: repeat(1, 1fr);
    }
    .detail {
        grid-template-columns: 1fr;
        gap: 25px 0;
    }
    .detail-prislusenstvi {
        grid-template-columns: repeat(3, 1fr);
    }
    .tabs-menu {
        display: block;
    }
    .tabs-menu li:first-child:before {
        display: none;
    }
    .quarters > * {
        width: 100%;
    }
    .footer-top {
        display: block;
    }
    .footer-top > p:first-child img {
        max-height: 50px;
    }
}

@media (max-width: 555px) {
    header .container > div {
        gap: 0 20px;
    }
    header .container > div ul {
        width: 1px;
        height: 18px;
    }
    .logo {
        left: -2vw;
    }
    .logo img {
        width: 150px;
    }
    .header-search input {
        width: 160px;
    }
    .offer {
        grid-template-columns: repeat(1, 1fr);
    }
    .categories {
        grid-template-columns: repeat(1, 1fr);
    }
    .detail-prislusenstvi {
        grid-template-columns: repeat(2, 1fr);
    }
}
