/*

* Override Pages default styles or create your own styles here

*/
/* bootstrap override */

p.paragraph {
    font-size: 14px;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background: #f9f9fa;
    color: #444;
    cursor: not-allowed;
    line-height: 1.35;
    font-family: monospace;
}

.desc-link {
    display: block;
    font-size: 9px;
    color: #777;
    padding: 0;
    margin: 0 0 10px 0;
    line-height: 9px;
}

.btn-sm .fa {
    font-size: 12px;
}

.rounded {
    border-radius: .25rem !important;
}

.rounded-3 {
    border-radius: .3rem !important;
}

.table thead.table-dark tr th {
    color: #fff;
}

.datepicker table tbody tr:first-child td.day {
    padding-top: 5px;
}

.datepicker table tbody tr:first-child td.day:hover:before {
    top: 3px;
}

.list-group-horizontal {
  display: flex;
  flex-direction: row;
}

.list-group-horizontal .list-group-item {
  border-radius: 0.25rem !important;
  margin-right: -1px;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.list-group-horizontal .list-group-item:last-child {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
  margin-right: 0;
}

.page-container {
    height: auto;
    max-height: 100%;
}

/* === MARGIN === */

.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-negative-5 { margin-bottom: -3rem !important;}

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

/* === PADDING === */

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.ps-0 { padding-left: 0 !important; }
.ps-1 { padding-left: 0.25rem !important; }
.ps-2 { padding-left: 0.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-5 { padding-left: 3rem !important; }

.pe-0 { padding-right: 0 !important; }
.pe-1 { padding-right: 0.25rem !important; }
.pe-2 { padding-right: 0.5rem !important; }
.pe-3 { padding-right: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }
.pe-5 { padding-right: 3rem !important; }

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-20 {
    padding: 20px;
}

.line-height-standard {
    line-height: 1.42857143;
}

.form-control-sm {
    font-size: .85rem !important;
}

.table tbody tr td {
    vertical-align: middle;
}

.table-warning, .table-warning>td, .table-warning>th {
    background-color: #ffeeba !important;
}

.text-underline-dashed {
    text-decoration: none;
    border-bottom: dashed 1px #adaeb0;
    padding-bottom: 1px;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control-plaintext,
.input-group-sm > .custom-select,
.input-group-sm > .custom-file {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .custom-file .custom-file-label,
.input-group-sm > .custom-file .custom-file-label::after {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
}

.input-group-sm > .custom-file .custom-file-label::after {
  height: calc(1.5em + 0.5rem);
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  font-size: 0.765625rem;
}

/* Для input-group внутри input-group-sm */
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
}

/* Дополнительные стили для кнопок в .input-group-sm */
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.765625rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}


.input-group-sm .btn {
  line-height: 1.5;
}

.input-group-sm .btn i {
  font-size: 0.765625rem;
}

/* Если нужны дополнительные отступы */
.input-group-sm .input-group-append .btn,
.input-group-sm .input-group-prepend .btn {
  margin-left: -1px;
}

.input-group-sm > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-sm > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group-sm > .input-group-append:not(:last-child) > .btn,
.input-group-sm > .input-group-append:not(:last-child) > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group-sm > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group-sm > .input-group-prepend:not(:first-child) > .btn,
.input-group-sm > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.gap-1 {
    gap: 0.5rem !important;
}

.gap-2 {
    gap: 0.75rem !important;
}

.gap-3 {
    gap: 1rem !important;
}


.card {
    border-radius: 5px;
}

.card .card-header.bg-success,
.card .card-header.bg-warning,
.card .card-header.bg-danger,
.card .card-header.bg-secondary {
    padding: 10px 20px 7px 20px;
}

.card .card-title a {
    color: #353f4d;
    opacity: 1;
}

.cs-nav-partial-menu .btn {
    min-width: auto;
    padding: 0.5rem 1rem;
}

.f-24 {
    font-size: 24px;
}

.d-none-normal {
    display: none;
}

html .ready-script  /* override x.xhtml.ru style */ 
{
    scrollbar-width: thin;
    scrollbar-color: #757575 transparent;
}

.menu-icon {
    list-style-type: none;
    padding-left: 0;
}

.menu-icon ._link {
    padding-left: 5px;
}

.menu-icon li {
    margin: 0 0 10px 0;
    padding: 0px 5px;
}

.menu-icon li.active {
    background: #eaeaec;
    border-radius: 10px;
    padding: 5px 5px;
}

.head-menu {
    text-transform: uppercase;
    margin: 25px 0 15px 0;
    color: #888;
    font-weight: 300;
}

.report-table .progress-bar {
    overflow: visible;
}

.item-add {
    float: right;
}

.item-add a svg {
    fill: #999;
}

/* .card a, */
.copyright a {
    color: #3b4e56;
}

.card.card-default {
    border: solid 1px #efefef;
    border-radius: 7px;
    padding: 20px;
}

.main-menu {
    padding-left: 32px;
    min-width: 240px;
    margin-right: 15px;
}

.main-menu h5 {
    color: #676767;
}

#rootwizard .card a.btn {
    color: #fff;
}

.nav-tabs-linetriangle > li > a.active:after {
    border-top-color: #ffffff;
}

.badge.normal-padding {
    padding: .25em .4em .25em !important;
}

.badge.bg-success {
    background-color: #28a745 !important;
    color: #fff;
}

.badge.bg-primary,
.badge.bg-secondary,
.badge.bg-danger {
    color: #fff;
}

.badge-scene {
    background-color: #1d1d1d;
    color: #fff;
    margin: 0 0 0 5px;
    font-size: 10px;
    opacity: 0.4;
}

.scene-number-sel {
    opacity: 1 !important;
}

.card.card-default > .card-header {
    border-radius: 7px;
}

.badge.bg-a-one {
    background-color: #a9dca5;
}

.badge.bg-a-two {
    background-color: #e5a795;
}

.badge.bg-a-three {
    background-color: #a2b2ff;
}

.badge.badge-a-five {
    background-color: #ffb3ba;
}

.big-text {
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
}

.card a:hover,
.copyright a:hover {
    color: #0056b3;
}

.ready-script::-webkit-scrollbar,
html .ready-script::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.ready-script::-webkit-scrollbar-track,
html .ready-script::-webkit-scrollbar-track {
  background: orange;
}
.ready-script::-webkit-scrollbar-thumb,
html .ready-script::-webkit-scrollbar-thumb {
  background-color: #757575;
  border-radius: 5px;
  border: 3px solid #f3f3f4;
}



/* Стиль для пунктов с истекшей лицензией */
.menu-icon li.license-expired {
    position: relative;
    opacity: 0.42;
}

/* Иконка замка через псевдоэлемент */
.menu-icon li.license-expired:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='%23676767'%3E%3Cpath d='M263.72-96Q234-96 213-117.15T192-168v-384q0-29.7 21.15-50.85Q234.3-624 264-624h24v-96q0-79.68 56.23-135.84 56.22-56.16 136-56.16Q560-912 616-855.84q56 56.16 56 135.84v96h24q29.7 0 50.85 21.15Q768-581.7 768-552v384q0 29.7-21.16 50.85Q725.68-96 695.96-96H263.72Zm.28-72h432v-384H264v384Zm216.21-120Q510-288 531-309.21t21-51Q552-390 530.79-411t-51-21Q450-432 429-410.79t-21 51Q408-330 429.21-309t51 21ZM360-624h240v-96q0-50-35-85t-85-35q-50 0-85 35t-35 85v96Zm-96 456v-384 384Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    float: right;
}

