

/* Start:/local/components/itiso/shahmatki.lists/templates/.default/style.css?17333888782710*/
.checkbox.style-h {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox.style-h input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-h input:checked ~ .checkbox__checkmark:after {
    opacity: 1;
    top: -3px;
}
.checkbox.style-h input:checked ~ .checkbox__body {
    background-position: 0 0;
    align-items: center;
    display: flex;
}

.nice-select .current {
    overflow: hidden;
    font-weight: 100 !important;
    color:black !important;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
    max-height: 100%;
}

.checkbox.style-h .checkbox__checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;


    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #93B0D1;
    border-radius: 5px;
}
.checkbox.style-h input:checked ~ .checkbox__checkmark span{
    width: 12px;
    height: 12px;
    border-radius: 2px;
    transition: all .3s;
    background: #fc0fc0;
}

.checkbox.style-h .checkbox__body {
    border: 1px solid #DDE6F0;
    align-items: center;
    display: flex;
    height: 44px;
    color: #333;
    line-height: 1.4;
    font-size: 12px;
    transition: font-weight 0.25s ease;



    background-size: 200% 100%;
    background-position: 100% 0;
    padding: 15px;
    padding-left: 52px;
    border-radius: 10px;

    transition: box-shadow 0.25s ease, background 1s ease, color 0.25s ease;
}
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    background: none !important;
box-shadow: none !important;

}

.plans__item {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: left;
padding: 20px;
display: flex;
cursor: pointer;
transition: transform 0.2s ease;
justify-content: space-between;
align-items: center;
}

.plans__item:hover {
    transform: scale(1.05);
}
.plans__link {
text-decoration: none;
color: #333;
display: flex !important;

align-items: center;
width: 100%;
justify-content: flex-start !important;
display: flex;
}

.plans__text {
margin-right: 10px;
}

.plans__link img {
max-width: 50px;
margin-right: 20px;
}
.plans__item:nth-child(odd) .plans__link {
 background: none !important;
}
.plans__item:nth-child(even) .plans__link {
background: none !important;
}


/* End */


/* Start:/local/components/itiso/crm/templates/.default/library/slick.css?17652747471776*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/local/templates/empty/css/notifications.css?17657673261982*/
.custom-notification {
    position: fixed;                    /* Фиксированное положение */
    top: 20px;                          /* Отступ сверху */
    right: 20px;                        /* Отступ справа */
    max-width: 350px;
    width: calc(100% - 40px);           /* Адаптивная ширина на мобильных */
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    z-index: 9999;
    margin-bottom: 10px;                /* Отступ между уведомлениями */
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.custom-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.custom-notification__content {
    position: relative;
    width: 100%;
}

.custom-notification__close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 0, 0, 0.3);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #fff;
}

