/*@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');*/

@font-face {
    font-family: 'Cera Round Pro';
    src: local('Cera Round Pro Light'), local('CeraRoundPro-Light'),
    url('../fonts/CeraRoundPro-Light.woff2') format('woff2'),
    url('../fonts/CeraRoundPro-Light.woff') format('woff'),
    url('../fonts/CeraRoundPro-Light.svg#CeraRoundPro-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/*@font-face {*/
/*    font-family: 'Kittens';*/
/*    src: local('Kittens'), local('Kittens'),*/
/*    url('../fonts/A_Kittens_Silhouette_Alen_Rus.woff') format('woff'),*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

@font-face {
    font-family: 'Cera Round Pro';
    src: local('Cera Round Pro Regular'), local('CeraRoundPro-Regular'), url('../fonts/CeraRoundPro-Regular.woff2') format('woff2'), url('../fonts/CeraRoundPro-Regular.woff') format('woff'), url('../fonts/CeraRoundPro-Regular.svg#CeraRoundPro-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Round Pro';
    src: local('Cera Round Pro Thin'), local('CeraRoundPro-Thin'),
    url('../fonts/CeraRoundPro-Thin.woff2') format('woff2'),
    url('../fonts/CeraRoundPro-Thin.woff') format('woff'),
    url('../fonts/CeraRoundPro-Thin.svg#CeraRoundPro-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Round Pro';
    src: local('Cera Round Pro Black'), local('CeraRoundPro-Black'),
    url('../fonts/CeraRoundPro-Black.woff2') format('woff2'),
    url('../fonts/CeraRoundPro-Black.woff') format('woff'),
    url('../fonts/CeraRoundPro-Black.svg#CeraRoundPro-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Round Pro';
    src: local('Cera Round Pro Medium'), local('CeraRoundPro-Medium'),
    url('../fonts/CeraRoundPro-Medium.woff2') format('woff2'),
    url('../fonts/CeraRoundPro-Medium.woff') format('woff'),
    url('../fonts/CeraRoundPro-Medium.svg#CeraRoundPro-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cera Round Pro';
    src: local('Cera Round Pro Bold'), local('CeraRoundPro-Bold'),
    url('../fonts/CeraRoundPro-Bold.woff2') format('woff2'),
    url('../fonts/CeraRoundPro-Bold.woff') format('woff'),
    url('../fonts/CeraRoundPro-Bold.svg#CeraRoundPro-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root{
    --color-green: #34A853;
    --color-pink: #ff658a;
    --color-primary: #67ae3d;
}


/* Указываем box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
    padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
    list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
    max-width: 100%;
    display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
    margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
    font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Выставляем основные настройки по-умолчанию для body */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: 'Cera Round Pro';
    color: #292D32;
    font-weight: 300;
    font-size: 16px;
    background: #FFF;
}

.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-3xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 20px 0px;
    font-family: 'Cera Round Pro';
    font-weight: 600;
    color: #292D32;
    text-transform: none
}


body.mobile {
    padding-top: 55px;
}

.position-relative {
    position: relative;
}

.top__nav__list li {
    display: inline-block;
    margin-right: 24px;
    position: relative;
}

.top__nav {
    padding: 5px 0px;
}

.top__nav__list li:not(:last-child)::after {
    content: '●';
    position: absolute;
    top: 6px;
    font-size: 10px;
    color: #717171;
    right: -18px;
}

.top__nav__list a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
}

.top__nav__list a:hover {
    color: #FFA538;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
}

.lang a {
    color: #717171;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
}

.lang a:hover {
    color: #FFA538;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
}

.lang li {
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.mid__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*justify-content: space-between;*/

    gap: 95px;
}

.logo {
    margin-right: 20px;
    width: 100px;
}

.search__icon {
    background-color: #FFA538;
    border-radius: 50px;
    width: 45px;
    color: #fff;
    height: 45px;
    border: 0px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1px;
    cursor: pointer;
}

.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    outline: 0;
    background-color: #fff;
    color: #666;
    border-color: #e5e5e5;
}

.uk-input,
.uk-select,
.uk-textarea{
    &.error{
        border-color: red;
    }
}