.menu-icon li.license-expired .item-add {
    display: none;
}


/* Исключение для пункта "Дашборд" */
.menu-icon li:first-child.license-expired a:after {
    display: none;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(../../../core/fonts/material/font.woff2) format('woff2');
}
  
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.card .material-symbols-outlined {
    vertical-align: middle;
    font-size: 18px;
    margin: 0 10px 1px 0;
}

.card .editable .material-symbols-outlined {
    font-size: 16px;
    margin: 3px 10px 0px 0;
}

.btn .material-symbols-outlined {
    font-size: 20px;
    margin: 0 3px;
    display: inline-flex;
    position: relative;
    left: 0px;
    top: 0px;
    align-items: center;
    justify-content: center;
}

.timeline-horizontal .material-symbols-outlined {
    color: #676767;
    font-size: 24px !important;
    vertical-align: bottom;
}

body .btn-approve,
body .btn-approve:focus {
    color: #fff;
    background-color: #4CAF50;
    border: 1px solid #4CAF50;
    border-bottom: 1px solid rgba(6, 18, 35, 0.22);
}

body .btn-approve.hover:not(.active),
body .btn-approve:hover:not(.active),
body .btn-approve .show .dropdown-toggle.btn-approve {
    background-color: #5dce62;
    color: #fff;
    border: 1px solid #4caf507a;
    border-bottom: 1px solid rgb(9 35 6 / 22%);
}

body .page-sidebar .sidebar-menu .menu-items li > a {
    width: 78%;
}

.sidebar-menu {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    height: 100vh;
    margin-bottom: 90px;
    z-index: 2;
}

.page-sidebar .sidebar-menu .menu-items > li ul.sub-menu > li {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

body.menu-pin .page-container .page-content-wrapper .footer {
    left: 0
}

.page-sidebar .sidebar-menu .menu-items > li ul.sub-menu > li .icon-thumbnail {
    padding: 2px 0 0 0;
}

.home-logo {
    font-weight: 900;
    position: relative;
    left: -18px;
    text-transform: uppercase;
}

.m-b-10-i {
    margin-bottom: 10px !important;
}

.m-b-20-i {
    margin-bottom: 20px !important;
}

.dropdown-menu > li, .dropdown-menu > .dropdown-item {
    text-overflow: ellipsis;
    overflow: hidden;
}

.bg-info-lighter {
    background-color: #dde3ea !important;
    color: #353f4d;
}

.glyphicon-ok:before {
    content: "\f00c";
}
.glyphicon-remove:before {
    content: "\f00d";
}
.glyphicon {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scene-list .scene-timepicker {
    width: 100px !important;
}

.w-110px {
    width: 110px;
}

.w-100px {
    width: 100px;
}

.w-20 {
    width: 20%;
}

.w-15 {
    width: 15%;
}

.w-10 {
    width: 10%;
}

.row-vertical-align-middle {
    display: flex;
    align-items: center;
}

.tooltip-inner {
    background-color: var(--success);
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: var(--success);
}

.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
    border-left-color: var(--success);
}

.tooltip.show {
    opacity: 1;
}

.disable-if-no-project-class {
    opacity: .3;
    pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
            supported by Chrome, Edge, Opera and Firefox */
}

.sidebar-menu .material-symbols-outlined {
    font-size: 20px;
    vertical-align: middle;
    color: #676767;
    margin-top: -2px;
}

#inviteTeamModal .material-symbols-outlined {
    font-size: 20px;
    vertical-align: bottom;
}

.ready-script {
    max-height: 1000px;
    overflow: auto;
    padding: 25px;
}

.ready-script .page {
    font-size: 16px;
    padding: 100px 100px 100px 150px;
    background: #fff;
    border: 1px solid #8a4d0f12;
    border-radius: 2px;
    color: #222;
    cursor: text;
    font: Courier, "Courier New", monospace;
    letter-spacing: 0 !important;
    font-family: 'Courier Final Draft', Courier, Courier New, monospace;
    line-height: 107.5%;
    margin-bottom: 25px;
    position: relative;
    text-align: left;
    width: 100%;
    z-index: 200;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

    max-width: 800px;
    margin: 0 auto 20px;
}

