/* scroll */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #add8e6;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #144d88 transparent;
}

/* head */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.header-logo {
  flex-grow: 1;
  max-width: 250px;
}



.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.nav-links .list-inline {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.nav-links .list-inline-item {
  margin-right: 20px;
  font-size: 19px;
  font-weight: 500;
}

.nav-icons .list-inline {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.nav-icons .list-inline-item:last-child {
  margin-right: 0;
}

.nav-links .list-inline li {
  position: relative;
  margin: 2.5rem;
}

.nav-links .list-inline li a {
  text-decoration: none;
  color: inherit;
  padding-bottom: 5px;
}

.nav-links .list-inline li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 0;
  height: 0.15rem;
  background-color: #f2f2f2;
  transform: translateX(-50%);
}

.nav-links .list-inline li a:hover::after {
  width: 90%;
}

.nav-links {
  margin-right: 5rem;
}

/* modal popap */
.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 40px;
  font-weight: 300;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}





/* Затемнение фона */
#searchModalDesktop, #searchModalMobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Затемнение */
    z-index: 10000;
    overflow: hidden; /* Отключаем скролл у самого модального контейнера */
}

/* Контейнер модального окна */
.modal-content-search {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 60px;
    width: 50%; 
    max-width: 700px;
    text-align: center;
    overflow: hidden; /* Убираем возможные внутренние скроллы */
}

/* Поле ввода и кнопка */
.search-form {
    display: flex;
    align-items: center;
    gap: 16px; /* Отступ между полем и кнопкой */
    max-width: 100%;
}

/* Поле ввода */
.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 14px;
    max-width: calc(100% - 90px); /* Ограничиваем ширину поля, чтобы не вылезало */
}

/* Кнопка справа от поля */
.search-submit {
    padding: 12px 40px;
    background: #144d88;
    color: white;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap; /* Запрещаем перенос текста в кнопке */
}

.search-submit:hover {
    background: #0056b3;
}

/* Кнопка закрытия */
.close-popup {
    position: absolute;
    top: 15px;
    right: 10px;
    background: none;
    border: none;
    font-size: 50px;
    cursor: pointer;
    color: #6c6c6c;
    font-weight: 300;
}

.close-popup:hover {
    color: #161616;
}

/* Отключаем скролл на body при открытии */
body.modal-open {
    overflow: hidden;
    height: 100%;
}















@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-cart-container {
  display: flex;
  align-items: center;
}

/* slader */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.slideshow {
  margin-top: -120px !important;
  z-index: 0 !important;
}

.container-head {
  width: 100%;
  background-color: #00000057;
  z-index: 1;
    position: relative;
}

.container-head .content {
  margin: 0 auto;
  max-width: 80%;
}

.header-nav li a,
.header-nav li {
  color: #f2f2f2;
  font-size: 18px;
}


#cart a {
  color: red;
  font-size: 18px;
}

#cart li {
  color: black;
  font-size: 18px;
}

.custom-btn {
display: inline-block;
    padding: 18px 40px;
    color: white;
    background-color: #144d88;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-weight: 300;
        max-width: 250px;
}


.custom-btn:hover {
  background-color: #0056b3;
}



/* Styles for the banner */
.banner-info {
  position: absolute;
  top: 70%;
  left: 24%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 700px;
  height: auto;
  padding: 43px 40px;
}

.banner-title {
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 30px;
  color: #f2f2f2;
}

.banner-description {
  font-size: 18px;
  color: #f2f2f2;
  font-weight: 300;
  line-height: 2;
  text-align: justify;
}

.category-intro {
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
}


.category-intro p {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2;
  margin: 0;
  color: #161616;
  text-align: justify;
}

.category-intro h2 {
  font-size: 3rem;
  font-weight: 600;
    margin: 4rem 0rem 2rem 0rem;
  color: #161616;
  text-align: center;
  position: relative;
  display: inline-block;
}

.category-intro h2::after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background-color: #0056b3;
  margin: 0.5rem auto 0 auto;
}

.custom-center-title::after {
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  background-color: #0056b3;
  margin: 2rem auto 0 auto;
}


.category-intro h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 4rem 0rem 1rem 0rem;
  color: #161616;
  text-align: left;

}


















.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Расстояние между плитками */
}

.category-link {
  text-decoration: none;
  width: calc(33.333% - 20px); /* Три плитки в ряд */
  min-width: 250px; /* Минимальный размер */
  max-width: 500px; /* Максимальный размер */
}

