@font-face {
    font-family: 'Kinetika';
    src: url('../fonts/kinetika-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Kinetika';
    src: url('../fonts/kinetika-bold.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}



:root {
    /* Цвета */
    --background-color: #FBFBFB;
    --text-color: #191919;
    --accent-color: #BC9565;
    --light-accent-color: #E0BFA4;
    --second-accent-color: #15384B;
    --second-light-accent-color: #147288;
    --gray-color: #737373;
    --red-color: #B72D15;


    /* Скругления */
    --input-border-radius: 100px;
    --button-border-radius: 100px;
    --ads-border-raduis: 16px;
    --catalog-item-border-radius: 10px;
    --filter-block-border-radius: 10px;
    --item-tag-border-radius: 20px;
    --item-card-image-border-radius: 10px;

    /* Отступы */
    --catalog-items-row-gap: 16px;
    --catalog-items-column-gap: 20px;
    --header-vertical-padding: 16px;
    --header-horizontal-padding: 18px;
    --input-vertical-padding: 14px;
    --input-horizontal-padding: 26px;


    /* Типографика */
    --body-font-size: 16px;
    --title-font-size: 30px;
    --subtext-font-size: 10px;

    --small-button-font-size: 14px;
    --button-font-size: 16px;
    --large-button-font-size: 18px;
    --input-font-size: 16px;
    --label-font-size: 14px;

    --catalog-item-button-font-size: 14px;
    --catalog-item-name-font-size: 12px;
    --catalog-category-title-font-size: 22px;
    --item-tag-font-size: 14px;
    --item-cart-count-font-size: 10px;
    --item-input-count-font-size: 12px;

    --item-card-title-font-size: 20px;
    --item-card-details-font-size: 18px;
    --item-card-desc-font-size: 16px;

    --cart-item-title-font-size: 14px;
    --cart-item-price-font-size: 12px;
    --cart-item-desc-font-size: 16px;
    --cart-count-font-size: 12px;
    --cart-desc-font-size: 12px;

    --carthistory-item-text-font-size: 14px;
    --carthistory-item-price-font-size: 12px;

    --filter-title-font-size: 22px; 
    --filter-item-font-size: 16px; 
    --filter-desc-font-size: 14px; 
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Kinetika', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-weight: 400;
    padding-top: calc(var(--header-vertical-padding) * 2 + 60px);
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    cursor: pointer;
}
a:focus {
    text-decoration: none;
}

button {
    border: none;
}
button:focus {
    outline: none;
}
ul,
ol {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
.hidden-mobile {
    display: block; /* Скрывает на мобильных */
}

.hidden-desktop {
    display: none; /* Скрывает на десктопах */
}
.boldtext{
    font-weight: bold;
}
.lighttext{
    font-weight: lighter;
}
.pointer{
    cursor: pointer;
}
.error-message{
    font-size: var(--subtext-font-size);
    color: red;
    display: none;
}
input {
    outline: none;
    border: 1px solid var(--accent-color);
    background: var(--background-color);
    border-radius: var(--input-border-radius);
    color: var(--text-color);
    padding: var(--input-vertical-padding) var(--input-horizontal-padding);
    font-size: var(--input-font-size);
    width: 100%;
    font-family: 'Kinetika';
    box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
}

input::placeholder{
    font-family: 'Kinetika', sans-serif;
    font-size: var(--body-font-size);
    color: var(--gray-color);
    opacity: 0.7;
}
input::-webkit-input-placeholder {
    font-family: 'Kinetika', sans-serif;
    font-size: var(--body-font-size);
    color: var(--gray-color);
    opacity: 0.7;
}
input::-moz-placeholder {
    font-family: 'Kinetika', sans-serif;
    font-size: var(--body-font-size);
    color: var(--gray-color);
    opacity: 0.7;
}
input:-ms-input-placeholder {
    font-family: 'Kinetika', sans-serif;
    font-size: var(--body-font-size);
    color: var(--gray-color);
    opacity: 0.7;
}
input::placeholder {
    font-family: 'Kinetika', sans-serif;
    font-size: var(--body-font-size);
    color: var(--gray-color);
    opacity: 0.7;
}
.error{ 
    border: 1px solid var(--red-color);
}
header{
    position: fixed; /* Закрепляет шапку наверху */
    top: 0; /* Привязка к верхнему краю */
    left: 0; /* Привязка к левому краю */
    width: 100%; /* Шапка на всю ширину */
    z-index: 1000; /* Устанавливает шапку поверх других элементов */
    
}
.header__wrapper{
    display: flex;
    align-items: center;
    padding: var(--header-vertical-padding) var(--header-horizontal-padding);
    justify-content: space-between;
        box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
    width: 100%;
    background-color: var(--background-color);
}
.header__actions_block{
    display: flex;
    gap: 12px;
    align-items: center;
}
.rounded__button{
    display: flex;
    background: #fff;
    border-radius: var(--button-border-radius);
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.rounded__svg{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.header__action_block{
    max-width: 40px;
    max-height: 40px;
    padding: 11px;
}

.catalog__titlle_icon{
    height: 14px;
    width: auto;
}

.itemslist_item_image_link_block{
    max-width: 25px;
    max-height: 25px;
    position: absolute;
    z-index: 1;
    bottom: 6px;
    right: 6px;
}
.itemslist_item_image_link_block img{
    width: unset !important;
    height: unset !important;
    object-fit: unset !important;
    border-radius: unset !important;
}
.itemlist__item_actions_count_block{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 10px;
    border-radius: var(--input-border-radius);
    border: 1px solid var(--light-accent-color);
    box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
}
.itemlist__item_actions_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.itemlist__item_actions_count_plus{
    padding: 3px 5px;
}
.itemlist__item_actions_count_minus{
    display: flex;
    align-items: center;
    padding: 3px 5px;
}
.itemlist__item_actions_cart_block{
    position: relative;
    background: var(--second-accent-color);
    width: 27px;
    height: 27px;
}
.catalog__itemslist_item_desc_wrapper{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.catalog__itemslist_item_desc_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.catalog__itemslist_item_desc_text,
.catalog__itemslist_item_desc_title{
    font-size: var(--subtext-font-size);
    color: var(--light-accent-color);
}
.itemslist_item_image_tags_wrapper{
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 1;
}
.itemslist_item_image_recomend_wrapper{
    position: absolute;
    top: 40px;
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 1;
}
.recomend_tag{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--item-tag-font-size);
    color: var(--text-color);
    background-color: var(--background-color);
    border-radius: var(--item-tag-border-radius);
    width: 105px;
    height: 22px;
}
.image__tag{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--item-tag-font-size);
    padding: 2px 18px;
    color: #fff;
    border-radius: var(--item-tag-border-radius);
    max-width: 70px;
    height: 22px;
}
.itemslist_item_image_price_block{
    background: var(--accent-color);
}
.itemslist_item_image_new_block{
    background: var(--second-light-accent-color);
}
.itemslist_item_image_sale_block{
    background: var(--red-color);
}
.itemlist__item_actions_recomend_block{
    display: flex;
    width: 100%;
    height: 28px;
    justify-content: center;
    align-items: center;
    border-radius: var(--input-border-radius);
    background: var(--accent-color);
}
.itemlist__item_actions_recomend_text{
    color: #fff;
    font-size: var(--small-button-font-size);
}
.item__text_wrapper{
    width: 100%;
    color: var(--text-color);
    font-size: var(--item-card-desc-font-size);
}
.item__image_image{
    width: 100%;
    height: auto;
}
.item__price_block{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 35px;
    background: var(--accent-color);
    color: #fff;
    font-size: var(--item-card-desc-font-size);
    border-radius: var(--item-tag-border-radius);

}
.item__addcart_buton{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 37px;
    background: var(--red-color);
    border-radius: var(--input-border-radius);
    color: #fff;
    font-size: var(--large-button-font-size);
}
.item__desc_wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.item__desc_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 8px;
}
.item__desc_text{
    color: var(--text-color);
    font-size: var(--item-card-details-font-size);
}
.item__desc_title{
    color: var(--accent-color);
    font-size: var(--item-card-details-font-size);
}
.item__actions_wrapper{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.item__data_wrapper{
    margin-bottom: 80px;
}
.item__actions_count_block{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 3px 20px;
    border-radius: var(--input-border-radius);
    border: 1px solid var(--light-accent-color);
    box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
}
.itemlist__item_actions_block{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item__actions_count_minus{
    display: flex;
    align-items: center;
}

.catalog__count_block{
    border-radius: var(--button-border-radius);
    font-size: var(--cart-item-price-font-size);
    background: #fff;
    padding: 2px 17px;
    box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
}
.cart__makeorder_wrapper{
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    background: var(--red-color);
    border-radius: var(--button-border-radius);
    align-items: center;
    height: 52px;
    justify-content: center;
}
.cart__commet_wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.cart__comment_title_block{
    color: var(--second-accent-color);
    font-size: var(--cart-item-title-font-size);
}
.cart__itemlist_wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart__item_wrapper{
    display: flex;
    gap: 10px;
}
.cart__item_image_block{
    width: 105px;
    height: 95px;
    border-radius: var(--item-card-image-border-radius);
}
.cart__item_image_block img{ 
    height: 100%;
}
.cart__item_wrapper{
    background: #fff;
    box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
    border-radius: var(--item-card-image-border-radius);
    padding: 5px 12px;
}
.cart__item_text_block{
    max-width: 155px;
    color: var(--second-accent-color);
    font-size: var(--cart-item-title-font-size);
}
.cart__itemlist_block{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart__item_detele_block{
    background: var(--second-accent-color);
    width: 27px;
    height: 27px;
}
.cart__item_actions_wrapeer{
    display: flex;
    margin-top: 10px;
    gap: 7px;
    justify-content: space-between;

}
.cart__item_price_text{
    height: 26px;
    width: 80px;
    font-size: var( --cart-item-price-font-size);
}
.cart__comment_input_block textarea{
    height: 157px;
    outline: none;
    border: 1px solid var(--accent-color);
    background: var(--background-color);
    border-radius: 10px;
    color: var(--text-color);
    padding: var(--input-vertical-padding) var(--input-horizontal-padding);
    font-size: var(--input-font-size);
    width: 100%;
    font-family: 'Kinetika';
    box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
}
.cart__item_text_wrapeer{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
textarea::placeholder{
    font-family: 'Kinetika';
    font-size: var(--body-font-size);
    color: var(--gray-color);
    opacity: 0.7;
}
.cart__actions_wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 80px;
}
.cart__makeorder_title_block{
    color: #fff;
    font-size: var(--large-button-font-size);
}
.cart__makeorder_subtext_block{
    color: #fff;
    opacity: 0.7;
    font-size: var(--button-font-size);
}
.cart__gohistory_block{
    background: var(--second-accent-color);
    color: #fff;
    border-radius: var(--button-border-radius);
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--small-button-font-size);
}
.orderform__wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 80px;
    margin-top: 45px;
}
.title__margin{
    margin-top: 70px;
}
.order__from_block{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order__shipping_able_text,
.order__shipping_price_text{
    color: #fff;
    width: 100%;
    background: var(--second-light-accent-color);
    padding: 5px 32px;
    font-size: var(--button-font-size);
    border-radius: var(--button-border-radius);
}
.history__itemlist_block{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
}
.history__item_wrapper{
    position: relative;
    background: #fff;
    border-radius: var(--catalog-item-border-radius);
    box-shadow: 
    0 0 2px 0 rgba(0, 0, 0, 0.08),
    0 2px 24px 0 rgba(0, 0, 0, 0.08);
    padding: 14px 20px 20px 20px;
}
.history__item_desclist_title_block{
    display: flex;
    flex-direction: column;
}
.history__item_subtitle_text,
.history__item_title_text{
    color: var(--second-accent-color);
    font-size: var(--carthistory-item-text-font-size);
}
.history__item_title_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.history__item_title_block{
    display: flex;
    flex-direction: column;
}
.history__item_price_block{
    min-width: 60px;
    color: var(--second-accent-color);
    font-size: var(--carthistory-item-price-font-size);
}
.history__item_desclist_wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.history__item_desclist_wrapper_block{
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.history__item_desclist_title_text{
    color: var(--second-accent-color);
    font-size: var(--carthistory-item-text-font-size);
}
.history__item_desclist_subtitle_text{
    color: var(--gray-color);
    opacity: 0.7;
    font-size: var(--carthistory-item-text-font-size);
}
.history__item_desclist_price_block{
    min-width: 60px;
    color: var(--second-accent-color);
    font-size: var(--carthistory-item-price-font-size);
}
.history__item_again_text_icon{
    width: 19px;
    height: 19px;
}
.history__item_again_text_block{
    color: #fff;
    font-size: var(--button-font-size);
}
.history__item_again_wrapper{
    position: absolute;
    right: 0px;
    bottom: -20px;
    background: var(--second-accent-color);
    display: flex;
    gap: 13px;
    height: 38px;
    width: 180px;
    border-radius: var(--button-border-radius);
    align-items: center;
    justify-content: center;
}
.search__input_wrapper{
    display: flex;
    gap: 10px;
    align-items: center;
}
.search__input_input input{
    background: #fff;
    border: none;
    padding: 14px 40px;
    width: 280px;
    height: 40px;
}
.search__escape_block{
    color: var(--accent-color);

}
.search__input_block{
    position: relative;
}
.search__input_icon{
    position: absolute;
    left: 17px;
    top: 12px;
}
.search__wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}
.search__input_close_icon{
    position: absolute;
    right: 17px;
    top: 12px;
}
.search__result_itemlist_wrapper{
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
}
.search__result_item_wrapper{
    color: var(--second-accent-color);
}
.price__slider {
    font-family: sans-serif;
    margin: 20px 0;
    position: relative;
}

.price__values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: var(--filter-desc-font-size);
    color: var(--second-accent-color);
    position: relative;
    height: 20px;
}

.price__values span {
    position: absolute;
    top: -30px;
    background: #fff;
    padding: 2px 5px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-width: 50px;
    text-align: center;
}

.price__labels {
    margin-top: -10px;
    display: flex;
    justify-content: space-between;
    font-size: var(--filter-desc-font-size);
    color: var(--second-accent-color);
}

.price__slider__title {
    font-size: var(--filter-desc-font-size);
    color: var(--second-accent-color);
    margin-bottom: 10px;
}

.slider__container {
   margin-top: 20px;
}

.slider__container input {
    border: none;
    box-shadow: none;
}

input[type=range] {
    -webkit-appearance: none;
    position: absolute;
    width: 100%;
    top: 15px;
    height: 4px;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #b3824b;
    border: none;
    margin-top: -10px;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.slider__track {
    position: absolute;
    height: 4px;
    background-color: #ccc;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    border-radius: 2px;
}
.filter__category_filter_wrapper,
.filter__tag_filter_wrapper{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fitler__itemlist_title{
    color: var(--second-accent-color);
    font-size: 14px;
}

.custom__checkbox label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

/* Скрываем настоящий checkbox */
.custom__checkbox input[type="checkbox"] {
    display: none;
}

/* Рамка чекбокса */
.custom__checkbox label span::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid #b4895b;
    border-radius: 6px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* Галочка */
.custom__checkbox input[type="checkbox"]:checked + span::before {
    background-image: url('../images/check_icon.svg');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    content: "";
}
.custom__checkbox span{
    display: flex;
    align-items: flex-end;
    gap: 7px;
}
.filter__container {
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.filter__container.active {
    display: flex;
    transform: translateY(0);
}

.filter__block {
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.active__rounded{
    background: var(--accent-color);
}
.active__rounded svg path{
    fill: #fff;
}
.item__image_wrapper{
    border-radius: var(--item-card-image-border-radius);
}
#item-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.price__inputs{
    display: flex;
}
.price__inputs input{
    height: 5px;
}
#category-checkboxes{
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 90px;
    overflow-y: scroll;
}
.noUi-connect {
    height: 2px !important;
    background: var(--accent-color) !important;
}

.noUi-handle {
    background: #fff !important;
    border: 1px solid var(--accent-color) !important;
    box-shadow: none !important;
}
.noUi-horizontal .noUi-handle{
    height: 24px !important;
    width: 24px !important;
    border-radius: 1000px !important;
    top: -11px !important;
}
.noUi-horizontal .noUi-handle::before{
    display: none;
}
.noUi-horizontal .noUi-handle::after{
    display: none;
}
.noUi-target{
    box-shadow: none !important;
    border: none !important;
}
.cart__link{
    position: relative;
}
#cart-count{
    position: absolute;
    font-size: var(--subtext-font-size);
    color: #fff;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    top:0px;
    right: -8px;
    line-height: 0;
}
/* Center the Flatpickr calendar */
.flatpickr-calendar {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: white;
}

/* Overlay for modal effect */
.flatpickr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Show overlay when calendar is open */
.flatpickr-calendar.open + .flatpickr-overlay {
    display: block;
}

/* Style for disabled dates */
.flatpickr-day.disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}
.flatpickr-calendar.arrowBottom:before{
    display: none !important;
}
.flatpickr-current-month input.cur-year{
    font-family: 'Kinetika', sans-serif  !important;
    border: 1px solid #E0BFA4 !important;
    border-radius: 20px !important;
    text-align: center !important;
}
.flatpickr-day{
    font-family: 'Kinetika', sans-serif  !important;
    color: #15384B;
}
.flatpickr-day.today{
    font-family: 'Kinetika', sans-serif  !important;
    border-color: #147288 !important;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay{
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    font-family: 'Kinetika', sans-serif  !important;
}
.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus{
    background: var(--light-accent-color) !important;
    border-color: var(--light-accent-color) !important;
    font-family: 'Kinetika', sans-serif  !important;
}
.flatpickr-monthDropdown-months {
    font-family: 'Kinetika', sans-serif  !important;
    -webkit-appearance: none !important; /* Для Chrome/Safari */
    -moz-appearance: none !important;   /* Для Firefox */
    appearance: none !important;     /* Стандартное свойство */
    background-image: none !important;   /* Убираем фон, если он есть */
}
.flatpickr-current-month{
    font-family: 'Kinetika', sans-serif  !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months{
    font-family: 'Kinetika', sans-serif  !important;
    text-align: center  !important;
    color: white  !important;
    border-radius: 20px !important;
    background: var(--second-light-accent-color)  !important;
}
.arrowDown,
.arrowUp{
    display: none !important;
}
.numInput{
    font-family: 'Kinetika', sans-serif  !important;
    border-radius: 20px !important;
    border: 1px solid var(--light-accent-color) !important;
}