* {
    outline: none;
    box-sizing: border-box;
}

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

:root {
    --theme-bg-color: rgba(16, 18, 27, 0.4);
    --border-color: rgba(113, 119, 144, 0.25);
    --theme-color: #f9fafb;
    --inactive-color: rgb(255, 255, 255);
    --body-font: "Poppins", sans-serif;
    --hover-menu-bg: rgba(12, 15, 25, 0.30);
    --content-title-color: #999ba5;
    --content-bg: rgba(146, 151, 179, 0.13);
    --button-inactive: rgba(249, 250, 251, 0.55);
    --dropdown-bg: #21242d;
    --dropdown-hover: rgb(42 46 60);
    --popup-bg: rgb(22 25 37);
    --search-bg: #14162b;
    --overlay-bg: rgba(36, 39, 59, 0.3);
    --scrollbar-bg: rgba(1, 2, 3, 0.4);
}


html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--body-font);
    /*background-image: url(https://agat-npo.ru/upload/add/uploaded_images/background.png);*/
    background-color: #314367f0;
    /*background-size: cover;*/
    /*background-position: center;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 2em;
}

/*@media screen and (max-width: 480px) {*/
/*    body {*/
/*        padding: 0.8em;*/
/*    }*/
/*}*/

.video-bg {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img {
    max-width: 100%;
}

.app {
    background-color: var(--theme-bg-color);
    max-width: 1450px;
    max-height: 860px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 15px;
    font-weight: 500;
    min-width: calc(82vw);
}

.app-authorization {
    display: flex;
    justify-content: center;
    background-color: var(--theme-bg-color);
    max-width: 300px;
    max-height: 360px;
    height: 90vh;
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
    backdrop-filter: blur(20px);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin: 5vh;
}

.wrapper-authorization {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    overflow: hidden;
}

.main-container-authorization {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
}

.content-wrapper-authorization {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--theme-color);
    padding: 20px 40px;
    height: 100%;
    overflow: auto;
    background-color: var(--theme-bg-color);
}

.bar-authorization-login {
    font-family: var(--body-font);
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    height: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 5px 5px 0 0;
    border: 1px solid var(--border-color);
    border-bottom: none;
    background-color: var(--theme-bg-color);
    padding: 10px;
}

.bar-authorization-password {
    font-family: var(--body-font);
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    height: 40px;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border-color);
    border-radius: 0 0 5px 5px;
    background-color: var(--theme-bg-color);
    padding: 10px;
}

.logo-authorization {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.logo-button {
    width: 100%;
    background-color: #3a6df0;
    border: none;
    padding: 8px 26px;
    color: #fff;
    border-radius: 5px;
    margin-top: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
    text-decoration: none;
}

.logo-button:not(.open):hover {
    background: #1e59f1;
}

.errorlist {
    width: 100%;
    text-decoration: none;
    list-style-type: none;
    font-size: 13px;
    text-align: center;
    padding: 0;
}

::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-bg);
    border-radius: 10px;
}

.header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 58px;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 0 10px;
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0 16px;
    }
}

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu a {
    padding: 20px 30px;
    text-decoration: none;
    color: var(--inactive-color);
    border-bottom: 2px solid transparent;
}

@media screen and (max-width: 880px) {
    .header-menu a:not(.main-header-link) {
        display: none;
    }
}