.category-item-pro {
  position: relative;
  text-align: center;
  list-style: none; /* Убираем точки списка */
  overflow: hidden; /* Прячем излишки */
}

.category-item-pro img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.category-name {
position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #161616b3;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 12px 0px 12px 0px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-weight: 400;
}

.category-name .arrow {
  margin-left: 10px;
  font-size: 18px; /* Размер стрелки такой же, как и у текста */
}

.category-item-pro:hover img {
  transform: scale(1.05); /* Легкое увеличение изображения при наведении */
}

.category-item-pro:hover .category-name {
  opacity: 1; /* Показываем название при наведении */
}

/* Отключаем ховер на мобильных устройствах и планшетах */
@media (hover: none) {
  .category-item-pro img {
    transform: none;
  }


  .category-item-pro:hover img,
  .category-item-pro:hover .category-name {
    transform: none;
    opacity: 1;
  }
}

/* Адаптация для небольших экранов */
@media (max-width: 768px) {
  .categories-grid {
    flex-direction: column; /* Вертикальный ряд */
    align-items: center;
  }

  .category-link {
    width: 100%;
    max-width: 500px; /* Максимальная ширина для мобильных устройств */
  }
  .category-item-pro:hover img {
  transform: scale(1.00); /* Легкое увеличение изображения при наведении */
}
  .category-name {
    opacity: 1;
    position: relative;
  }
  
}










