* {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

input:focus,
textarea:focus,
input:focus-visible,
textarea:focus-visible,
input:active,
textarea:active,
button:focus,
button:focus-visible,
button:active {
    outline: none;
}

:root {
    --color-white: #fff;
    --color-silver: #393939;
    --color-light-silver: #808080;
    --color-dark-silver: #686868;
    --color-silver-text: #404040;
    --color-dark: #2E2E2E;
    --color-black: #303030;
    --color-red: #E71F27;
    --color-green: #3AAA35;
    --color-medium-black: #202020;
    --bg-silver: #E3E3E3;
}

.table.hidden,
.table tbody tr.hidden {
    display: none;
}

.table [data-title] {
    cursor: pointer;
}

.form-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.form-input {
    border: 1.5px solid var(--color-light-silver);
    height: 50px;
    width: 100%;
    border-radius: 10px;
    padding: 0 17px;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-dark);
    transition: all .4s;
    margin-bottom: 25px;
}

.form-input::placeholder {
    color: var(--color-light-silver);
}

.form-input:hover,
.form-input:focus {
    border-color: var(--color-dark);
}

.form-input:hover::placeholder,
.form-input:focus::placeholder {
    color: var(--color-dark);
}

.form-input._err {
    color: var(--color-red);
    border-color: var(--color-red);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all .4s;
}

.btn--red {
    height: 50px;
    max-width: 210px;
    width: 100%;
    background: var(--color-red);
    border: 2px solid var(--color-red);
    border-radius: 8px;
    color: var(--color-white);
    margin: 0 auto;
}

.btn--red path {
    transition: all .3s;
}

.btn--red:hover {
    background: transparent;
    color: var(--color-red);
}

.btn--red:hover path {
    fill: var(--color-red);
}

.btn--green {
    height: 50px;
    max-width: 210px;
    width: 100%;
    background: #00C68A;
    border: 2px solid #00C68A;
    border-radius: 8px;
    color: var(--color-white);
    margin: 0 auto;
}

.btn--green:hover {
    background: transparent;
    color: #00C68A;
}

.btn--link {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-light-silver);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.btn--link.disable {
    cursor: not-allowed;
    opacity: .3;
}

.btn--link.disable:hover:after {
    transform: translateX(-100%);
}

.btn--link::after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--color-light-silver);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    transition: all .4s;
}

.btn--link:hover::after {
    transform: translateX(0);
}

.btn--silver {
    height: 50px;
    max-width: 210px;
    width: 100%;
    background: var(--bg-silver);
    border: 2px solid var(--bg-silver);
    border-radius: 8px;
    color: var(--color-silver-text);
    transition: all .3s;
    text-decoration: none;
}

.btn--silver:hover {
    background: transparent;
}

.btn-inline {
    display: inline-flex;
    max-width: initial;
    max-height: 40px;
    text-decoration: none;
    margin-right: 20px;
}



.wrapper {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    display: flex;
    padding: 25px;
}

.navbar {
    margin-right: 35px;
    max-width: 250px;
    width: 100%;
    background: var(--color-dark);
    border-radius: 20px;
    padding: 50px 0;
}

.navbar__logo {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    padding: 0 27px;
}

.navbar__list {
    list-style: none;
    overflow: auto;
    height: calc(100% - 20px);
}

.navbar__list::-webkit-scrollbar {
    width: 0;
}

.navbar__list::-webkit-scrollbar-track {
    background-color: transparent;
}

.navbar__list::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.navbar__item {
    margin-bottom: 20px;
}

.navbar__link {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 27px;
    transition: all .3s;
}

.navbar__link .stroke,
.navbar__link .fill {
    transition: all .3s;
}

.navbar__link.active,
.navbar__link:hover {
    color: var(--color-red);
    background: rgb(231, 31, 39, .1);
}

.navbar__link.active .stroke,
.navbar__link:hover .stroke {
    stroke: var(--color-red);
}

.navbar__link.active .fill,
.navbar__link:hover .fill {
    fill: var(--color-red);
}


.navbar__link > svg {
    margin-right: 16px;
}

.content {
    width: calc(100% - 285px);
}


/* Main heading */
.main-heading {
    width: 100%;
    border-radius: 10px;
    height: 60px;
    background: var(--color-dark);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.main-heading__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    color: var(--color-white);
}

