
.report-template-wizard-general {
    margin: 2% 10%;

    .rows-selector {
        margin-top: 8%;

        select {
            width: 25%;
        }
    }
    .ember-movenium-bootstrap-container {
        margin-top: 10%;
        .title {
            color: #333333;
            font-weight: 700;
        }

        .ember-power-select-trigger:hover{
            border-bottom: #24e268 1px solid;
        }

    }
}
.draggable-item {
    .active {
        height: 8px;
        background-color: $background-dark;
        border: 2px dashed $text-secondary;
    }
    .inactive {
        height: 0px;
    }
    &:hover {
        cursor: grab !important;
    }
    &:active {
        cursor: grabbing !important;
    }
}
.report-template-wizard-columns {
    display: inline-block;
    width: 100%;
    padding: 0 20px 20px 20px;

    .radio-group {
        display: flex;
        justify-content: space-evenly;

        .sum-button {
            padding: 1px 5px;
            float: right;
        }
    }
    .selected-rows {
        display: flex;
        flex-flow: column;
    }
    .wizard-column {
        height: 40vh;
        overflow-y: auto;
        outline: 1px solid;
        width: 50%;
        float: left;
        padding: 10px;

        &.sums {
            height: calc(40vh - 22px);
        }

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

        .col-title {
            text-align: center;
            margin: 5px;
        }

        h4 {
            text-align: center;
            //font-weight: bold;
            font-size: 18px;
        }




        .col {
            position: relative;
            outline: 1px solid;
            background-color: $background-dark;
            padding-left: 5px;
            padding-right: 5px;
            line-height: 32px;
            width: 100%;
            height: 32px;
            font-size: 14px;
            display: flex;
            justify-content: space-between;

            .drag {
                flex: 0 0 20px;
                font-size: 14px;
                vertical-align: middle;
            }
            .name {
                font-size: 14px;
                flex: 1;
            }
            .delete {
                flex: 0 0 20px;
                font-size: 18px;
                margin-top: auto;
                margin-bottom: auto;
            }
        }

        .all-filters-header {
            display: flex;
            justify-content: center;
        }

        .empty-placeholder {
            text-align: center;
            margin-top: auto;
            margin-bottom: auto;
        }
        .empty-placeholder-title {
            font-size: 18px;
        }
        .empty-placeholder-subtitle {
            font-size: 14px;
            color: $text-secondary;
        }
    }
    .filter-container {
        display: flex;
        flex-direction: column;
        font-size: 14px;

        h6 {
            text-align: center;
            margin-top: 15px;
            font-size: 16px;
        }

        .filter-col {
            outline: 1px solid $text-secondary;
            background-color: #eeeeee;
            padding-left: 5px;
            margin: 0px 10px;
            line-height: 32px;
            height: 32px;
            font-weight: bold;
            font-size: 14px;

            span {
                margin-top: 4px;
            }
        }

        .filter-field {
            outline: 1px solid $text-secondary;
            margin: 1px 15px;
            padding-left: 5px;
            line-height: 36px;
            background-color: $color-white;
            display: flex;
            height: 38px;
            //display: inline-flex;
            //height: auto;

            .filter-name {
                margin-right: 1%;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                flex: 30%;
                font-size: 14px;
            }

            .field-comp-filter {
                flex: 5;
            }
            .trashcan-icon {
                flex: 10%;
                margin: auto;
                text-align: center;
                font-size: 14px;
            }

            div:first-of-type {
                flex: 60%;
            }

            .ember-power-select-trigger {
                min-width: 100px;
                height: 32px;
                line-height: 30px;
                margin-top: 3px;
            }
        }
    }
    .disabled {
        pointer-events: none;
        opacity: 0.6;
    }
}