.ready-script.editor-script .page {
    padding: 75px 75px 75px 100px;
    background: #fffef0;
    filter: url(#wavy2);
    box-shadow: 0px 0px 20px #0000000d, 0 0 60px #8a4d0f14 inset;
}

.ready-script .page h3,
.ready-script .page h4,
.ready-script .page p {
    font-size: 17px;
    font-weight: normal;
    font-family: 'Courier Final Draft', Courier, Courier New, monospace;
}

.ready-script .page div.dialogue h4 {
    margin-bottom: 0;
    margin-left: 23%;
}

.ready-script .page div.dialogue {
    margin-left: auto;
    margin-right: auto;
    width: 68%;
}

.wrap-storyboard {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 25px;
    background: #fff;
    margin: 0 -25px 0 0 !important;
    /*border: 1px solid #d2d2d2;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    max-width: 90%;*/
}

.editor-storyboard {
    margin: 0;
}

body .card.shadow-border {
    border: 1px solid #d2d2d2;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);    
}

.storyboard-image {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    position: relative;
    width: calc(25% - 25px);
}

.storyboard-image .btn {
    font-size: 10px;
    width: 100%;
    min-width: auto;
    padding: 0px 0px;
}

.td-table-image-container {
    width: 25%;
}

.table-image-container {
    aspect-ratio: 16 / 9;
    position: relative;
    max-width: 100%;
    border: solid 1px #d2d2d2;
    background: radial-gradient(at center top, #F0F0F0, #eeeeee);
}

.table-image-container img {
    max-width: 100%;
    aspect-ratio: 16 / 9;
}

.storyboard-image img {
    max-width: 100%;
    border-bottom: solid 1px #d2d2d2;
    aspect-ratio: 16 / 9;
}

.storyboard-image p {
    font-family: 'Courier Final Draft', Courier, Courier New, monospace;
    font-size: 13px;
    padding: 10px;
    line-height: 1.3;
    color: #000;
}


.circle {
    width: 42px;
    height: 42px;
    position: absolute;
    top: calc(50% - 21px);
    left: calc(50% - 21px);
}

.general-circle {
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
}
  
.inner-circle {
    width: 94%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid rgba(15, 170, 170, 0.7); /* Transparentize adjustment */
    border-right: none;
    border-top: none;
    background-clip: padding-box;
    box-shadow: inset 0px 0px 10px rgba(15, 170, 170, 0.15); /* Transparentize adjustment */
    animation: spin 2s infinite linear;
}

#downloadStoryBoard,
#downloadDirectorScript {
    display: none;
}



/* Основные стили для системы справки */
.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.categories-tree {
    max-height: 500px;
    overflow-y: auto;
}

.categories-tree ul {
    list-style: none;
    padding-left: 0;
}

.categories-tree li {
    padding: 5px 0;
}

.categories-tree li.active {
    background-color: #f5f5f5;
}

.categories-tree li.active a:hover {
    color: #ffffff;
}

.categories-tree a {
    color: #333;
    text-decoration: none;
}

.categories-tree a:hover {
    color: #007bff;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
}

.tags-cloud a.badge:hover {
    color: #fff;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.article-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    border-top: 1px solid #dee2e6;
}

.article-content table td,
.article-content table th {
    padding: 0.75rem;
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.article-content h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    margin-top: 30px;
    font-weight: bold;
}

.article-content h3 {
    margin-top: 30px;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-snippet {
    color: #555;
}

.help-admin-form .form-group {
    margin-bottom: 1.5rem;
}

.help-admin-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ck-editor__editable {
    min-height: 300px;
}

body.help .list-group-item.active {
    border: none;
}

body.help .categories-tree li {
    padding-left: 19px;
}


.footer {
  font-size: 0.9rem;
}
.footer a.text-muted:hover {
  color: #ffc107 !important;
  text-decoration: underline !important;
}
.footer .hover-underline:hover {
  text-decoration: underline;
}
.footer img {
  max-width: 100%;
  height: auto;
}

body .footer-payments {
    max-height: 32px;
    filter: grayscale(1);
    transition: filter 3.5s ease-in-out;
}

body .footer-payments:hover {
    filter: grayscale(0);
}

body .footer-partner {
    height: 18px;
    filter: grayscale(1);
    transition: filter 0.5s ease-in-out;
}

body .footer-partner:hover {
    filter: grayscale(0);
}

.imslate-clapper {
    max-width: 130%;
}


.page-container {

    padding-left: 0 !important;
}

.sidebar-menu a {
    color: #676767;
}

.sidebar-menu a:hover {
    color: #000000;
}

/* NEW CORRECT


#a9dca5
#e5a795
#ef9cdd
#7c81fe
#c7e5b7
#f2c2ac
#d9b3e7
#a2b2ff
#b7e1f9
#ffb3ba
#e0e0e0


*/

textarea.form-control {
    border-radius: 5px;
    line-height: 1.35;
    padding: 10px 12px;
}

.page-sidebar .sidebar-menu .menu-items > li > a,
p {
    font-size: 16px;
}

.alert {
    font-size: 15px;
}

.alert-success {
    background-color: #d6f7f0;
    color: #04733e;
    border-color: rgba(4, 115, 62, 0.24);
}

.alert.alert-success .alert-heading {
    color: #04733e !important;
}

.project-poster-container {
    background-color: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}
.project-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-poster-default {
    width: 100%;
    height: 100%;
    background-color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-poster-default i {
    font-size: 2rem;
    opacity: 0.7;
    color: #fff;
}

#select-project {
    background: #fff !important;
}

.project-dropdown {
    min-width: 300px;
    top: 4px !important;
}

.fit-poster-cinema {
    height: 50px;
    aspect-ratio: 2 / 3;
}

.badge-success {
    background-color: #4CAF50;
    color: #fff;
}

body.profile .tab-content {
    padding: 0 0 15px 0;
}

body.profile .tab-pane>.card.card-default {
    border-top: none;
    border-radius: 0 0 15px 15px;
}

body.profile .nav-tabs .nav-item.show .nav-link,
body.profile .nav-tabs .nav-link.active {
    border-color: #efefef;
    border-bottom: solid 1px #fff;
}

body.profile .nav-tabs {
    border-bottom: 1px solid #efefef;
}


/*
    Перебиваем синий
*/

.text-primary {
    color: #007bff !important;
}

.progress,
.progress-bar {
    border-radius: 3px;
}

.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 16px;
}

.btn-xs {
    padding: 0 8px !important;
}


/*btn-sm {
    padding: 0 8px !important;
}
*/
.bg-primary,
.btn-primary,
.btn-primary:focus,
.btn-success,
.btn-success:focus,
.label-success {
    background-color: var(--primary) /*#6699CC*/ !important;
    border-color: #567da56e;
}

.btn-primary:hover,
.btn-success:hover {
    background-color: #5c8bba !important;
}


#select-project {
    border: 1px solid #353f4d2e;
    color: #353f4d;
}