.main-heading__time {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

.main-heading__time .year,
.main-heading__time .date {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    margin-right: 15px;
    color: var(--color-white);
}

.main-heading__time .time {
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    color: var(--color-red);
    margin-right: 15px;
}

.main-heading__user {
    display: flex;
    align-items: center;
}

.main-heading__user-name {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: var(--color-white);
    margin-right: 10px;
}

.main-heading__user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.main-heading__user-position {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: var(--color-white);
}

.main-heading__user-logout {
    width: 20px;
    display: inline-flex;
    align-content: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.main-heading__user-logout svg {
    width: 100%;
    height: 100%;
}

.main-heading__user-logout path {
    transition: all .3s;
}

.main-heading__user-logout:hover path {
    fill: var(--color-red);
}

/* \Main heading */


/* Heading */
.heading {
    display: flex;
    justify-content: space-between;
    height: 40px;
}

.heading__tabs {
    height: 100%;
    display: flex;
    list-style: none;
    background: #FFD0D2;
    border-radius: 8px;
}

.heading__tab {
    height: 100%;
}

.heading__btn {
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: none;
    border: none;
    transition: all .3s;
    cursor: pointer;
    padding: 0 15px;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-medium-black);
}

.heading__btn > svg {
    margin-right: 10px;
}

.heading__btn > span {
    margin-left: 15px;
    font-weight: 700;
}

.heading__btn.active {
    background: var(--color-red);
    color: var(--color-white);
}

.heading__btn.active path {
    stroke: var(--color-white);
}

#search-form {
    max-width: 455px;
    width: 100%;
    height: 100%;
}

.heading__search {
    position: relative;
    height: 100%;
    width: 100%;
}

.heading__search > input {
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-dark-silver);
    border-radius: 6px;
    padding-left: 17px;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: var(--color-medium-black);
}

.heading__search > input::placeholder {
    color: var(--color-dark-silver);
}

.heading__search > button {
    position: absolute;
    width: 30px;
    height: 30px;
    background: none;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .3s;
    border-radius: 5px;
}

.heading__search > button:hover {
    border-color: var(--color-red);
}

.heading__search > button > svg {
    width: 20px;
    height: 20px;
}

/* \Heading */

.empty-tag {
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    text-align: center;
    height: 100%;
}

.empty-tag.visible {
    display: flex;
}

/* Table */
.table {
    width: 100%;
    border-spacing: 0 15px;
}

.table.hidden {
    display: none;
}

.table thead {
}

.table thead tr {
}

.table thead td {
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    color: var(--color-dark);
    padding-bottom: 10px;
    user-select: none;
}

.table tbody.hidden-el tr {
    display: none;
}

.table tbody.hidden-el tr.no-hidden {
    display: table-row;
}

.table tbody tr {
    width: 100%;
    border-radius: 6px;
    height: 100px;
}

.table tbody td {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #2F2F2F;
    background: #F3F3F3;
}

.table tbody td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 10%;
}

.table tbody td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: right;
}

.table tbody td img {
    max-width: 80px;
    max-height: 80px;
    margin-left: 20px;
}

.table tbody td .btn {
    height: 25px;
    margin-right: 25px;
}

.table tbody td .btn:nth-last-of-type(1) {
    margin-right: 20px;
}

.table tbody td .btn svg {
    height: 100%;
    width: initial;
}

/* \Table */

/* Checkbox */
.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox > input {
    display: none;
}

.checkbox-body {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid var(--color-dark-silver);
    border-radius: 5px;
    display: inline-block;
    position: relative;
}

.checkbox-body:before {
    content: '';
    width: 13px;
    height: 8px;
    background: url('/images/check.svg') no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all .4s;
}

.checkbox > input:checked + .checkbox-body:before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.checkbox > label {
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
}

/* \Checkbox */


/* Checkbox v_2 */
.checkbox_t-2 {
}

.checkbox_t-2 > input {
    color: var(--color-dark-silver);
    display: none;
}

.checkbox_t-2__label {
    background: #FFB0B3;
    border-radius: 5px;
    font-weight: 500;
    font-size: 20px;
    width: 100%;
    color: var(--color-white);
    transition: all .3s;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.checkbox_t-2 > input:checked + .checkbox_t-2__label {
    background: var(--color-red);
}

/* \Checkbox */


/* Upload */
.upload {
    display: inline-flex;
    align-items: center;
}

.upload__label {
    width: 60px;
    height: 60px;
    position: relative;
    display: inline-block;
}

.upload__label > input {
    display: none;
}

.upload__body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: var(--color-red);
    opacity: .3;
    cursor: pointer;
    transition: all .4s;
}

