@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
    min-height: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-size: 14px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    flex: auto;
    color: #565656;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    font-weight: 500;
    font-family: Inter, sans-serif;
}
/*Обводка*/
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
input.active.focus,
input.active:focus,
input.focus,
input:active.focus,
input:active:focus,
input:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
textarea:active,
textarea:focus
{
    outline: 0!important;
    outline-color: transparent!important;
    outline-width: 0!important;
    outline-style: none!important;
    box-shadow: 0 0 0 0 rgba(0,123,255,0)!important;
    outline-offset: 0 !important;
}
button::-moz-focus-inner {
    border: 0 !important;
}
.noselect {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pointer {
    cursor: pointer;
}
a {
    text-decoration: none;
}
/*VAR*/
:root {
    --orange: #FF6800;
    --green: #139D4D;
    --red: #cd0d1f;
    --red2: #e00034;
    --gray-dark: #333;
    --gray: #565656;
    --gray-light: #ededed;
}
/*TEXT*/
.bold {
    font-weight: 700;
}
.semibold {
    font-weight: 600;
}
.extrabold {
    font-weight: 800;
}
.medium {
    font-weight: 400;
}
.spacing {
    letter-spacing: -0.01em;
}
.spacing-2 {
    letter-spacing: -0.02em;
}
.h1 {
    font-size: 2.25rem;
}
.h3 {
    font-size: 1.25rem;
}
.fs-7 {
    font-size: 0.75rem;
}
.text-gradient {
    background: linear-gradient(90deg, #ff4201 0%, #ff8401 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*COLOR*/
.orange {
    color: var(--orange);
}
.green {
    color: var(--green);
}
.red {
    color: var(--red);
}
/*BG*/
.bg-gradient-orange {
    background: linear-gradient(48deg, #ff4701 0%, #ff8501 100%);
}
.bg-orange {
    background: var(--orange);
}
.bg-green {
    background: var(--green);
}
.bg-red {
    background: var(--red);
}
/*Radius*/
.br-10 {
    border-radius: 10px !important;
}
.br-t-10 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.br-b-10 {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*BORDER*/
.hr-orange {
    border-color: var(--orange);
    opacity: 1;
}
.hr-green {
    border-color: var(--green);
    opacity: 1;
}
.hr-red {
    border-color: var(--red);
    opacity: 1;
}
.b-1 {
    border: 1px solid #ebebeb;
}
/*Header*/
.nav-link {
    color: #000;
}
.nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--orange);
}
header .navbar-brand svg {
    height: 60px;
}
header {
    z-index: 99999;
    /*position: fixed;*/
    position: absolute;
    transition: opacity 200ms linear;
}
header.hide {
    /*margin-top: 200%;*/
    opacity: 0;
    visibility: hidden;
}
#MobileMenu {
    background: linear-gradient(43deg, #e00134 0%, #ff8302 100%);
    /*transform: translateY(-100%);*/
    z-index: -1;
    opacity: 0;
    transition-property: opacity, z-index;
    transition-timing-function: linear, step-end;
    transition-duration: 500ms;
}
#MobileMenu.active {
    /*transform: translateY(0);*/
    z-index: 99998;
    opacity: 1;
    transition-property: opacity, z-index;
    transition-timing-function: linear, step-start;
}
#MobileMenu .nav-link {
    color: #fff;
}
/*Burger*/
.navbar-toggler {
    display: block;
    height: 50px;
    width: 30px;
    position: relative;
    padding: 0;
    border: 0;
    cursor: pointer;
}
.navbar-toggler span, .navbar-toggler span:before, .navbar-toggler span:after {
    cursor: pointer;
    width: 25px;
    position: absolute;
    display: block;
    content: '';
    background: url('data:image/svg+xml,%3Csvg width="25" height="2" viewBox="0 0 25 2" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1 1H23.6274" stroke="%23FF6800" stroke-width="2" stroke-linecap="round" /%3E%3Cpath d="M1 1H23.6274" stroke="%23FF6800" stroke-width="2" stroke-linecap="round" /%3E%3Cpath d="M1 1H23.6274" stroke="%23FF6800" stroke-width="2" stroke-linecap="round" /%3E%3C/svg%3E');
}
.navbar-toggler span:before {
    top: -5px;
    height: 2px;
}
.navbar-toggler span:after {
    bottom: -5px;
    height: 2px;
}
.navbar-toggler span, .navbar-toggler span:before, .navbar-toggler span:after {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.navbar-toggler.active span {
    background-color: transparent;
}
.navbar-toggler.active span:before, .navbar-toggler.active span:after {
    top: 0;
}
.navbar-toggler.active span:before {
    transform: rotate(45deg);
}
.navbar-toggler.active span:after {
    transform: rotate(-45deg);
}
/*Footer*/
footer {
    /*background-image: url('data:image/svg+xml,%3Csvg fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 9.99999C0 4.47714 4.47715 0 10 0H1910C1915.52 0 1920 4.47715 1920 10V318H0V9.99999Z" fill="url(%23paint0_linear_387_797)" /%3E%3Cdefs%3E%3ClinearGradient id="paint0_linear_387_797" x1="955" y1="318" x2="977.148" y2="1.55016" gradientUnits="userSpaceOnUse"%3E%3Cstop offset="0.236831" stop-color="%23E00034" /%3E%3Cstop offset="1" stop-color="%23FF8501" /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E');*/
    background: linear-gradient(43deg, #e00034 0%, #ff8501 100%);
}
footer .nav-link:hover, footer .nav-link.active {
    color: var(--red);
}
footer .navbar-brand svg:first-child {
    height: 47px;
}
footer .navbar-brand svg:last-child {
    height: 18px;
}
/*FORM*/
.btn-orange {
    padding: 18px 44px;
    color: var(--orange);
    border: 1px solid var(--orange);
    line-height: 1;
    background: none;
}
.btn-orange:hover {
    background: linear-gradient(90deg, #ff4901 0%, #ff7f01 100%);
    color: #fff;
}
.btn-gray-dark {
    padding: 18px 44px;
    color: #fff;
    border: 1px solid var(--gray-dark);
    line-height: 1;
    background: var(--gray-dark);
}
.btn-gray-dark:hover {
    background: var(--gray);
    color: #fff;
}
/*KORM*/
.nav.nav-pills button {
    padding: 12px 15px 12px 12px;
    color: var(--orange);
    border: 1px solid var(--orange);
    box-sizing: border-box;
}
.nav.nav-pills button>svg {
    fill: var(--orange);
}
.nav.nav-pills button.active {
    background: linear-gradient(90deg, #ff4901 0%, #ff7f01 100%);
    color: #fff;
}
.nav.nav-pills button.active>svg {
    fill: #fff;
}
.tab-content .fade {
    transition: opacity 0.3s linear;
}
.kvadrat {
    aspect-ratio: 1 / 1;
}
.korm-ug {
    background: url('data:image/svg+xml,%3Csvg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M14 1L1 1L1 14" stroke="white" stroke-width="2" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 15px;
    height: 15px;
    border: none;
    transition: all linear 100ms;
}
.korm-ug.active {
    transform: rotate(180deg);
}
.img-collapse {
    transition: height linear 500ms;
}
.text-collapse, .text-plashka {
    transition: top linear 500ms;
    margin-top: -10px;
    padding: 26px 16px;
}
/*Carousel*/
.carousel-indicators {
    margin-bottom: .5rem;
    align-items: center;
}
.carousel-indicators [data-bs-target] {
    opacity: 1;
    width: 10px;
    height: 10px;
    background: none;
    border: 1px solid #fff;
    border-radius: 50%;
}
.carousel-indicators .active {
    width: 13px;
    height: 13px;
    background-color: #fff;
}
/*Advice*/
.advice .bg-gradient-orange.text-white {
    margin-top: -10px;
    padding: 26px 16px 16px 16px;
}
.advice img {
    cursor: pointer;
    transition: all 300ms linear;
}
.advice img:hover {
    transform: scale(1.05);
}
/*Dressing*/
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    opacity: 1;
}
.carousel-control-next-icon {
    background-image: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.5 13.5L7.5 7.5L1.5 1.5" stroke="white" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 10px;
    height: 15px;
}
.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M8.12109 1.5L2.12109 7.5L8.12109 13.5" stroke="white" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 10px;
    height: 15px;
}
#topdressing+div .carousel-inner {
    padding-left: 1rem;
    padding-right: 1rem;
}
/*VideoCarousel*/
.splide-all .splide__arrows {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.75rem;
    z-index: 10;
}
.splide-all .splide__slide:last-child {
    padding-right: 3rem;
}
.splide-video .splide__slide:last-child {
    padding-right: 0;
}
.splide-all .splide__arrows>.splide__arrow--prev,
.splide-all .splide__arrows>.splide__arrow--next
{
    width: 10px;
    height: 15px;
    background: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.5 13.5L7.5 7.5L1.5 1.5" stroke="white" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
    border: 0;
    padding: 0;
}
.splide-all.advice .splide__arrows>.splide__arrow--prev,
.splide-all.advice .splide__arrows>.splide__arrow--next,
.splide-collapse .splide__arrows>.splide__arrow--prev,
.splide-collapse .splide__arrows>.splide__arrow--next
{
    background: url('data:image/svg+xml,%3Csvg width="10" height="15" viewBox="0 0 10 15" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.5 13.5L7.5 7.5L1.5 1.5" stroke="%23FF6800" stroke-width="3" stroke-linecap="round" /%3E%3C/svg%3E');
}
.splide-all .splide__arrows>.splide__arrow--prev {
    transform: rotate(180deg);
}
.splide-all .splide__arrows>.splide__arrow--prev>svg,
.splide-all .splide__arrows>.splide__arrow--next>svg
{
    display: none;
}
.splide-all .splide__arrows>.splide__arrow--prev:disabled,
.splide-all .splide__arrows>.splide__arrow--next:disabled
{
    opacity: 0.5;
}
.splide__slide img {
    width: 100%;
}
.splide-video li a>div {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}
.splide-video li a>div:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-light);
    opacity: 0.5;
    z-index: 2;
    transition: opacity 300ms;
    border-radius: 10px;
    overflow: hidden;
}
.splide-video li a>div:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url("/img/play-button.webp"), linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65));
    /*background-color: rgba(255,255,255,0.65);*/
    background-repeat: no-repeat !important;
    background-position: 55% 50% !important;
    border-radius: 50%;
    /*opacity: 0.5;*/
    z-index: 3;
    transition: all 300ms;
}
.splide-video li a:hover>div:first-child::before {
    opacity: 0;
}
.splide-video li a:hover>div:first-child::after {
    background: url("/img/play-button.webp"), linear-gradient(rgba(255,255,255,1), rgba(255,255,255,1));
    background-repeat: no-repeat;
}
/*.splide__slide {*/
/*    width: calc(100% - 4rem);*/
/*}*/
/*Form*/
#InputSearch {
    background-image: url('data:image/svg+xml,%3Csvg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.0625 0C6.30616 0 8.125 1.81884 8.125 4.0625C8.125 4.98883 7.81496 5.84275 7.29299 6.52614L9.04968 8.28365C9.26122 8.49518 9.26122 8.83815 9.04968 9.04968C8.85442 9.24494 8.54717 9.25996 8.33468 9.09474L8.28365 9.04968L6.52614 7.29299C5.84275 7.81496 4.98883 8.125 4.0625 8.125C1.81884 8.125 0 6.30616 0 4.0625C0 1.81884 1.81884 0 4.0625 0ZM4.0625 1.08333C2.41715 1.08333 1.08333 2.41715 1.08333 4.0625C1.08333 5.70785 2.41715 7.04167 4.0625 7.04167C4.79437 7.04167 5.46459 6.77776 5.98322 6.33993C6.00764 6.25822 6.05248 6.18149 6.11698 6.11698C6.18149 6.05248 6.25822 6.00764 6.33971 5.98248C6.77776 5.46459 7.04167 4.79437 7.04167 4.0625C7.04167 2.41715 5.70785 1.08333 4.0625 1.08333Z" fill="white" /%3E%3C/svg%3E');
    background-position: center right;
    background-color: transparent;
    background-repeat: no-repeat;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #fff;
    padding: 8px 18px 8px 0;
}
#InputSearch::placeholder {
    color: #fff;
    opacity: 0.7;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Количество строк */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*btn-top*/