.link__mid__phone {
    color: #292D32 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

.mid__phone__list__item {
    line-height: 15px;
}

.mid__phone__list__item span {
    font-size: 11px;
}

.btn__get__call {
    display: block;
    width: 100%;
    height: 50px;
    background: #ffa538;
    border: 2px solid #ffa538;
    color: #fff;
    margin-top: 15px;
    cursor: pointer;
    transition: all .3s;
}

.btn__get__call:hover {
    display: block;
    width: 100%;
    height: 50px;
    background: #fff;
    border: 2px solid #ffa538;
    color: #ffa538;
    margin-top: 15px;
    cursor: pointer;
    transition: all .3s;
}

.login__btn {
    border: 0px;
    box-shadow: 0px 2px 9px rgb(0 0 0 / 15%);
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
}

.phone__mid {
    margin: 8px 30px 0px 10px;

    @media (width >= 1200) {
        margin: 8px 40px 0px;
    }
}

.mid__cart__list__item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.cart__info span {
    font-size: 14px;
}

.link__mid__cart {
    border: 0px;
    box-shadow: 0px 2px 9px rgb(0 0 0 / 15%);
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    position: relative;
    margin-right: 10px;
}

.cart__info__prise span {
    font-size: 20px;
    font-weight: bold;
}

.action__mid {
    display: flex;
    align-items: center;
}


@media (max-width: 575px) {
    .top__search {
        height: 45px;
        box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px;
        border-radius: 22px;
        width: 500px;
        padding-left: 20px;
    }

    .about__product img {
        width: 55px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .top__search {
        height: 45px;
        box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px;
        border-radius: 22px;
        width: 500px;
        padding-left: 20px;
    }

    .about__product img {
        width: 55px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .top__search {
        height: 45px;
        box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px;
        border-radius: 22px;
        width: 500px;
        padding-left: 20px;
    }

    .about__product img {
        width: 125px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .top__search {
        height: 45px;
        box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px;
        border-radius: 22px;
        width: 500px;
        padding-left: 20px;
    }

    .about__product img {
        width: 125px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .top__search {
        height: 45px;
        box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px;
        border-radius: 22px;
        width: 500px;
        padding-left: 20px;
    }

    .about__product img {
        width: 125px;
    }

    .main__menu > li > a {
        font-size: 16px;
        font-weight: bold;
        color: #292D32;
        text-decoration: none;
        text-transform: none;
        padding: 0px 13.5px;
    }
}

@media (min-width: 1400px) and (max-width: 1919px) {
    .top__search {
        height: 45px;
        box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px;
        border-radius: 22px;
        width: 690px;
        padding-left: 20px;
    }

    .about__product img {
        width: 125px;
    }

    .main__menu > li > a {
        font-size: 16px;
        font-weight: bold;
        color: #292D32;
        text-decoration: none;
        text-transform: none;
        padding: 0px 31px;
    }
}

@media (min-width: 1920px) {
    .top__search {
        height: 45px;
        box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px;
        border-radius: 22px;
        width: 585px;
        padding-left: 20px;
    }

    .about__product img {
        width: 125px;
    }

    .main__menu > li > a {
        font-size: 16px;
        font-weight: bold;
        color: #292D32;
        text-decoration: none;
        text-transform: none;
        padding: 0px 31px;
    }
}

.bg__grad {
    background: rgb(248, 248, 248) !important;
    background: linear-gradient(180deg, rgba(248, 248, 248, 1) 25%, rgba(240, 240, 240, 1) 75%) !important;
    border-radius: 15px;
}

.uk-navbar-nav > li > a {
    min-height: 55px !important;
    font-family: 'Cera Round Pro';
}

.dog__btn {
    /*background: rgb(162, 207, 255);*/
    /*background: linear-gradient(180deg, rgba(162, 207, 255, 1) 25%, rgba(40, 132, 236, 1) 75%);*/
    color: #292D32;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    height: 55px;
    padding: 0px 25px;
    border-radius: 15px;
    margin: 0px 10px 0px 0px;
}

.cat__btn,
.treats__btn,
.additivies__btn
{
    /*background: rgb(251, 188, 4);*/
    /*background: linear-gradient(180deg, rgba(251, 188, 4, 1) 25%, rgba(242, 116, 24, 1) 75%);*/
    color: #292D32;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    height: 55px;
    padding: 0px 25px;
    border-radius: 15px;
    margin: 0px 10px 0px 10px;
}


.treats__btn {
    /*background: linear-gradient(180deg, rgba(141, 189, 154, 1) 25%, rgba(52, 168, 83, 1) 75%);*/
    /*margin-right: 20px;*/
}

.additivies__btn {
    /*background: linear-gradient(180deg, rgba(244, 162, 182, 1) 25%, rgba(255, 101, 138, 1) 75%);*/
    /*margin-right: 20px;*/
}


.dog__btn:hover {
    color: #292D32;
    text-decoration: none;
}

.treats__btn:hover,
.cat__btn:hover,
.additivies__btn:hover{
    color: #292D32;
    text-decoration: none;
}

.dog__btn img {
    width: 32px;
    height: 32px;
    margin-right: 20px;
}

.cat__btn img {
    width: 32px;
    height: 32px;
    margin-right: 20px;
}

.dog__btn,
.cat__btn {
    img {
        display: none;
        @media (width >= 1200) {
            display: block;
        }
    }
}

.nav__bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
}

.modal-small {
    width: 400px !important;
}

.slide__content {
    display: flex;
    position: relative;
    text-decoration: none;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    height: 100%;
}

.slide__content:hover {
    display: flex;
    position: relative;
    text-decoration: none;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.slide__item__top {
    border-radius: 20px;
    background-size: cover;
    margin: 10px;
    height: 335px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.splide__track {
    position: relative;
}

.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    height: 4em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4em;
    z-index: 1
}

.splide__arrow--prev {
    left: -22px;
}

.splide__arrow--next {
    right: -22px;
}

.slider__title {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.slide__info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 70%;
    padding: 10px 30px;
    color: #fff;
    z-index: 10;
}

.slide__img {
    position: absolute;
    left: 0px;
    z-index: 0;
}

.slide__img img {
    /*height: 275px;*/
    height: 185px;
    margin-left: 10px;
    width: auto;
}

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


.about__product__text ul li {
    font-size: 16px;
    font-weight: 700;
}

.section__title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    padding: 20px 0px;
}

.dw-flex {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.dw-flex img {
    width: 120px;
    margin-top: 80px;
    margin-bottom: 8px;
}

.catalog__item {
    box-shadow: 1px 4px 4px hsl(0deg 0% 0% / 10%);
    border-radius: 7px;
    background-color: #fff;
    transition: all .3s;
    padding: 25px;
    position: relative;
    min-height: var(--sd-catalog-item-min-height, 491px);
}

.catalog__item:hover {
    box-shadow: 1px 6px 6px hsl(0deg 0% 0% / 10%);
    border-radius: 7px;
    background-color: #fff;
    transition: all .3s;
    padding: 25px;
    position: relative;
}

.image__catalog__item {
    background-position: center;
    background-size: contain;
    height: 275px;
    width: 100%;
    background-repeat: no-repeat;
}

.title__catalog__item {
    text-decoration: none;
    color: #414141;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
    display: block;
}

.title__catalog__item:hover {
    text-decoration: none;
    color: #414141;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 25px;
    display: block;
}

.old__prise {
    text-decoration: line-through;
    margin-bottom: -10px;
}

.prise {
    color: #EA4335;
    font-size: 32px;
    font-weight: bold;
}

.prise span {
    color: #EA4335;
    font-size: 20px;
    font-weight: bold;
    @media (width > 1200px) {
        /* margin-left: -7px; */
    }

}

.tovar__info {
    margin-top: -10px;
    color: #BFBFBF;
    font-size: 14px;
}

.add__cart__btn {
    border-radius: 70px;
    border: 0px;
    background-color: #FFA538;
    padding: 20px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
}

.add__cart__btn:hover {
    border-radius: 70px;
    border: 0px;
    background-color: #EA4335;
    padding: 20px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
}

address, dl, fieldset, figure, ol, p, pre, ul {
    margin: 0 !important;
    border: 0;
}

.catalog__item__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.reviews-item {
    border-radius: 15px;
    background-size: cover;

    padding: 5px;
}

.slide__reviews {
    padding: 15px;
    min-height: 190px;
    border-radius: 15px;
    color: #fff;
    background-color: var(--color-primary);
}

.text__reviews {
    color: #fff;
}

/*.splide__slide.reviews-item:nth-child(4n+1) .slide__reviews {*/
/*    background-color: #C9A9F2;*/
/*}*/

/*.splide__slide.reviews-item:nth-child(4n+2) .slide__reviews {*/
/*    background-color: #89CFE5;*/
/*}*/

/*.splide__slide.reviews-item:nth-child(4n+3) .slide__reviews {*/
/*    background-color: #FF658A;*/
/*}*/

/*.splide__slide.reviews-item:nth-child(4n+4) .slide__reviews {*/
/*    background-color: #5FDB80;*/
/*}*/

.reviews-info {
    color: #fff;
    font-size: 18px;
    display: flex;
    font-weight: 600;
    flex-direction: row;
    align-items: center;
}

.reviews-info img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    margin-right: 15px;
}

.footer {
    background-color: #262E39;
    border-radius: 15px 15px 0px 0px;
    padding: 30px 0px 0px 0px;
    color: #fff;
    margin-top: 40px;
}

.socfoo {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.socfoo img {
    /*margin-top: 25px;*/
}

.footer__menu ul {
    list-style-position: inside;
    -moz-column-count: 2;
    /* Firefox */
    -webkit-column-count: 2;
    /* Safari and Chrome */
    column-count: 2;
    list-style-type: none;

    .active{
        a{
            text-decoration: underline;
            cursor: default;
        }
    }

    @media (width > 991px) {
        height: 200px;
    }

    @media (width <= 768px) {
        padding-left: 0;
    }

}

.footer__menu ul li a {
    text-decoration: none;
    color: #fff;
}

.footer__contacts ul {
    list-style-type: none;
    padding-left: 0px;
}

.footer__contacts ul li a {
    color: #fff;
    text-align: none;
}

.footer__email a {
    color: #fff;
    text-decoration: underline;
}

.dopfoo {
    color: #929292;
    font-size: 12px;
}

img.payfoo {
    float: right;
}

/* Cart Sidebar */
.cr-cart-overlay {
    width: 100%;
    height: 100vh;
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.cr-cart-view-active {
    right: 0 !important;
}

.cr-cart-view {
    height: 100%;
    position: fixed;
    top: 0;
    right: -350px;
    z-index: 20;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    color: #000;
}

.cr-cart-view .cr-cart-inner {
    width: 350px;
    height: 100%;
    margin: 0;
    padding: 0 20px;
    background-color: #fff;
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cr-cart-view .cr-cart-inner .cr-cart-top .cr-cart-title {
    margin-bottom: 15px;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
}

.cr-cart-view .cr-cart-inner .cr-cart-top .cr-cart-title h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #2b2b2d;
}

.cr-cart-view .cr-cart-inner .cr-cart-top .cr-cart-title button {
    color: #fb5555;
    font-size: 20px;
    font-weight: 800;
    background: none;
    border: none;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid #e9e9e9;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .crside_pro_img {
    margin: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 20%;
    flex: 1 0 20%;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .crside_pro_img img {
    max-width: 100%;
    border-radius: 5px;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .cr-pro-content {
    padding-left: 15px;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 70%;
    flex: 1 0 70%;
    overflow: hidden;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .cr-pro-content .cart_pro_title {
    width: 100%;
    padding-right: 30px;
    text-decoration: none;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .cr-pro-content .cr-cart-qty {
    margin-top: 5px;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .cr-pro-content .cr-cart-qty .cart-qty-plus-minus {
    margin: 0;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .cr-pro-content .cart-price {
    margin-top: 5px;
    font-size: 14px;
    display: block;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .cr-pro-content .cart-price span {
    color: #777;
    font-weight: 700;
    font-size: 16px;
}

.cr-cart-view .cr-cart-inner .cr-cart-top ul.crcart-pro-items li .cr-pro-content .remove {
    padding: 0 9px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 17px;
    line-height: 15px;
    background-color: #fff;
    color: #fb5555;
}

.cr-cart-view .cr-cart-inner .cr-cart-bottom {
    position: relative;
    top: -20px;
}

.cr-cart-view .cr-cart-inner .cr-cart-bottom .cart_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cr-cart-view .cr-cart-inner .cr-cart-bottom .cart-sub-total {
    margin: 20px 0 10px 0;
    padding-top: 0;
    padding-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #e9e9e9;
}

.cr-cart-view .cr-cart-inner .cr-cart-bottom .cart-sub-total table {
    margin: 10px 0 0 0;
}

.cr-cart-view .cr-cart-inner .cr-cart-bottom .cart-sub-total table tr td {
    border: none;
}

.cr-cart-view .cr-cart-inner .cr-cart-bottom .cart-sub-total table tr .text-right {
    font-weight: 700;
    text-align: right;
}

.cart-qty-plus-minus {
    width: 80px;
    height: 30px;
    margin: 0px 30px 0px 0px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-qty-plus-minus input {
    width: 30px;
    margin: 0;
    padding: 0;
    background: transparent none repeat scroll 0 0;
    color: #444;
    border: medium none;
    float: left;
    font-size: 14px;
    font-weight: 600;
    line-height: 38px;
    height: auto;
    text-align: center;
    outline: none;
}

.cart-qty-plus-minus button {
    height: 25px;
    width: 25px;
    margin-top: -2px;
    border: none;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.new__lable {
    background-color: #70C05B;
}

.popular__lable {
    background-color: #0099DF;
}

.sale__lable {
    background-color: #F27418;
}

.lable {
    position: absolute;
    top: 15px;
    left: 0px;
    z-index: 10;
}

.lable > div {
    margin-bottom: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
}

.remove:hover {
    text-decoration: none;
}

.main__btn {
    background-color: #FFA538;
    border: 0px;
    border-radius: 6px;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.main__btn img {
    margin-left: 10px;
    width: 20px;
}

.main__btn:hover {
    background-color: #FFA538;
    border: 0px;
    border-radius: 6px;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.secondary__btn {
    background-color: #fff;
    border: #FFA538 1px solid;
    border-radius: 6px;
    padding: 10px 15px;
    text-decoration: none;
    color: #FFA538;
}

.secondary__btn:hover {
    background-color: #fff;
    border: #FFA538 1px solid;
    border-radius: 6px;
    padding: 10px 15px;
    text-decoration: none;
    color: #FFA538;
}

.uk-breadcrumb > * > * {
    font-size: .875rem;
    color: #FFA538;
}

.page__content {
    padding: 15px 0px;
}

.product__page__title {
    color: #292D32;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Cera Round Pro';
    margin-top: 15px;
}

.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    content: "/";
    display: inline-block;
    margin: 0 20px 0 calc(20px - 4px);
    font-size: .875rem;
    color: #FFA538;
}

.slider {
    padding: 32px;
    color: #fff;
}

.slider .swiper-container {
    width: 100%;
    height: 100%;
}

.slider__flex {
    display: flex;
    align-items: flex-start;
}

.slider__col {
    display: flex;
    flex-direction: column;
    width: 150px;
    margin-right: 0px;
}

.slider__prev,
.slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    margin-left: 13px;
}

.slider__prev:focus,
.slider__next:focus {
    outline: none;
}

/* мы летом трусики не носим */
.slider__thumbs {
    height: calc(329px - 72px);
    overflow: hidden;
}

.slider__thumbs .slider__image {
    transition: 0.25s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
}

.slider__thumbs .slider__image:hover {
    opacity: 1;
}

.slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.slider__images {
    width: 100%;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 15%) 1px 2px 4px;
    border-radius: 15px;
}

.swiper-slide {
    flex-shrink: 0;
    width: 84px;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-vertical > .swiper-wrapper {
    padding: 0px 5px 20px;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
    align-items: center;
}

.slider__thumbs {
    padding-bottom: 5px;
}

.slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .slider__flex {
        flex-direction: column-reverse;
    }

    .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-top: 24px;
        width: 100%;
    }

    .slider__images {
        width: 100%;
    }

    .slider__thumbs {
        height: 100px;
        width: calc(100% - 96px);
        margin: 0 16px;
    }

    .slider__prev,
    .slider__next {
        height: auto;
        width: 32px;
        rotate: -90deg;
    }
}

.zoom-in {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    bottom: 20px;
    right: 15px;
    color: #292D32;
    z-index: 999;
    text-decoration: none;
}

.zoom-in:hover {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    bottom: 20px;
    right: 15px;
    color: #292D32;
    z-index: 999;
    text-decoration: none;
}

.zoom-in img {
    margin-right: 5px;
    width: 25px;
}

.zoom-image-hover {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border: 1px solid #e9e9e9;
    background-color: #f7f7f8;
    border-radius: 5px;
    cursor: crosshair;
}

.zoom-image-hover img {
    width: 100%;
}

.zoom-image-hover {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 5px;
    cursor: crosshair;
}

.zoom-image-hover img {
    width: 100%;
    display: block;
    margin: auto;
}

.page__product__info__params span {
    display: block;
    color: #BFBFBF;
    font-size: 16px;
    font-weight: 300;
}

.page__product__info {
    margin-top: 30px;
}

.page__product__prise {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 15px;
}

.page__product__prise .prise {
    margin-right: 25px;
}

.in__stock span {
    background-color: #34A853;
    color: #fff;
    font-weight: 700;
    padding: 5px 25px;
    border-radius: 5px;
    margin-top: 15px;
    display: block;
}

.out_in__stock span {
    background-color: #fb5555;
    color: #fff;
    font-weight: 700;
    padding: 5px 25px;
    border-radius: 5px;
    margin-top: 15px;
    display: block;
}

.pr__st {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.page__product__info__introtext {
    margin: 15px 0px;
}

.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 13.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 40px;
    transition: all 0.15s ease-out 0s;
    background: #916716;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
    margin-bottom: 10px;
}

.option-input:hover {
    background: #916716;
}

.option-input:checked {
    background: #916716;
}

.option-input:checked::before {
    width: 40px;
    height: 40px;
    display: flex;
    content: '\f00c';
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 5 Free';

}

.option-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #916716;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}

.option-input.radio {
    border-radius: 50%;
}

.option-input.radio::after {
    border-radius: 50%;
}

@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }

    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

.page__product__info__options {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.oneClick {
    color: #3792D0;
    display: inline-flex;
    text-decoration: none;
    position: relative;
}

.oneClick:hover {
    color: #3792D0;
    display: inline-flex;
    text-decoration: none;
    position: relative;
}

.oneClick::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    border-bottom: 2px #3792D0 dashed;
    bottom: -9px;
    right: 0px;
}

.product-page-action {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 30px 0px;
}

.product-page-action .quantity-num {
    font-size: 14px;
    padding: 9px 12px;
    border-radius: 15px;
    outline: none;
    width: 55px;
    border: 1px solid #fff;
    background: none;
    color: #292D32;
}

.product-page-action .main-btn {
    border-radius: 5px;
    background: #FFA538;
    color: #fff;
    text-decoration: none;
    padding: 10px 75px;
    transition: 0.5s;
    font-size: 16px;
    z-index: 1;
    position: inherit;
    display: inline-flex;
    align-items: center;
    border: 0px solid #FFA538;
    margin-top: 0px;
    cursor: pointer;
}

.product-page-action .main-btn:hover {
    border-radius: 5px;
    background: #FFA538;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-decoration: none;
    padding: 10px 75px;
    display: inline-block;
    transition: 0.5s;
    font-size: 16px;
    z-index: 1;
    position: inherit;
    display: inline-flex;
    align-items: center;
    border: 0px solid #FFA538;
    margin-top: 0px;
    cursor: pointer;
}

.delivery__pay__info {
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 10%) 1px 2px 4px;
    border-radius: 7px;
    padding: 25px 20px;
    margin-top: 30px;
    position: relative;

    .hr {
        width: 100%;
    }
}

.dp__title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dp__title img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.dp__title span {
    font-weight: 600;
    font-size: 16px;
}

.warning {
    color: #EA4335;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 26px;
    right: 20px;
}

.warning span {
    margin-right: 10px;
}

.icon__warning {
    width: 22px;
    height: 22px;
    border-radius: 22px;
    border: none;
    background-color: #EA4335;
    display: inline-block;
    font-family: sans-serif;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1.68px;
    cursor: pointer;
    transition: all .2s;
    animation: shadow 2s infinite linear;
}


@keyframes shadow {
    0% {
        box-shadow: 0 0 10px 0px #EA4335, 0 0 10px 0px #EA4335;
    }

    100% {
        box-shadow: 0 0 10px 6px rgba(255, 48, 26, 0), 0 0 4px 20px rgba(255, 48, 26, 0);
    }
}

.uk-tooltip {
    background-color: #EFEFEF;
    color: #292D32;
}

.uk-tooltip {
}

.uk-tooltip {
    background-color: #EFEFEF;
    color: #292D32;
    padding: 5px;
    border-radius: 3px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.15) 1px 1px 4px;
}

.uk-tooltip::after {
    position: absolute;
    content: '';
    right: 5px;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 11px;
    border-right-width: 7px;
    border-top: 8px solid #EFEFEF;
    bottom: -7px;
}

.delivery__item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 10px;
}

.delivery__item img {
    margin-right: 10px;
}

.hr {
    width: 265px;
    background-color: #E6E6E6;
    height: 1px;
    margin-bottom: 15px;
}

.uk-subnav-pill > .uk-active > a {
    background-color: #fff;
    color: #292D32;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 10px 10px 0px 0px;
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;

    @media (width > 475px){
        padding: 10px 35px;
    }
}

.uk-subnav-pill > a {
    background-color: #fff;
    color: #8F9090;
    padding: 10px 35px;
    font-weight: 600;
    border-radius: 10px 10px 0px 0px;
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
}

.uk-subnav-pill > * > :first-child {
    background-color: #fff;
    color: #8F9090;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 10px 10px 0px 0px;
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;

    @media (width > 475px){
        padding: 10px 35px;
    }
}



@media (width <= 430px){
    .uk-subnav>*{
        padding-left: 12px;
    }

}


.bg__white {
    background-color: #fff;
    padding: 25px;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 4px;
}

.page__text__title {
    line-height: 1.5;
    margin: 30px 0px;
    font-size: 24px;
    font-weight: 600;
}

.page__text__content{
    p{
        margin: 8px 0 !important;
    }
}

.uk-breadcrumb {
    margin-top: 15px !important;
}

.light__bg {
    background-color: #fff;
    padding: 25px 0px;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 4px;
}

.uk-link,
a {
    color: #ffa538;
    text-decoration: none;
    cursor: pointer;
}

.uk-link,
a:hover {
    color: #ffa538;
    text-decoration: none;
    cursor: pointer;
}

.contact__page__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 15px;
    align-items: center;
    color: #292D32;
    text-decoration: none;
}

.contact__page__item a {
    color: #292D32;
    text-decoration: none;
}

.contact__page__item a:hover {
    color: #292D32;
    text-decoration: none;
}

.contact__page__br {
    margin: 15px 0px;
    height: 1px;
}

.fs-20 {
    font-size: 20px !important;
    margin: 10px 0px !important;
}

.contact__page__hr {
    margin: 15px 0px;
    height: 1px;
    width: 100%;
    background-color: #E6E6E6;
}

.btn-default {
    background-color: #ffa538;
    border-radius: 7px;
    color: #fff;
    font-weight: 600;
    padding: 10px 35px;
}

.header__mob {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.header__mob__info {
    display: flex;
    align-items: center;
}

.link__sm__phone {
    font-size: 16px !important;
    color: #292d33 !important;
    font-weight: 600;
}

.mob__logo > a > img {
    width: 85px;
}

.cont__cart {
    position: absolute;
    background-color: #ffa538;
    color: #292D32;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: -5px;
}

.br-7 {
    border-radius: 7px;
}

.ec__message {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
}

.add__comment {
    background-color: #ffa538;
    color: #292D32;
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 7px;
    border: 0px;
    position: relative;
    margin-bottom: 35px;
    cursor: pointer;
    display: inline-block;
}

.add__comment:hover {
    background-color: #ffa538;
    color: #292D32;
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 7px;
    border: 0px;
    position: relative;
    margin-bottom: 35px;
    cursor: pointer;
    display: inline-block;
}

.add__comment::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 9px;
    border-right-width: 9px;
    border-top: 12px solid #ffa538;
    bottom: -10px;
    left: 15px;
}

.form-control {
    display: block;
    width: 100%;
    min-height: calc(1.5em + 0.75rem + 2px);
    padding: 0.9rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5.25rem;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.form-group {
    margin-bottom: 20px;
}

.cetch__grid {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.card__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    color: #292d33;
    margin-top: 15px;
    margin-bottom: 15px !important;
}


.mobile_menu_overlay, .mobile_menu_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile_menu_container, .mobile_menu_container ul li ul {
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms;
}

.mobile_menu_overlay {
    display: none;
    cursor: pointer;
    z-index: 10200;
    background: rgba(0, 0, 0, 0.5);
}

.mobile_menu_container {
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
    width: 300px;
    overflow: hidden;
    z-index: 10201;
    background: rgba(240, 240, 240, 1) 75%;

    .treats-mobile-nav{
        ul{
            /*background: var(--color-green);*/
        }
    }

    .additivies-mobile-nav{
        ul{
            /*background: var(--color-pink);*/
        }
    }


    .second_menu,
    .mobile-nav{
        li{
            &.active a{
                background-color: var(--color-primary);
            }
        }
    }

    .mobile-nav{
        a > div{
            width: 37px;
            margin-right: 15px;
        }
        a{
            color: #292d33
        }
        ul{
            position: static;
            transform: none;
            list-style: none;
            padding-left: 0;
        }

        li{
            min-height: 50px;
        }

        .subnav{
            margin-top: -5px;
            li{
                min-height: 40px;
                &.active a{
                    text-decoration: underline;
                }
            }

            a{
                /*color: #fff;*/
                display: block;
                padding: 10px 0 10px 60px;
            }
        }

    }
}

.mobile_menu_container.loaded {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.mobile_menu_container .mobile_menu_content {
    overflow: auto;
    max-height: 100%;
    padding-bottom: 30px;
}

.mobile_menu_container ul.second_menu {
    margin: 0;
    padding: 0;
    li {
        list-style: none;
        a {
            display: block;
            padding: 10px;
            line-height: 20px;
            font-size: 16px;
            /*background: #ffffff;*/
            color: #292d33;
            text-decoration: none;
            font-weight: bold;
        }

        a.parent {
            padding-right: 50px;
            background: #ffffff url("images/arrow_right.svg") right 20px center no-repeat;
            background-size: 20px;
        }

        a.parent:hover {
            background: #ffffff url("images/arrow_right.svg") right 20px center no-repeat;
            background-size: 20px;
        }

        a.back {
            padding-left: 50px;
            background: #ffffff url("images/arrow_left.svg") left 20px center no-repeat;
            background-size: 20px;
            box-sizing: border-box;
            min-height: 50px;
        }

        a.back:hover {
            background: #ffffff url("images/arrow_left.svg") left 20px center no-repeat;
            background-size: 20px;
        }

        a:hover {
            background: #ffffff;
        }
    }
}

.mobile_menu_container ul li ul {
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: #ffffff;*/
    z-index: 2;
}

.mobile_menu_container ul li ul.loaded {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.mobile_menu_container ul li ul.activity {
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 320px) {
    .mobile_menu_container {
        width: 240px;
    }
}

.mobile_menu {
    margin-left: 2px;
    display: flex;
}

.mob__login__menu {
    display: flex;
    align-items: center;
    padding: 0px 10px;
}

.mob__login__menu a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #ffffff;
    padding: 10px;
}

.mob__login__menu i {
    margin-right: 15px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-size: 20px;
    color: #ffffff;
}

.mob__login__menu > span::after {
    position: absolute;
    content: ' | ';
    top: 11px;
    left: 88px;
    color: #ffffff;
}

.dog__btn_mob {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*background: #ffa538;*/
    /*color: #fff;*/
    font-weight: 600;
    padding: 10px 15px;
}

.dog__btn_mob img {
    margin-right: 15px;
}

.btn_mob,
.treats__btn_mob,
.cat__btn_mob,
.additivies__btn_mob
{
    display: flex;
    flex-direction: row;
    align-items: center;
    /*background: #8d53cb;*/
    /*color: #fff;*/
    font-weight: 600;
    padding: 10px 15px;
}

.treats__btn_mob {
    /*background: var(--color-green);*/
}

.additivies__btn_mob {
    /*background: var(--color-pink);*/
}


.treats__btn_mob img,
.additivies__btn_mob img,
.cat__btn_mob img {
    /*margin-right: 15px;*/
}

.poroda {
    position: absolute;
}

.ms2_form .poroda {
    bottom: 10px;
}

.ms2_form .poroda_container {
    background: #ffa72b;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: .4s;
    font-size: 12px;
}

.ms2_form:hover .poroda_container {
    background: #ffa72b;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    bottom: 10px;
    opacity: 1;
    transition: .4s;
}

.buttons {
    position: fixed;
    min-height: 50px;
    text-align: center;
    z-index: 9999;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0px -3px 8px 2px rgb(66 66 66 / 43%);
}

.color_bg {
    background: #ffa538;
    height: 50px;
    border: 0px;
    vertical-align: top;
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.white__bg {
    height: 50px;
    border: 0px;
    vertical-align: top;
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    background: #fff;
}

.white__bg button {
    border: 0px;
    background: #fff;
}

.color_bg > span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    letter-spacing: normal;
    color: #fff;
}

.white__bg > button > span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    letter-spacing: normal;
    color: #292D32;
}

.btn__modal {
    color: #fff;
    background: #ffa538;
    border: 0px;
    border-radius: 7px;
    display: flex;
    padding: 10px 25px;
    width: 195px;
    align-items: center;
    justify-content: center;
}

.modal__action {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.modal__img__title {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

.phone-center li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#msMiniCart.full .not_empty, .msMiniCart.full .not_empty {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.img__mcd {
    width: 70px;
    height: auto;
}

#msMiniCart.full .not_empty, .msMiniCart.full .not_empty {
    display: flex;
}

.not_empty > li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.not_empty > li > img {
    width: 77px;
    height: 77px;
}

.cr-pro-content {
    position: relative;
}

.cart_pro_title {
    font-weight: 600;
}

.remove {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 17px;
    line-height: 15px;
    background-color: #fff;
    color: #fb5555;
    background-color: #fff;
    border: 0px;
}

.media {
    display: flex;
}

.media img {
    width: 65px;
}

.btn-close {
    background-color: #fff;
    border: 0px;
    color: #fb5555;
    font-size: 15px;
}

.media-body {
    width: 270px;
}

.total__minicart {
    font-weight: 600;
    font-size: 15px !important;
    margin-top: 15px;
    margin-bottom: 20px;
}

.title__cart {
    font-weight: 600;
    font-size: 20px !important;
}

.cart_btn {
    display: flex;
    justify-content: space-between;
}

.blue__bg {
    background-color: #CCEAFF;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 4px;
}

.checkout-cart-total {
    background-color: #fff;
    padding: 25px;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 4px;
    margin-bottom: 30px;
}

.cart__list li {
    border-bottom: 1px solid #dadada;
    padding: 15px 0px;
}

.cart__list li:first-child {
    border-top: 1px solid #dadada;
}

.office-auth-register-wrapper {
    background-color: #CDE5FF !important;
    border: 1px solid #cde5ff !important;
    box-shadow: rgb(0 0 0 / 15%) 0px 2px 9px !important;
    border-radius: 7px !important;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #fff !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    border: 1px solid #ced4da !important;
    border-radius: 2rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    overflow: hidden !important;
}

.choices__list--single {
    display: inline-block !important;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem !important;
    width: 100% !important;
    display: block !important;
    width: 100% !important;
    min-height: calc(1.5em + 0.75rem + 2px) !important;
    padding: 0.9rem 0.75rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #495057 !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border-radius: 25px !important;
}

.uk-form-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #999;
    z-index: 999;
}

.footer__modal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.user_area_ul {
    list-style: none;
    padding: 0px;
}

.user_area_ul li {
    padding: 10px 15px;
    display: flex;
    transition: .5s;
}

.user_area_ul li:hover {
    padding: 10px 15px;
    display: flex;
    background: #ffa538;
    transition: .5s;
}

.user_area_ul li.active {
    padding: 10px 15px;
    display: flex;
    background: #ffa538;
}

.user_area_ul li a {
    color: #292D32;
    font-size: 18px;
    font-weight: 600;
}

.user_area_ul li img {
    margin-right: 15px;
}

.x-grid3-header .x-grid3-hd-row td {
    color: #292D32 !important;
    background-color: #fff !important;
    font-weight: 700 !important;
    border-bottom: 1px solid #e4e9ef !important;
}

.x-panel.main-wrapper {
    background-color: #fff !important;
    padding: 5px !important;
    -webkit-box-shadow: 0 0 0px 0 rgba(0, 0, 0, .0) !important;
    box-shadow: 0 0 0px 0 rgba(0, 0, 0, .0) !important;
    border-radius: 3px !important;
    overflow: visible !important;
}

/* для элемента input c type="checkbox" */
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox + label::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0px;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    width: 20px;
    height: 20px;
}

/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
    border-color: #d8b891;
}

/* стили для активного чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active + label::before {
    background-color: #d8b891;
    border-color: #d8b891;
}

/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus + label::before {
    box-shadow: 0 0 0 0.2rem rgba(248, 199, 24, 0.25);
}

/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked) + label::before {
    border-color: #d8b891;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox:checked + label::before {
    border-color: #ffa538;
    background-color: #ffa538;
    background-image: url("check.svg");
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled + label::before {
    background-color: #e9ecef;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #ffa538 !important;
    background: #ffa538 !important;
    font-weight: normal;
    color: #454545 !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 30px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -7px !important;
    margin-left: -0.6em;
}

.uk-text-primary {
    color: #272e39 !important;
}

.uk-icon-button {
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    border-radius: 500px;
    background: #ffa538;
    color: #999;
    vertical-align: middle;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .1s ease-in-out;
    transition-property: color, background-color;
}

.btn-up {
    position: fixed; /* фиксированная позиция */
    background-color: #ffa538; /* цвет заднего фона */
    right: 20px; /* расстояние от правого края */
    bottom: 20px; /* расстояние от нижнего края */
    border-radius: 50px; /* скругление верхнего левого угла */
    cursor: pointer; /* форма курсора */
    display: flex; /* не отображать элемент */
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
    width: 50px;
    height: 50px;
    opacity: 1;
}

.btn-up_hide {
    display: none;
}

.btn-up_hiding {
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .btn-up:hover {
        background-color: #f44809; /* цвет заднего фона при наведении */
    }
}

/*.last__fm {*/
/*    font-family: "Kittens";*/
/*    font-optical-sizing: auto;*/
/*    font-weight: 700;*/
/*    font-style: normal;*/
/*    font-size: 26px;*/
/*    -webkit-text-fill-color: transparent;*/
/*    -webkit-background-clip: text;*/
/*    -webkit-box-decoration-break: clone;*/

/*    @media (width >= 1200) {*/
/*        font-size: 40px;*/
/*    }*/
/*}*/

.text {
    background-image: url('../img/bgbbb.jpg');
}

#option_vaga_ru,
#option_vaga_uk {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    border-radius: 5px;

    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='6.70711' y1='10.2929' x2='12.364' y2='15.9497' stroke='%23666666' stroke-width='2'/%3E%3Cline x1='10.9497' y1='15.9497' x2='16.6066' y2='10.2929' stroke='%23666666' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right 5px top 14px;

    width: max-content;
    padding-right: 30px;

}

#option_vaga_ru:focus,
#option_vaga_uk:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='17.2929' y1='13.7071' x2='11.636' y2='8.05025' stroke='%23666666' stroke-width='2'/%3E%3Cline x1='13.0503' y1='8.05025' x2='7.3934' y2='13.7071' stroke='%23666666' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-position: right 5px top 16px;
}

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

.text-wrap-balance {
    text-wrap: balance;
}

.text-left {
    text-align: left;
}

label.col-form-label {
    padding-left: 0;
    padding-right: 0;
}

.text-nowrap {
    white-space: nowrap;
}

.wrapper {
    min-height: 100vh;
}

.tooltip {
    border-bottom: 1px dashed currentColor;
}


.content-visibility-auto{
    content-visibility: auto;
}


ul.mainnav,
.main__menu{
    a {
        transition: .3s;
    }

    & > a{
        border: 1px solid transparent;
    }

    .active > a,
    .uk-active > a,
    a:hover{
        background: var(--color-primary) !important;
        border-color: #000;
        color: #000;
    }
}


ul.mainnav{
    list-style: none;

    li{
        position: relative;
    }
    & > li:hover,
    & > li:focus,
    & > li:focus-within
    {
       & > ul {
            opacity: 1;
            z-index: 3;
        }
    }
    .treats__btn {
        margin-right: 0;
    }


    ul{
        list-style: none;
        padding-left: 0;
        margin: 0 20px 0 10px !important;
        position: absolute;
        width: var(--submenu-width, calc(100% - 10px));
        opacity: 0;
        z-index: -1;
        transition: .3s opacity;

        &.additivies__subnav{
            --submenu-width: calc(100% - 20px);
        }


        &.cats__subnav,
        &.dog__subnav{
            --submenu-width: calc(100% + 40px);

            margin-left: 0 !important;
        }

        li{
            margin-top: 5px;
        }
        a{
            padding-right: 0;
            margin-right: 0;
            margin-left: 0;
            height: 45px;
            transition: .3s color;

            width: 100%;
            &:hover{
                /*color: #fff*/
            }
        }

        .treats__btn{
            &:hover{
                /*background: rgba(52, 168, 83, 1);*/
            }
        }

        .additivies__btn{
            &:hover{
                /*background: var(--color-pink);*/
            }
        }
    }
}


div#mse2_mfilter .btn_more{
    width: max-content;
}


.toggle-menu-item{
    background: none;
    border: none;
    padding: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;

    img{
        transition: transform 0.3s;
        pointer-events: none;
    }
}

.mobile-nav-has-children{
    .subnav{
        display: block;
        max-height: 0;
        opacity: 1;
        overflow: hidden;
        position: static;
        transition: max-height 0.5s;
    }
    &.open{
        .subnav{
            /*display: block;*/
            max-height: 300px;
        }
        .toggle-menu-item img {
            transform: rotate(90deg);
        }
    }
}

.text-uppercase{
    text-transform: uppercase !important;
}


.ajax_form{
    textarea + div.errortext,
    input + div.errortext{
        display: none;
        position: absolute;
        top: 100%;
        left: 40px;
        font-size: 14px;
    }

    textarea + div.errortext{
        left: auto;
        right: 0;
    }

    textarea.error + div.errortext,
    input.error + div.errortext{
        display: block;
        color: red;
    }
}



body {
    bwchat#bwc-wrap #bwc-chat .bwc-chat-editor .bwc-send svg{
        fill: var(--color-primary) !important;
    }
    #bingc-passive div.bingc-passive-overlay,
    bwchat#bwc-wrap #bwc-chat .bwc-chat-header,
    bwchat#bwc-wrap #bwc-widget-action button, bwchat#bwc-wrap #bwc-widget-action .bwc-button{
        background-color: var(--color-primary) !important;
    }

    #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-statistics,
    #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-phone-sample{
        opacity: .7;
    }

    #bingc-passive div.bingc-passive-overlay div.bingc-passive-content div.bingc-passive-get-phone-form form.bingc-passive-get-phone-form span.bingc-sample-countdown-timer span{
        opacity: .5;
    }
}