.btn-outline-primary, .btn-outline-primary:focus {
    color: #5c8bba;
    border: 1px solid #5c8bba;
}

.btn-outline-secondary {
    color: #5c8bba;
    border: 1px solid #5c8bba;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #5c8bba;
    border-color: #5c8bba;
}

body {
    background-color: #f9f9f9;
}
/* #a9dca5 */
.page-sidebar {
    background-color: transparent;
    border: none;
}

.page-sidebar .sidebar-menu .menu-items > li ul.sub-menu {
    padding: 0px 0 10px 0;
}

.page-sidebar .sidebar-menu .menu-items > li > a > .arrow {
    padding-right: 5px;
}

.page-sidebar .sidebar-menu .menu-items > li > a > .title {
    width: 75%;
}

.card { 
    box-shadow: none;
}

.form-group-default {
    border-radius: 5px;
}

body.menu-behind .header .brand {
    width: auto !important;
	margin-right: 60px;
    filter: contrast(0.3);
}

.page-container .page-content-wrapper .content {
    padding-top: 90px;
    z-index: auto;
    max-width: 100%;
}

body.main .page-container .page-content-wrapper .content,
body.corporate .page-container .page-content-wrapper .content {
    padding-top: 60px;
}

.copyright {
    border-top: none;
}

.dropdown-menu {
    font-size: 15px;
}

.error-list {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.error-list li {

}

/* Стили для свернутого меню */
.sidebar-menu.collapsed {
    width: 70px !important;
    min-width: 70px !important;
    transition: all 0.3s ease;
}

.sidebar-menu {
    transition: width 0.3s ease, min-width 0.3s ease;
    will-change: width;
    width: 245px;
}

.sidebar-menu ._link,
.sidebar-menu .item-add,
.sidebar-menu .head-menu span:not(.menu-toggle) {
    transition: opacity 0.2s ease, visibility 0.2s ease;
    opacity: 1;
    visibility: visible;
}

.sidebar-menu.collapsed ._link,
.sidebar-menu.collapsed .item-add {
    position: absolute !important;
    width: 42px !important;
    height: 25px !important;
    padding: 0 !important;
    margin: 0px 0 0 -20px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
}

.sidebar-menu.collapsed .head-menu {
    display: none;
}



/* Скрываем текст в свернутом состоянии */
.sidebar-menu.collapsed .head-menu span:not(.menu-toggle),
.sidebar-menu.collapsed ._link,
.sidebar-menu.collapsed .item-add {
    /*display: none !important;*/
}

/* Центрируем иконки в свернутом состоянии */
.sidebar-menu.collapsed .menu-icon li {
    text-align: center;
    padding: 8px 0 !important;
}

.sidebar-menu.collapsed .menu-icon li svg {
    margin: 0 auto;
    display: block;
}

/* Убираем отступы у заголовков в свернутом состоянии */
.sidebar-menu.collapsed .head-menu {
    text-align: center;
    padding: 10px 5px !important;
    margin-bottom: 5px !important;
}

.sidebar-menu.collapsed .head-menu span {
    display: none;
}

/* Оставляем только кнопку в заголовке */
.sidebar-menu.collapsed .menu-toggle {
    margin: -9px 0 0 -5px;
}

.sidebar-menu.collapsed .main-menu {
    min-width: auto;
}

/* Анимация для кнопки */
.menu-toggle {
    transition: transform 0.3s ease;
    transform: rotate(90deg);
    background: rgba(128, 128, 128, 0.05);
}

.menu-toggle:hover {
    background: rgba(128, 128, 128, 0.1);
}

.sidebar-menu.collapsed .menu-toggle {
    transform: rotate(270deg);
}

/* Адаптация основного контента */
.page-content-wrapper {
    transition: margin-left 0.3s ease;
}

.sidebar-menu.collapsed ~ .page-content-wrapper {
    margin-left: 70px !important;
}

/* Подсказки при наведении на иконки */
.sidebar-menu.collapsed .menu-icon li {
    position: relative;
}

.sidebar-menu.collapsed .menu-icon li:hover::after {
    content: attr(data-title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    margin-left: 8px;
    pointer-events: none;
}



.page-content-wrapper>.content>.card.card-default {
    z-index: 1;
}



/* Help System Styles */
.help-overlay.active {
    opacity: 1 !important;
}

.help-modal.active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.help-position-top.active {
    transform: translateX(-50%) scale(1) !important;
}

.help-position-bottom.active {
    transform: translateX(-50%) scale(1) !important;
}

.help-content {
    line-height: 1.5;
    color: #333;
}

.help-content h1, 
.help-content h2, 
.help-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.help-content p {
    margin-bottom: 10px;
}

.help-content ul, 
.help-content ol {
    margin-bottom: 10px;
    padding-left: 20px;
}

.help-close {
    transition: color 0.2s ease;
}

.help-close:hover {
    color: #333 !important;
}

.btn-help {
    background: none;
    border: none;
    color: #6c757d;
    cursor: help;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.btn-help:hover {
    background: #f8f9fa;
    color: #495057;
}

.help-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.help-content code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.help-content pre {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    overflow-x: auto;
    margin: 10px 0;
}

.help-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin-left: 0;
    color: #6c757d;
}


@media only screen and (min-width: 980px) {
    body.menu-pin .page-container .page-content-wrapper .content {
        padding-left: 300px;
        padding-right: 32px;
    }
}



@keyframes spin {
from {
    transform: rotate(0deg);
}
to {
    transform: rotate(360deg);
}
}

/* Manually create the circles */
.circle:nth-of-type(1) {
    transform: rotate(0);
}

.circle:nth-of-type(2),
.circle.general-circle:nth-of-type(4) {
    transform: rotate(70deg);
}

.circle:nth-of-type(3),
.circle.general-circle:nth-child(6) {
    transform: rotate(120deg);
}

.circle:nth-of-type(2) .inner-circle,
.circle.general-circle:nth-of-type(4) .inner-circle {
    border: 5px solid rgb(190 50 238 / 70%);
    filter: blur(.5px);
    animation: spin 1.8s infinite linear;
}

.circle:nth-of-type(3) .inner-circle,
.circle.general-circle:nth-child(6) .inner-circle {
    border: 5px solid rgb(50 191 238 / 50%);
    filter: blur(1px);
    animation: spin 1.6s infinite linear;
}

@media only screen and (min-width: 980px) {
    body.menu-behind .header .brand {
        padding-left: 12px !important;
    }
}

#custom-context-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    z-index: 1000;
}

#custom-context-menu ul {
    list-style-type: none;
    padding: 5px;
    margin: 0;
}

