.test-container {
    position: relative;
    height: calc(100vh - 30px);
    padding: 15px 5px;
    display: flex;
    background: #f4f4f6;

    .chart-section {
        position: relative;
        height: 100%;
        width: calc(100vw - 160px);
        border-radius: 5px;
    }
    .action-section {
        height: 100%;
        width: 150px;
        overflow-y: scroll;

        .form-row {
            padding: 0 10px;
            display: block;
            margin-bottom: 6px;
        }
        input,
        select {
            width: 100%;
            box-sizing: content-box;
        }
        input[type='checkbox'] {
            width: auto;
        }
        button {
            border-radius: $border-radius;
            background: #dedede;
            border: 1px solid #aaa;
            padding: 5px;
            font-size: 10px;
        }
        .card {
            padding: 5px 10px 10px;
            display: block;
            background-color: #ddd;
            margin-bottom: 15px;
            border-radius: 5px;

            h3 {
                margin: 5px 0;
                text-align: center;
            }
            .card-body {
                background-color: #fff;
                border-radius: 5px;
                padding: 5px;

                .form-row {
                    pad: 0px;
                }
            }
        }
    }
}

.chart-marker-line {
    background: #ff9900;
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0px;
}

.chart-marker-circle {
    border-radius: 50%;
    border: 6px solid #baccff;
    padding: 5px;
    background: transparent;
    margin: 0 0px -8px -8px;
}

.chart-marker-historical {
    width: 2px;
    height: 100%;
    border-left: 1.5px dashed #2a3052;
    top: 0px;
    position: absolute;

    span {
        background: #2a3052;
        border-radius: 3px;
        white-space: nowrap;
        left: -54px;
        position: absolute;
        bottom: 0px;
        padding: 1px 9px;
        color: #fff;
        font-size: 10px;
        line-height: 14px;
    }
}

.portal-node .cq-modal__overlay {
    position: fixed;
    z-index: 9;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
}