.filter-row {
    display: flex
;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.filter-label {
margin-right: 10px;
    white-space: nowrap;
    font-size: 1.7rem;
    margin-bottom: 3px;
}

.filter-checkboxes {
  display: flex;
  gap: 10px; /* Расстояние между чекбоксами */
  flex-wrap: wrap; /* Уберет перенос на новую строку */
}

.filter-item {
  margin: 0 15px;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
}

.clear-filter-button {
  margin-left: 10px;
  white-space: nowrap; /* Оставляет текст в одну строку */
}















  .has-error .form-control {
    border-color: red;
  }

  .contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10rem;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 10rem;
  }

  .contact-form-image {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-form-image img {
    max-width: 100%;
    max-height: 250px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10rem;
  }

  .contact-form-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-horizontal .form-group {
    margin-bottom: 15px;
    width: 600px;
  }

  .form-horizontal .form-control {
    width: 100%;
    padding: 22px;
    border-radius: 0px;
    border: 0.12rem solid #afafaf;
    font-size: 13px;
    transition: border-color 0.3s ease;
    margin: 3px 0px 3px 0px;
  }

  .form-horizontal .form-control:focus {
    border-color: #161616;
    outline: none;
  }

  .form-horizontal .form-control.no-resize {
    resize: none;
  }

  .form-horizontal .custom-btn.custom-primary {
    color: #f2f2f2;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 8rem 0 0 0;
  }

  .form-horizontal .custom-btn.custom-primary:hover {
    background-color: #0056b3;
  }

  .hidden {
    display: none;
  }

  .centered_message {
    display: none;
    text-align: center;
  }

  .contact-form-title h3 {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 500;
    padding: 10rem;
  }











.footer-extra {
    text-align: center;
    padding: 50px 0px 30px 0;
    color: #f2f2f2;
    font-size: 16px;
    font-weight: 300;
}

.footer-inline {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    list-style: none;
}

.footer-inline li a {
    color: #fff;
    text-decoration: none;
}

.footer-inline li a:hover {
    text-decoration: underline;
}









.category-list {
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.category-bg {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 400px 0 0 0;
    margin: 15rem 0 15rem 0;
}


.bg-1 {
    background-image: url("https://www.odf.global/image/catalog/Home_61.jpg");
}

.bg-2 {
    background-image: url("https://www.odf.global/image/catalog/Home_62.jpg");
}

.bg-3 {
    background-image: url("https://www.odf.global/image/catalog/Home_65.jpg");
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 75%;
    width: 100%;
    gap: 30rem;
    margin: 0 auto;
}

.category-left .category-image,
.category-right .category-image {
    flex: 0 0 500px;
}

.category-left .category-text,
.category-right .category-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
}

.category-left .category-image {
    order: 1;
    margin-right: 20px;
}

.category-right .category-image {
    order: 2;
    margin-left: 20px;
}

.category-left .category-text {
    order: 2;
}

.category-right .category-text {
    order: 1;
    align-items: start;
}

.category-image {
    block-size: 550px;
    inline-size: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mask-1 {
    -webkit-mask-image: url('/image/catalog/mask_1.svg');
    mask-image: url('/image/catalog/mask_1.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
}

.mask-2 {
    -webkit-mask-image: url('/image/catalog/mask_2.svg');
    mask-image: url('/image/catalog/mask_2.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
}

.mask-3 {
    -webkit-mask-image: url('/image/catalog/mask_3.svg');
    mask-image: url('/image/catalog/mask_3.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
}

.category-text h3 {
    margin: 0 0 10px;
        font-size: 4rem;
    font-weight: 500;
    color: #f2f2f2;
    margin-bottom: 30px;
}

.category-text p {
        font-size: 1.75rem;
    font-weight: 300;
    color: #f2f2f2;
    margin-bottom: 30px;
}

.btn-category {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-category:hover {
    background-color: #0056b3;
}

.all-categories {
    margin-bottom: 11rem;
    margin-top: 5rem;
    text-align: center;
}








@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-layout.fade-in {
    animation: fadeInDown 0.5s ease-in-out;
}









.col-md-3 {
    margin-top: 3rem;
}
.col-md-13 {
    margin-top: 10rem;
}



.description {
  max-height: 25rem;
  overflow: hidden;
  transition: max-height 0.6s ease;
  position: relative;
}

.description:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, white);
  transition: opacity 0.5s ease;
  opacity: 1;
}

.description.expanded {
  max-height: none;
}

.description.expanded:before {
  opacity: 0;
}





#tab-description {
    margin-top: 5rem;
}




/* Стиль для кнопки */
.btn-toggle {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 60px;
  color: #a1a1a1;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: underline;
  background-color: transparent;
  font-size: 16px;
      font-weight: 400;
}

.btn-toggle:hover {
  color: #171717;
}






.download-wrapper {
    margin-top: 7rem; /* Отступ сверху для всего блока */
}

.file-item {
    display: grid;
    grid-template-columns: 1fr auto; /* Делаем табличное отображение с фиксированной кнопкой справа */
    align-items: center;
    gap: 1rem; /* Отступ между названием и кнопкой */
    margin-bottom: 4.5rem; /* Отступ между строками файлов */
}

.file-item span {
    font-size: 1.8rem;
    font-weight: 400;
    color: #202020;
}

hr.product-related-separator {
    margin-bottom: 9rem;
    margin-top: 9rem;
    height: 0px;
    background-color: white;
    
}




.quantity-cart-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.number-spinner .btn {
  padding: 6px 12px;
}

#input-quantity {
  width: 100%;
}



.styled-cheaper-button {
float: right;
    padding: 7px 15px;
    font-size: 18px;
    font-weight: 300;
}



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

.quantity-block {
  width: 140px;
    border: solid 1px #969696;
    border-radius: 5px;
    padding: 6px;
}
}

.price-block {
  margin-left: 10px;
  text-align: right;
}
.price-block li {

   margin: 20px 40px;
    font-size: 30px;
    font-weight: 400;
    color: #161616;
}



.catalog-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background-image: url('https://www.odf.global/image/catalog/baner/Catalog_Home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 23rem 0rem 23rem 0rem;
}

.catalog-block p {
    color: #f2f2f2;
}

.catalog-title {
    text-align: center;
    padding: 10rem 0 8rem 0;
    font-size: 4.5rem;
    font-weight: 400;
}

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

.catalog-content p {
    margin-bottom: 50px;
}

.catalog-left {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog-right {
    flex: 1;
    max-width: 45%;
    padding: 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #00000091;
}

p.catalog-subtitle {
    font-size: 4rem;
    font-weight: 500;
}

p.catalog-description {
    font-size: 1.75rem;
    font-weight: 300;
}

.category-image-catalog {
    block-size: 450px;
    inline-size: 480px;
    overflow: hidden;
}

.category-image-catalog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}














/* Центрируем заголовок */

.custom-center-title {
    text-align: center;
    padding: 10rem 0 8rem 0;
    font-size: 3.7rem;
    font-weight: 500;
    color: #161616;
}
.custom-center-title-blog {
    text-align: center;
    padding: 10rem 0 8rem 0;
    font-size: 3.7rem;
    font-weight: 500;
    color: #161616;
}
/* Центрируем блоки статей */
.custom-article-row {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 30px; /* Увеличиваем отступ между статьями */
  margin-bottom: 12rem; /* Отступ снизу для общего контейнера статей */
}

.custom-article-layout {
  width: 25%; /* Уменьшаем ширину статьи для отступов */
  box-sizing: border-box; /* Учитываем padding и margin в ширине */
}

.custom-article-thumb {
  margin-bottom: 15px; /* Отступ снизу под картинкой */
}

/* Блок с информацией, разделённый на 4 подблока */
.custom-article-info {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.custom-article-date {
  width: 20%; /* Левый блок занимает 20% */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.custom-article-month {
      font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    color: #161616;
}

.custom-article-day {
    font-size: 8rem;
    color: #0056b3;
    font-weight: 700;
}

.custom-article-content {
  width: 100%;
  padding-left: 10px;
}

.custom-article-content a {
    color:#161616;
}



.custom-article-read-more {
  text-align: right;
  margin-top: 10px; /* Отступ сверху для кнопки */
}


.custom-article-content a {
    font-size: 2.3rem;
    font-weight: 500;
}

.custom-article-content p {
   color: #161616;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: justify;
}






.product-attributes {
  opacity: 0;
  position: absolute;
  bottom: 70px; /* Задаем фиксированное значение для отображения ниже блока цены */
  left: 0;
  right: 0;
  padding: 10px;
  transition: opacity 0.2s ease-in-out;
  font-size: 1.5rem;
  color: #161616;
  font-weight: 500;
  z-index: 10; /* Поверхность над другими элементами */
}

.product-thumb:hover .product-attributes {
  opacity: 1;
}



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



.category-intro {
    max-width: 100%;
    margin: 10rem 0rem 0rem 0rem;
}




.no-downloads {
    margin: 12rem 0 0 0;
    /* font-size: 5rem; */
    background: #f3f3f3;
    border: solid 1px #cbcbcb;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
}



.no-downloads p{
    margin: 3rem;

}





.alert a {
    color: #144d88;
}


.alert a:hover {
    color: #0056b3;
}







.filter-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}


.btn-filter-toggle {
    background-color: transparent;
    color: #144d88;
    padding: 17px 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border: #144d88 2px solid;
}

.filter-clear-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-filter-clear {
    background-color: #144d88;
    color: #fff;
    padding: 17px 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

.btn-filter-toggle:hover,
.btn-filter-clear:hover {
    background-color: #0056b3;
    color: white;
}

.filter-checkboxes .filter-item {
    display: inline-block;
    background-color: #e0e0e0;
    color: #333;
    padding: 12px 45px;
    margin: 4px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.filter-checkboxes .filter-item input[type="checkbox"] {
    display: none;
}

.filter-checkboxes .filter-item.active {
    background-color: #0056b3;
    color: #fff;
}






.pull-left .btn {
    padding: 7px 15px;
}





  .description {
    position: relative;
    overflow: hidden;
    max-height: 210px; /* Уменьшаем на 30% от 300px */
    transition: max-height 0.5s ease;
  }
  
  .description:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, white); /* Эффект градиента */
    transition: opacity 0.5s ease;
    opacity: 1;
  }
  
  .description.expanded:before {
    opacity: 0; /* Убираем градиент при полном раскрытии */
  }




#cart p {
    color: #161616;
    font-weight: 400;
    font-size: 2rem;
}


    #loader-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 30%; /* начальная ширина */
        height: 0.15rem;
        background-color: #0056b3; /* цвет полоски */
        z-index: 9999;
        transition: width 0.3s ease;
    }
    
    