/* Цвета для разных типов */
.custom-notification-success { background-color: #28a745; border-left: 4px solid #218838; }
.custom-notification-error   { background-color: #dc3545; border-left: 4px solid #c82333; }
.custom-notification-warning { background-color: #ffc107; border-left: 4px solid #e0a800; color: #212529; }
.custom-notification-info    { background-color: #17a2b8; border-left: 4px solid #138496; }

/* Автоматический стек уведомлений (новые сверху) */
.custom-notification:nth-child(1) { top: 20px; }
.custom-notification:nth-child(2) { top: 80px; }   /* 20 + 60 (примерная высота одного) */
.custom-notification:nth-child(3) { top: 140px; }
.custom-notification:nth-child(4) { top: 200px; }
/* End */


/* Start:/local/components/itiso/menu/templates/.default/style.css?177036992538727*/
.title a {
    text-decoration: none;
    color: #2E3A4D;
}
.droplist-popup__item a{
    text-decoration: none;
    color: #2E3A4D;
}

.fav__btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/*.tile .table-edge-left{*/
/*    left: 0;*/
/*}*/

.check-filter{
    margin-top: 10px !important;
}
.nnav__btn{
    margin-top: 0;
}
.check-filter .one-check{
    margin-bottom: 0 !important;
}

.price-block .icon-input{
    color: #9DA7B2;
}

div.container:not(.agent_wrapper .container) {
    max-width: 100% !important;
}

.rights__item_tr:nth-child(even) {
    background: #F7FBFC;
}

.tile-plus .table-edge-left,
.tile-plus .table-edge-right {
    opacity: 0;
}

.table-edge-left {
    left: 57px;
}
.table-edge {
    width: 40px;
}

/*.tile-plus .table-edge-left:hover,*/
/*.tile-plus .table-edge-right:hover {*/
/*    opacity: 1;*/
/*}*/

.main-card-top .edit-obj {
    min-width: 16px;
}

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    overflow: auto !important;
}

*, *::after, *::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

p, h1, h2, h3, h4, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*button {*/
/*    border: none;*/
/*    background: transparent;*/
/*}*/

.container {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100%;
}

.nnav {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 24px rgba(46, 58, 76, 0.15);
    box-shadow: 0px 0px 24px rgba(46, 58, 76, 0.15);
}

.nnav__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nnav__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    height: 52px;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #2E3A4D;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.nnav__btn .nicon {
    margin-right: 8px;
    display: inline-block;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}

.nnav__btn:hover {
    background: #E8F5FF;
}

.nnav__item {
    margin: 2px;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
}

.nnav__item_obj .nnav__btn svg,
.nnav__item_obj .nnav__btn svg path{
    fill: white !important;
}

.nnav__item_obj .nnav__btn .narrow {
    margin-left: 7px;
    display: inline-block;
    -webkit-transform: translateY(-2px) rotate(180deg);
    transform: translateY(-2px) rotate(180deg);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.nnav__item_drop .nnav__btn .narrow {
    margin-left: 7px;
    display: inline-block;
    -webkit-transform: translateY(-2px) rotate(180deg);
    transform: translateY(-2px) rotate(180deg);
    -webkit-transition: .3s all;
    transition: .3s all;
}

.nnav__item_drop:hover .nnav__btn .narrow {
    -webkit-transform: translateY(2px) rotate(0);
    transform: translateY(2px) rotate(0);
}

.nnav__item:hover .nnav__item-list {
    top: 100%;
    opacity: 1;
}

.nnav__item-list {
    position: absolute;
    top: -2000vh;
    width: 294px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 24px rgba(46, 58, 76, 0.15);
    box-shadow: 0px 0px 24px rgba(46, 58, 76, 0.15);
    border-radius: 10px;
    /*padding-bottom: 9px;*/
    z-index: 3000;
    opacity: 0;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
}

.nnav__item-list li {
    position: relative;
}

.nnav__item-list li:hover ul {
    left: 100%;
    opacity: 1;
}

.nnav__item-list li:nth-child(1) a {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.nnav__item-list li:last-child a {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.nnav__item-list li:hover a {
    background: #E8F5FF;
}

.nnav__item-list li:hover ul a {
    background: #fff;
}

.nnav__item-list li i {
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.nnav__item-list li a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 18px;
    height: 40px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    padding-right: 40px;
    text-decoration: none;
    color: #000000;
    -webkit-transition: .3s all;
    transition: .3s all;
    margin-top: 0;
}

.nnav__item-list li a:hover {
    background: #E8F5FF;
}

.nnav__item-list li ul {
    position: absolute;
    left: -1000vw;
    width: 267px;
    background: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 24px rgba(46, 58, 76, 0.15);
    box-shadow: 0px 0px 24px rgba(46, 58, 76, 0.15);
    padding-bottom: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
}

.nnav__item-list li ul a {
    padding-left: 18px;
    padding-right: 18px;
    /*border-radius: 0 !important;*/
}

.nnav__item-list li ul a:hover {
    background: #E8F5FF;
}

.nnav__item-list li ul li:nth-child(1) a {
    border-radius: 10px 10px 0 0;
}

.nnav__item-list li ul li:last-child a {
    border-radius: 10px;
}

.npage {
    margin-top: 30px;
}

.npage__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.npage__back-wrapper {
    margin-right: 10px;
}

.npage__tipzk {
    position: relative;
    margin-top: 20px;
}

.npage__tipzk i {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.npage__tipzk-select {
    float: none;
    width: max-content !important;
    height: 48px;
    line-height: 45px;
    padding-left: 40px;
    font-weight: 600;
    font-size: 14px;
    color: #2E3A4D;
}

.npage__tipzk-select::after {
    border: none;
    width: 24px;
    height: 24px;
    background: url(/local/components/itiso/menu/templates/.default/../img/arrowsel.svg) center no-repeat;
    margin: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
}

.npage__tipzk-select.open::after {
    margin: 0;
    -webkit-transform: translateY(-80%) rotate(180deg);
    transform: translateY(-80%) rotate(180deg);
    top: 50%;
    right: 15px;
}

.npage__tipzk-select .list {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #DDE6F0;
    -webkit-box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.08);
    box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.08);
    border-radius: 8px;
}

.npage__tipzk-select .list li {
    padding-left: 40px;
}

.npage__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #2E3A4D;
}

.npage__title strong {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #129AFF;
}

.npage__title span {
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #129AFF;
}

.breadcrubms {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
}

.breadcrubms a {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    color: #2e3a4d8a;
    margin-right: 17px;
    text-decoration: none;
    position: relative;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.breadcrubms a::after {
    content: '/';
    display: inline-block;
    width: 5px;
    height: 16px;
    position: absolute;
    font-weight: 500;
    font-size: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    line-height: 16px;
    right: -8.5px;
    color: #E0E0E0;
}

.ncheck input {
    display: none;
}

.ncheck input:checked + label::after {
    opacity: 1;
}

.ncheck label {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    display: inline-block;
    padding-left: 28px;
    color: #2E3A4D;
    position: relative;
}

.ncheck label::before {
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 1px solid #93B0D1;
    border-radius: 5px;
    position: absolute;
    left: 0;
    content: '';
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.ncheck label::after {
    background: #129AFF;
    border-radius: 2px;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 4px;
    content: '';
    display: inline-block;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ncheck label:hover::after {
    opacity: 0.4;
}

.nliter {
    margin-top: 30px;
    /*min-height: 60vh;*/
    margin-bottom: 10px;
}

.nliter__all label {
    font-size: 14px;
}

.nliter__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.nliter__title span {
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #2E3A4D;
}

.nliter__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.nliter__item {
    padding-left: 10px;
    padding-right: 10px;
    width: 16.6666%;
    margin-bottom: 20px;
}

.ngo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
}

.ngo__next {
    width: 99px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
    background: #129AFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-decoration: none;
    color: #FFFFFF;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ngo__next i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ngo__next:hover {
    background: #0078d4;
    padding-right: 11px;
}

.ngo__back {
    width: 99px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 16px;
    padding-right: 16px;
    background: #129AFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-decoration: none;
    color: #FFFFFF;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ngo__back i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ngo__back:hover {
    background: #0078d4;
    padding-left: 11px;
}

.ninter {
    /*min-height: 68vh;*/
    min-height: 20vh;
}

.ninter__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}

.ninter__item {
    padding-left: 4px;
    padding-right: 4px;
    width: 16.6666%;
    margin-top: 20px;
}

.ninter__label {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    display: block;
    color: #2E3A4D;
}

.ninter__input {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    border: 1px solid #DDE6F0;
    border-radius: 8px;
    padding-left: 12px;
    height: 48px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #2E3A4D;
}

.ninter__input:disabled {
    color: #2E3A4D;
}

.ninter__input::-webkit-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__input:-ms-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__input::-ms-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__input::placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__text {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    border: 1px solid #DDE6F0;
    border-radius: 8px;
    padding-left: 12px;
    height: 48px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #2E3A4D;
}

.ninter__text:disabled {
    color: #2E3A4D;
}

.ninter__text::-webkit-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__text:-ms-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__text::-ms-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__text::placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ninter__text-wrapper {
    position: relative;
}

.ninter__text-wrapper_data .datepicker {
    width: 100%;
}

.ninter__text-wrapper_data label {
    position: absolute;
    left: 12px;
    top: 15px;
}

.ninter__text-wrapper_data input {
    padding-left: 38px;
}

.ninter__text-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ninter__text-item {
    margin-right: 12px;
    position: relative;
}

.ninter__text-item::after {
    font-weight: 400;
    font-size: 10px;
    line-height: 100%;
    color: #E0E0E0;
    content: '/';
    right: -8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    position: absolute;
}

.ninter__text-item:last-child {
    margin-right: 0;
}

.ninter__text-item:last-child::after {
    display: none;
}

.ninter__text-item input {
    display: none;
}

.ninter__text-item input:checked + label {
    color: #129AFF;
}

.ninter__text-item label {
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    line-height: 100%;
    color: #9DA7B2;
}

.ninter__drop {
    position: relative;
}

.ninter__drop i {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ninter__drop input {
    cursor: pointer;
}

.ninter__drop.open .ninter__checks-list {
    opacity: 1;
    left: 0;
}

.ninter__drop.open i {
    -webkit-transform: rotate(180deg) translateY(10%);
    transform: rotate(180deg) translateY(10%);
}

.ninter__checks {
    position: relative;
}

.ninter__checks-list {
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 2;
    position: absolute;
    top: calc(100% + 5px);
    left: -10000vw;
    opacity: 0;
    max-height: 348px;
    overflow: auto;
    padding-left: 12px;
    padding-right: 12px;
    background: #FFFFFF;
    border: 1px solid #DDE6F0;
    -webkit-box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.08);
    box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.08);
    border-radius: 8px;
    width: 100%;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
}

.ninter__checks-list::-webkit-scrollbar {
    width: 3px;
    /* ширина scrollbar */
}

.ninter__checks-list::-webkit-scrollbar-track {
    background: #fff;
    /* цвет дорожки */
}

.ninter__checks-list::-webkit-scrollbar-thumb {
    background-color: #129AFF;
    /* цвет плашки */
    border-radius: 20px;
    /* закругления плашки */
    border: 1px solid #fff;
    /* padding вокруг плашки */
}

.ninter__checks-check {
    margin-bottom: 20px;
}

.ninter__checks-check:last-child {
    margin-bottom: 0;
}

.ninter__radio-item {
    margin-bottom: 20px;
}

.ninter__radio-item:nth-child(1) {
    margin-top: 8px;
}

.ninter__radio-item:last-child {
    margin-bottom: 8px;
}

.ninter__select {
    float: none;
    background: #FFFFFF;
    border: 1px solid #DDE6F0;
    height: 48px;
    padding-left: 12px;
    line-height: 46px;
    border-radius: 8px;
}

.ninter__select .list {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #DDE6F0;
    -webkit-box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.08);
    box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.08);
    border-radius: 8px;
}

.ninter__select .list li {
    padding-left: 12px;
}

.ninter__select::after {
    border: none;
    width: 24px;
    height: 24px;
    background: url(/local/components/itiso/menu/templates/.default/../img/arrowsel.svg) center no-repeat;
    margin: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
}

.ninter__select.open::after {
    margin: 0;
    -webkit-transform: translateY(-80%) rotate(180deg);
    transform: translateY(-80%) rotate(180deg);
    top: 50%;
    right: 15px;
}

.ninter__select.open {
    border-color: #DDE6F0;
}

.ninter__select:focus {
    border-color: #DDE6F0;
}

.ninter__params {
    margin-left: -4px;
    margin-right: -4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ninter__params-col {
    padding-left: 4px;
    padding-right: 4px;
    width: 16.666%;
    margin-top: 20px;
}

.ninter__params-item {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #9DA7B2;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ninter__params-item:hover {
    color: #129AFF;
}

.ntable__wrapper {
    margin-top: 20px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.06);
    box-shadow: 0px 4px 16px rgba(46, 58, 76, 0.06);
    border-radius: 8px;
    /*max-height: 690px;*/
    max-height: none;
    overflow: auto;
}

.ntable__wrapper::-webkit-scrollbar {
    width: 3px;
    /* ширина scrollbar */
}

.ntable__wrapper::-webkit-scrollbar-track {
    background: #fff;
    /* цвет дорожки */
}

.ntable__wrapper::-webkit-scrollbar-thumb {
    background-color: #129AFF;
    /* цвет плашки */
    border-radius: 20px;
    /* закругления плашки */
    border: 1px solid #fff;
    /* padding вокруг плашки */
}

.ntable__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 72px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 48px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ntable__row:nth-child(2n) {
    background: #F7FBFC;
}

.ntable__header {
    height: 66px;
}

.ntable__header button {
    font-weight: 600;
    font-size: 14px;
    padding: 0;
    line-height: 17px;
    color: #2E3A4D;
    cursor: pointer;
}

.ntable__header button i {
    margin-left: 16px;
}

.ntable__blue {
    color: #129AFF !important;
}

.ntable-yep {
    color: #FF4F59 !important;
}

.ntable-no {
    color: #4F8BFF !important;
}

.ntable__col {
    width: 100%;
}

.ntable__col p {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #2E3A4D;
}

.ntable__col p i {
    display: inline-block;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    margin-left: 10px;
}

.ntable__col-1 {
    max-width: 3%;
}

.ntable__col-2 {
    max-width: 11%;
}

.ntable__col-3 {
    max-width: 12%;
}

.ntable__col-4 {
    max-width: 12%;
}

.ntable__col-5 {
    max-width: 13%;
}

.ntable__col-6 {
    max-width: 14.4%;
}

.ntable__col-7 {
    max-width: 12%;
}

.ntable__col-8 {
    max-width: 13.3%;
}

.ntable__col-9 {
    max-width: 9%;
}

.nradio input {
    display: none;
}

.nradio input:checked + label::after {
    opacity: 1;
}

.nradio label {
    position: relative;
    padding-left: 26px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #2E3A4D;
}

.nradio label:hover::after {
    opacity: 0.4;
}

.nradio label::before {
    width: 20px;
    height: 20px;
    border: 1px solid #93B0D1;
    border-radius: 1000px;
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.nradio label::after {
    width: 12px;
    height: 12px;
    content: '';
    display: inline-block;
    position: absolute;
    background: #129AFF;
    border-radius: 50%;
    left: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ntech__edit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 14px;
}

.ntech__edit-count {
    width: 305px;
    margin-right: 8px;
}

.ntech__edit-set {
    padding: 16px 20px;
    border: 1px solid #129AFF;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
    margin-right: 8px;
    font-size: 14px;
    line-height: 100%;
    color: #2E3A4D;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ntech__edit-set:hover {
    background: #E8F5FF;
}

.ntech__edit-plus {
    border: 1px solid #00CE52;
    border-radius: 10px;
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    margin-right: 8px;
    font-size: 14px;
    line-height: 100%;
    color: #2E3A4D;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ntech__edit-plus i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
}

.ntech__edit-plus:hover {
    background: #00ce5226;
}

.ntech__edit-minus {
    border: 1px solid #E90E00;
    border-radius: 10px;
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    margin-right: 8px;
    font-size: 14px;
    line-height: 100%;
    color: #2E3A4D;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ntech__edit-minus i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
}

.ntech__edit-minus:hover {
    background: #e910001e;
}

.ncontrols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 28px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
}

.ncontrols__delete {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 124px;
    background: #E90E00;
    border: 1px solid #E90E00;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
    -webkit-transition: .3s all;
    transition: .3s all;
    cursor: pointer;
}

.ncontrols__delete i {
    margin-right: 8px;
}

.ncontrols__delete:hover {
    background: #a60c01;
}

.ncontrols__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ncontrols__save {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 208px;
    background: #129AFF;
    border: 1px solid #129AFF;
    border-radius: 10px;
    margin-right: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #FFFFFF;
    -webkit-transition: .3s all;
    transition: .3s all;
    cursor: pointer;
}

.ncontrols__save i {
    margin-right: 8px;
}

.ncontrols__save:hover {
    background: #0084e9;
}

.ncontrols__sell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 177px;
    border: 1px solid #129AFF;
    border-radius: 10px;
    margin-right: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #2E3A4D;
    -webkit-transition: .3s all;
    transition: .3s all;
    cursor: pointer;
}

.ncontrols__sell i {
    margin-right: 8px;
}

.ncontrols__sell:hover {
    background: #0084e928;
}

.ncontrols__time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 229px;
    background: #00CE52;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    -webkit-transition: .3s all;
    transition: .3s all;
    cursor: pointer;
}

