/* community.css
   Focused styles for the Community pages, extracted from the retired
   BlogStyleSheet.css. Contains only the widget/search/submit rules that the
   Community views actually reference (Index search box + ViewCommunity
   "Post Comment" button). */

/* Widgets
--------------------------------------------- */
.widget {
    /* margin: 0 0 1.5em;*/
}

    .widget select {
        width: 100%;
    }

    .widget li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

/* Search widget (Community/Index search box) */
.widget_search .search-form {
    position: relative;
}

    .widget_search .search-form .form-control {
        border: 2px solid transparent;
        /*height: 55px;*/
        padding-left: 20px;
        background: #F5F5F5;
    }

        .widget_search .search-form .form-control:focus {
            border-color: #2eca7f;
            box-shadow: unset;
        }

    .widget_search .search-form .search-submit {
        position: absolute;
        right: 13px;
        top: 0px;
        height: 100%;
        background: transparent;
        border: 1px solid transparent;
        color: #1a2d62;
    }

/* Submit button (ViewCommunity "Post Comment") */
.submit {
    background: #2eca7f;
    color: #fff;
    border: 1px solid #2eca7f;
    transition: .5s;
    padding: 10px 30px;
    /*border-radius: 30px;*/
}

    .submit:hover,
    .submit:focus {
        background: #1a2d62;
        color: #fff;
        border: 1px solid #1a2d62;
    }
