@import "/css/fonts.css";

:root {
    --primary-color: #4974E1;
    --primary-hover-color: #4D86FF;;
    --primary-pressed-color: #336CE3;
    --danger-color: #FF6C6C;
    --danger-hover-color: #FF5656;;
    --danger-pressed-color: #EC5B5B;
    --text-contrast: #fff;
    --muted-color: #E8EBF0;
    --main-bg-color: #F8F9FD;
    --header-height: 72px;
    --sidebar-width: 250px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    font-family: "E-Ukraine";
}

.buttons-wrapper {
    margin-top: 20px;
}

.admiral-button + .admiral-button {
    margin-left: 8px;
}

.admiral-button {
    padding: 16px 32px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: inline-block;
    outline: none;
    border: none;
    font-family: "E-Ukraine";
    cursor: pointer;

    transition: .2s;
}

.admiral-button.full-width {
    display: block;
    width: 100%;
}

.admiral-button.small {
    font-weight: 300;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 7px;
}

.admiral-button.button-primary {
    background-color: var(--primary-color);
    color: var(--text-contrast);
}

.admiral-button.button-primary:hover {
    background-color: var(--primary-hover-color);
}

.admiral-button.button-primary:active {
    background-color: var(--primary-pressed-color);
}

.admiral-button.button-danger {
    background-color: var(--danger-color);
    color: var(--text-contrast);
}

.admiral-button.button-danger:hover {
    background-color: var(--danger-hover-color);
}

.admiral-button.button-danger:active {
    background-color: var(--danger-pressed-color);
}

.admiral-button.button-secondary {
    background-color: #F8F9FD;
    box-shadow: none;
    color: #555;
}

.admiral-button.button-secondary:not(.active):hover {
    background-color: #e6e7ea;
    color: #333;
}

.admiral-button.only-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}

.admiral-button.multiple-icons {
    display: inline-block;
    box-shadow: none;
    padding: 5px 8px 2px;
    line-height: 1;
}

.app-wrapper label.admiral-checkbox {
    display: flex;
    align-items: center;
}


label.admiral-checkbox span {
    position: relative;
    padding-left: 25px;
    color: #212121;
    min-height: 20px;
}

label.admiral-checkbox span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #99A6B6;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    cursor: pointer;
}

label.admiral-checkbox input:checked + span::before {
    border-color: #4974E1;
}

label.admiral-checkbox span::after {
    content: "";
    position: absolute;
    top: 11.5px;
    left: 7px;
    width: 0px;
    height: 0px;
    border: 0px solid transparent;
    transform: rotate(45deg);
    cursor: pointer;

    transition: .3s;
}

label.admiral-checkbox input:checked + span::after {
    top: 3.5px;
    left: 7px;
    width: 3px;
    height: 7px;
    border-right: 2px solid #4974E1;
    border-bottom: 2px solid #4974E1;
}

.admiral-checkbox input[type="checkbox"] {
    opacity: 0;
    pointer-events: none;
    height: 0;
    position: absolute;
}

.app-wrapper .admiral-checkbox-wrapper {

}

.app-wrapper .admiral-checkbox-wrapper label {
    padding-left: 30px;
    display: flex;
}

.app-wrapper .admiral-checkbox-wrapper label input {
    position: relative;
    position: absolute;
    width: 0;
    height: 0;
}

.app-wrapper .admiral-checkbox-wrapper label input::before {
    content: "";
    position: absolute;
    top: 0;
    left: -26px;
    border: 2px solid #99A6B6;
    width: 15px;
    height: 15px;
    border-radius: 5px;
    cursor: pointer;
}


.app-wrapper .admiral-checkbox-wrapper label input:checked::before {
    border-color: #4974E1;
}

.app-wrapper .admiral-checkbox-wrapper label input::after {
    content: "";
    position: absolute;
    top: 11.5px;
    left: 7px;
    width: 0px;
    height: 0px;
    border: 0px solid transparent;
    transform: rotate(45deg);
    cursor: pointer;

    transition: .3s;
}

.app-wrapper .admiral-checkbox-wrapper label input:checked::after {
    top: 3.5px;
    left: -19px;
    width: 3px;
    height: 7px;
    border-right: 2px solid #4974E1;
    border-bottom: 2px solid #4974E1;
}

.app-wrapper .admiral-checkbox-wrapper label {
    /* color: #212121; */
}






input[type="checkbox"] {
    /* width: 40px; */
}