.btn-top {
    position: fixed;
    display: none;
    overflow: hidden;
    z-index: 99999999;
    right: 10px;
    bottom: 50px;
}
/************************************************/
/*****************PURINA-MAIN********************/
/************************************************/
@font-face {
    font-family: 'Futura PT';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/futurapt-medium-russian.woff2') format('woff2'),
    url('../fonts/futurapt-medium-russian.woff') format('woff'),
    url('../fonts/futurapt-medium-russian.ttf') format('truetype');
    unicode-range: U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD;
}
@font-face {
    font-family: 'Futura PT Bold';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/futurapt-bold-russian.woff2') format('woff2'),
    url('../fonts/futurapt-bold-russian.woff') format('woff'),
    url('../fonts/futurapt-bold-russian.ttf') format('truetype');
    unicode-range: U+21-23,U+25-5F,U+61-7E,U+AB,U+BB,U+401,U+410-44F,U+451,U+2013-2014,U+2018-2019,U+201C,U+201C-201E,U+2026,U+20BD;
}
body.purina-main {
    --red: #E00034;
    --disabled-btn: #e9e9e9;
    --font-family: "Inter", sans-serif;
    --second-family: "Futura PT", sans-serif;
    --extra-bold: "Futura PT Bold", sans-serif;
    --gray: #d8d8d8;
    --bg-footer: #000;
    --hr-footer: #fff;
    --color-footer: #fff;
    /*--color-select: #606060;*/
    --color-select: #000;
    --color2-footer:#fff;
    font-family: var(--font-family);
}
.bg-footer {
    background-color: var(--bg-footer);
}
body.purina-main .carousel-indicators {
    margin-bottom: 0;
    transform: translateY(180%);
}
body.purina-main .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-color: var(--red);
    opacity: 0.5;
}
body.purina-main .carousel-indicators .active {
    width: 12px;
    height: 12px;
    background-color: var(--red);
    opacity: 1;
}
#HeaderCarousel .carousel-caption {
    right: auto;
    left: 50%;
    bottom: 0;
    padding-top: 0;
    padding-bottom: 0.5rem;
    transform: translate(-50%, -50%);
}
body.purina-main #HeaderCarousel .btn-red {
    padding: 1.25rem 2.25rem;
}
body.purina-main .extrabold {
    font-family: var(--extra-bold);
    font-weight: 900;
}
body.purina-main .bold {
    font-family: var(--second-family);
}
body.purina-main .light {
    font-weight: 400;
}
body.purina-main .btn-red, body.purina-main .btn-black, body.purina-main .btn-danger {
    padding: 0.75rem 1.5rem;
    color: #fff;
    border: 1px solid var(--red);
    line-height: 1;
    background: var(--red);
}
body.purina-main .btn-red:hover,
body.purina-main .btn-red:focus,
body.purina-main .btn-red:active
{
    background: #000;
    border-color: #000;
}
body.purina-main footer .btn-red:hover,
body.purina-main footer .btn-red:focus,
body.purina-main footer .btn-red:active
{
    background: #fff;
    border-color: #fff;
    color: var(--red);
}
body.purina-main footer .btn-red:hover path,
body.purina-main footer .btn-red:focus path,
body.purina-main footer .btn-red:active path
{
    fill: var(--red);
}
body.purina-main .btn-black {
    border-color: #000;
    background: #000;
}
body.purina-main .btn-black:hover,
body.purina-main .btn-black:focus,
body.purina-main .btn-black:active
{
    background: var(--red);
    border-color: var(--red);
}
body.purina-main .btn-red:disabled, body.purina-main .btn-black:disabled {
    background: var(--disabled-btn);
    border-color: var(--disabled-btn);
}
/*Menu*/
body.purina-main .nav-link:hover, body.purina-main .navbar-nav .nav-link.active {
    color: var(--red);
}
body.purina-main .navbar-nav .dropdown-menu[data-bs-popper] {
    left: 50%;
    transform: translate(-50%);
    border-color: #EBEBEB;
    backdrop-filter: blur(11.899999618530273px);
    background: rgba(255, 255, 255, 0.77);
    border-radius: 0 0 10px 10px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    /*margin-top: 4px;*/
}
.dropdown-toggle {
    padding-right: 1rem !important;
    position: relative;
}
.dropdown-toggle::after {
    background-image: url('data:image/svg+xml,%3Csvg width="8" height="5" viewBox="0 0 8 5" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.75 0.75L3.75 3.75L6.75 0.75" stroke="black" stroke-width="1.5" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 8px;
    height: 5px;
    border: none;
    display: block;
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    /*transform: translateY(-50%);*/
}
.dropdown-toggle.show::after {
    transform: rotate(180deg);
}
body.purina-main .navbar-nav .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
body.purina-main .navbar-nav .dropdown-item:hover, body.purina-main .navbar-nav .dropdown-item:focus {
    background-color: var(--red);
    color: #fff;
}
body.purina-main .navbar-nav .dropdown-item:hover svg>path, body.purina-main .navbar-nav .dropdown-item:focus svg>path {
    stroke: #fff !important;
}
.btn-header-menu {
    border-color: var(--gray);
    color: #000;
    margin-right: .5rem;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
}
.btn-header-menu:hover,
.btn-header-menu:focus,
.btn-header-menu:active {
    border-color: var(--gray);
    color: #000;
}
body.purina-main .navbar-brand {
    margin-right: 0;
}
body.purina-main header .form-control {
    width: auto;
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    padding-left: 0;
    /*position: relative;*/
    /*z-index: 1;*/
    width: 70px;
}
body.purina-main header .input-group-text {
    border: none;
    background: none;
    padding-left: 0;
}
body.purina-main header .form-control::placeholder {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}
body.purina-main .navbar-nav li.nav-item {
    flex-shrink: 0 !important;
}
.navbar-nav li.more {
    display: none;
}
/*BURGER*/
body.purina-main .navbar-toggler span:before, body.purina-main .navbar-toggler span:after {
    background-image: url('data:image/svg+xml,%3Csvg width="11" height="3" viewBox="0 0 11 3" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.913086 1.08008L9.7947 1.08008" stroke="black" stroke-width="2" stroke-linecap="round" /%3E%3C/svg%3E');
}
/*FOOTER*/
body.purina-main footer {
    background: none;
}
body.purina-main footer .hr-red {
    border-color: var(--hr-footer);
}
body.purina-main footer .navbar-brand svg:first-child, body.purina-main footer .navbar-brand svg:last-child {
    height: auto;
}
.fs-8 {
    font-size: 0.625rem;
}
.fs-5-5 {
    font-size: 1.125rem;
}
.fs-14 {
    font-size: 0.875rem;
}
body.purina-main footer .lh-lg {
    line-height: 2.5 !important;
}
.color2-footer {
    color: var(--color2-footer);
}
.color-footer {
    color: var(--color-footer);
}
body.purina-main footer .nav-link {
    color: #fff;
}
/***********************************************/
/*****************PURINA-LMS********************/
/***********************************************/
body.purina-lms {
    --yellow: #FFEA00;
    --bg-footer: #000;
    --hr-footer: #fff;
    --color-footer: #606060;
    --color2-footer:#fff;
    --color-danger: #D6808E;
    color: #000;
    --border-gray: #979797;
    --color-table-blue: #1B76FF;
    --green-dark: #39A84D;
    --green-dark2: #06A561;
    --green-light: #8DE69D;
    --green-light2: #DAF9EC;
    --red-dark: #BD022D;
    --red-light: #F0809A;
}
body.purina-lms .bold {
    font-family: var(--font-family);
}
body.purina-lms .lnk-classic {
    color: #0d6efd;
}
body.purina-lms h1 {
    color: #000;
}
body.purina-lms header .navbar.b-1 {
    border-color: transparent;
}
body.purina-lms header .nav-link {
    color: #fff;
}
body.purina-lms header .nav-link:hover, body.purina-lms header .navbar-nav .nav-link.active {
    color: #000;
}
.btn-lms-head {
    padding: 0.75rem 1rem !important;
    color: #fff;
    border: 1px solid #fff;
    line-height: 1;
    background: var(--red);
}
.btn-lms-head:hover,
/*.btn-lms-head:focus,*/
.btn-lms-head:active {
    background: #000;
    border-color: #000;
    color: #fff !important;
}
.btn-white-red {
    padding: 0.75rem 0.9rem !important;
    color: var(--red);
    border: 1px solid #fff;
    line-height: 1;
    background: #fff;
    position: relative;
    z-index: 1;
}
.btn-white-red:after {
    display: none;
}
.btn-white-red:hover,
.btn-white-red:focus,
.btn-white-red:active {
    color: #fff;
    border-color: #000;
    background: #000;
}
.btn-white-red:hover path,
.btn-white-red:focus path,
.btn-white-red:active path {
    fill: #fff !important;
}
.unread::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border: 1px solid var(--red);
    border-radius: 50%;
    z-index: 2;
    display: block;
    transform: translate(50%, -50%);
}
/*BURGER*/
body.purina-lms .navbar-toggler {
    width: 20px;
}
body.purina-lms .navbar-toggler span:before, body.purina-lms .navbar-toggler span:after {
    background-image: url('data:image/svg+xml,%3Csvg width="14" height="3" viewBox="0 0 14 3" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.689209 1.23486H13.3166" stroke="white" stroke-width="2" stroke-linecap="round" /%3E%3Cpath d="M0.689209 1.23486H13.3166" stroke="white" stroke-width="2" stroke-linecap="round" /%3E%3Cpath d="M0.689209 1.23486H13.3166" stroke="white" stroke-width="2" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 15px;
}
body.purina-lms #MobileMenu {
    background: var(--red);
}
/*FOOTER*/
body.purina-lms footer .nav-link:hover {
    color: #fff;
}
/*ALERT*/
body.purina-lms .btn-close {
    --bs-btn-close-bg: url('data:image/svg+xml,%3Csvg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M11.694 0.306019C12.102 0.714045 12.102 1.37559 11.694 1.78361L7.47833 5.99926L11.694 10.2164C12.102 10.6244 12.102 11.286 11.694 11.694C11.286 12.102 10.6244 12.102 10.2164 11.694L6.00074 7.47685L1.78361 11.694C1.37559 12.102 0.714045 12.102 0.306019 11.694C-0.102006 11.286 -0.102006 10.6244 0.306019 10.2164L4.52315 5.99926L0.306019 1.78361C-0.102006 1.37559 -0.102006 0.714045 0.306019 0.306019C0.714045 -0.102006 1.37559 -0.102006 1.78361 0.306019L6.00074 4.52167L10.2164 0.306019C10.6244 -0.102006 11.286 -0.102006 11.694 0.306019Z" fill="white" /%3E%3C/svg%3E');
    --bs-btn-close-opacity: 1;
    --bs-btn-close-hover-opacity: 0.75;
}
.alert-red {
    background-color: var(--red);
    color: #fff;
}
.alert-red a {
    color: #fff !important;
}
.alert-cookie {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    margin-bottom: 0;
    z-index: 1000;
}
/*FORMS*/
body.purina-lms .border-1 {
    border-color: #000;
    border-style: solid;
}
body.purina-lms .form-label {
    font-size: 1rem;
    font-family: var(--second-family);
    color: #000;
}
body.purina-lms .form-control {
    border-color: #000;
    border-radius: 10px;
    color: #000;
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
}
body.purina-lms .form-control::placeholder {
    font-weight: 400;
    color: #000;
}
body.purina-lms .form-control.is-invalid {
    background-image: url('data:image/svg+xml,%3Csvg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="9.5" cy="9.5" r="9" fill="white" stroke="%23E00034" /%3E%3Cpath d="M10.24 11.424H8.256V4H10.24V11.424ZM8.352 14.528C8.11733 14.2827 8 13.984 8 13.632C8 13.28 8.11733 12.9867 8.352 12.752C8.59733 12.5067 8.896 12.384 9.248 12.384C9.6 12.384 9.89333 12.5067 10.128 12.752C10.3733 12.9867 10.496 13.28 10.496 13.632C10.496 13.984 10.3733 14.2827 10.128 14.528C9.89333 14.7627 9.6 14.88 9.248 14.88C8.896 14.88 8.59733 14.7627 8.352 14.528Z" fill="%23E62D36" /%3E%3C/svg%3E');
    border-color: var(--red);
    color: var(--red);
}
body.purina-lms .form-control.is-invalid::placeholder {
    color: var(--red);
}
body.purina-lms .btn-border {
    color: #000;
    border: 1px solid #000;
    padding: 1rem 1.5rem;
}
body.purina-lms .btn-border:hover, body.purina-lms .btn-border.active {
    background-color: #000;
    color: #fff;
}
body.purina-lms .btn-border.active {
    cursor: default;
}
body.purina-lms .btn-danger:hover,
body.purina-lms .btn-danger:focus,
body.purina-lms .btn-danger:active,
body.purina-lms .btn-danger.active {
    background: var(--color-danger);
    border-color: var(--color-danger);
}
body.purina-lms .lnk-black {
    color: #000;
}
body.purina-lms .lnk-black:hover,
body.purina-lms .lnk-black:focus {
    color: #000;
    text-decoration: underline;
}
.dropdown.bootstrap-select {
    width: 100% !important;
}
.bootstrap-select > .dropdown-toggle {
    color: var(--color-select) !important;
    font-size: 0.875rem;
    font-weight: 400;
    border-color: #000;
    border-radius: 10px;
    padding: 1rem 1.5rem !important;
    background-color: #fff;
    z-index: 1;
}
.bootstrap-select .dropdown-menu {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-color: #000;
    border-radius: 0 0 10px 10px;
    margin-top: -13px !important;
    padding-top: calc(0.5rem + 7px) !important;
    z-index: 2;
    border-top-color: transparent;
}
.bootstrap-select.dropup .dropdown-menu, .bootstrap-select .dropdown-menu[data-popper-placement='top-start'] {
    border-radius: 10px 10px 0 0;
    margin-top: 0 !important;
    margin-bottom: -13px !important;
    padding-top: 0.5rem !important;
    padding-bottom: calc(0.5rem + 7px) !important;
    border-bottom-color: transparent;
    border-top-color: #000;
}
.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}
:not(.btn-check) + .btn.dropdown-toggle:active, .bootstrap-select > .dropdown-toggle.show {
    color: #000 !important;
    background-color: #fff;
    border-color: #000;
}
.dropup .dropdown-toggle::after {
    border: none;
}
.bootstrap-select > .dropdown-toggle::after {
    margin-right: 1.5rem;
}
.bootstrap-select .dropdown-toggle .filter-option {
    margin-right: 1rem;
}
.bootstrap-select .dropdown-item {
    color: var(--color-select);
    font-weight: 400;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}