#custom-context-menu ul li {
    padding: 8px 12px;
    cursor: pointer;
}

#custom-context-menu ul li:hover {
    background-color: #e9e9e9;
}

.text {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
}

#output {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    min-height: 50px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: -2px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    width: 100% !important;
}

.btn-link.active, .btn-link:not(:disabled):not(.disabled):active,
.btn-link.active:focus,
.btn-link:not(:disabled):not(.disabled):active:focus,
.btn-link:not(:disabled):not(.disabled):active:hover {
    color: #353f4d !important;
    background: rgba(128, 128, 128, 0.13);
    border: 0;
}

@media (max-width: 991px) {
    body.menu-behind .header .brand {
        margin-right: 10px !important;
    }

    .version-info {
        display: block !important;
    }
}


/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    z-index: 9999;
    animation: slideInUp 0.5s ease-out;
}

.cookie-container {
    padding: 0;
}

.cookie-content {
    padding: 20px;
}

.cookie-header {
    margin-bottom: 12px;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #2c3e50;
}

.cookie-body {
    margin-bottom: 16px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #6c757d;
}

.cookie-law {
    margin-bottom: 0;
}

.cookie-link {
    color: #007bff;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #0056b3;
}

.cookie-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner.hiding {
    animation: slideOutDown 0.5s ease-in forwards;
}

/* Responsive */
@media (max-width: 576px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }

    /*
        Mobile
    */
    .page-content-wrapper {

    }
}

@media (max-width: 767px) {
    .jumbotron, .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }

    .utp-head {
        font-size: 2.5rem;
    }

    .imslate-clapper {
        max-width: 100%;
    }

    .page-container .page-content-wrapper {
        margin-top: -6px;
    }
}




/* Мобильные стили для хедера */
@media (max-width: 991px) {
  .header .d-none.d-lg-inline-flex {
    display: none !important;
  }
  
  .header .d-inline-flex.d-lg-inline-flex {
    display: none !important;
  }
  
  /* Мобильное меню */
  .mobile-menu-container {
    display: block;
  }
  
  .desktop-menu {
    display: none;
  }
  
  /* Бургер-меню */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 24px;
    color: #676767;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
    padding: 0;
  }
  
  .mobile-menu-toggle.active {
    transform: rotate(90deg);
  }
  
  /* Выпадающее мобильное меню */
  .mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
    opacity: 0;
    border-radius: 0 0 8px 8px;
  }
  
  .mobile-dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
  }
  
  .mobile-menu-item {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    text-decoration: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 14px;
  }
  
  .mobile-dropdown-menu.show .mobile-menu-item {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Задержка для пунктов меню */
  .mobile-dropdown-menu.show .mobile-menu-item:nth-child(1) { transition-delay: 0.05s; }
  .mobile-dropdown-menu.show .mobile-menu-item:nth-child(2) { transition-delay: 0.1s; }
  .mobile-dropdown-menu.show .mobile-menu-item:nth-child(3) { transition-delay: 0.15s; }
  .mobile-dropdown-menu.show .mobile-menu-item:nth-child(4) { transition-delay: 0.2s; }
  .mobile-dropdown-menu.show .mobile-menu-item:nth-child(5) { transition-delay: 0.25s; }
  
  .mobile-menu-item:hover {
    background: #f8f9fa;
  }
  
  .mobile-menu-item:last-child {
    border-bottom: none;
  }
  
  .mobile-menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.3s ease;
  }
  
  .mobile-dropdown-menu.show .mobile-menu-divider {
    opacity: 1;
    transform: scaleX(1);
  }

    .project-dropdown {   
        min-width: 200px;
    }
}

@media (min-width: 992px) {
  .mobile-menu-container {
    display: none;
  }
  
  .desktop-menu {
    display: flex;
  }
}

.dashboard-link-additional {
    position: absolute;
    right: 40px;
    top: 11px;
}

.onboarding .text-success {
    color: #28a745 !important;
}

.onboarding-show {
    display: none;
    padding-left: 15px;
}

.onboarding {
    display: none;
}

.quickstart-show {
    display: none;

}

.quickstart {
    display: none;
}


/* Правая панель */
#rightPanel {
    width: 300px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid #e5e5e5;
    /*box-shadow: -2px 0 10px rgba(0,0,0,0.1);*/
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    position: fixed;
    right: 0;
}

.header {
    transition: width 0.3s ease-in-out;
}

.header.panel-open {
    width: calc(100% - 300px);
}

#rightPanel.open {
    transform: translateX(0%);
}

.page-content {
    margin-right: 0px;
}

.page-content.panel-open {
    margin-right: 300px;
}

.panel-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background: #f8f9fa;*/
}

.panel-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.panel-close {
    padding: 5px;
    color: #6c757d;
    border: none;
    background: none;
    cursor: pointer;
}

.panel-close:hover {
    color: #495057;
}