.ncontrols__time:hover {
    background: #01ac45;
}

.ncontrols__pag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ncontrols__pag-button {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin-left: 20px;
    margin-right: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2E3A4D;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ncontrols__pag-button i {
    margin-left: 8px;
    margin-right: 8px;
}

.ncontrols__pag-button i path {
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ncontrols__pag-button:hover {
    color: #129AFF;
}

.ncontrols__pag-button:hover path {
    fill: #129AFF;
}

.ncontrols__pag-item {
    margin-right: 10px;
    padding: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    color: #2E3A4D;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ncontrols__pag-item_active {
    color: #129AFF;
}

.ncontrols__pag-item:hover {
    color: #129AFF;
}

.ncontrols__pag-item:last-child {
    margin-right: 0;
}

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

.nbackdrop {
    position: fixed;
    left: -200vw;
    top: 0;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(2.5px);
    backdrop-filter: blur(2.5px);
    z-index: 50;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
}

.nbackdrop.open {
    left: 0;
    opacity: 1;
}

.ntmodal {
    position: fixed;
    left: -200vw;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: #FFFFFF;
    opacity: 0;
    border-radius: 16px;
    width: 360px;
    padding: 20px;
    z-index: 100;
    -webkit-transition: .3s opacity;
    transition: .3s opacity;
}

.ntmodal.open {
    left: 50%;
    opacity: 1;
}

.ntmodal__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    max-width: 240px;
    margin-bottom: 19px;
    color: #2E3A4D;
}

.ntmodal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.ntmodal__label {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #2E3A4D;
    margin-bottom: 8px;
}

.ntmodal__item {
    margin-bottom: 10px;
}

.ntmodal__wrapper {
    position: relative;
}

.ntmodal__wrapper .datepicker {
    width: 100%;
}

.ntmodal__wrapper i {
    position: absolute;
    left: 10px;
    top: 15px;
    z-index: 2;
}

.ntmodal__submit {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 48px;
    background: #129AFF;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.ntmodal__submit:hover {
    background: #0276d0;
}

.ntmodal__input {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    border: 1px solid #DDE6F0;
    border-radius: 8px;
    padding-left: 36px;
    height: 48px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #2E3A4D;
}

.ntmodal__input:disabled {
    color: #2E3A4D;
}

.ntmodal__input::-webkit-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ntmodal__input:-ms-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ntmodal__input::-ms-input-placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.ntmodal__input::placeholder {
    color: #9DA7B2;
    font-weight: 400;
}

.locked {
    overflow: hidden;
}

.ui-timepicker-standard {
    z-index: 30000000 !important;
}

.ui-corner-all {
    cursor: pointer;
}

.mob {
    display: none;
}

.nnav__burger {
    position: absolute;
    display: none;
    top: 20px;
    right: 15px;
}

.nnav__burger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #129AFF;
    margin-bottom: 6px;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.nnav__burger span:last-child {
    margin-bottom: 0;
}

.nnav__burger.active {
    padding-top: 10px;
}

.nnav__burger.active span:nth-child(3) {
    display: none;
}

.nnav__burger.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 0;
}

