input.readonly, select.readonly {
    pointer-events: none !important;
}
.flex-help {
    display: flex;
    flex-flow: row;
    margin: 0 0 10px;
    gap: 5px;
}
.no-help { width: 215px; }
.js-help {
    width: 1185px;
    margin: 5px 6px 0;
    color: orange;
}
.value-help, .flex-help .js-help {
    width: 600px;
}
.select-help { width: 170px !important; }
.sortable-handle { cursor: grab !important; }
.sortable-handle:before{
    content: '⋮';
    display: inline-block;
    padding: 6px;
    font-weight: bold;
    text-align: center;
}
.bx-panel-tooltip { min-width: 550px; }
.bx-panel-tooltip .bx-panel-tooltip-text { font-size: 14px !important; }
#bitrix66-composite-loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
    z-index: 9999999999;
}
#bitrix66-composite-loading.view {
    display: block;
}
#bitrix66-composite-loading .side-panel-default-loader-container {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#bitrix66-composite-loading .side-panel-default-loader-circular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: side-panel-loader-rotate 2s linear infinite;
    animation: side-panel-loader-rotate 2s linear infinite;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
#bitrix66-composite-loading .side-panel-default-loader-path {
    stroke: #bfc3c8;
    stroke-dasharray: 20,200;
    stroke-dashoffset: 0;
    -webkit-animation: side-panel-loader-dash 1.5s ease-in-out infinite;
    animation: side-panel-loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}
@-webkit-keyframes side-panel-loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes side-panel-loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@-webkit-keyframes side-panel-loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes side-panel-loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}