@media (max-width: 1599px) {
  .header-nav li a,
  .header-nav li {
    color: #f2f2f2; 
    font-size: 16px;
  }
  
  .nav-links .list-inline li {
    margin: 0.5rem;
}
#logo img {
    height: 65px;
}

.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
    font-size: 15px;
}
.header-container {
    height: 90px;
}
.nav-links {
    margin-right: 1rem;
}

.custom-btn {
    padding: 14px 30px;
    font-size: 16px;
}
.category-left .category-image, .category-right .category-image {
    flex: 0 0 150px;
}
.category-text h3 {
    font-size: 3rem;
    margin-bottom: 25px;
}
.category-text p {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.list-inline > li {
    display: inline-block;
    padding-right: 8px;
    padding-left: 8px;
}
.category-image-catalog {
    block-size: 300px;
    inline-size: 330px;
}
.catalog-content {
    justify-content: flex-start;
}
.catalog-right {
    padding: 40px;
    max-width: 40%;

}
.catalog-content p {
    margin-bottom: 30px;
}
p.catalog-subtitle {
    font-size: 3rem;
}
p.catalog-description {
    font-size: 1.5rem;
}

.price-block li {
    font-size: 25px;
}
.number-spinner .btn {
    padding: 0px 8px;
}
.quantity-block {
    width: 110px;
}
}










