.ui-widget, .ui-widget .ui-widget {
    font-size: 12px;
}

html a,
html .ui-widget-content a {
    color: #337ab7;
}

.ui-widget button.btn {
    font-size: 14px;
}

.navbar-btn {
    margin-right: 4px;
}

/*==============================================================
  CRUD System
  ==============================================================*/



/*==============================================================
  No quickbar
  ==============================================================*/
body {
    margin-bottom: 0 !important;
}


/*==============================================================
  FORMS - Increased font size
  ==============================================================*/

select,
textarea,
input[type="text"],
input[type="textbox"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input,
.clearable-textbox-widget {
    padding-left: 2px;
    padding-right: 2px;
    max-width: 100%;
}

/* Override select padding right to fix comment on bug 85534 */
select {
    padding-right: 16px;
}

.input-lg,
input.input-lg {
    font-size: 18px;
    padding: 10px 8px;
}

input.input-lg:focus {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}


.clearable-textbox-widget input,
.clearable-textbox-widget input:focus {
    /*line-height: 2em;*/
    height: 2em;
}
.clearable-textbox-widget {
    height: 2em;
}
.ui-notifications-icon {
    padding: 3px 5px 1px 5px;
    border-radius: 8px;
}
a.ui-notifications-icon.ui-state-highlight {
    background: none;
    outline: none;
    color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
    background-color: #FFF;
    background-color: rgba(255, 255, 255, 0.66);
    color: #999 !important;
    color: rgba(0, 0, 0, 0.43) !important;
    border: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    opacity: 1;
}


/*==============================================================
  Public Login Forms CSS
  ==============================================================*/
.openId-login-enabled .rec1-login-form {
    display: none;
}

.rec1-login-dropdown {
    width: 450px;
}

.rec1-direct-login{
    box-shadow: none !important;
    border:none !important;
}

html .rec1-login-dropdown > li > a {
    display: inline-block;
    width: 98%;
    padding: 1em;
    margin: 4px;
    text-decoration: none;
    font-size: 1.2em;
    white-space: nowrap;
    text-align: left;
}

.rec1-login-dropdown > li {
    padding: 10px;
}

.rec1-login-dropdown > li > a strong {
    font-weight: bold;
}

.rec1-login-dropdown > li > a > i {
    font-size: 32px;
    line-height: .5em;
    vertical-align: middle;
    border-right: 1px #FFF solid;
    border-right-color: rgba(255, 255, 255, 0.33);
    padding-right: 10px;
    margin-right: 10px;
}

.rec1-login-button-facebook {
    color: #fff !important;
    background-color: #3B5998 !important;
    border-radius: 5px;
    width: 100%;
}

.rec1-login-button-google {
    color: #fff !important;
    background-color: #d34836 !important;
    border-radius: 5px;
    font-weight: 100;
}

.rec1-login-toggle-button {
    color: #fff !important;
    background-color: #72b334 !important;
    border-radius: 5px;
    width: 100%;
}

.rec1-login-button-civicplus {
    color: #fff !important;
    background-color: #af282f !important;
    border-radius: 5px;
    width: 100%;
}

.rec1-signup-toggle-button {
    color: #fff !important;
    background-color: #5bc0de !important;
    border-radius: 5px;
    width: 100%;
}


/*==============================================================
  Groove Widget in 3.0
  ==============================================================*/
html #groove-feedback {
    /*display: none !important;*/
    -ms-animation: none;
    -moz-animation: none;
    -webkit-animation: none;
    animation: none;
    right: 50px !important;
    bottom: 0;
    text-shadow: none;
}


/*==============================================================
  Menu/MenuItem closure components CSS in 3.0
  ==============================================================*/
.goog-menu {
    background: #fff;
    border-color: #ccc #666 #666 #ccc;
    border-style: solid;
    border-width: 1px;
    cursor: default;
    font: normal 13px Arial, sans-serif;
    margin: 0;
    outline: none;
    padding: 4px 0;
    position: absolute;
    z-index: 20000; /* Arbitrary, but some apps depend on it... */
}

/*
 * Copyright 2009 The Closure Library Authors. All Rights Reserved.
 *
 * Use of this source code is governed by the Apache License, Version 2.0.
 * See the COPYING file for details.
 */

/*
 * Standard styling for menus created by goog.ui.MenuItemRenderer.
 *
 * @author attila@google.com (Attila Bodis)
 */


