/*
@fontHeadingsMedium:	"titillium_websemibold", "Helvetica Neue", Helvetica, Arial, sans-serif;
@fontHeadingsRegular:	"titillium_websemibold", "Helvetica Neue", Helvetica, Arial, sans-serif;

@fontHeadingSubLight:	"titillium_weblight", "Helvetica Neue", Helvetica, Arial, sans-serif;

@fontTextRegular:		"open_sansregular", "Helvetica Neue", Helvetica, Arial, sans-serif;
@fontTextLight:			"Arial", "Helvetica Neue", Helvetica, Arial, sans-serif;

@fontHomeHero:			"titillium_webthin", "Helvetica Neue", Helvetica, Arial, sans-serif;

*/
/* not yet supported
.keyframes(@name; @arguments) {
	@-moz-keyframes @name { @arguments(); }
	@-webkit-keyframes @name { @arguments(); }
	@keyframes @name { @arguments(); }
}
*/
/**
 * @package     hubzero-cms
 * @file        modules/mod_reportproblems/mod_reportproblems.css
 * @copyright   Copyright 2005-2015 HUBzero Foundation, LLC.
 * @license     http://opensource.org/licenses/MIT MIT
 */
/*

	-- -- -- -- -- -- --
	mod_reportproblems
	-- -- -- -- -- -- --

*/
/* Help Pane */
#help-pane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  border: none;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  padding: 40px;
  background: #e1e1e1;
}
#help-pane > .inner {
  margin: 0 auto;
  max-width: 800px;
}
#help-pane.open {
  opacity: 1;
  visibility: visible;
}
#help-pane button {
  display: block;
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  font-size: 0;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
  background: none;
  outline: none;
  top: 40px;
  right: 20px;
}
#help-pane button :focus {
  outline: none;
}
#help-pane button:before,
#help-pane button:after {
  position: absolute;
  display: block;
  top: 10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  content: "";
  -moz-transition: all linear 0.1s;
  -o-transition: all linear 0.1s;
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
}
#help-pane button:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
#help-pane button:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
#help-pane button:hover:before {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
#help-pane button:hover:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
}
#help-container {
  margin: 0 auto;
  color: #cecece;
  text-align: left;
  max-width: 800px;
}
#help-container .col {
  width: 100%;
  float: none;
}
#help-container .col:nth-of-type(2) {
  border-top: 1px solid #3C3C3C;
  margin-top: 1rem;
}
#help-container h1 {
  display: none;
}
#help-container h2 {
  color: #fff;
  font-size: 1.2rem;
}
#help-container h3 {
  font-size: 1.1rem;
}
#help-container a {
  color: #fff;
  border: none;
}
#help-container a:hover {
  color: #4390B5;
}
#help-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#help-container ul li {
  padding: 0.7em 0em 0.7em 3em;
  list-style: none;
  position: relative;
}
#help-container ul li:before,
#help-container ul li:after {
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  font-family: 'Fontcons';
  font-size: 32px;
  line-height: 32px;
  border: none;
  position: absolute;
  top: 1rem;
  left: 0;
  z-index: 100;
  color: #cecece;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.6);
}
#help-container ul li h3 {
  padding: 0;
  border: none;
  margin: 0;
}
#help-container li.help-kb:before {
  content: "\f072";
}
#help-container li.help-qa:before {
  content: "\f086";
}
#help-container li.help-wish:before {
  content: "\f078";
}
#help-container li.help-tickets:before {
  content: "\f055";
}
#help-container li p {
  margin: 0;
}
#help-container form {
  margin: 0;
  padding: 0;
  text-align: right;
}
#help-container fieldset {
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  color: #aaa;
}
#help-container fieldset.reporter {
  margin: 0;
  padding: 0;
}
#help-container .required,
#help-container .optional {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 80%;
}
#help-container .required {
  color: #cca231;
}
#help-container .optional {
  color: #888;
}
#help-container label {
  padding-top: 1.2em;
  position: relative;
  display: inline-block;
  margin: 0;
  width: 100%;
}
#help-container label span.required,
#help-container label span.optional {
  position: absolute;
  top: 1.5em;
  right: 0;
}
#help-container label span.info-block {
  display: block;
  border: 1px solid #555;
  padding: 0.2em;
  background-color: #333;
}
#help-container input,
#help-container select,
#help-container textarea {
  margin-top: 0.25em;
  width: 100%;
}
#help-container textarea {
  height: 126px;
}
#help-container textarea.long {
  height: 166px;
}
#help-container .submit {
  clear: both;
  margin: 0.5em -0.5em 0.5em 0;
  padding: 0.2em 0 0 0;
  text-align: right;
  border-top: 1px solid #333;
}
#help-container .submit input,
#help-container .option {
  width: auto;
}
#trSuccess strong,
#trSuccess h3 {
  color: #fff;
}
#trSuccess div {
  text-align: center;
  float: right;
  width: 20%;
  margin-top: 1em;
}
#trSuccess div p {
  margin-top: 0;
  padding-top: 0;
}
#trSuccess div span {
  display: block;
  font-size: 2em;
  color: #FAF196;
  margin: 1em 0 1em 0;
}
#trSuccess div span a {
  color: #FAF196;
  border: none;
}
#trSuccess div span a:hover {
  color: #fff;
  border: none;
}
#trSending {
  text-align: center;
  position: relative;
}
#trSending p {
  text-align: center;
  font-size: 1.5em;
  width: 10em;
  margin: 0 auto;
  padding: 3em 0 0 0;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Loading animation container */
.rp-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}
/* Spinning circle (inner circle) */
.rp-loading .rp-masked-circle {
  width: 20px;
  height: 20px;
  border-radius: 12px;
  border: 3px solid white;
}
/* Spinning circle mask */
.rp-loading .rp-mask {
  width: 12px;
  height: 12px;
  overflow: hidden;
}
/* Spinner */
.rp-loading .rp-spinner {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 26px;
  height: 26px;
  -webkit-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
#trSending,
#trSuccess {
  display: none;
}
#help-container label#trBotcheck-label {
  display: none;
}
#help-btn-close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 40px;
  top: 15px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  color: #ccc;
}
#help-btn-close:before {
  content: "\f057";
  font-family: "Fontcons";
  margin-right: 5em;
  font-size: 30px;
  line-height: 1;
}
#help-btn-close:hover {
  color: #fff;
}
.filetypes {
  display: none;
}