.list-inline-item {
    padding: 0 10px;
}










#scrollToTop {
position: fixed;
    bottom: 80px;
    right: 50px;
    width: 75px;
    height: 75px;
    background-color: #144d88;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex
;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 999;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

#scrollToTop:hover {
    opacity: 1;
    transform: scale(1.05);
    background-color: #0056b3;
}

#scrollToTop span {
    display: inline-block;
    transform: rotate(-90deg);
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
}











.map-info-row {
    display: flex
;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
    margin-top: 10rem;
}

.map-info-row h2 {
    
    font-size:2rem;
}

/* Левая колонка (30%) */
.map-info-col-left {
  width: 35%;
  min-width: 250px;
  padding: 10px;
}

.map-info-col-right {
  width: 65%;
  padding: 10px;
}

/* Карта */
#map {
  width: 100%;
  height: 550px;
  background-color: #eee;
}






    .map-info-block {

    padding: 2rem;

    max-width: 400px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-direction: column;
}

.map-info-icon {
    font-size: 20px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
}

.map-info-item img {
    width: 30px;
    height: 30px;
    margin: 0px 15px 0px 15px;
}
.map-info-block a{
    color: #161616;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2;
}






.custom-list {
	list-style: none;
	padding: 0;
	font-weight: 400;
    color: #161616;

}

.custom-list li {
	background-image: url('/image/catalog/fav.ico');
	background-repeat: no-repeat;
	background-size: 13px 13px;
	width: 85%;
	background-position: 0 11px;

	padding-left: 25px;

	margin: 0 0 0 40px;
	font-size: 1.7rem;
	line-height: 2;
	text-align: justify;

}



.messenger_links li a:hover, 
.social_links li a:hover {
    margin-left: 0 !important;
}


h1::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #0056b3;
    margin: 1rem 0 0 0;
}



@media (max-width: 1750px) {
.filter-checkboxes .filter-item {
    padding: 10px 30px;
    border-radius: 15px;

}

}


@media (min-width: 993px) {
.filter-buttons {

    display: none;
}
.btn-filter-clear {

    margin-top: 2rem;
}
}



/* версия для экранов менее 992 */
@media (max-width: 992px) {
.header-logo {
  max-width: 75rem;
}
.container-head .content {
    max-width: 90%;
}
.container-head {
  background-color: #00000094;
}
.header-container {
        height: 70px;
    }
    
.category-item {
    gap:  0rem;
    flex-direction: column;
    max-width: 90%;
}    

.category-left .category-text, .category-right .category-text {
    padding: 30px;
}
.category-bg {

    margin: 8rem 0 8rem 0;
}

.contact-form-container {
    flex-direction: column;
    gap: 1rem;
}
.form-horizontal .form-group {
    width: 700px;
}
.contact-form-title h3 {
    font-size: 3rem;

}
.catalog-right {
    max-width: 90%;
    flex-direction: column;
}
.catalog-content {
    flex-direction: column;
}


.catalog-block {
    background-position: 25%;
    padding: 15rem 0rem 15rem 0rem;
}
.custom-article-row {
    flex-direction: column;
    align-items: center;

}
.custom-article-layout {
    width: 90%;
    margin: 5rem 0 5rem 0;
}
.category-image-catalog {
    block-size: 400px;
    inline-size: 430px;
}

.custom-article-thumb {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.h4, h4 {
    margin-top: 30px;
    margin-bottom: 30px;
}
#scrollToTop {

    bottom: 41px;
    right: 30px;
    width: 60px;
    height: 60px;
}
#scrollToTop span {
    font-size: 35px;

}
.custom-center-title {
    padding: 8rem 0 4rem 0;
    font-size: 2.5rem;
}
.category-intro {
    margin: 10rem 0rem 0rem 0rem;
    }
