.flex-grow-10 {
    flex-grow: 10;
}

.border-right {
    border-right: 1px solid #dbdfea !important;
}

.setOpacity {
    pointer-events: none;
    opacity: 0.5;
}

.setOpacity-custom {
    pointer-events: none;
    opacity: 0.8;
}

ul.disabled, li.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.ta-r {
    text-align: right;
}

.pointer-e-none {
    pointer-events: none;
}

span.selection {
    width: 100%;
}

.ellipsis-300 {
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.nowrap {
    white-space: nowrap;
}

.small-padd .nk-tb-col {
    padding: 0.2rem .5rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

label {
    margin-bottom: 5px;
}

.vertical-middle {
    vertical-align: middle !important;
}

input[type="date"]::-webkit-calendar-picker-indicator, input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.ml-a {
    margin-left: auto;
}

/* table fix head */

.fix-thead {
    max-height: 80vh;
    min-height: 400px;
    overflow: auto;
}

    .fix-thead .nk-tb-head {
        position: sticky;
        top: 0;
        z-index: 3;
    }

    .fix-thead .nk-tb-item .nk-tb-col:first-of-type {
        /*        position: sticky;
        left: 0;
        z-index: 2;*/
        /*        background-color: #ffffff;*/
    }

    .fix-thead .nk-tb-head .nk-tb-col-fix {
        top: 0;
        z-index: 3;
    }

    .fix-thead .nk-tb-head .nk-tb-col {
        background-color: #ffffff;
    }

/* end table fix head */

@media(max-width: 496px) {
    .card-title-group {
        align-items: flex-start !important;
        flex-direction: column;
    }
}

@media(max-width: 750px) {
    .users-mobile-column {
        flex-direction: column;
    }
}

.nk-sidebar.nk-sidebar-active-custom {
    transform: translateX(0);
}

.fz-18 {
    font-size: 18px;
}

.fz-20 {
    font-size: 20px;
}

.form-icon.passcode-switch {
    height: calc(2.125rem + 10px);
}

.fixed-bottom-item {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.ta-c {
    text-align: center;
}

.setOpasity {
    opacity: .2
}

/* settings start */
.settings .check-active.active .settings__entity-link {
    background-color: #F5F6FA;
    border-radius: 8px;
}

.settings .check-active:not(:last-child) {
    /*    margin-bottom: 12px;*/
}
/* settings end*/

/* reservoires photos start */

.photos-wrapper {
}

    .photos-wrapper form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 0;
        /*        margin-bottom: 20px;*/
        padding: 10px 0;
        border-radius: 5px;
        border: 2px dashed #6990F2;
        cursor: pointer;
    }

form:where(i, p) {
    color: #6990F2;
}

form i {
    font-size: 50px;
}

form p {
    margin-top: 15px;
    font-size: 16px;
}

section .photo-item {
    /*    margin-bottom: 10px;*/
    background: #E9F0FF;
    list-style: none;
    padding: 15px 20px;
    border-radius: 5px;
    /*    display: flex;
    align-items: center;
    justify-content: space-between;*/
}

    section .photo-item i {
        color: #6990F2;
        font-size: 30px;
    }

section .details span {
    font-size: 14px;
}

.progress-area {
    max-width: 70%;
    margin: 0 auto 20px;
}

    .progress-area li:not(:last-child) {
        margin-bottom: 10px;
    }

    .progress-area .photo-item .content {
        width: 100%;
        margin-left: 15px;
    }

    .progress-area .details {
        display: flex;
        flex-direction: column;
        margin-bottom: 7px;
    }

    .progress-area .content .progress-bar {
        height: 6px;
        width: 92%;
        margin-bottom: 4px;
        background: #fff;
        border-radius: 30px;
    }

.content .progress-bar .custom-progress {
    height: 100%;
    width: 15%;
    background: #6990F2;
    border-radius: inherit;
    opacity: 0;
}

.photo-item.loading .custom-progress {
    opacity: 1;
    animation: progress 2s infinite;
}

@keyframes progress {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(700px)
    }
}

.photo-item {
    position: relative;
    overflow: hidden;
}

.photo-item--main {
    background-color: rgb(16 124 172 / 70%) !important;
}

.photo-item .photo-item__decorative-strip {
    position: absolute;
    top: 20px;
    right: -44px;
    padding: 3px 48px;
    font-size: 19px;
    color: #fff;
    background-color: #777;
    transform: rotate(45deg);
}

.progress-area .photo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.6s ease-out;
}



    .progress-area .photo-item.removing {
        opacity: 0;
    }

.uploaded-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: -10px;
    margin-left: -10px;
}

    .uploaded-area .photo-item {
        flex-basis: calc((100% - 10px * 6) / 6);
        min-height: 167px;
        margin-left: 10px;
        margin-top: 10px;
    }

    .uploaded-area.onprogress {
        max-height: 150px;
    }

    .uploaded-area::-webkit-scrollbar {
        width: 0px;
    }

    .uploaded-area .photo-item .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .uploaded-area .photo-item .details {
        display: flex;
        margin-left: 15px;
        flex-direction: column;
    }

        .uploaded-area .photo-item .details .size {
            color: #404040;
            font-size: 11px;
        }

    .uploaded-area i.fa-check {
        font-size: 16px;
    }


