.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-fill {
    flex: 1;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.color-blue {
    color: var(--accent-primary);
}

.ml-10 {
    margin-left: 10px;
}

.ml-auto {
    margin-left: auto;
}

.mt-10 {
    margin-top: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.red-color {
    color: var(--graph-red);
}

.relative {
    position: relative;
}

.w-full {
    width: 100%;
}


/* header-dash */

.header-dash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 150;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-primary);
    padding-left: 260px;
    transition: padding .3s ease;
}

.header-dash__body {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-dash__user-info {
    display: flex;
    align-items: center;
}

.header-dash__buttons .btn:not(:last-child) {
    margin-right: 10px;
}

.buttons-group {
    display: flex;
    align-items: center;
}

.buttons-group.add-buttons {
    flex-wrap: wrap;
}

.buttons-group.add-buttons .btn {
    margin-bottom: 5px;
}

.header-dash__user {
    margin-left: 15px;
}

.user {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user__img {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.user__img img {
    display: block;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: appear 1 0.6s 0.6s ease forwards;
}

.user__name {
    padding: 0 5px 0 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.dropdown-wrapper {
    position: relative;
}

.datetimepicker .datepicker-nav .datepicker-nav-year.el-is-hover,
.datetimepicker .datepicker-nav .datepicker-nav-month.el-is-hover {
    color: var(--accent-primary);
}

.datetimepicker .datepicker-nav .datepicker-nav-month-year {
    flex: auto;
    justify-content: center;
}

.filter-options .flex .datepicker-el:not(.flex .datepicker-el:last-child) {
    margin-right: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    box-shadow: var(--shadow);
    background-color: var(--white);
    border-radius: var(--border-radius-7);
    top: 100%;
    left: 0;
    z-index: 9999;
    max-width: max-content;
    min-width: max-content;
    max-height: 300px;
    opacity: 0;
    visibility: hidden;
}

.categories.overview-chart .dropdown-content{
    max-height: 350px;
}

.dropdown-btn {
    cursor: pointer;
    background-color: white;
}

.dropdown-content.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.notifications__dropdown {
    min-width: 360px;
    left: auto;
    right: 10px;
    /* transform: translateX(50%);
    top: calc(100% + 10px); */
    position: fixed;
    top: 60px;
}

.user-dropbown {
    left: auto;
    right: 0;
    top: calc(100% + 10px);
    min-width: 315px;
}

.dropdown-head {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-primary);
}

.dropdown-body {
    overflow: auto;
    border-radius: 0 0 7px 7px;
}

.notifications-item {
    padding: 15px;
    background-color: var(--white);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.notifications-item:hover {
    background-color: var(--table-row-hover);
}

.notifications-item .delete-item {
    display: none;
}

.notifications-item:hover .delete-item {
    display: block;
}

.label-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-sm .label-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
}

.label-icon.blue {
    background-color: var(--blue-100);
}

.label-icon.red {
    background-color: var(--red-100);
}

.label-icon.yellow {
    background-color: var(--yellow-100);
}

.label-icon.purple {
    background-color: var(--purple-100);
}

.data-row__item .data-row__icon {
    margin-right: 10px;
}

.notifications-item__text {
    padding: 0 12px;
}

.notifications-item__text h6 {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}

.notifications-item__text span {
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    color: var(--text-secondery);
}

.more-block {
    display: none;
}

.more-block.active {
    display: block;
}

.notifications-item-more+.more-items {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-top: 1px solid var(--border-primary);
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    position: sticky;
    bottom: 0;
    background-color: var(--white);
}

.user-dropbown__info {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px 30px;
}

.user-dropbown__info-img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.user-dropbown__info-img img {
    width: inherit;
    height: inherit;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: appear 1 0.6s 0.6s ease forwards;
}

.user-dropbown__name {
    margin-bottom: 5px;
}

.user-dropbown__buttons {
    margin-top: 20px;
}

.user-dropbown__buttons .btn:not(:last-child) {
    margin-bottom: 10px;
}

.user-dropbown__name {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

.user-dropbown__email {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: var(--text-secondery);
}

.user-dropbown__accounts {
    padding: 20px;
    border-top: 1px solid var(--border-primary);
}

.accounts-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.header-actions p {
    color: var(--white);
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

.accounts-item .user-dropbown__email {
    font-size: 12px;
}

.accounts-item .user__img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.accounts-item__text {
    display: flex;
    flex-direction: column;
}

.content.content-center {
    padding: 0;
}

.form-link {
    color: var(--accent-primary);
}

.add-acount {
    display: flex;
    align-items: center;
    color: var(--accent-primary);
    width: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

.add-acount__img {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-primary);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.company-page {
    padding-top: 20px;
    max-width: 820px;
}

.company-page__info {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-primary);
}

.company-page__info h3 {
    font-style: normal;
    font-weight: normal;
    font-size: 21px;
    line-height: 20px;
}

.company-page__info h3:not(:last-child) {
    margin-bottom: 30px;
}

.company-page__info span {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondery);
}

.company-page__info span:not(:last-child) {
    margin-bottom: 7px;
}

.company-page__info p {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
}

.spoiler__button .add-buttons.position-end {
    width: auto;
}

.company-page__info p:not(:last-child) {
    margin-bottom: 15px;
}

.company-page__info ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.company-page__info.inner ul {
    grid-template-columns: repeat(1, 1fr);
}

.company-page__img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius-7);
}

.company-page__img img {
    width: 100%;
    height: 100%;
}

.gallery {
    padding: 25px 0 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 25px;
}

.gallery__item {
    overflow: hidden;
    border-radius: var(--border-radius-7);
}

.gallery__item img {
    width: 100%;
}


/* filter-options */

.filter-options {
    padding-top: 15px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.filter-options__search {
    width: 100%;
    max-width: 250px;
    margin-right: 10px;
}

.filter-options__search--md {
    width: 100%;
    max-width: 500px
}

.filter-options__items {
    display: flex;
    align-items: center;
}

.filter-options__items .categories.dropdown-wrapper .categories__dropdown {
    min-width: 300px;
    
}

.filter-options .categories button {
    min-width: 160px;
}

.categories__dropdown ul {
    width: 100%;
}


/* table */

.table {
    width: 100%;
    /* border-collapse: collapse; */
    border-spacing: 0 10px;
    margin-top: -10px;
    white-space: nowrap;
}

.table.style-2 {
    border-collapse: collapse;
    border-spacing: unset;
    margin-top: 0;
}

.table th,
.table td {
    text-align: start;
    vertical-align: middle;
    padding: 16px 10px;
}

.table.style-2 thead .module__check .text {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondery);
}

.table th {
    white-space: nowrap;
}

.table.style-2 thead tr th {
    border-top: 1px solid var(--border-primary);
    background-color: var(--table-row-hover);
}

.table thead tr th {
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondery);
    font-size: 14px;
    line-height: 20px;
}

.table.style-2 tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--border-primary);
}

