/* Custom Switch 1 */
.custom-switch-1 .switch {
    --line: #2262c6;
    --dot: #2262c6;
    --circle: #2262c6;
    --duration: .3s;
    --text: #9EA0BE;
    cursor: pointer;
}
.custom-switch-1 .switch input {
    display: none;
}
.custom-switch-1 .switch input + div {
    position: relative;
}
.custom-switch-1 .switch input + div:before, .custom-switch-1 .switch input + div:after {
    --s: 1;
    content: '';
    position: absolute;
    height: 4px;
    top: 10px;
    width: 24px;
    background: var(--line);
    -webkit-transform: scaleX(var(--s));
    transform: scaleX(var(--s));
    -webkit-transition: -webkit-transform var(--duration) ease;
    transition: -webkit-transform var(--duration) ease;
    transition: transform var(--duration) ease;
    transition: transform var(--duration) ease, -webkit-transform var(--duration) ease;
}
.custom-switch-1 .switch input + div:before {
    --s: 0;
    left: 0;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    border-radius: 2px 0 0 2px;
}
.custom-switch-1 .switch input + div:after {
    left: 28px;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    border-radius: 0 2px 2px 0;
}
.custom-switch-1 .switch input + div span {
    padding-left: 56px;
    line-height: 24px;
    color: var(--text);
}
.custom-switch-1 .switch input + div span:before {
    --x: 0;
    --b: var(--circle);
    --s: 4px;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 var(--s) var(--b);
    -webkit-transform: translateX(var(--x));
    transform: translateX(var(--x));
    -webkit-transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
    transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
    transition: box-shadow var(--duration) ease, transform var(--duration) ease;
    transition: box-shadow var(--duration) ease, transform var(--duration) ease, -webkit-transform var(--duration) ease;
}
.custom-switch-1 .switch input + div span:not(:empty) {
    padding-left: 64px;
}
.custom-switch-1 .switch input:checked + div:before {
    --s: 1;
}
.custom-switch-1 .switch input:checked + div:after {
    --s: 0;
}
.custom-switch-1 .switch input:checked + div span:before {
    --x: 28px;
    --s: 12px;
    --b: var(--dot);
}
.switch-outer-container .switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
}
.switch-outer-container .switch label {
    margin: 0;
}
.switch-outer-container .switch input:empty {
    margin-left: -999px;
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
    opacity: 0;
}
.switch-outer-container .switch input:empty ~ span {
    display: inline-block;
    position: relative;
    float: left;
    width: 1px;
    text-indent: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.switch-outer-container .switch input:empty ~ span:before,
.switch-outer-container .switch input:empty ~ span:after {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    left: 0;
    content: " ";
    -webkit-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
}
.switch-outer-container .switch input[disabled] {
    cursor: not-allowed;
}
.switch-outer-container .switch input[disabled] ~ span:after,
.switch-outer-container .switch input[disabled] ~ span:before {
    cursor: not-allowed;
    opacity: 0.5;
}
.switch-outer-container .switch.switch-icon input:checked ~ span:after {
    font-family: "bootstrap-icons";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-decoration: inherit;
    text-rendering: optimizeLegibility;
    text-transform: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    content: "\F26E";
    font-weight: 400;
    line-height: 0;
    font-size: 14px;
}
.switch-outer-container .switch input:empty ~ span {
    margin: 2px 0;
    height: 30px;
    width: 57px;
    border-radius: 15px;
}
.switch-outer-container .switch input:empty ~ span:before,
.switch-outer-container .switch input:empty ~ span:after {
    width: 54px;
    border-radius: 15px;
}
.switch-outer-container .switch input:empty ~ span:after {
    height: 24px;
    width: 24px;
    top: 3px;
    bottom: 3px;
    margin-left: 3px;
    font-size: 0.65em;
    text-align: center;
    vertical-align: middle;
}
.switch-outer-container .switch input:checked ~ span:after {
    margin-left: 26px;
}
.switch-outer-container .switch.switch-sm input:empty ~ span {
    margin: 2px 0;
    height: 24px;
    width: 40px;
    border-radius: 12px;
}
.switch-outer-container .switch.switch-sm input:empty ~ span:before,
.switch-outer-container .switch.switch-sm input:empty ~ span:after {
    width: 38px;
    border-radius: 12px;
}
.switch-outer-container .switch.switch-sm input:empty ~ span:after {
    height: 20px;
    width: 20px;
    top: 2px;
    bottom: 2px;
    margin-left: 2px;
    font-size: 0.55em;
    text-align: center;
    vertical-align: middle;
}
.switch-outer-container .switch.switch-sm input:checked ~ span:after {
    margin-left: 16px;
}
.switch-outer-container .switch.switch-lg input:empty ~ span {
    margin: 2px 0;
    height: 40px;
    width: 75px;
    border-radius: 20px;
}
.switch-outer-container .switch.switch-lg input:empty ~ span:before,
.switch-outer-container .switch.switch-lg input:empty ~ span:after {
    width: 72px;
    border-radius: 20px;
}
.switch-outer-container .switch.switch-lg input:empty ~ span:after {
    height: 34px;
    width: 34px;
    top: 3px;
    bottom: 3px;
    margin-left: 3px;
    font-size: 0.75em;
    text-align: center;
    vertical-align: middle;
}
.switch-outer-container .switch.switch-lg input:checked ~ span:after {
    margin-left: 34px;
}
.switch-outer-container .switch input:empty ~ span:before {
    background-color: #ebedf3;
}
.switch-outer-container .switch input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch input:checked ~ span:before {
    background-color: #ebedf3;
}
.switch-outer-container .switch input:checked ~ span:after {
    opacity: 1;
    color: #ffffff;
    background-color: #2262c6;
}
.switch-outer-container .switch.switch-primary:not(.switch-outline) input:empty ~ span:before {
    background-color: #2262c6;
}
.switch-outer-container .switch.switch-primary:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-primary:not(.switch-outline) input:checked ~ span:before {
    background-color: #2262c6;
}
.switch-outer-container .switch.switch-primary:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #2262c6;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-primary input:empty ~ span:before {
    border: 2px solid #ccc;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-primary input:empty ~ span:after {
    background-color: #ccc;
}
.switch-outer-container .switch.switch-outline.switch-primary input:checked ~ span:before {
    border: 2px solid #2262c6;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-primary input:checked ~ span:after {
    color: #ffffff;
    background-color: #2262c6;
}
.switch-outer-container .switch.switch-secondary:not(.switch-outline) input:empty ~ span:before {
    background-color: #e4e6ef;
}
.switch-outer-container .switch.switch-secondary:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-secondary:not(.switch-outline) input:checked ~ span:before {
    background-color: #e4e6ef;
}
.switch-outer-container .switch.switch-secondary:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #e4e6ef;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-secondary input:empty ~ span:before {
    border: 2px solid #ebedf3;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-secondary input:empty ~ span:after {
    background-color: #ebedf3;
}
.switch-outer-container .switch.switch-outline.switch-secondary input:checked ~ span:before {
    border: 2px solid #e4e6ef;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-secondary input:checked ~ span:after {
    color: #ffffff;
    background-color: #e4e6ef;
}
.switch-outer-container .switch.switch-success:not(.switch-outline) input:empty ~ span:before {
    background-color: #1bc5bd;
}
.switch-outer-container .switch.switch-success:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-success:not(.switch-outline) input:checked ~ span:before {
    background-color: #1bc5bd;
}
.switch-outer-container .switch.switch-success:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #1bc5bd;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-success input:empty ~ span:before {
    border: 2px solid #ebedf3;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-success input:empty ~ span:after {
    background-color: #ebedf3;
}
.switch-outer-container .switch.switch-outline.switch-success input:checked ~ span:before {
    border: 2px solid var(--theme-accent-color);
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-success input:checked ~ span:after {
    color: #ffffff;
    background: var(--accent-gradient);
}
.switch-outer-container .switch.switch-info:not(.switch-outline) input:empty ~ span:before {
    background-color: #8950fc;
}
.switch-outer-container .switch.switch-info:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-info:not(.switch-outline) input:checked ~ span:before {
    background-color: #8950fc;
}
.switch-outer-container .switch.switch-info:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #8950fc;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-info input:empty ~ span:before {
    border: 2px solid #ebedf3;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-info input:empty ~ span:after {
    background-color: #ebedf3;
}
.switch-outer-container .switch.switch-outline.switch-info input:checked ~ span:before {
    border: 2px solid #8950fc;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-info input:checked ~ span:after {
    color: #ffffff;
    background-color: #8950fc;
}
.switch-outer-container .switch.switch-warning:not(.switch-outline) input:empty ~ span:before {
    background-color: #ffa800;
}
.switch-outer-container .switch.switch-warning:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-warning:not(.switch-outline) input:checked ~ span:before {
    background-color: #ffa800;
}
.switch-outer-container .switch.switch-warning:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #ffa800;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-warning input:empty ~ span:before {
    border: 2px solid #ebedf3;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-warning input:empty ~ span:after {
    background-color: #ebedf3;
}
.switch-outer-container .switch.switch-outline.switch-warning input:checked ~ span:before {
    border: 2px solid #ffa800;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-warning input:checked ~ span:after {
    color: #ffffff;
    background-color: #ffa800;
}
.switch-outer-container .switch.switch-danger:not(.switch-outline) input:empty ~ span:before {
    background-color: #f64e60;
}
.switch-outer-container .switch.switch-danger:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-danger:not(.switch-outline) input:checked ~ span:before {
    background-color: #f64e60;
}
.switch-outer-container .switch.switch-danger:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #f64e60;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-danger input:empty ~ span:before {
    border: 2px solid #ebedf3;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-danger input:empty ~ span:after {
    background-color: #ebedf3;
}
.switch-outer-container .switch.switch-outline.switch-danger input:checked ~ span:before {
    border: 2px solid #f64e60;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-danger input:checked ~ span:after {
    color: #ffffff;
    background-color: #f64e60;
}
.switch-outer-container .switch.switch-light:not(.switch-outline) input:empty ~ span:before {
    background-color: #f3f6f9;
}
.switch-outer-container .switch.switch-light:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-light:not(.switch-outline) input:checked ~ span:before {
    background-color: #f3f6f9;
}
.switch-outer-container .switch.switch-light:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #f3f6f9;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-light input:empty ~ span:before {
    border: 2px solid #f64e60;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-light input:empty ~ span:after {
    background-color: #f64e60;
}
.switch-outer-container .switch.switch-outline.switch-light input:checked ~ span:before {
    border: 2px solid #ccc;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-light input:checked ~ span:after {
    color: #ffffff;
    background-color: #ccc;
}
.switch-outer-container .switch.switch-dark:not(.switch-outline) input:empty ~ span:before {
    background-color: #181c32;
}
.switch-outer-container .switch.switch-dark:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-dark:not(.switch-outline) input:checked ~ span:before {
    background-color: #181c32;
}
.switch-outer-container .switch.switch-dark:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #181c32;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-dark input:empty ~ span:before {
    border: 2px solid #ebedf3;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-dark input:empty ~ span:after {
    background-color: #ebedf3;
}
.switch-outer-container .switch.switch-outline.switch-dark input:checked ~ span:before {
    border: 2px solid #181c32;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-dark input:checked ~ span:after {
    color: #ffffff;
    background-color: #181c32;
}
.switch-outer-container .switch.switch-white:not(.switch-outline) input:empty ~ span:before {
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-white:not(.switch-outline) input:empty ~ span:after {
    background-color: #ffffff;
    opacity: 0.7;
}
.switch-outer-container .switch.switch-white:not(.switch-outline) input:checked ~ span:before {
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-white:not(.switch-outline) input:checked ~ span:after {
    opacity: 1;
    color: #ffffff;
    background-color: #ffffff;
}
.switch-outer-container .switch.switch-outline.switch-white input:empty ~ span:before {
    border: 2px solid #ebedf3;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-white input:empty ~ span:after {
    background-color: #ebedf3;
}
.switch-outer-container .switch.switch-outline.switch-white input:checked ~ span:before {
    border: 2px solid #ffffff;
    background-color: transparent;
}
.switch-outer-container .switch.switch-outline.switch-white input:checked ~ span:after {
    color: #ffffff;
    background-color: #ffffff;
}
.logo-desktop {
    max-height: 60px;
}
@media (width <= 1450px) {
    .logo-mobile {
        max-height: 45px;
    }
}
@media (width <= 1350px) {
    .logo-mobile {
        max-height: 30px;
    }
}
.modal-backdrop {
    z-index: 11040;
}
.modal {
    z-index: 11050;
}
.filters-container {
    margin: -12px;
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.dataTable {
    color: #7e7e7e;
}
.dataTable .dt-column-title {
    font-family: Rubik;
    font-size: 14px;
    color: var(--header-text-color);
    font-weight: 400;
}
table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
    border-bottom: 1px solid var(--basic-color);
}
.table td, .table th {
    border-top: 1px solid var(--basic-color);
}
.input-large {
    width: 420px !important;
}
.dark-theme body, .dark-theme .dataTable, .dark-theme .table {
    color: #f4f4f4;
}
.dark-theme .breadcrumb-text {
    color: #858398;
}
.dt-search {
    display: none !important;
}
.btn-file > input, .fileinput .form-control {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 23px;
    cursor: pointer;
    opacity: 0;
    direction: ltr;
}
.fileinput-exists .fileinput-new, .fileinput-new .fileinput-exists {
    display: none;
}
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.header {
    z-index: 10;
}
.button {
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.05);
}
.wrapper {
    padding: 0 25px 40px !important;
}

/* fixed */
.dropdown-label.show .dropdown-label-arrow {
    background: var(--accent-gradient);
    color: #fff;
    text-align: center;
}
/*
.navbar-dropdown .dropdown-item {
    border-radius: 100px;
    transition: all .2s ease-in-out;
}*/
.navbar-dropdown--primary .navbar-dropdown-label a {
    color: #fff;
}
.filter-select .dropdown-menu {

}
table.dataTable>thead>tr>th:nth-child(n+3), table.dataTable>tbody>tr>td:nth-child(n+3) {
    min-width: 120px;
    line-height: 110%;
}
.form-control.loading {
    background: url(/img/808.gif);
    background-size: auto 14px;
    background-position: left center;
    background-repeat: no-repeat;
    color: rgba(0, 0, 0, 0.1);
}
.select-wrapper {
    overflow: hidden;
    position: relative;
}
.select-wrapper:after{
    width: 30px;
    height: 100%;
    background: var(--accent-gradient);
    color: #fff;
    text-align: center;
    top: 0;
    right: 0;
    content: "";
    position: absolute;
    border-radius: 0 5px 5px 0;
    display: block;
    z-index: 11;
}
.select-wrapper select{
    position: relative;
    z-index: 10;
    background: none;
}
select:not([multiple]) {
    background: var(--accent-gradient);
    background-image: url('/img/select-arrow-def.png');
    background-size: 40px 40px;
    background-position: right top;
    background-repeat: no-repeat;
    border-radius: 5px;
    appearance: unset;
    padding-left: 10px;
}
select:not([multiple]):focus, select:not([multiple]):active {
    background-image: url('/img/select-arrow.png');
}
select > button{
    foreground-image:url(stock:chevron-down);
    stroke:#f00 !important;
}
.dark-theme select:not([multiple]) {
    background-color: #222 !important;
}
.modal-content {
    background: var(--control-background) !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--text-primary);
    background-color: var(--background);
}
.input-group.filter-search {
    padding-right: 0px;
}
.header-control-separator {
    background-color: rgba(245,247,245,0.06);
}
.navbar-dropdown .dropdown-item:not(:first-child) {
    border-top: 1px solid rgba(245,247,245,0.06);
}
.navbar-dropdown .dropdown-item {
    border-color: rgba(245,247,245,0.06);
}
.dropdown-item:hover .dropdown-item-icon--inactive {
    display: inline !important;
}
.dropdown-item:hover .dropdown-item-icon--active {
    display: none;
}
.navbar-dropdown--primary .dropdown-item:hover .dropdown-item-icon--inactive {
    display: none !important;
}
.navbar-dropdown--primary .dropdown-item:hover .dropdown-item-icon--active {
    display: inline;
}
.navbar-dropdown .dropdown-item.active {
    background: var(--accent-gradient);
    border-radius: 100px;
    border-top: 1px solid transparent;
    color: #fff;
}
.navbar-dropdown--primary .dropdown-item.active {
    background: var(--background);
    color: var(--text-primary);
}
.dropdown-item.active .dropdown-item-icon--active {
    display: inline;
}
.dropdown-item.active .dropdown-item-icon--inactive {
    display: none;
}
.navbar-dropdown .dropdown-item.dropdown-item.dropdown-item.active+.dropdown-item {
    border-top: 1px solid transparent;
}
.navbar-dropdown:not(.navbar-dropdown--primary ) .dropdown-item:not(:hover) .dropdown-item-icon--active {
    display: inline;
}
.navbar-dropdown:not(.navbar-dropdown--primary ) .dropdown-item:not(:hover) .dropdown-item-icon--inactive {
    display: none;
}
.filter-search-input {
    max-width: 240px;
}
.table-item {
    margin: 0;
    height: 44px;
}
button:disabled {
    cursor: default;
    background: linear-gradient(0deg, var(--button-background-active), var(--button-background-active)), var(--button-background);
    opacity: 0.5;
}
.online-bullet {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #ddd;
    margin-right: 10px;
    border-radius: 20px;
}
.online-bullet.online {
    background: var(--theme-accent-color);
}