.bootstrap-select .dropdown-item:focus, .bootstrap-select .dropdown-item:hover, .bootstrap-select .dropdown-item.active {
    color: #fff;
    background-color: var(--red);
    border-radius: 10px;
}
/*DASHBOARD*/
body.purina-lms .extrabold-pt {
    font-family: var(--second-family);
    font-weight: 900;
}
body.purina-lms .border-1-gray {
    border: 1px solid var(--border-gray);
}
body.purina-lms .hr-gray {
    border-color: var(--border-gray);
}
body.purina-lms .lnk-yellow,
body.purina-lms .lnk-yellow:hover,
body.purina-lms .lnk-yellow:focus,
body.purina-lms .lnk-yellow:active {
    color: var(--yellow);
    text-decoration: underline;
}
body.purina-lms .btn-gray-black {
    color: #000;
    background: #EBEBEB;
    border-color: #EBEBEB;
}
body.purina-lms .btn-gray-black:hover,
body.purina-lms .btn-gray-black:focus,
body.purina-lms .btn-gray-black:active,
body.purina-lms .btn-gray-black.active {
    color: #fff;
    background: #000;
    border-color: #000;
}
body.purina-lms .btn-gray-black:disabled {
    opacity: 0.3;
}
.radio-sert {
    display: none;
}
.radio-sert+label {
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin-bottom: 2.5rem;
}
.radio-sert+label::after {
    content: 'Выбрать';
    color: #000;
    background: #EBEBEB;
    border: 1px solid #EBEBEB;
    width: 100%;
    /*height: 27px;*/
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 10px;
    z-index: 2;
    margin-top: 0.5rem;
    padding: 0.25rem;
    text-align: center;
}
.radio-sert+label:hover::after, .radio-sert:checked+label::after {
    color: #fff;
    background: #000;
    border-color: #000;
}
/*COURSES*/
.courses-1>div:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    border-radius: 10px;
    transition: all 0.3s linear;
}
.courses-1:hover>div:after {
    background-color: transparent;
}
.list-courses a, .list-courses li, .list-courses li::marker, .text-border-gray {
    color: var(--border-gray);
}