.table tr th:first-child,
.table tr td:first-child {
    padding: 16px 10px 16px 15px;
}

.table tr td:first-child {
    border-radius: 7px 0 0 7px;
}

.table tr td:last-child {
    border-radius: 0 7px 7px 0;
}

.table tr th:last-child,
.table tr td:last-child {
    padding: 16px 15px 16px 10px;
}

.table tr.checked td,
.table tr:hover td {
    background-color: var(--table-row-hover);
}

.table-filter__btn {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondery);
    width: 100%;
    text-align: start;
}

.table-filter__btn span {
    position: relative;
    padding-right: 12px;
}

.table-filter__btn span:after {
    content: '';
    width: 6px;
    height: 6px;
    background-image: url(../img/arrow-sort.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}

.table-filter__btn.active {
    color: var(--text-primary);
}

.table-filter__btn-plus span {
    padding-right: 0;
    padding-left: 26px;
}

.table-filter__btn-plus span:after {
    width: 20px;
    height: 20px;
    background-image: url(../img/round-plus-icon.svg);
    right: auto;
    left: 0;
}

.icon-sm .label-icon {
    width: 24px;
    height: 24px;
}

.table-filter .module__check {
    margin-right: 15px;
}

.icon-text {
    align-items: center;
    text-transform: capitalize;
}

tr.checked .icon-text {
    color: var(--icon-primary);
}

.icon-text span {
    margin-left: 5px;
}

tr.checked .icon-text span {
    color: var(--text-primary);
}

.table-options-drop {
    display: flex;
    justify-content: end;
    /* border-left: 1px solid var(--border-primary); */
    background-color: var(--white);
}

.table-options-drop .btn-transp {
    padding: 0;
    border-radius: 7px;
}

.table-options-drop .btn-transp.active {
    color: var(--accent-primary);
    background-color: var(--table-row-hover);
}

.table-options-drop .dropdown-content {
    left: auto;
    right: 0;
}

.table-wrapper {
    overflow: auto;
    padding-bottom: 71px;
}

.is-hidden {
    display: none!important;
}

.datetimepicker-clear-button {
    display: none;
}

.categories__dropdown li * {
    padding: 8px 14px;
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    text-align: start;
}

.list-line {
    margin: 8px auto;
    height: 1px;
    background-color: var(--border-primary);
    width: calc(100% - 28px);
}

.categories__dropdown li a {
    color: var(--text-primary);
}

.table-options-drop .dropdown-content {
    min-width: 246px;
}


/* .table tr {
    position: relative;
} */

.table-wrapper .position-stiky {
    position: absolute;
    right: 20px;
    background-color: var(--white);
}
.table-wrapper td.position-stiky {
    position: initial;
}
.table_on_print thead .module__check,
.table_on_print .table-options-drop {
    display: none;
}
.table-wrapper .checked .position-stiky,
.checked .table-options-drop,
.table tr:hover td .table-options-drop {
    background-color: var(--table-row-hover);
}

.table-statys {
    position: relative;
    padding-left: 18px;
    text-transform: capitalize;
}

.table-statys .dot {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.table-statys.enable .dot,
.table-statys.enabled .dot {
    background-color: var(--accent-primary);
}

.table-statys.disabled .dot {
    background-color: var(--text-secondery);
}

.table tbody tr:last-child td .dropdown-content {
    top: auto;
    bottom: calc(100% + 5px);
}


/* pagination */

.pagination.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-left: 260px;
    background-color: var(--white);
    z-index: 100;
}
.pagination.fixed:not(.changes_saved_info) {
    transition: padding .3s ease;
}

.pagination.fixed .pagination__body {
    padding: 15px 20px 20px;
}

.pagination.wizard-actions .pagination__body {
    padding: 15px 20px;
}

.pagination.wizard-actions {
    border-top: 1px solid var(--border-primary);
}

.pagination__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination__show {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-secondery);
}

