/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.center-block-50{
    width:50%
}
.center-block-75{
    width:75%
}
.scrollable-content{
    height: 200px;
    overflow: scroll;
}
#wp-submit{
    background-color: #337ab7;
    letter-spacing: 1px;
}
a.button{
    background-color: #337ab7;
    vertical-align: bottom;
    margin:2px;
    letter-spacing: 1px;
}
a.cancel-button{
    background-color: #f0ad4e;
    color: #3b3b3b;
}
a.delete-button{
    background-color: #d9534f;
}

@media only screen and (max-width: 767px) {
    .center-block-50{
        width:85%
    }
}
@media only screen and (max-width: 600px) {
    .center-block-50, .center-block-75{
        width:100%
    }
}


/* highlight results */
.ui-autocomplete span.hl_results {
    background-color: #ffff66;
}

/* loading - the AJAX indicator */
.ui-autocomplete-loading {
    background: white url('../../images/ajax-loader-ball.gif') right center no-repeat;
}

/* scroll results */
.ui-autocomplete {
    max-height: 250px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding for vertical scrollbar */
    padding-right: 5px;
}

.ui-autocomplete li {
    font-size: 16px;
}

/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
    height: 250px;
}