/* template_styles.css */

#bx-panel.bx-panel-fixed {
    z-index: 1010 !important;
}

.table-container {
    max-width: 100%;
    overflow: auto;
}

.icon-circle-close,
.icon-circle-plus {
    height: 27px;
    width: 27px;
    padding: 7px;
    background: #fff;
    border-radius: 100%;
    transition: 0.5s transform easy;
}
.icon-circle-plus {
    color: #000;
}
.icon-circle-close {
    color: #f0364e;
    transform: rotate(45deg);
}

.product-box__info
{
    width: 100%;
}

.category-item__title
{
    text-align: center;
}

.header__logo
{
    display: block;
    width: 304px;
    height: 48px;
    background: url(i/bg-logo3.png) center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.footer__logo {
    background: url(i/bg-logo3.png) center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.footer__privacy-policy a {
    color: #4d5d5f;
    font-size: 13px;
    font-weight: 300;
}

.start-slider--reset {
    margin-left: 0;
    width: auto;
    overflow: hidden;
}

.slick-dotted {
    padding-bottom: 40px;
}

/* slider arrow */
.slider__prev--arrow,
.slider__next--arrow {
    display: block;
    background: none;
    border: none;
    position: absolute;
    top: 50%;
    z-index: 1001;
    margin-top: -22px;
    color: #f0364e;
    cursor: pointer;
}
.slider__prev--arrow:hover,
.slider__next--arrow:hover {
    color: #a10002;
}
.slider__prev--arrow {
    left: 0;
}
.slider__next--arrow {
    right: 0;
    transform: scaleX(-1);
}
.slider__prev-svg--arrow,
.slider__next-svg--arrow {
    width: 45px;
    height: 45px;
}
.slick-dotted .slider__prev--arrow,
.slick-dotted .slider__next--arrow {
    margin-top: -52px; /*(margin bottom arrow) - (padding bottom slick-dotted) */
}
/* border circle */
.slider__dots--bc {
    position: absolute;
    list-style: none;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slick-slider .slider__dots--bc {
    margin: 0;
}
.slider__dots--bc [role="presentation"] {
    display: block;
    max-width: 20px;
    padding: 0;
    margin: 0 15px 0 0;
}
.slider__dots--bc [role="tab"] {
    padding: 0;
    margin: 0;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    border: 1px solid #000;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    background: transparent no-repeat center center;
}
.slider__dots--bc [role="presentation"]:not(.slick-active) [role="tab"]:hover {
    border-color: #f0364e;
}
.slider__dots--bc .slick-active [role="tab"] {
    cursor: default;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ccircle%20cx%3D%227%22%20cy%3D%227%22%20r%3D%227%22%20fill%3D%22%23f0364e%22%2F%3E%3C%2Fsvg%3E');
}

/* CONTENT BLOCK */
.content__block {
    margin: 75px 0;
}
.content__block:empty{
    display: none;
}
.content__block--first {
    margin-top: 0;
}
.content__block--last {
    margin-bottom: 0;
}
.content__block-sm {
    margin: 30px 0;
}
.content__block-sm--last {
    margin-bottom: 0;
}
.content__block-sm--first {
    margin-top: 0;
}
.content__block-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}


.main__content-right {
    padding: 15px;
}

.main__start-right {
    width: 100%;
}
.main__start-right .start-slider {
    width: auto;
    margin-left: 0;
}

.start__nav--lg {
    display: none;
    width: auto;
}

.side-box__block {
    margin-top: 30px;
}


/* ADVANTAGES SIMPLE */
.advantages-simple {
    margin: 15px 0;
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
}
.advantages-simple__item {
    box-shadow: 0 0 10px 5px #eee;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    line-height: 1;
}
.advantages-simple__image {
    width: 45px;
    height: 45px;
    margin-right: 5px;
}
.advantages-simple__name {
    font-size: 16px;
    font-weight: 600;
}


/*PREVIEW LIST*/
.preview-list {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
    justify-items: center;
}
.preview-list__item {
    position: relative;
    border-radius: 10px 10px 0 0;
    text-decoration: none;
    height: 210px;
    max-width: 500px;
    overflow: hidden;
}
.preview-list__image {
    display: block;
    max-width: 100%;
    height: auto;
    transition: 1s transform ease-out;
}
.preview-list__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    padding: 15px;
    height: 75px;
    background-color: #e5e6eb;
    text-align: center;
    display: flex;
    align-items: center;
    border-left: 3px solid #f0364e;
    transition: .5s ease-out;
    transition-property: background-color, opacity;
}
.preview-list__item:hover .preview-list__name {
    color: #a10002;
    opacity: 0.5;
}
.preview-list__item:hover .preview-list__image {
    transform: scale(1.1);
}

/* LIST4 NT */
.list4-nt {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}
.list4-nt__item {
    padding: 10px;
    width: 100%;
    min-width: 280px;
    max-width: 420px;
    height: 180px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    text-decoration: none;
    position: relative;
    transition: .5s ease-out;
    transition-property: background-size;
    justify-self: center;
}

.list4-nt__item:hover {
    background-size: 110% auto;
    text-decoration: none;
    border-color: #e9374c;
}
.list4-nt__name {
    color: #000;
    line-height: 35px;
    height: 35px;
    padding: 5px 0;
    display: block;
    margin: auto;
    text-align: center;
    position: absolute;
    top: calc(50% - 12px);
    left: 0;
    right: 0;
}
.list4-nt__name-text {
    margin: auto;
    display: inline-block;
    border-radius: 75px;
    background-color: #fff;
    padding: 0 15px;
    font-size: 16px;
    transition: .5s ease-out;
    transition-property: font-size, background-color, color;
}
.list4-nt__item:hover .list4-nt__name-text {
    font-size: 18px;
    background-color: #a10002;
    color: #fff;
}


/*COOKIE MESSAGE*/
.cookie-message {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 15px;
    display: none;
    justify-content: center;
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto;
}
.cookie-message__inner {
    display: block;
    align-items: center;
    background: #fff;
    border: 1px solid #d6d6d6;
    box-sizing: border-box;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .15);
    border-radius: 5px;
    max-width: 100%;
    padding: 15px;
}
.cookie-message__text {
    font-size: 12px;
    align-items: center;
}
.cookie-message__action {
    margin: 15px 0 0 0;
    text-align: center;
}
.cookie-message__btn {
    margin: 0 auto;
    width: 150px;
}