.pagination__show-btn {
    padding: 0 0 0 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    color: var(--text-secondery);
    border-radius: var(--border-radius-7);
    transition: all .2s ease-in-out;
}

.pagination__show-btn.active {
    background-color: var(--table-row-hover);
    color: var(--accent-primary);
}

.pagination__show-btn.active svg {
    transform: rotate(180deg);
}

.pagination__show .dropdown-content {
    top: auto;
    bottom: 100%;
    margin-bottom: 5px;
}

.pagination__show .dropdown-content li span {
    padding: 8px 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-primary);
}

.pagination__list-wrapper {
    display: flex;
    align-items: center;
}

.pagination__btn {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: var(--text-primary);
}

.pagination__btn.prev span {
    margin-left: 5px;
}

.pagination__btn.next span {
    margin-right: 5px;
}

.pagination__btn.disabled {
    color: var(--text-secondery);
    pointer-events: none;
}

.pagination__list {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.pagination__list li a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    border-radius: var(--border-radius-7);
    color: var(--text-primary);
}

.pagination__list li a:not(:last-child) {
    margin-right: 5px;
}

.pagination__list li a.active {
    background-color: var(--table-row-hover);
    pointer-events: none;
}

.content__header.sub-page {
    border-color: transparent;
}

.content__header .label-icon {
    width: 60px;
    height: 60px;
    margin: 0 20px;
}

.content__header .label-icon img {
    width: 36px;
    height: 36px;
}

.heading-list {
    display: flex;
    align-items: center;
}

.heading-list li.active {
    color: var(--graph-green);
}

.heading-list li.dispatched {
    color: #E0BE08;
}

.heading-list li.sold {
    color: var(--accent-primary);
}

.heading-list li.ready {
    color: var(--temp-accent);
}

.heading-list li {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-secondery);
    position: relative;
}

.heading-list li:not(:last-child) {
    margin-right: 30px;
}

.heading-list li:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: var(--border-primary);
    position: absolute;
    right: -16px;
    top: 0;
}

.heading-list li svg {
    margin-right: 7px;
}

.content__header .toggle-check:not(:last-child) {
    margin-right: 20px;
}


/* tabs */

.tabs-wrapper {
    padding: 0 20px;
    margin: 0 -20px;
    background-color: var(--table-row-hover);
    border-bottom: 1px solid var(--border-primary);
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.tabs__item {
    padding: 0 13px;
}

.nav-tab {
    display: block;
    padding: 13px 0;
    transition: all .2s ease-in-out;
    position: relative;
    overflow: hidden;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-primary);
}

