/***********************************************************************************
 * Copyright (C) 2011-2015 X2Engine Inc. All Rights Reserved.
 *
 * X2Engine Inc.
 * P.O. Box 66752
 * Scotts Valley, California 95067 USA
 * Company website: http://www.x2engine.com
 *
 * X2Engine Inc. grants you a perpetual, non-exclusive, non-transferable license
 * to install and use this Software for your internal business purposes only
 * for the number of users purchased by you. Your use of this Software for
 * additional users is not covered by this license and requires a separate
 * license purchase for such users. You shall not distribute, license, or
 * sublicense the Software. Title, ownership, and all intellectual property
 * rights in the Software belong exclusively to X2Engine. You agree not to file
 * any patent applications covering, relating to, or depicting this Software
 * or modifications thereto, and you agree to assign any patentable inventions
 * resulting from your use of this Software to X2Engine.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.
 **********************************************************************************/
/***********************************************************************************
 * Copyright (C) 2011-2015 X2Engine Inc. All Rights Reserved.
 *
 * X2Engine Inc.
 * P.O. Box 66752
 * Scotts Valley, California 95067 USA
 * Company website: http://www.x2engine.com
 *
 * X2Engine Inc. grants you a perpetual, non-exclusive, non-transferable license
 * to install and use this Software for your internal business purposes only
 * for the number of users purchased by you. Your use of this Software for
 * additional users is not covered by this license and requires a separate
 * license purchase for such users. You shall not distribute, license, or
 * sublicense the Software. Title, ownership, and all intellectual property
 * rights in the Software belong exclusively to X2Engine. You agree not to file
 * any patent applications covering, relating to, or depicting this Software
 * or modifications thereto, and you agree to assign any patentable inventions
 * resulting from your use of this Software to X2Engine.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.
 **********************************************************************************/
/************************************************
* This file mantains several important mixins for 
* Font Icons. The two sources of font icons are 
* font-awesome, and x2-icons (custom icons).
*************************************************/
/***********************************************************************************
 * Copyright (C) 2011-2015 X2Engine Inc. All Rights Reserved.
 *
 * X2Engine Inc.
 * P.O. Box 66752
 * Scotts Valley, California 95067 USA
 * Company website: http://www.x2engine.com
 *
 * X2Engine Inc. grants you a perpetual, non-exclusive, non-transferable license
 * to install and use this Software for your internal business purposes only
 * for the number of users purchased by you. Your use of this Software for
 * additional users is not covered by this license and requires a separate
 * license purchase for such users. You shall not distribute, license, or
 * sublicense the Software. Title, ownership, and all intellectual property
 * rights in the Software belong exclusively to X2Engine. You agree not to file
 * any patent applications covering, relating to, or depicting this Software
 * or modifications thereto, and you agree to assign any patentable inventions
 * resulting from your use of this Software to X2Engine.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.
 **********************************************************************************/
/***********************************************************************
* Grays 
***********************************************************************/
/***********************************************************************
* Blues
***********************************************************************/
/***********************************************************************
* Reds 
***********************************************************************/
/***********************************************************************
* Greens 
***********************************************************************/
/***********************************************************************
* This section is made to correspond with the theme keys in ThemeGenerator
***********************************************************************/
/***********************************************************************************
 * Copyright (C) 2011-2015 X2Engine Inc. All Rights Reserved.
 *
 * X2Engine Inc.
 * P.O. Box 66752
 * Scotts Valley, California 95067 USA
 * Company website: http://www.x2engine.com
 *
 * X2Engine Inc. grants you a perpetual, non-exclusive, non-transferable license
 * to install and use this Software for your internal business purposes only
 * for the number of users purchased by you. Your use of this Software for
 * additional users is not covered by this license and requires a separate
 * license purchase for such users. You shall not distribute, license, or
 * sublicense the Software. Title, ownership, and all intellectual property
 * rights in the Software belong exclusively to X2Engine. You agree not to file
 * any patent applications covering, relating to, or depicting this Software
 * or modifications thereto, and you agree to assign any patentable inventions
 * resulting from your use of this Software to X2Engine.
 *
 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.
 **********************************************************************************/
