img, svg {
    display: block;
}

.content {
    min-width: 0;
}

.control-panel-wrapper {
    flex-shrink: 0;
    flex-basis: 288px;
}

.control-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 288px;
    overflow-y: scroll;
}

.nav-main__list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-main__list--level-1 {
    padding: 0 4px;
}

.nav-main__item {
    display: flex;
    flex-direction: column;
}

.nav-main__link {
    display: flex;
    padding: 12px 16px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-radius: 4px;
    line-height: 1;
    color: var(--bs-body-color);;
    text-decoration: none;
    transition-property: border-left, background-color, color, box-shadow;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
    cursor: pointer;
}

.nav-main__link:hover {
    border-left: 4px solid rgba(var(--bs-primary-rgb), var(--bs-bg-opacity));
    background-color: var(--bs-primary-bg-subtle);
    color: var(--bs-primary-text-emphasis);
}

.bottom-control-wrapper {
    min-height: 56px;
}

.bottom-control {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 288px;
}

.max-width-1 {
    max-width: 320px;
}

.max-width-2 {
    max-width: 480px;
}

.max-width-3 {
    max-width: 640px;
}

.max-width-4 {
    max-width: 800px;
}

.max-width-5 {
    max-width: 960px;
}

.toastify{
    padding:16px 32px;
    display:inline-block;
    box-shadow: var(--bs-box-shadow);
    position:fixed;
    opacity:0;
    transition:all .3s cubic-bezier(.215, .61, .355, 1);
    border-radius:4px;
    cursor:pointer;
    text-decoration:none;
    max-width:calc(50% - 32px);
    z-index:2147483647
}

.toastify.on{
    opacity:1
}

.toast-close{
    background:0 0;
    border:0;
    color:var(--bs-primary-text-emphasis);
    cursor:pointer;
    font-family:inherit;
    font-size:1em;
    opacity:.4;
    padding:0 4px
}
.toastify-right{
    right:16px
}
.toastify-left{
    left:16px
}
.toastify-top{
    top:-160px
}
.toastify-bottom{
    bottom:-160px
}
.toastify-rounded{
    border-radius:32px
}
.toastify-avatar{
    width:1.5em;
    height:1.5em;
    margin:-8px 4px;
    border-radius:4px
}
.toastify-center{
    margin-left:auto;
    margin-right:auto;
    left:0;
    right:0;
    max-width:fit-content;
    max-width:-moz-fit-content
}
@media only screen and (max-width:320px){
    .toastify-left,.toastify-right{
        margin-left:auto;
        margin-right:auto;
        left:0;
        right:0;
        max-width:fit-content;
        max-width:-moz-fit-content
    }
}