.nav-tab:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--accent-primary);
    transition: all .2s ease-in-out;
    border-radius: 7px 7px 0px 0px;
    position: absolute;
    bottom: -3px;
    left: 0;
}

.nav-tab.active,
.nav-tab:hover {
    color: var(--accent-primary);
}

.nav-tab.active:after {
    bottom: 0;
}

.tab-content__item {
    display: none;
}

.tab-content__item.active {
    display: block;
}

.cards__col-8 {
    flex: 0 0 auto;
    padding: 0 10px;
    width: 66.6666667%;
}

.cards__col-4 {
    flex: 0 0 auto;
    padding: 0 10px;
    width: 33.3333333%;
}

.cards__col-3 {
    flex: 0 0 auto;
    padding: 0 10px;
    width: 25%;
}

.card__header.style-2 {
    font-weight: 500;
    padding: 12px 15px;
}

.chart__body-wrapper {
    max-height: 587px;
}

.chart__body-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 587px;
}

.card__body.style-2 {
    padding: 0;
}

.chart__quick-info {
    flex: 0 0 180px;
    border-right: 1px solid var(--border-primary);
}


.actual-info img {
    width: 50px;
    height: 50px;
}

.actual-info:not(:last-child) {
    margin-bottom: 30px;
}

.actual-info span {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.actual-info__period-date{
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color:var(--text-primary);
    margin-top: 16px;
}

.quick-info__title {
    padding: 15px;
}

.quick-info__title h4 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondery);
    max-width: 100px;
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;
}

.quick-info__body {
    padding: 15px;
}

.quick-info__footer {
    padding: 15px;
}

.time-moment {
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--text-secondery);
}

.chart__body-actions {
    background-color: #F8F9FA;
    border-top: 1px solid #DDE2E4;

    padding: 10px 20px 10px 16px;
}

.chart__body-actions .buttons-group .btn:not(:last-child) {
    margin-right: 7px;
}

.chart__body-actions .buttons-group .module__check:not(:last-child) {
    margin-right: 16px;
}

.card__body-sm {
    padding: 26px 12px 12px 12px;
}


/* table-list */

.table-list {}

.table-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-list__item:not(:last-child) {
    border-bottom: 1px solid var(--border-primary);
}

