.ft-svg {
    display: block;

    .border {
        fill: transparent;
        stroke: #c2c2c2;
        stroke-width: 1;
    }

    .light-border {
        fill: transparent;
        stroke: #f2f2f2;
        stroke-width: 1;
    }

    .dark-border {
        fill: transparent;
        stroke: #D9D2D0;
        stroke-width: 1;
    }

    .grey-txt {
        fill: $light-grey;
        font-family: helvetica, arial;
        font-size: 9px;
    }

    &-grey-txt {
        display: inline-block;
        fill: $light-grey;
        font-family: helvetica, arial;
        font-size: 9px;
    }

    .grey-txt-bold {
        fill: $primary-txt-color;
        font-family: helvetica, arial;
        font-size: 9px;
    }

    .actuals-contracted-line {
        fill: none;
        stroke-width: 2;
        stroke: $primary-blue;
    }

    .projected-line {
        fill: none;
        stroke-dasharray: 4, 4;
        stroke-width: 2;
        stroke: $primary-green;
    }

    .original-projected-line {
        fill: none;
        stroke-dasharray: 6, 6;
        stroke-width: 2;
        stroke: $peacock;
    }

    .expensed-line {
        fill: none;
        stroke-width: 2;
        stroke: $primary-purp;
    }

    &.windows {
        .actuals-contracted-line,
        .projected-line,
        .original-projected-line,
        .expensed-line,
        .area {
            opacity: .25;
        }

    }
}

.ft-chart {
    border: 1px solid #D9D2D0;
    border-radius: 3px;
    clear: both;
    overflow: hidden;
    position: relative;

    .hover-spot {
        left: 0;
        position: absolute;
        top: 0;
        z-index: 100;

        &.clickable {
            cursor: pointer;
        }
    }

    .today-line {
        stroke: $timberwolf;
        stroke-width: 1;
    }
}

.ft-controls {
    margin-bottom: 10px;
    padding-top: 10px;

    .range {
        padding-top: 13px;
    }

    .DropdownButton {
        display: inline-block;
        margin-left: 15px;

        .Icons-chevron {
            fill: $rhino;
        }
    }

    .checkbox {
        display: inline-block;
        margin-right: 40px;

        &:last-child {
            margin-right: 0;
        }
    }

    .ft-original-projection-line {
        margin: 0 auto;
        width: 15px;
    }

    .ranges {
        display: inline-block;
        margin-bottom: -11px;
    }
}

.Empty-row {
    text-align: center;

    &-wrapper {
        color: $grey_300;
        margin: 70px 0;
    }

    &-header {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    &-subheader{
        font-size: 18px;
    }
}