.vert-align {
    display: flex;
    align-items: center;
}

.admiral-tabs {
    display: flex;
    list-style: none;
}

.admiral-tabs > *:not(:last-child) {
    margin-right: 12px;
}

.tabs-wrapper {
    margin-top: 20px;
}

.admiral-tabs li a {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.03em;
    color: #99A6B6;
    padding: 10px 24px;
    border: 1px solid #E8EBF0;
    border-radius: 12px;
    display: inline-block;

    transition: .2s;
}

.admiral-tabs li a:hover {
    color: #1D1D1D;
    border-color: #1D1D1D;
}

.admiral-tabs li.uk-active a {
    background: #4974E1;
    border-color: #4974E1;
    color: #fff;
}

.form-group label {
    display: block;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: #99A6B6;
    margin-bottom: 12px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: #F9F9F9;
    border: 1px solid #E8EBF0;
    padding: 14px 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.03em;
    color: #99A6B6;
    border-radius: 12px;
    outline: none;

    transition: border-color .3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #999;
}

.form-group.has-success input,
.form-group.has-success textarea,
.form-group.has-success select {
    border-color: #00ca00;
    color: #00ca00;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #FF6C6C;
    color: #FF6C6C;
}

.form-group textarea {
    width: 100%;
    background: #F9F9F9;
    border: 1px solid #E8EBF0;
    padding: 14px 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.03em;
    color: #99A6B6;
    border-radius: 12px;
    outline: none;
    font-family: "E-Ukraine";
    max-width: 100%;
    min-width: 100%;

    transition: border-color .3s;
}

.form-group.has-error .help-block  {
    color: #FF6C6C;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.03em;
    margin-top: 8px;
}

.pagination {
    display: flex;
    list-style: none;
    margin-top: 30px;
    float: left;
}

.pagination li:not(:last-child) {
    margin-right: 4px;
}

.pagination li.disabled {
    cursor: not-allowed;
}

.pagination li a,
.pagination li span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1D1D1D;
    border: 1px solid #E8EBF0;
    border-radius: 9px;
    background: #FFFFFF;
    width: 32px;
    height: 32px;
    
    transition: .2s;
}

.pagination li.active a,
.pagination li a:hover {
    background: #4974E1;
    color: #fff;
}

.filter-container {
    height: 0;
    overflow: hidden;
    margin-bottom: 0px;

    transition: .3s;
    
}

.filter-container.active {
    margin-bottom: 20px;
}

.filter-container .filter-inner {
    height: 400px;
    background: #eee;
}

.toggle-filter.active {
    background: var(--primary-color);
}

.toggle-filter.active img {
    filter: brightness(0) invert(1);
}

.admiral-notification {
    position: absolute;
    top: 10px;
    background: #4DC989;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 11px 35px;
    color: #fff;
    z-index: 10;
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
    line-height: 32px;
    color: #FFFFFF;
    left: calc(50% + var(--sidebar-width)/2);
    
    transform: translate(-50%, -50px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.admiral-notification.centered {
    left: 50%;
}

.admiral-notification.error {
    background: #FF6C6C;
}

.admiral-notification.active {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: all;
}

.admiral-notification .close-button {
    margin-left: 20px;
    background: rgba(255,255,255,0.25);
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;

    transition: .3s;
}

.admiral-notification .close-button:hover {
    transform: rotate(90deg);
}

.uk-accordion-title {
    display: block;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: #212121;
    overflow: hidden;

    transition: .2s;
}

.uk-accordion li {
    background: var(--main-bg-color);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.14);
    border-radius: 18px;
    overflow: hidden;
}

.uk-accordion-title {
    display: block;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #212121;
    overflow: hidden;

    transition: .2s;
    padding: 16px 32px;
    /* background: #f5f5f5; */
}

.uk-accordion-content {
    padding: 20px 32px 32px;
    background: #fff;
    margin-top: 0px;
}





/* LOGIN PAGE START */

.login-page-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #F8F9FD;
}

.login-page-wrapper .login-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #1D1D1D;
    padding: 0 10% 32px;
}


.login-page-wrapper .login-card {
    max-width: 580px;
    padding: 60px 76px;
    background: #FFFFFF;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
}

.login-page-wrapper .form-group label {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.03em;
    color: #1D1D1D;
}

.admiral-button.login-button {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
}



/* LOGIN PAGE END */

.app-wrapper {
    position: relative;
}