.table-list__td {
    display: block;
    padding: 14px 16px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

.filter-options__title {
    font-weight: 500;
}

.filter-options__title span {
    font-weight: 600;
}

.justify-end {
    justify-content: flex-end;
}

.table-actions {
    background-color: transparent;
}

.table-actions .toggle-check__body:not(:only-child) {
    margin-right: 7px;
}

.table-actions .btn {
    margin-left: 18px;
}

.datetimepicker-dummy .datetimepicker-dummy-wrapper {
    overflow: hidden;
}

.data-row__spoiler {
    max-width: 100%;
}

.datetimepicker-dummy .datetimepicker-dummy-wrapper .datetimepicker-dummy-input:first-child {
    text-indent: 0rem;
}

.datetimepicker.is-datetimepicker-default .datetimepicker-container:before,
.datetimepicker.is-datetimepicker-default .datetimepicker-container:after {
    display: none;
}

.datetimepicker {
    margin-top: 5px;
}

.datetimepicker .timepicker .timepicker-previous {
    margin: 0;
}

.datetimepicker .timepicker .timepicker-next,
.datetimepicker .timepicker .timepicker-previous {
    margin: 0;
}

.datetimepicker .timepicker .timepicker-end .timepicker-input-number,
.datetimepicker .timepicker .timepicker-start .timepicker-input-number {
    font-style: normal;
    font-weight: normal;
    font-size: 21px;
    line-height: 24px;
    color: var(--text-primary)!important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timepicker-input {
    border: 1px solid var(--border-primary);
    border-radius: 7px;
    margin: 0 5px;
}

.datetimepicker .timepicker .timepicker-start .timepicker-hours .timepicker-input input,
.datetimepicker .timepicker .timepicker-start .timepicker-minutes .timepicker-input input {
    width: 53px;
    height: 40px;
}

.time-piker {
    max-width: 130px;
}

.datetimepicker .timepicker {
    padding: 8px;
}

.datetimepicker .timepicker .timepicker-time-divider {
    font-size: 21px;
    color: var(--icon-color-in-input)!important;
}

.datetimepicker .timepicker .timepicker-next {
    background-image: url(../img/time-arrow-up.svg);
}

.datetimepicker .timepicker .timepicker-next,
.datetimepicker .timepicker .timepicker-previous {
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    padding: .2rem;
}

.datetimepicker .timepicker .timepicker-previous {
    transform: rotate(180deg);
    background-image: url(../img/time-arrow-up.svg);
}

.time-piker .datetimepicker-dummy .datetimepicker-dummy-wrapper::before,
.time-piker .datetimepicker-dummy .datetimepicker-dummy-wrapper:before {
    width: 40px;
    height: 100%;
    mask: none;
    -webkit-mask: none;
    border-radius: 0 7px 7px 0;
    background-color: #F6F8F9;
    background-image: url(../img/clock-watch.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: auto;
    right: 0;
    top: 0;
}
input[type="time"] {
    height: 40px;
    background: #FFFFFF;
    border-radius: 7px;
    /* display: block; */
    width: 100%;
    border: 1px solid #DDE2E4;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: #00283A;
    /* padding: 10px 12px; */
    padding: 7px 12px;
    display: flex;
    align-items: center;
    position: relative;
    min-width: 110px;
}
input[type="time" i]::-webkit-calendar-picker-indicator {
    width: 40px;
    height: 40px;
    -webkit-mask: none;
    border-radius: 0 7px 7px 0;
    background-color: #F6F8F9;
    background-image: url(../img/clock-watch.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    left: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
}

.filter-options input[type="time"] {
    box-shadow: var(--shadow);
}

.filter-options__items .datepicker-el {
    max-width: 160px;
    margin-right: 10px;
}

.icon-rigth svg {
    margin-left: 5px;
}

.wizard-item {
    max-width: 820px;
}

.schedule-options .el-form .el-form__title {
    margin-bottom: 17px;
}

.tab-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 17px;
}

.tab-title:first-child {
    margin-top: 25px;
}

.categories button {
    width: 100%;
    box-shadow: 0px 1px 2px 0px rgba(91, 104, 113, 0.32),0px 0px 1px 0px rgba(26, 32, 36, 0.32);
    /* box-shadow: 0px 0px 1px 0px rgba(26, 32, 36, 0.32); */

}

.schedule-options .categories:last-child {
    margin-right: 0;
    flex: 0 0 30%;
}

.schedule {
    position: relative;
}

.schedule__time-line {
    display: flex;
    align-items: center;
    padding-left: 72px;
    overflow: hidden;
}

.schedule__time-line-item {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondery);
    padding: 5px;
    flex: 0 0 270px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.schedule__events-wrapper {
    display: flex;
    border: 1px solid var(--border-primary);
    border-radius: 7px;
}

.schedule__calendar {
    flex: 0 0 94px;
}

.schedule__calendar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid var(--border-primary);
    padding: 12px 0;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
}

.schedule__calendar-item:not(:last-child) {
    border-bottom: 1px solid var(--border-primary);
}

.schedule__events {
    overflow: auto;
}

.schedule__row {
    display: flex;
    align-items: center;
    position: relative;
}

.schedule__box {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-right: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.schedule__row:last-child .schedule__box {
    border-bottom: 0;
}

.schedule__box:nth-child(6n + 6) {
    border-right: 2px solid var(--border-primary);
}

.schedule__event {
    position: absolute;
    height: calc(100% - 1px);
    top: 0;
    background-color: var(--icon-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 16px;
    line-height: 20px;
    padding: 0 15px;
}

.cards__col {
    flex: 0 0 100%;
    padding: 0 10px;
    width: 100%;
}

.popup__message {
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    margin-top: 25px;
}

.popup__window-actions {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.popup__window-actions .buttons-group {
    flex-wrap: wrap;
}

.popup__window-actions .buttons-group .btn {
    justify-content: center;
}

.popup_wrpr.danger-message .popup__window .popup__window-content {
    max-width: 450px;
}

.table-user img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.text.has-icon {
    display: flex;
    align-items: center;
}

.text.has-icon svg {
    margin-right: 10px;
}

tr:hover .text.has-icon svg,
tr.checked .text.has-icon svg {
    color: var(--icon-primary);
}

.heading-wrapper .btn-rename {
    flex: 0 0 20px;
    margin: 0 10px 0 20px;
}

#info .cards:last-child {
    margin-top: 0;
}

.module__check .text {
    display: flex;
    align-items: center;
}

.popup__window-body .categories button {
    min-width: auto;
}

.popup__window-body .data-row {
    margin-top: 10px;
}

.popup__window-body .pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.el-form__title {
    margin-bottom: 5px;
}

.tab-content-wrapper {
    max-width: 820px;
}

.tab-content__block {
    padding: 20px 0;
}

.add-buttons .btn:not(:last-child) {
    margin-right: 6px;
}

.data-row__head {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-primary);
}

.data-range-wrapper.hidden-head .datepicker-weekdays,
.data-range-wrapper.hidden-head .datepicker-nav-previous,
.data-range-wrapper.hidden-head .datepicker-nav-next,
.data-range-wrapper.hidden-head .datetimepicker .datepicker-nav .datepicker-nav-year {
    display: none;
}

.data-range-wrapper .datepicker {
    width: 100%;
}

.data-range-wrapper .datetimepicker .datepicker-nav .datepicker-nav-month-year {
    justify-content: flex-start;
}

.data-range-wrapper .datetimepicker {
    box-shadow: none;
    border: 0;
}

.report-calendar__sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.report-calendar__buttons {
    display: flex;
    align-items: center;
}

.report-calendar__prev,
.report-calendar__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.report-calendar__prev {
    margin-right: 5px;
}

.report-calendar__current-year {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.report-calendar__days-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F6F8F9;
    margin: 20px -20px;
    padding: 0 30px;
}

.shedule-report.fc .fc-daygrid-day-top {
    flex-direction: row;
}

.shedule-report.fc .fc-scrollgrid.fc-scrollgrid-liquid tbody[role="rowgroup"] {
    position: relative;
    top: -28px;
}

.shedule-report.fc .fc-scrollgrid.fc-scrollgrid-liquid thead .fc-col-header-cell {
    border-color: transparent;
}

.shedule-report.fc .fc-scrollgrid.fc-scrollgrid-liquid thead .fc-scrollgrid-sync-inner {
    text-align: end;
}

.shedule-report.fc .fc-scrollgrid.fc-scrollgrid-liquid thead .fc-scrollgrid-sync-inner a {
    padding-right: 10px;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    color: #9DB0B7;
}

.shedule-report.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent;
}

.shedule-report.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    color: var(--white);
    background-color: #00283A;
}

.shedule-report.fc .fc-daygrid-day-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
}

