#dataRepresentation {
    @borderColor: @mediumGrey;
    @dataUnread: @lightGrey;
    @dataRead: @extraGrey;
    padding: 10px;

    .dataRepresentationDataSet {
        margin-bottom: 10px;

        .header {
            background-color: @turquoise;
            padding: 10px;
            color: @white;
            border-top-right-radius: 4px;
            border-top-left-radius: 4px;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: center;

            button {
                background: none;
                border: 0;
                border-radius: 50%;
                font-size: 18px;
                color: @turquoise;
                background-color: @white;

                span {
                    padding: 0 3px;
                }
            }
        }

        .content {
            background-color: @white;
            padding: 10px;
            border-bottom-right-radius: 4px;
            border-bottom-left-radius: 4px;
            border-bottom: 2px solid @mediumGrey;

            .label {
                font-size: 13px;
            }
            .value {
                font-size: 22px;
            }
        }
    }

    > #switch {
        margin: 14px 0;
        padding: 0 14px;
    }

    .dataRepresentationActionButton {
        width: 100%;
        height: 60px;

        position: fixed;
        bottom: 68px;

        transition: all 0.4s ease;
        &.btn-share:after {
            content: 'Share Link to Responses';
        }
        &.btn-remove:after {
            content: 'Delete Selected';
        }
        &:focus {
            outline: none;
        }
    }

    .noDataInfo {
        text-align: center;
        padding: 0 35px;

        .head {
            color: @darkGrey;
            margin: 18px 0;
        }

        .glyphs {
            width: 60%;
            max-width: 160px;
            margin: auto;
            display: flex;
            justify-content: space-around;

            img {
                width: 62px;
                height: 62px;
                display: block;
                padding: 0 5px;
            }
        }

        .sub {
            color: @mediumGrey;
            font-size: 14px;
            margin: 20px 0;
            line-height: 1.666;
        }
    }
}