.content__photo-wrap {
    /*    width: 120px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.content__photo {
}

.content__btn-img {
    position: relative;
    padding: 0;
    border: none;
    background-color: transparent;
}

    .content__btn-img:focus {
        outline: none;
    }

.content__actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content__action-delete {
    margin-right: 15px;
}

.file-icon {
    width: 40px;
}

.photo-item.custom-progress {
    display: flex;
}

.photo-item.error .name {
    margin-bottom: 0;
}

.file-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

#icon-cancel-file {
    cursor: pointer;
}
/* reservoires photos end */

.modal {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* reservoires-modal start */
.reservoires-modal .modal-body {
    padding: 0 !important;
}

    .reservoires-modal .modal-body .alert {
        flex-basis: calc(100% / 2 - 15px);
    }

        .reservoires-modal .modal-body .alert:nth-child(2n+2) {
            margin-left: 15px;
        }
/* reservoires-modal end */

.min-height-400 {
    min-height: 400px;
}

.number-of-downloads {
    font-size: 22px;
}

.my-badge-new {
    position: absolute;
    top: 0;
    right: 0;
}

.services-error-box {
    display: flex;
    margin-top: 30px;
}

    .services-error-box .alert:not(:last-child) {
        margin: 0 !important;
        margin-right: 10px !important;
    }

.fish-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-left: -10px;
}

    .fish-list .alert {
        max-width: 50%;
        margin: 0 auto;
    }

.fish-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-left: 10px;
    padding: 10px;
    flex-basis: calc((100% - 10px * 6) / 6);
    background-color: #E9F0FF;
    border-radius: 5px;
}

.fish-photo {
    margin-bottom: 10px;
}

.fish-name {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.fish-no-photo {
    margin-bottom: 10px;
    width: 86px !important;
    height: 86px !important;
    font-size: 21px !important;
    /*    background-color: #2280fe;*/
}

.reservoires-tab {
    position: fixed;
    z-index: 99999999;
    width: 1228px;
    background-color: #fff;
}

.cus-scroll {
    overflow-y: auto !important;
}

@media (min-width: 1200px) {
    .nk-sidebar {
        width: 280px;
    }
}

@media (min-width: 1540px) {
    .nk-sidebar {
        width: 280px;
    }
}


@media (min-width: 1540px) {
    .nk-sidebar + .nk-wrap > .nk-header-fixed {
        left: 280px;
    }
}

@media (min-width: 1200px) {
    .nk-sidebar + .nk-wrap {
        padding-left: 279px;
    }
}

@media (min-width: 1540px) {
    .nk-sidebar + .nk-wrap {
        padding-left: 279px;
    }
}

.nk-fmg-menu li ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.setting-tree {
    height: 100%;
    max-height: calc(80vh + 62px);
    overflow: auto;
}

@media (min-width: 1540px) {
    .nk-sidebar .nk-sidebar-head {
        padding: 14px 32px;
    }
}

@media (min-width: 1200px) {
    .nk-sidebar .nk-sidebar-head {
        padding: 14px 32px;
    }
}


@media (min-width: 1560px) {
    .nk-sidebar .nk-menu {
        padding-left: 22px;
    }
}

@media (min-width: 1200px) {
    .nk-sidebar .nk-menu {
        padding-left: 22px;
    }
}

.global-search-entity-title {
    padding-top: 10px;
    font-size: 26px;
    text-align: center;
}

.reviews-abs-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.reviews-tab .nk-tb-col {
    padding-top: 11px;
    padding-bottom: 11px;
}

.reviews-photos-modal {
    height: 90vh;
}

.class {
    width: 100% !important;
    height: 100% !important;
}

.review-photo {
    min-height: auto !important;
    cursor: pointer !important;
}

#base-container .nk-footer {
    margin-top: 0;
}

#base-container .nk-content {
    display: flex;
    flex-grow: 1;
}

#base-container .nk-content-inner {
    flex-grow: 1;
}

#base-container .nk-content-body, #base-container .nk-content-body > div {
    height: 100%;
}

#base-container .left-bar {
    min-width: 135px;
    max-width: 350px;
}

#base-container #user-left-container {
    height: 100%;
}

.alert:last-child {
    margin-bottom: 2rem;
}

.fishPhotoForm {
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    margin: 0;
    /* margin-bottom: 20px; */
    padding: 10px 0;
    border-radius: 5px;
    border: 2px dashed #6990F2;
    cursor: pointer;
    background: #E9F0FF;
}

    .fishPhotoForm p {
        margin: 0;
        text-align: center;
    }

.services-error-box .alert:last-child {
    margin-bottom: 0;
}

.cus-file-input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin: 0;
    /* margin-bottom: 20px; */
    /*    padding: 10px 0;*/
    border-radius: 5px;
    border: 2px dashed #6990F2;
    cursor: pointer;
    background: #E9F0FF;
}

    .cus-file-input p {
        margin: 0;
        text-align: center;
    }

.current-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.wrap-input-photo {
    display: flex;
}

.user-manager-photo {
    width: 100px;
    object-fit: contain;
    cursor: pointer;
}

.tickets-tabs {
    width: 920px;
}
