/* grid */
.container {
    width: 100%;
    max-width: 1280px;
    padding-right: 16px;
    padding-left: 16px;
    margin: 0 auto;
}

.blank_page {
    padding-top: 40px;
    padding-bottom: 40px;
}

.container__flex {
    display: block;
}

.nowrap {
    white-space: nowrap;
}

.through {
    text-decoration: line-through;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.hide_mobile {
    display: none!important;
}

.hide_desktop {
    display: block!important;
}

.top_padding {
    height: 60px;
}

@media (min-width: 1024px) {
    .top_padding {
        height: 130px;
    }
    
    .container {
        padding-right: 100px;
        padding-left: 25px;
    }

    .container__flex {
        display: flex;
    }

    .container__sidebar {
        min-width: 360px;
        max-width: 360px;
    }

    .container__content {
        flex-grow: 1;
    }

    .hide_mobile {
        display: block!important;
    }
    
    .hide_desktop {
        display: none!important;
    }
}

/* breadcrumbs */
.breadcrumb {
    display: flex;
}

.breadcrumb li {
    padding-right: 10px;
    color: #8798A5;
}

.breadcrumb li a {
    color: #8798A5;
    white-space: nowrap;
}

/* price table */
.price__table {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E6EDF3;
}

.price__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    flex-wrap: wrap;
}

.price__row:nth-child(odd) {
    background: #F6F7F9;
}

.price__row-category,
.price__row-category:nth-child(odd) {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    background: #ebebeb;
    border-bottom: 1px solid #dcdcdc;
}

.price_btn {
    display: block;
    width: 33px;
    height: 33px;
    text-align: center;
    background: linear-gradient(180deg, #5D883D 0%, #ACD19E 100%);
    border-radius: 17px;
    padding-top: 7px;
    cursor: pointer;
}

.price__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 33px);
}

.price__title {
    padding-right: 20px;
    flex-grow: grow;
}

.price__price {
    padding-right: 20px;
    white-space: nowrap;
}

.price__details-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
}

.price__details-row + .price__details-row {
    border-top: 1px solid #E6EDF3;
}

.price__details-count {
    padding: 0 20px;
}

.price-search {
    max-width: 350px;
    margin-bottom: 30px;
}

/* call block */
.call__block {
    padding: 30px 0;
}

.call__block-text {
    padding: 20px 0;
    max-width: 700px;
}

/* advantages slider */
.advantages {
    padding: 20px 0 40px 0;
    border-top: 1px solid #E6EDF3;
    position: relative;
    margin-top: 40px;
}

.advantages__card-left {
    width: 100%;
    padding: 30px 0 0 0;
}

.advantages__card-ul {
    display: block;
}

.advantages__card-desc {
    padding-bottom: 30px;
}

.advantages__content ul li {
    padding: 10px 0 10px 30px;
}

.advantages__content ul li:before {
    content: '';
    width: 30px;
    height: 25px;
    display: inline-block;
    margin: 0 0  0 -30px;
    background: url(/upload/common/marker_green.png) left top no-repeat;
    position: relative;
    top: 5px;
}

.advantages__card-li {
    width: 100%;
    padding: 0  0 20px 25px;
}

.advantages__card-li:before {
    content: '—';
    display: inline-block;
    width: 25px;
    margin-left: -25px;
}

.advantages__card-right {
    width: 100%;
    min-height: 450px;
    padding: 0 50px 40px 50px;
    display: flex;
    flex-direction: column-reverse;
}

.advantages__card-price {
    max-width: 300px;
    padding: 20px 30px;
}

.advantages__slider-btns {
    position: absolute;
    top: 260px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.advantages__btn-prev,
.advantages__btn-next {
    z-index: 5;
    left: 0;
    right: 0;
    margin: 5px 0;
}

.advantages__btn-prev:after,
.advantages__btn-next:after {
    content: '';
    width: 10px;
    height: 17px;
    background: url(/img/slider-btn-arrow.svg) center/contain no-repeat;
}

.advantages__btn-next:after {
    transform: rotate(180deg);
}

@media (min-width: 1024px) {
    .advantages {
        padding: 20px 0;
        width: calc(100% + 90px);
        margin-top: 0;
    }

    .advantages h2 {
        position: relative;
        z-index: 1;
    }

    .advantages__card {
        display: flex;
        align-items: stretch;
        position: relative;
        z-index: 2;
    }

    .advantages__slider {
        position: relative;
        z-index: 1;
    }

    .advantages__card-left {
        width: 50%;
        padding: 0 40px 0 0;
        order: -1;
    }

    .advantages__card-right {
        width: 50%;
        min-height: 450px;
    }

    .advantages__card-ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .advantages__card-li {
        width: 48%;
    }
    
    .advantages__slider-btns {
        top: 42%;
        right: 70px;
    }
}

/* circle slider */
.circle__img {
    width: 80%;
    margin: 0 auto 30px auto;
}

.circle__img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
}