.category-intro p {
    font-size: 1.5rem;
    line-height: 1.8;
}
  .category-link {
    width: 100%;
    max-width: 500px; /* Максимальная ширина для мобильных устройств */
  }
  .category-item-pro:hover img {
  transform: scale(1.00); /* Легкое увеличение изображения при наведении */
}
  .category-name {
    opacity: 1;
    position: relative;
  }
.dropdown-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 99998;
}

/* Затемняющий фон */
.dropdown-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
}

/* Всплывающее меню */
.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    position: fixed !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f2f2f2;
    padding: 15px;
    z-index: 99999;
    max-height: 90vh;
    overflow-y: auto;
    width: 60%;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}

/* Стили для кнопок внутри списка */
ul.dropdown-menu li .btn-link {
    color: #161616;
    font-size: 18px;
    font-weight: 500;
}

.mobile-menu-list li {
    margin: 20px 0;
}

.dropdown-menu li {
    margin: 5px 0;
}
    #form-currency .dropdown-toggle::after,
    #form-language .dropdown-toggle::after {
            content: ">";
    display: inline-block;
    font-size: 20px;
         transform: rotate(90deg)
    }
    
    
    .mobile-menu-list a {

    font-size: 20px;

}

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        transition: background 0.7s ease;
    }
        .scrolled {
        background: #161616 !important; /* Непрозрачный */
    }
.banner-info {
    left: 50%;
    top:85%;
    padding: 5px 5px;
}
.btn-block {

    width: 200px;
}
.h3, h3 {
    margin-top: 15rem;

}
.thumbnail > img {

    max-width: 100%;

}
.map-info-col-right {
    width: 100%;
}
.map-info-col-left {
    width: 100%;
}
.map-info-block {

    max-width: 100%;
}
.map-info-row {
    margin-top: 2rem;
}
#map {
    height: 750px;

}
#logo img {
        height: 55px;
    }
    

    .col-sm-3 {
        width: 100%;
        margin-bottom: 5rem;
    }
    
    
    .product-thumb .caption {
    align-items: flex-start;
}


.product-thumb .product-attributes {
  opacity: 1;
}
.product-attributes {

    font-size: 1.75rem;

}
.filter-bottom-button.d-none.d-lg-block {
    display: none;
}
.filter-buttons {
    margin-bottom: 3rem;
}
}




















@media (max-width: 768px) {
    .form-horizontal .form-group {
    width: 270px;
}
.category-image-catalog {
    block-size: 350px;
    inline-size: 375px;
}
.custom-article-day {
    font-size: 5rem;

    font-weight: 600;
}
.custom-article-date {
    justify-content: space-evenly;
}
.custom-center-title-blog {
    padding: 5rem 0 5rem 0;
    font-size: 3rem;

}
.custom-center-title {
        padding: 8rem 1rem 4rem 1rem;
        font-size: 2.3rem;
    }
    
        #logo img {
        height: 45px;
 
    }
    .category-intro {
    margin: 8rem 2rem 0rem 2rem;
    }
    .h5, h5 {
    margin-top: 60px;
}
footer h5 {
    margin-bottom: 25px;
}

.category-left .category-text, .category-right .category-text {
        padding: 18px;
        min-width: 100%;
    }
.catalog-block {
        background-position: 33%;
        padding: 35rem 0rem 10rem 0rem;
    }
    
    p.catalog-description {
    font-size: 1.5rem;

}
.catalog-content p {
    margin-bottom: 20px;
}
    p.catalog-subtitle {
    font-size: 2.6rem;
}
.catalog-right {

    padding: 25px;

}
.mobile-menu-list a {

    font-size: 22px !important;

}
    .mobile-menu-list li {
        margin: 15px 0;
    }
.custom-btn {
    max-width: 200px;
}
.category-text p {
    display: none;
}
    .category-text h3 {
        font-size: 2.5rem;
    }
    .category-bg {

    padding: 400px 0 50px 0;
    margin-bottom: 50px;
}
.category-bg.bg-2 .category-item {
    flex-direction: column-reverse;
}


.price-block li {
    font-size: 26px;

}
.styled-cheaper-button {

    padding: 7px 10px;

}
.btn {
    padding: 7px 10px;
}


.modal-content-search {
    width: 95%;
    padding: 80px 15px 35px 20px;

}
.search-form {
    display: flex;
    gap: 20px;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
}
.search-input {
    max-width: 100%;
}