.report-calendar__days-list li {
    font-weight: 600;
    font-size: 10px;
    line-height: 23px;
    color: #9DB0B7;
}

.report-calendar__days-list li:not(:last-child) {
    margin-right: 5px;
}

.report-calendar__prev img {
    transform: rotate(180deg);
}

.data-row.--inner {
    padding: 0;
}

.spoiler.--style-2 .spoiler__button {
    padding: 15px 18px 15px 10px;
}

.spoiler__button {
    color: var(--icon-color);
    padding: 18px 0;
    cursor: pointer;
}

.spoiler__button.active svg {
    transform: rotate(180deg);
}

.spoiler__button span {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-primary);
}

.spoiler__title span {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-secondery);
}

.data-row.has-spoiler {
    padding-bottom: 0;
}

.spoiler__body {
    display: none;
    padding-bottom: 18px;
}

.spoiler.--style-2 .spoiler__body {
    padding-bottom: 0;
}

.spoiler__body.active {
    display: block;
}

.flex .buttons-group .datepicker-el:not(.flex .datepicker-el:last-child) {
    margin-right: 6px;
}

.buttons-group .datepicker-el {
    max-width: 160px;
}

.py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.my-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.btn.red-color span {
    color: var(--graph-red);
}

.select-group {
    display: flex;
    align-items: center;
}

.select-group .el-form {
    margin-right: 10px;
    width: auto;
}

.select-group .categories button,
.select-group .categories button span.active-categories {
    min-width: max-content;
}

sub {
    margin-top: -6px;
    font-size: 10px;
}

.select-title {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-secondery);
    margin-right: 12px;
}

.categories button span.active-categories {
    font-weight: 400;
}

.module__check.disabled,
.datepicker-el.disabled,
.time-piker.disabled {
    pointer-events: none;
}

.module__check.disabled .check,
.module__check.disabled input:checked+.check,
.disabled .datetimepicker-dummy .datetimepicker-dummy-wrapper {
    background-color: var(--table-row-hover);
    border-color: var(--border-primary);
}

.module__check.disabled input:checked+.check {
    background-image: url(../img/Check-disabled.svg);
}