background

.invert{
    filter: invert();
}

.no-copy{
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE 10+ */
    user-select: none;         /* Standard */
    user-drag: none;         /* Standard */
    draggable: false;
    pointer-events: none;
}


.small-text{
    font-style: italic;
    font-size: 13px;
    color: #8d8c8c;
}

.protocol{
    display: grid;
    grid-template-columns: repeat(var(--protocol-columns, 2), 1fr);
    gap: 16px;
    align-items: start;
}


@media (width >= 768px) {
    .protocol {
        --protocol-columns: 3;
    }
}

@media (width >= 992px) {
    .protocol {
        --protocol-columns: 4;
    }
}

@media (width >= 1600px) {
    .protocol {
        --protocol-columns: 5;
    }
}

@media (width >= 2500px) {
    .protocol {
        --protocol-columns: 7;
    }
}



.protocol img{
    border: 1px solid #828282;
}



.home__goodies{
    --sd-catalog-item-min-height: 440px;

    @media (width >= 992px){
        --sd-catalog-item-min-height: 490px;
    }

    @media (width > 1100px){
        --sd-catalog-item-min-height: 470px;
    }
}

.home__cat{
    --sd-catalog-item-min-height: 470px;

    @media (width > 991px){
        --sd-catalog-item-min-height: 490px;
    }

    @media (width > 1100px){
        --sd-catalog-item-min-height: 440px;
    }
}


