.bg__tl-actions {
    padding: 10px 10px 0 10px;
    background-color: $clGrey;
    border-bottom: 1px solid $clGreyTint;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    > input {
        padding: 5px 25px 5px 5px;
        border-radius: 2px;
        border: 1px solid $clGreyTint;
        width: $tlLeftWidth - 20px;
        box-sizing: border-box;

        background-image: $iconSearchUrl;
        background-position: center right 5px;
        background-size: 18px;
        background-repeat: no-repeat;
        margin-bottom: 10px;
        font-size: 13.5px;
    }

    > .right {
        user-select: none;
        padding-bottom: 10px;
        > div {
            padding: 5px 10px;
            display: inline-block;
            margin-right: 5px;
            background-color: mix($clGrey, $clGreyTint, 50%);
            border-radius: 2px;
            text-transform: uppercase;
            height: 30px;
            min-width: 30px;
            vertical-align: top;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            &:hover {
                background-color: mix($clGrey, $clGreyTint, 80%);
            }

            // Zoom to selected
            &.zoom-selected {
                font-family: $fontHeading;
                background-image: $iconZoomToSelectedUrl;
                background-repeat: no-repeat;
                background-position: center;
                font-size: 0;
                width: 30px;
                height: 30px;
            }

            // Zoom in/out
            $tlZoomIconSize: 12px;
            &.zoom-out,
            &.zoom-in {
                position: relative;
                font-size: 0;
                &:before,
                &:after {
                    content: '';
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    margin-left: -$tlZoomIconSize/2;
                    width: $tlZoomIconSize;
                    margin-top: -1px;
                    height: 2px;
                    background-color: $clDarkGrey;
                }
            }
            &.zoom-in {
                &:before {
                    transform: rotate(90deg);
                }
            }

            // Previous/Next
            &.next,
            &.prev {
                background-image: $arrowRightDarkUrl;
                background-position: center center;
                background-repeat: no-repeat;
                font-size: 0;
            }

            &.prev {
                transform: rotate(180deg);
            }
        }
    }
}