.h1, h1 {
    margin-bottom: 4rem;
    font-size: 20px;
    margin-top: 1rem;
}
h1::after {
    width: 35%;
}
.breadcrumb {

    font-size: 13px;

}
.col-xs-6 {
    width: 45%;
}
.breadcrumb > li {
    padding: 0px 5px 0px 10px;
}

.btn-filter-toggle {
    padding: 12px 33px;
    font-size: 15px;
    font-weight: 500;

}
.btn-filter-clear {
    padding: 12px 33px;
    font-size: 15px;
    font-weight: 500;
}
.filter-checkboxes .filter-item {
    padding: 8px 35px;
    border-radius: 15px;
    font-size: 14px;
}

.filter-checkboxes {
    justify-content: center;
}
.filter-row {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}



.map-info-col-right {

    padding: 0px;
}

    #map {
        height: 600px;
    }
.filter-label {

    margin-bottom: 12px;
}
    .btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
        font-size: 20px;
    }
}

















.hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 9px;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
    }
    .hamburger span {
      display: block;
      width: 35px;
      height: 3px;
      background: #f2f2f2;
      transition: transform 0.3s ease;
    }
    @media (max-width: 992px) {
      .hamburger {
        display: flex !important;
      }
      .header-nav {
        display: none;
      }
    }
.mobile-menu {
    position: fixed;
    top: 0;
    right: -105vw; /* Уводим далеко за экран */
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.4s ease-in-out;
    z-index: 999;
    display: none; /* По умолчанию скрыто */
    flex-direction: column;
    align-items: center;
    padding: 10rem 0 0 0;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
    display: flex; /* Показываем меню при открытии */
}


    .mobile-menu-list {
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      list-style: none;
      padding: 0;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-direction: column;
      font-weight: 300;
    }
    .language-selector,
    .currency-selector {
      position: relative;
      z-index: 1000;
    }
    .mobile-menu-list a {
      color: white;
      font-size: 24px;
      text-decoration: none;
    }
    .close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 69px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 200;
    }







@media (min-width: 992px) {
    .col-md-3 {
        width: 50%;
    }
}

@media (min-width: 1250px) {
    .col-md-3 {
        width: 33.333%;
    }
}
@media (min-width: 1500px) {
    .col-md-3 {
        width: 25%;
    }
}







.content {
  position: relative;
}
.container {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#bongo-cat {
  position: static;
  height: 30vh;
  width: 30vw;
  top: 100vh;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.typing-animation {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 1200ms;
}
path#f1-l1 {
  animation-name: typing-f 1-l1;
}
path#f1-l2 {
  animation-name: typing-f 1-l2;
}
path#f1-l3 {
  animation-name: typing-f 1-l3;
}
path#f2-l4 {
  animation-name: typing-f 2-l4;
}
path#f2-l5 {
  animation-name: typing-f 2-l5;
}
path#f2-l6 {
  animation-name: typing-f 2-l6;
}
path#f3-l7 {
  animation-name: typing-f 3-l7;
}
path#f3-l8 {
  animation-name: typing-f 3-l8;
}
path#f3-l9 {
  animation-name: typing-f 3-l9;
}
@keyframes typing-f3-l9 {
  0% {
    d: path('M8,25L8,25');
  }
  82% {
    d: path('M8,25L8,25');
  }
  92% {
    d: path('M8,25L96,25');
  }
  100% {
    d: path('M8,25L96,25');
  }
}
@keyframes typing-f3-l8 {
  0% {
    d: path('M8,13L8,13');
  }
  68% {
    d: path('M8,13L8,13');
  }
  82% {
    d: path('M8,13L146,13');
  }
  100% {
    d: path('M8,13L146,13');
  }
}
@keyframes typing-f3-l7 {
  0% {
    d: path('M0,1L0,1');
  }
  60% {
    d: path('M0,1L0,1');
  }
  68% {
    d: path('M0,1L96,1');
  }
  100% {
    d: path('M0,1L96,1');
  }
}
@keyframes typing-f2-l6 {
  0% {
    d: path('M8,25L8,25');
  }
  54% {
    d: path('M8,25L8,25');
  }
  60% {
    d: path('M8,25L69,25');
  }
  100% {
    d: path('M8,25L69,25');
  }
}
@keyframes typing-f2-l5 {
  0% {
    d: path('M8,13L8,13');
  }
  44% {
    d: path('M8,13L8,13');
  }
  54% {
    d: path('M8,13L114,13');
  }
  100% {
    d: path('M8,13L114,13');
  }
}
@keyframes typing-f2-l4 {
  0% {
    d: path('M0,1L0,1');
  }
  30% {
    d: path('M0,1L0,1');
  }
  44% {
    d: path('M0,1L136,1');
  }
  100% {
    d: path('M0,1L136,1');
  }
}
@keyframes typing-f1-l3 {
  0% {
    d: path('M8,25L8,25');
  }
  24% {
    d: path('M8,25L8,25');
  }
  30% {
    d: path('M8,25L61,25');
  }
  100% {
    d: path('M8,25L61,25');
  }
}
@keyframes typing-f1-l2 {
  0% {
    d: path('M8,13L8,13');
  }
  14% {
    d: path('M8,13L8,13');
  }
  24% {
    d: path('M8,13L124,13');
  }
  100% {
    d: path('M8,13L124,13');
  }
}
@keyframes typing-f1-l1 {
  0% {
    d: path('M0,1L0,1');
  }
  14% {
    d: path('M0,1L160,1');
  }
  100% {
    d: path('M0,1L160,1');
  }
}
#paw-right--up, #paw-right--down, #paw-left--up, #paw-left--down {
  animation: blink 500ms infinite;
}
#paw-right--up, #paw-left--down {
  animation-delay: 250ms;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