.header-menu a.is-active, .header-menu a:hover {
    color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.menu-circle {
    width: 26px;
    height: 26px;
    margin-right: 30px;
    flex-shrink: 0;
}

@media screen and (max-width: 945px) {
    .menu-circle {
        display: none;
    }
}

.search-bar {
    height: 40px;
    display: flex;
    width: 100%;
    max-width: 400px;
    padding-left: 16px;
    border-radius: 4px;
}

.search-bar input {
    width: 100%;
    height: 100%;
    border: none;
    background-color: var(--search-bg);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    padding: 0 20px 0 40px;
    box-shadow: 0 0 0 2px #000;
    background-image: url("data:image/svg+xml; charset=UTF-8,%3csvg xmlns= 'http://www.w3.org/2000/svg' viewBox= '0 0 56.966 56.966' fill= '%23717790c7' %3e%3cpath d= 'M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z' /%3e%3c/svg%3e ");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: 16px 48%;
    color: var(--theme-color);
}

.search-bar input::placeholder {
    font-family: var(--body-font);
    color: var(--inactive-color);
    font-size: 15px;
    font-weight: 500;
}

.header-profile {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.wide .header-menu, .wide .header-profile {
    display: none;
}

.wide .search-bar {
    max-width: 600px;
    margin: auto;
    transition: 0.4s;
    box-shadow: 0 0 0 1px var(--border-color);
    padding-left: 0;
}

.wide .menu-circle {
    margin-right: 0;
}

.wrapper {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

.main-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    color: var(--theme-color);
    padding: 20px 40px;
    height: 100%;
    overflow: auto;
    background-color: var(--theme-bg-color);
}

@media screen and (max-width: 700px) {
    .content-wrapper {
        padding: 10px;
    }
}

.content-wrapper.overlay {
    pointer-events: none;
    background-color: var(--overlay-bg);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    box-sizing: border-box;
    color: var(--content-title-color);
}

.breadcrumb .breadcrumb-link {
    color: var(--content-title-color);
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/");
}

.create-button {
    background-color: #3a6df0;
    border: none;
    padding: 8px 26px;
    color: #fff;
    border-radius: 20px;
    margin-top: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 13px;
}

.create-button:not(.open):hover {
    background: #1e59f1;
}

.form_delete {
    display: none;
}

.span_form_delete {
    text-decoration: none;
    color: var(--theme-color);
    font-size: 12px;
    cursor: pointer;
}

.content-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.content-section-title {
    color: var(--content-title-color);
    margin-bottom: 14px;
}

.content-section ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    background-color: var(--content-bg);
    padding-left: 0;
    margin: 0;
    border-radius: 14px;
    border: 1px solid var(--theme-bg-color);
    cursor: text;
}

.content-section-profile ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 0;
    margin: 0;
    border-radius: 14px;
    border: 1px solid var(--theme-bg-color);
    cursor: pointer;
}

.content-section ul li {
    list-style: none;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    font-size: 16px;
    width: 100%;
    height: 100%;
    /*white-space: nowrap;*/
    word-wrap: normal;
}

.content-section-profile ul li {
    list-style: none;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 100%;
    height: 100%;
    white-space: nowrap;
}

.content-section ul li:hover {
    background-color: var(--theme-bg-color);
}

.content-section-profile ul li:hover {
    background-color: var(--theme-bg-color);
}

.content-section ul li:hover:first-child {
    border-radius: 13px 13px 0 0;
}

.content-section-profile ul li:hover:first-child {
    border-radius: 13px 13px 0 0;
}

.content-section ul li:hover:last-child {
    border-radius: 0 0 13px 13px;
}

.content-section-profile ul li:hover:last-child {
    border-radius: 0 0 13px 13px;
}

.content-section ul li + li {
    border-top: 1px solid var(--border-color);
}

.content-section-profile ul li + li {
    border-top: 1px solid var(--border-color);
}

.products {
    display: flex;
    align-items: center;
}

.category {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: 150px;
}

@media screen and (max-width: 700px) {
    .category {
        display: none;
    }
}

.status {
    display: flex;
    width: 300px;
    font-size: 15px;
    position: relative;
}

@media screen and (max-width: 700px) {
    .status {
        display: none;
    }
}

.date {
    display: flex;
    width: 140px;
    font-size: 15px;
    position: relative;
}

@media screen and (max-width: 700px) {
    .date {
        display: none;
    }
}

.status-circle {
    width: 6px;
    height: 6px;
    background-color: #396df0;
    position: absolute;
    border-radius: 50%;
    top: 4px;
    left: -20px;
}

.status-circle.green {
    background-color: #3bf083;
}

.status-circle.white {
    background-color: #ffffff;
}

.status-fixed {
    border: none;
    white-space: nowrap;
    font-size: 15px;
    margin-top: 0;
    padding: 6px 24px;
    background: none;
    color: var(--button-inactive);

}

@media screen and (max-width: 450px) {
    .status-fixed {
        padding: 6px 14px;
    }
}