/**
 * State: resting.
 *
 * NOTE(mleibman,chrishenry):
 * The RTL support in Closure is provided via two mechanisms -- "rtl" CSS
 * classes and BiDi flipping done by the CSS compiler.  Closure supports RTL
 * with or without the use of the CSS compiler.  In order for them not
 * to conflict with each other, the "rtl" CSS classes need to have the @noflip
 * annotation.  The non-rtl counterparts should ideally have them as well, but,
 * since .goog-menuitem existed without .goog-menuitem-rtl for so long before
 * being added, there is a risk of people having templates where they are not
 * rendering the .goog-menuitem-rtl class when in RTL and instead rely solely
 * on the BiDi flipping by the CSS compiler.  That's why we're not adding the
 * @noflip to .goog-menuitem.
 */
.goog-menuitem {
    color: #000;
    font: normal 13px Arial, sans-serif;
    list-style: none;
    margin: 0;
    /* 28px on the left for icon or checkbox; 7em on the right for shortcut. */
    padding: 4px 7em 4px 28px;
    white-space: nowrap;
}

/* BiDi override for the resting state. */
/* @noflip */
.goog-menuitem.goog-menuitem-rtl {
    /* Flip left/right padding for BiDi. */
    padding-left: 7em;
    padding-right: 28px;
}

/* If a menu doesn't have checkable items or items with icons, remove padding. */
.goog-menu-nocheckbox .goog-menuitem,
.goog-menu-noicon .goog-menuitem {
    padding-left: 12px;
}

/*
 * If a menu doesn't have items with shortcuts, leave just enough room for
 * submenu arrows, if they are rendered.
 */
.goog-menu-noaccel .goog-menuitem {
    padding-right: 20px;
}

.goog-menuitem-content {
    color: #000;
    font: normal 13px Arial, sans-serif;
}

/* State: disabled. */
.goog-menuitem-disabled .goog-menuitem-accel,
.goog-menuitem-disabled .goog-menuitem-content {
    color: #ccc !important;
}
.goog-menuitem-disabled .goog-menuitem-icon {
    opacity: 0.3;
    -moz-opacity: 0.3;
    filter: alpha(opacity=30);
}

/* State: hover. */
.goog-menuitem-highlight,
.goog-menuitem-hover {
    background-color: #d6e9f8;
    /* Use an explicit top and bottom border so that the selection is visible
     * in high contrast mode. */
    /*border-color: #d6e9f8;*/
    /*border-style: dotted;*/
    /*border-width: 1px 0;*/
    /*padding-bottom: 3px;*/
    /*padding-top: 3px;*/
}

/* State: selected/checked. */
.goog-menuitem-checkbox,
.goog-menuitem-icon {
    background-repeat: no-repeat;
    height: 16px;
    left: 6px;
    position: absolute;
    right: auto;
    vertical-align: middle;
    width: 16px;
}

/* BiDi override for the selected/checked state. */
/* @noflip */
.goog-menuitem-rtl .goog-menuitem-checkbox,
.goog-menuitem-rtl .goog-menuitem-icon {
    /* Flip left/right positioning. */
    left: auto;
    right: 6px;
}

.goog-option-selected .goog-menuitem-checkbox,
.goog-option-selected .goog-menuitem-icon {
    /* Client apps may override the URL at which they serve the sprite. */
    background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -512px 0;
}

/* Keyboard shortcut ("accelerator") style. */
.goog-menuitem-accel {
    color: #999;
    /* Keyboard shortcuts are untranslated; always left-to-right. */
    /* @noflip */ direction: ltr;
    left: auto;
    padding: 0 6px;
    position: absolute;
    right: 0;
    text-align: right;
}

/* BiDi override for shortcut style. */
/* @noflip */
.goog-menuitem-rtl .goog-menuitem-accel {
    /* Flip left/right positioning and text alignment. */
    left: 0;
    right: auto;
    text-align: left;
}

/* Mnemonic styles. */
.goog-menuitem-mnemonic-hint {
    text-decoration: underline;
}

.goog-menuitem-mnemonic-separator {
    color: #999;
    font-size: 12px;
    padding-left: 4px;
}



.goog-menuseparator {
    border-top: 1px solid #ccc;
    margin: 4px 0;
    padding: 0;
}


/*==============================================================
  MenuBar closure components CSS in 3.0
  ==============================================================*/
