﻿/* Информация о бренде */
 .catalog-products-table__product-brand-desc {
	 cursor: pointer;
	 color: #14191b;
	 text-decoration: none;
}
 .catalog-products-table__product-brand-desc:hover {
	 text-decoration: underline;
}

.catalog-products-table__product-name .product-name__decor-uppercase {
	color: #14191b;
    text-decoration: none;
    cursor: pointer;
}

.catalog-products-table__product-name .product-name__decor-uppercase:hover {
	color: #14191b;
    text-decoration: underline;
    cursor: pointer;
}

.catalog-products-table__product-art a {
    text-decoration: none;
    color: #1e76d0;
}

.catalog-products-table__product-art a:hover {
    text-decoration: underline;
}

.catalog-products-table__product-name, .catalog-products-table__product-name:hover {
	color: #14191b;
}

.catalog-products-table__product-item.offer-separate:nth-child(2n), .even {
    background-color: #fff;
}

.catalog-products-table__product-item.offer-separate:hover {
    background-color: #ebebef;
}

@media (min-width: 768px) {
    .catalog-products-table__product-img.offer-separate {
        width: 6%;
    }
}

 .modal-brand {
	 position: fixed;
	 width: 100vw;
	 height: 100vh;
	 opacity: 0;
	 visibility: hidden;
	 transition: all 0.3s ease;
	 top: 0;
	 left: 0;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 color: var(--color-black);
	 overflow: auto;
	 line-height: normal;
	 z-index: 150;
}
 .modal-brand.open {
	 visibility: visible;
	 opacity: 1;
	 transition-delay: 0s;
}
 .modal-brand__bg {
	 position: absolute;
	 background: #000;
	 opacity: 0.4;
	 width: 100%;
	 height: 100%;
}
 .modal-brand__container {
	 background: #fff;
	 position: relative;
	 padding: 64px;
	 width: 100%;
	 flex: 1;
	 max-width: 1000px;
}
 .modal-brand__close {
	 position: absolute;
	 right: 12px;
	 top: 12px;
	 padding: 0;
	 height: 32px;
	 width: 32px;
	 outline: none;
	 appearance: none;
	 border: 0px;
	 cursor: pointer;
	 transition: color 0.2s;
	 color: #231f20;
	 background: none;
	 font-size: 36px;
	 line-height: 32px;
}
 .modal-brand__close:hover {
	 color: #555;
}
 .modal-brand.loading .modal-brand__content {
	 position: relative;
	 width: 48px;
	 height: 48px;
	 border-radius: 50%;
	 animation: rotate 1s linear infinite;
	 margin: 0 auto;
}
 .modal-brand.loading .modal-brand__content::before {
	 content: "";
	 box-sizing: border-box;
	 position: absolute;
	 inset: 0px;
	 border-radius: 50%;
	 border: 5px solid #333;
	 animation: prixClipFix 2s linear infinite alternate;
}
 .modal-brand.loading .brand > * {
	 display: none;
}
 @keyframes rotate {
	 100% {
		 transform: rotate(360deg);
	}
}
 @keyframes prixClipFix {
	 0% {
		 clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
	}
	 25% {
		 clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
	}
	 50% {
		 clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
	}
	 75% {
		 clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
	}
	 100% {
		 clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
	}
}
 @media screen and (max-width: 990px) {
	 .modal-brand__container {
		 padding: 32px;
		 max-height: 100vh;
	}
	 .modal-brand__close {
		 font-size: 24px;
		 top: 0;
		 right: 0;
	}
}
 .brand {
	 max-height: calc(100vh - 160px);
}
@media screen and (max-width: 990px) {
  .brand {
    overflow: auto;
  }
  .brand .brand__info {
    max-height: unset;
  }
}
 .brand__title {
	 font-size: 44px;
	 font-weight: bold;
	 flex: 1;
}
 .brand__header {
	 display: flex;
	 gap: 20px;
	 justify-content: space-between;
	 margin-bottom: 20px;
	 align-items: center;
   flex-wrap: wrap;
}
 .brand__logo {
	 max-width: 200px;
	 max-height: 150px;
}
 .brand__info {
	 flex: 0 1 100%;
	 font-size: 18px;
	 line-height: 24px;
	 max-height: calc(100vh - 380px);
	 overflow: auto;
}
 .brand-info::-webkit-scrollbar {
	 width: 3px;
	 height: 3px;
}
 .brand-info::-webkit-scrollbar-track {
	 background: transparent;
}
 .brand-info::-webkit-scrollbar-thumb {
	 background: #f00;
	 border-radius: 2px;
}
 .brand-info::-webkit-scrollbar-thumb:hover {
	 width: 8px;
	 background: #00f;
	 border-radius: 4px;
}
 .brand-desc {
	 display: flex;
	 align-content: stretch;
	 align-items: stretch;
	 flex-wrap: wrap;
	 justify-content: space-between;
}
 .brand-desc .title, .brand-desc__title {
	 flex: 2 2 auto;
	 font-weight: bold;
	 min-width: 180px;
	 width: 25%;
}
 .brand-desc__text, .brand-desc > span {
	 flex: 1 1 auto;
	 margin-bottom: 20px;
	 width: 75%;
}
/* Информация о бренде */
 