.panel-tabs {
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.panel-tabs .nav-tabs {
    border-bottom: none;
    margin-bottom: 0;
}

.panel-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
    flex-grow: 1;
    text-align: center;
}

.panel-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 12px 15px 5px;
    color: #6c757d;
    position: relative;
    background: none;
    border-bottom: 2px solid transparent;
}

.panel-tabs .nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #495057;
}

.panel-tabs .nav-tabs .nav-link.active {
    color: #007bff;
    background: transparent;
    border-bottom: 2px solid #007bff;
}

.get-panel-collab .btn-icon-link {
    font-size: 20px !important;
    color: #5d6876;
    margin: 5px 0 0 0 !important;
}

.tab-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.panel-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}

#rightPanel .tab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 100%;
}

.tab-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Чат стили */
.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    position: relative;
}

.chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #f8f9fa;
    flex-shrink: 0;
}

.chat-header h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 14px;
}

.chat-info {
    font-size: 12px;
    color: #6c757d;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    background: #fafafa;
    min-height: 0;
    padding-bottom: 100px;
}

.chat-empty {
    text-align: center;
    color: #6c757d;
    padding: 40px 20px;
    font-size: 14px;
}

.chat-empty p {
    margin-bottom: 5px;
    font-size: 16px;
}

.chat-message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 85%;
    word-wrap: break-word;
}

.chat-message.own {
    background: #007bff;
    color: white;
    margin-left: auto;
}

.chat-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 12px;
}

.chat-message-sender {
    font-weight: 600;
}

.chat-message.own .chat-message-sender {
    color: rgba(255,255,255,0.9);
}

.chat-message-time {
    color: #6c757d;
    font-size: 11px;
}

.chat-message.own .chat-message-time {
    color: rgba(255,255,255,0.7);
}

.chat-message-text {
    word-wrap: break-word;
    line-height: 1.4;
    font-size: 14px;
    white-space: pre-wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Стили для времени и статуса */
.chat-message-time {
    color: #6c757d;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.chat-message.own .chat-message-time {
    color: rgba(255,255,255,0.7);
}

.chat-input-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    border-top: 1px solid #e5e5e5;
    background: white;
    flex-shrink: 0;
    z-index: 10;
}

.chat-message-text br {
    margin-bottom: 4px;
}

.chat-input-container .input-group {
    margin-bottom: 5px;
}

.chat-input-container .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    resize: none;
    min-height: 40px;
    max-height: 120px;
}

.chat-input-container .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.chat-input-container .btn {
    border-radius: 4px;
    padding: 8px 12px;
}

.chat-input-hint {
    margin-top: 5px;
}

.chat-input-hint small {
    font-size: 11px;
}

/* Кнопка переключения панели */
#panelToggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px 0 0 4px;
    padding: 12px 8px;
    cursor: pointer;
    z-index: 999;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

#panelToggle:hover {
    background: #0056b3;
    padding-right: 12px;
}

.toggle-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Placeholder для других вкладок */
.tab-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
    height: 100%;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #dee2e6;
    opacity: 0.5;
}

.placeholder-icon .pg-icon {
    font-size: 48px;
}

.tab-placeholder h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.tab-placeholder p {
    margin: 0;
    font-size: 14px;
}

/* Стили для навигационных табов Bootstrap */
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

/* Адаптивность */
@media (max-width: 768px) {
    #rightPanel {
        width: 100%;
        right: -100%;
    }
    
    .chat-message {
        max-width: 90%;
    }
    
    #panelToggle {
        width: 36px;
        height: 36px;
        padding: 10px 6px;
    }
}

@media (max-width: 576px) {
    .panel-header {
        padding: 12px 15px;
    }
    
    .chat-header,
    .chat-input-container {
        padding: 12px 15px;
    }
    
    .chat-messages {
        padding: 12px;
    }
    
    .chat-message {
        padding: 8px 12px;
        margin-bottom: 12px;
    }
}

/* Анимации */
.chat-message {
    animation: messageAppear 0.3s ease;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panelSlideIn {
    from {
        right: -400px;
    }
    to {
        right: 0;
    }
}

/* Кастомные стили для скроллбара */
.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Стили для состояний загрузки */
.chat-loading {
    opacity: 0.7;
    pointer-events: none;
}

.chat-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стили для ошибок */
.chat-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 15px;
    font-size: 14px;
    border: 1px solid #f5c6cb;
}

/* Стили для системных сообщений */
.chat-message.system {
    background: #e2e3e5;
    color: #383d41;
    text-align: center;
    max-width: 100%;
    font-style: italic;
    margin: 10px auto;
}

/* Улучшенные стили для текстового поля */
#chat-message-input {
    font-family: inherit;
    line-height: 1.4;
}

#chat-message-input:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

/* Стили для кнопки отправки в состоянии загрузки */
#chat-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Стили для активного состояния табов */
.panel-tabs .nav-tabs .nav-link:focus {
    outline: none;
    box-shadow: none;
}

/* Убедимся, что панель поверх всего */
#rightPanel {
    z-index: 1050;
}

#panelToggle {
    z-index: 1049;
}

.clockpicker-popover {
    z-index: 10000 !important;
}

/* Стили для бейджей на кнопке */
#panelToggle .toggle-badge,
.panel-tabs .tab-badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Стили для иконок в табах */
.panel-tabs .nav-link .pg-icon {
    font-size: 16px;
    margin-right: 5px;
}

/* Стили для заголовка панели */
.panel-header .panel-title {
    display: flex;
    align-items: center;
}

.panel-header .panel-title .pg-icon {
    margin-right: 8px;
    font-size: 18px;
}

/* Индикатор новых сообщений */
.new-messages-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Стили для статусов сообщений */
.message-status {
    margin-left: 5px;
    font-size: 12px;
    transition: color 0.3s ease;
    letter-spacing: -1px;
}

.message-status.delivered {
    color: #69b0ff;
}

.message-status.read {
    color: #eaf4ff;
    animation: statusUpdate 0.5s ease;
}