.menu {
    width: 5px;
    height: 5px;
    background-color: var(--button-inactive);
    border-radius: 50%;
    box-shadow: 7px 0 0 0 var(--button-inactive), 14px 0 0 0 var(--button-inactive);
    margin: 0 12px;
}

@media screen and (max-width: 415px) {
    .adobe-product .menu {
        display: none;
    }
}

.dropdown {
    position: relative;
    height: 53px;
    width: 40px;
    top: -24px;
    display: flex;
    left: -5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.dropdown ul {
    position: absolute;
    background: var(--dropdown-bg);
    height: 110px;
    width: 120px;
    right: 0;
    top: 20px;
    pointer-events: none;
    opacity: 0;
    transform: translatey(10px);
}

.dropdown ul li a {
    text-decoration: none;
    color: var(--theme-color);
    font-size: 12px;
}

.dropdown.is-active ul {
    opacity: 1;
    pointer-events: all;
    transform: translatey(25px);
}

.dropdown.is-active ul li:hover {
    background-color: var(--dropdown-hover);
}

.profile {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 22px;
    cursor: pointer;
    padding: 0;
}

.profile ul {
    position: absolute;
    background: var(--dropdown-bg);
    height: 110px;
    width: 120px;
    right: 0;
    top: 20px;
    pointer-events: none;
    opacity: 0;
    transform: translatey(10px);
}

.profile ul li a {
    text-decoration: none;
    color: var(--theme-color);
    font-size: 12px;
}

.profile.is-active ul {
    opacity: 1;
    pointer-events: all;
    transform: translatey(40px);
}

.profile.is-active ul li:hover {
    background-color: var(--dropdown-hover);
}

.profile-avatar {
    border-radius: 50%;
}

.button-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

@media screen and (max-width: 480px) {
    .button-wrapper {
        width: auto;
    }
}

::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-bg);
    border-radius: 10px;
}

.left-side {
    flex-basis: 270px;
    border-right: 1px solid var(--border-color);
    padding: 26px;
    overflow: auto;
    flex-shrink: 0;
}

@media screen and (max-width: 945px) {
    .left-side {
        display: none;
    }
}

.side-wrapper + .side-wrapper {
    margin-top: 20px;
}

.side-title {
    color: var(--inactive-color);
    margin-bottom: 14px;
}

.side-menu {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.side-menu a {
    text-decoration: none;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;
}

.side-menu a:hover {
    background-color: var(--hover-menu-bg);
}

.side-menu svg {
    width: 16px;
    margin-right: 8px;
}

.slide-under_subcategory a {
    color: var(--button-inactive);
}

.status-button {
    font-size: 15px;
    margin-top: 0;
    padding: 6px 24px;
    border-radius: 20px;
}

@media screen and (max-width: 390px) {
    .status-button {
        padding: 6px 14px;
    }
}

.status-button.open {
    background: none;
    color: var(--button-inactive);
    border: 1px solid var(--button-inactive);
}

.content-section ul svg {
    width: 28px;
    border-radius: 6px;
    margin-right: 16px;
    flex-shrink: 0;
}

svg:not(:root) {
    overflow: hidden;
}

.notification-number {
    position: relative;
    margin-left: auto;
    background-color: #3a6df0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    right: -6px;
}

.link-products {
    color: white;
    list-style: none;
    text-decoration: underline #FF3028;
    font-size: 16px;
}

.apps-card {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

.app-card {
    display: flex;
    flex-direction: column;
    width: calc(33.3% - 20px);
    font-size: 16px;
    background-color: var(--content-bg);
    border-radius: 14px;
    border: 1px solid var(--theme-bg-color);
    padding: 20px;
    margin: 10px;
    /*cursor: pointer;*/
    transition: 0.3s ease;
}

.app-card:hover {
    transform: scale(1.02);
    background-color: var(--theme-bg-color);
}

.app-card svg {
    width: 28px;
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
}

.app-card span {
    display: flex;
    align-items: center;
}

.app-card__subtext {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
    margin-top: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.app-card-buttons {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-top: 16px;
}

@media screen and (max-width: 1110px) {
    .app-card {
        width: calc(50% - 35px);
    }
}

@media screen and (max-width: 565px) {
    .app-card {
        width: calc(100% - 35px);
    }
}