/************************************************
* This File is a pseudo-class translation of all 
* the font-awesome classes. This way, these classes
* can be extended. 
*************************************************/
/*********************************
* Mixin to create a font-awesome 
* icon without changing the layout
********************************/
/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* makes the font 33% larger relative to the icon container */
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
     readers do not read off random characters that represent icons */
/**************************************************
* Class to add to a container that has a stacked icon
* These are the icons displayed on the activity feed
**************************************************/
/* line 47, ../../../../../compass/css/lib/_icons.scss */
.stacked-icon {
  display: none;
  position: absolute;
  top: 23px;
  left: 28px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #004baf;
  background: white;
  /* @theme border-color lighter_link */
  /* @theme background content */
  text-align: center;
}
/* line 66, ../../../../../compass/css/lib/_icons.scss */
.stacked-icon:before {
  width: 100%;
  font-size: 10px;
  position: relative;
}

/****************************************
* Mixin to aid with the stacked icon
*****************************************/
/****************************************************
* Mixin to generate a mapping of classes to icons
* $list:  A multidimensional array
: $type: which icon font to use ("fa" or "x2")
: @content: extra rules to insert into each icon
* Example: 
*   $map: (
*   	("email" "envelope" "check") 
*       ("process" "funnel")
*   );
* Will create the rule for '.email' to have the icon 
* 'envelope' with a stacked icon of 'check'
* and a rule for '.process' to have the icon 'funnel'
* with no stacked icon. 
*
* These icons are currently used in activity feed and publisher 
*******************************************************/
/* line 31, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
[data-icon]:before {
  content: none !important;
}

/* line 33, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#login-form-logo {
  color: #9198A0;
  font-weight: bold;
  font-size: 113px;
  width: 100%;
  text-align: center;
  padding: 20% 0px;
  line-height: 70%;
  display: block;
}

/* line 45, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#custom-login-form-logo {
  margin: auto;
  text-align: center;
  padding: 20% 0px;
  line-height: 70%;
  display: block;
}

/* line 53, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
img#login-form-logo {
  width: 95px;
  margin: auto;
}

/* line 58, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
.errorMessage {
  color: #C00;
}

/* line 62, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
input[type='text']:not(.error), select, select option, .x2-select, .x2-select option,
.x2-minimal-select, .x2-minimal-select-filtercol, .x2-minimal-select option,
.x2-mobile-narrow-input-row, input[type='password'] {
  background: transparent !important;
}

/*
login page
*/
/* line 27, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 27, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 75, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
.remember-me-checkbox-container .ui-btn-text {
  font-size: 10px;
  vertical-align: middle;
}

/* line 31, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 31, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* 
general css rules
*/
/* line 40, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 43, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 93, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
.x2-mobile-narrow-input {
  color: #ADADAD;
  width: 280px;
}

/* line 45, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 50, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 101, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
.x2-mobile-narrow-input-row .ui-input-text {
  margin-bottom: 4px;
  margin-top: 0px;
  width: 280px;
  display: inline-block;
}

/* line 53, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 60, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 112, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
div.ui-input-text.error {
  border-color: #C00;
  background: #FEE;
}
/* line 116, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
div.input-error-container {
  float: left;
  margin-right: 4px;
}
/* line 120, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
div.err-msg-placeholder {
  height: 20px;
}

/* line 64, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 68, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 57, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 61, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/*
activity
*/
/* line 71, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 83, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 138, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#feed-box div.message {
  margin-bottom: 10px;
  white-space: pre-wrap;
}
/* line 142, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#feed-box a {
  /* links disabled until mobile versions of linked pages are added */
  color: #4b4b4b;
  text-decoration: none;
}
/* line 147, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#feed-box span.my-username {
  color: #999;
}

/* line 87, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 92, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 75, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 80, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 85, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 103, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 161, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#feed-post-publisher {
  margin-bottom: 10px;
}

/* line 89, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 109, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 168, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#attachments {
  margin: 18px -2px;
  border: 1px solid #b8b8b8;
  padding: 6px;
  border-radius: 8px;
}

/* line 96, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 118, ../../../../../compass/sass/protected/modules/mobile/assets/css/main.scss */
/* line 178, ../../../../../compass/protected/modules/mobile/assets/css/main.scss */
#logo-container {
  text-align: center;
}
