.image__fix img { width:100%; height:100%; }

.product-akciya p.news-description {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
}

.product-akciya .news .news-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.product-akciya .news {
    flex-direction: column;
    display: flex;
}

.CaruselNav .slick-dots {
    position: static;
}

.SliderItem .slick-dots {
    width: fit-content;
}

.sub-name + .price {
    text-align: center;
}

.list-category-main {
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.service .btn {
    display: none;
}

.about {
    padding-bottom: 340px;
}

@media (max-width: 991px) {
    .about {
        padding-bottom: 0;
    }
}

.section-top__buttons {
    display: flex;
    gap: 20px;
}

.section-top__buttons .btn {
    flex-shrink: 0;
}

/* cookie */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  font-family: "Manrope", sans-serif;
  opacity: 0;
  transform: translateY(200px);
  transition: all 0.3s ease;
}
.show-cookie {
  opacity: 1;
  transform: translateY(0);
}
.cookie__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 10px;
}
.cookie__text-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cookie__text {
  font-size: 16px;
  line-height: 140%;
  margin: 0;
}
.cookie__text a{
  color: #d64e47;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: .3s ease;
}
.cookie__button {
  width: fit-content;
  font-size: 16px;
  padding: 10px 30px;
  background-color: #d64e47;
  border-radius: 40px;
  font-weight: 600;
  color: #fff;
  transition: .3s ease;
  border: unset;
  cursor: pointer;
}
.cookie__button:hover{
  opacity: .8;
}
/* cookie */

.section-regoins__info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    width: fit-content;
    max-width: 665px;
}

.section-regoins__block{
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.section-regoins__element{
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    color: #302c29;
    display: flex;
    align-items: center;
    gap: 21px;
}
.section-regoins__element span{
    width: 24px;
    height: 24px;
}
.section-regoins__element:first-child span{
    background: #f9853a;
}
.section-regoins__element:last-child span{
    border: 1px solid #625d6c;
    background: #e5e5e5;
}
.section-regoins__info-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: unset !important;
    list-style: none;
}
.section-regoins__info-item{
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    color: #302c29;
    cursor: pointer;
    transition: color .3s;
    padding-top: unset !important;
    position: relative;
    padding-left: 25px;
    z-index: 2;
    align-items: center;
    display: flex;
}
.section-regoins__info-item::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 10px;
    height: 2px;
    background: #f9853a;
}
.section-regoins__info-item:hover, .section-regoins__info-item.active{
    color: #d44c48;
}
.section-regoins__info-item.disabled{
    opacity: .25;
    cursor: no-drop;
    color: #302c29;
}

.map-box__group path{
    transition: fill .3s;
}
.map-box__group{
    cursor: pointer;
}
.map-box__group.disabled{
    cursor: no-drop;
}
.map-box__group.disabled path:first-child{
    fill: #E5E5E5 !important;
}
.map-box__group.disabled path:last-child{
    fill: #302C29 !important;
}
.map-box__group:hover path:first-child, .map-box__group.active path:first-child{
    fill: #D64E47;
}
.map-box__group:hover path:last-child, .map-box__group.active path:last-child{
    fill: #ffffff;
}

@media (max-width: 991px) {
    .section-top__buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-top__buttons .btn {
        max-width: 600px;
        flex-shrink: inherit;
    }
    
    .section-regoins__info{
        width: unset;
        max-width: unset;
        justify-content: center;
    }
}

@media (max-width: 768px){
    .section-regoins__info-list{
        grid-template-columns: repeat(2, 1fr);
    }
    .section-regoins__info{
        gap: 30px;
    }
    .section-regoins__element span{
        width: 15px;
        height: 15px;
    }
    .section-regoins__element{
        gap: 10px;
    }
}

@media(max-width: 575px){
    .section-regoins__info-list{
        gap: 10px;
    }
    .section-regoins__info-item{
        padding-left: 15px;
    }
    .section-regoins__info-item::before{
        width: 8px;
    }
}
/* cookie */
@media (max-width: 520px) {
  .cookie__wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .cookie__button {
    padding: 6px 10px;
    width: 100%;
    font-size: 12px;
  }
  .cookie__text {
    text-align: center;
    font-size: 12px;
  }
}
/* cookie */

ol {
    list-style-type: auto;
}

ol li::before {
    display: none;
}
#header {
    z-index: 11;
}

#main {
    z-index: 10;
}

/* Фиксированный телефон */

.phone-fixed {
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 10;
}

.phone-fixed__link {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: rgba(214, 78, 71, 1);
	animation: hoverWave linear 1s infinite;
}

.phone-fixed__link img {
	width: 35px;
	height: 35px;
	animation: shake linear 1s infinite;
}

@media (max-width: 768px) {
	.phone-fixed {
		right: 20px;
		bottom: 20px;
	}
}

@keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(214, 78, 71, 0.3), 0 0 0 0 rgba(214, 78, 71, 0.2), 0 0 0 0 rgba(214, 78, 71, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(214, 78, 71, 0.3), 0 0 0 15px rgba(214, 78, 71, 0.2), 0 0 0 0 rgba(214, 78, 71, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(214, 78, 71, 0.3), 0 0 0 30px rgba(214, 78, 71, 0), 0 0 0 26.7px rgba(214, 78, 71, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(214, 78, 71, 0.3), 0 0 0 30px rgba(214, 78, 71, 0), 0 0 0 40px rgba(214, 78, 71, 0.0)
    }
}

@keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}