@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;
    --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;
}
/*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: var(--gray);
    --hr-footer: #000;
    --color-footer: #606060;
    --color2-footer:#000;
    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 .light {
    font-weight: 400;
}
body.purina-main .btn-red, body.purina-main .btn-black {
    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 .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;
}
body.purina-main footer .lh-lg {
    line-height: 2.5 !important;
}
.color2-footer {
    color: var(--color2-footer);
}
.color-footer {
    color: var(--color-footer);
}
/***********************************************/
/*****************PURINA-LMS********************/
/***********************************************/
body.purina-lms {
    --yellow: #FFEA00;
}
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: var(--gray);
}
.btn-lms-head {
    padding: 0.75rem 1rem !important;
    color: #fff;
    border: 1px solid #fff;
    line-height: 1;
    background: var(--red);
}
.btn-lms-head:hover {
    color: var(--gray);
    border-color: var(--gray);
}
.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;
}
.btn-notifications::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%);
}