.nnav__burger.active span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -2px;
}

.ninter__status input {
    display: none;
}

.ninter__status input:checked + label::after {
    opacity: 1;
}

.ninter__status label {
    padding-left: 38px;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2E3A4D;
}

.ninter__status label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #DDE6F0;
    position: absolute;
    left: 0;
    border-radius: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.ninter__status label::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 50%;
    opacity: 0;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(/local/components/itiso/menu/templates/.default/../img/status.svg) center no-repeat;
}

@media (max-width: 1300px) {
    .nliter__item {
        width: 25%;
    }
    .ninter__item {
        width: 25%;
    }
    .ninter__params-col {
        width: 25%;
    }
    .ntable {
        min-width: 1600px;
    }
    .ncontrols {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .ncontrols__right {
        margin-top: 4px;
    }
}

@media (max-width: 991px) {
    .nliter__item {
        width: 33%;
    }
    .ninter__item {
        width: 33.333%;
    }
    .ninter__params-col {
        width: 33.333%;
    }
    .ncontrols__right {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 0;
    }
    .ncontrols__right button {
        margin-top: 4px;
    }
    .ntech__edit {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
    }
    .ntech__edit-count {
        width: 100%;
        margin-right: 0;
    }
    .ntech__edit-set, .ntech__edit-plus, .ntech__edit-minus {
        width: 100%;
        margin-right: 0;
        margin-top: 4px;
    }
    .nnav__item_obj.open{
        .nnav__item-list{
            opacity: 1;
            top: auto !important;
            width: 100%;
        }
    }
    .nnav {
        height: 61px;
    }
    .nnav__item {
        width: 100%;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .nnav__btn {
        position: relative;
    }
    .nnav__btn .narrow {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        padding-bottom: 4px;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-right: 20px;
        padding-left: 20px;
    }
    .nnav__item-list li ul li a{
        background-color: #e9e9e9 !important;
        border-radius: 0 !important;
    }
    .nnav__item-list li:hover a {
        background: none;
    }
    .nnav__btn.active + .nnav__item-list {
        display: block;
    }
    .nnav__item-list li i {
        top: 0;
        height: 47px;
        -webkit-transform: none;
        transform: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        right: 0;
        padding-right: 18px;
        padding-left: 18px;
    }
    .nnav__item-list li ul {
        position: relative;
        left: auto !important;
        opacity: 1;
        top: auto;
        width: 100%;
        display: none;
    }
    .nnav__item-list li.active ul {
        display: block;
    }
    .nnav__item-list li ul a {
        padding-left: 30px;
    }
    .nnav__burger {
        display: block;
        z-index: 100;
    }
}

@media (max-width: 767px) {
    .nliter__item {
        width: 50%;
    }
    .ncontrols__center {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .ncontrols__left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        margin-top: 24px;
    }
    .ncontrols__pag button:nth-child(1) {
        margin-left: 0;
    }
    .ncontrols__delete {
        width: 100%;
    }
    .ncontrols__right {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
    }
    .ncontrols__right button {
        width: 100%;
        margin-right: 0;
    }
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .nnav__row {
        overflow: auto;
    }
    .npage {
        margin-top: 20px;
    }
    .breadcrubms a, .breadcrubms span {
        font-size: 11px;
        line-height: 13px;
    }
    .npage__tipzk-select {
        width: 100%;
    }
    .nliter__title span {
        max-width: 200px;
    }
    .ncheck label {
        font-size: 13px;
        line-height: 120%;
    }
    .nliter__item {
        margin-bottom: 10px;
    }
    .ninter__item {
        width: 100%;
    }
    .ninter__params-col {
        width: 100%;
    }
    .ninter__checks-list {
        max-height: 200px;
    }
    .ninter__label {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 4px;
    }
    .ninter__item {
        margin-top: 10px;
    }
    .ninter__form {
        margin-top: 6px;
    }
    .mob {
        display: block;
    }
    .ninter__descr {
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
        color: #2E3A4D;
        margin-top: 16px;
    }
    .ninter__params {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow: auto;
        margin-bottom: 24px;
    }
    .ninter__params-item {
        font-size: 16px;
        white-space: nowrap;
    }
    .ninter__params-col {
        width: auto;
        margin-top: 10px;
    }
    .ngo__next-wrapper {
        width: 100%;
    }
    .ngo__next {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .ngo__back {
        display: none;
    }
}

.ninter__checks-list {
    z-index: 2000;
}

.nice-select.open .list {
    max-height: 200px;
    overflow-y: scroll;
}

.nice-select.open .list::-webkit-scrollbar {
    height: 4px;
    width: 4px;
}

.nice-select.open .list {
    scrollbar-color: #C2D2E4;
    scrollbar-width: thin;
}

.nice-select.open .list::-webkit-scrollbar-thumb {
    background: #B4BFCC;
    border-radius: 2px;
}

body {
    overflow: hidden;
}

.select-wrapper .nice-select span {
    border: none;
    color: black !important;
}

/*# sourceMappingURL=style.css.map */
/* End */
/* /local/components/itiso/shahmatki.lists/templates/.default/style.css?17333888782710 */
/* /local/components/itiso/crm/templates/.default/library/slick.css?17652747471776 */
/* /local/templates/empty/css/notifications.css?17657673261982 */
/* /local/components/itiso/menu/templates/.default/style.css?177036992538727 */