.upload__body:hover {
    opacity: 1;
}

.upload__body > svg {
    width: 30px;
    height: 30px;
}

.upload__body.hidden {
    opacity: 0;
    pointer-events: none;
}

.upload__image {
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.upload__image.visible {
    opacity: 1;
    pointer-events: initial;
}

.upload__image > img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.upload__image .remove-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
    cursor: pointer;
}

.upload__image:hover .remove-image {
    opacity: 1;
    pointer-events: initial;
}

.upload__image .remove-image > svg {
    width: 33px;
    height: 35px;
}

.upload__image .remove-image > svg path {
    fill: var(--color-white);
}

.upload__desc {
    margin-left: 15px;
    font-size: 14px;
}

/* \Upload */


/* Counter */
.counter {
    display: flex;
}

.counter__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.counter__btn svg {
    width: 20px;
    height: initial;
}

.counter__btn.decrement svg {
    transform: rotate(90deg);
}

.counter__btn.increment svg {
    transform: rotate(-90deg);
}

.counter__input {
    width: 70px;
    height: 60px;
    background: var(--bg-silver);
    border-radius: 6px;
    font-weight: 500;
    font-size: 20px;
    color: var(--color-dark-silver);
    border: none;
    padding-left: 10px;
    text-align: center;
    /*padding-right: 5px;*/
    margin: 0 20px;
}

/* \Counter */


/* Pagination */
.pagination-wrapper {
    height: 25px;
    display: flex;
    margin-top: 10px;
    justify-content: flex-end;
}

.pagination {
    list-style: none;
    display: flex;
}

.pagination__item {
    margin-right: 5px;
}

.pagination__item:nth-last-of-type(1) {
    margin-right: 10px;
}

.pagination__link:not(.prev):not(.next):not(.dots) {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background: var(--color-dark);
    border: 1px solid var(--color-dark);
    color: var(--color-white);
    transition: all .3s;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.pagination__link.active:not(.prev):not(.next):not(.dots) {
    color: var(--color-red);
    pointer-events: none;
}

.pagination__link:not(.prev):not(.next):not(.dots):not(.active):hover {
    color: var(--color-dark);
    background: transparent;
}

.pagination__link svg {
    width: 25px;
    height: 25px;
}

.pagination__link.prev {
}

.pagination__link.prev svg {
    transform: rotate(180deg);
}

.pagination__link.next {
}

.pagination__link.next svg {
}

.pagination__link.dots {
    text-decoration: none;
    line-height: 35px;
    font-weight: 600;
    pointer-events: none;
}

.pagination__link.disable {
    pointer-events: none;
}

.pagination__link.disable polygon {
    fill: var(--color-dark-silver);
}

.pagination__link polygon {
    transition: all .3s;
}

.pagination__link:hover polygon {
    fill: var(--color-red);
}

.pagination-limit {
    display: inline-flex;
    position: relative;
}

.pagination-limit__input {
    width: 60px;
    margin-right: 5px;
}

.pagination-limit__label {
    font-size: 10px;
    color: var(--color-dark-silver);
    width: 50px;
    pointer-events: none;
}

.pagination-limit__btn {
    position: absolute;
    border: 1px solid var(--color-black);
    font-size: 10px;
    height: 100%;
    width: 20px;
    left: 40px;
    z-index: 1;
    background: var(--color-white);
    transition: all .3s;
    cursor: pointer;
}

.pagination-limit__btn:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Pagination */


/* Loader */
.loader__wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 555;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    pointer-events: none;
    opacity: 0;
}

.loader__wrapper.visible {
    opacity: 1;
    pointer-events: initial;
}

.load {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*change these sizes to fit into your project*/
    width: 100px;
    height: 100px;
}

.load hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite;
}

.load :first-child {
    background: var(--color-red);
    animation-delay: -1.5s
}

.load :nth-child(2) {
    background: var(--color-white);
    animation-delay: -1s
}

.load :nth-child(3) {
    background: var(--color-red);
    animation-delay: -0.5s
}

.load :last-child {
    background: var(--color-white);
}

@keyframes spin {
    0%, 100% {
        transform: translate(0)
    }
    25% {
        transform: translate(160%)
    }
    50% {
        transform: translate(160%, 160%)
    }
    75% {
        transform: translate(0, 160%)
    }
}

/* \Loader */

