.promotator-composer {
    .hndle { cursor: default !important; }

    h1 { margin: 0; }
    h2 {
        margin: 0.5em auto;
        padding: 0.25em 0;
    }

    #error {
        display: inline-block;
        position: absolute;
        right: 1em;
        bottom: 1.75em;
        color: #e74c3c;
    }

    #success {
        display: inline-block;
        position: absolute;
        right: 1em;
        bottom: 1.75em;
        color: #2ecc71;
    }

    .wide-fat {
        display: block;
        width: 100%;
    }

    .row {
        display: block;
        padding: 0 1em;
        margin-bottom: 1em;
    }

    #posts-selector {
        display: block;
        width: 100%;
        max-height: 300px;
        overflow-x: hidden;
        overflow-y: auto;
        padding-right: 0.5em;
    }

    .post-container {
        display: block;
        width: 100%;
        cursor: pointer;
        margin-bottom: 1em;
        position: relative;

        &:after {
            content: " ";
            display: inline-block;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translate(0, -50%);
            background-color: rgba(46, 204, 113, 0.25);
            width: 1em;
            height: 1em;
            border-radius: 100%;
        }

        &.active {
            &:after {
                background-color: rgba(46, 204, 113, 1) !important;
            }
        }

        &:hover,
        &:active,
        &:focus {
            &:after {
                background-color: rgba(46, 204, 113, 0.75);
            }
        }

        .featured-image {
            display: inline-block;
            width: 4em;
            height: 4em;
            vertical-align: middle;
            background-size: cover;
            background-position: center;
            background-color: #eee;
            margin-right: 0.5em;
        }

        .content-container {
            display: inline-block;
            width: calc(100% - 4.85em);
            vertical-align: middle;

            .post-title {
                margin: 0;
                padding: 0;
            }
        }
    }
}