:root,
[data-bs-theme=light] {
    --theme-accent-color: #62A287;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;

}
.accordion {
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-border-width: var(--bs-border-width);
    --bs-accordion-border-radius: var(--bs-border-radius);
    --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-accordion-btn-padding-x: 0.9rem;
    --bs-accordion-btn-padding-y: 0.7rem;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(98, 162, 135, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    font-size: 16px;
    border: 0;
    background: transparent;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}
.accordion-button:not(.collapsed) {
    background-color: #fff;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
    transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}
.accordion-button:hover {
    z-index: 2;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: var(--bs-accordion-inner-border-radius);
    border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
    border-top: 0;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
    border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
    border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
    border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
    border-radius: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse {
    border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}
.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto;
}
#osm-map {
    z-index: 5;
}
.sidebar-menu {
    border-bottom: 0;
    z-index: 9;
}
.form-error-block {
    margin: 20px auto;
    width: 90%;
    max-width: 500px;
    padding: 10px 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    min-width: 250px;
    text-align: center;
}
.form-error-block img {
    margin: 15px;
}
.form-error-slim .form-error-block {
    display: flex;
    margin: 0px;
    align-items: center;
    max-width: 100%;
    min-width: unset;
    width: 100%;
    padding: 3px;
    text-align: left;
    background: #f9f0f0;
}
.form-error-slim .form-error-block img {
    margin: 5px 15px;
}
.dark-theme .form-error-slim .form-error-block {
    background: rgba(255, 255, 255, 0.1);
}
.dark-theme .table-hover tbody tr:hover {
    color: #ccc;
}
div.dt-container .dt-paging .dt-paging-button.disabled, div.dt-container .dt-paging .dt-paging-button.disabled:hover, div.dt-container .dt-paging .dt-paging-button.disabled:active {
    color: var(--text-primary);
    opacity: 0.5;
}
.dark-theme div.dt-container .dt-paging .dt-paging-button.disabled, .dark-theme div.dt-container .dt-paging .dt-paging-button.disabled:hover, .dark-theme div.dt-container .dt-paging .dt-paging-button.disabled:active {
    color: rgb(244, 244, 244) !important;
}
.breadcrumbs {

}
@media (max-width: 767px) {
    .table-item {
        flex-flow: wrap;
        height: auto !important;
        padding: 0 6px;
    }
    .table-item__column {
        min-height: 30px;
    }
    #cmsv6flash {
        max-width: 100%;
    }
    #cmsv6flash > div > div {
        width: 100% !important;
        min-height: 250px;
    }
    .video-playing-mode-toggler {
        display: none !important;
    }
    .table td, .table th {
        word-break: break-word;
    }
    .auth-content__logo {
        margin: 25px auto 0 !important;
        max-width: 50vw;
    }
    .auth-content__logo img {
        max-width: 100%;
    }
    .auth-form__input[name="code"] {
        max-width: 60%;
    }
    .wrapper {
        padding: 0 12px 40px !important;
    }
}
@media (min-width: 992px) {
    .modal-xl {
        max-width: 90% !important;
    }
}
@media (width <= 1650px) {
    .navbar {
        --control-height: 60px;
    }
}
@media (width <= 1390px) {
    .navbar {
        --control-height: 48px;
    }
}