.alex-d-td > input.changed {
    border: 2px solid var(--color-green);
    background: var(--color-medium-black);
    color: var(--color-white);
}

.tab button.changed {
    color: var(--color-green);
    font-weight: 500;
}

/* Modal */
.modal-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 2;
    transition: all .3s;
    opacity: 0;
    pointer-events: none;
}

.modal-overlay.visible,
.modal.visible {
    opacity: 1;
    pointer-events: initial;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    border-radius: 3px;
    box-shadow: inset 0 -10px 20px -10px rgba(0, 0, 0, .2), inset 0 0 5px rgba(0, 0, 0, .1), 0 8px 8px -5px rgba(0, 0, 0, .25);
    padding: 20px;
    min-width: 500px;
    transition: all .3s;
}

.modal__heading {
    margin-bottom: 20px;
}

.modal__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: var(--color-dark);
}

.modal__close {
    border: none;
    padding: 0;
    right: 0;
    top: 0;
    border: 0;
    opacity: .6;
    width: 60px;
    height: 60px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAJPAAACTwBcGfW0QAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD3SURBVFiF1ZdtDoMgDEBfdi4PwAX8vLFn0qT7wxantojKupmQmCi8R4tSACpgjC2ICCUbEBa8ingjsU1AXRBeR8aLN64FiknswN8CYefBBDQ3whuFESy7WyQMeC0ipEI0A+0FeBvHUFN8xPaUhAH/iKoWsnXHGegy4J0yxialOfaHJAz4bhRzQzgDvdGnz4GbAonZbCQMuBm1K/kcFu8Mp1N2cFFpsxsMuJqqbIGExGl4loARajU1twskJLLhIsID7+tvUoDnIjTg5T9DPH9EBrz8rxjPzciAl9+O8SxI8CzJ8CxKFfh3ynK8Dyb8wNHM/XDqejx/AtNyPO87tNybAAAAAElFTkSuQmCC) no-repeat 50% 50%;
    background-size: 8px;
    cursor: pointer;
    outline: 0;
    transition: all .3s;
    transform: scale(2);
    position: absolute;

}

.modal__close:hover {
    opacity: 1;
}

.modal__content {
    margin-bottom: 30px;
}

.modal__controller {
    margin-bottom: 20px;
}

.modal__label {
    font-size: 16px;
    margin-bottom: 6px;
    color: rgba(0, 0, 0, .6);
    line-height: 16px;
    display: block;
}

.modal__radio-label {
    margin-right: 10px;
}

.modal__input,
.modal__select,
.modal__textarea {
    font-weight: 500;
    font-size: 20px;
    color: var(--color-silver-text);
    background-color: #F3F3F3;
    border-radius: 10px;
    padding: 0 15px;
    border: none;
    height: 46px;
    width: 100%;
    -webkit-appearance: none; /* Safari та Chrome */
    -moz-appearance: none; /* Firefox */
    appearance: none;
}

.modal__textarea {
    height: initial;
    overflow: hidden;
    padding: 10px 15px;
}

.modal__select {
    cursor: pointer;
}

.modal__input:focus,
.modal__input:focus-visible,
.modal__input:active,
.modal__select:focus,
.modal__select:focus-visible,
.modal__select:active {
    outline: none;
}

.modal__controller.double .modal__input,
.modal__controller.double .modal__select {
    width: calc(50% - 10px);
}

.modal__controller.double > div {
    display: flex;
    gap: 20px;
}

.modal__buttons {
    display: flex;
    gap: 40px;
}

.modal__buttons .modal-close {
}

.modal__buttons .modal-accept {
}

#create-download-user.iziToast {
    padding-right: 24px;
    min-width: 400px;
}

#create-download-user.iziToast > .iziToast-body .iziToast-texts,
#modal-qr.iziToast > .iziToast-body .iziToast-texts,
#create-download-user.iziToast > .iziToast-body .iziToast-message {
    width: 100%;
}

#modal-qr.iziToast > .iziToast-close,
#create-download-user.iziToast > .iziToast-close {
    height: 42px;
}

#modal-qr .modal__textarea {
    min-height: 75px;
    height: 75px;
}

/* \Modal */

/* Adaptive */
@media (max-width: 1550px) {
    .table thead td {
        font-size: 16px;
        line-height: 16px;
        white-space: nowrap;
    }

    .table tbody td {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 1547px) {
    .heading__btn {
        font-size: 14px;
    }
}

/* \Adaptive */