#mse2_filters fieldset:last-child{
    border-bottom: none !important;
}



.blog-list{
    display: grid;
    grid-template-columns: repeat(var(--blog-list-columns, 1), 1fr);
    gap: var(--blog-list-gap, 16px);
    align-items: start;

    .uk-card-body{
        padding: var(--blog-list-uk-card-body-padding, 16px 24px);
    }

    .uk-card-title{
        font-size: var(--sd-blog-card-font-size, 20px);
    }

    .uk-card-media-top{
        overflow: hidden;
        img{
            width: 100%;
        }
    }

    .new-intro{
        height: 5lh;
        overflow: hidden;
    }

    .article{
        transition: .3s box-shadow;
        overflow: hidden;
        img{
            transition: .3s scale;
        }
        &:hover{
            img{
                scale: 1.05;
            }
            box-shadow: 0 5px 15px rgba(0,0,0,.2);
        }
    }

    @media (width >= 576px){
        --blog-list-columns: 2;
        --blog-list-uk-card-body-padding: 16px 24px;
    }

    @media (width >= 768px){
        --blog-list-uk-card-body-padding: 8px 24px 24px;
    }

    @media (width >= 992px){
        --blog-list-columns: 3;
        --sd-blog-card-font-size: 22px;
        /*--blog-list-uk-card-body-padding: 30px;*/
    }

    @media (width >= 1200px){
        --blog-list-columns: 4;
        --blog-list-gap: 32px;
    }
}

.h-100{
    height: 100% !important;
}

.img-fluid{
    max-width: 100%;
    height: auto;
}

.rounded-1 {
    border-radius: .2rem!important;
}

.rounded-2 {
    border-radius: .25rem!important;
}
.rounded-3 {
    border-radius: .3rem!important;
}


.slide-video__media{
    display: block;
    position: relative;
    z-index: -1;
    opacity: 0;
    transition: .8s opacity;

    max-width: none;
    height: 100%;
    width: 100%;
    object-fit: fill;

    @media(width > 640px){
        max-width: 100%;
        height: auto;
    }
}

.slide-video{
    overflow: hidden;
    &:hover{
        .slide__content{
            z-index: -1;
        }

        .slide-video__media{
            z-index: 1;
            opacity: 1;
        }
    }
}

.splide__slide-1 .slide-video__media{
    @media(width > 640px) {
        top: 28px;
    }
}