@import "font-awesome.min.css";
@import "fonts.css";
@import "phoneInput.css";
@import "treeselect.css";
@import "datepicker.css";
@import "alerts.css";
@import "buttons.css";
@import "forms.css";
@import "tables.css";
@import "special.css";

:root {
    --black: #101729;
    --white: #fff;
    --gray: #d8dce6;
    --gray-light: #f5f6fa;
    --gray-dark: #8f94ab;
    --blue: #112b66;
    --blue-light: #d9e4ff;
    --red: #991a4e;
    --red-light: #ffd9e9;
    --green: #1bc592;
    --green-light: #ccffef;
    --yellow: #ffbb33;
    --yellow-light: #ffeecc;
    --bg-color: var(--white);
}
:focus-visible {
    outline: var(--blue-light) solid 1px;
    border-radius: 5px;
}

/*  */
.border {
    border: 1px solid var(--gray) !important;
    border-radius: 10px;
    box-shadow: 0px 0px 20px var(--gray-light);
}
.border-black {
    border: 1px solid var(--gray) !important;
    border-radius: 10px;
    box-shadow: 0px 0px 5px var(--gray-dark);
}
.rounded-10 {
    border-radius: 5px;
}
.bg-w {
    background-color: var(--white);
}
.bg-gd {
    background-color: var(--gray-dark);
}
.bg-g {
    background-color: var(--gray);
}
.bg-gl {
    background-color: var(--gray-light);
}
.bg-bl {
    background-color: var(--blue-light);
}
.bg-b {
    background-color: var(--blue);
}
.bg-rl {
    background-color: var(--red-light);
}
.bg-r {
    background-color: var(--red);
}

.c-w {
    color: var(--white);
}
.c-gd {
    color: var(--gray-dark);
}
.c-g {
    color: var(--gray);
}
.c-gl light {
    color: var(--gray-light);
}
.c-bl {
    color: var(--blue-light);
}
.c-b {
    color: var(--blue);
}
.c-rl {
    color: var(--red-light);
}
.c-r {
    color: var(--red);
}
.gap-0 {
    gap: 0;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 1rem;
}
.gap-4 {
    gap: 1.5rem;
}
.gap-5 {
    gap: 3rem;
}

/* body */
body {
    position: relative;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    flex-wrap: nowrap;
    /* align-items: center; */
    width: 100%;
    /* justify-content: center; */
    background-color: var(--bg-color);
    color: var(--black);
    font-family: "Rubik";
    font-size: 1rem;
}
body::-webkit-scrollbar {
    position: absolute;
    width: 14px;
    height: 5px;
}
body::-webkit-scrollbar-corner {
    background-color: transparent;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border: 4px solid var(--bg-color);
    border-top: 0;
    border-bottom: 0;
    border-radius: 6px;
}
body::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 6px;
}