.link-hover a:hover{
    text-decoration: underline;
}

.list-courses a:hover,
.list-courses a:focus,
.list-courses li:hover::marker,
.list-courses li.finished::marker,
.list-courses li.finished,
.list-courses li.finished>a
{
    color: #000;
}
.border-red {
    border-color: var(--red);
}
/*notifications*/
header .notifications-list {
    box-shadow: 0 0 13px 1px rgba(0, 0, 0, 0.08);
    background: #fff;
    max-width: 320px;
    height: 0;
    overflow: hidden;
}
.notifications-list.active {
    height: auto;
}
.unread-list {
    background: #e4e4e4;
    position: relative;
    z-index: 1;
}
.unread-list:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--red);
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
}
.notifications-list li>a>.bg-white.rounded-circle {
    min-width: 60px;
    width: 60px;
    height: 60px;
}
.notifications-list li {
    border: 1px solid transparent;
}
.notifications-list li:hover {
    border-color: var(--border-gray);
    cursor: pointer;
}
/*BONUS*/
table td, table th {
    vertical-align: center;
}
.bonus-dush table>thead>tr{
    background-color: var(--border-gray);
}
.bonus-dush table>thead>tr>th, .td-dush table>thead>tr>th {
    color: #fff;
}
.bonus-dush table>tbody>tr, .td-dush table>tbody>tr {
    border-bottom: 1px solid var(--border-gray);
}
.bonus-dush table>tbody>tr:last-child, .td-dush table>tbody>tr:last-child {
    border-bottom-color: transparent;
}
.bonus-dush table>tbody>tr>td:last-child {
    width: 10%;
}
.bonus-dush table>tbody>tr>td>div.br-10, .td-dush table>tbody>tr>td>div.br-10 {
    width: 60px;
}
.bg-blue {
    background-color: var(--color-table-blue);
}
/*TP*/
.br-end-1 {
    border-right: 1px solid #000;
}
#Search {
    background-repeat: no-repeat;
    background-position: 12px center;
    background-image: url('data:image/svg+xml,%3Csvg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M3.75 0C5.82107 0 7.5 1.67893 7.5 3.75C7.5 4.60507 7.21381 5.39331 6.732 6.02413L8.35355 7.64645C8.54882 7.84171 8.54882 8.15829 8.35355 8.35355C8.17331 8.5338 7.8897 8.54766 7.69355 8.39515L7.64645 8.35355L6.02413 6.732C5.39331 7.21381 4.60507 7.5 3.75 7.5C1.67893 7.5 0 5.82107 0 3.75C0 1.67893 1.67893 0 3.75 0ZM3.75 1C2.23122 1 1 2.23122 1 3.75C1 5.26878 2.23122 6.5 3.75 6.5C4.42557 6.5 5.04424 6.2564 5.52297 5.85224C5.54552 5.77682 5.5869 5.70599 5.64645 5.64645C5.70599 5.5869 5.77682 5.54552 5.85204 5.52229C6.2564 5.04424 6.5 4.42557 6.5 3.75C6.5 2.23122 5.26878 1 3.75 1Z" fill="black" /%3E%3C/svg%3E');
    padding: 0.75rem 1.5rem 0.75rem 1.75rem;
}
.td-dush .dropdown.bootstrap-select {
    width: auto !important;
}
#Sort+button.dropdown-toggle, .status-select>button.dropdown-toggle, .seller-select>button.dropdown-toggle {
    padding: 0.85rem 0 0.85rem 1.75rem !important;
    width: auto !important;
    border-color: var(--border-gray) !important;
    background-color: #f5f5f5;
    font-size: 0.75rem;
}
.status-select>button.dropdown-toggle, .seller-select>button.dropdown-toggle {
    padding: .25rem .85rem .25rem .5rem !important;
    width: 120px !important;
}
.status-select>button.dropdown-toggle:after, .seller-select>button.dropdown-toggle:after {
    margin-right: 0.5rem;
}
.status-select>button.dropdown-toggle .filter-option, .seller-select>button.dropdown-toggle .filter-option {
    margin-right: .5rem;
}
#Sort+button.dropdown-toggle:after {
    left: 0;
    right: auto;
    margin-right: auto;
    margin-left: 0.75rem;
    background-image: url('data:image/svg+xml,%3Csvg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0.5 3.5H6.5" stroke="black" stroke-linecap="round" /%3E%3Cpath d="M0.5 0.5H3.5" stroke="black" stroke-linecap="round" /%3E%3Cpath d="M0.5 6.5H9.5" stroke="black" stroke-linecap="round" /%3E%3C/svg%3E');
    width: 9px;
    height: 7px;
    margin-top: 0;
    transform: translateY(-50%);
}
#Sort+button+.dropdown-menu, .status-select>.dropdown-menu, .status-select>.dropdown-menu[data-popper-placement="top-start"],
.seller-select>.dropdown-menu, .seller-select>.dropdown-menu[data-popper-placement="top-start"] {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
    min-width: auto !important;
    width: auto !important;
    border-color: var(--border-gray);
    border-radius: 10px;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
#Sort+button+.dropdown-menu .dropdown-menu, .status-select>.dropdown-menu .dropdown-menu, .seller-select>.dropdown-menu .dropdown-menu {
    padding-top: 0 !important;
    margin: 0 !important;
}
#Sort+button+.dropdown-menu .dropdown-item {
    padding: 0.5rem 0.5rem;
    font-size: 0.625rem;
}
.status-select>.dropdown-menu .dropdown-item,
.seller-select>.dropdown-menu .dropdown-item {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}
#Sort+button+.dropdown-menu .dropdown-item:focus,
#Sort+button+.dropdown-menu .dropdown-item:hover,
#Sort+button+.dropdown-menu .dropdown-item.active {
    color: var(--red);
    text-decoration: underline !important;
    background-color: transparent;
    border-radius: 10px;
}
.status-select .dropdown-item:focus,
.status-select .dropdown-item:hover,
.status-select .dropdown-item.active {
    /*color: var(--red);*/
    text-decoration: underline !important;
    background-color: transparent;
    /*border-radius: 10px;*/
}
.seller-select .dropdown-item:focus,
.seller-select .dropdown-item:hover,
.seller-select .dropdown-item.active {
    color: var(--red);
    text-decoration: underline !important;
    background-color: transparent;
    /*border-radius: 10px;*/
}
#Sort+button+.dropdown-menu .dropdown-item:focus span,
#Sort+button+.dropdown-menu .dropdown-item:hover span,
#Sort+button+.dropdown-menu .dropdown-item.active span,
.status-select .dropdown-item:focus span,
.status-select .dropdown-item:hover span,
.status-select .dropdown-item.active span,
.seller-select .dropdown-item:focus span,
.seller-select .dropdown-item:hover span,
.seller-select .dropdown-item.active span
{
    text-decoration: underline !important;
}
.td-dush .btn.border-1-gray {
    padding: .85rem 1rem;
}
.td-dush .lnk-black:hover {
    color: var(--red) !important;
}
.td-dush .lnk-black:hover path {
    fill: var(--red);
}
.bg-gray {
    background-color: var(--border-gray);
}
.td-dush table th:first-child div, .td-dush table th:last-child div {
    height: 40px;
}
.td-dush table th:first-child div {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.td-dush table th:last-child div {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.bg-gray-light {
    background-color: var(--gray-light);
}
/*SELLER*/
.green-dark {
    color: var(--green-dark);
}
.bg-green-light {
    background-color: var(--green-light);
}
.red-dark {
    color: var(--red-dark);
}
.bg-red-light {
    background-color: var(--red-light);
}
/*TEST*/
.purina-lms .form-check {
    padding-left: 2rem;
    margin-top: 1rem;
}
.purina-lms .form-check>.form-check-input {
    width: 0;
    border: none;
}
.purina-lms .form-check>.form-check-label {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
}
.purina-lms .form-check>.form-check-label::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    top: 0;
    right: 100%;
    margin-right: 0.85rem;
    margin-top: 0.2rem;
}
.purina-lms .form-check>.form-check-input:checked+.form-check-label::after,
.purina-lms .form-check>.form-check-input.is-valid+.form-check-label::after,
.purina-lms .form-check>.form-check-input.is-invalid+.form-check-label::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 9px;
    background-color: var(--border-gray);
    border-radius: 50%;
    top: 0;
    right: 100%;
    margin-right: 1.15rem;
    margin-top: 0.475rem;
}
.purina-lms .form-check>.form-check-input:checked+.form-check-label::before {
    border-color: rgba(151,151,151,.5);
    background-color: rgba(151,151,151,.5);
}
.purina-lms .form-check>.form-check-input.is-valid+.form-check-label {
    color: var(--green-dark);
}
.purina-lms .form-check>.form-check-input.is-valid+.form-check-label::after {
    background-color: var(--green-dark);
}
.purina-lms .form-check>.form-check-input.is-valid+.form-check-label::before {
    border-color: var(--green-light);
    background-color: var(--green-light);
}
.purina-lms .form-check>.form-check-input.is-invalid+.form-check-label {
    color: var(--red-dark);
}
.purina-lms .form-check>.form-check-input.is-invalid+.form-check-label::after {
    background-color: var(--red-dark);
}
.purina-lms .form-check>.form-check-input.is-invalid+.form-check-label::before {
    border-color: var(--red-light);
    background-color: var(--red-light);
}
.bg-green-light2 {
    background-color: var(--green-light2);
}
.green-dark2 {
    color: var(--green-dark2);
}

body.purina-main .bootstrap-select .form-control {
    padding: .5rem 1rem;
}