.circle__subtitle,
.circle__title {
    padding-bottom: 20px;
}

.circle__slider-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    min-height: 44px;
}

.circle__slider-page {
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.circle__slider-btns .swiper-pagination-bullet {
    outline: none;
    background: #B3C1CB !important;
    opacity: 1 !important;
    margin: 0 10px;
    transition:all .2s ease
}

.circle__slider-btns .swiper-pagination-bullet svg {
    display:none
}

.circle__slider-btns .swiper-pagination-bullet-active {
    height: 43px !important;
    width: 43px !important;
    margin-left: 1px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOCA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8ZWxsaXBzZSBjeD0iNCIgY3k9IjQiIHJ4PSI0IiByeT0iNCIgZmlsbD0iIzk3QzA0RCIvPgo8L3N2Zz4K) 50% no-repeat !important
}

.circle__slider-btns .swiper-pagination-bullet-active svg {
    display:block
}

.circle__slider-btns .swiper-pagination-bullet-active .path {
    stroke-dashoffset: 0;
    stroke-dasharray: 133;
    -webkit-animation: bullet-loader 6s linear;
    animation:bullet-loader 6s linear
}

@-webkit-keyframes bullet-loader {
    0% {
        stroke-dashoffset:133
    }

    to {
        stroke-dashoffset:0
    }
}

@keyframes bullet-loader {
    0% {
        stroke-dashoffset:133
    }

    to {
        stroke-dashoffset: 0
    }
}

@media (min-width: 1024px) {
    .circle__slider-btns {
        justify-content: left;
        margin-top: 0;
    }

    .circle__cols {
        display: flex;
        align-items: center;
    }
    
    .circle__text {
        width: 60%;
        padding-right: 30px;
    }
    
    .circle__img {
        width: 40%;
    }
}

/* rectangle */
.rectangle__slider-wrap {
    position: relative;
}

.rectangle__slider {
    position: relative;
    z-index: 2;
}

.rectangle__slider-btns {
    position: relative;
    top: -20px;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.rectangle__slider-prev:after, .rectangle__slider-next:after {
    content: "";
    width: 10px;
    height: 17px;
    background: url("/img/slider-btn-arrow.svg") center/contain no-repeat;
}

.rectangle__slider-next:after {
    transform: rotate(180deg);
}

.rectangle__slider-bkg {
    position: absolute;
    top: 57px;
    left: 17px;
    width: 101%;
    z-index: 1;
}

@media (min-width: 1024px) {
    .rectangle__slider-btns {
        display: block;
        position: absolute;
        top: 50%;
        right: -20px;
    }
}

/* horizontal slider */
.horizontal__slide-wrap {
    display: block;
}

.horizontal__slide-text {
    padding: 20px 0;
}

.horizontal__slide-btns {
    padding-left: 49%;
}

@media (min-width: 1024px) {
    .horizontal__slide-wrap {
        display: flex;
    }

    .horizontal__slide-img {
        width: 45%;
    }
    
    .horizontal__slide-text {
        width: 55%;
        padding: 20px 0 20px 40px;
    }
}




/* cookie-message */ 
.cookie-message {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100%;
    max-width: 600px;
    background: #fff;
    color: #212529;
    padding: 11px 14px 11px 9px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    z-index: 99999;
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.cookie-message-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cookie-message-text {
    flex: 1;
    padding-right: 10px;
    color: #212529;
    font-size: 12px;
}

.button {
    background-color: #fff;
    color: #91b83f;
    border: 2px solid #91b83f;
    cursor: pointer;
    font-size: 12px;
    border-radius: 10px;
    padding: 10px 18px;
    box-shadow: none;
    transition: background 0.15s, color 0.15s;
}

.button:hover {
    background: #91b83f;
    color: #fff;
}

.cookie-close {
    background: none;
    border: none;
    color: #212529;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 0 0 10px;
    transition: opacity 0.3s;
}

.cookie-close:hover {
    opacity: 0.5;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .cookie-message {
        left: 0;
        right: 0;
        bottom: 58px;
        width: 95%;
        max-width: 95%;
        margin: 0 auto;
        border-radius: 10px;
        opacity: 0.9;
        padding: 9px 9px;
    }
    .cookie-message-inner {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }
    .cookie-message-text {
        width: 100%;
        margin-bottom: 0;
        padding: 0;
        flex: 1 1 auto;
    }
    .button, .cookie-close {
        width: auto;
        min-width: 44px;
        margin-bottom: 0;
        margin-left: 6px;
    }
    .cookie-actions {
        display: flex;
        align-items: center;
        margin-left: 6px;
    }
    .cookie-close {
        text-align: right;
        margin: 0 0 0 8px;
        display: block;
        position: static;
    }
}
/* cookie-message */  