.module__check.disabled .text,
.disabled .datetimepicker-dummy .datetimepicker-dummy-wrapper .datetimepicker-dummy-input {
    color: var(--text-secondery);
}

.spoiler__body .table-wrapper {
    padding-bottom: 0;
}

.popup__img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.popup__img+p {
    text-align: center;
}

.fieldes-actions {
    display: none;
}

.fieldes-actions.active {
    display: block;
}

.data-row__span {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-secondery);
    margin-right: 5px;
}

.timing__table-wrapper {
    overflow: auto;
    max-width: 100%;
}

.timing__table-wrapper .timing__table {
    min-width: 500px;
}

.data-row__controls .btn-transp {
    color: var(--accent-primary);
}

.line-hr {
    border: 0;
    border-top: 1px solid var(--border-primary);
}

.spoiler__button .add-buttons .btn:not(:first-child) {
    margin-left: 20px;
}

.spoiler__button .add-buttons .btn:not(:last-child) {
    margin-right: 0;
}

.spoiler.--style-2 .spoiler__button {
    flex-wrap: wrap;
}

.spoiler__body-actions {
    padding: 14px 15px;
    border-top: 1px solid var(--border-primary);
}

.spoiler__body-actions .add-buttons .btn:not(:last-child) {
    margin-right: 10px;
}

.headline-wrapper .headline.headline--sm {
    margin-bottom: 0;
}