/* header */
.admin-menu {
    padding: 5px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--gray-light);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.admin-menu span {
    margin-left: auto;
    font-weight: 600; 
    color:var(--black); 
    font-size: 20px
}
header.main-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 70px;
    background-color: var(--white);
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
.logo img {
    width: 150px;
}
.logo span {
    font-family: "PointSoftBlack";
    font-size: 1.8rem;
    color: var(--gray-dark);
}
header.main-header .nav {
    --nav-transition: 0.15s;
    --nav-color: var(--blue);
    --nav-color-indicator: linear-gradient(
        80deg,
        var(--blue) -20%,
        var(--red) 130%
    );
    z-index: 100;
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 70px;
    background-color: var(--white);
    border-bottom: 2px solid var(--gray);
    width: 100%;
    min-width: max-content;
}
header.main-header .nav ul {
    display: inline-flex;
    margin: 0;
    padding: 0 10px;
    align-self: flex-start;
}
header.main-header .nav ul li {
    position: relative;
    list-style: none;
    width: 70px;
    height: 70px;
    z-index: 1;
    padding: 0 60px;
    cursor: pointer;
}
header.main-header .nav ul li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
header.main-header .nav ul li a .icon {
    position: relative;
    display: block;
    line-height: 75px;
    font-size: 1.5rem;
    text-align: center;
    transition: var(--nav-transition);
    color: var(--nav-color);
    transform: translateY(-10px);
}
header.main-header .nav ul li.active a .icon {
    transform: translateY(34px);
    color: var(--bg-color);
    font-size: 1rem;
}
header.main-header .nav ul li a .text {
    position: absolute;
    color: var(--nav-color);
    font-weight: 400;
    font-size: 1.15rem;
    transition: var(--nav-transition);
    transform: translateY(15px);
    white-space: nowrap;
}
header.main-header .nav ul li.active a .text {
    font-size: 1.3rem;
    transform: translateY(-2px);
}
header.main-header .nav ul .nav-indicator {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    width: 70px;
    background: var(--nav-color-indicator);
    border: 8px solid var(--bg-color);
    transition: var(--nav-transition);
    top: 67%;
    border-radius: 30px;
    height: 3rem;
}
.nav-indicator .dropdown {
    display: none;
    position: absolute;
    top: 40%;
    padding-top: 45%;
}
.nav-indicator .dropdown .menu 
{    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 10px 30px 15px 30px;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--gray);
    width: max-content;
}
.nav-indicator .dropdown .menu .item {
    display: inline-flex;
    flex-direction: column;
}
.nav-indicator .dropdown .menu .item .links {
    column-count: 2;
    column-gap: 20px;
}
.nav-indicator .dropdown .menu .item .links.col-one {
    column-count: 1;
}
.nav-indicator .dropdown .menu .item .links a {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
header.main-header .nav ul li:nth-child(1).active ~ .nav-indicator {
    transform: translateX(calc(120px * 0));
}
header.main-header .nav ul li:nth-child(2).active ~ .nav-indicator {
    transform: translateX(calc(120px * 1));
}
header.main-header .nav ul li:nth-child(3).active ~ .nav-indicator {
    transform: translateX(calc(120px * 2));
}
header.main-header .nav ul li:nth-child(4).active ~ .nav-indicator {
    transform: translateX(calc(120px * 3));
}
/* часть ниже не используется - добавлена заранее, чтобы не слетала анимация при добавлении элементов в меню .nav */
header.main-header .nav ul li:nth-child(5).active ~ .nav-indicator {
    transform: translateX(calc(120px * 4));
}
header.main-header .nav ul li:nth-child(6).active ~ .nav-indicator {
    transform: translateX(calc(120px * 5));
}
header.main-header .nav ul li:nth-child(7).active ~ .nav-indicator {
    transform: translateX(calc(120px * 6));
}
header.main-header .nav ul li:nth-child(8).active ~ .nav-indicator {
    transform: translateX(calc(120px * 7));
}

/* main */
main.main-content {
    min-height: calc(100vh - 181px);
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}
@media (max-width: 1000px) {
    main.main-content {
        min-height: calc(100vh - 131px);
    }
}
/*  */
.nav-row {
    display: flex;
    gap: 5px;
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    justify-content: space-between;
}
.nav-row li a {
    padding: 5px 20px;
    display: block;
    width: 100%;
    border-radius: 5px;
    text-wrap: nowrap;
    text-align: center;
}
.nav-row li.active a {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--blue);
    background-color: var(--gray-light);
}
.nav-row li a:hover {
    background-color: var(--gray-light);
    color: var(--gray-dark);
}
@media (max-width: 1199.98px) {
    .nav-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .nav-row li a {
        display: flex;
        justify-content: space-between;
    }
    .nav-row.single_row {
        display: flex;
    }
    .nav-row.single_row li a {
        display: block;
        justify-content: none;
    }
}
@media (max-width: 767.98px) {
    .nav-row {
        display: flex;
        overflow-x: scroll;
        border: none;
        padding: 4px 0;
    }
    .nav-row::-webkit-scrollbar {
        position: absolute;
        width: 14px;
        height: 5px;
    }
    .nav-row::-webkit-scrollbar-corner {
        background-color: transparent;
    }
    .nav-row::-webkit-scrollbar-thumb {
        background-color: var(--blue);
        border: 4px solid var(--bg-color);
        border-top: 0;
        border-bottom: 0;
        border-radius: 6px;
    }
    .nav-row::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 6px;
    }
    .nav-row li a {
        background-color: var(--gray-light);
    }
    .nav-row li.active a {
        background-color: var(--blue);
        color: var(--white);
    }
}
#count_refused {
    color: var(--red);
}
.burger_menu{
    display: none;
}
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
  margin: 7px 0;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #000;
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #000;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
/*  */
span.gray {
    color: var(--gray-dark);
}
span.blue {
    color: var(--blue);
}
span.red {
    color: var(--red);
}
span.green {
    color: var(--green);
}
span.yellow {
    color: var(--yellow);
}
strong {
    font-weight: 500;
}
a {
    text-decoration: none;
    color: var(--black);
}
a:hover {
    color: var(--gray-dark);
    text-decoration: none;
}
a.nav {
    cursor: pointer;
}
a.here {
    text-decoration: underline;
}
a.here:hover {
    color: var(--gray-dark);
    text-decoration: underline;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
img.chel {
    width: 150px;
}

/* product-photos */
.photo-block {
    --main-photo-size: 240px;
    --secondary-photo-size: 115px;
    --photo-border-radius: 10px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 0.5rem;
}
.photo-block .main-photo {
    position: relative;
    height: var(--main-photo-size);
    width: var(--main-photo-size);
    margin: 5px;
    margin-left: 0;
}
.photo-block .secondary-photo {
    display: inline-grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.photo-block .secondary-photo1 {
    display: inline-grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.photo-block .secondary-photo .photo-item {
    position: relative;
    height: var(--secondary-photo-size);
    width: var(--secondary-photo-size);
    margin: 5px;
}
.photo-block img {
    border: 1px solid var(--gray);
    border-radius: var(--photo-border-radius);
    height: inherit;
    width: inherit;
    object-fit: contain;
}
.photo-block button.add-img {
    font-size: 2rem;
    height: inherit;
    width: inherit;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    border: 3px dashed var(--gray);
    border-radius: var(--photo-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-block button.add-img:hover {
    color: var(--white);
    background-color: var(--gray);
    border-color: var(--white);
}
.photo-block button.add-img.loading:hover {
    color: var(--gray-dark);
    background-color: var(--gray-light);
    border-color: var(--gray);
}
.photo-block .photo-actions {
    z-index: 1;
    position: absolute;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: inherit;
    width: inherit;
    padding: 10px 20px;
    background-color: #d8dce680;
    border: 1px solid var(--gray);
    border-radius: var(--photo-border-radius);
    display: none;
}
.photo-block .secondary-photo .photo-actions button.default {
    font-size: 0.8rem;
}
.photo-block img:hover ~ .photo-actions,
.photo-block .photo-actions:hover {
    display: flex;
}
@media (max-width: 991.98px) {
    .photo-block .photo-actions {
		display: flex;
		background: none;
        border: none;
        padding: 0 0 10px 0;
        align-items: center;
        justify-content: end;
    }
    .photo-block .main-photo img {
        border: 3px solid var(--blue);
    }
	.photo-block .main-photo .photo-actions button{
		font-size: 0.8rem;
	}

    .photo-block {
        --main-photo-size: 130px;
        --secondary-photo-size: 130px;
        --photo-border-radius: 10px;
        max-width: calc(inherit - 30px);
        overflow: scroll;
    }
    .photo-block::-webkit-scrollbar {
        position: absolute;
        width: 14px;
        height: 5px;
    }
    .photo-block::-webkit-scrollbar-corner {
        background-color: transparent;
    }
    .photo-block::-webkit-scrollbar-thumb {
        background-color: var(--blue);
        border: 4px solid var(--bg-color);
        border-top: 0;
        border-bottom: 0;
        border-radius: 6px;
    }
    .photo-block::-webkit-scrollbar-track {
        background-color: transparent;
        border-radius: 6px;
    }
    .photo-block .secondary-photo {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

/* delete */
/* colw */
.nav-col {
    display: flex;
    flex-direction: column;
}
.nav-col .nav-item:last-child {
    border-bottom: 1px solid var(--gray);
}
.nav-col .nav-item .header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-col .nav-item .header .line {
    height: 1px;
    width: 100%;
    background: var(--gray);
}
.nav-col .nav-item ul {
    margin: 10px 0;
}
.nav-col .nav-item ul li a {
    margin: 5px 0;
    padding: 10px 50px 10px 20px;
    display: block;
    width: 100%;
    border-radius: 5px;
    text-wrap: nowrap;
    color: var(--black);
}
.nav-col .nav-item ul li.active a {
    color: var(--black);
    border-left: 1px solid var(--blue);
    background-color: var(--gray-light);
}
.nav-col .nav-item ul li a:hover {
    background-color: var(--gray-light);
    color: var(--gray-dark);
}
.nav-content-col {
    margin-top: -46px;
    padding: 0 0 0 50px;
    width: 100%;
}

/* modal */
.modal-content {
    border-radius: 10px;
}
.modal-header {
    border-bottom: 1px solid var(--gray);
}
.modal-header h5 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}
.modal-header button.close {
    font-size: 1.1rem;
    color: var(--blue);
}
.modal-body {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}
.modal-body > button {
    margin-top: 1rem;
}
/* files-upload modal */
.modal-huge .modal-dialog {
    max-width: 1000px;
    width: 1000px;
}
.drag-zone {
    position: absolute;
    min-height: 300px;
    border-radius: 10px;
    width: 100%;
}
.drag-zone:hover {
    cursor: pointer;
}
.drag-zone:hover ~ .files,
.files._active {
    background-color: var(--gray);
    border: 3px dashed var(--white);
    color: var(--black);
}
.files {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: var(--gray-dark);
    border-radius: 20px;
    border: 3px dashed var(--gray);
    background-color: var(--gray-light);
    justify-content: center;
}
.files img {
    height: 100px;
    width: auto;
}
.files-name {
    margin-top: 20px;
    font-size: 1.5rem;
}
.files-note {
    font-size: 1.2rem;
}
.files-note strong {
    color: var(--black);
}
.upload-url {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.upload-url .upload-url-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--gray-light);
}
/*  */
.flex {
    display: flex;
}
.flex.center {
    align-items: center;
}
.flex.column {
    flex-direction: column;
}
.flex.wrap {
    flex-wrap: wrap;
}
.flex.no-wrap {
    flex-wrap: nowrap;
}
.flex.gap-10 {
    gap: 10px;
}
.flex.gap-20 {
    gap: 20px;
}
.flex.gap-30 {
    gap: 30px;
}

/*style news*/
.cat-drop_down{
    position: relative;
}
.cat-drop_down2{
    position: relative;
    width: max-content;
    min-width: 545px;
}
.list_ch_filter{
    display:flex;flex-wrap: wrap;
    height: auto;
    min-height: 40px;
}
.cat-drop-down__list{
    display: inline-block;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
}
.cat-drop-down__list.list{
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*width: 1000px;*/
    max-width: 1100px;
    min-width: 545px;
    height: auto;
    
    
}
.cat-drop-down__list.list img{
    width: 25px;
}
.cat-drop-down__list.list li{
    float: left;
}
.cat-drop-down__list::-webkit-scrollbar {
    position: absolute;
    width: 14px;
    height: 5px;
}
.cat-drop-down__list::-webkit-scrollbar-corner {
    background-color: transparent;
}
.cat-drop-down__list::-webkit-scrollbar-thumb {
    background-color: var(--blue);
    border: 4px solid var(--bg-color);
    border-top: 0;
    border-bottom: 0;
    border-radius: 6px;
}
.cat-drop-down__list::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 6px;
}
.cat-drop_down_icons_srch{
    color: var(--gray);
    position: absolute;
    right: 10px;
    top: 15px;
}
.fa-close{
    color: var(--gray);
}
.cat-drop_down_icons_srch .fa-close{
    display: none;
    cursor: pointer;
}
.cat-drop-down__list .cat_list{
    display: flex;
    align-items: center;
}
.cat_list img{
    width: 17px;
    margin-left: 20px;
    display: none;
}
.cat-drop-down__list li{
    cursor: pointer;
    padding: 5px;
}
.cat-drop-down__list li:hover{
    background: var(--gray);
    
}
.cat-drop-down__list.list li:hover{
    background: none;
    
}

.cat-drop-down__list li i{
    font-size: 14px;
    color: silver;
}
.cat-drop-down__dropped{
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 99;
}
/*end style news*/

/* footer */
footer.main-footer {
    margin-top: auto;
    height: max-content;
    background-color: var(--gray-light);
    color: var(--gray-dark);
    width: 100%;
}
@media (max-width: 600px) {
    footer.main-footer .container .row .col {
        text-align: center;
    }
}

/* publications */
.publication-img {
    width: inherit;
    border-radius: 7px;
    box-shadow: 0 0 5px var(--gray);
}
.f_add_tov{
    width: 50%;
}


/*mobile css */

/*mobile menu*/
.mobile_menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #fff;
    border-top: 1px solid #f6f6f6;
    z-index: 99;
    padding: 0;
}
.mobile_menu ul {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    /* height: 55px; */
    box-shadow: 0 0 10px var(--gray);
    padding: 1px 5px;
}
.mobile_menu ul li {
    display: block;
    text-align: center;
    width: fit-content;
    box-sizing: border-box;
    overflow: hidden;
    padding: 6px 3px;
    
}
.mobile_menu ul li span{
    font-size: 10px;
    display: block;
    margin-top: -3px;
}
.mobile_menu ul li i{
    font-size: 13px;
    color: var(--gray-dark);
}
.mobile_menu ul li.active{
    color: var(--blue);
    background-color: var(--gray-light);
}
.mobile_menu ul li.active i{
    color: var(--blue);
}
.hidden_menu-list{
    position: fixed;
    background: var(--white);
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 96;
    padding: 5px 20px;
}
.list_modal .search_d-flex {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 40px;
}
.list_modal .backButton {
    /* background: url(/images/close.png) no-repeat; */
    background-size: 18px;
    width: 30px;
    height: 18px;
}
.list_modal .cat_list {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}
.list_modal .menuCat {
    height: unset;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 20px;
    /* width: 30%; */
    width: 100%;
    /* padding: 10px; */
    position: relative;
    margin-top: 10px;
    /* margin-right: 10px; */
    border-radius: 5px;
}
.list_modal .name_list {
    padding: 10px 0 5px 0;
    text-align: center;
    font-size: 16px;
    color: var(--black);
    line-height: 1.3;
}
.list_modal .icon_tov {
    display: flex;
    justify-content: center;
    color: var(--blue);
    margin-top: 3px;
}
.list_modal i {
    font-size: 25px;
}
.list_modal{
    display: none;
}
.active-scheme{
    border:2px solid #112b66;
    border-radius: 5px;
}
.sch_calcul table{
    border: none;
}
.sch_calcul table thead th{
    border: none;
}
.sch_calcul table tr:first-child td{ border: none; }
.sch_calcul table tr:last-child,
.sch_calcul table tr:last-child td
{ border: none; }
.sch_calcul table td:first-child{
    width: 240px;
}
.appearance::-webkit-outer-spin-button,
.appearance::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.alert_test{
    position:absolute;right: 0;top: -105px;width: auto;z-index: 999;
}
.messenger_widget{
    position: fixed;
    z-index: 1000;
    bottom: 10%;
    right: 50px;
}
.whatsapp_widget {
    width: 57px;
    height: 57px;
    color: #fff;
    padding: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 45px;
    background-color: rgb(0 162 32);
    border-radius: 46px;
    cursor: pointer;
    -webkit-box-shadow: rgba(0, 0, 0, .4) 2px 2px 6px;
    -moz-box-shadow: rgba(0, 0, 0, .4) 2px 2px 6px;
    box-shadow: rgba(0, 0, 0, .4) 2px 2px 6px;
}
.messenger_widget a:hover{
    color: #fff;
}
.list_products .empty .col{
    display: flex;
    align-items: center;
}
.list_product {
    --list-bg-color: var(--white);
    background-color: var(--list-bg-color)
}
.error_list {
    --list-bg-color: var(--red-light);
}
.warning_list {
    --list-bg-color: var(--gray);
}
.list_product_info {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    gap: 10px;
    max-height: 350px;
}
.list_product_image {
    height: 60px;
    width: 60px;
    object-fit: contain;
    border: 0;
    box-shadow: 0 0 3px var(--gray-dark);
    background-color: var(--white);
}
.list_product_content {
    display: flex;
    flex-direction: column;
    flex-shrink: 1;
    gap: 5px;
}
.list_product_name {
    font-size: 0.95rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.4rem;
    line-height: 1.2rem;
}
.list_product_actions {
    color: var(--gray-dark);
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
}
.collapse_content {
    border: none;
}
.list_product_additional .collapse_content {
    border: none;
    display: flex;
    flex-direction: column;
    padding: 0px 10px 10px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.list_product_additional_dots {
    flex: 1 0;
    border-bottom: 1px dotted var(--black);
    margin: 0 5px;
    margin-top: -5px;
    height: 1rem;
}
.list_product_additional .list_product_additional_buttons {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
.error_row {
    --row-bg-color: var(--red-light)
}
.warning_row {
    --row-bg-color: var(--gray)
}
table .error_row tr,
table .error_row td,
table .warning_row tr,
table .warning_row td {
    background-color: var(--row-bg-color) !important;
}

table .error_row .collapse_content,
table .warning_row .collapse_content {
    padding: 0;
    margin-top: 10px;
    text-wrap: nowrap;
    background-color: var(--row-bg-color);
}

[data-tooltip] i {
    font-size: 1.1rem;
    margin-top: 4px;
}
[data-tooltip] {
    position: relative;
    cursor: pointer;
}
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    z-index: 1000;
    width: 300px;
    left: -310px;
    top: 0; 
    background: var(--gray-dark);
    font-weight: 400;
    color: var(--white); 
    padding: 10px 15px;
    border-radius: 10px;
    pointer-events: none; 
    opacity: 0;
    box-shadow: 0px 0px 10px var(--gray-dark);
} 
[data-tooltip]:hover::after {
    opacity: 1;
    top: 0;
}

.fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.products_txt{
    line-height: 1;
    height: 33px;
    overflow: hidden;
}


.slick-prev,
.slick-next
 {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    background-color: #fff;
    border-radius:10px;
    color: #ccc;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 50;
    position:absolute;
    top: 50%;
    transform: translate(0, -50%);
    /*font-family: 'icomoon' !important;*/
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
 }
 .slick-prev:hover, .slick-next:hover {
     background-color:#fbfbfb;
 }
.slick-prev i,.slick-next i{
    color: #991A4E;
}
.slick-next {
    right: -10px;
}
.slick-prev {
    left: -10px;
}
.silver{
    background-color: #f6f6f9;
}

.dropdown-menu {
    padding: 10px;
    min-width: 200px;
}
.dropdown-menu li {
    list-style: none;
}
.custom-dropdown-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Или 100%, если нужна ширина на всю кнопку */
    text-align: left;
    overflow: hidden;
}
.button_txt {
    width: 95%;
    overflow: hidden;
}
.dropdown-text {
    flex-grow: 1; /* Текст занимает всю доступную ширину */
}

.dropdown-arrow::after {
    content: '\25BC'; /* Unicode-стрелка вниз */
    font-size: 12px;
    margin-left: 10px;
}

.selects .col-6{
    align-content: flex-end;
}