@keyframes statusUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/*
.message-status.delivered::after {
    content: '✓';
}

.message-status.read::after {
    content: '✓✓';
}
*/

.callsheet-content .form-group-default.form-group-default-select2 .select2-container .select2-selection--multiple,
.form-group-default.form-group-default-select2 .select2-container .select2-selection--single {
    border-radius: 5px;
}

.callsheet-content .select2-container .select2-selection .select2-selection__rendered .select2-selection__clear {
    right: 5px;
}

.callsheet-content .section-header {
    border-radius: 7px 7px 0 0;
}

.callsheet-content input[type=text],
.select2-container--default .select2-selection--single {
    border-radius: 5px !important;
    border: 1px solid #e7e8e7 !important;
    font-size: 13.5px !important;
}

.callsheet-content .input-group-text {
    border: 1px solid #e7e8e7;
    border-radius: 0 5px 5px 0;
}

.callsheet-content .card.card-default {
    padding: 0px;
    border-radius: 0;
    margin: 0;
    border: none;
}

.callsheet-content .card .card-header {
    padding: 10px 20px 0px 20px;
    min-height: 36px;
}

.callsheet-content .card.card-default > .card-header {
    background-color: #dadada !important;
    border-radius: 0px 0px 0 0;
}

.callsheet-content .table tbody tr td {
    padding: 10px;
}

.callsheet-content .card .card-body {
    padding: 0px 10px 0px 10px;
}

.callsheet-content .card-progress {
    z-index: 12;
}

.callsheet-content table.table-condensed {
    margin-top: 0;
}

.callsheet-content .form-group-default.focused {
    border: 1px solid #9E9E9E !important;
}

.callsheet-content .card-progress > .progress, .card-progress > .progress.progress-small {
    height: 36px;
    z-index: 99999;
    border-radius: 7px;
    overflow: hidden;
    opacity: .2;
}

.callsheet-content .progress {
    background-color: #8BC34A;
}

.microLabel {
    padding: 0;
    margin: 0 0 0 2px;
    font-size: 10px;
    color: #bbbbbb;
    display: block;
}

.profession-item {
    padding: 10px;
}

.profession-item div {
    padding-left: 10px;    
}

.task-image-preview {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e1e4e8;
}

.task-image-preview img {
    transition: transform 0.2s;
}

.task-card:hover .task-image-preview img {
    transform: scale(1.05);
}

.status-column .pg-icon {
    vertical-align: bottom;
}

.task-assignee-avatar .pg-icon {
    font-size: 13px;
    color: #d0d0d0;
}

.delete-status-btn {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.delete-status-btn:hover {
    opacity: 1;
}

.status-column:hover .delete-status-btn {
    opacity: 0.7;
}

.modal .modal-title {
    padding-top: 0;
    margin-top: 0;
}
.modal .modal-header {
    /*padding: 25px 25px 0 15px;*/
    padding-bottom: 15px;
}

.modal-open .select2-container {
    z-index: 1;
}

.h-auto {
    min-height: auto !important;
    height: auto !important;
}

@media (min-width: 992px) {
    .modal-dialog.modal-xlg {
        width: 900px;
        max-width: 900px;
    }
}

.badge .modal-open>.select2-container {
    z-index: 1051;
}

.material-symbols-outlined {
    font-size: 16px !important;
    margin: 0 5px 1px 0 !important;
}

.log-events-panel {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    min-height: 0;
}

.log-events-panel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.log-events-panel::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.log-events-panel::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.log-event {
    background: #fafafa;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    word-wrap: break-word;
    margin: 0 auto 20px;
}

.log-event-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: #555;
    font-size: 0.9em;
}

.log-event-user {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.log-event-text {
    line-height: 1.5;
    white-space: pre-wrap;
    text-align: left;
}

.log-events-loader,
.log-events-error,
.log-events-no-data {
    text-align: center;
    padding: 20px;
    color: #666;
}

.ava-56-empty .pg-icon {
    vertical-align: text-top;
}

/* Убедитесь что родительский контейнер позиционирован */
.location-item .form-group,
.location-item td {
    position: relative !important;
}

.address-autocomplete-dropdown {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto !important;
}

.address-suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: 14px;
}

.address-suggestion-item:hover {
    background-color: #f8f9fa;
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

.address-suggestion-item .address-main {
    font-weight: 500;
    color: #333;
}

/* Для табличной структуры */
.table .location-address {
    width: 100%;
}

.table td {
    position: relative;
}

.table.table-condensed thead tr th,
.table.table-condensed tbody tr td,
.table.table-condensed tbody tr td *:not(.dropdown-default) {
    overflow: visible;
}

.table.table-compact td, .table.table-compact th {
    padding: .75rem !important;
}

.table-primary, .table-primary>td, .table-primary>th {
    background-color: #bddab4 !important;
}

.table-primary:hover, .table-primary:hover>td, .table-primary:hover>th,
.table.table-hover tbody tr.table-primary:hover td {
    background-color: #bddab466 !important;
}

.table-primary tbody+tbody, .table-primary td, .table-primary th, .table-primary thead th {
    border-color: #bddab4 !important;
}

.table-primary {
    border-bottom: solid 2px #a0c195 !important;
}

.datepicker table tr td.today {
    background-color: #bddab466;
    background-image: none;
    color: #000;
}



@keyframes flyMotion {
    0% { transform: translate(0, -117px) rotate(-8deg); }
    25% { transform: translate(3px, -127px) rotate(-8deg); }
    50% { transform: translate(0, -147px) rotate(-8deg); }
    75% { transform: translate(-3px, -127px) rotate(-8deg); }
    100% { transform: translate(0, -117px) rotate(-8deg); }
}


@keyframes flyInFromSide {
    0% {
        transform: translate(-100vw, 0px) rotate(-8deg);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(0, -117px) rotate(-8deg); /* Конечное: центр + вертикаль */
    }
}

@keyframes flyOutToSide {
    0% {
        transform: translate(0, -117px) rotate(-8deg);
        opacity: 1;
    }
    100% {
        transform: translate(100vw, 0px) rotate(-8deg);
        opacity: 0;
    }
}


.general-container {
    z-index: 1;
    position: absolute;
    /*opacity: 0;*/
    /*visibility: hidden;*/
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: translate(-100vw, 0px) rotate(-8deg);
    top: 0;
}

.general-tc-say {
    left: 200px;
    top: 30px;
    max-width: 300px;
    min-width: 200px;
    padding: 12px 16px;
    margin: 10px 0;

    background-color: #fff8e1; /* Светло‑жёлтый фон */
    border: 1px solid #ffe0b2;  /* Мягкая оранжевая кайма */
    border-radius: 18px;

    color: #424242;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(8deg);
    position: absolute;
    display: inline-block;
    /*animation: bubbleAppear 0.3s ease-out;*/
}

.general-tc-say:after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fff8e1 transparent transparent transparent;
    transform: rotate(90deg);
}