.goog-menubar {
    cursor: default;
    outline: none;
    position: relative;
    white-space: nowrap;
    background: #fff;
    margin: 0 1px;
}

.goog-menubar .goog-menu-button {
    padding: 1px 1px;
    margin: 0px 0px;
    outline: none;
    border: none;
    background: #fff;
    /* @alternate */ border: 1px solid #fff;
}

.goog-menubar .goog-menu-button-dropdown {
    display: none;
}

.goog-menubar .goog-menu-button-outer-box {
    border: none;
}

.goog-menubar .goog-menu-button-inner-box {
    border: none;
}

.goog-menubar .goog-menu-button-hover {
    background: #eee;
    border: 1px solid #eee;
}

.goog-menubar .goog-menu-button-open {
    background: #fff;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #fff;
}

.goog-menubar .goog-menu-button-disabled {
    color: #ccc;
}

/*==============================================================
  MenuButton closure components CSS in 3.0
  ==============================================================*/

/* State: resting. */
.goog-menu-button {
    /* Client apps may override the URL at which they serve the image. */
    background: #ddd url(//ssl.gstatic.com/editor/button-bg.png) repeat-x top left;
    border: 0;
    color: #000;
    cursor: pointer;
    list-style: none;
    margin: 2px;
    outline: none;
    padding: 0;
    text-decoration: none;
    vertical-align: middle;
}

/* Pseudo-rounded corners. */
.goog-menu-button-outer-box,
.goog-menu-button-inner-box {
    border-style: solid;
    border-color: #aaa;
    vertical-align: top;
}
.goog-menu-button-outer-box {
    margin: 0;
    border-width: 1px 0;
    padding: 0;
}
.goog-menu-button-inner-box {
    margin: 0 -1px;
    border-width: 0 1px;
    padding: 3px 8px;
}

/* Pre-IE7 IE hack; ignored by IE7 and all non-IE browsers. */
* html .goog-menu-button-inner-box {
    /* IE6 needs to have the box shifted to make the borders line up. */
    left: -1px;
}

/* Pre-IE7 BiDi fixes. */
* html .goog-menu-button-rtl .goog-menu-button-outer-box {
    /* @noflip */ left: -1px;
    /* @noflip */ right: auto;
}
* html .goog-menu-button-rtl .goog-menu-button-inner-box {
    /* @noflip */ right: auto;
}

/* IE7-only hack; ignored by all other browsers. */
*:first-child+html .goog-menu-button-inner-box {
    /* IE7 needs to have the box shifted to make the borders line up. */
    left: -1px;
}
/* IE7 BiDi fix. */
*:first-child+html .goog-menu-button-rtl .goog-menu-button-inner-box {
    /* @noflip */ left: 1px;
    /* @noflip */ right: auto;
}

/* Safari-only hacks. */
::root .goog-menu-button,
::root .goog-menu-button-outer-box,
::root .goog-menu-button-inner-box {
    /* Required to make pseudo-rounded corners work on Safari. */
    line-height: 0;
}
::root .goog-menu-button-caption,
::root .goog-menu-button-dropdown {
    /* Required to make pseudo-rounded corners work on Safari. */
    line-height: normal;
}

/* State: disabled. */
.goog-menu-button-disabled {
    background-image: none !important;
    opacity: 0.3;
    -moz-opacity: 0.3;
    filter: alpha(opacity=30);
}
.goog-menu-button-disabled .goog-menu-button-outer-box,
.goog-menu-button-disabled .goog-menu-button-inner-box,
.goog-menu-button-disabled .goog-menu-button-caption,
.goog-menu-button-disabled .goog-menu-button-dropdown {
    color: #333 !important;
    border-color: #999 !important;
}

/* Pre-IE7 IE hack; ignored by IE7 and all non-IE browsers. */
* html .goog-menu-button-disabled {
    margin: 2px 1px !important;
    padding: 0 1px !important;
}

/* IE7-only hack; ignored by all other browsers. */
*:first-child+html .goog-menu-button-disabled {
    margin: 2px 1px !important;
    padding: 0 1px !important;
}

/* State: hover. */
.goog-menu-button-hover .goog-menu-button-outer-box,
.goog-menu-button-hover .goog-menu-button-inner-box {
    border-color: #9cf #69e #69e #7af !important; /* Hover border wins. */
}

/* State: active, open. */
.goog-menu-button-active,
.goog-menu-button-open {
    background-color: #bbb;
    background-position: bottom left;
}