#laptop__code {
  transform: rotateX(-37deg) rotateY(-46deg) rotateZ(-23deg) translateX(8px) translateY(20px) translateZ(-50px);
}


.not-found-text h1 {
    font-size:25rem;
}

.not-found-text {
    display: flex
;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    gap: 146px;
    margin-bottom: 12rem;
    flex-direction: row;
    margin-top: 15rem;
}











.product-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.product-title-wrap.category {
    display: inline-flex;
    gap: 6px;
}
.product-title-wrap.category .copy-btn {
    opacity: 0;
    transition: opacity 0.2s ease;
}
.product-title-wrap.category:hover .copy-btn {
    opacity: 1;
}
@media (hover: none) and (pointer: coarse) {
    .product-title-wrap.category .copy-btn {
        opacity: 1;
    }
}
.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}
.copy-btn svg {
    width: 18px;
    height: 18px;
    fill: #144d88;
    transition: fill 0.2s ease;
}
.copy-btn:hover svg {
    fill: #0056b3;
}
.copy-notify {
    position: fixed;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 9999;
    display: none;
    white-space: nowrap;
    pointer-events: none;
}




















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

.delivery-section p {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 2;
    margin: 0;
    color: #161616;
    text-align: justify;
}

.delivery-section h2 {
    font-size: 3rem;
    font-weight: 600;
    margin: 4rem 0rem 2rem 0rem;
    color: #161616;
    text-align: center;
    position: relative;
    display: inline-block;
}

/* Полоска под h2 */
.delivery-section h2::after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background-color: #0056b3;
    margin: 1rem auto 0 auto;
}

/* Для корректного отображения описания */
.delivery-section .delivery-description {
    max-height: none;
    overflow: visible;
    position: relative;
}

.delivery-section .delivery-list {
    padding-left: 2rem;
    text-align: left;
}

.delivery-section .delivery-list li {
    margin-bottom: 1rem;
}























#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #144d88;
  color: #fff;
  padding: 16px 24px;
  max-width: 900px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;

}

#cookie-banner.show {
  opacity: 1;
  visibility: visible;
}

#cookie-banner p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: white;
  font-weight: 300;

}


.cookie-privacy-link {
  color: #00ffeb;
  text-decoration: underline;
}
.cookie-privacy-link:hover {
  color: #0097a7;
}


#cookie-banner .custom-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}




#cookie-accept {
    display: inline-block;
    padding: 12px 25px;
    color: white;
    background-color: #0056b3;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s 
ease;
    font-size: 16px;
    font-weight: 300;
    max-width: 250px;
    border: solid 1px white;
    margin: 15px;
}

#cookie-decline {
    display: inline-block;
    padding: 12px 25px;
    color: #0056b3;
    background-color: white;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s 
ease;
    font-size: 16px;
    font-weight: 300;
    max-width: 250px;
    border: solid 1px #0056b3;
    margin: 15px;
}















.price-note {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  line-height: 1.2;
}

.product-price-wrapper {
  display: inline-block;
  text-align: left;
}

.product-price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-note {
  font-size: 15px;
  color: #161616;
}