.headline-wrapper .buttons-group {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.headline-wrapper .add-buttons .btn {
    margin-bottom: 5px;
}

.headline-wrapper .add-buttons .btn:not(:last-child) {
    margin-right: 0;
}

.headline-wrapper .add-buttons .btn:not(:first-child) {
    margin-left: 6px;
}

.popup_wrpr.big .popup__window .popup__window-content {
    max-width: 870px;
}

.popup__window-body.scroll-content {
    padding: 0 5px;
    margin: 0 -5px;
    max-height: 550px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.pricing__row {
    display: flex;
    flex-wrap: wrap;
}

.pricing__col {
    width: calc(33.333% - 20px);
    margin: 0 10px;
    padding: 0 20px 20px;
    border: 1px solid var(--border-primary);
    box-sizing: border-box;
    border-radius: 7px;
}

.renew-plan.inner {
    max-width: 882px;
}

.pricing__header {
    padding: 20px;
    margin: 0 -20px 20px;
    border-bottom: 1px solid var(--border-primary);
}

.pricing__list {
    margin-bottom: 20px;
}

.pricing__item {
    position: relative;
    padding-left: 36px;
    font-size: 16px;
    line-height: 20px;
    min-height: 24px;
}

.pricing__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='10.0002' cy='10.0002' r='7.50313' stroke='%2326A7E1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M7.03516 10.2827L8.84174 12.0892L8.83007 12.0776L12.9059 8.00171' stroke='%2326A7E1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: center;
}

.pricing__item+.pricing__item {
    margin-top: 14px;
}

.pricing__item--disabled {
    color: var(--text-secondery);
}

.pricing__item--disabled:before {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8 8L16 16' stroke='%239DB0B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M16 8L8 16' stroke='%239DB0B7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
}

.pricing__text {
    display: block;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
}

.pricing__small {
    font-size: 14px;
    color: var(--text-secondery);
}

.pricing__text--accent {
    color: var(--accent-primary);
}

.text-before {
    color: var(--accent-primary);
}

.text-after {
    color: var(--text-secondery);
}

.pricing-toggle .toggle-check__body {
    margin-right: 15px;
    margin-left: 15px;
    background-color: var(--accent-primary);
}

.toggle-check input:checked+.toggle-check__body-wrapper .text-before {
    color: var(--text-secondery);
}

.toggle-check input:checked+.toggle-check__body-wrapper .text-after {
    color: var(--accent-primary);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-content__item.user-managment .table thead tr th:last-child {
    text-align: right;
}
.fieldlogbook_print_content .table-wrapper {
    padding: 0;
}
.fieldlogbook_print_content .company-page {
    max-width: 100%;
    padding-top: 0;
}
.litepicker .container__months .month-item-header .button-previous-month,
.litepicker .container__months .month-item-header .button-next-month {
    background: url(../img/arrow-calendar.svg) no-repeat center;
    background-size: 6px;
    width: 24px;
    height: 24px;
    padding: 0;
    display: block;
}
.litepicker .container__months .month-item-header .button-previous-month {
    transform: rotate(180deg);
    background-position: center 6.7px;
}
.litepicker .container__months .month-item-header .button-previous-month svg ,
.litepicker .container__months .month-item-header .button-next-month svg {
    display: none;
}
.wrapper_main .content {
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
}
.wrapper_main.footer-fixed .content {
    max-height: calc(100vh - 140px);
}
.fade-enter-active, .fade-leave-active {
    transition: opacity .3s;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}
.td_capitalize td {
    text-transform: capitalize;
}
label.btn {
    cursor: pointer;
}
.track_dispatch_wrpr {
    /* padding: 15px 0; */
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.dispatch_companies_row {
    display: flex;
    align-items: center;
    max-width: 820px;
    width: 100%;
    padding-top: 15px;
}
.track_dispatch_company {
    border: 1px solid #DDE2E4;
    border-radius: 7px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #00283A;
    width: 100%;
}
.track_dispatch_company .item_header,
.track_dispatch_company .item_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}
.track_dispatch_company .item_header {
    background: #F6F8F9;
}
.track_dispatch_company .item_footer .btn {
    margin-left: 10px;
}
.dispatch_delivery_icon {
    display: flex;
    max-width: 50px;
    width: 100%;
    margin: 0 15px;
}
.dispatch_delivery_icon svg {
    max-width: 100%;
}
.track_dispatch_company.condition_disabled .item_footer {
    color: #9DB0B7;
    pointer-events: none;
}
.track_dispatch_company.condition_disabled .item_footer .btn {
    filter: grayscale(1);
}
.transaction_history_table {
    /* padding-left: 30px; */
    margin-left: 10px;
    width: 100%;
    border-left: 1px solid #DDE2E4;
    flex: 1;
}
.transaction_history_table .pagination.fixed {
    position: initial;
    width: 100%;
    padding: 0;
    border-top: 1px solid #DDE2E4;
}
.transaction_history_table .pagination.fixed .pagination__body {
    padding: 15px 0 20px 20px;
}
.transaction_history_table .transaction_history_card {
    padding: 20px;
    border: 1px solid #DDE2E4;
    border-radius: 7px;
    margin: 10px 0 10px 10px;
}
.transaction_history_table .transaction_history_card li+li {
    margin-top: 10px;
}
.transaction_history_table .transaction_history_card li span {
    color: #9DB0B7;
}
.transaction_history_card_wrpr {
    height: calc(100vh - 348px);
    overflow-y: auto;
}
.transaction_history_table .heading-page-h1 {
    margin: 20px 10px 15px;
}
.dispatch_companies_row_box {
    display: flex;
    flex-direction: column;
}
.conditions_close_btn {
    position: relative;
}
.track_dispatch_company:not(.condition_disabled) .conditions_close_btn:after {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    top: 16px;
    transform: rotate(35deg);
    width: 24px;
    height: 2px;
    background: #ff3838;
}
.condition_status {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 10px;
}
.condition_status.green {
    background: #13af13;
}
.condition_status.red {
    background: #db0d0d;
}
.loader-wrapper.spinner_size_70 {
    position: initial !important;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-wrapper.spinner_size_70 .loader {
    position: initial;
    transform: initial;
    font-size: 10px;
}
.history_parent_product_wrpr+.history_parent_product_wrpr {
    margin-top: 15px;
}
.qr_dispatch_page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
}
.qr_dispatch_page .btn {
    margin: 10px;
    padding: 10px 15px;
}
.qr_dispatch_header {
    position: fixed;
    left: 14px;
    top: 0;
    width: calc(100% - 28px);
    border-bottom: 1px solid #DDE2E4;
    display: flex;
    align-items: center;
    min-height: 70px;
    height: 70px;
}
.qr_dispatch_page .header-logo {
    margin-right: 20px;
}
.signal_strength_bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.signal_strength_bar {
    display: block;
    width: 10px;
    margin: 0 2px;
    background: #B4C4CA;
    border-radius: 2px;
}
.signal_strength_bar:nth-child(1) {
    height: 12px;
}
.signal_strength_bar:nth-child(2) {
    height: 19px;
}
.signal_strength_bar:nth-child(3) {
    height: 26px;
}
.signal_strength_bar:nth-child(4) {
    height: 33px;
}
.signal_strength_bar:nth-child(5) {
    height: 40px;
}
.signal_strength_bar.active {
    background: #00283A;
}
.mt-5 {
    margin-top: 5px;
}
.items-start,
.card__info span.items-start {
    align-items: flex-start;
}