/* MEDIA */
@media(min-width: 451px) {
    .preview-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .preview-list--count3 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 576px) {
    .list4-nt {
        grid-template-columns: repeat(2, 1fr);
    }
    .list4-nt__item {
        width: auto;
        justify-self: auto;
    }
}

@media (min-width: 621px) {
    .advantages-simple {
        grid-template-columns: repeat(2, 1fr);
    }
    .preview-list--count3 {
        grid-template-columns: repeat(2, fr);
    }
}

@media (min-width: 801px) {
    .preview-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .cookie-message__inner {
         display: flex;
     }
     .cookie-message__action {
         margin: 0 0 0 30px;
         white-space: nowrap;
     }
}

@media (min-width: 1001px) {
    .start__nav--lg {
        width: 294px;
    }
    .start__nav--lg {
        display: block;
    }
    .main__start-right {
        width: calc(100% - 244px);
        margin-left: -50px;
    }
    .main__content-right {
        margin-left: 50px;
        padding: 30px 0 30px 26px;
    }

    .advantages-simple {
        grid-template-columns: repeat(4, 1fr);
    }

    .preview-list {
        grid-template-columns: repeat(4, 1fr);
    }
    .preview-list--count3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .list4-nt {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) {
    .list4-nt {
        grid-template-columns: repeat(4, 1fr);
    }
}