.app_header {
    height: var(--header-height);
    padding-left: var(--sidebar-width);
    padding-right: 36px;

    display: flex;
    justify-content: space-between;
    
}

.app_header .menu-wrapper {
    padding-left: 35px;
    
}

.app_header .menu-wrapper ul {
    list-style: none;
    display: flex;
    height: 100%;
}

.app_header .menu-wrapper ul li {
    position: relative;
}

.app_header .menu-wrapper ul li:not(:last-child) {
    margin-right: 30px;
}

.app_header .menu-wrapper ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;

    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(50%, -30%);
}

.app_header .menu-wrapper ul li a {
    padding: 0 10px;
    color: #212121;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.app_header .menu-wrapper ul li a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
    width: 100%;
    height: 200%;
    transition: .3s;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.app_header .menu-wrapper ul li a:hover::before {
    transform: translate(-50%, -90%);
}

.app_header .personal-wrapper {
    display: flex;
    height: 100%;
}

.app_header .personal-wrapper .personal-item {
    border-left: 1px solid #E8EBF0;
    min-width: 74px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.app_header .personal-wrapper .personal-item.clickable {
    cursor: pointer;
}

.app_header .personal-wrapper .personal-item:not(.clickable) {
    overflow: hidden;
}

.app_header .personal-wrapper .personal-item:not(.clickable)::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    width: 0px;
    height: 0px;
    border-radius: 50%;
    z-index: -1;

    transition: .3s;
}

.app_header .personal-wrapper .personal-item:not(.clickable) > img {
    z-index: 1;
    position: relative;
    transition: .2s;
}

.app_header .personal-wrapper .personal-item:not(.clickable):hover > img {
    filter: brightness(0) invert(1);
}


.app_header .personal-wrapper .personal-item:not(.clickable):hover::before {
    width: 150%;
    height: 150%;
    z-index: 0;
}

.app_header .personal-wrapper .personal-item:last-child {
    padding-right: 0px;
}

.app_header .personal-wrapper .personal-item img.small-avatar {
    /* background: #C4C4C4; */
    border-radius: 10px;
    width: 40px;
    height: 40px;
}
.app_header .personal-wrapper .personal-item .dropdown-button {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app_header .personal-wrapper .personal-item .dropdown-activator {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.personal-dropdown {
    margin-top: 20px;
    width: 320px;
    background: #FFFFFF;
    border: 1px solid #EEF0F3;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 10px;

    /* opacity: 0;
    pointer-events: none;
    transition: .2s opacity; */
}

/* .personal-dropdown.active {
    opacity: 1;
    pointer-events: all;
} */

.personal-dropdown .dropdown-header {
    height: 200px;
    color: #fff;
    background: #4974E1;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.personal-dropdown .dropdown-header::before {
    content: "";
    position: absolute;
    top: 46px;
    left: -82%;
    width: 308px;
    height: 207px;
    background: #3967DC;
    border-radius: 28px;
    transform: rotate(15deg);
    transform-origin: 100% 0%;
}

.personal-dropdown .dropdown-header::after {
    content: "";
    position: absolute;
    bottom: 60px;
    right: -82%;
    width: 308px;
    height: 207px;
    background: #5A81E3;
    border-radius: 28px;
    transform: rotate(15deg);
    transform-origin: 0% 100%;
}


.app_header .personal-wrapper .personal-item .personal-dropdown .dropdown-header .header-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.personal-dropdown .dropdown-header .header-fio {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.personal-dropdown .dropdown-header .header-role {
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
}

.personal-dropdown .dropdown-body-1 {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    margin: 0 18px;
    position: relative;
    top: -24px;
}

.personal-dropdown .dropdown-body-1 .dropdown-body-1-item {
    padding: 20px;
    border-bottom: 1px solid #E8EBF0;
    display: flex;
    align-items: center;
}

.personal-dropdown .dropdown-body-1 .dropdown-body-1-item:last-child {
    border-bottom: none;
}

.personal-dropdown .dropdown-body-1 .dropdown-body-1-item img {
    margin-right: 12px;
}

.personal-dropdown .dropdown-body-1 .dropdown-body-1-item span {
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: #1D1D1D;
}


.personal-dropdown .dropdown-body-2 {
    padding: 10px 22px 28px;
}

.personal-dropdown .dropdown-body-2 .dropdown-body-2-item {
    margin-bottom: 25px;
}

.personal-dropdown .dropdown-body-2 .dropdown-body-2-item:last-child {
    margin-bottom: 0;
}

.personal-dropdown .dropdown-body-2 .dropdown-body-2-item a {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #121212;
    padding: 5px 10px;
    border-radius: 5px;

    transition: .2s;
}

.personal-dropdown .dropdown-body-2 .dropdown-body-2-item a.signout {
    color: #f0506e;
}

.personal-dropdown .dropdown-body-2 .dropdown-body-2-item a:hover {
    background: #f5f5f5;
}

.personal-dropdown .dropdown-body-2 .dropdown-body-2-item a.signout:hover {
    background: #fff0f0;
}

.app_sidebar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);

    background: var(--primary-color);
    border-radius: 0px 16px 16px 0px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
}

.app_sidebar .sidebar-header {
    height: var(--header-height);
    padding: 0px 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(232 235 240 / 0.15);
}

.app_sidebar .sidebar-header .logo-wrapper {
    margin-right: 12px;
}

.app_sidebar .sidebar-header .cn-wrapepr {
    color: var(--text-contrast);
}

.app_sidebar .sidebar-body {
    max-height: calc(100vh - var(--header-height));
    /* overflow: auto; */
    position: relative;
}

.app_sidebar .sidebar-body .simplebar-scrollbar:before {
    background: #fff;
}

.app_sidebar .sidebar-section {
    padding: 20px 0;
    border-bottom: 1px solid rgb(232 235 240 / 0.15);
}

.app_sidebar .sidebar-section > ul > li > a {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    color: var(--text-contrast);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    border-left: 3px solid transparent;
    position: relative;

    transition: .2s;
}

.app_sidebar .sidebar-section > ul > li > a:hover {
    border-color: #fff;
    background: rgba(0,0,0,0.1);
}

.app_sidebar .sidebar-section > ul > li > a > img {
    width: 15px;
    margin-right: 20px;
}

.app_sidebar .sidebar-section > ul > li > a > span.uk-icon:not(.expand-menu) {
    margin-right: 20px;
    width: 18px;
}

.app_sidebar .sidebar-section > ul li a span.expand-menu {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    padding: 6px;
    border-radius: 50%;

    transition: .2s;
}

.app_sidebar .sidebar-section ul li a span.expand-menu:hover {
    background: rgba(0,0,0,0.2);
}

.app_sidebar .sidebar-section ul li.uk-open a span.expand-menu {
    transform: translateY(-50%) rotate(-90deg);
}

.app_sidebar .sidebar-section ul.uk-nav-sub {
    position: relative;
    margin-left: 32px;
}

.app_sidebar .sidebar-section ul.uk-nav-sub::before {
    content: '';
    height: 100%;
    opacity: 1;
    width: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    /* border-radius: 50%; */
}

.app_sidebar .sidebar-section ul.uk-nav-sub li {
    margin: 5px 0;
}

.app_sidebar .sidebar-section ul.uk-nav-sub li a {
    padding: 7px 14px;
    font-size: 13px;
    color: #fff;
    border-radius: 5px;
    display: inline-block;

    transition: .2s;
}

.app_sidebar .sidebar-section ul.uk-nav-sub li a:hover {
    background-color: rgba(0,0,0,0.1);
}

/* .app_sidebar .sidebar-section ul > li > a {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    color: var(--text-contrast);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.02em;
    border-left: 3px solid transparent;
    position: relative;

    transition: .2s;
} */





.main-breadcrumb-wrapper {
    margin-bottom: 24px;
}

.main-breadcrumb-wrapper ul {
    list-style: none;
    display: flex;
}

.main-breadcrumb-wrapper ul li {
    display: flex;
    align-items: center;
}

.main-breadcrumb-wrapper ul li:not(:last-child)::after {
    content: "/";
    display: block;
    margin: 0 16px;
    font-size: 12px;
}

.main-breadcrumb-wrapper ul li a {
    list-style: none;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: #6F7F8F;
    opacity: 0.5;
}

.main-breadcrumb-wrapper ul li {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: #1D1D1D;
}








.app_main {
    margin-left: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    padding: 35px;

    background: var(--main-bg-color);
}

.main-content-card {
    background: #FFFFFF;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 30px 36px;
    max-height: calc(100vh - var(--header-height) - 110px);
}

.main-content-card .simplebar-scrollbar.simplebar-visible:before {
    opacity: 0.2;
    transition: opacity 0s linear;
  }

.main-content-card .main-card-header {
    padding-bottom: 24px;
    border-bottom: 1px solid #E8EBF0;

    display: flex;
    justify-content: space-between;
}

.main-content-card h1 {
    margin: 0;
    font-weight: 500;
    font-size: 32px;
    line-height: 45px;
    letter-spacing: -0.03em;
    color: #1D1D1D;
    font-family: 'E-Ukraine-Head';
}

.main-content-card .card-header-actions {
    display: flex;
    align-items: center;
}

.card-header-actions .button-placeholder {
    margin-right: 16px;
}

.main-content-card .bottom-items-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admiral-table {
    width: 100%;
    border-collapse: separate; 
    border-spacing: 5px;
}

.admiral-table tbody tr {
    background: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0px 0px 1px 1px rgb(245 245 245);
    border-radius: 12px;
    transition: .2s;
}

.admiral-table tbody tr:hover {
    box-shadow: 0px 0px 11px 1px rgb(239 239 239);
}

.admiral-table tr th, 
.admiral-table tr th a {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: #99A6B6 !important;
}

.admiral-table tr th a.asc,
.admiral-table tr th a.desc {
    color: #212121 !important;
    font-weight: 500;
}

.admiral-table tr th a[data-sort]::before {
    content: url('/icons/sort_arrows.svg');
    margin-right: 4px;
}

.admiral-table tr th a[data-sort].asc::before {
    content: url('/icons/sort_asc.svg');
    margin-right: 4px;
}

.admiral-table tr th a[data-sort].desc::before {
    content: url('/icons/sort_desc.svg');
    margin-right: 4px;
}

.admiral-table tr td, 
.admiral-table tr th {
    padding: 12px 24px;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: #1D1D1D;
}

.admiral-table tr td {
    font-weight: 300;
}

.admiral-table tr th:last-child {
    text-align: right;
}


.admiral-table .td-avatar-image {
    height: 28px;
    width: 28px;
    margin-right: 10px;
    border-radius: 8px;
}

.actions-top-layer {
    width: 136px;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.actions-wrapper {
    height: 36px;
    width: min-content;
    background: #F8F9FD;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    border-radius: 18px;
}

.action-expand-button {
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    border-radius: 50%;
}

.action-expand-button:hover {
    background: rgb(80 118 156 / 10%);
}

.actions-wrapper .action-expand-button .action-expand-button-icon {
    display: flex;
    transition: .2s;
}

.actions-wrapper.active .action-expand-button .action-expand-button-icon {
    transform: rotate(90deg);
    opacity: 0.6;
}

.actions-wrapper .action-expand-button .action-expand-button-icon span {
    height: 4px;
    width: 4px;
    margin-right: 3px;
    background: #1d1d1d;
    border-radius: 50%;
}

.actions-wrapper .action-expand-button .action-expand-button-icon span:last-child {
    margin-right: 0;
}

.actions-wrapper .actions-wrapper-inner {
    padding: 0px;
    height: 100%;
    display: flex;
    width: 0;
    overflow: hidden;

    opacity: 0;
    pointer-events: none;
    transition: 0.1s;
}

.actions-wrapper.active .actions-wrapper-inner {
    padding: 4px;
    /* width: 100px; */
    width: calc(100% - 36px);

    transition: .2s;
    opacity: 1;
    pointer-events: all;
}

.actions-wrapper .actions-wrapper-inner a {
    transition: .2s;
    width: 28px;
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.6;
}

.actions-wrapper .actions-wrapper-inner a:hover {
    background: rgb(80 118 156 / 10%);
    opacity: 1;
}

.actions-wrapper .actions-wrapper-inner a:last-child {
    margin-right: 0;
}


/* FILE UPLOAD START */

.super-file-input-wrapper .form-group {
    display: flex;
    flex-wrap: wrap;
}

.super-file-input-wrapper .form-group .images-container + label {
    position: relative;
    margin-left: 32px;
    background: var(--primary-color);
    color: #fff;
    height: max-content;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.03em;
}

.super-file-input-wrapper .form-group input[type="file"] {
    display: none;
}

.images-container {
    background: #e9ecf7;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    min-height: 200px;
    transition: .3s;
    padding: 5px;
}

.images-container:empty {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.images-container:empty::before {
    content: url('/icons/image_placeholder.svg');
    position: relative;
    top: 0;
    transition: .2s;
}

.images-container:empty::after {
    content: 'Перетягніть файли сюди';
    color: #99a6b6;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    padding: 0 30px;
    text-align: center;
    margin-top: 16px;
    transition: .2s;
}


.images-container:not(.multiple) {
    width: 214px;
}

.images-container.highlight:empty::before {
    transform: scale(2);
    top: 30px;
}

.images-container.highlight:empty::after {
    opacity: 0;
}

.images-container .wrapper {
    width: 200px;
    height: auto;
    background: #fff;
    border-radius: 14px;
    margin: 5px;
}

.images-container .wrapper.uk-sortable-placeholder {
    opacity: 0.5 !important;
}

.images-container .wrapper .controlls-wrapper {
    padding: 5px 5px;
    /* background: #ececec; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1a1a1a;
}

.images-container .wrapper .controlls-wrapper > span {
    cursor: pointer;
    padding: 7px;
    border-radius: 50%;
    transition: .2s;
}

.images-container .wrapper .controlls-wrapper > span:hover {
    background: rgba(0,0,0,0.1);
}

.images-container .wrapper .image-wrapper {
    padding: 0 10px 10px;
    height: calc(100% - 40px);
    display: flex;
    align-items: center;
}

.images-container canvas {
    width: 100%;
}

.sort-handle {
    cursor: move;
}

.image-edit-popup-styles .thumbnails {
    width: 10%;
    margin: 0 30px 0 0;
    padding: 0;
    list-style: none;
    height: calc(100vh - 365px);
    overflow: auto;
}

.image-edit-popup-styles .thumbnails li {
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
}

.image-edit-popup-styles .thumbnails li.uk-active {
    border-color: #1e87f0;
}

.image-edit-popup-styles .thumbnails .thumbnail-item {
    min-height: 100px;
    display: block;
}

.image-edit-popup-styles .thumbnails li:not(:last-child) .thumbnail-item {
    margin-bottom: 10px;
}

.image-edit-popup-styles .thumbnails .thumbnail-item canvas {
    
}

.image-edit-popup-styles .modal-switcher {
    width: calc(90% - 30px);
}

.image-edit-popup-styles .modal-image-content {
    width: calc(85% - 30px);
    height: calc(100vh - 365px);
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: scroll;
    position: relative;
}

.image-edit-popup-styles .modal-image-content .popup-canvas-wrapper {
    position: absolute;
    left: 0;
    top: 0;
}

.image-edit-popup-styles .modal-image-content canvas {
    max-height: initial;
    max-width: initial;
}

.image-edit-popup-styles .modal-image-controlls {
    width: 15%;
}

.popup-canvas-wrapper .crop-mode-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,0);
    transition: .2s;
}

.popup-canvas-wrapper .crop-mode-layer.active {
    background: rgba(0,0,0,0.3);
}

.popup-canvas-wrapper .crop-mode-layer .crop-mode-layer-inner {
    position: absolute;
    pointer-events: none;
    border: 1px dashed white;
    background: rgb(255 255 255 / 0.2);
}

.popup-canvas-wrapper .crop-mode-layer .crop-mode-layer-inner.active {
    pointer-events: all;
}

.crop-controlls {
    position: absolute;
    bottom: 100%;
    padding: 5px 0;
    display: none;
}

.crop-mode-layer-inner.active .crop-controlls {
    display: flex;
}

.crop-controlls .crop-controll-item {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image-controlls .range-number {
    font-size: 12px;
    position: absolute;
    top: -12px;
    left: 56.25%;
}

.modal-image-controlls .range-hightlight {
    position: absolute;
    top: 13px;
    left: 0;
    height: 3px;
    width: 82px;
    background: #1e87f0;
}

.uk-modal-dialog {
    background: #FFFFFF;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 30px 36px;
}

.uk-modal-header {
    padding-bottom: 0 0 24px 0;
    border-bottom: 1px solid #E8EBF0;
    font-weight: 500;
    font-size: 32px;
    line-height: 45px;
    letter-spacing: -0.03em;
    color: #1D1D1D;
    font-family: 'E-Ukraine-Head';
}


.uk-modal-header {
    padding: 0 0 24px 0;
    border-bottom: 1px solid #E8EBF0;
    font-weight: 500;
    font-size: 32px;
    line-height: 45px;
    letter-spacing: -0.03em;
    color: #1D1D1D;
    font-family: 'E-Ukraine-Head';
}

.uk-modal-header h2 {
    font-size: inherit;
    font-weight: inherit;
}

.uk-modal-footer {
    padding: 24px 0 0 0;
}

/* FILE UPLOAD END */