/* Colors */
/* Borders */
/*
 * Coffee module. No sugar. Quake style.
 */
[id^="coffee"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#coffee-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999; }

#coffee-form {
  position: fixed;
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  font: 16px/1.5 Lucida Console, Lucida Sans Typewriter, Consolas, Andale Mono, Courier New;
  background: #222;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  height: 80%;
  overflow-y: auto;
  transition: all .3s ease-in-out;
  color: #fff; }

#coffee-form.hide-form {
  z-index: -1000;
  top: -80%; }

#coffee-form-inner {
  padding: 20px 20px 10px;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -moz-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.6); }

#coffee-q {
  color: #A5E728;
  border: 0;
  font: 42px Lucida Console, Lucida Sans Typewriter, Consolas, Andale Mono, Courier New;
  line-height: 52px;
  padding: 5px 10px;
  width: 460px;
  height: 52px;
  outline: none;
  display: block;
  background: transparent;
  margin: 0 0 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px; }

#coffee-q:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

#coffee-results ul,
#coffee-results ol {
  position: static;
  float: none;
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  border: 0;
  color: #fff;
  background: transparent; }

#coffee-results li {
  margin: 0 0 15px;
  padding: 0;
  float: none;
  clear: none;
  width: auto; }

#coffee-results a {
  display: block;
  border: 0;
  outline: none;
  color: #fff;
  padding: 6px 10px 4px;
  line-height: normal;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  height: auto;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px; }

#coffee-results a.ui-state-hover,
#coffee-results a:focus,
#coffee-results a:hover,
#coffee-results .ui-state-focus {
  background: transparent;
  color: #A5E728;
  margin: 0;
  cursor: pointer; }
  #coffee-results a.ui-state-hover .description,
  #coffee-results a:focus .description,
  #coffee-results a:hover .description,
  #coffee-results .ui-state-focus .description {
    color: #fff; }

#coffee-results .description {
  display: block;
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 400;
  margin-top: 5px; }

#coffee-results .ui-widget {
  font-family: Lucida Console, Lucida Sans Typewriter, Consolas, Andale Mono, Courier New; }

/*
 * Make the block config icon sexy
 */
.contextual-links-region {
  outline: none;
  position: relative; }

.contextual-links-region-active {
  outline: #999 dashed 1px; }

div.contextual-links-wrapper {
  display: none;
  font-size: 100%;
  position: absolute;
  right: 5px;
  /* LTR */
  top: 2px;
  z-index: 999; }

html.js div.contextual-links-wrapper {
  display: block; }

a.contextual-links-trigger {
  background: transparent url(../images/icon-configuration.png) no-repeat 50% 7px;
  border: 0;
  display: none;
  height: 30px;
  margin: 0;
  padding: 0;
  outline: none;
  text-indent: -9999px;
  width: 30px;
  overflow: hidden;
  transition: none; }

a.contextual-links-trigger:hover,
div.contextual-links-active a.contextual-links-trigger {
  background-position: 50% -29px; }

div.contextual-links-active a.contextual-links-trigger {
  background-color: #202020;
  background-position: 50% -64px;
  position: relative;
  z-index: 1; }

div.contextual-links-wrapper ul.contextual-links {
  background-color: #202020;
  border: 0;
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 30px;
  white-space: nowrap; }

a.contextual-links-trigger-active,
div.contextual-links-active a.contextual-links-trigger,
div.contextual-links-active ul.contextual-links {
  display: block; }

ul.contextual-links li {
  line-height: 100%;
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0; }

div.contextual-links-wrapper a {
  text-decoration: none; }

ul.contextual-links li a {
  background-color: #202020;
  color: #fff;
  display: block;
  margin: 0;
  padding: 12px;
  min-width: 120px; }

ul.contextual-links li a:hover {
  background-color: #0074bd; }

/*
 * Drupal messages
 * 
 */
.messages .message {
  padding: 1em 3em 1em 1em;
  border-radius: 2px;
  position: relative;
  color: #fff;
  margin-bottom: 1.5em; }
  .messages .message a {
    color: yellow; }
    .messages .message a:hover {
      color: yellow;
      text-decoration: underline; }
  .messages .message.info {
    background: #5BC0DE; }
  .messages .message.error {
    background: #D9534F; }
  .messages .message.warning {
    background: #F0AD4E; }
  .messages .message.status {
    background: #5CB85C; }
  .messages .message .close {
    border-radius: 2px;
    color: #fff;
    font-size: 34px;
    position: absolute;
    right: 5px;
    top: 5px;
    display: block;
    height: 26px;
    width: 26px;
    line-height: 24px;
    text-align: center;
    border: 2px solid transparent; }
    .messages .message .close:hover {
      text-decoration: none;
      background: #fff;
      color: #222; }
  .messages .message .placeholder {
    color: #fff;
    font-weight: 500; }
  .messages .message ul, .messages .message p {
    margin: 1em 0; }

/*# sourceMappingURL=captovate_styles.css.map */