.nav-tabs .nav-link {
    background-color: #f5f5f5;
}

.dark-theme .nav-tabs .nav-link {
    background-color: rgba(255,255,255,0.2);
}
.dark-theme .nav-tabs .dark-theme .nav-item.show .nav-link, .dark-theme .nav-tabs .nav-link.active {
    color: var(--text-primary);
    background-color: var(--background);
}

.alarm-list-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.alarm-list-header-slice {
    display: flex;
    align-items: center;
    gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap;
}

.alarm-list-view-type-toggler {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 40px;
    border-radius: 100px;
    overflow: hidden;
}

.alarm-list-view-type-toggler__option {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
    background: var(--control-background);
    cursor: pointer
}

.alarm-list-view-type-toggler__option:first-child {
    padding-right: 10px
}

.alarm-list-view-type-toggler__option:last-child {
    padding-left: 10px
}

.alarm-list-view-type-toggler__option:not(:last-child) {
    border-right: 1px solid #F3F3F3
}

.alarm-list-view-type-toggler__option.active {
    background: var(--accent-gradient);
    color: #fff
}

.dark-theme .alarm-list-view-type-toggler__option:not(:last-child) {
    border-right: 1px solid #383838
}

.dark-theme .alarm-list-view-type-toggler__option {
    color: var(--text-primary)
}

.alarm-card-map {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px
}
.filter-control.filter-control-sm {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
}