@keyframes bubbleAppear {
    0% { opacity: 0; transform: translateY(10px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bubbleDisappear {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-10px) scale(0.9); }
}

@keyframes thinkingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}


/* Базовый стиль для персонажа */
.sprite-general-timecode {
    width: 150px;
    height: 150px;
    background-image: url('/assets/img/general_timecode_imslate.png');
    background-repeat: no-repeat;
    position: absolute;
    background-size: 300px 300px;
    z-index: 1;
}

/* Классы для управления анимациями */
.fly-in {
    animation: flyInFromSide 1s ease-out forwards;
    visibility: visible; /* Включаем видимость при анимации */
}

.fly-out {
    animation: flyOutToSide 1s ease-in forwards;
}

.fly-motion {
    animation: flyMotion 8s cubic-bezier(0.42, 0, 0.58, 1.0) infinite forwards;
    visibility: visible;
}

.general-container,
.general-tc-say,
.sprite-general-timecode {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.general-good-idea {
  background-position: 0 0;
}

.general-thinking {
  background-position: -150px 0;
}

.general-wait {
  background-position: 0 -150px;
}

.general-hapiness {
  background-position: -150px -150px;
}


.gentc-analysis-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный бэкдроп */
    z-index: 1050; /* Выше чем стандартные модалки */
    display: none; /* Изначально скрыто */
    align-items: center;
}

.gentc-analysis-result {
    position: relative;
    margin: 50px auto;
}

.gentc-analysis-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    z-index: 1;
}

.gentc-analysis-content {
    padding: 0px 40px;
    overflow: hidden;
    overflow-y: scroll;    
    opacity: 0;
    box-sizing: border-box;
    height: 0;
    max-height: 65vh;
    width: 680px;
    margin-left: 200px;
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gentc-cancel {
    color: #fff;
}

@keyframes expandContent {
    from {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
    }
    to {
        height: var(--final-height);
        padding-top: 20px;
        padding-bottom: 20px;
        opacity: 1;
    }
}

@keyframes collapseContent {
    from {
        height: var(--final-height);
        padding-top: 20px;
        padding-bottom: 20px;
        opacity: 1;
    }
    to {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
    }
}


.gentc-analysis-content.expanded {
    animation: expandContent 0.6s ease-out forwards;
}

.gentc-analysis-content.collapsed {
    animation: collapseContent 0.3s ease-out forwards;
}

.gentc-analysis-content p {
    font-size: 14px;
}

/* Стили для блока фидбэка анализа сценария */
.analysis-feedback {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

.analysis-feedback h6 {
    font-weight: 600;
    color: #495057;
}

.feedback-btn {
    transition: all 0.2s ease;
    min-width: 110px;
    flex: 1;
}

.feedback-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feedback-btn.active {
    transform: scale(1.02);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.feedback-comment textarea {
    resize: vertical;
    min-height: 80px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s ease;
}

.feedback-comment textarea:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Анимация появления комментария */
.feedback-comment {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Уведомление об успехе */
.feedback-success-alert {
    animation: fadeIn 0.3s ease;
    border-left: 4px solid #198754;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.bg-snow-white {
    background-color: #fafafa !important;
}

/**
* Task
*/

.task-card,
.item-card {
    background: white;
    border: 1px solid #e1e4e8;
    border-left: 4px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: move;
    transition: box-shadow 0.2s;
}

.task-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.task-card.overdue {
    border-left: 4px solid #dc3545 !important;
}

.task-card-colored {
    border-left-width: 4px;
    border-left-style: solid;
}

.task-card-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.task-title {
    font-weight: 500;
    flex-grow: 1;
    margin-right: 8px;
}

.task-color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.task-tags {
    margin-bottom: 8px;
}

.task-tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    margin-right: 4px;
    margin-bottom: 4px;
}

.task-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #6c757d;
}

.task-assignee-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.task-due-date.overdue {
    color: #dc3545;
    font-weight: bold;
}
.task-card,
.item-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

.task-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.task-card.dragging {
    transform: rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Убираем курсор pointer у элементов управления внутри карточки */
.task-card .dropdown,
.task-card .dropdown-toggle {
    cursor: default;
}

.task-card .dropdown-item {
    cursor: pointer;
}

.upload-zone {
    border: 1px dashed #c1c1c169;
    background: #f8fafc;
    min-height: 300px;
    cursor: pointer;
    border-radius: .25rem !important;
}

.upload-zone:hover {
    border-color: #38a169 !important;
    background: #edf2f7 !important;
}

/**
* Mac 13"
*/

@media (max-width: 1440px) {
    .scripteditor .list-group-item {
        padding: .75rem 0.75rem;
        font-size: 12px;
    }

    #navigationPanel .scene-item {
        padding-left: 0.75rem;
    }

    .menu-button .pg-icon {
        padding-right: 4px !important;
    }

    .menu-button .fa {
        padding-right: 21px !important;
    }

    .script-title-display {
        padding: 4px 2px !important;
    }

    .form-control-sm.scene-number {
        width: 50px;
    }

    #select-project {
        border: 1px solid #353f4d2e;
        color: #353f4d;
        max-width: 230px;
    }
}