/* State: focused. */
.goog-menu-button-focused .goog-menu-button-outer-box,
.goog-menu-button-focused .goog-menu-button-inner-box {
    border-color: orange;
}

/* Caption style. */
.goog-menu-button-caption {
    padding: 0 0 0 0;
    vertical-align: top;
}

/* Dropdown arrow style. */
.goog-menu-button-dropdown {
    height: 15px;
    width: 7px;
    /* Client apps may override the URL at which they serve the sprite. */
    background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -388px 0;
    vertical-align: top;
}

/* Pill (collapsed border) styles. */
/* TODO(gboyer): Remove specific menu button styles and have any button support being a menu button. */
.goog-menu-button-collapse-right,
.goog-menu-button-collapse-right .goog-menu-button-outer-box,
.goog-menu-button-collapse-right .goog-menu-button-inner-box {
    margin-right: 0;
}

.goog-menu-button-collapse-left,
.goog-menu-button-collapse-left .goog-menu-button-outer-box,
.goog-menu-button-collapse-left .goog-menu-button-inner-box {
    margin-left: 0;
}

.goog-menu-button-collapse-left .goog-menu-button-inner-box  {
    border-left: 1px solid #fff;
}

.goog-menu-button-collapse-left.goog-menu-button-checked
.goog-menu-button-inner-box {
    border-left: 1px solid #ddd;
}



/*==============================================================
  Autocomplete closure components CSS in 3.0
  ==============================================================*/

.ac-renderer {
    /*font: normal 13px Arial, sans-serif;*/
    position: absolute;
    background: #fff;
    border: 1px solid #DDD;
    -moz-box-shadow: 1px 1px 8px rgba(102, 102, 102, .4);
    -webkit-box-shadow: 1px 1px 8px rgba(102, 102, 102, .4);
    box-shadow: 1px 1px 8px rgba(102, 102, 102, .4);
    width: 300px;
}

.ac-row {
    cursor: pointer;
    padding: .4em;
}

.ac-highlighted {
    font-weight: bold;
}

.ac-active {
    background-color: #b2b4bf;
}



/*==============================================================
  WorkspacePane / WorkspacePaneHeader / WorkspacePaneContent CSS
  ==============================================================*/
.workspace-pane {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.workspace-pane-header {
    height: 30px;
    background-color: #EEE;
    border: 1px #ddd solid;
    position: relative;
    margin: 1px;
    cursor: default;
}
.workspace-pane-header-title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    max-width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    font-weight: bold;
    font-size: 18px;
}

.workspace-pane-content {
    position: absolute;
    top: 32px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    overflow:hidden;
}

.workspace-pane-header-input {
    margin-top: 2px;
    height: 24px;
    font-size: 13px;
    padding: 0 6px;
    float: right;
    margin-right: 4px;
}

.workspace-pane-btn {
    height: 24px;
    line-height: 22px;
    padding: 0 6px;
    border-radius: 24px;
    font-size: 13px;
    margin-top: 2px;
    margin-right: 4px;
    float: right;
}

.workspace-pane-btn-group {
    height: 24px;
    margin-top: 2px;
    margin-right: 4px;
    float: right;
}

.workspace-pane-btn-group > .workspace-pane-btn {
    margin: 0;
    float: none;
}

.workspace-pane-btn-checked {
    z-index: 2;
    color: #333;
    background-color: #e6e6e6;
    background-image: none;
    border-color: #adadad;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}


/*==============================================================
  Handsontable Modification: SelectEditor
  CSS for "SelectMenu" editor used in a given cell
  ==============================================================*/
.htSelectEditor {
    padding: 0;
    position: absolute;
    /* This hack enables to change <select> dimensions in WebKit browsers */
    -webkit-appearance: menulist-button !important;

    /* No background color/image that is traditionally used in REC1 */
    background: white;
    background-image: none !important;
    line-height: inherit;
    border-radius: 0;
    /* Match font size of Handsontable for seamlessness */
    font-size: 14px;
    /* Offset by 1px for seamlessness */
    margin: 0px !important;
    max-width: none;
}

.handsontableInput {
    box-shadow: 0 0 0 2px #5292f7 inset !important;
}

.animate-spin {
    animation-name: animate-spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#bulk-flag-edit-content form {
    overflow-y: scroll;
}

#bulk-flag-edit-content table {
    table-layout: unset !important;
}

@keyframes animate-spin {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}