.introjs-overlay {
  position: absolute;
  z-index: 999999;
  background-color: #000;
  opacity: 0;
  background: -moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: -webkit-gradient(radial,center center,0px,center center,100%,color-stop(0%,rgba(0,0,0,0.4)),color-stop(100%,rgba(0,0,0,0.9)));
  background: -webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: -o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: -ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  background: radial-gradient(center,ellipse cover,rgba(0,0,0,0.4) 0,rgba(0,0,0,0.9) 100%);
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000',endColorstr='#e6000000',GradientType=1)";
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.introjs-fixParent {
  z-index: auto !important;
  opacity: 1.0 !important;
  position: absolute !important;
  -webkit-transform: none !important;
     -moz-transform: none !important;
      -ms-transform: none !important;
       -o-transform: none !important;
          transform: none !important;
}

.introjs-showElement,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  z-index: 9999999 !important;
}

.introjs-disableInteraction {
  z-index: 99999999 !important;
  position: absolute;
}

.introjs-relativePosition,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  position: relative;
}

.introjs-helperLayer {
  position: absolute;
  z-index: 9999998;
  background-color: #FFF;
  background-color: rgba(255,255,255,.9);
  border: 1px solid #777;
  border: 1px solid rgba(0,0,0,.5);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0,0,0,.4);
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.introjs-tooltipReferenceLayer {
  position: absolute;
  visibility: hidden;
  z-index: 10000000;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.introjs-helperLayer *,
.introjs-helperLayer *:before,
.introjs-helperLayer *:after {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
      -ms-box-sizing: content-box;
       -o-box-sizing: content-box;
          box-sizing: content-box;
}

.introjs-helperNumberLayer {
  position: absolute;
  visibility: visible;
  top: -16px;
  left: -16px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-family: Arial, verdana, tahoma;
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0,0,0,.3);
  background: #ff3019; /* Old browsers */
  background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10+,Safari5.1+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404)); /* Chrome,Safari4+ */
  background:    -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6+ */
  background:     -ms-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* IE10+ */
  background:      -o-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Opera 11.10+ */
  background:         linear-gradient(to bottom, #ff3019 0%, #cf0404 100%);  /* W3C */
  width: 20px;
  height:20px;
  line-height: 20px;
  border: 3px solid white;
  border-radius: 50%;
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0)"; /* IE6-9 */
  filter: "progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000)"; /* IE10 text shadows */
  box-shadow: 0 2px 5px rgba(0,0,0,.4);
}

.introjs-arrow {
  border: 5px solid white;
  content:'';
  position: absolute;
}
.introjs-arrow.top {
  top: -10px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:white;
  border-left-color:transparent;
}
.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:white;
  border-left-color:transparent;
}
.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:white;
  border-left-color:transparent;
}
.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-left-color:white;
}
.introjs-arrow.right-bottom {
  bottom:10px;
  right: -10px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-left-color:white;
}
.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color:white;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-left-color:transparent;
}
.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-top-color:transparent;
  border-right-color:white;
  border-bottom-color:transparent;
  border-left-color:transparent;
}
.introjs-arrow.left-bottom {
  left: -10px;
  bottom:10px;
  border-top-color:transparent;
  border-right-color:white;
  border-bottom-color:transparent;
  border-left-color:transparent;
}

.introjs-tooltip {
  position: absolute;
  visibility: visible;
  padding: 10px;
  background-color: white;
  min-width: 200px;
  max-width: 300px;
  border-radius: 3px;
  box-shadow: 0 1px 10px rgba(0,0,0,.4);
  -webkit-transition: opacity 0.1s ease-out;
     -moz-transition: opacity 0.1s ease-out;
      -ms-transition: opacity 0.1s ease-out;
       -o-transition: opacity 0.1s ease-out;
          transition: opacity 0.1s ease-out;
}

.introjs-tooltipbuttons {
  text-align: right;
  white-space: nowrap;
}

/*
 Buttons style by http://nicolasgallagher.com/lab/css3-github-buttons/
 Changed by Afshin Mehrabani
*/
.introjs-button {
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0.3em 0.8em;
  border: 1px solid #d4d4d4;
  margin: 0;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
  font: 11px/normal sans-serif;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  background-color: #ececec;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  background-image: -moz-linear-gradient(#f4f4f4, #ececec);
  background-image: -o-linear-gradient(#f4f4f4, #ececec);
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  /*background-clip: padding-box;*/ /* commented out due to Opera 11.10 bug */
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;
  /* IE hacks */
  zoom: 1;
  *display: inline;
  margin-top: 10px;
}

.introjs-button:hover {
  border-color: #bcbcbc;
  text-decoration: none;
  box-shadow: 0px 1px 1px #e3e3e3;
}

.introjs-button:focus,
.introjs-button:active {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
  background-image: -moz-linear-gradient(#ececec, #f4f4f4);
  background-image: -o-linear-gradient(#ececec, #f4f4f4);
  background-image: linear-gradient(#ececec, #f4f4f4);
}

/* overrides extra padding on button elements in Firefox */
.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.introjs-skipbutton {
  margin-right: 5px;
  color: #7a7a7a;
}

.introjs-prevbutton {
  -webkit-border-radius: 0.2em 0 0 0.2em;
  -moz-border-radius: 0.2em 0 0 0.2em;
  border-radius: 0.2em 0 0 0.2em;
  border-right: none;
}

.introjs-nextbutton {
  -webkit-border-radius: 0 0.2em 0.2em 0;
  -moz-border-radius: 0 0.2em 0.2em 0;
  border-radius: 0 0.2em 0.2em 0;
}

.introjs-disabled, .introjs-disabled:hover, .introjs-disabled:focus {
  color: #9a9a9a;
  border-color: #d4d4d4;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none;
}

.introjs-bullets {
  text-align: center;
}
.introjs-bullets ul {
  clear: both;
  margin: 15px auto 0;
  padding: 0;
  display: inline-block;
}
.introjs-bullets ul li {
  list-style: none;
  float: left;
  margin: 0 2px;
}
.introjs-bullets ul li a {
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  text-decoration: none;
}
.introjs-bullets ul li a:hover {
  background: #999;
}
.introjs-bullets ul li a.active {
  background: #999;
}

.introjs-progress {
  overflow: hidden;
  height: 10px;
  margin: 10px 0 5px 0;
  border-radius: 4px;
  background-color: #ecf0f1
}
.introjs-progressbar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  background-color: #08c;
}

.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%;
}

.introjs-fixedTooltip {
  position: fixed;
}

.introjs-hint {
  position: absolute;
  background: transparent;
  width: 20px;
  height: 15px;
}

.introjs-hidehint {
  display: none;
}

.introjs-fixedhint {
  position: fixed;
}

.introjs-hint:hover > .introjs-hint-pulse {
  border: 5px solid rgba(60, 60, 60, 0.57);
}

.introjs-hint-pulse {
  width: 10px;
  height: 10px;
  border: 5px solid rgba(60, 60, 60, 0.27);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: rgba(136, 136, 136, 0.24);
  z-index: 10;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
     -moz-transition: all 0.2s ease-out;
      -ms-transition: all 0.2s ease-out;
       -o-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out;
}

.introjs-hint-dot {
  border: 10px solid rgba(146, 146, 146, 0.36);
  background: transparent;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: introjspulse 3s ease-out;
  -moz-animation: introjspulse 3s ease-out;
  animation: introjspulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  opacity: 0;
}

@-moz-keyframes intrjspulse {
 0% {
    -moz-transform: scale(0);
    opacity: 0.0;
 }
 25% {
    -moz-transform: scale(0);
    opacity: 0.1;
 }
 50% {
    -moz-transform: scale(0.1);
    opacity: 0.3;
 }
 75% {
    -moz-transform: scale(0.5);
    opacity: 0.5;
 }
 100% {
    -moz-transform: scale(1);
    opacity: 0.0;
 }
}

@-webkit-keyframes "introjspulse" {
 0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
 }
 25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
 }
 50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
 }
 75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
 }
 100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
 }
}

.gu-mirror {
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
.gu-hide {
  display: none !important;
}
.gu-unselectable {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.gu-transit {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}

.awesomplete [hidden] {
    display: none;
}

.awesomplete .visually-hidden {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.awesomplete {
    display: inline-block;
    position: relative;
}

.awesomplete > input {
    display: block;
}

.awesomplete > ul {
    position: absolute;
    left: 0;
    z-index: 1;
    min-width: 100%;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.awesomplete > ul:empty {
    display: none;
}

.awesomplete > ul {
	border-radius: .3em;
	margin: .2em 0 0;
	background: hsla(0,0%,100%,.9);
	background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
	border: 1px solid rgba(0,0,0,.3);
	box-shadow: .05em .2em .6em rgba(0,0,0,.2);
	text-shadow: none;
}

@supports (transform: scale(0)) {
	.awesomplete > ul {
		transition: .3s cubic-bezier(.4,.2,.5,1.4);
		transform-origin: 1.43em -.43em;
	}
	
	.awesomplete > ul[hidden],
	.awesomplete > ul:empty {
		opacity: 0;
		transform: scale(0);
		display: block;
		visibility: hidden;
		transition-timing-function: ease;
	}
}

	/* Pointer */
	.awesomplete > ul:before {
		content: "";
		position: absolute;
		top: -.43em;
		left: 1em;
		width: 0; height: 0;
		padding: .4em;
		background: white;
		border: inherit;
		border-right: 0;
		border-bottom: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.awesomplete > ul > li {
		position: relative;
		padding: .2em .5em;
		cursor: pointer;
	}
	
	.awesomplete > ul > li:hover {
		background: hsl(200, 40%, 80%);
		color: black;
	}
	
	.awesomplete > ul > li[aria-selected="true"] {
		background: hsl(205, 40%, 40%);
		color: white;
	}
	
		.awesomplete mark {
			background: hsl(65, 100%, 50%);
		}
		
		.awesomplete li:hover mark {
			background: hsl(68, 100%, 41%);
		}
		
		.awesomplete li[aria-selected="true"] mark {
			background: hsl(86, 100%, 21%);
			color: inherit;
		}

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

.codehilite .hll { background-color: #49483e }
.codehilite .c { color: #75715e } /* Comment */
.codehilite .err { color: #960050; background-color: #1e0010 } /* Error */
.codehilite .k { color: #66d9ef } /* Keyword */
.codehilite .l { color: #ae81ff } /* Literal */
.codehilite .n { color: #f8f8f2 } /* Name */
.codehilite .o { color: #f92672 } /* Operator */
.codehilite .p { color: #f8f8f2 } /* Punctuation */
.codehilite .cm { color: #75715e } /* Comment.Multiline */
.codehilite .cp { color: #75715e } /* Comment.Preproc */
.codehilite .c1 { color: #75715e } /* Comment.Single */
.codehilite .cs { color: #75715e } /* Comment.Special */
.codehilite .ge { font-style: italic } /* Generic.Emph */
.codehilite .gs { font-weight: bold } /* Generic.Strong */
.codehilite .kc { color: #66d9ef } /* Keyword.Constant */
.codehilite .kd { color: #66d9ef } /* Keyword.Declaration */
.codehilite .kn { color: #f92672 } /* Keyword.Namespace */
.codehilite .kp { color: #66d9ef } /* Keyword.Pseudo */
.codehilite .kr { color: #66d9ef } /* Keyword.Reserved */
.codehilite .kt { color: #66d9ef } /* Keyword.Type */
.codehilite .ld { color: #e6db74 } /* Literal.Date */
.codehilite .m { color: #ae81ff } /* Literal.Number */
.codehilite .s { color: #e6db74 } /* Literal.String */
.codehilite .na { color: #a6e22e } /* Name.Attribute */
.codehilite .nb { color: #f8f8f2 } /* Name.Builtin */
.codehilite .nc { color: #a6e22e } /* Name.Class */
.codehilite .no { color: #66d9ef } /* Name.Constant */
.codehilite .nd { color: #a6e22e } /* Name.Decorator */
.codehilite .ni { color: #f8f8f2 } /* Name.Entity */
.codehilite .ne { color: #a6e22e } /* Name.Exception */
.codehilite .nf { color: #a6e22e } /* Name.Function */
.codehilite .nl { color: #f8f8f2 } /* Name.Label */
.codehilite .nn { color: #f8f8f2 } /* Name.Namespace */
.codehilite .nx { color: #a6e22e } /* Name.Other */
.codehilite .py { color: #f8f8f2 } /* Name.Property */
.codehilite .nt { color: #f92672 } /* Name.Tag */
.codehilite .nv { color: #f8f8f2 } /* Name.Variable */
.codehilite .ow { color: #f92672 } /* Operator.Word */
.codehilite .w { color: #f8f8f2 } /* Text.Whitespace */
.codehilite .mf { color: #ae81ff } /* Literal.Number.Float */
.codehilite .mh { color: #ae81ff } /* Literal.Number.Hex */
.codehilite .mi { color: #ae81ff } /* Literal.Number.Integer */
.codehilite .mo { color: #ae81ff } /* Literal.Number.Oct */
.codehilite .sb { color: #e6db74 } /* Literal.String.Backtick */
.codehilite .sc { color: #e6db74 } /* Literal.String.Char */
.codehilite .sd { color: #e6db74 } /* Literal.String.Doc */
.codehilite .s2 { color: #e6db74 } /* Literal.String.Double */
.codehilite .se { color: #ae81ff } /* Literal.String.Escape */
.codehilite .sh { color: #e6db74 } /* Literal.String.Heredoc */
.codehilite .si { color: #e6db74 } /* Literal.String.Interpol */
.codehilite .sx { color: #e6db74 } /* Literal.String.Other */
.codehilite .sr { color: #e6db74 } /* Literal.String.Regex */
.codehilite .s1 { color: #e6db74 } /* Literal.String.Single */
.codehilite .ss { color: #e6db74 } /* Literal.String.Symbol */
.codehilite .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
.codehilite .vc { color: #f8f8f2 } /* Name.Variable.Class */
.codehilite .vg { color: #f8f8f2 } /* Name.Variable.Global */
.codehilite .vi { color: #f8f8f2 } /* Name.Variable.Instance */
.codehilite .il { color: #ae81ff } /* Literal.Number.Integer.Long */

.codehilite .gh { } /* Generic Heading & Diff Header */
.codehilite .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
.codehilite .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
.codehilite .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */

/* Sample */

.dropdown-menu {
    border: 1px solid #ddd;
    background-color: white;
}

.dropdown-menu li {
    border-top: 1px solid #ddd;
    padding: 2px 5px;
}

.dropdown-menu li:first-child {
    border-top: none;
}

.dropdown-menu li:hover,
.dropdown-menu .active {
    background-color: rgb(110, 183, 219);
    color: white;
}

.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
    color: white;
}

/* SHOULD not modify */

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu a:hover {
    cursor: pointer;
}

/* -------------------------------------------------------------------
// markItUp!
// By Jay Salvat - http://markitup.jaysalvat.com/
// ------------------------------------------------------------------*/
.markItUp .markItUpButton1 a {
  background-image:url("../images/markitup/h1.png");
}

.markItUp .markItUpButton2 a {
  background-image:url("../images/markitup/h2.png");
}

.markItUp .markItUpButton3 a {
  background-image:url("../images/markitup/h3.png");
}

.markItUp .markItUpButton4 a {
  background-image:url("../images/markitup/bold.png");
}
.markItUp .markItUpButton5 a {
  background-image:url("../images/markitup/italic.png");
}

.markItUp .markItUpButton6 a {
  background-image:url("../images/markitup/stroke.png");
}

.markdown .markItUpButton7 a {
  background-image:url("../images/markitup/list-bullet.png");
}
.markdown .markItUpButton8 a {
  background-image:url("../images/markitup/list-numeric.png");
}

.markdown .markItUpButton9 a {
  background-image:url("../images/markitup/picture.png");
}
.markdown .markItUpButton10 a {
  background-image:url("../images/markitup/link.png");
}

.markdown .markItUpButton11 a   {
  background-image:url("../images/markitup/quotes.png");
}
.markdown .markItUpButton12 a   {
  background-image:url("../images/markitup/code.png");
}

.markdown .preview-icon a {
  background-image:url("../images/markitup/preview.png");
}

.markdown .help a {
  background-image:url("../images/markitup/help.png");
}


/* -------------------------------------------------------------------
// markItUp! Universal MarkUp Engine, JQuery plugin
// By Jay Salvat - http://markitup.jaysalvat.com/
// ------------------------------------------------------------------*/
.markItUp * {
  margin:0px; padding:0px;
  outline:none;
}
.markItUp a:link,
.markItUp a:visited {
  color:#000;
  text-decoration:none;
}
.markItUpContainer  {
	padding:5px 5px 2px 5px;
  font:11px Verdana, Arial, Helvetica, sans-serif;
}
.markItUpEditor {
  font:12px 'Courier New', Courier, monospace;
  padding:5px;
  height:320px;
  clear:both;
  line-height:18px;
  overflow:auto;
}
.markItUpPreviewFrame	{
  overflow:auto;
  background-color:#FFF;
  width:99.9%;
  height:300px;
  margin:5px 0;
}
.markItUpFooter {
  width:100%;
}
.markItUpResizeHandle {
  overflow:hidden;
  width:22px; height:5px;
  margin-left:auto;
  margin-right:auto;
  background-image:url(../images/markitup/handle.png);
  cursor:n-resize;
}
/***************************************************************************************/
/* first row of buttons */
.markItUp .markItUpHeader ul {
  margin: 0;
}
.markItUpHeader ul li	{
  list-style:none;
  float:left;
  position:relative;
  margin: 3px;
}
.markItUpHeader ul li:hover > ul{
  display:block;
}
.markItUpHeader ul .markItUpDropMenu {
  background:transparent url(../images/markitup/menu.png) no-repeat 115% 50%;
  margin-right:5px;
}
.markItUpHeader ul .markItUpDropMenu li {
  margin-right:0px;
}
/* next rows of buttons */
.markItUpHeader ul ul {
  display:none;
  position:absolute;
  top:18px; left:0px;
  background:#FFF;
  border:1px solid #000;
}
.markItUpHeader ul ul li {
  float:none;
  border-bottom:1px solid #000;
}
.markItUpHeader ul ul .markItUpDropMenu {
  background:#FFF url(../images/markitup/submenu.png) no-repeat 100% 50%;
}
.markItUpHeader ul .markItUpSeparator {
  margin:2px 10px 0 10px;
  width:1px;
  height:16px;
  overflow:hidden;
  background-color:#CCC;
}
.markItUpHeader ul ul .markItUpSeparator {
  width:auto; height:1px;
  margin:0px;
}
/* next rows of buttons */
.markItUpHeader ul ul ul {
  position:absolute;
  top:-1px; left:150px;
}
.markItUpHeader ul ul ul li {
  float:none;
}
.markItUpHeader ul a {
  display:block;
  width:16px; height:16px;
  text-indent:-10000px;
  background-repeat:no-repeat;
  padding:3px;
  margin:0px;
}
.markItUpHeader ul ul a {
  display:block;
  padding-left:0px;
  text-indent:0;
  width:120px;
  padding:5px 5px 5px 25px;
  background-position:2px 50%;
}
.markItUpHeader ul ul a:hover  {
  color:#FFF;
  background-color:#000;
}

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    width: 240px;
    padding: 8px;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single.is-hidden {
    display: none;
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-title {
    position: relative;
    text-align: center;
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
}
.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    /* hide text using text-indent trick, using width value (it's enough) */
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
    *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
    *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2;
}

.pika-select {
    display: inline-block;
    *display: inline;
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0;
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

.pika-button {
    cursor: pointer;
    display: block;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold;
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3;
}

.pika-button:hover {
    color: #fff !important;
    background: #ff8000 !important;
    box-shadow: none !important;
    border-radius: 3px !important;
}

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:after, blockquote:before {
  content: "";
  content: none; }

q:after, q:before {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  box-sizing: border-box; }

html {
  min-height: 100%;
  width: 100%; }

body {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  line-height: 1.3;
  min-height: 100%;
  width: 100%; }
  body .master.ng-animate {
    transition: 0; }
  body.loading-project {
    overflow: hidden; }

.loader-active {
  overflow: hidden; }

.drag-active {
  overflow-x: hidden; }

.master {
  height: 100%;
  min-height: 100%;
  position: relative; }

.centered {
  margin: 1rem auto;
  max-width: 1200px;
  min-width: 960px;
  width: 90%; }

.wrapper {
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - 40px); }
  .wrapper.primary .main.backlog {
    margin-left: 42px; }
  .wrapper.primary .menu-secondary {
    background: none;
    width: 30%;
    margin-right: 42px; }
    .wrapper.primary .menu-secondary .code-audit-review-alert {
      display: -ms-flexbox;
      display: flex;
      text-align: center;
      -ms-flex-pack: justify;
      justify-content: space-between;
      color: #fff;
      font-family: poppins;
      font-size: 12px;
      margin-bottom: 1rem; }
      .wrapper.primary .menu-secondary .code-audit-review-alert div {
        width: 48%;
        padding: 12px 31px;
        border-radius: 5px;
        font-size: 13px; }
        .wrapper.primary .menu-secondary .code-audit-review-alert div p {
          margin: 10px 0 0 0;
          font-size: 14px;
          font-weight: 100; }
          .wrapper.primary .menu-secondary .code-audit-review-alert div p strong {
            font-size: 22px;
            font-weight: normal; }
  .wrapper.primary .sidebar {
    padding-top: 110px; }

.menu-secondary {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: calc(100vh - 40px);
  min-width: 0;
  padding: 1rem;
  width: 320px; }
  .menu-secondary .search-in {
    margin-top: .5rem; }

.menu-tertiary {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: calc(100vh - 40px);
  width: 250px; }

.main {
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 1rem 2rem; }

.hidden {
  display: none !important; }

.header-with-actions {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1rem; }
  .header-with-actions header {
    -ms-flex: 1;
    flex: 1; }
  .header-with-actions .action-buttons {
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .header-with-actions .button {
    color: #fff;
    float: right;
    margin-left: 10px; }
    .header-with-actions .button:hover {
      color: #fff; }
  .header-with-actions h1 {
    margin-bottom: 0; }

.title-bar-breadcrum {
  display: block;
  position: absolute;
  width: 100%;
  background: #e7e7e7;
  padding: 0 122px;
  height: 80px;
  line-height: 80px; }

.hide {
  display: none; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

/* poppins-300 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Poppins-Light.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Light"), local("Poppins-Light"), url("../fonts/Poppins-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light.ttf") format("truetype"), url("../fonts/Poppins-Light.svg#Poppins") format("svg");
  /* Legacy iOS */ }

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.eot");
  /* IE9 Compat Modes */
  src: local("Poppins"), local("Poppins-Regular"), url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular.svg#Poppins") format("svg");
  /* Legacy iOS */ }

/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Medium"), local("Poppins-Medium"), url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.ttf") format("truetype"), url("../fonts/Poppins-Medium.svg#Poppins") format("svg");
  /* Legacy iOS */ }

/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Poppins-SemiBold.eot");
  /* IE9 Compat Modes */
  src: local("Poppins SemiBold"), local("Poppins-SemiBold"), url("../fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff"), url("../fonts/Poppins-SemiBold.ttf") format("truetype"), url("../fonts/Poppins-SemiBold.svg#Poppins") format("svg");
  /* Legacy iOS */ }

/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Bold"), local("Poppins-Bold"), url("../fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.ttf") format("truetype"), url("../fonts/Poppins-Bold.svg#Poppins") format("svg");
  /* Legacy iOS */ }

@font-face {
  font-family: taiga;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/taiga.eot");
  src: url("../fonts/taiga.eot?") format("eot"), url("../fonts/taiga.woff") format("woff"), url("../fonts/taiga.ttf") format("truetype"); }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #050505;
  font-weight: normal;
  line-height: 1.5; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    font-weight: inherit; }

h1 {
  font-size: 2rem;
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-transform: uppercase; }
  h1 span {
    font-size: 1.6rem;
    margin-right: .5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap; }
    h1 span.green, h1 span:last-child {
      -ms-flex-negative: 0;
      flex-shrink: 0; }
  h1 .project-name {
    display: inline-block;
    margin-bottom: 0; }
  h1 .project-name-short {
    display: inline-block;
    max-width: 40%; }
  h1 .green {
    color: #b74e46; }
  h1 .date {
    display: inline-block;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    color: #767676; }

h2 {
  font-size: 1.6rem;
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem; }

p {
  line-height: 1.5;
  margin: 0 0 20px; }
  p img {
    margin: 0; }

em {
  font-style: italic; }

small {
  font-size: 1rem; }

strong {
  font-weight: bold; }

hr {
  border: solid #050505;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  margin: 10px 0 30px; }

a,
a:visited {
  text-decoration: none; }
  a:hover,
  a:visited:hover {
    transition: color .3s linear; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

@keyframes loading {
  0% {
    filter: blur(5px);
    opacity: 0; }
  100% {
    filter: blur(0);
    opacity: 1; } }

@keyframes rotate {
  50% {
    filter: invert(1);
    transform: rotate(360deg); } }

@keyframes formSlide {
  0% {
    filter: blur(5px);
    opacity: 0;
    transform: translateY(10rem); }
  50% {
    filter: blur(0); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes loadBar {
  0% {
    -ms-flex: 1;
    flex: 1; }
  10% {
    -ms-flex: 10;
    flex: 10; }
  20% {
    -ms-flex: 1;
    flex: 1; } }

@keyframes dropdownFade {
  0% {
    opacity: 0;
    transform: translateY(-0.25rem); }
  60% {
    opacity: 1; }
  100% {
    transform: translateY(0); } }

@keyframes blink {
  85% {
    opacity: 1; }
  100% {
    opacity: .6; } }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

blockquote,
blockquote p {
  line-height: 1.25rem; }

blockquote {
  margin: 0 0 20px;
  padding: .5rem 1.25rem; }
  blockquote cite {
    font-size: .9rem;
    display: block; }
    blockquote cite::before {
      content: '\2014 \0020'; }

ul,
ol {
  margin-bottom: 20px; }

ul {
  list-style: none outside; }

ol {
  list-style: decimal; }

sup {
  font-size: .9rem;
  vertical-align: super; }

.clickable {
  cursor: pointer; }

.not-clickable {
  cursor: default; }

.draggable {
  cursor: move; }

svg {
  height: 1rem;
  width: 1rem; }

.pika-single {
  z-index: 999999; }
  .pika-single .pika-title {
    color: #444; }
  .pika-single .is-selected .pika-button {
    background: #5b8200;
    border-radius: 0 !important;
    box-shadow: inset 0 1px 3px #5b8200; }
  .pika-single .is-today .pika-button {
    color: #5b8200; }
  .pika-single .is-today.is-selected button {
    color: #fff; }
  .pika-single .pika-button:hover {
    background: #9dce0a !important;
    border-radius: 0 !important;
    box-shadow: inset 0 1px 3px #9dce0a !important; }

.spin img {
  animation-timing-function: ease-in-out;
  animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
  margin: 0 auto;
  max-height: 1rem;
  max-width: 1rem;
  transform-origin: 32 32;
  max-height: 2rem;
  max-width: 2rem; }

div.awesomplete input {
  display: inline-block; }

div.awesomplete > ul {
  background: rgba(0, 0, 0, 0.95);
  color: #9dce0a;
  top: 2.25rem;
  transition: all .2s ease; }
  div.awesomplete > ul::before {
    background: rgba(0, 0, 0, 0.95); }
  div.awesomplete > ul[hidden] {
    position: absolute;
    top: 1.5rem;
    transform: scale(1); }
  div.awesomplete > ul > li:hover {
    background: #9dce0a;
    color: #000; }

div.awesomplete mark {
  background: #9dce0a;
  color: #000; }

div.awesomplete li:hover mark {
  background: #9dce0a;
  color: #000; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%; }

input[type="text"],
input[type="number"],
input[type="password"],
input[type="url"],
input[type="email"],
input[type="date"],
input[type="password"],
select,
textarea {
  border: 1px solid;
  margin: 0;
  padding: 8px;
  width: 100%; }
  input[type="text"].checksley-error,
  input[type="number"].checksley-error,
  input[type="password"].checksley-error,
  input[type="url"].checksley-error,
  input[type="email"].checksley-error,
  input[type="date"].checksley-error,
  input[type="password"].checksley-error,
  select.checksley-error,
  textarea.checksley-error {
    transition: border .3s linear; }

button,
button:active,
button:focus {
  border: 0;
  outline: 0;
  outline-style: none;
  outline-width: 0; }

textarea {
  min-height: 10rem;
  resize: vertical; }

.checksley-error-list {
  margin-bottom: 0; }
  .checksley-error-list li {
    padding: .2rem; }

.capslock.ng-enter {
  animation: dropdownFade .2s ease-in; }

.capslock.ng-leave {
  animation: dropdownFade .2s ease-in;
  animation-direction: reverse; }

.capslock .icon-capslock {
  bottom: .8rem;
  fill: #555;
  height: .9rem;
  position: absolute;
  right: 1rem;
  width: .9rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-membership .limit-users-warning {
  font-size: .9rem;
  color: #5b8200;
  margin-right: 1rem; }

.admin-membership .check input {
  height: 40px;
  width: 85px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.add-tag-container {
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  margin: .5rem 0;
  padding: 1rem; }
  .add-tag-container .color-column {
    cursor: pointer;
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative; }
  .add-tag-container .tag-name {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    margin-right: 1rem; }
  .add-tag-container .options-column {
    display: -ms-flexbox;
    display: flex; }
    .add-tag-container .options-column .loading-spinner {
      margin-right: 1.2rem;
      width: 1.2rem; }
  .add-tag-container .current-color.empty-color {
    background: #f5f5f5;
    border: 1px solid #e4e3e3;
    position: relative; }
    .add-tag-container .current-color.empty-color:after {
      content: "";
      width: 2px;
      height: 54px;
      background: #ff8282;
      transform: rotate(-45deg);
      position: absolute;
      top: 0;
      left: 0;
      transform-origin: top; }
    .add-tag-container .current-color.empty-color:before {
      content: "";
      width: 2px;
      height: 54px;
      background: #ff8282;
      transform: rotate(45deg);
      position: absolute;
      top: 0;
      right: 0;
      transform-origin: top; }
  .add-tag-container input[type="text"] {
    background: #fff; }
  .add-tag-container .icon.icon-close, .add-tag-container .icon.icon-save {
    opacity: 1; }

.tags-table .table-tags-editor input[type="text"] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: border-bottom .2s linear; }
  .tags-table .table-tags-editor input[type="text"]:focus {
    border-bottom: 1px solid #555;
    outline: none; }

.tags-table .table-tags-editor .row.header-tag-row {
  cursor: default;
  padding-left: 1rem; }

.tags-table .color-filter {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0 10px;
  position: relative; }
  .tags-table .color-filter:hover input {
    border-bottom: 1px solid #e4e3e3; }
  .tags-table .color-filter input {
    padding: 0; }
  .tags-table .color-filter label {
    cursor: pointer; }

.tags-table .row.tag-row {
  margin: .3rem 0;
  padding: .7rem; }
  .tags-table .row.tag-row:hover {
    cursor: default; }

.tags-table .row .loading-spinner {
  margin-right: 1.2rem;
  width: 1.2rem; }

.tags-table .mix-tags {
  position: relative; }
  .tags-table .mix-tags .popover {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    bottom: 2rem;
    color: #fff;
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    right: -85%;
    width: 120px;
    z-index: 99;
    text-align: center; }
    .tags-table .mix-tags .popover a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .tags-table .mix-tags .popover a:last-child {
        border: 0; }
      .tags-table .mix-tags .popover a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .tags-table .mix-tags .popover a:hover.point {
          color: #fff; }
    .tags-table .mix-tags .popover:after {
      background: #050505;
      bottom: -5px;
      content: '';
      height: 15px;
      left: 50%;
      position: absolute;
      transform: rotate(45deg);
      width: 1rem; }
  .tags-table .mix-tags:hover .popover {
    display: block; }

.tags-table .mixing-options-column {
  text-align: right; }
  .tags-table .mixing-options-column .loading-spinner {
    margin-right: 1.2rem;
    width: 1.2rem; }

.tags-table .mixing-tags-from,
.tags-table .mixing-tags-to {
  background: rgba(216, 248, 121, 0.2); }

.tags-table .mixing-confirm {
  margin: 0 .5rem; }

.tags-table .mixing-help-text {
  font-size: .75rem;
  color: #2f3244;
  display: inline;
  padding-right: .5rem;
  text-align: center; }
  @media (max-width: 1280px) {
    .tags-table .mixing-help-text {
      display: block;
      padding: .5rem; } }

.tags-table .current-color.empty-color {
  background: #f5f5f5;
  border: 1px solid #e4e3e3;
  position: relative; }
  .tags-table .current-color.empty-color:after {
    content: "";
    width: 2px;
    height: 54px;
    background: #ff8282;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top; }
  .tags-table .current-color.empty-color:before {
    content: "";
    width: 2px;
    height: 54px;
    background: #ff8282;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: top; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-attributes .admin-attributes-section {
  margin-bottom: 2rem; }
  .admin-attributes .admin-attributes-section .checksley-error-list {
    height: 0;
    position: relative; }
    .admin-attributes .admin-attributes-section .checksley-error-list li {
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      background: rgba(255, 0, 0, 0.7);
      position: absolute;
      width: 100%; }
  .admin-attributes .admin-attributes-section .admin-tags-section-wrapper-empty {
    color: #767676;
    padding: 10vh 0 0;
    text-align: center; }
  .admin-attributes .admin-attributes-section .loading-spinner {
    max-height: 3rem;
    max-width: 3rem; }

.admin-roles header {
  position: relative; }

.admin-roles h1 {
  margin-bottom: 0; }

.admin-roles p {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #767676; }

.project-values-title {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .8em 1rem;
  text-transform: uppercase; }
  .project-values-title h2 {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    margin: 0; }
    .project-values-title h2 span {
      margin-left: .5rem;
      text-transform: none; }
  .project-values-title a {
    display: inline-block; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.auth {
  -ms-flex-align: center;
  align-items: center;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999; }
  .auth .auth-container {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px; }
  .auth .logo-svg {
    text-align: center;
    width: 100%; }
    .auth .logo-svg svg {
      height: 8rem;
      width: 8rem; }
  .auth .logo {
    font-size: 3rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 1rem;
    text-align: center; }
  .auth .tagline {
    font-size: 2rem;
    color: #000;
    line-height: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase; }
  .auth form {
    margin-bottom: 1rem; }
  .auth fieldset {
    margin-bottom: .5rem; }
  .auth .login-text,
  .auth .register-text {
    text-align: center; }
    .auth .login-text a:hover,
    .auth .register-text a:hover {
      color: #9dce0a; }
  .auth .button {
    color: #fff;
    display: block;
    text-align: center; }
  .auth a {
    color: #000; }
    .auth a:hover {
      color: #9dce0a; }

.moustache {
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-name: moustache;
  animation-timing-function: ease-in-out;
  fill: rgba(91, 130, 0, 0.9);
  stroke: #9dce0a;
  stroke-width: 1px;
  transform-origin: 50% 50%;
  transition: .3s; }
  .moustache:hover {
    fill: rgba(157, 206, 10, 0.9);
    transition: .3s; }

@keyframes moustache {
  0% {
    transform: rotate(0); }
  10% {
    transform: rotate(-10deg); }
  30% {
    transform: rotate(0); }
  70% {
    transform: rotate(0); }
  80% {
    transform: rotate(10deg); }
  90% {
    transform: rotate(0); } }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.backlog-filter {
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transition: all .2s linear;
  width: 0; }
  .backlog-filter tg-filter {
    transform: translateX(-260px);
    transition: all .2s linear; }
  .backlog-filter.active {
    opacity: 1;
    transition: all .2s linear;
    width: 260px; }
    .backlog-filter.active tg-filter {
      transform: translateX(0); }

.backlog-menu {
  background: #f5f5f5;
  color: #050505;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1rem; }
  .backlog-menu .menu-button {
    border-radius: 0;
    color: #050505;
    display: inline-block;
    padding: .4rem 1.5rem; }
    .backlog-menu .menu-button.active, .backlog-menu .menu-button:hover {
      background: #e4e3e3;
      color: #555; }
    .backlog-menu .menu-button.active:hover {
      background: #cbc9c9; }
    .backlog-menu .menu-button.move-to-sprint {
      display: none; }
  .backlog-menu .button-bulk {
    margin-left: .2rem; }

.backlog-us-mirror {
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 5px #555;
  min-height: calc(40px + 1rem);
  opacity: .9;
  padding: 1rem; }
  .backlog-us-mirror .tags-block,
  .backlog-us-mirror .votes,
  .backlog-us-mirror .us-settings,
  .backlog-us-mirror .status,
  .backlog-us-mirror .points,
  .backlog-us-mirror .icon-drag,
  .backlog-us-mirror input {
    display: none; }
  .backlog-us-mirror.is-checked, .backlog-us-mirror:hover {
    background: #fff; }

.wrapper .menu-secondary {
  background: #e4e3e3; }
  .wrapper .menu-secondary .sprints {
    padding: 35px 38px;
    background: white;
    border-radius: 5px; }

.wrapper .backlog-left {
  background: #fff;
  padding: 13px;
  border-radius: 5px; }

.wrapper .main.backlog {
  padding-top: 110px;
  margin-left: 70px; }

.title-bar-breadcrum header h1 span {
  font-size: 16px;
  color: #b74e46;
  margin: 30px 0 0 0;
  display: inline-block; }
  .title-bar-breadcrum header h1 span.green {
    color: #000;
    text-transform: capitalize; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.invitation-main {
  background: url("../images/invitation_bg.jpg") no-repeat center center;
  background-size: cover;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999; }
  .invitation-main .invitation-container {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 800px;
    min-width: 420px; }
  .invitation-main .avatar {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
    .invitation-main .avatar .person-name {
      font-size: 1.2rem;
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      color: #fff; }
    .invitation-main .avatar img {
      margin-bottom: .5rem;
      width: 50px; }
  .invitation-main .invitation-text {
    font-size: 1.2rem;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #fff;
    text-align: center; }
    .invitation-main .invitation-text .project-name {
      font-size: 2rem;
      display: block;
      text-transform: uppercase; }
  .invitation-main .invitation-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%; }
    .invitation-main .invitation-form fieldset {
      margin-bottom: .5rem; }
    .invitation-main .invitation-form input:focus + .forgot-pass {
      opacity: 0;
      transition: opacity .5s linear; }
    .invitation-main .invitation-form .forgot-pass {
      font-size: .9rem;
      color: #767676;
      opacity: 1;
      position: absolute;
      right: 1rem;
      top: .5rem;
      transition: all .3s linear; }
      .invitation-main .invitation-form .forgot-pass:hover {
        color: #444;
        transition: color .3s linear; }
  .invitation-main .login-form,
  .invitation-main .register-form {
    -ms-flex: 1;
    flex: 1;
    padding: 1rem 3rem;
    text-align: center; }
    .invitation-main .login-form .form-header,
    .invitation-main .register-form .form-header {
      font-size: 1.2rem;
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      color: #fff; }
  .invitation-main .register-form fieldset:last-child {
    margin-bottom: 1rem; }
  .invitation-main .register-text {
    color: #fff; }
    .invitation-main .register-text a {
      color: #5b8200; }
  .invitation-main .button-auth {
    display: block; }
  .invitation-main .button-blackish:hover {
    background: #5b8200; }
  .invitation-main .login-form {
    border-right: 1px solid rgba(255, 255, 255, 0.3); }
  .invitation-main .public-register-disabled {
    width: 400px; }
    .invitation-main .public-register-disabled .login-form {
      border-right: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.issues .filters-bar {
  position: relative;
  width: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.kanban {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100vh - 40px);
  max-height: calc(100vh - 40px);
  max-width: calc(100vw - 50px);
  position: relative; }
  .kanban header {
    min-height: 70px; }
  .kanban .kanban-settings {
    float: right; }
  .kanban .burndown-container {
    display: none; }

.kanban-header {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .kanban-header .options {
    display: -ms-flexbox;
    display: flex; }

.taskboard-actions {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.error-main {
  background: url("../images/invitation_bg.jpg") no-repeat center center;
  background-size: cover;
  -ms-flex-align: center;
  align-items: center;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999; }
  .error-main .error-container {
    color: #fff;
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    text-align: center; }
  .error-main .logo-svg {
    padding: 0 32%;
    text-align: center;
    width: 100%; }
  .error-main h1 {
    color: #fff;
    margin-bottom: 1rem; }
  .error-main a {
    color: #9dce0a; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.taskboard {
  height: calc(100vh - 40px);
  overflow: hidden;
  position: relative; }
  .taskboard h1,
  .taskboard .graphics-container,
  .taskboard .summary {
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .taskboard .graphics-container {
    max-height: 0;
    transition: max-height .5s ease-in;
    overflow: hidden; }
    .taskboard .graphics-container.open {
      transition: max-height .5s ease-in;
      max-height: 300px; }

.taskboard-header {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.taskboard-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: hidden; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.team h2 {
  margin: 1rem 0; }
  .team h2 span:last-child {
    color: #ca4f45; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.us-story-main-data {
  margin-bottom: 1rem; }
  .us-story-main-data header {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: .5rem; }

.subheader {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media (max-width: 1280px) {
    .subheader {
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-pack: start;
      justify-content: flex-start; } }
  .subheader .ticket-created-by {
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    @media (max-width: 1280px) {
      .subheader .ticket-created-by {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -ms-flex-order: 1;
        order: 1; } }
  .subheader .tags-block {
    -ms-flex: 1;
    flex: 1; }
    @media (max-width: 1280px) {
      .subheader .tags-block {
        -ms-flex-order: 2;
        order: 2; } }

.duty-content {
  position: relative; }
  .duty-content .in-progress {
    cursor: progress; }
  .duty-content:hover .view-description .edit {
    opacity: 1;
    top: -1.5rem;
    transition: all .2s linear; }
  .duty-content:hover .view-description .editable {
    background: #f5f5f5;
    cursor: pointer; }
  .duty-content:hover .view-description .no-description {
    color: #444; }
  .duty-content.wysiwyg {
    overflow: visible; }
  .duty-content .no-description {
    color: #767676; }
  .duty-content textarea {
    background: #fff;
    height: 10rem; }
  .duty-content .save-container {
    position: absolute;
    right: 1rem;
    top: .2rem; }
    .duty-content .save-container:hover {
      opacity: .3;
      transition: opacity .2s linear; }
    .duty-content .save-container .loading-spinner {
      animation-timing-function: ease-in-out;
      animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
      margin: 0 auto;
      max-height: 1rem;
      max-width: 1rem;
      transform-origin: 32 32;
      max-height: 1.5rem;
      max-width: 1.5rem; }
  .duty-content .edit {
    cursor: pointer;
    fill: #555; }
  .duty-content .view-description .edit {
    background: #f5f5f5;
    height: 2rem;
    left: 0;
    opacity: 0;
    padding: .2rem .5rem;
    position: absolute;
    top: 0;
    transition: all .2s linear;
    width: 2rem; }
  .duty-content .edit-description {
    margin-bottom: 2rem; }
    .duty-content .edit-description .save {
      cursor: pointer;
      display: inline-block;
      position: relative;
      top: .3rem; }
    .duty-content .edit-description .edit {
      display: inline-block;
      position: absolute;
      right: 2.5rem;
      top: .4rem;
      transition: all .2s linear; }
    .duty-content .edit-description .preview {
      padding-top: 1.5rem; }

.comment-list {
  padding: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.save-wiki {
  float: right; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wiki {
  max-width: 1024px; }
  .wiki .wysiwyg {
    margin-bottom: 0; }
  .wiki .wiki-title {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: 3rem;
    margin-bottom: 0;
    padding: 1rem; }

.wiki-content {
  font-size: 1.2rem;
  position: relative; }
  .wiki-content.editable:hover .wysiwyg {
    background: #f5f5f5;
    cursor: pointer; }
  .wiki-content .view-wiki-content:hover .edit {
    opacity: 1;
    top: -1.5rem;
    transition: all .2s linear; }
  .wiki-content .edit {
    width: 2rem;
    height: 2rem;
    background: #f5f5f5;
    left: 0;
    opacity: 0;
    padding: .2rem .5rem;
    position: absolute;
    top: 0;
    transition: all .2s linear; }
    .wiki-content .edit:hover {
      cursor: pointer; }
  .wiki-content .preview {
    padding-top: 1.8rem; }

.edit-wiki-content a {
  display: inline-block;
  margin-right: .5rem; }
  .edit-wiki-content a:last-child {
    margin: 0; }
  .edit-wiki-content a:hover {
    cursor: pointer; }
    .edit-wiki-content a:hover .icon {
      fill: #2f3244;
      opacity: .3;
      transition: all .2s linear; }

.edit-wiki-content .preview-icon {
  position: absolute;
  right: 3.5rem; }

.edit-wiki-content .action-container {
  position: absolute;
  right: 1rem;
  top: .3rem; }

.edit-wiki-content .edit {
  position: absolute;
  right: 3.5rem;
  top: .4rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.avatar img {
  border-radius: 8%;
  width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.basic-table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%; }
  .basic-table .row {
    border-bottom: 1px solid #dad9d9;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: .3rem 0;
    text-align: left;
    width: 100%; }
    @media (max-width: 767px) {
      .basic-table .row {
        -ms-flex-direction: column;
        flex-direction: column; } }
    .basic-table .row .width-1 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 1;
      flex-grow: 1; }
    .basic-table .row .width-2 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 2;
      flex-grow: 2; }
    .basic-table .row .width-3 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 3;
      flex-grow: 3; }
    .basic-table .row .width-4 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 4;
      flex-grow: 4; }
    .basic-table .row .width-5 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 5;
      flex-grow: 5; }
    .basic-table .row .width-6 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 6;
      flex-grow: 6; }
    .basic-table .row .width-7 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 7;
      flex-grow: 7; }
    .basic-table .row .width-8 {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      -ms-flex-positive: 8;
      flex-grow: 8; }
    .basic-table .row:last-child {
      border-bottom: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.button,
.trans-button,
.button-green,
a.button-green,
.button-gray,
a.button-gray,
.button-blackish,
.button-red,
.button-bulk,
.button-auth,
.button-tribe,
.button-filter {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  background: transparent;
  border: 0;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: .4rem 2rem;
  text-align: center;
  text-transform: uppercase;
  transition: all .2s linear;
  vertical-align: middle; }
  .button:hover,
  .trans-button:hover,
  .button-green:hover,
  .button-gray:hover,
  .button-blackish:hover,
  .button-red:hover,
  .button-bulk:hover,
  .button-auth:hover,
  .button-tribe:hover,
  .button-filter:hover {
    color: #fff;
    transition: all .2s linear; }
  .button:visited,
  .trans-button:visited,
  .button-green:visited,
  .button-gray:visited,
  .button-blackish:visited,
  .button-red:visited,
  .button-bulk:visited,
  .button-auth:visited,
  .button-tribe:visited,
  .button-filter:visited {
    color: #fff; }
  .button.loading span,
  .loading.trans-button span,
  .loading.button-green span,
  .loading.button-gray span,
  .loading.button-blackish span,
  .loading.button-red span,
  .loading.button-bulk span,
  .loading.button-auth span,
  .loading.button-tribe span,
  .loading.button-filter span {
    animation: loading .5s linear; }
  .button span,
  .trans-button span,
  .button-green span,
  .button-gray span,
  .button-blackish span,
  .button-red span,
  .button-bulk span,
  .button-auth span,
  .button-tribe span,
  .button-filter span {
    color: #fff; }
  .button .icon,
  .trans-button .icon,
  .button-green .icon,
  .button-gray .icon,
  .button-blackish .icon,
  .button-red .icon,
  .button-bulk .icon,
  .button-auth .icon,
  .button-tribe .icon,
  .button-filter .icon {
    color: #fff; }
  .button.disabled, .button[disabled],
  .disabled.trans-button,
  .disabled.button-green,
  .disabled.button-gray,
  .disabled.button-blackish,
  .disabled.button-red,
  .disabled.button-bulk,
  .disabled.button-auth,
  .disabled.button-tribe,
  .disabled.button-filter,
  .trans-button[disabled],
  .button-green[disabled],
  .button-gray[disabled],
  .button-blackish[disabled],
  .button-red[disabled],
  .button-bulk[disabled],
  .button-auth[disabled],
  .button-tribe[disabled],
  .button-filter[disabled] {
    background: #f5f5f5;
    box-shadow: none;
    color: #767676;
    cursor: not-allowed;
    opacity: .65; }
    .button.disabled:hover, .button[disabled]:hover,
    .disabled.trans-button:hover,
    .disabled.button-green:hover,
    .disabled.button-gray:hover,
    .disabled.button-blackish:hover,
    .disabled.button-red:hover,
    .disabled.button-bulk:hover,
    .disabled.button-auth:hover,
    .disabled.button-tribe:hover,
    .disabled.button-filter:hover,
    .trans-button[disabled]:hover,
    .button-green[disabled]:hover,
    .button-gray[disabled]:hover,
    .button-blackish[disabled]:hover,
    .button-red[disabled]:hover,
    .button-bulk[disabled]:hover,
    .button-auth[disabled]:hover,
    .button-tribe[disabled]:hover,
    .button-filter[disabled]:hover {
      background: #f5f5f5;
      color: #767676; }

.trans-button span,
.trans-button .icon {
  color: #050505;
  transition: color .2s linear; }

.trans-button .icon {
  margin-right: .5rem; }

.trans-button:visited {
  color: #050505; }

.submit-button {
  width: 100%; }

.button-green,
a.button-green {
  background: #5b8200; }
  .button-green:hover, .button-green.active,
  a.button-green:hover,
  a.button-green.active {
    background: #9dce0a;
    color: #fff; }

.button-gray,
a.button-gray {
  background: #b64234; }
  .button-gray:hover, .button-gray.active,
  a.button-gray:hover,
  a.button-gray.active {
    background: #ca4f45;
    color: #fff; }

.button-blackish {
  background: #050505;
  color: #e4e3e3; }
  .button-blackish:hover {
    background: #050505;
    color: #fff; }

.button-red {
  background: #ff8282; }
  .button-red:hover {
    background: #f00;
    color: #fff; }
  .button-red .icon {
    color: #fff; }

.button-bulk {
  background: #5b8200;
  padding: .35rem .5rem; }
  .button-bulk .icon {
    fill: currentColor;
    margin-right: 0;
    position: relative;
    top: 1px; }
  .button-bulk:hover {
    background: #9dce0a; }

.button-auth {
  background: #444; }
  .button-auth .icon,
  .button-auth img {
    font-size: 1.2rem;
    color: #fff;
    margin-right: .5rem; }
  .button-auth:hover {
    background: #000; }

.button-tribe {
  -ms-flex-align: center;
  align-items: center;
  background: #107a8a;
  display: -ms-flexbox;
  display: flex;
  padding: .4rem;
  padding-left: 1.5rem; }
  .button-tribe:hover, .button-tribe.active {
    background: #0b525c;
    color: #fff; }
  .button-tribe .tribe-logo {
    margin-right: .5rem;
    width: 1.5rem; }

.tribe-more-info {
  font-size: .9rem;
  color: #5b8200;
  display: inline-block;
  margin-top: .5rem; }

.button-filter {
  background: #e4e3e3;
  margin-left: 1rem;
  padding: .4rem .5rem;
  position: relative; }
  .button-filter:hover {
    background: #767676;
    fill: #e4e3e3; }
  .button-filter .filter-num {
    font-size: .9rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    background: #f00;
    border-radius: 50%;
    height: 1rem;
    left: -.5rem;
    position: absolute;
    top: -.5rem;
    width: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.card-placeholder {
  background: #dfdede;
  border: 1px dashed #d0cece;
  cursor: default;
  padding: 1rem; }
  .card-placeholder .placeholder-avatar {
    display: -ms-flexbox;
    display: flex; }
  .card-placeholder .image {
    background: #d0cece;
    -ms-flex-preferred-size: 48px;
    flex-basis: 48px;
    height: 48px;
    margin-right: .5rem;
    width: 48px; }
  .card-placeholder .text {
    -ms-flex: 1;
    flex: 1; }
  .card-placeholder .line {
    background: #d0cece;
    height: 1rem;
    margin-bottom: 1rem;
    width: 80%; }
    .card-placeholder .line:last-child {
      width: 40%; }
  .card-placeholder .title {
    text-transform: uppercase; }
  .card-placeholder p {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #555;
    margin: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.check {
  background-color: #cbc9c9;
  border-radius: 2px;
  cursor: pointer;
  height: 1.5rem;
  overflow: hidden;
  position: relative;
  width: 65px; }
  .check input {
    cursor: pointer;
    height: 50px;
    left: -10px;
    opacity: 0;
    position: absolute;
    top: -10px;
    width: 100px;
    z-index: 999; }
    .check input + div {
      background-color: #555;
      height: 25px;
      transition: all .2s linear;
      width: 50%; }
    .check input ~ .check-text {
      font-size: .9rem;
      font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
      color: #fff;
      position: absolute;
      top: .2rem; }
    .check input ~ .check-yes {
      opacity: 0;
      right: .5rem; }
    .check input ~ .check-no {
      left: .5rem;
      opacity: .6; }
  .check input:checked + div {
    background-color: #9dce0a;
    margin-left: 50%;
    transition: all .2s linear; }
  .check input:checked ~ .check-yes {
    opacity: .8;
    right: .25rem; }
  .check input:checked ~ .check-no {
    left: .25rem;
    opacity: 0; }
  .check input:disabled {
    cursor: auto; }
    .check input:disabled + div {
      background-color: #767676; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.ticket-created-by {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end; }
  @media (max-width: 1280px) {
    .ticket-created-by {
      -ms-flex-pack: start;
      justify-content: flex-start;
      margin-bottom: .5rem; } }
  .ticket-created-by .user-avatar {
    -ms-flex-preferred-size: 2rem;
    flex-basis: 2rem;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin-left: .5rem; }
    @media (max-width: 1280px) {
      .ticket-created-by .user-avatar {
        margin-left: 0;
        margin-right: .5rem;
        -ms-flex-order: 1;
        order: 1; } }
    .ticket-created-by .user-avatar img {
      width: 100%; }
  @media (max-width: 1280px) {
    .ticket-created-by .created-by {
      -ms-flex-order: 2;
      order: 2; } }
  .ticket-created-by .created-by .created-title,
  .ticket-created-by .created-by .created-date {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    color: #555;
    display: block;
    text-align: right; }
    @media (max-width: 1280px) {
      .ticket-created-by .created-by .created-title,
      .ticket-created-by .created-by .created-date {
        text-align: left; } }
  .ticket-created-by .created-by .created-title {
    color: #5b8200; }
  .ticket-created-by .created-by .created-date {
    margin-left: .5rem; }
    @media (max-width: 1280px) {
      .ticket-created-by .created-by .created-date {
        margin-left: 0; } }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.doom-line {
  -ms-flex-align: center;
  align-items: center;
  background: #ff8282;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: .5rem 0;
  padding: .25rem 0; }
  .doom-line span {
    font-size: .9rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    color: #fff; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wysiwyg-help {
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -.5rem;
  padding: .45rem .5rem; }
  .wysiwyg-help a {
    display: inline-block; }

.drag-drop-help {
  font-size: .75rem;
  color: #555; }

.help-markdown,
.help-button {
  font-size: .75rem; }
  .help-markdown:hover span,
  .help-button:hover span {
    transition: color .2s linear; }
  .help-markdown:hover .icon,
  .help-button:hover .icon {
    fill: #9dce0a;
    transition: fill .2s linear; }
  .help-markdown span,
  .help-button span {
    vertical-align: text-top; }
  .help-markdown .icon,
  .help-button .icon {
    width: 0.9rem;
    height: 0.9rem;
    fill: #767676;
    margin-right: .2rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.empty-small, .empty-large {
  margin-top: 4rem;
  text-align: center; }
  .empty-small img, .empty-large img {
    margin-bottom: 1rem;
    width: 100%; }
  .empty-small .title, .empty-large .title {
    font-size: 1.2rem;
    text-transform: uppercase; }
  .empty-small p, .empty-large p {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    margin: 0; }
  .empty-small a, .empty-large a {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #5b8200; }

.empty-small img {
  max-width: 175px; }

.empty-large img {
  max-width: 800px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.ticket-estimation .points-per-role {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

.ticket-estimation .ticket-role-points {
  background: rgba(118, 118, 118, 0.2);
  color: #767676;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: .1rem;
  min-height: 2rem;
  padding: .5rem 1rem;
  position: relative; }
  .ticket-estimation .ticket-role-points.clickable:hover, .ticket-estimation .ticket-role-points.clickable.active {
    background: rgba(157, 206, 10, 0.9);
    color: #e4e3e3; }
    .ticket-estimation .ticket-role-points.clickable:hover .points,
    .ticket-estimation .ticket-role-points.clickable:hover .role,
    .ticket-estimation .ticket-role-points.clickable:hover .icon-arrow-bottom, .ticket-estimation .ticket-role-points.clickable.active .points,
    .ticket-estimation .ticket-role-points.clickable.active .role,
    .ticket-estimation .ticket-role-points.clickable.active .icon-arrow-bottom {
      color: currentColor;
      fill: currentColor; }
  .ticket-estimation .ticket-role-points:last-child {
    background: rgba(47, 50, 68, 0.5);
    border-bottom: 0;
    color: #e4e3e3; }
    .ticket-estimation .ticket-role-points:last-child .points,
    .ticket-estimation .ticket-role-points:last-child .role,
    .ticket-estimation .ticket-role-points:last-child .icon-arrow-bottom {
      font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
      color: currentColor;
      fill: currentColor; }
  .ticket-estimation .ticket-role-points .icon-arrow-down {
    fill: currentColor;
    height: .6rem;
    margin-left: .25rem;
    width: .6rem; }
  .ticket-estimation .ticket-role-points .points {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #444; }
  .ticket-estimation .ticket-role-points .role {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif; }

.ticket-estimation .popover {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  background: #050505;
  color: #fff;
  display: none;
  left: 0.5rem;
  list-style-type: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 100%;
  width: 200px;
  z-index: 99;
  text-align: center; }
  .ticket-estimation .popover a {
    font-size: .9rem;
    border-bottom: 1px solid #444;
    color: #fff;
    display: block;
    padding: 10px 2px; }
    .ticket-estimation .popover a:last-child {
      border: 0; }
    .ticket-estimation .popover a:hover {
      color: #9dce0a;
      transition: color .3s linear; }
      .ticket-estimation .popover a:hover.point {
        color: #fff; }
  .ticket-estimation .popover:after {
    background: #050505;
    content: '';
    height: 10px;
    left: 10px;
    position: absolute;
    top: -5px;
    transform: rotate(45deg);
    width: 10px; }
  .ticket-estimation .popover li {
    display: inline-block;
    width: 23%; }
  .ticket-estimation .popover a {
    display: block;
    text-align: center; }
    .ticket-estimation .popover a:hover, .ticket-estimation .popover a.active {
      background: #9dce0a;
      color: #fff; }
  .ticket-estimation .popover.fix {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: -160px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 100%;
    width: 200px;
    z-index: 99;
    text-align: center; }
    .ticket-estimation .popover.fix a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-estimation .popover.fix a:last-child {
        border: 0; }
      .ticket-estimation .popover.fix a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-estimation .popover.fix a:hover.point {
          color: #fff; }
    .ticket-estimation .popover.fix:after {
      background: #050505;
      content: '';
      height: 10px;
      left: 90%;
      position: absolute;
      top: -5px;
      transform: rotate(45deg);
      width: 10px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.history-tabs {
  background: #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row; }
  .history-tabs a {
    display: inline-block;
    padding: .75rem 1rem; }
    .history-tabs a:hover {
      color: #5b8200; }
  .history-tabs .history-tab {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    border-bottom: 3px solid transparent;
    color: #767676;
    transition: all .1s linear; }
    .history-tabs .history-tab.active {
      border-bottom: 3px solid #444;
      color: #444; }
  .history-tabs .order-comments {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #444;
    margin-left: auto;
    transition: none; }
  .history-tabs .icon-arrow-up,
  .history-tabs .icon-arrow-down {
    width: 0.75rem;
    height: 0.75rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.level {
  background-color: #767676;
  border-radius: 9px;
  height: 18px;
  margin: 0 auto;
  width: 18px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.list-itemtype-project {
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
  padding-right: 0;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .list-itemtype-project .list-itemtype-track {
    font-size: .9rem;
    color: #767676;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .list-itemtype-project .list-itemtype-track .list-itemtype-track-likers {
      margin-right: .5rem; }
  .list-itemtype-project .list-itemtype-track-likers,
  .list-itemtype-project .list-itemtype-track-watchers {
    display: -ms-flexbox;
    display: flex; }
    .list-itemtype-project .list-itemtype-track-likers .icon,
    .list-itemtype-project .list-itemtype-track-watchers .icon {
      display: block;
      margin-right: .25rem; }
    .list-itemtype-project .list-itemtype-track-likers.active,
    .list-itemtype-project .list-itemtype-track-watchers.active {
      color: #5b8200; }
      .list-itemtype-project .list-itemtype-track-likers.active .icon,
      .list-itemtype-project .list-itemtype-track-watchers.active .icon {
        fill: currentcolor; }
  .list-itemtype-project .icon {
    fill: #767676; }
  .list-itemtype-project h2 {
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    line-height: 1.4;
    margin-bottom: 0;
    text-transform: none; }
  .list-itemtype-project p {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    margin-bottom: 0; }
  .list-itemtype-project .list-itemtype-avatar {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .75rem;
    min-width: 3rem; }
    .list-itemtype-project .list-itemtype-avatar img {
      width: 100%;
      border-radius: 50%;
      padding: 4px; }
  .list-itemtype-project.blocked-project .list-itemtype-track,
  .list-itemtype-project.blocked-project .list-itemtype-project-image,
  .list-itemtype-project.blocked-project .list-itemtype-project-name,
  .list-itemtype-project.blocked-project .list-itemtype-project-description {
    opacity: .4; }
  .list-itemtype-project h2 {
    font-size: 1.2rem; }
  .list-itemtype-project .icon-blocked-project {
    width: 0.75rem;
    height: 0.75rem; }
  .list-itemtype-project .list-itemtype-project-data-wrapper {
    display: -ms-flexbox;
    display: flex; }
  .list-itemtype-project .list-itemtype-project-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5rem;
    width: 3rem; }
    .list-itemtype-project .list-itemtype-project-image img {
      width: 100%;
      border-radius: 50%;
      padding: 5px; }
  .list-itemtype-project .list-itemtype-project-members {
    -ms-flex-item-align: end;
    align-self: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    margin-top: 1rem; }
    .list-itemtype-project .list-itemtype-project-members img {
      border-radius: .1rem;
      margin-right: .3rem;
      width: 2rem; }
  .list-itemtype-project .tag {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin: 0 .25rem .25rem 0;
    padding: .5rem; }

.list-itemtype-ticket {
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
  padding-right: 0;
  position: relative; }
  .list-itemtype-ticket .list-itemtype-track {
    font-size: .9rem;
    color: #767676;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .list-itemtype-ticket .list-itemtype-track .list-itemtype-track-likers {
      margin-right: .5rem; }
  .list-itemtype-ticket .list-itemtype-track-likers,
  .list-itemtype-ticket .list-itemtype-track-watchers {
    display: -ms-flexbox;
    display: flex; }
    .list-itemtype-ticket .list-itemtype-track-likers .icon,
    .list-itemtype-ticket .list-itemtype-track-watchers .icon {
      display: block;
      margin-right: .25rem; }
    .list-itemtype-ticket .list-itemtype-track-likers.active,
    .list-itemtype-ticket .list-itemtype-track-watchers.active {
      color: #5b8200; }
      .list-itemtype-ticket .list-itemtype-track-likers.active .icon,
      .list-itemtype-ticket .list-itemtype-track-watchers.active .icon {
        fill: currentcolor; }
  .list-itemtype-ticket .icon {
    fill: #767676; }
  .list-itemtype-ticket h2 {
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    line-height: 1.4;
    margin-bottom: 0;
    text-transform: none; }
  .list-itemtype-ticket p {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    margin-bottom: 0; }
  .list-itemtype-ticket .list-itemtype-avatar {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .75rem;
    min-width: 3rem; }
    .list-itemtype-ticket .list-itemtype-avatar img {
      width: 100%;
      border-radius: 50%;
      padding: 4px; }
  .list-itemtype-ticket.blocked-project .ticket-project,
  .list-itemtype-ticket.blocked-project .ticket-type,
  .list-itemtype-ticket.blocked-project .ticket-status,
  .list-itemtype-ticket.blocked-project .ticket-id,
  .list-itemtype-ticket.blocked-project .list-itemtype-avatar,
  .list-itemtype-ticket.blocked-project .list-itemtype-track,
  .list-itemtype-ticket.blocked-project .ticket-title {
    opacity: .4; }
  .list-itemtype-ticket.blocked-project .icon-blocked-project {
    width: 1rem;
    height: 1rem;
    margin-left: .25rem; }
  .list-itemtype-ticket h2 {
    font-size: 14px;
    margin-top: 4px; }
  .list-itemtype-ticket .ticket-type,
  .list-itemtype-ticket .ticket-project {
    margin-right: .3rem; }
  .list-itemtype-ticket .ticket-project {
    color: #000;
    font-size: 16px; }
  .list-itemtype-ticket .list-itemtype-ticket-data {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    -ms-flex: 1;
    flex: 1;
    margin-right: 1rem;
    font-size: 14px; }
  .list-itemtype-ticket .ticket-id {
    color: #767676; }
  .list-itemtype-ticket .ticket-blocked {
    color: #f00;
    margin-right: .25rem; }

.list-itemtype-user {
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
  padding-right: 0; }
  .list-itemtype-user .list-itemtype-track {
    font-size: .9rem;
    color: #767676;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .list-itemtype-user .list-itemtype-track .list-itemtype-track-likers {
      margin-right: .5rem; }
  .list-itemtype-user .list-itemtype-track-likers,
  .list-itemtype-user .list-itemtype-track-watchers {
    display: -ms-flexbox;
    display: flex; }
    .list-itemtype-user .list-itemtype-track-likers .icon,
    .list-itemtype-user .list-itemtype-track-watchers .icon {
      display: block;
      margin-right: .25rem; }
    .list-itemtype-user .list-itemtype-track-likers.active,
    .list-itemtype-user .list-itemtype-track-watchers.active {
      color: #5b8200; }
      .list-itemtype-user .list-itemtype-track-likers.active .icon,
      .list-itemtype-user .list-itemtype-track-watchers.active .icon {
        fill: currentcolor; }
  .list-itemtype-user .icon {
    fill: #767676; }
  .list-itemtype-user h2 {
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    line-height: 1.4;
    margin-bottom: 0;
    text-transform: none; }
  .list-itemtype-user p {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    margin-bottom: 0; }
  .list-itemtype-user .list-itemtype-avatar {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .75rem;
    min-width: 3rem; }
    .list-itemtype-user .list-itemtype-avatar img {
      width: 100%;
      border-radius: 50%;
      padding: 4px; }
  .list-itemtype-user h2 {
    font-size: 1.2rem; }
  .list-itemtype-user .extra-info {
    font-size: .9rem;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    margin-top: .25rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.loader {
  background-color: #fff;
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -100; }
  .loader .container {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%; }
  .loader p {
    font-size: 1.2rem;
    color: #555;
    text-align: center; }
  .loader.active {
    background-color: rgba(255, 255, 255, 0.95);
    display: block;
    opacity: 1;
    z-index: 99900; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.loading-bar {
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .loading-bar .item {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: loadBar;
    animation-timing-function: ease-in;
    background: #555;
    -ms-flex: 1;
    flex: 1;
    height: 5px; }
  .loading-bar .item-0 {
    animation-delay: 0s;
    background: #bbe831; }
  .loading-bar .item-1 {
    animation-delay: 1s;
    background: #237400; }
  .loading-bar .item-2 {
    animation-delay: 2s;
    background: #e43050; }
  .loading-bar .item-3 {
    animation-delay: 3s;
    background: #810061; }
  .loading-bar .item-4 {
    animation-delay: 4s;
    background: #618000; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.loading-spinner {
  animation-timing-function: ease-in-out;
  animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
  margin: 0 auto;
  max-height: 1rem;
  max-width: 1rem;
  transform-origin: 32 32; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.look-for-people {
  width: 1rem;
  height: 1rem;
  fill: #767676;
  margin-left: .25rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.markItUpHeader ul {
  background: #f5f5f5;
  padding: .3rem; }
  .markItUpHeader ul li {
    display: inline-block;
    float: none; }
    .markItUpHeader ul li a {
      opacity: .8; }
      .markItUpHeader ul li a:hover {
        opacity: .3;
        transition: opacity .2s linear; }
  .markItUpHeader ul .preview-icon {
    position: absolute;
    right: 4rem; }

.markItUpContainer {
  padding: 0; }

.markdown {
  position: relative; }

.preview .actions {
  background: #f5f5f5;
  margin-top: .5rem;
  min-height: 2rem;
  padding: .3rem; }

.preview .content {
  background: #fff;
  margin-bottom: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.notification-message-success {
  background: rgba(157, 206, 10, 0.95);
  box-shadow: 0 25px 10px -15px rgba(0, 0, 0, 0.05);
  right: -370px;
  top: 2%;
  transition: opacity .2s ease-in;
  width: 370px; }
  .notification-message-success.active {
    animation: animSlide 2000ms;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    opacity: 1; }
  .notification-message-success.inactive {
    animation: animSlideOut .5s;
    opacity: 0;
    transform: none; }
  .notification-message-success p {
    margin: 0; }
  .notification-message-success .warning {
    font-size: 1.2rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    color: #fff;
    line-height: 1.2; }

@keyframes animSlide {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  0.52% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -34.485, 0, 0, 1); }
  1.02% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -66.555, 0, 0, 1); }
  2.28% {
    transform: matrix3d(1.111, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -141.457, 0, 0, 1); }
  3.52% {
    transform: matrix3d(1.281, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -205.594, 0, 0, 1); }
  4.1% {
    transform: matrix3d(1.111, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -232.117, 0, 0, 1); }
  4.78% {
    transform: matrix3d(1.034, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -260.381, 0, 0, 1); }
  6.03% {
    transform: matrix3d(0.947, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -304.285, 0, 0, 1); }
  8.11% {
    transform: matrix3d(0.986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -357.804, 0, 0, 1); }
  11.03% {
    transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -399.29, 0, 0, 1); }
  12.11% {
    transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -407.374, 0, 0, 1); }
  16.04% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -417.343, 0, 0, 1); }
  16.12% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -417.342, 0, 0, 1); }
  20% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -413.214, 0, 0, 1); }
  27.23% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -403.135, 0, 0, 1); }
  38.34% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -399.585, 0, 0, 1); }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -400, 0, 0, 1); } }

@keyframes animSlideOut {
  0% {
    opacity: 1;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -400, 0, 0, 1); }
  100% {
    opacity: 0;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -400, 0, 0, 1); } }

.notification-message-error {
  background: rgba(255, 0, 0, 0.9);
  opacity: 1;
  top: 0;
  transform: translateY(-100%);
  width: 100%; }
  .notification-message-error.active {
    opacity: 1;
    transform: translateY(0);
    transition: all .6s ease-in-out; }
  .notification-message-error.inactive {
    transition: all .6s ease-in-out; }
  .notification-message-error .icon-error {
    width: 3rem;
    height: 3rem;
    fill: #fff;
    margin-right: .5rem; }
  .notification-message-error .warning {
    font-size: 2rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    color: #fff;
    line-height: 2.4rem; }
  .notification-message-error .text {
    display: inline-block;
    margin-left: .5rem;
    width: 80%; }
    .notification-message-error .text p {
      margin: 0; }
  .notification-message-error .close {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem; }
  .notification-message-error .icon-close {
    cursor: pointer;
    fill: #fff; }

.notification-message {
  color: #fff;
  opacity: 0;
  padding: 1rem;
  position: fixed;
  z-index: 99920; }

.notification-light {
  -ms-flex-align: center;
  align-items: center;
  background: rgba(118, 118, 118, 0.95);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0;
  padding: 1rem;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  transition: all .6s;
  width: 100%;
  z-index: 99999; }
  .notification-light.inactive {
    opacity: 0;
    transform: translateY(-100%);
    transition: all .6s; }
  .notification-light.active {
    opacity: 1;
    transform: translateY(0);
    transition: all .6s; }
  .notification-light p {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    margin: 0; }
  .notification-light .warning {
    color: #fff;
    line-height: 1.5rem; }
  .notification-light .close {
    display: block;
    margin-right: 1rem;
    width: 2rem; }
    .notification-light .close svg {
      fill: #fff; }

.notification-message-light-error {
  background: rgba(255, 0, 0, 0.8); }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.paginator {
  margin: 2rem 0; }
  .paginator ul {
    display: -ms-flexbox;
    display: flex;
    margin-left: 1rem; }
  .paginator li {
    margin-right: .4rem; }
  .paginator a,
  .paginator .active span {
    background: #767676;
    color: #fff;
    padding: .5rem 1rem;
    transition: all .3s linear; }
  .paginator a:hover {
    background: #050505;
    color: #fff;
    transition: all .3s linear; }
  .paginator .active span {
    background: #9dce0a; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.popover.pop-points-open.horizontal li {
  white-space: nowrap;
  width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.icon-lock {
  fill: #767676;
  margin-left: .5rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.select-color {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  background: #050505;
  color: #fff;
  display: none;
  left: 50px;
  list-style-type: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  width: 323px;
  z-index: 99;
  text-align: center;
  border-radius: 0 10px 10px 0;
  padding: 15px; }
  .select-color a {
    font-size: .9rem;
    border-bottom: 1px solid #444;
    color: #fff;
    display: block;
    padding: 10px 2px; }
    .select-color a:last-child {
      border: 0; }
    .select-color a:hover {
      color: #9dce0a;
      transition: color .3s linear; }
      .select-color a:hover.point {
        color: #fff; }
  .select-color:after {
    background: #050505;
    content: '';
    height: 15px;
    left: -7px;
    position: absolute;
    top: 13px;
    transform: rotate(45deg);
    width: 15px; }
  .select-color li {
    float: left;
    margin: 0 .5rem .5rem 0; }
    .select-color li:nth-child(7n) {
      margin-right: 0; }
    .select-color li:nth-last-child(-n+7) {
      margin-bottom: 0; }
  .select-color .color {
    background-color: #767676;
    border-radius: 2px;
    cursor: pointer;
    height: 35px;
    width: 35px; }
  .select-color .empty-color {
    background: #f5f5f5;
    border: 1px solid #e4e3e3;
    position: relative; }
    .select-color .empty-color:after {
      content: "";
      width: 2px;
      height: 47px;
      background: #ff8282;
      transform: rotate(-45deg);
      position: absolute;
      top: 0;
      left: 0;
      transform-origin: top; }
    .select-color .empty-color:before {
      content: "";
      width: 2px;
      height: 47px;
      background: #ff8282;
      transform: rotate(45deg);
      position: absolute;
      top: 0;
      right: 0;
      transform-origin: top; }
  .select-color ul {
    float: left;
    margin-bottom: 1rem; }
  .select-color input {
    font-size: 1rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    background-color: #e4e3e3;
    width: 243px; }
    .select-color input:-ms-input-placeholder {
      color: #555; }
    .select-color input::placeholder {
      color: #555; }
  .select-color .selected-color {
    background: #767676;
    border-radius: 2px;
    cursor: pointer;
    float: right;
    height: 40px;
    width: 40px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.settings-nav {
  padding: 0;
  width: 250px; }
  .settings-nav .active {
    background: #fff; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.summary {
  -ms-flex-align: center;
  align-items: center;
  background: #444;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 58px;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 2rem;
  overflow: hidden;
  padding: 1rem; }
  .summary .summary-stats {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    margin: 0 .5rem; }
  .summary .data .number {
    color: #b74e46; }
  .summary .number {
    font-size: 2rem;
    font-family: 'poppins';
    margin-right: .3rem;
    font-weight: 300;
    line-height: .9; }
  .summary .description {
    font-size: 14px;
    font-family: 'poppins';
    line-height: 1; }
  .summary .stats {
    cursor: pointer;
    display: block;
    height: 2rem;
    margin-left: auto;
    width: 2rem; }
    .summary .stats path {
      opacity: 1; }
    .summary .stats:hover .graph {
      fill: #9dce0a;
      transition: fill .2s; }
    .summary .stats:hover svg {
      fill: #5b8200; }
    .summary .stats.active .graph {
      fill: #5b8200; }
    .summary .stats.active svg {
      fill: #b74e46; }
    .summary .stats svg {
      fill: #fff;
      height: 100%;
      max-height: 2rem;
      max-width: 2rem;
      transition: all .2s;
      width: 100%; }
    .summary .stats .graph {
      fill: #434343;
      transition: fill .2s; }
  .summary .main-summary-stats {
    display: -ms-flexbox;
    display: flex;
    transform: translateY(0);
    transition: all .2s ease-in-out; }
  .summary .show-type-count .issues-per-milestone-stats {
    transform: translateY(-125px); }
  .summary .show-type-count .issues-per-status-stats {
    transform: translateY(-95px); }
  .summary .show-type-count .issues-per-severity-stats {
    transform: translateY(0px); }
  .summary .show-type-count .issues-per-priority-stats {
    transform: translateY(35px); }
  .summary .show-type-count .issues-per-type-stats {
    transform: translateY(-35px); }
  .summary .show-type-count .main-summary-stats {
    transform: translateY(-65px); }
  .summary .show-severity-count .issues-per-milestone-stats {
    transform: translateY(-125px); }
  .summary .show-severity-count .issues-per-status-stats {
    transform: translateY(-95px); }
  .summary .show-severity-count .issues-per-severity-stats {
    transform: translateY(-70px); }
  .summary .show-severity-count .issues-per-priority-stats {
    transform: translateY(35px); }
  .summary .show-severity-count .issues-per-type-stats {
    transform: translateY(-105px); }
  .summary .show-severity-count .main-summary-stats {
    transform: translateY(-65px); }
  .summary .show-priority-count .issues-per-milestone-stats {
    transform: translateY(-125px); }
  .summary .show-priority-count .issues-per-status-stats {
    transform: translateY(-95px); }
  .summary .show-priority-count .issues-per-severity-stats {
    transform: translateY(-125px); }
  .summary .show-priority-count .issues-per-priority-stats {
    transform: translateY(-105px); }
  .summary .show-priority-count .issues-per-type-stats {
    transform: translateY(-160px); }
  .summary .show-priority-count .main-summary-stats {
    transform: translateY(-65px); }
  .summary .show-milestone-count .issues-per-milestone-stats {
    transform: translateY(-179px); }
  .summary .show-milestone-count .issues-per-status-stats {
    transform: translateY(-196px); }
  .summary .show-milestone-count .issues-per-severity-stats {
    transform: translateY(-125px); }
  .summary .show-milestone-count .issues-per-priority-stats {
    transform: translateY(-160px); }
  .summary .show-milestone-count .issues-per-type-stats {
    transform: translateY(-160px); }
  .summary .show-milestone-count .main-summary-stats {
    transform: translateY(-65px); }
  .summary .show-status-count .issues-per-milestone-stats {
    transform: translateY(-125px); }
  .summary .show-status-count .issues-per-status-stats {
    transform: translateY(-141px); }
  .summary .show-status-count .issues-per-severity-stats {
    transform: translateY(-125px); }
  .summary .show-status-count .issues-per-priority-stats {
    transform: translateY(-160px); }
  .summary .show-status-count .issues-per-type-stats {
    transform: translateY(-160px); }
  .summary .show-status-count .main-summary-stats {
    transform: translateY(-65px); }
  .summary .show-role-points .issues-per-severity-stats {
    transform: translateY(-68px); }
  .summary .show-role-points .issues-per-priority-stats {
    transform: translateY(-55px); }
  .summary .show-role-points .issues-per-type-stats,
  .summary .show-role-points .points-per-role-stats {
    transform: translateY(-35px); }
  .summary .show-role-points .main-summary-stats {
    transform: translateY(-65px); }

.summary-progress-bar {
  background: #fff;
  height: 30px;
  margin-bottom: 0;
  margin-right: 10px;
  padding: 3px;
  position: relative;
  width: 15%; }
  .summary-progress-bar .current-progress {
    background: #9dce0a;
    height: 24px; }
  .summary-progress-bar .defined-points {
    background: #ff8282;
    height: 24px;
    position: absolute;
    width: calc(100% - 6px); }
  .summary-progress-bar .project-points-progress {
    background: #fff;
    height: 24px;
    position: absolute; }
  .summary-progress-bar .closed-points-progress {
    background: #9dce0a;
    height: 24px;
    position: absolute; }

.large-summary {
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .75rem 1rem; }
  .large-summary .large-summary-wrapper {
    -ms-flex-line-pack: center;
    align-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .large-summary .summary-progress-wrapper {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
  .large-summary .summary-progress-bar {
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
    min-width: 200px; }
  .large-summary .summary-stats {
    margin-right: 1rem; }
    .large-summary .summary-stats:last-child {
      border: 0;
      margin: 0; }
    .large-summary .summary-stats.summary-completed-points, .large-summary .summary-stats.summary-closed-tasks {
      border-right: 1px solid #050505;
      margin-right: 0;
      padding-right: 1rem; }
      .large-summary .summary-stats.summary-completed-points + .summary-stats, .large-summary .summary-stats.summary-closed-tasks + .summary-stats {
        border-left: 1px solid #555;
        margin-left: 0;
        padding-left: 1rem; }
    .large-summary .summary-stats.summary-sprint-stories {
      border-right: 1px solid #050505;
      margin-right: 0;
      padding-right: 1rem; }
      .large-summary .summary-stats.summary-sprint-stories + .summary-stats {
        border-left: 1px solid #555;
        margin-left: 0;
        padding-left: 1rem; }
  .large-summary .icon {
    width: 1.3rem;
    height: 1.3rem;
    fill: currentColor;
    margin-right: .4rem;
    vertical-align: middle; }
    .large-summary .icon.icon-stats {
      color: #5b8200;
      float: right;
      transition: color .3s linear; }
      .large-summary .icon.icon-stats:hover {
        color: #9dce0a;
        transition: color .3s linear; }
      .large-summary .icon.icon-stats.active {
        color: #9dce0a; }
      .large-summary .icon.icon-stats.active:hover {
        color: #5b8200;
        transition: color .3s linear; }
  .large-summary .issues-per-type-stats-content,
  .large-summary .issues-per-severity-stats-content,
  .large-summary .issues-per-priority-stats-content,
  .large-summary .issues-per-status-stats-content,
  .large-summary .issues-per-milestone-stats-content,
  .large-summary .points-per-role-stats-content {
    display: -ms-flexbox;
    display: flex;
    padding-left: 1rem; }
    .large-summary .issues-per-type-stats-content .summary-stats,
    .large-summary .issues-per-severity-stats-content .summary-stats,
    .large-summary .issues-per-priority-stats-content .summary-stats,
    .large-summary .issues-per-status-stats-content .summary-stats,
    .large-summary .issues-per-milestone-stats-content .summary-stats,
    .large-summary .points-per-role-stats-content .summary-stats {
      padding: 0; }
  .large-summary .toggle-issues-per-type,
  .large-summary .toggle-issues-per-severity,
  .large-summary .toggle-issues-per-priority,
  .large-summary .toggle-issues-per-status,
  .large-summary .toggle-issues-per-milestone,
  .large-summary .toggle-points-per-role {
    color: #fff;
    cursor: pointer; }
    .large-summary .toggle-issues-per-type svg,
    .large-summary .toggle-issues-per-severity svg,
    .large-summary .toggle-issues-per-priority svg,
    .large-summary .toggle-issues-per-status svg,
    .large-summary .toggle-issues-per-milestone svg,
    .large-summary .toggle-points-per-role svg {
      width: 1rem;
      height: 1rem; }
  .large-summary .issues-per-milestone-stats,
  .large-summary .issues-per-status-stats,
  .large-summary .issues-per-type-stats,
  .large-summary .issues-per-severity-stats,
  .large-summary .issues-per-priority-stats,
  .large-summary .points-per-role-stats {
    margin-left: .5rem;
    transform: translateY(35px);
    transition: all .2s ease-in-out; }
    .large-summary .issues-per-milestone-stats .number,
    .large-summary .issues-per-status-stats .number,
    .large-summary .issues-per-type-stats .number,
    .large-summary .issues-per-severity-stats .number,
    .large-summary .issues-per-priority-stats .number,
    .large-summary .points-per-role-stats .number {
      font-size: 16px;
      font-family: 'poppins';
      font-weight: 500; }
    .large-summary .issues-per-milestone-stats .role,
    .large-summary .issues-per-status-stats .role,
    .large-summary .issues-per-type-stats .role,
    .large-summary .issues-per-severity-stats .role,
    .large-summary .issues-per-priority-stats .role,
    .large-summary .points-per-role-stats .role {
      font-size: 11px;
      font-family: 'poppins'; }

.empty-burndown {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(47, 50, 68, 0.15);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 2rem 6rem; }
  .empty-burndown svg {
    width: 4rem;
    height: 4rem;
    fill: #2f3244;
    -ms-flex-preferred-size: 4rem;
    flex-basis: 4rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 2rem; }
  .empty-burndown p {
    margin: 0; }
  .empty-burndown .empty-text {
    -ms-flex: 1;
    flex: 1; }
  .empty-burndown .title {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: #2f3244;
    margin: 0;
    text-transform: uppercase; }
  .empty-burndown a {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    animation: blink 2s infinite; }

.graphics-container {
  max-height: 0;
  transition: max-height .5s ease-in;
  overflow: hidden; }
  .graphics-container.open {
    transition: max-height .5s ease-in;
    max-height: 300px; }
  .graphics-container.shown {
    max-height: 300px;
    transition: none; }

.main .large-summary .stats-wrapper.task-stats {
  padding-top: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.track-buttons-container {
  font-size: .9rem;
  position: relative; }

.track-button {
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative; }
  .track-button .track-inner {
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    border-radius: 4px 0 0 4px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-right: .1rem;
    min-width: 140px; }
    .track-button .track-inner:hover {
      background: #e8e8e8;
      transition: background .3s; }
  .track-button .watch-options-arrow {
    margin: 0 .5rem 0 auto; }
    .track-button .watch-options-arrow svg {
      width: 0.75rem;
      height: 0.75rem; }
  .track-button:hover {
    color: #050505; }
  .track-button.active .track-inner {
    background: rgba(157, 206, 10, 0.2); }
  .track-button.active .track-icon svg {
    fill: #5b8200; }
  .track-button.watch-container {
    margin-right: 1rem;
    position: relative; }
  .track-button .track-icon {
    padding: .3rem .6rem .3rem .75rem; }
    .track-button .track-icon svg {
      fill: #444;
      position: relative;
      top: 2px; }
  .track-button .track-button-counter {
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 2rem; }

.watch-button.active.is-hover .track-inner,
.like-button.active.is-hover .track-inner {
  background: #f00;
  color: #e4e3e3;
  transition: background .3s; }

.watch-button.active.is-hover svg,
.like-button.active.is-hover svg {
  fill: #ff8282; }

.watch-options {
  animation: dropdownFade 0.2s cubic-bezier(0.09, 0, 0.99, 0.01) alternate;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 4px;
  margin: 0;
  margin-top: 2.5rem;
  min-width: 300px;
  padding: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99; }
  .watch-options.hidden {
    animation: dropdownFade 0.2s cubic-bezier(0.09, 0, 0.99, 0.01) reverse; }
  .watch-options li {
    margin: 0; }
    .watch-options li:last-child a {
      border: 0; }
  .watch-options a {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    border-bottom: 1px solid rgba(118, 118, 118, 0.3);
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 0; }
    .watch-options a.active {
      color: #9dce0a; }
  .watch-options .watch-check {
    height: 1.25rem;
    width: 1.25rem; }
    .watch-options .watch-check svg {
      fill: #9dce0a; }

.upvote-btn {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0;
  flex: 0;
  -ms-flex-preferred-size: 3rem;
  flex-basis: 3rem;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: .3rem; }
  .upvote-btn .vote-inner {
    background: #f5f5f5;
    color: #767676;
    display: block;
    padding: 1rem;
    text-align: center; }
  .upvote-btn a:hover {
    background: #e8e8e8;
    color: #2f3244;
    transition: background .3s; }
    .upvote-btn a:hover path {
      fill: #2f3244; }
  .upvote-btn a.active {
    background: rgba(157, 206, 10, 0.2);
    color: #5b8200;
    transition: all .3s; }
    .upvote-btn a.active svg {
      fill: #5b8200; }
  .upvote-btn a.is-hover {
    background: #f00;
    color: #e4e3e3; }
    .upvote-btn a.is-hover svg {
      fill: #ff8282;
      transform: rotate(180deg);
      transition: all .3s; }
  .upvote-btn svg {
    fill: #767676;
    height: 1rem;
    width: 1rem; }
  .upvote-btn span {
    display: block; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.assigned-to-list {
  margin-top: 1rem; }
  .assigned-to-list .user-list-single {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    padding: .25rem 0;
    vertical-align: middle; }
    .assigned-to-list .user-list-single:last-child {
      border: 0; }
  .assigned-to-list .user-list-avatar {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    margin-right: .25rem;
    max-width: 3rem; }
    .assigned-to-list .user-list-avatar img {
      width: 100%; }
  .assigned-to-list .user-list-name {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #444;
    margin-left: .5rem; }
  .assigned-to-list .user-list-single:hover, .assigned-to-list .user-list-single.selected {
    background: rgba(216, 248, 121, 0.3);
    cursor: pointer; }
  .assigned-to-list .user-list-single:hover {
    transition: background .3s linear;
    transition-delay: .2s; }
  .assigned-to-list .user-list-single.is-active {
    background: rgba(216, 248, 121, 0.3);
    cursor: pointer;
    margin-bottom: 1rem;
    position: relative;
    transition: background .3s linear;
    transition-delay: .1s; }
  .assigned-to-list .user-list-single .remove-assigned-to {
    display: block;
    fill: #444;
    opacity: 1;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    transition: all .2s ease-in; }
    .assigned-to-list .user-list-single .remove-assigned-to:hover {
      fill: #f00; }

.ticket-watchers {
  margin-top: 1rem; }
  .ticket-watchers .user-list-single {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    padding: .25rem 0;
    vertical-align: middle; }
    .ticket-watchers .user-list-single:last-child {
      border: 0; }
  .ticket-watchers .user-list-avatar {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    margin-right: .25rem;
    max-width: 3rem; }
    .ticket-watchers .user-list-avatar img {
      width: 100%; }
  .ticket-watchers .user-list-name {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #444;
    margin-left: .5rem; }
  .ticket-watchers .user-list-single:hover .delete-watcher {
    opacity: 1;
    transition: opacity .2s ease-in; }
  .ticket-watchers .user-list-name {
    -ms-flex: 1;
    flex: 1;
    position: relative; }
  .ticket-watchers .delete-watcher {
    cursor: pointer;
    fill: currentColor;
    opacity: 0;
    position: absolute;
    right: .5rem;
    top: 0;
    transition: all .2s ease-in; }
    .ticket-watchers .delete-watcher:hover {
      fill: #f00;
      transition: color .3s ease-in; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wysiwyg {
  line-height: 1.4rem;
  margin-bottom: 2rem;
  overflow: auto;
  padding: 1rem; }
  .wysiwyg h1 {
    font-size: 2rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    font-size: 2.25em;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding-bottom: .5rem;
    text-transform: uppercase; }
  .wysiwyg h2 {
    font-size: 1.6rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    line-height: 1.225;
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding-bottom: .5rem; }
  .wysiwyg h3 {
    font-size: 1.2rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding-bottom: .5rem; }
  .wysiwyg h4 {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    margin-bottom: 1rem;
    margin-top: 1rem; }
  .wysiwyg ul,
  .wysiwyg ol {
    line-height: 1.5;
    list-style-position: outside;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 2em; }
    .wysiwyg ul ul,
    .wysiwyg ul ol,
    .wysiwyg ol ul,
    .wysiwyg ol ol {
      padding-left: 1rem; }
  .wysiwyg ul {
    list-style-type: disc; }
  .wysiwyg dl dt {
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    margin-top: 16px;
    padding: 0; }
  .wysiwyg dl dd {
    margin-bottom: 16px;
    padding: 0 16px; }
  .wysiwyg a {
    color: #5b8200; }
    .wysiwyg a:hover {
      color: #9dce0a; }
  .wysiwyg p {
    margin-bottom: 1rem;
    word-wrap: break-word; }
  .wysiwyg .codehilite {
    overflow: auto; }
  .wysiwyg blockquote p {
    margin: 0; }
  .wysiwyg pre,
  .wysiwyg code {
    font-size: .9rem;
    background: #5e5e5e;
    color: #e4e3e3;
    direction: ltr;
    font-family: 'courier new', 'monospace';
    margin-bottom: 1rem;
    overflow: auto;
    unicode-bidi: embed;
    white-space: pre-wrap; }
  .wysiwyg pre {
    line-height: 1.4rem;
    padding: 1rem; }
  .wysiwyg table {
    border: #767676 1px solid;
    margin-bottom: 1rem; }
    .wysiwyg table tbody tr:last-child {
      border-bottom: 0; }
  .wysiwyg tr {
    border-bottom: #767676 1px solid; }
  .wysiwyg th {
    border-right: #767676 1px solid;
    padding: 1rem 1rem 1rem .5rem; }
    .wysiwyg th:last-child {
      border-right: 0; }
  .wysiwyg td {
    border-right: #767676 1px solid;
    padding: .5rem; }
    .wysiwyg td:last-child {
      border-right: 0; }
  .wysiwyg img {
    max-width: 100%; }
  .wysiwyg textarea {
    background: #fff;
    max-height: none; }
  .wysiwyg hr {
    border: 1px solid #e4e3e3; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-common header h1 {
  margin-bottom: 0; }

.admin-common .admin-subtitle {
  color: #767676;
  margin-bottom: 2rem; }

.admin-common .total {
  font-size: 1.2rem;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e4e3e3;
  color: #444;
  display: -ms-flexbox;
  display: flex;
  padding: .3rem 1rem; }
  .admin-common .total:hover .icon-edit {
    opacity: 1;
    transition: opacity .3s linear; }

.nav-pills {
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0; }
  .nav-pills > li {
    display: block;
    float: left;
    position: relative;
    width: 50%;
    background: #eeeeee;
    color: #000; }
    .nav-pills > li.active {
      background-color: #b64234; }
      .nav-pills > li.active a {
        color: #fff; }
        .nav-pills > li.active a:hover, .nav-pills > li.active a:active {
          background-color: #b64234;
          border-color: #b64234;
          color: #fff; }
    .nav-pills > li a {
      border: 1px solid #000;
      display: block;
      padding: 15px;
      position: relative;
      text-align: center;
      transition: all .3s;
      color: #000; }
      .nav-pills > li a:hover, .nav-pills > li a:active {
        background-color: #ee6554;
        border-color: #ee6554;
        color: #fff; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.custom-field-options {
  margin-bottom: 1rem;
  text-align: right; }

.custom-fields-table {
  margin-bottom: 2em; }
  .custom-fields-table .row {
    border-bottom: 0;
    padding: .5rem 0; }
  .custom-fields-table .table-header {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    border-bottom: 3px solid #e4e3e3; }
    .custom-fields-table .table-header .custom-name,
    .custom-fields-table .table-header .custom-description {
      padding-left: 1.1rem; }
  .custom-fields-table .table-body .row:hover {
    background: rgba(157, 206, 10, 0.05);
    cursor: move;
    transition: background .2s linear; }
    .custom-fields-table .table-body .row:hover .icon-drag,
    .custom-fields-table .table-body .row:hover .custom-options {
      opacity: 1;
      transition: opacity .2s linear; }
  .custom-fields-table .table-body form.row:hover {
    background: none;
    cursor: default; }
  .custom-fields-table .table-body .custom-description {
    color: #767676; }
  .custom-fields-table .single-custom-field {
    border-bottom: 1px solid #e4e3e3;
    color: #555; }
  .custom-fields-table .icon-drag {
    fill: #767676;
    opacity: 0;
    padding: 0 .25rem 0 .1rem;
    transition: color .2s linear; }
  .custom-fields-table .custom-name,
  .custom-fields-table .custom-description {
    margin-right: .5rem; }
  .custom-fields-table .custom-name {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .custom-fields-table .custom-description {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -ms-flex-positive: 8;
    flex-grow: 8; }
  .custom-fields-table .custom-field-type {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 130px; }
  .custom-fields-table .custom-options {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    opacity: 0;
    text-align: center; }
    .custom-fields-table .custom-options svg {
      cursor: pointer;
      fill: #767676;
      margin-right: .5rem;
      transition: color .2s linear;
      vertical-align: middle; }
      .custom-fields-table .custom-options svg:hover {
        fill: #5b8200;
        transition: color .2s linear; }
      .custom-fields-table .custom-options svg.icon-trash, .custom-fields-table .custom-options svg.icon-close {
        fill: #ff8282; }
  .custom-fields-table .custom-options-wrapper {
    opacity: 0;
    transition: opacity .3s linear; }
    .custom-fields-table .custom-options-wrapper a {
      display: inline-block; }
  .custom-fields-table form .custom-options-wrapper {
    opacity: 1; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-functionalities .module-container {
  max-width: 900px;
  width: 100%; }

.admin-functionalities .module {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0; }
  .admin-functionalities .module.active .module-icon .icon,
  .admin-functionalities .module.active .module-name {
    color: #5b8200;
    fill: #5b8200; }
  .admin-functionalities .module.hide {
    display: none; }

.admin-functionalities .module-icon {
  -ms-flex-preferred-size: 3rem;
  flex-basis: 3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 .5rem 0 0; }
  .admin-functionalities .module-icon .icon {
    width: 3rem;
    height: 3rem;
    fill: #767676; }

.admin-functionalities .module-name {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #767676;
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 .5rem; }

.admin-functionalities .module-desc {
  font-size: .9rem;
  color: #767676;
  -ms-flex: 1;
  flex: 1;
  margin: 0 2rem 0 0; }
  .admin-functionalities .module-desc p {
    margin: 0; }

.admin-functionalities .module-desc-options,
.admin-functionalities .videoconference-attributes {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  margin-top: .5rem; }
  .admin-functionalities .module-desc-options .options,
  .admin-functionalities .videoconference-attributes .options {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: 2.5rem; }
  .admin-functionalities .module-desc-options fieldset,
  .admin-functionalities .module-desc-options .icon,
  .admin-functionalities .videoconference-attributes fieldset,
  .admin-functionalities .videoconference-attributes .icon {
    margin: 0 .5rem; }
  .admin-functionalities .module-desc-options .icon,
  .admin-functionalities .videoconference-attributes .icon {
    fill: #767676; }
    .admin-functionalities .module-desc-options .icon:hover,
    .admin-functionalities .videoconference-attributes .icon:hover {
      fill: #5b8200; }

.admin-functionalities .module-scrum .options {
  -ms-flex-item-align: end;
  align-self: flex-end; }

.admin-functionalities .module-videoconference .options {
  -ms-flex-item-align: start;
  align-self: flex-start; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-membership-table .title {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }

.admin-membership-table .avatar {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .admin-membership-table .avatar figcaption {
    margin-left: 1rem;
    width: 75%; }
    .admin-membership-table .avatar figcaption span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 100%; }
  .admin-membership-table .avatar img {
    -ms-flex-preferred-size: 35px;
    flex-basis: 35px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 35px; }
  .admin-membership-table .avatar .name,
  .admin-membership-table .avatar .email {
    display: block;
    width: 100%; }
  .admin-membership-table .avatar .name {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }
  .admin-membership-table .avatar .email {
    color: #767676; }

.admin-membership-table .header-role,
.admin-membership-table .header-status {
  padding-left: .5rem; }

.admin-membership-table .row-role {
  padding-right: 1rem; }

.admin-membership-table .row-status {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.admin-membership-table .active,
.admin-membership-table .resend {
  padding: .4rem .5rem; }

.admin-membership-table .active {
  background-color: #e4e3e3; }

.admin-membership-table .resend {
  background-color: #5b8200;
  color: #fff; }
  .admin-membership-table .resend:hover {
    background-color: #9dce0a;
    color: #fff;
    transition: background-color .3s linear; }

.admin-membership-table .delete {
  fill: #767676;
  transition: fill .2s; }
  .admin-membership-table .delete:hover {
    fill: #f00; }

.admin-membership-table .pending {
  color: #ff8282; }

.admin-membership-table .row-admin input {
  vertical-align: middle; }

.admin-membership-table .row-admin label {
  font-size: .9rem; }

.admin-membership-table .row-member,
.admin-membership-table .row-role,
.admin-membership-table .header-member,
.admin-membership-table .header-role {
  -ms-flex-preferred-size: 210px;
  flex-basis: 210px;
  -ms-flex-positive: 3;
  flex-grow: 3;
  min-width: 210px; }

.admin-membership-table .row-admin,
.admin-membership-table .header-admin {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: 70px; }

.admin-membership-table .row-status,
.admin-membership-table .header-status {
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
  -ms-flex-positive: 1;
  flex-grow: 1; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-menu li {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #cbc9c9;
  text-transform: uppercase; }
  .admin-menu li:last-child {
    border-bottom: 0; }

.admin-menu a {
  display: block;
  padding: 1rem 0 1rem 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.reviews {
  max-width: 910px; }
  .reviews .nav-pills {
    width: 300px;
    margin: auto;
    margin-bottom: 30px;
    font-family: poppins; }
  .reviews .project-sprint-data,
  .reviews .project-release-data {
    max-width: 910px; }
    .reviews .project-sprint-data h1,
    .reviews .project-release-data h1 {
      float: left;
      text-transform: capitalize; }
    .reviews .project-sprint-data .sprint-details,
    .reviews .project-sprint-data .release-details,
    .reviews .project-release-data .sprint-details,
    .reviews .project-release-data .release-details {
      margin: 10px 0px 20px;
      border-radius: 5px;
      background: #fff;
      padding: 12px 0 0 0;
      font-family: poppins; }
      .reviews .project-sprint-data .sprint-details .release-name,
      .reviews .project-sprint-data .release-details .release-name,
      .reviews .project-release-data .sprint-details .release-name,
      .reviews .project-release-data .release-details .release-name {
        padding: 12px;
        font-size: 20px;
        border-bottom: 1px solid #eeeeee; }
    .reviews .project-sprint-data table,
    .reviews .project-release-data table {
      width: 100%;
      text-align: left;
      background: #fff; }
      .reviews .project-sprint-data table tr,
      .reviews .project-release-data table tr {
        border-bottom: 1px solid #eeeeee; }
        .reviews .project-sprint-data table tr:first-child,
        .reviews .project-release-data table tr:first-child {
          text-transform: capitalize; }
        .reviews .project-sprint-data table tr td, .reviews .project-sprint-data table tr th,
        .reviews .project-release-data table tr td,
        .reviews .project-release-data table tr th {
          padding: 12px 23px;
          font-weight: 100;
          font-family: poppins; }
          .reviews .project-sprint-data table tr td label, .reviews .project-sprint-data table tr th label,
          .reviews .project-release-data table tr td label,
          .reviews .project-release-data table tr th label {
            color: #097f19; }
            .reviews .project-sprint-data table tr td label.close, .reviews .project-sprint-data table tr th label.close,
            .reviews .project-release-data table tr td label.close,
            .reviews .project-release-data table tr th label.close {
              color: red; }
          .reviews .project-sprint-data table tr td:last-child, .reviews .project-sprint-data table tr th:last-child,
          .reviews .project-release-data table tr td:last-child,
          .reviews .project-release-data table tr th:last-child {
            width: auto; }
        .reviews .project-sprint-data table tr th,
        .reviews .project-release-data table tr th {
          font-weight: 500; }
        .reviews .project-sprint-data table tr:last-child,
        .reviews .project-release-data table tr:last-child {
          border: none; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-project-export-buttons {
  margin: 2rem 0 1rem; }

.admin-project-export-result {
  margin-top: 1rem; }
  .admin-project-export-result .spin {
    margin: 0 auto;
    width: 2.5rem; }
    .admin-project-export-result .spin img {
      animation-timing-function: ease-in-out;
      animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
      margin: 0 auto;
      max-height: 1rem;
      max-width: 1rem;
      transform-origin: 32 32;
      width: 100%; }
  .admin-project-export-result h3 {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    background: #f5f5f5;
    color: #555;
    margin: .5rem;
    padding: .5rem;
    text-align: center; }
  .admin-project-export-result p {
    color: #767676;
    margin: .5rem 0;
    text-align: center; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.project-details form {
  display: -ms-flexbox;
  display: flex; }

.project-details fieldset {
  margin-bottom: 1rem; }

.project-details label {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  display: block;
  margin-bottom: .2rem; }

.project-details .project-details-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 180px;
  margin-right: 2rem; }
  .project-details .project-details-image .image {
    width: 100%; }

.project-details .change-image {
  display: block; }

.project-details .image-container {
  position: relative;
  margin-bottom: .5rem; }

.project-details .loading-overlay {
  display: none; }
  .project-details .loading-overlay.active {
    -ms-flex-align: center;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%; }

.project-details .loading-spinner {
  animation-timing-function: ease-in-out;
  animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
  margin: 0 auto;
  max-height: 1rem;
  max-width: 1rem;
  transform-origin: 32 32;
  border: 0;
  transform-origin: center center; }

.project-details .use-default-image {
  font-size: 1rem;
  display: block;
  margin-top: .25rem;
  text-align: center; }
  .project-details .use-default-image:hover {
    color: #f00; }

.project-details .project-details-form-data {
  -ms-flex: 1;
  flex: 1;
  max-width: 500px; }

@media (max-width: 767px) {
  .project-details form {
    display: block; } }

.project-details .looking-for-people {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #e4e3e3;
  border-top: 1px solid #e4e3e3;
  padding: 1rem 0; }

.project-details .looking-for-people-selector {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }
  .project-details .looking-for-people-selector svg {
    width: 1rem;
    height: 1rem;
    fill: #767676;
    margin-left: .5rem; }
  .project-details .looking-for-people-selector .check {
    margin-left: auto; }

.project-details .looking-for-people-reason {
  display: block;
  margin-top: 1rem; }
  .project-details .looking-for-people-reason.ng-hide-remove-active {
    animation: dropdownFade .3s; }
  .project-details .looking-for-people-reason.ng-hide-add-active {
    animation: dropdownFade .2s reverse;
    animation-delay: .1s; }

.project-details .delete-project, .project-details .archive-project {
  font-size: 1rem;
  display: block;
  margin-top: 1rem;
  text-align: right; }
  .project-details .delete-project:hover, .project-details .archive-project:hover {
    color: #f00; }

.project-details .archive-project {
  float: left; }

.project-details .private-or-public {
  font-size: 1rem;
  color: #767676;
  margin-bottom: 2rem; }
  .project-details .private-or-public svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: #767676;
    margin-right: .5rem;
    vertical-align: middle; }

.project-privacy-settings {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .5rem; }
  .project-privacy-settings .privacy-option {
    -ms-flex: 1;
    flex: 1;
    transition: .2 linear; }
    .project-privacy-settings .privacy-option:first-child {
      margin-right: .5rem; }
  .project-privacy-settings input[type="radio"] {
    display: none; }
  .project-privacy-settings input[type="text"] {
    display: none; }
  .project-privacy-settings label {
    background: #f5f5f5;
    color: #444;
    text-align: center;
    transition: all .2s linear; }
    .project-privacy-settings label:hover {
      background: rgba(157, 206, 10, 0.4);
      color: #444; }
      .project-privacy-settings label:hover svg {
        fill: #444; }
    .project-privacy-settings label svg {
      width: 1.1rem;
      height: 1.1rem;
      fill: #444;
      margin-left: .5rem;
      vertical-align: middle; }
  .project-privacy-settings .privacy-project:checked + label {
    background: #9dce0a;
    color: #fff; }
    .project-privacy-settings .privacy-project:checked + label svg {
      width: 1.1rem;
      height: 1.1rem;
      fill: #fff; }
  .project-privacy-settings .privacy-project:checked ~ input[type="text"] {
    display: block; }
  .project-privacy-settings .privacy-project[disabled] + label {
    background: #f5f5f5;
    box-shadow: none;
    color: #767676;
    cursor: not-allowed;
    opacity: .65; }
    .project-privacy-settings .privacy-project[disabled] + label:hover {
      background: #f5f5f5;
      color: #767676; }

tg-admin-project-restrictions p {
  font-size: 1rem;
  text-align: center; }

tg-admin-project-restrictions a {
  color: #5b8200; }

tg-admin-project-restrictions span {
  display: block; }

tg-admin-project-restrictions span:first-child::before {
  border: 1px solid #ff8282;
  border-radius: 6px;
  color: #ff8282;
  content: '!';
  display: inline-block;
  height: 12px;
  line-height: 12px;
  margin-right: .5rem;
  text-align: center;
  width: 12px; }

.admin-project-profile-owner-actions {
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 1rem; }
  .admin-project-profile-owner-actions a {
    color: #5b8200; }
    .admin-project-profile-owner-actions a:hover {
      color: #9dce0a;
      transition: color .2s; }
  .admin-project-profile-owner-actions img {
    width: 100%; }
  .admin-project-profile-owner-actions .owner-info {
    -ms-flex: 1;
    flex: 1;
    padding-left: .5rem; }
  .admin-project-profile-owner-actions .owner-info-title {
    color: #767676; }
  .admin-project-profile-owner-actions .owner-name {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }
  .admin-project-profile-owner-actions .owner-avatar {
    width: 2.5rem; }
  .admin-project-profile-owner-actions .request {
    -ms-flex-negative: 0;
    flex-shrink: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.project-details .releases .add-release {
  background: #5b8200;
  padding: .25rem .25rem 0;
  transition: background .2s;
  float: right;
  margin-top: 11px; }
  .project-details .releases .add-release svg {
    fill: #e4e3e3;
    height: 1.4rem;
    width: 1.5rem; }

.project-details .releases .project-release-data {
  max-width: 910px; }
  .project-details .releases .project-release-data h1 {
    float: left;
    text-transform: capitalize; }
  .project-details .releases .project-release-data .release-details {
    margin: 10px 0px 20px;
    border-radius: 5px;
    background: #fff;
    padding: 12px 0 0 0;
    font-family: poppins; }
    .project-details .releases .project-release-data .release-details .release-name {
      padding: 12px;
      font-size: 20px;
      border-bottom: 1px solid #eeeeee; }
    .project-details .releases .project-release-data .release-details .section {
      width: 100%;
      float: left;
      background: #ffff; }
      .project-details .releases .project-release-data .release-details .section h4 {
        float: left;
        width: 17%;
        padding: 0px 0 15px 5px;
        background: #ffff; }
      .project-details .releases .project-release-data .release-details .section h4.links {
        text-align: right;
        width: 14%; }
      .project-details .releases .project-release-data .release-details .section .add-task {
        background: #5b8200;
        padding: .25rem .25rem 0;
        transition: background .2s;
        margin-top: 11px; }
        .project-details .releases .project-release-data .release-details .section .add-task svg {
          fill: #e4e3e3;
          width: 1.5rem; }
      .project-details .releases .project-release-data .release-details .section table tr td {
        width: 240px; }
  .project-details .releases .project-release-data table {
    width: 100%;
    text-align: left; }
    .project-details .releases .project-release-data table tr {
      border-bottom: 1px solid #eeeeee; }
      .project-details .releases .project-release-data table tr td, .project-details .releases .project-release-data table tr th {
        width: 220px;
        padding: 9px 12px; }
        .project-details .releases .project-release-data table tr td label, .project-details .releases .project-release-data table tr th label {
          color: #097f19; }
          .project-details .releases .project-release-data table tr td label.close, .project-details .releases .project-release-data table tr th label.close {
            color: red; }
        .project-details .releases .project-release-data table tr td:last-child, .project-details .releases .project-release-data table tr th:last-child {
          width: auto; }

.project-details .releases .release {
  margin-bottom: 2rem; }
  .project-details .releases .release .release-name {
    font-size: .9rem; }
  .project-details .releases .release .release-summary tr th:first-child {
    position: relative; }
  .project-details .releases .release .release-summary tr th {
    padding-left: 0; }
  .project-details .releases .release header {
    font-family: 'poppins';
    font-weight: 500; }
  .project-details .releases .release:hover .edit-release {
    opacity: 1;
    transition: opacity .2s ease-in;
    font-size: .9rem; }
  .project-details .releases .release .date-range {
    font-size: .9rem; }
  .project-details .releases .release .edit-release {
    opacity: 0;
    position: absolute;
    left: 110px;
    top: 8px;
    transition: opacity .2s ease-in;
    vertical-align: baseline; }
  .project-details .releases .release svg {
    fill: #767676; }
    .project-details .releases .release svg:hover {
      fill: #5b8200;
      transition: fill .2s ease-in; }
  .project-details .releases .release .number {
    font-size: .9rem;
    margin-right: .2rem; }
  .project-details .releases .release .description {
    font-size: .9rem;
    line-height: .6rem;
    margin-top: 5px; }
  .project-details .releases .release ul {
    margin: 0;
    text-align: right; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-roles .save {
  display: inline-block; }

.admin-roles .role-name {
  font-size: 2rem;
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  color: #444; }

.admin-roles .icon:hover {
  fill: #5b8200;
  transition: fill .2s linear; }

.admin-roles .icon-edit {
  cursor: pointer;
  fill: #767676;
  margin-left: .5rem;
  opacity: 0;
  transition: opacity .2s linear; }

.admin-roles .icon-save {
  fill: #767676;
  margin-left: .5rem;
  transition: fill .2s linear; }

.admin-roles .edit-role {
  background-color: #e4e3e3;
  display: none;
  margin-bottom: 1rem;
  padding: .3rem 1rem; }
  .admin-roles .edit-role input {
    background-color: #fff;
    width: 50%; }

.admin-roles .any-computable-role {
  background: #f00;
  color: #fff;
  margin-bottom: .5rem;
  padding: .5rem; }

.admin-roles .general-category {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 2rem; }
  .admin-roles .general-category .check {
    margin-left: .5rem; }
    .admin-roles .general-category .check input {
      height: 40px;
      width: 85px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-submenu-roles .single-role {
  display: inline-block;
  max-width: 187px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  display: inline-block; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-submenu li {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #767676;
  text-transform: uppercase; }
  .admin-submenu li:last-child {
    border-bottom: 0; }

.admin-submenu ul a {
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0 1rem 1rem; }
  .admin-submenu ul a:hover {
    background: #35394d;
    color: #fff;
    transition: all .2s; }
  .admin-submenu ul a.active {
    background: #444862;
    color: #fff;
    transition: all .2s; }
  .admin-submenu ul a span {
    display: block;
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.admin-submenu input {
  margin: 0 1rem;
  width: 85%; }

.admin-submenu .button-gray {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 1rem;
  padding: .5rem 0;
  text-align: center; }
  .admin-submenu .button-gray:hover {
    background-color: #b64234; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-webhooks .webhooks-table {
  margin-bottom: 1rem; }
  .admin-webhooks .webhooks-table .row {
    border-bottom: 0;
    padding: .5rem 0; }
  .admin-webhooks .webhooks-table .row:hover .webhook-options-wrapper {
    opacity: 1;
    transition: opacity .2s linear; }

.admin-webhooks .table-header {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #767676; }

.admin-webhooks .table-body .webhook-service {
  color: #555; }

.admin-webhooks .single-webhook-wrapper {
  border-bottom: 1px solid #e4e3e3; }

.admin-webhooks .webhook-service,
.admin-webhooks .webhook-url {
  margin-right: .5rem; }

.admin-webhooks .webhook-service {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.admin-webhooks .webhook-url {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden; }
  .admin-webhooks .webhook-url span {
    display: inline-block;
    max-width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    color: #767676;
    display: inline-block;
    vertical-align: middle; }
  .admin-webhooks .webhook-url a {
    color: #5b8200;
    cursor: pointer;
    margin-left: .5rem;
    white-space: nowrap; }
    .admin-webhooks .webhook-url a:hover {
      color: #9dce0a; }

.admin-webhooks .webhook-options {
  -ms-flex-preferred-size: 100px;
  flex-basis: 100px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto; }
  .admin-webhooks .webhook-options a {
    cursor: pointer;
    display: inline-block;
    margin-right: .5rem; }
  .admin-webhooks .webhook-options svg {
    fill: #767676; }
    .admin-webhooks .webhook-options svg:hover {
      fill: #5b8200;
      transition: fill .2s linear; }

.admin-webhooks .webhook-options-wrapper {
  opacity: 0;
  transition: opacity .3s linear; }

.admin-webhooks .webhook-url-inputs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  justify-content: center; }
  .admin-webhooks .webhook-url-inputs fieldset {
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: .3rem; }

.admin-webhooks .webhooks-history {
  display: none; }

.admin-webhooks .history-single-wrapper {
  border-bottom: 1px solid #e4e3e3;
  margin-left: 22%; }

.admin-webhooks .history-single {
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem;
  transition: background .2s linear; }
  .admin-webhooks .history-single:hover {
    background: rgba(157, 206, 10, 0.1);
    transition: background .2s linear; }
  .admin-webhooks .history-single.history-single-open:hover {
    background: none; }
  .admin-webhooks .history-single.history-single-open .icon-arrow-bottom {
    transform: rotate(180deg);
    transition: transform .3s linear; }
  .admin-webhooks .history-single .icon-arrow-bottom {
    transform: rotate(0);
    transition: transform .3s linear; }

.admin-webhooks .history-response-icon {
  background: #555;
  border-radius: 25%;
  display: inline-block;
  height: .8rem;
  margin-right: .5rem;
  width: .8rem; }
  .admin-webhooks .history-response-icon.history-success {
    background: #9dce0a; }
  .admin-webhooks .history-response-icon.history-error {
    background: #f00; }

.admin-webhooks .history-single-response {
  max-height: 0;
  transition: max-height .5s ease-in;
  overflow: hidden; }
  .admin-webhooks .history-single-response.open {
    transition: max-height .5s ease-in;
    max-height: 1000px; }

.admin-webhooks .history-single-request-header,
.admin-webhooks .history-single-response-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem 0 .5rem; }
  .admin-webhooks .history-single-request-header span:first-child,
  .admin-webhooks .history-single-response-header span:first-child {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    color: #767676; }
  .admin-webhooks .history-single-request-header a,
  .admin-webhooks .history-single-response-header a {
    font-size: .9rem;
    color: #767676; }
    .admin-webhooks .history-single-request-header a:hover,
    .admin-webhooks .history-single-response-header a:hover {
      color: #9dce0a;
      transition: color .2s linear; }
  .admin-webhooks .history-single-request-header .icon,
  .admin-webhooks .history-single-response-header .icon {
    margin-right: .3rem;
    vertical-align: middle; }

.admin-webhooks .history-single-request-body .response-container,
.admin-webhooks .history-single-response-body .response-container {
  font-family: 'courier new', 'monospace';
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: .5rem; }

.admin-webhooks .history-single-request-body span,
.admin-webhooks .history-single-response-body span {
  font-size: .9rem;
  color: #767676;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center; }

.admin-webhooks .history-single-request-body textarea,
.admin-webhooks .history-single-response-body textarea {
  font-family: 'courier new', 'monospace';
  border: 0;
  -ms-flex-positive: 2;
  flex-grow: 2;
  min-height: 7.5rem; }

.admin-webhooks .history-single-response-body textarea {
  min-height: 10rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-contrib form {
  margin: 1rem 0;
  max-width: 700px;
  width: 100%; }

.admin-contrib h2 {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0; }

.admin-contrib fieldset {
  border-bottom: 1px solid #e4e3e3;
  margin-bottom: 1rem; }

.admin-contrib input {
  margin-bottom: 1rem; }

.admin-contrib label {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  display: block;
  margin-bottom: .25rem; }

.admin-contrib .submit-button {
  display: block;
  text-align: center; }

.admin-contrib .select-input-text .field-with-option {
  display: -ms-flexbox;
  display: flex; }

.admin-contrib .select-input-text .option-wrapper {
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #767676;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding: 0 1rem; }

.admin-contrib .check-item {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem; }
  .admin-contrib .check-item:last-child {
    border-bottom: 0;
    margin-bottom: 1rem; }

.contrib-form-wrapper {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem; }
  .contrib-form-wrapper input {
    margin: 0; }
  .contrib-form-wrapper .contrib-input {
    border: 0;
    -ms-flex: 5;
    flex: 5;
    margin: 0; }
  .contrib-form-wrapper .contrib-test {
    border: 0;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    margin-left: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.default-values fieldset {
  margin-bottom: 1rem; }
  .default-values fieldset:last-child {
    margin-top: 1.5rem; }

.default-values label,
.default-values select {
  display: inline-block;
  width: 49.7%; }

.default-values a {
  color: #fff;
  display: block;
  text-align: center; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.project-csv {
  margin-bottom: 2.5rem; }
  .project-csv .project-values-title {
    margin-bottom: 1rem; }
  .project-csv .csv-regenerate-field {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem; }
    .project-csv .csv-regenerate-field a {
      font-size: .9rem;
      min-width: 110px; }
    .project-csv .csv-regenerate-field .icon:not(.icon-clipboard) {
      fill: currentColor;
      height: .9rem;
      margin-right: .3rem;
      vertical-align: middle;
      width: .9rem; }
  .project-csv .field-with-options {
    display: -ms-flexbox;
    display: flex;
    margin-right: 1rem;
    width: 100%; }
    .project-csv .field-with-options input {
      -ms-flex-positive: 1;
      flex-grow: 1; }
  .project-csv .option-wrapper {
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #767676;
    border-left: 0;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    padding: 0 1rem; }
  .project-csv .button {
    padding: .5rem 1rem; }
    .project-csv .button span {
      margin: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.project-values-row {
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem; }
  .project-values-row div {
    margin-left: 1rem;
    position: relative; }
  .project-values-row .icon {
    cursor: pointer;
    fill: #767676;
    opacity: 0; }
    .project-values-row .icon:hover {
      fill: #444;
      transition: all .2s ease-in; }

.project-values-header {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  border-bottom: 3px solid #e4e3e3; }

.project-values-body form:last-child .project-values-row {
  border: 0; }

.project-values-body .project-values-row:hover {
  background: #e9ffb5;
  cursor: move;
  transition: background .2s ease-in; }
  .project-values-body .project-values-row:hover .icon {
    opacity: 1;
    transition: opacity .2s ease-in; }

.project-values-name {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 3;
  flex-grow: 3; }

.project-values-value {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.project-values-isclosed,
.project-values-settings {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: right; }

.project-values-settings a {
  display: inline-block;
  margin-right: .5rem; }

.project-values-settings svg.icon-trash {
  fill: #ff8282; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.admin-third-parties form {
  margin: 1rem 0;
  max-width: 700px;
  width: 100%; }

.admin-third-parties input,
.admin-third-parties textarea {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif; }

.admin-third-parties fieldset {
  margin-bottom: 1rem; }

.admin-third-parties label {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  display: block;
  margin-bottom: .2rem; }

.admin-third-parties textarea {
  height: 10rem; }

.admin-third-parties .submit-button {
  color: #fff;
  display: block;
  text-align: center; }

.admin-third-parties .select-input-text .field-with-option {
  display: -ms-flexbox;
  display: flex; }

.admin-third-parties .select-input-text .option-wrapper {
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #767676;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1rem; }

.admin-third-parties .select-input-text .help-copy {
  font-size: .9rem;
  opacity: 0; }
  .admin-third-parties .select-input-text .help-copy.visible {
    opacity: 1;
    transition: opacity .2s linear; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.cancel-account fieldset {
  text-align: center; }

.cancel-account p {
  color: #444;
  margin-bottom: .5rem;
  text-align: center; }

.cancel-account form {
  margin-top: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.change-email-form fieldset {
  text-align: center; }

.change-email-form p {
  color: #444;
  margin-bottom: .5rem;
  text-align: center; }

.change-email-form form {
  margin-top: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.change-password-text {
  text-align: center; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.forgot-form-container {
  text-align: center; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.login-form-container .login-password {
  position: relative; }

.login-form-container input:focus + .forgot-pass {
  opacity: 0;
  transition: opacity .3s linear; }

.login-form-container .forgot-pass {
  font-size: .9rem;
  color: #555;
  opacity: 1;
  position: absolute;
  right: 1rem;
  top: .6rem;
  transition: all .3s linear; }
  .login-form-container .forgot-pass:hover {
    color: #444;
    transition: color .3s linear; }

.login-form-container input[type="text"],
.login-form-container input[type="password"] {
  padding: 12px 8px;
  border-color: #e4e3e3; }

.login-form-container .submit-button.button-gray {
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-family: 'poppins';
  font-weight: 300;
  text-transform: capitalize; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.register-form-container {
  display: block; }
  .register-form-container .register-text-top {
    display: block;
    margin-bottom: 1rem;
    text-align: center; }
  .register-form-container .register-text {
    font-size: .9rem; }
  .register-form-container input[type="text"], .register-form-container input[type="password"] {
    padding: 12px 8px;
    border-color: #e4e3e3; }
  .register-form-container .button-register {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-family: 'poppins';
    font-weight: 300;
    text-transform: capitalize; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.backlog-table-sub-header h4 {
  font-family: poppins;
  text-align: center;
  padding: 3px 0;
  background: #fd8185;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 300;
  color: #fff; }

.backlog-table-header,
.backlog-table-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%; }
  .backlog-table-header.show-tags .tags-block,
  .backlog-table-body.show-tags .tags-block {
    display: block;
    font-weight: 300;
    font-family: poppins;
    color: #767676;
    font-size: 13px; }
  .backlog-table-header .row,
  .backlog-table-body .row {
    font-size: .9rem;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #767676;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 0 .5rem .5rem;
    text-align: left;
    width: 100%; }
    .backlog-table-header .row span,
    .backlog-table-body .row span {
      font-weight: 300;
      font-family: poppins;
      color: #767676;
      font-size: 13px; }
      .backlog-table-header .row span.points-value,
      .backlog-table-body .row span.points-value {
        color: #000; }
      .backlog-table-header .row span.header-points,
      .backlog-table-body .row span.header-points {
        font-size: 16px; }
  .backlog-table-header .backlog-table-title:hover,
  .backlog-table-header .row:hover,
  .backlog-table-body .backlog-table-title:hover,
  .backlog-table-body .row:hover {
    background: transparent; }
  .backlog-table-header .backlog-table-title .input,
  .backlog-table-header .row .input,
  .backlog-table-body .backlog-table-title .input,
  .backlog-table-body .row .input {
    -ms-flex-preferred-size: 25px;
    flex-basis: 25px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .backlog-table-header .backlog-table-title .user-stories,
  .backlog-table-header .row .user-stories,
  .backlog-table-body .backlog-table-title .user-stories,
  .backlog-table-body .row .user-stories {
    width: 100%; }
  .backlog-table-header .backlog-table-title .status,
  .backlog-table-header .row .status,
  .backlog-table-body .backlog-table-title .status,
  .backlog-table-body .row .status {
    -ms-flex-preferred-size: 120px;
    flex-basis: 120px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .backlog-table-header .backlog-table-title .technology,
  .backlog-table-header .row .technology,
  .backlog-table-body .backlog-table-title .technology,
  .backlog-table-body .row .technology {
    -ms-flex-preferred-size: 120px;
    flex-basis: 120px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .backlog-table-header .backlog-table-title .points,
  .backlog-table-header .row .points,
  .backlog-table-body .backlog-table-title .points,
  .backlog-table-body .row .points {
    -ms-flex-preferred-size: 125px;
    flex-basis: 125px;
    -ms-flex-positive: 0;
    flex-grow: 0; }
  .backlog-table-header .votes,
  .backlog-table-body .votes {
    color: #767676;
    -ms-flex-preferred-size: 65px;
    flex-basis: 65px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center; }
    .backlog-table-header .votes.inactive,
    .backlog-table-body .votes.inactive {
      color: #767676; }
      .backlog-table-header .votes.inactive svg,
      .backlog-table-body .votes.inactive svg {
        fill: #767676; }
    .backlog-table-header .votes.is-voted,
    .backlog-table-body .votes.is-voted {
      color: #9dce0a;
      fill: #9dce0a; }
    .backlog-table-header .votes svg,
    .backlog-table-body .votes svg {
      fill: #555;
      height: .75rem;
      margin-right: .25rem;
      vertical-align: middle;
      width: .75rem; }
  .backlog-table-header .status,
  .backlog-table-header .technology,
  .backlog-table-header .points,
  .backlog-table-body .status,
  .backlog-table-body .technology,
  .backlog-table-body .points {
    position: relative;
    text-align: right; }
    .backlog-table-header .status .popover a,
    .backlog-table-header .technology .popover a,
    .backlog-table-header .points .popover a,
    .backlog-table-body .status .popover a,
    .backlog-table-body .technology .popover a,
    .backlog-table-body .points .popover a {
      text-align: left;
      width: 100%; }
    .backlog-table-header .status .popover .point,
    .backlog-table-header .technology .popover .point,
    .backlog-table-header .points .popover .point,
    .backlog-table-body .status .popover .point,
    .backlog-table-body .technology .popover .point,
    .backlog-table-body .points .popover .point {
      text-align: center; }
    .backlog-table-header .status .icon,
    .backlog-table-header .technology .icon,
    .backlog-table-header .points .icon,
    .backlog-table-body .status .icon,
    .backlog-table-body .technology .icon,
    .backlog-table-body .points .icon {
      width: 0.75rem;
      height: 0.75rem;
      fill: currentColor;
      margin-left: .2rem; }
  .backlog-table-header .pop-status,
  .backlog-table-body .pop-status {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 65%;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 0;
    width: 200px;
    z-index: 99;
    text-align: center;
    padding-right: 1rem; }
    .backlog-table-header .pop-status a,
    .backlog-table-body .pop-status a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .backlog-table-header .pop-status a:last-child,
      .backlog-table-body .pop-status a:last-child {
        border: 0; }
      .backlog-table-header .pop-status a:hover,
      .backlog-table-body .pop-status a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .backlog-table-header .pop-status a:hover.point,
        .backlog-table-body .pop-status a:hover.point {
          color: #fff; }
    .backlog-table-header .pop-status:after,
    .backlog-table-body .pop-status:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }
    .backlog-table-header .pop-status.fix,
    .backlog-table-body .pop-status.fix {
      bottom: 0;
      top: auto; }
  .backlog-table-header .pop-role,
  .backlog-table-body .pop-role {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 65%;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 0;
    width: 200px;
    z-index: 99;
    text-align: center; }
    .backlog-table-header .pop-role a,
    .backlog-table-body .pop-role a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .backlog-table-header .pop-role a:last-child,
      .backlog-table-body .pop-role a:last-child {
        border: 0; }
      .backlog-table-header .pop-role a:hover,
      .backlog-table-body .pop-role a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .backlog-table-header .pop-role a:hover.point,
        .backlog-table-body .pop-role a:hover.point {
          color: #fff; }
    .backlog-table-header .pop-role:after,
    .backlog-table-body .pop-role:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }
    .backlog-table-header .pop-role a.active,
    .backlog-table-body .pop-role a.active {
      background: #9dce0a;
      color: #fff; }
  .backlog-table-header .pop-points,
  .backlog-table-body .pop-points {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    bottom: 10px;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    width: 150px;
    z-index: 99;
    text-align: center;
    padding-right: 3rem; }
    .backlog-table-header .pop-points a,
    .backlog-table-body .pop-points a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .backlog-table-header .pop-points a:last-child,
      .backlog-table-body .pop-points a:last-child {
        border: 0; }
      .backlog-table-header .pop-points a:hover,
      .backlog-table-body .pop-points a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .backlog-table-header .pop-points a:hover.point,
        .backlog-table-body .pop-points a:hover.point {
          color: #fff; }
    .backlog-table-header .pop-points:after,
    .backlog-table-body .pop-points:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }
  .backlog-table-header .pop-points-open,
  .backlog-table-body .pop-points-open {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 0;
    width: 200px;
    z-index: 99;
    text-align: center; }
    .backlog-table-header .pop-points-open a,
    .backlog-table-body .pop-points-open a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .backlog-table-header .pop-points-open a:last-child,
      .backlog-table-body .pop-points-open a:last-child {
        border: 0; }
      .backlog-table-header .pop-points-open a:hover,
      .backlog-table-body .pop-points-open a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .backlog-table-header .pop-points-open a:hover.point,
        .backlog-table-body .pop-points-open a:hover.point {
          color: #fff; }
    .backlog-table-header .pop-points-open:after,
    .backlog-table-body .pop-points-open:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }
    .backlog-table-header .pop-points-open.pop-bottom,
    .backlog-table-body .pop-points-open.pop-bottom {
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      font-size: .9rem;
      background: #050505;
      bottom: 0;
      color: #fff;
      display: none;
      left: 30px;
      list-style-type: none;
      margin: 0;
      padding: 10px;
      position: absolute;
      top: auto;
      width: 200px;
      z-index: 99;
      text-align: center; }
      .backlog-table-header .pop-points-open.pop-bottom a,
      .backlog-table-body .pop-points-open.pop-bottom a {
        font-size: .9rem;
        border-bottom: 1px solid #444;
        color: #fff;
        display: block;
        padding: 10px 2px; }
        .backlog-table-header .pop-points-open.pop-bottom a:last-child,
        .backlog-table-body .pop-points-open.pop-bottom a:last-child {
          border: 0; }
        .backlog-table-header .pop-points-open.pop-bottom a:hover,
        .backlog-table-body .pop-points-open.pop-bottom a:hover {
          color: #9dce0a;
          transition: color .3s linear; }
          .backlog-table-header .pop-points-open.pop-bottom a:hover.point,
          .backlog-table-body .pop-points-open.pop-bottom a:hover.point {
            color: #fff; }
      .backlog-table-header .pop-points-open.pop-bottom:after,
      .backlog-table-body .pop-points-open.pop-bottom:after {
        background: #050505;
        content: '';
        height: 15px;
        position: absolute;
        transform: rotate(45deg);
        width: 0; }
    .backlog-table-header .pop-points-open li,
    .backlog-table-body .pop-points-open li {
      display: inline-block;
      width: 23%; }
    .backlog-table-header .pop-points-open a,
    .backlog-table-body .pop-points-open a {
      display: block;
      text-align: center; }
      .backlog-table-header .pop-points-open a:hover, .backlog-table-header .pop-points-open a.active,
      .backlog-table-body .pop-points-open a:hover,
      .backlog-table-body .pop-points-open a.active {
        background: #9dce0a;
        color: #fff; }

.backlog-table-header .backlog-table-title {
  font-weight: 300;
  font-family: poppins;
  color: #767676;
  font-size: 16px;
  font-size: 1rem;
  border-bottom: 2px solid #767676;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-right: 1rem; }

.backlog-table-header .points {
  cursor: pointer; }

.backlog-table-header .header-points span {
  color: #767676; }

.backlog-table-body .row {
  border-bottom: 1px solid #dad9d9;
  cursor: move;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative; }
  .backlog-table-body .row:hover {
    background: #f0f0f0;
    transition: background .2s ease-in;
    transition-delay: .2s; }
    .backlog-table-body .row:hover .us-settings,
    .backlog-table-body .row:hover .icon-drag {
      opacity: 1;
      transition: all .2s ease-in; }
  .backlog-table-body .row:last-child {
    border-bottom: 0; }
  .backlog-table-body .row.gu-mirror {
    background: #e9ffb5;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    opacity: .9;
    transition: background .2s ease-in; }
  .backlog-table-body .row .points .not-clickable:hover {
    color: #000;
    cursor: text; }
  .backlog-table-body .row .icon-arrow-down {
    fill: #767676;
    height: .7rem;
    width: .7rem; }

.backlog-table-body .gu-transit {
  background: #e4e3e3; }

.backlog-table-body .sortable-placeholder {
  background: #f5f5f5;
  height: 40px;
  width: 100%; }
  .backlog-table-body .sortable-placeholder * {
    display: none; }

.backlog-table-body .is-checked {
  background: #e9ffb5;
  transition: background .2s ease-in; }

.backlog-table-body input:checked {
  color: #9dce0a;
  transition: color .2s ease-in; }

.backlog-table-body .user-story-name {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .backlog-table-body .user-story-name a {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    display: inline-block;
    -ms-flex: 1;
    flex: 1; }
  .backlog-table-body .user-story-name span {
    line-height: 1.5; }

.backlog-table-body .tags-block {
  display: none;
  margin-bottom: .3rem; }
  .backlog-table-body .tags-block .tag {
    font-size: .9rem;
    margin-right: .5rem;
    padding: .2rem .5rem; }

.backlog-table-body .blocked {
  background: #ff8282;
  border-bottom: 1px solid #fff;
  color: #fff; }
  .backlog-table-body .blocked:hover {
    background: #f00;
    transition: background .2s ease-in; }
  .backlog-table-body .blocked a {
    color: #fff !important; }
    .backlog-table-body .blocked a:hover {
      color: #fff; }
  .backlog-table-body .blocked .icon {
    color: #fff; }
    .backlog-table-body .blocked .icon:hover {
      color: #fff; }

.backlog-table-body .us-settings {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 2rem;
  opacity: 0; }
  .backlog-table-body .us-settings svg {
    fill: #767676;
    margin-right: .5rem;
    transition: fill .2s ease-in; }
    .backlog-table-body .us-settings svg:hover {
      fill: #9dce0a; }

.backlog-table-body .icon-drag {
  cursor: move;
  fill: #767676;
  opacity: 0;
  padding: .1rem; }

.backlog-table-body .readonly {
  cursor: auto;
  padding-right: 45px; }

.backlog-table-body .us-status tg-svg {
  display: inline-block; }

.backlog-table-body .loading {
  margin: 2% auto;
  width: 3rem; }
  .backlog-table-body .loading img {
    animation-timing-function: ease-in-out;
    animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
    margin: 0 auto;
    max-height: 1rem;
    max-width: 1rem;
    transform-origin: 32 32;
    max-height: 3rem;
    max-width: 3rem; }

.empty-large .row {
  display: none; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.burndown {
  margin-bottom: 2rem;
  width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.sprints .sprint-header {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 23px; }

.sprints h1 {
  margin: 0;
  text-transform: capitalize; }

.sprints .add-sprint {
  background: #5b8200;
  padding: .25rem .25rem 0;
  transition: background .2s; }
  .sprints .add-sprint:hover {
    background: #9dce0a; }
  .sprints .add-sprint svg {
    fill: #e4e3e3;
    height: 1.4rem;
    width: 1.5rem; }

.sprints .filter-closed-sprints {
  font-size: .9rem;
  -ms-flex-line-pack: center;
  align-content: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 1rem;
  vertical-align: middle; }
  .sprints .filter-closed-sprints .icon-archive {
    margin-right: .3rem; }

.sprints .loading {
  text-align: center; }

.sprints .loading-spinner {
  border: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-bottom: 1rem;
  max-height: 2rem;
  max-width: 2rem;
  transform-origin: center center; }

.sprints .sprint-name a {
  font-size: 1rem;
  display: inline-block;
  margin-right: .5rem; }

.sprints .sprint {
  margin-bottom: 2rem; }
  .sprints .sprint header {
    position: relative;
    font-family: 'poppins';
    font-weight: 300; }
  .sprints .sprint:hover .edit-sprint {
    opacity: 1;
    transition: opacity .2s ease-in; }
  .sprints .sprint .edit-sprint {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .2s ease-in;
    vertical-align: baseline; }
  .sprints .sprint svg {
    fill: #767676; }
    .sprints .sprint svg:hover {
      fill: #5b8200;
      transition: fill .2s ease-in; }
  .sprints .sprint .number {
    font-size: .75rem;
    margin-right: .2rem; }
  .sprints .sprint .description {
    font-size: .75rem;
    line-height: .6rem;
    margin-top: 5px; }
  .sprints .sprint .sprint-summary {
    -ms-flex-align: end;
    align-items: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .sprints .sprint .sprint-date {
    font-size: .9rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    color: #767676;
    -ms-flex: 1;
    flex: 1; }
  .sprints .sprint ul {
    margin: 0;
    text-align: right; }

.sprints .compact-sprint {
  transform: rotate(0);
  transition: all .2s; }
  .sprints .compact-sprint.active {
    transform: rotate(90deg);
    transition: all .2s; }
  .sprints .compact-sprint:hover .icon {
    fill: #9dce0a;
    transition: color .2s; }

.sprints .sprint-progress-bar {
  background: #767676;
  border-radius: 2px;
  height: 8px;
  margin-bottom: 1rem;
  margin-top: .5rem;
  position: relative;
  width: 100%; }
  .sprints .sprint-progress-bar .current-progress {
    background: #5b8200;
    border-radius: 2px;
    height: 8px;
    left: 0;
    position: absolute;
    top: 0;
    width: calc(30% - 4px); }

.sprints .sprint-table {
  min-height: 2rem; }
  .sprints .sprint-table .sprint-empty {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    background: #d7d6d6;
    border: 2px dashed #909090;
    color: #555;
    padding: 1rem;
    text-align: center; }
  .sprints .sprint-table .row {
    border-bottom: 1px solid #767676;
    display: -ms-flexbox;
    display: flex;
    padding: .5em 0;
    text-align: left;
    width: 100%; }
    .sprints .sprint-table .row:hover {
      background: rgba(118, 118, 118, 0.2);
      cursor: move;
      transition: background .2s ease-in; }
    .sprints .sprint-table .row:last-child {
      border-bottom: 0; }
    .sprints .sprint-table .row.readonly {
      cursor: auto; }
    .sprints .sprint-table .row.ui-sortable-helper {
      background: #e9ffb5;
      box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
      opacity: .9;
      transition: background .2s ease-in; }
  .sprints .sprint-table .gu-transit {
    background: #959595;
    height: 40px; }
    .sprints .sprint-table .gu-transit * {
      display: none; }
  .sprints .sprint-table .column-us {
    font-size: .9rem;
    -ms-flex-flow: 3;
    flex-flow: 3;
    padding: 0 4px;
    font-family: 'Poppins';
    font-weight: 300; }
  .sprints .sprint-table .us-name {
    display: block; }
    .sprints .sprint-table .us-name.closed {
      color: #838383; }
    .sprints .sprint-table .us-name.blocked {
      color: #f00; }
  .sprints .sprint-table .column-points {
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 4px;
    text-align: right;
    font-family: 'Poppins';
    font-weight: 300; }
    .sprints .sprint-table .column-points.closed {
      color: #838383; }
    .sprints .sprint-table .column-points.blocked {
      color: #f00; }
  .sprints .sprint-table.sprint-empty-wrapper .row {
    display: none; }

.sprints .button-gray {
  display: block;
  text-align: center;
  font-family: 'poppins';
  font-weight: 300;
  font-size: 14px;
  height: 50px;
  line-height: 38px; }

.sprints .us-item-row .tags-block,
.sprints .us-item-row .us-settings,
.sprints .us-item-row .status,
.sprints .us-item-row .popover,
.sprints .us-item-row input {
  display: none; }

.sprints .us-item-row .user-story-name {
  font-size: .9rem;
  line-height: 1rem;
  margin-top: 5px; }

.sprint-closed .sprint-table {
  display: none; }

.sprint-closed .number,
.sprint-closed .description {
  color: #767676; }

.sprint-closed .sprint-progress-bar .current-progress {
  background: #5d5d5d; }

.sprint-closed .button-gray {
  background: #767676; }

.sprints-empty {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  text-align: center; }
  .sprints-empty img {
    margin: 1rem 0;
    width: 50%; }
  .sprints-empty .title {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    text-transform: uppercase; }
  .sprints-empty a {
    color: #5b8200; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.taskboard-table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  width: 100%; }
  .taskboard-table.zoom-0 .task-colum-name span {
    padding-right: 1rem; }

.taskboard-table-header {
  -ms-flex-preferred-size: 2.2rem;
  flex-basis: 2.2rem;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 2.2rem;
  position: relative;
  width: 100%; }
  .taskboard-table-header .taskboard-table-inner {
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: absolute; }
  .taskboard-table-header .task-colum-name {
    font-size: 1rem;
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    border-top: 3px solid #767676;
    color: #555;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 5px 0 0;
    max-width: 300px;
    padding: 0.5rem 1rem;
    position: relative;
    text-transform: uppercase;
    width: 300px; }
    .taskboard-table-header .task-colum-name:last-child {
      margin-right: 0; }
    .taskboard-table-header .task-colum-name.column-fold {
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: .3rem 0; }
      .taskboard-table-header .task-colum-name.column-fold span {
        display: none; }
      .taskboard-table-header .task-colum-name.column-fold .hfold,
      .taskboard-table-header .task-colum-name.column-fold .hunfold {
        margin: 0; }
    .taskboard-table-header .task-colum-name span {
      display: inline-block;
      max-width: 65%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      word-wrap: normal; }
  .taskboard-table-header tg-svg {
    display: block;
    margin-right: .3rem; }
    .taskboard-table-header tg-svg svg {
      font-size: 1rem;
      fill: #767676;
      transition: fill .2s linear; }
    .taskboard-table-header tg-svg:hover {
      cursor: pointer; }
      .taskboard-table-header tg-svg:hover svg {
        fill: #5b8200; }
    .taskboard-table-header tg-svg.hfold, .taskboard-table-header tg-svg.hunfold {
      display: inline-block; }
      .taskboard-table-header tg-svg.hfold svg, .taskboard-table-header tg-svg.hunfold svg {
        transform: rotate(90deg); }

.taskboard-table-body {
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 5rem;
  overflow: auto;
  width: 100%; }
  .taskboard-table-body .task-column {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 5px 0 0;
    max-width: 300px;
    width: 300px; }
    .taskboard-table-body .task-column:last-child {
      margin-right: 0; }
  .taskboard-table-body .taskboard-table-inner {
    margin-top: 8px; }
  .taskboard-table-body .row-fold .card {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: .5rem; }
    .taskboard-table-body .row-fold .card tg-card-slideshow,
    .taskboard-table-body .row-fold .card .card-unfold,
    .taskboard-table-body .row-fold .card .card-tag,
    .taskboard-table-body .row-fold .card .card-title,
    .taskboard-table-body .row-fold .card .card-owner-actions,
    .taskboard-table-body .row-fold .card .card-data,
    .taskboard-table-body .row-fold .card .card-statistics,
    .taskboard-table-body .row-fold .card .card-owner-name {
      display: none; }
    .taskboard-table-body .row-fold .card .card-owner img {
      height: 1.3rem;
      margin-right: 0;
      width: 1.3rem; }
  .taskboard-table-body .row-fold.task-column,
  .taskboard-table-body .row-fold .task-column {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
  .taskboard-table-body .row-fold .avatar-task-link {
    display: block; }
  .taskboard-table-body .row-fold .avatar-assigned-to {
    display: none; }
  .taskboard-table-body .column-fold .card {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: .5rem; }
    .taskboard-table-body .column-fold .card tg-card-slideshow,
    .taskboard-table-body .column-fold .card .card-unfold,
    .taskboard-table-body .column-fold .card .card-tag,
    .taskboard-table-body .column-fold .card .card-title,
    .taskboard-table-body .column-fold .card .card-owner-actions,
    .taskboard-table-body .column-fold .card .card-data,
    .taskboard-table-body .column-fold .card .card-statistics,
    .taskboard-table-body .column-fold .card .card-owner-name {
      display: none; }
    .taskboard-table-body .column-fold .card .card-owner img {
      height: 1.3rem;
      margin-right: 0;
      width: 1.3rem; }
  .taskboard-table-body .column-fold.task-column,
  .taskboard-table-body .column-fold .task-column {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
  .taskboard-table-body .column-fold .avatar-task-link {
    display: block; }
  .taskboard-table-body .column-fold .avatar-assigned-to {
    display: none; }
  .taskboard-table-body .task-row {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .25rem;
    min-height: 10rem;
    width: 100%; }
    .taskboard-table-body .task-row.blocked .taskboard-userstory-box {
      background: rgba(255, 0, 0, 0.6); }
    .taskboard-table-body .task-row.blocked .taskboard-userstory-box svg,
    .taskboard-table-body .task-row.blocked .taskboard-userstory-box svg:hover,
    .taskboard-table-body .task-row.blocked .points-value,
    .taskboard-table-body .task-row.blocked .points-value:hover {
      color: #fff;
      fill: #fff;
      transition: color .3s linear; }
    .taskboard-table-body .task-row.blocked .taskboard-tasks-box {
      background: rgba(255, 0, 0, 0.1); }
    .taskboard-table-body .task-row.row-fold {
      min-height: 0; }
      .taskboard-table-body .task-row.row-fold .us-title {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-wrap: normal; }
      .taskboard-table-body .task-row.row-fold .points-value,
      .taskboard-table-body .task-row.row-fold .icon-add,
      .taskboard-table-body .task-row.row-fold .icon-bulk {
        display: none; }
  .taskboard-table-body .taskboard-userstory-box {
    padding: .5rem .5rem .5rem 1.5rem; }

.taskboard-userstory-box {
  position: relative; }
  .taskboard-userstory-box .us-title {
    font-size: 1rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    margin-bottom: 0;
    margin-right: 3rem; }
  .taskboard-userstory-box .points-value {
    font-size: .9rem;
    color: #767676; }
    .taskboard-userstory-box .points-value span {
      margin-right: .1rem; }
  .taskboard-userstory-box tg-svg {
    cursor: pointer;
    display: block;
    position: absolute;
    right: .5rem;
    top: .7rem; }
    .taskboard-userstory-box tg-svg:hover svg {
      fill: #5b8200; }
    .taskboard-userstory-box tg-svg.add-action {
      right: 2rem; }
    .taskboard-userstory-box tg-svg.fold-action {
      left: 0;
      right: inherit;
      top: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.ticket-assigned-to {
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #767676;
  border-top: 1px solid #767676;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding: 1rem 0;
  position: relative; }
  .ticket-assigned-to:hover .remove-user {
    opacity: 1;
    transition: opacity .3s linear; }
  .ticket-assigned-to .loading-spinner {
    animation-timing-function: ease-in-out;
    animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
    margin: 0 auto;
    max-height: 1rem;
    max-width: 1rem;
    transform-origin: 32 32;
    margin: 1rem auto;
    max-height: 2rem;
    max-width: 2rem; }
  .ticket-assigned-to .user-avatar {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative; }
    .ticket-assigned-to .user-avatar img {
      width: 100%; }
    .ticket-assigned-to .user-avatar.is-iocaine img {
      filter: hue-rotate(150deg) saturate(200%); }
    .ticket-assigned-to .user-avatar .iocaine-symbol {
      left: -.5rem;
      position: absolute;
      top: -.75rem;
      z-index: 9; }
      .ticket-assigned-to .user-avatar .iocaine-symbol svg {
        background: #444;
        border-radius: .25rem;
        fill: #fff;
        min-height: 1.75rem;
        min-width: 1.75rem;
        padding: .25rem; }
  .ticket-assigned-to .assigned-to {
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: .5rem; }
    .ticket-assigned-to .assigned-to .assigned-title {
      font-size: .9rem;
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      color: #555;
      display: block;
      margin: .2rem 0 .25rem; }
    .ticket-assigned-to .assigned-to .assigned-to-options {
      -ms-flex-line-pack: center;
      align-content: center;
      display: -ms-flexbox;
      display: flex; }
      .ticket-assigned-to .assigned-to .assigned-to-options a {
        margin-right: .2rem; }
    .ticket-assigned-to .assigned-to .user-assigned,
    .ticket-assigned-to .assigned-to .assign-to-me {
      color: #5b8200;
      cursor: default; }
      .ticket-assigned-to .assigned-to .user-assigned:hover,
      .ticket-assigned-to .assigned-to .assign-to-me:hover {
        cursor: pointer; }
      .ticket-assigned-to .assigned-to .user-assigned .icon,
      .ticket-assigned-to .assigned-to .assign-to-me .icon {
        fill: currentColor;
        height: .75rem;
        width: .75rem; }
  .ticket-assigned-to .remove-user {
    fill: #555;
    opacity: 0;
    position: absolute;
    right: .5rem;
    top: 2rem; }
    .ticket-assigned-to .remove-user:hover {
      cursor: pointer;
      fill: #f00;
      transition: fill .2s; }
  .ticket-assigned-to .user-assigned,
  .ticket-assigned-to .assign-to-me {
    color: #5b8200; }
    .ticket-assigned-to .user-assigned:hover,
    .ticket-assigned-to .assign-to-me:hover {
      color: currentColor; }
    .ticket-assigned-to .user-assigned.editable,
    .ticket-assigned-to .assign-to-me.editable {
      color: #5b8200; }
      .ticket-assigned-to .user-assigned.editable:hover,
      .ticket-assigned-to .assign-to-me.editable:hover {
        cursor: pointer; }
    .ticket-assigned-to .user-assigned .icon,
    .ticket-assigned-to .assign-to-me .icon {
      vertical-align: middle; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.category-config {
  border-bottom: 1px solid #767676; }
  .category-config:first-child {
    border-top: 1px solid #767676; }
  .category-config .resume {
    -ms-flex-align: space-between;
    align-items: space-between;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    position: relative; }
    .category-config .resume.open-drawer .icon {
      transform: rotate(90deg); }
  .category-config .icon {
    transform: rotate(0);
    transition: all .4s; }
  .category-config .resume-title {
    width: 280px; }
  .category-config .count {
    color: #767676;
    float: left;
    padding-right: 5px; }
  .category-config .summary-role {
    -ms-flex: 1;
    flex: 1;
    width: 280px; }
    .category-config .summary-role .role-summary-single {
      background: #767676;
      display: inline-block;
      height: 20px;
      margin-right: .1rem;
      width: 15px; }
      .category-config .summary-role .role-summary-single.active {
        background: #5b8200; }
      .category-config .summary-role .role-summary-single.inactive {
        background: #555; }
  .category-config .category-items {
    max-height: 0;
    transition: max-height .5s ease-in;
    overflow: hidden;
    background-color: #e4e3e3;
    width: 100%; }
    .category-config .category-items.open {
      transition: max-height .5s ease-in;
      max-height: 400px; }
    .category-config .category-items .items-container {
      padding: 1rem; }
  .category-config .category-item {
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem .5rem .5rem 2rem; }
    .category-config .category-item:last-child {
      border-bottom: 0; }
  .category-config .check input {
    height: 40px;
    width: 85px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.colors-table .table-header {
  font-size: 1rem;
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  border-bottom: 3px solid #e4e3e3; }
  .colors-table .table-header:hover {
    background: transparent; }
  .colors-table .table-header .row {
    padding-left: 50px; }
    .colors-table .table-header .row:hover {
      background: transparent; }

.colors-table .row {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem; }
  .colors-table .row:last-child {
    border: 0; }
  .colors-table .row.edition {
    padding-left: 3rem; }
    .colors-table .row.edition .current-color {
      cursor: pointer; }
  .colors-table .row.hidden {
    display: none; }
  .colors-table .row:hover {
    background: rgba(216, 248, 121, 0.2);
    cursor: move;
    transition: background .2s ease-in; }
    .colors-table .row:hover .icon {
      opacity: 1;
      transition: opacity .2s ease-in; }
    .colors-table .row:hover .options-column {
      opacity: 1;
      transition: opacity .3s linear; }
  .colors-table .row.no-draggable {
    padding-left: 50px; }
    .colors-table .row.no-draggable:hover {
      cursor: auto; }
  .colors-table .row .color-column {
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100px;
    position: relative; }
  .colors-table .row .is-archived-column,
  .colors-table .row .is-closed-column,
  .colors-table .row .options-column,
  .colors-table .row .status-wip-limit {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .colors-table .row .status-name,
  .colors-table .row .color-name {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 10px;
    position: relative; }
    .colors-table .row .status-name span,
    .colors-table .row .color-name span {
      display: inline-block;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      word-wrap: normal;
      display: block; }
  .colors-table .row .color-name {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px; }
  .colors-table .row .status-slug {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
    -ms-flex-positive: 6;
    flex-grow: 6;
    padding: 0 10px;
    min-width: 70px; }
  .colors-table .row .options-column {
    max-width: 100px;
    opacity: 0;
    text-align: right; }
  .colors-table .row .is-archived-column {
    max-width: 130px;
    padding: 0 0 0 10px;
    text-align: center; }
  .colors-table .row .is-closed-column {
    max-width: 130px;
    text-align: center; }
  .colors-table .row .status-wip-limit {
    max-width: 130px;
    padding: 0 0 0 10px;
    text-align: center; }

.colors-table .options-column a {
  cursor: pointer;
  display: inline-block; }

.colors-table .row-edit .options-column {
  opacity: 1; }

.colors-table .current-color {
  background-color: #e4e3e3;
  border-radius: 2px;
  height: 40px;
  width: 40px; }

.colors-table .icon {
  cursor: pointer;
  fill: #767676;
  margin-right: 1rem;
  opacity: 0; }
  .colors-table .icon:hover {
    fill: #9dce0a;
    transition: all .2s ease-in; }
  .colors-table .icon.icon-check {
    cursor: default;
    fill: #5b8200;
    opacity: 1; }
  .colors-table .icon.icon-merge {
    cursor: default;
    opacity: 1; }
  .colors-table .icon.icon-search {
    cursor: none;
    fill: #5b8200;
    opacity: 1; }
  .colors-table .icon.icon-drag {
    cursor: move; }
  .colors-table .icon.icon-trash {
    fill: #ff8282; }

.colors-table .gu-mirror {
  background: #e9ffb5;
  opacity: 1; }

.colors-table .gu-transit * {
  visibility: hidden; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.duty-custom-fields {
  margin-bottom: 2rem; }
  .duty-custom-fields .custom-fields-header {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem; }
    .duty-custom-fields .custom-fields-header .icon {
      cursor: pointer; }
    .duty-custom-fields .custom-fields-header .collapse {
      display: block;
      transform: rotate(-90deg);
      transition: .1s ease-out; }
    .duty-custom-fields .custom-fields-header .open {
      transform: rotate(0); }
  .duty-custom-fields .custom-field-single {
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1rem; }
    .duty-custom-fields .custom-field-single:hover .custom-field-options {
      opacity: 1; }
    .duty-custom-fields .custom-field-single.editable .custom-field-options {
      margin-top: .5rem; }
  .duty-custom-fields .custom-field-options {
    margin: 0;
    opacity: 0;
    transition: opacity .2s linear; }
    .duty-custom-fields .custom-field-options a {
      display: inline-block; }
    .duty-custom-fields .custom-field-options svg {
      fill: #767676; }
      .duty-custom-fields .custom-field-options svg:hover {
        fill: #5b8200; }
  .duty-custom-fields .custom-field-data {
    -ms-flex: 0;
    flex: 0;
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px; }
    .duty-custom-fields .custom-field-data .custom-field-name {
      display: block; }
    .duty-custom-fields .custom-field-data .custom-field-description {
      font-size: .9rem;
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      color: #888888;
      display: block;
      line-height: .9rem; }
  .duty-custom-fields .custom-field-value {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex: 1;
    flex: 1;
    padding: 0 1rem 0 2rem; }
    .duty-custom-fields .custom-field-value.js-value-view-mode {
      white-space: pre-line; }
  .duty-custom-fields form label {
    cursor: pointer; }
  .duty-custom-fields form input {
    width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.blocked .external-reference {
  color: #fff; }
  .blocked .external-reference a {
    color: #fff;
    transition: color .3s linear; }
    .blocked .external-reference a:hover {
      color: #ff8282; }

.external-reference {
  font-size: .9rem;
  color: #767676;
  margin-top: .5rem; }
  .external-reference a {
    border-left: 1px solid #767676;
    padding: 0 .2rem;
    transition: color .3s linear; }
    .external-reference a:hover {
      color: #5b8200; }
    .external-reference a:first-child {
      border: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.lightbox {
  background: rgba(255, 255, 255, 0.95);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99910; }
  .lightbox.open {
    overflow: auto; }
  .lightbox .close {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    display: block;
    fill: #555;
    position: absolute;
    right: 3rem;
    top: 3rem;
    transition: fill .2s;
    display: block; }
    .lightbox .close:hover {
      fill: #ff8282; }
    .lightbox .close svg {
      width: 2rem;
      height: 2rem;
      pointer-events: none; }
  .lightbox.open {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    transition: opacity .3s ease; }
  .lightbox.close {
    opacity: 0;
    transition: opacity .3s ease; }
  .lightbox .lb-icon {
    margin: 1rem auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; }
    .lightbox .lb-icon svg {
      width: 6rem;
      height: 6rem;
      display: block;
      fill: #e4e3e3; }
  .lightbox .title {
    text-align: center; }
  .lightbox fieldset {
    margin-bottom: 1rem; }
  .lightbox textarea {
    resize: vertical; }
  .lightbox .button-green,
  .lightbox .button-gray {
    display: block;
    padding: 12px;
    text-align: center; }
  .lightbox h2 {
    font-size: 2rem;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif; }

.lightbox-generic-form form {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  max-width: 600px; }

.lightbox-generic-form fieldset {
  position: relative; }

.lightbox-generic-form textarea {
  min-height: 4.5rem;
  resize: vertical; }

.lightbox-generic-form label {
  font-size: .75rem;
  background: #f5f5f5;
  border: 1px solid #767676;
  color: #444;
  cursor: pointer;
  display: block;
  padding: 7px 30px;
  transition: all .2s ease-in; }
  .lightbox-generic-form label:hover span {
    color: #fff; }
  .lightbox-generic-form label span {
    color: #444;
    vertical-align: middle; }

.lightbox-generic-form .settings {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }
  .lightbox-generic-form .settings fieldset {
    margin-right: .5rem; }
    .lightbox-generic-form .settings fieldset:hover {
      color: #fff;
      transition: all .2s ease-in;
      transition-delay: .2s; }
    .lightbox-generic-form .settings fieldset:last-child {
      margin: 0; }
  .lightbox-generic-form .settings .requirement,
  .lightbox-generic-form .settings .iocaine {
    vertical-align: middle;
    font-size: 11px;
    font-family: 'poppins';
    font-weight: 300; }
    .lightbox-generic-form .settings .requirement:hover,
    .lightbox-generic-form .settings .iocaine:hover {
      background: #9dce0a;
      border: 1px solid #5b8200; }
    .lightbox-generic-form .settings .requirement svg,
    .lightbox-generic-form .settings .iocaine svg {
      width: 0.75rem;
      height: 0.75rem; }
  .lightbox-generic-form .settings .blocked:hover {
    background: #ff8282;
    border: 1px solid #f00; }
  .lightbox-generic-form .settings .client-requirement input:checked + label,
  .lightbox-generic-form .settings .team-requirement input:checked + label,
  .lightbox-generic-form .settings .iocaine-flag input:checked + label {
    background: #5b8200;
    border: 1px solid #5b8200;
    color: #fff; }
  .lightbox-generic-form .settings .blocking-flag .blocked {
    vertical-align: middle;
    font-size: 11px;
    font-family: 'poppins';
    font-weight: 300; }
  .lightbox-generic-form .settings .blocking-flag label {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    display: block; }
  .lightbox-generic-form .settings .blocking-flag input:checked + label {
    background: #f00;
    border: 1px solid #f00;
    color: #fff; }
  .lightbox-generic-form .settings input {
    display: none; }

.lightbox-generic-form .attachments {
  margin-bottom: 0; }

.lightbox-generic-form .attachment-body {
  max-height: 7.5rem;
  overflow-y: auto; }

.lightbox-generic-form .attachment-delete {
  right: .5rem; }
  .lightbox-generic-form .attachment-delete svg {
    fill: #767676;
    height: 1.25rem;
    width: 1.25rem; }
  .lightbox-generic-form .attachment-delete:hover svg {
    fill: #f00; }

.lightbox-generic-bulk form {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  max-width: 600px; }

.lightbox-generic-bulk textarea {
  max-height: 12rem;
  min-height: 15rem; }

.lightbox-search form {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  max-width: 600px; }

.lightbox-search fieldset {
  margin-bottom: 1rem; }

.lightbox-add-member .add-member-wrapper {
  max-width: 600px;
  width: 90%; }

.lightbox-add-member .add-single-member {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: .5rem; }
  .lightbox-add-member .add-single-member:last-child {
    margin-bottom: 0; }
  .lightbox-add-member .add-single-member fieldset {
    display: inline-block;
    -ms-flex: 1;
    flex: 1;
    margin: 0 .5rem 0 0; }
    .lightbox-add-member .add-single-member fieldset:last-child {
      -ms-flex-preferred-size: 30px;
      flex-basis: 30px;
      -ms-flex-positive: 0;
      flex-grow: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0; }
    .lightbox-add-member .add-single-member fieldset:first-child {
      -ms-flex-preferred-size: 20%;
      flex-basis: 20%; }

.lightbox-add-member .icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: #555;
  margin-left: .5rem; }

.lightbox-add-member .icon-add:hover {
  fill: #5b8200;
  transition: fill .2s; }

.lightbox-add-member .icon-trash {
  fill: #ff8282; }
  .lightbox-add-member .icon-trash:hover {
    fill: #f00;
    transition: fill .2s; }

.lightbox-add-member .member-limit-warning {
  font-size: .9rem;
  background: #f5f5f5;
  color: #444;
  margin: 1rem 0;
  padding: 1rem 2rem;
  text-align: center; }

.lightbox-add-member .help-text {
  font-size: .9rem;
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  margin-top: 1rem; }

.lightbox-add-member .checksley-error-list {
  right: .5rem; }
  .lightbox-add-member .checksley-error-list li {
    display: none; }
    .lightbox-add-member .checksley-error-list li:first-child {
      display: block; }

.lightbox-sprint-add-edit form {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
  -ms-flex-flow: 0;
  flex-flow: 0;
  max-width: 600px; }

.lightbox-sprint-add-edit .last-sprint-name {
  font-size: .9rem;
  color: #555;
  opacity: 1;
  position: absolute;
  right: 1rem;
  top: .7rem;
  transition: opacity .3s linear; }
  .lightbox-sprint-add-edit .last-sprint-name.disappear {
    opacity: 0;
    transition: opacity .3s linear; }

.lightbox-sprint-add-edit .releases {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0; }
  .lightbox-sprint-add-edit .releases .release {
    font-size: .9rem;
    margin-bottom: 1rem;
    height: 36px; }

.lightbox-sprint-add-edit .dates {
  margin-bottom: 1rem; }
  .lightbox-sprint-add-edit .dates div {
    float: left;
    margin-right: 1%;
    position: relative;
    width: 49%; }
    .lightbox-sprint-add-edit .dates div:last-child {
      margin: 0;
      width: 50%; }

.lightbox-sprint-add-edit .delete-sprint {
  font-size: .9rem;
  color: #555;
  float: right;
  margin: 1rem .25rem 0 0;
  transition: color .3s linear; }
  .lightbox-sprint-add-edit .delete-sprint .icon {
    fill: currentColor; }
  .lightbox-sprint-add-edit .delete-sprint:hover {
    color: #f00;
    transition: color .3s linear; }
    .lightbox-sprint-add-edit .delete-sprint:hover .icon {
      fill: currentColor; }

.lightbox-release-add-edit form {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
  -ms-flex-flow: 0;
  flex-flow: 0;
  max-width: 600px; }

.lightbox-release-add-edit .last-release-name {
  font-size: .9rem;
  color: #555;
  opacity: 1;
  position: absolute;
  right: 1rem;
  top: .7rem;
  transition: opacity .3s linear; }
  .lightbox-release-add-edit .last-release-name.disappear {
    opacity: 0;
    transition: opacity .3s linear; }

.lightbox-release-add-edit .dates {
  margin-bottom: 1rem; }
  .lightbox-release-add-edit .dates div {
    float: left;
    margin-right: 1%;
    position: relative;
    width: 49%; }
    .lightbox-release-add-edit .dates div:last-child {
      margin: 0;
      width: 50%; }

.lightbox-release-add-edit .delete-release {
  font-size: .9rem;
  color: #555;
  float: right;
  margin: 1rem .25rem 0 0;
  transition: color .3s linear; }
  .lightbox-release-add-edit .delete-release .icon {
    fill: currentColor; }
  .lightbox-release-add-edit .delete-release:hover {
    color: #f00;
    transition: color .3s linear; }
    .lightbox-release-add-edit .delete-release:hover .icon {
      fill: currentColor; }

.lightbox-generic-ask form {
  -ms-flex-preferred-size: 420px;
  flex-basis: 420px;
  -ms-flex-flow: 0;
  flex-flow: 0;
  max-width: 420px; }

.lightbox-generic-ask .subtitle,
.lightbox-generic-ask .message {
  display: block;
  line-height: 2rem;
  text-align: center; }

.lightbox-generic-ask .subtitle {
  font-size: 1.2rem;
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  white-space: pre-line; }

.lightbox-generic-ask .options {
  display: -ms-flexbox;
  display: flex; }
  .lightbox-generic-ask .options a {
    padding: 8px 0;
    text-align: center;
    width: 100%; }
    .lightbox-generic-ask .options a:first-child {
      margin-right: .5rem; }

.lightbox-ask-choice {
  text-align: center; }
  .lightbox-ask-choice form {
    -ms-flex-preferred-size: 420px;
    flex-basis: 420px;
    -ms-flex-positive: 0;
    flex-grow: 0; }
  .lightbox-ask-choice .question,
  .lightbox-ask-choice .subtitle {
    display: block;
    line-height: 1.5rem;
    text-align: center; }
  .lightbox-ask-choice .subtitle {
    font-size: 1.2rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif; }
  .lightbox-ask-choice .replacement {
    display: block; }
    .lightbox-ask-choice .replacement span {
      display: block; }
  .lightbox-ask-choice .choices {
    margin-bottom: 2rem; }
  .lightbox-ask-choice .options {
    display: -ms-flexbox;
    display: flex; }
    .lightbox-ask-choice .options a {
      -ms-flex-positive: 1;
      flex-grow: 1;
      padding: 8px 0;
      text-align: center; }
      .lightbox-ask-choice .options a:first-child {
        margin-right: .5rem; }
  .lightbox-ask-choice .warning {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }

.lightbox-delete-account p {
  text-align: center; }

.lightbox-delete-account form {
  -ms-flex-preferred-size: 420px;
  flex-basis: 420px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 420px; }

.lightbox-delete-account .question,
.lightbox-delete-account .subtitle {
  display: block;
  line-height: 2rem;
  text-align: center; }

.lightbox-delete-account .newsletter {
  margin: 1rem 0;
  text-align: center; }
  .lightbox-delete-account .newsletter input {
    margin-right: .5rem; }
    .lightbox-delete-account .newsletter input + label {
      font-size: .9rem;
      font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif; }

.lightbox-delete-account .options {
  display: -ms-flexbox;
  display: flex; }
  .lightbox-delete-account .options a {
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 8px 0;
    text-align: center; }
    .lightbox-delete-account .options a:first-child {
      margin-right: .5rem; }

.lightbox-delete-project form {
  -ms-flex-preferred-size: 420px;
  flex-basis: 420px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 420px; }

.lightbox-delete-project .question,
.lightbox-delete-project .subtitle {
  display: block;
  line-height: 2rem;
  text-align: center; }

.lightbox-delete-project .subtitle {
  font-size: 1.2rem;
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif; }

.lightbox-delete-project .options {
  display: -ms-flexbox;
  display: flex; }
  .lightbox-delete-project .options a {
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 8px 0;
    text-align: center; }
    .lightbox-delete-project .options a:first-child {
      margin-right: .5rem; }

.lightbox-generic-success section,
.lightbox-generic-error section,
.lightbox-generic-loading section {
  -ms-flex-preferred-size: 500px;
  flex-basis: 500px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 500px; }

.lightbox-generic-success h2,
.lightbox-generic-error h2,
.lightbox-generic-loading h2 {
  line-height: 2rem; }

.lightbox-generic-success p,
.lightbox-generic-error p,
.lightbox-generic-loading p {
  text-align: center; }

.lightbox-generic-loading .spin {
  margin: 1rem auto;
  width: 5rem; }
  .lightbox-generic-loading .spin img {
    animation-timing-function: ease-in-out;
    animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
    margin: 0 auto;
    max-height: 1rem;
    max-width: 1rem;
    transform-origin: 32 32;
    max-height: 100%;
    max-width: 100%;
    width: 100%; }

.lightbox-generic-loading .progress-bar-wrapper {
  background: #d7d6d6;
  height: 30px;
  margin-bottom: 1rem;
  padding: 3px;
  position: relative; }
  .lightbox-generic-loading .progress-bar-wrapper .bar {
    background: #9dce0a;
    height: 24px;
    position: absolute;
    transition: width .1s linear; }
  .lightbox-generic-loading .progress-bar-wrapper .progress {
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    background: #d7d6d6;
    bottom: 35px;
    color: #555;
    padding: .3rem;
    position: absolute;
    transition: left .1s linear; }

.lightbox-create-issue form {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 600px; }

.lightbox-create-issue .fieldset-row {
  display: -ms-flexbox;
  display: flex; }
  .lightbox-create-issue .fieldset-row fieldset {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: .5rem;
    width: 30%; }
    .lightbox-create-issue .fieldset-row fieldset:last-child {
      margin: 0; }

.lightbox-create-issue textarea {
  margin-bottom: 1rem;
  max-height: 12rem;
  min-height: 8rem; }

.lightbox-block .form {
  -ms-flex-preferred-size: 420px;
  flex-basis: 420px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 420px; }

.lightbox-block textarea {
  margin-bottom: 1rem;
  max-height: 12rem;
  min-height: 8rem; }

.lightbox-select-user .form {
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 600px; }

.lightbox-select-user .user-list-single:hover, .lightbox-select-user .user-list-single.selected {
  background: rgba(216, 248, 121, 0.3);
  cursor: pointer; }

.lightbox-select-user .user-list-single:hover {
  transition: background .3s linear;
  transition-delay: .2s; }

.lightbox-select-user .more-watchers {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: .5rem;
  text-align: center; }

.lightbox-select-user .submit-button {
  margin-top: 1rem; }

.lightbox-select-user .add-comment {
  position: relative;
  text-align: center; }
  .lightbox-select-user .add-comment .icon-close {
    cursor: pointer;
    fill: #555;
    position: absolute;
    right: 0;
    top: 0;
    transition: fill .2s; }
    .lightbox-select-user .add-comment .icon-close:hover {
      fill: #ff8282; }
    .lightbox-select-user .add-comment .icon-close svg {
      width: 2rem;
      height: 2rem; }
  .lightbox-select-user .add-comment textarea {
    margin-top: 1rem; }
  .lightbox-select-user .add-comment a {
    color: #5b8200; }

.lb-create-edit-userstory .points-per-role {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0; }

.lb-create-edit-userstory .ticket-role-points {
  margin: .1rem;
  min-width: 20%; }
  .lb-create-edit-userstory .ticket-role-points:first-child {
    margin-left: 0; }
  .lb-create-edit-userstory .ticket-role-points:nth-child(4n + 4) {
    margin-right: 0; }
  .lb-create-edit-userstory .ticket-role-points:last-child {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin: .1rem 0;
    min-width: 100%; }

.lightbox-import-error {
  text-align: center; }
  .lightbox-import-error .content {
    width: 500px; }
  .lightbox-import-error h2 {
    margin-top: 1rem; }
  .lightbox-import-error .description a {
    color: #5b8200; }
  .lightbox-import-error img {
    height: 5rem; }

.lightbox-leave-project-warning {
  text-align: center; }
  .lightbox-leave-project-warning .icon {
    fill: #767676;
    height: 3rem;
    margin-bottom: 1rem;
    width: 3rem; }
  .lightbox-leave-project-warning .content {
    width: 500px; }

.lightbox-request-ownership {
  text-align: center; }
  .lightbox-request-ownership .content {
    width: 500px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

tg-non-project-menu,
tg-project-menu {
  background-position: 0 -300px;
  display: inline-block;
  min-height: calc(100vh - 40px);
  min-width: 50px;
  padding: 1rem 0;
  position: relative;
  text-transform: uppercase;
  z-index: 99; }
  tg-non-project-menu .menu.menu-fixed,
  tg-project-menu .menu.menu-fixed {
    position: fixed;
    top: 1rem; }

.main-nav {
  list-style: none;
  padding: 0;
  position: relative;
  text-align: center; }
  .main-nav a {
    display: block;
    padding: 1.1rem .8rem;
    position: relative; }
  .main-nav li {
    position: relative; }
  .main-nav a:hover {
    background: rgba(0, 0, 0, 0.2);
    transition: color .3s linear; }
    .main-nav a:hover svg {
      fill: #fff;
      transition: fill .3s linear; }
    .main-nav a:hover .helper {
      font-size: .9rem;
      animation: slideLeft 200ms ease-in-out both;
      background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.8) 100%);
      color: #fff;
      display: block;
      left: 50px;
      opacity: 1;
      padding: .4rem 1rem;
      position: absolute;
      top: calc(50% - 1rem);
      transition: all .2s;
      white-space: nowrap;
      z-index: 99; }
      .main-nav a:hover .helper::after {
        background: #050505;
        content: '';
        height: 12px;
        left: calc(-12px/2);
        position: absolute;
        top: calc(50% - 12px/2);
        transform: rotate(45deg);
        width: 12px;
        z-index: 98; }
  .main-nav svg {
    fill: #fff;
    height: 1.5rem;
    width: 1.5rem; }
    .main-nav svg path {
      opacity: 1; }
  .main-nav span {
    display: block; }
  .main-nav .helper {
    display: none; }
  .main-nav .icon {
    font-size: 1.5rem;
    line-height: 2.2rem; }
  .main-nav .item {
    font-size: 1.2rem; }
  .main-nav .active {
    background: rgba(0, 0, 0, 0.2);
    color: #9dce0a; }
    .main-nav .active svg path {
      fill: #9dce0a;
      opacity: 1; }

@keyframes slideLeft {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.backlog-sprints-menu {
  font-size: .9rem;
  animation: slideLeft 200ms ease-in-out both;
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.8) 100%);
  color: #fff;
  display: block;
  left: 50px;
  opacity: 1;
  padding: .4rem 1rem;
  position: absolute;
  top: 1rem;
  transition: all .2s;
  white-space: nowrap;
  z-index: 99; }
  .backlog-sprints-menu a {
    color: #fff;
    padding: .6rem .8rem;
    text-align: left;
    text-transform: none; }
    .backlog-sprints-menu a:nth-child(2) {
      padding: 1rem .8rem .6rem; }
    .backlog-sprints-menu a:last-child {
      padding: .6rem .8rem .4rem; }
    .backlog-sprints-menu a:hover {
      background: none; }
  .backlog-sprints-menu::after {
    background: #050505;
    content: '';
    height: 12px;
    left: calc(-12px/2);
    position: absolute;
    top: calc(1rem - 12px/2);
    transform: rotate(45deg);
    width: 12px;
    z-index: 98; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.related-tasks {
  margin-bottom: 2rem;
  position: relative; }

.related-tasks-header {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 36px; }
  .related-tasks-header .related-tasks-title {
    font-size: 1rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    margin-left: 1rem; }
  .related-tasks-header .add-button {
    background: #444;
    border: 0;
    display: inline-block;
    padding: .5rem;
    transition: background .25s; }
    .related-tasks-header .add-button:hover, .related-tasks-header .add-button.is-active {
      background: #9dce0a; }
    .related-tasks-header .add-button svg {
      fill: #fff;
      height: 1.25rem;
      margin-bottom: -.2rem;
      width: 1.25rem; }

.related-tasks-body {
  width: 100%; }
  .related-tasks-body .row {
    font-size: .9rem;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    padding: .5rem 0 .5rem .5rem; }
    .related-tasks-body .row:hover .task-settings {
      opacity: 1;
      transition: all .2s ease-in; }
    .related-tasks-body .row .task-name {
      -ms-flex: 1;
      flex: 1; }
    .related-tasks-body .row .task-settings {
      -ms-flex-negative: 0;
      flex-shrink: 0;
      width: 60px; }
    .related-tasks-body .row .status {
      -ms-flex-negative: 0;
      flex-shrink: 0;
      width: 125px; }
    .related-tasks-body .row .assigned-to {
      cursor: pointer;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      width: 150px; }
  .related-tasks-body .related-task-create-form {
    padding: 0; }
    .related-tasks-body .related-task-create-form.active {
      padding: .5rem 0 .5rem .5rem; }
  .related-tasks-body .iocaine {
    background: rgba(157, 206, 10, 0.1);
    border-left: 10px solid #9dce0a; }
  .related-tasks-body .task-name {
    display: -ms-flexbox;
    display: flex;
    margin-right: 1rem; }
    .related-tasks-body .task-name span {
      margin-right: .25rem; }
    .related-tasks-body .task-name input {
      font-size: 1rem;
      margin-right: 1rem;
      padding: 3px;
      width: 85%; }
    .related-tasks-body .task-name.loading {
      margin: 0;
      padding: 8px;
      text-align: center;
      width: 100%; }
      .related-tasks-body .task-name.loading span {
        animation: loading .5s linear, spin 1s linear infinite; }
  .related-tasks-body .status {
    position: relative; }
    .related-tasks-body .status .not-clickable:hover {
      color: #444; }
    .related-tasks-body .status .popover {
      left: 0;
      top: 1rem; }
      .related-tasks-body .status .popover a {
        display: block; }
    .related-tasks-body .status .icon {
      width: 0.8rem;
      height: 0.8rem;
      fill: currentColor;
      margin-left: .2rem; }
  .related-tasks-body .closed,
  .related-tasks-body .closed:hover {
    border-left: 10px solid #e4e3e3;
    color: #e4e3e3; }
    .related-tasks-body .closed a,
    .related-tasks-body .closed svg,
    .related-tasks-body .closed:hover a,
    .related-tasks-body .closed:hover svg {
      fill: #e4e3e3; }
    .related-tasks-body .closed .task-name a,
    .related-tasks-body .closed:hover .task-name a {
      color: #e4e3e3;
      text-decoration: line-through; }
  .related-tasks-body .icon-iocaine {
    display: none; }
  .related-tasks-body .pop-status {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 40%;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 0;
    width: 200px;
    z-index: 99;
    text-align: center;
    padding-right: 1rem; }
    .related-tasks-body .pop-status a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .related-tasks-body .pop-status a:last-child {
        border: 0; }
      .related-tasks-body .pop-status a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .related-tasks-body .pop-status a:hover.point {
          color: #fff; }
    .related-tasks-body .pop-status:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }
    .related-tasks-body .pop-status.fix {
      bottom: 0;
      top: auto; }
  .related-tasks-body .blocked,
  .related-tasks-body .blocked:hover {
    background: rgba(255, 130, 130, 0.2);
    border-left: 10px solid #ff8282; }
  .related-tasks-body .task-settings {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    opacity: 0; }
    .related-tasks-body .task-settings svg {
      width: 1.1rem;
      height: 1.1rem;
      fill: #767676;
      margin-right: .5rem;
      transition: fill .2s ease-in; }
      .related-tasks-body .task-settings svg:hover {
        fill: #555; }
    .related-tasks-body .task-settings a:hover {
      cursor: pointer; }
  .related-tasks-body .edit-task:hover .icon-edit,
  .related-tasks-body .save-task:hover .icon-edit,
  .related-tasks-body .delete-task:hover .icon-edit {
    fill: #444; }
  .related-tasks-body .edit-task:hover .icon-save,
  .related-tasks-body .save-task:hover .icon-save,
  .related-tasks-body .delete-task:hover .icon-save {
    fill: #5b8200; }
  .related-tasks-body .edit-task:hover .icon-trash,
  .related-tasks-body .save-task:hover .icon-trash,
  .related-tasks-body .delete-task:hover .icon-trash {
    fill: #ff8282; }
  .related-tasks-body .task-assignedto {
    position: relative; }
    .related-tasks-body .task-assignedto.editable {
      cursor: pointer; }
    .related-tasks-body .task-assignedto:hover .icon {
      opacity: 1;
      transition: opacity .3s linear; }
    .related-tasks-body .task-assignedto figcaption {
      max-width: 50%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .related-tasks-body .task-assignedto .icon {
      width: 0.8rem;
      height: 0.8rem;
      fill: #767676;
      opacity: 0;
      position: absolute;
      right: .5rem;
      top: .5rem;
      transition: opacity .3s linear; }
  .related-tasks-body .avatar {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
    .related-tasks-body .avatar img {
      -ms-flex-preferred-size: 35px;
      flex-basis: 35px;
      height: 35px;
      width: 35px; }
    .related-tasks-body .avatar figcaption {
      margin-left: .5rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.ticket-header {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin: 1.5rem 0 2rem;
  position: relative; }
  .ticket-header .ticket-title {
    font-size: 1.6rem;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    vertical-align: sub; }
  .ticket-header .detail-status {
    font-size: .9rem;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0.25rem;
    position: relative; }
    .ticket-header .detail-status .icon-arrow-down {
      width: 0.75rem;
      height: 0.75rem;
      fill: currentColor;
      margin-left: 0.25rem; }
  .ticket-header .detail-status-inner {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    .ticket-header .detail-status-inner > span {
      color: #fff;
      padding: 0.15rem 0.25rem;
      text-transform: uppercase; }
  .ticket-header .pop-status {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 1.25rem;
    width: 150px;
    z-index: 99;
    text-align: center;
    padding: 0;
    text-transform: none; }
    .ticket-header .pop-status a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-header .pop-status a:last-child {
        border: 0; }
      .ticket-header .pop-status a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-header .pop-status a:hover.point {
          color: #fff; }
    .ticket-header .pop-status:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }
    .ticket-header .pop-status a {
      font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
      padding: 0.5rem 1rem;
      text-align: left; }
    .ticket-header .pop-status a:hover {
      background: rgba(157, 206, 10, 0.2); }

.ticket-data-container {
  font-size: .9rem;
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  margin-bottom: 1rem; }
  .ticket-data-container .icon {
    width: 0.7rem;
    height: 0.7rem;
    color: currentColor;
    margin-left: 0.25rem; }

.ticket-status:last-child {
  margin: 0; }

.ticket-status .level {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: top; }

.ticket-status .level-name {
  color: #b2afaf;
  float: right;
  text-transform: lowercase; }

.ticket-status .clickable:hover {
  background: #cbc9c9;
  transition: background 0.2s ease-in; }

.ticket-status .type-data {
  background: #d7d6d6;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  padding-right: 1rem;
  position: relative;
  transition: background 0.2s ease-in; }
  .ticket-status .type-data .pop-type {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    width: 150px;
    z-index: 99;
    text-align: center; }
    .ticket-status .type-data .pop-type a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-status .type-data .pop-type a:last-child {
        border: 0; }
      .ticket-status .type-data .pop-type a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-status .type-data .pop-type a:hover.point {
          color: #fff; }
    .ticket-status .type-data .pop-type:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }

.ticket-status .severity-data {
  background: #d7d6d6;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  padding-right: 1rem;
  position: relative;
  transition: background 0.2s ease-in; }
  .ticket-status .severity-data .pop-severity {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    width: 150px;
    z-index: 99;
    text-align: center; }
    .ticket-status .severity-data .pop-severity a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-status .severity-data .pop-severity a:last-child {
        border: 0; }
      .ticket-status .severity-data .pop-severity a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-status .severity-data .pop-severity a:hover.point {
          color: #fff; }
    .ticket-status .severity-data .pop-severity:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }

.ticket-status .priority-data {
  background: #d7d6d6;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  padding-right: 1rem;
  position: relative;
  transition: background 0.2s ease-in; }
  .ticket-status .priority-data .pop-priority {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    width: 150px;
    z-index: 99;
    text-align: center; }
    .ticket-status .priority-data .pop-priority a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-status .priority-data .pop-priority a:last-child {
        border: 0; }
      .ticket-status .priority-data .pop-priority a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-status .priority-data .pop-priority a:hover.point {
          color: #fff; }
    .ticket-status .priority-data .pop-priority:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }

.ticket-status .milestone-data {
  background: #d7d6d6;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  padding-right: 1rem;
  position: relative;
  transition: background 0.2s ease-in; }
  .ticket-status .milestone-data .pop-milestone {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    width: 150px;
    z-index: 99;
    text-align: center;
    max-height: 350px;
    overflow-y: auto; }
    .ticket-status .milestone-data .pop-milestone a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-status .milestone-data .pop-milestone a:last-child {
        border: 0; }
      .ticket-status .milestone-data .pop-milestone a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-status .milestone-data .pop-milestone a:hover.point {
          color: #fff; }
    .ticket-status .milestone-data .pop-milestone:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }

.ticket-status .technology-data {
  background: #d7d6d6;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  padding-right: 1rem;
  position: relative;
  transition: background 0.2s ease-in; }
  .ticket-status .technology-data .pop-technology {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    width: 150px;
    z-index: 99;
    text-align: center; }
    .ticket-status .technology-data .pop-technology a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-status .technology-data .pop-technology a:last-child {
        border: 0; }
      .ticket-status .technology-data .pop-technology a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-status .technology-data .pop-technology a:hover.point {
          color: #fff; }
    .ticket-status .technology-data .pop-technology:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }

.ticket-status .userstory-data {
  background: #d7d6d6;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  padding-right: 1rem;
  position: relative;
  transition: background 0.2s ease-in; }
  .ticket-status .userstory-data .pop-userstory {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 30px;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    width: 150px;
    z-index: 99;
    text-align: center; }
    .ticket-status .userstory-data .pop-userstory a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .ticket-status .userstory-data .pop-userstory a:last-child {
        border: 0; }
      .ticket-status .userstory-data .pop-userstory a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .ticket-status .userstory-data .pop-userstory a:hover.point {
          color: #fff; }
    .ticket-status .userstory-data .pop-userstory:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }

.ticket-watch-buttons {
  margin-bottom: 1rem; }

.ticket-watch .ticket-watch-title {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  margin-bottom: 0.5rem; }

.ticket-watch .ticket-watch-inner {
  display: -ms-flexbox;
  display: flex; }

.ticket-watch svg {
  margin-right: 0.25rem;
  position: relative;
  top: 2px; }

.ticket-watch .ticket-watch-button,
.ticket-watch .add-watcher {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  background: #767676;
  color: #fff;
  -ms-flex: 1;
  flex: 1;
  padding: 0.25rem;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s; }
  .ticket-watch .ticket-watch-button svg,
  .ticket-watch .add-watcher svg {
    fill: #fff; }
  .ticket-watch .ticket-watch-button:hover,
  .ticket-watch .add-watcher:hover {
    background: #9dce0a; }
  .ticket-watch .ticket-watch-button.is-hover,
  .ticket-watch .add-watcher.is-hover {
    background: #f00;
    color: #e4e3e3;
    transition: background 0.3s; }
    .ticket-watch .ticket-watch-button.is-hover svg,
    .ticket-watch .add-watcher.is-hover svg {
      fill: #ff8282; }
  .ticket-watch .ticket-watch-button.active,
  .ticket-watch .add-watcher.active {
    background: #9dce0a; }
    .ticket-watch .ticket-watch-button.active:hover,
    .ticket-watch .add-watcher.active:hover {
      background: #ff8282; }
    .ticket-watch .ticket-watch-button.active svg,
    .ticket-watch .add-watcher.active svg {
      fill: #fff; }

.ticket-watch .ticket-watch-button {
  margin-right: 0.25rem; }

.ticket-detail-settings {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2rem; }
  .ticket-detail-settings label,
  .ticket-detail-settings .item-block,
  .ticket-detail-settings .item-unblock,
  .ticket-detail-settings .promote-button,
  .ticket-detail-settings .button-delete {
    background: #767676;
    display: inline-block;
    margin-right: 0.5rem;
    padding: 1rem;
    transition: background 0.2s linear;
    transition-delay: 0.1s; }
    .ticket-detail-settings label:hover,
    .ticket-detail-settings .item-block:hover,
    .ticket-detail-settings .item-unblock:hover,
    .ticket-detail-settings .promote-button:hover,
    .ticket-detail-settings .button-delete:hover {
      background: #555; }
    .ticket-detail-settings label.editable,
    .ticket-detail-settings .item-block.editable,
    .ticket-detail-settings .item-unblock.editable,
    .ticket-detail-settings .promote-button.editable,
    .ticket-detail-settings .button-delete.editable {
      cursor: pointer; }
    .ticket-detail-settings label + input,
    .ticket-detail-settings .item-block + input,
    .ticket-detail-settings .item-unblock + input,
    .ticket-detail-settings .promote-button + input,
    .ticket-detail-settings .button-delete + input {
      display: none; }
  .ticket-detail-settings .item-block,
  .ticket-detail-settings .item-unblock {
    display: none; }
    .ticket-detail-settings .item-block.is-active,
    .ticket-detail-settings .item-unblock.is-active {
      display: inline-block; }
  .ticket-detail-settings .item-unblock {
    background: #ff8282; }
    .ticket-detail-settings .item-unblock:hover {
      background: #f00; }
  .ticket-detail-settings .button-delete {
    background: #ff8282; }
    .ticket-detail-settings .button-delete:hover {
      background: #f00; }
  .ticket-detail-settings img {
    max-height: 1.25rem;
    max-width: 1.25rem;
    width: 100%; }
  .ticket-detail-settings svg {
    fill: #fff;
    height: 100%;
    max-height: 1.25rem;
    max-width: 1.25rem;
    width: 100%; }
  .ticket-detail-settings .icon-lock {
    margin: 0; }
  .ticket-detail-settings a {
    display: block; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wizard-create-project {
  background: rgba(255, 255, 255, 0.95);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99910; }
  .wizard-create-project .close {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    display: block;
    fill: #555;
    position: absolute;
    right: 3rem;
    top: 3rem;
    transition: fill .2s;
    display: block; }
    .wizard-create-project .close:hover {
      fill: #ff8282; }
    .wizard-create-project .close svg {
      width: 2rem;
      height: 2rem;
      pointer-events: none; }
  .wizard-create-project.open {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    transition: opacity .3s ease; }
  .wizard-create-project.close {
    opacity: 0;
    transition: opacity .3s ease; }
  .wizard-create-project .lb-icon {
    margin: 1rem auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; }
    .wizard-create-project .lb-icon svg {
      width: 6rem;
      height: 6rem;
      display: block;
      fill: #e4e3e3; }
  .wizard-create-project .title {
    text-align: center; }
  .wizard-create-project fieldset {
    margin-bottom: 1rem; }
  .wizard-create-project textarea {
    resize: vertical; }
  .wizard-create-project .button-green,
  .wizard-create-project .button-gray {
    display: block;
    padding: 12px;
    text-align: center; }
  .wizard-create-project .close {
    width: 2rem;
    height: 2rem; }
  .wizard-create-project form {
    width: 700px; }
  .wizard-create-project header {
    margin-bottom: 3rem; }
    .wizard-create-project header .title {
      margin-bottom: 0; }
    .wizard-create-project header .subtitle {
      font-size: .9rem;
      color: #767676;
      text-align: center; }
  .wizard-create-project .template-selector-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem; }
  .wizard-create-project .template-selector {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem; }
    .wizard-create-project .template-selector input {
      display: none; }
    .wizard-create-project .template-selector fieldset:first-child {
      margin-right: .5rem; }
  .wizard-create-project input:checked + label {
    background: #9dce0a;
    color: #fff;
    transition: background .2s ease-in; }
    .wizard-create-project input:checked + label:hover {
      background: #9dce0a; }
  .wizard-create-project input + label {
    background: rgba(228, 227, 227, 0.7);
    cursor: pointer;
    display: block;
    padding: 2rem 1rem;
    text-align: center;
    transition: background .2s ease-in; }
    .wizard-create-project input + label:hover {
      background: rgba(157, 206, 10, 0.3);
      transition: background .2s ease-in; }
    .wizard-create-project input + label .icon {
      width: 1.5rem;
      height: 1.5rem;
      fill: currentColor;
      margin-right: .3rem;
      vertical-align: text-top; }
    .wizard-create-project input + label .template-name {
      font-size: 1.2rem;
      text-transform: uppercase; }
  .wizard-create-project input[disabled] + label {
    background: #f1f0f0;
    box-shadow: none;
    color: darkgray;
    cursor: not-allowed;
    opacity: .65; }
    .wizard-create-project input[disabled] + label:hover {
      background: #f1f0f0;
      color: darkgray; }
  .wizard-create-project .template-data legend {
    display: block;
    margin-bottom: .5rem; }
  .wizard-create-project .template-data input,
  .wizard-create-project .template-data textarea {
    background: none;
    border: 1px solid #e4e3e3;
    color: #767676; }
    .wizard-create-project .template-data input:-ms-input-placeholder,
    .wizard-create-project .template-data textarea:-ms-input-placeholder {
      color: #b2afaf; }
    .wizard-create-project .template-data input::placeholder,
    .wizard-create-project .template-data textarea::placeholder {
      color: #b2afaf; }
  .wizard-create-project .template-data textarea {
    height: 7rem;
    min-height: 7rem; }
  .wizard-create-project .template-privacity {
    display: -ms-flexbox;
    display: flex; }
    .wizard-create-project .template-privacity fieldset {
      margin-bottom: 0; }
      .wizard-create-project .template-privacity fieldset:first-child {
        margin-right: .5rem; }
    .wizard-create-project .template-privacity input {
      display: none; }
    .wizard-create-project .template-privacity label {
      display: block;
      text-align: center;
      text-transform: uppercase; }
    .wizard-create-project .template-privacity input + label {
      padding: 1rem; }
    .wizard-create-project .template-privacity svg {
      width: 0.7rem;
      height: 0.7rem; }
  .wizard-create-project .create-warning {
    font-size: .9rem;
    padding: 1rem;
    text-align: center; }
    .wizard-create-project .create-warning .icon-exclamation {
      fill: #ff8282;
      margin-right: .5rem;
      vertical-align: middle; }
    .wizard-create-project .create-warning a {
      color: #5b8200;
      display: inline-block;
      margin-left: .25rem; }
  .wizard-create-project .button-green {
    display: block;
    margin: 1rem 5rem;
    width: calc(100% - 10rem); }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.epic-header-container {
  display: -ms-flexbox;
  display: flex; }
  .epic-header-container .color-selector {
    margin-right: .5rem; }
  .epic-header-container tg-detail-header {
    -ms-flex: 1;
    flex: 1;
    width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.introjs-overlay {
  background: radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.2) 0, rgba(228, 227, 227, 0.2) 100%);
  background-color: #e4e3e3; }

.introjs-helperLayer {
  border: 1px solid rgba(157, 206, 10, 0.8); }

.introjs-helperLayer,
.introjs-tooltip {
  box-shadow: 0 1px 8px rgba(68, 68, 68, 0.2); }

.introjs-tooltip h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem; }

.introjs-tooltip p {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  line-height: 1.4;
  margin-bottom: 0; }

.introjs-bullets ul li a.active {
  background: #9dce0a; }

.introjs-button {
  background-color: #5b8200;
  background-image: none;
  border: 0;
  border-radius: 0;
  color: #fff;
  margin-top: 10px;
  padding: .3rem .8rem;
  text-shadow: none; }
  .introjs-button:focus, .introjs-button:hover {
    background: none;
    background-color: #9dce0a;
    color: #fff; }
  .introjs-button.introjs-disabled {
    background: #f5f5f5;
    background-color: none;
    color: #fff; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.lightbox-generic-notion section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 600px;
  flex-basis: 600px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.single-project .single-project-intro {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem; }

.single-project.centered {
  width: 100%;
  max-width: 100%;
  padding: 0 80px; }

.single-project .project-logo {
  margin-right: 1rem;
  width: 6rem; }
  .single-project .project-logo img {
    width: 100%; }

.single-project .single-project-title-wrapper {
  -ms-flex: 1;
  flex: 1;
  margin-top: 16px; }

.single-project .intro-options {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: .5rem; }

.single-project .intro-title {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }

.single-project h1 {
  color: #000;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 0;
  vertical-align: middle;
  font-size: 14px; }

.single-project .private {
  width: 1.1rem;
  height: 1.1rem; }

.single-project .track-buttons-container {
  display: -ms-flexbox;
  display: flex; }

.single-project .like-button {
  margin-right: .75rem; }

.single-project .track-container .list-itemtype-track {
  font-size: .9rem;
  color: #767676;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-pack: end;
  justify-content: flex-end; }
  .single-project .track-container .list-itemtype-track .list-itemtype-track-likers {
    margin-right: .5rem; }

.single-project .track-container .list-itemtype-track-likers,
.single-project .track-container .list-itemtype-track-watchers {
  display: -ms-flexbox;
  display: flex; }
  .single-project .track-container .list-itemtype-track-likers .icon,
  .single-project .track-container .list-itemtype-track-watchers .icon {
    display: block;
    margin-right: .25rem; }
  .single-project .track-container .list-itemtype-track-likers.active,
  .single-project .track-container .list-itemtype-track-watchers.active {
    color: #5b8200; }
    .single-project .track-container .list-itemtype-track-likers.active .icon,
    .single-project .track-container .list-itemtype-track-watchers.active .icon {
      fill: currentcolor; }

.single-project .track-container .icon {
  fill: #767676; }

.single-project .description {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: 12px;
  margin: 0; }

.single-project .project-data {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start; }

.single-project .title {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  -ms-flex-line-pack: center;
  align-content: center;
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: .5rem;
  padding: .5rem 1rem;
  background: #fff;
  font-size: 20px; }

.single-project .single-project-tags {
  margin-bottom: 1rem;
  margin-top: 1rem; }

.single-project .timeline {
  -ms-flex: 1;
  flex: 1;
  -ms-flex-negative: 3;
  flex-shrink: 3;
  margin-right: 40px;
  max-width: 70%;
  width: 70%;
  background: #fff;
  border-radius: 5px;
  padding: 23px 54px; }

.single-project .looking-for-people img {
  width: 100%; }

.single-project .looking-for-people h3 {
  font-size: .9rem; }

.single-project .looking-for-people p {
  font-size: .9rem;
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif; }

.single-project .code-audit-review-alert {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  font-family: poppins;
  font-size: 12px;
  margin-bottom: 1rem; }
  .single-project .code-audit-review-alert div {
    width: 48%;
    padding: 12px 31px;
    border-radius: 5px;
    font-size: 13px; }
    .single-project .code-audit-review-alert div p {
      margin: 10px 0 0 0;
      font-size: 14px;
      font-weight: 100; }
      .single-project .code-audit-review-alert div p strong {
        font-size: 22px;
        font-weight: normal; }

.single-project .involved-data {
  background: #fff;
  border-radius: 5px;
  padding: 23px 54px; }
  .single-project .involved-data h2 {
    display: inline-block;
    margin: 0;
    padding: 0; }
  .single-project .involved-data img.logo-svg {
    display: inline-block;
    vertical-align: middle; }

.single-project .involved-team {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1rem; }
  .single-project .involved-team li {
    -ms-flex-preferred-size: 21%;
    flex-basis: 21%;
    margin-right: .14rem;
    position: relative;
    margin: 16px 8px 0; }
  .single-project .involved-team a {
    display: block; }
  .single-project .involved-team img {
    border-radius: .2rem;
    width: 100%; }
  .single-project .involved-team .icon-badge {
    width: 1.2rem;
    height: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    bottom: 5%;
    padding: .1rem;
    position: absolute;
    right: 5%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.issues-options {
  -ms-flex-align: center;
  align-items: center;
  background-color: #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 2rem; }
  .issues-options .button-bulk {
    margin-left: .2rem; }

.issues-page .summary.large-summary {
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .issues-page .summary.large-summary .issue-count-title {
    margin: 0;
    padding: 0;
    line-height: 37px;
    font-family: 'poppins'; }

.issues-page .summary .large-summary-wrapper {
  width: 70%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.main .large-summary .stats-wrapper {
  padding-top: 8px;
  padding-left: 20px;
  overflow: hidden; }
  .main .large-summary .stats-wrapper.show-type-count, .main .large-summary .stats-wrapper.show-severity-count, .main .large-summary .stats-wrapper.show-priority-count {
    padding-top: 15px; }
  .main .large-summary .stats-wrapper.show-status-count {
    padding-top: 18px; }
  .main .large-summary .stats-wrapper.show-milestone-count {
    padding-top: 23px; }

.issues-table {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem; }
  .issues-table.empty {
    display: none; }
  .issues-table .row:hover {
    background: #f0ffcf;
    transition: background .2s ease-in; }
  .issues-table .row .icon {
    display: inline; }
  .issues-table .row.is-blocked {
    background: #ffe8e8; }
    .issues-table .row.is-blocked .blocked-text {
      color: #f00;
      margin-right: .5rem; }
  .issues-table .title {
    font-size: 1rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    border-bottom: 1px solid #767676; }
    .issues-table .title:hover {
      background: transparent; }
    .issues-table .title div {
      cursor: pointer; }
    .issues-table .title .votes {
      color: #555; }
  .issues-table .table-main {
    font-size: .9rem;
    border-bottom: 1px solid #dad9d9; }
  .issues-table .avatar {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
    .issues-table .avatar img {
      width: 35px; }
    .issues-table .avatar figcaption {
      -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
      -ms-flex-positive: 1;
      flex-grow: 1;
      margin-left: .5rem; }
  .issues-table .level-field, .issues-table .votes, .issues-table .technology, .issues-table .severity {
    -ms-flex-preferred-size: 85px;
    flex-basis: 85px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
    width: 85px; }
  .issues-table .votes {
    color: #555;
    cursor: pointer;
    -ms-flex-preferred-size: 75px;
    flex-basis: 75px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
    width: 75px; }
    .issues-table .votes:hover {
      color: #9dce0a;
      transition: all .2s linear; }
      .issues-table .votes:hover svg {
        fill: #9dce0a;
        transition: all .2s linear; }
    .issues-table .votes.inactive {
      color: #767676; }
  .issues-table .icon-upvote {
    width: 0.75rem;
    height: 0.75rem;
    fill: #555;
    margin-right: .25rem;
    vertical-align: middle; }
  .issues-table .icon-arrow-up,
  .issues-table .icon-arrow-down {
    width: 0.7rem;
    height: 0.7rem;
    fill: #767676;
    margin-left: .25rem;
    vertical-align: middle; }
  .issues-table .is-voted {
    color: #9dce0a;
    transition: all .2s linear; }
    .issues-table .is-voted svg {
      fill: #9dce0a;
      transition: all .2s linear; }
    .issues-table .is-voted:hover {
      color: #ff8282; }
      .issues-table .is-voted:hover svg {
        fill: #ff8282;
        transform: rotate(180deg); }
  .issues-table .subject {
    overflow: hidden;
    padding-right: 1rem;
    width: 100%; }
    .issues-table .subject a {
      display: inline-block;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      word-wrap: normal;
      display: block; }
    .issues-table .subject span {
      vertical-align: middle; }
      .issues-table .subject span:first-child {
        margin-right: .5rem; }
  .issues-table .sprint {
    min-width: 60px; }
  .issues-table .issue-field,
  .issues-table .assigned-field,
  .issues-table .created-field,
  .issues-table .assigned-field {
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 1rem;
    position: relative;
    text-align: left; }
    .issues-table .issue-field .icon,
    .issues-table .assigned-field .icon,
    .issues-table .created-field .icon,
    .issues-table .assigned-field .icon {
      width: 0.75rem;
      height: 0.75rem;
      fill: currentColor;
      margin-left: .25rem;
      vertical-align: middle; }
  .issues-table .assigned-field {
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    max-width: 160px; }
  .issues-table .issue-assignedto {
    cursor: pointer;
    position: relative; }
    .issues-table .issue-assignedto:hover .icon {
      opacity: 1;
      transition: opacity .3s linear; }
    .issues-table .issue-assignedto figcaption {
      max-width: 60%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .issues-table .issue-assignedto .icon {
      width: 0.75rem;
      height: 0.75rem;
      opacity: 0;
      position: absolute;
      right: 0;
      top: .75rem;
      transition: opacity .3s linear; }
  .issues-table .pop-status {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: #050505;
    color: #fff;
    display: none;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: 20px;
    width: 200px;
    z-index: 99;
    text-align: center; }
    .issues-table .pop-status a {
      font-size: .9rem;
      border-bottom: 1px solid #444;
      color: #fff;
      display: block;
      padding: 10px 2px; }
      .issues-table .pop-status a:last-child {
        border: 0; }
      .issues-table .pop-status a:hover {
        color: #9dce0a;
        transition: color .3s linear; }
        .issues-table .pop-status a:hover.point {
          color: #fff; }
    .issues-table .pop-status:after {
      background: #050505;
      content: '';
      height: 15px;
      position: absolute;
      transform: rotate(45deg);
      width: 0; }
    .issues-table .pop-status.fix {
      bottom: 0;
      top: auto; }
  @media (max-width: 1280px) {
    .issues-table .level-field, .issues-table .votes,
    .issues-table .created-field {
      display: none; } }
  .issues-table .issue-status {
    display: inline-block; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.kanban-table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  width: 100%; }
  .kanban-table.zoom-0 .task-column,
  .kanban-table.zoom-0 .task-colum-name {
    max-width: 148px; }
  .kanban-table.zoom-0 .task-colum-name span {
    padding-right: 1rem; }
  .kanban-table .vfold tg-card {
    display: none; }
  .kanban-table .vfold.task-colum-name {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .8;
    padding: .5rem 0;
    transition: opacity .3s linear; }
    .kanban-table .vfold.task-colum-name .option:not(.hunfold),
    .kanban-table .vfold.task-colum-name span {
      display: none; }
    .kanban-table .vfold.task-colum-name .hunfold {
      margin: 0; }
  .kanban-table .vfold.task-colum-name, .kanban-table .vfold.task-column {
    -ms-flex-flow: 1;
    flex-flow: 1;
    max-width: 30px;
    min-height: 2.5rem;
    min-width: 30px;
    width: 30px; }
  .kanban-table .vfold .kanban-column-intro {
    display: none; }
  .kanban-table .readonly {
    cursor: auto; }

.kanban-table-header {
  -ms-flex-preferred-size: 2.2rem;
  flex-basis: 2.2rem;
  min-height: 2.2rem;
  position: relative;
  width: 100%; }
  .kanban-table-header .kanban-table-inner {
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: absolute; }
  .kanban-table-header .options {
    display: -ms-flexbox;
    display: flex; }
  .kanban-table-header .task-colum-name {
    font-size: 1rem;
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    border-top: 3px solid #767676;
    color: #555;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 296px;
    flex-basis: 296px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 5px 0 0;
    max-width: 296px;
    padding: 0.5rem 1rem;
    position: relative;
    text-transform: uppercase; }
    .kanban-table-header .task-colum-name:last-child {
      margin-right: 0; }
    .kanban-table-header .task-colum-name span {
      display: inline-block;
      max-width: 65%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      word-wrap: normal; }
    .kanban-table-header .task-colum-name .option {
      margin-right: .3rem; }
    .kanban-table-header .task-colum-name .icon {
      fill: #767676;
      height: 1rem;
      transition: color .2s linear;
      width: 1rem; }
      .kanban-table-header .task-colum-name .icon:hover {
        fill: #5b8200; }

.kanban-table-body {
  font-size: 1rem;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  overflow: hidden;
  overflow-x: auto;
  width: 100%; }
  .kanban-table-body .task-column {
    -ms-flex-preferred-size: 296px;
    flex-basis: 296px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 5px 0 0;
    max-width: 296px;
    overflow-y: auto;
    widows: 296px;
    width: 296px; }
    .kanban-table-body .task-column:last-child {
      margin-right: 0; }
    .kanban-table-body .task-column .kanban-column-intro {
      font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
      font-size: .9rem;
      color: #767676;
      margin: 1rem 2rem; }
      .kanban-table-body .task-column .kanban-column-intro.active {
        color: #050505; }
    .kanban-table-body .task-column .kanban-wip-limit {
      background: #f00;
      border-radius: 2px;
      height: 4px;
      margin: .5rem 0;
      padding: 0; }
  .kanban-table-body .kanban-uses-box {
    background: #f5f5f5; }

.kanban-table-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.search-filter {
  border-top: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  z-index: 9; }
  .search-filter a {
    background: #fff;
    color: #767676;
    display: inline-block;
    margin-right: 1rem;
    padding: 1rem 1.25rem; }
    .search-filter a:hover {
      transition: color .3s linear; }
      .search-filter a:hover .name {
        padding-left: 5px; }
      .search-filter a:hover .icon {
        fill: currentColor; }
    .search-filter a.active {
      border-left: 1px solid #e4e3e3;
      border-right: 1px solid #e4e3e3;
      color: #444;
      position: relative;
      top: 1px; }
      .search-filter a.active .icon {
        fill: #9dce0a; }
  .search-filter .icon {
    fill: currentColor;
    margin-right: .4rem; }
  .search-filter .name {
    padding-left: 5px; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.search-in input {
  background: #444;
  color: #fff; }
  .search-in input:-ms-input-placeholder {
    color: #767676; }
  .search-in input::placeholder {
    color: #767676; }

.search-in .icon-search-wrapper {
  position: absolute;
  right: .7rem;
  top: .7rem; }

.search-in .icon-search {
  fill: #767676; }

.search-in .loading-spinner {
  margin-top: .1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.search-result-table {
  border-top: 1px solid #e4e3e3; }
  .search-result-table .row {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem; }
    .search-result-table .row .ref {
      -ms-flex-preferred-size: 30px;
      flex-basis: 30px;
      -ms-flex-positive: 1;
      flex-grow: 1;
      padding: 0 1rem; }
    .search-result-table .row .user-stories {
      -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
      -ms-flex-positive: 10;
      flex-grow: 10;
      -ms-flex-negative: 1;
      flex-shrink: 1; }
    .search-result-table .row .status,
    .search-result-table .row .points,
    .search-result-table .row .sprint {
      -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
      -ms-flex-positive: 0;
      flex-grow: 0;
      padding: 0 1rem;
      text-align: center; }
    .search-result-table .row .assigned-to {
      -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
      -ms-flex-positive: 0;
      flex-grow: 0;
      padding: 0 1rem; }
  .search-result-table .row-selected {
    background: #e9ffb5;
    transition: background .2s ease-in; }
  .search-result-table .user-story-name input {
    vertical-align: top; }
  .search-result-table .user-story-name span {
    display: inline-block;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .search-result-table .user-story-name .icon {
    font-size: 1rem;
    color: #767676; }
    .search-result-table .user-story-name .icon:hover {
      color: #444;
      transition: color .3s linear; }
  .search-result-table .table-main {
    font-size: .9rem;
    border-bottom: 1px solid #e4e3e3; }
  .search-result-table .status,
  .search-result-table .points,
  .search-result-table .sprint {
    position: relative; }
  .search-result-table .avatar {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
    .search-result-table .avatar img {
      width: 35px; }
    .search-result-table .avatar .avatar-caption {
      display: block;
      margin-left: .5rem;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 80px; }

.search-result-table-header {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.team-filters .search-in {
  margin-bottom: 1rem;
  position: relative; }

.team-filters li {
  font-size: 1.2rem;
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #767676;
  text-transform: uppercase; }
  .team-filters li:last-child {
    border-bottom: 0; }
  .team-filters li .icon {
    fill: #050505;
    opacity: 0;
    transition: opacity .3s linear; }

.team-filters a {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 0 1rem 1rem; }
  .team-filters a:hover, .team-filters a.active {
    color: #ca4f45;
    transition: color .3s linear; }
    .team-filters a:hover .icon, .team-filters a.active .icon {
      fill: currentColor;
      opacity: 1; }

.team-filters .active {
  opacity: 1;
  transition: opacity .3s linear; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.table-team .row {
  padding: .5rem; }

.table-team .username {
  -ms-flex-preferred-size: 220px;
  flex-basis: 220px;
  min-width: 25%; }

.table-team .member-stats {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 6;
  flex: 6;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.table-team .attribute {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  text-align: center; }
  .table-team .attribute .icon {
    width: 1.75rem;
    height: 1.75rem;
    fill: #555; }
  .table-team .attribute .points {
    font-size: 1.6rem;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #444; }
  .table-team .attribute .top {
    fill: #9dce0a;
    opacity: 1; }
  .table-team .attribute:hover .popover {
    display: block; }

.table-team .leave-project {
  font-size: .9rem;
  color: #ff8282; }
  .table-team .leave-project .icon {
    width: 0.8rem;
    height: 0.8rem;
    fill: currentColor;
    margin-right: .2rem; }
  .table-team .leave-project:hover {
    color: #f00; }
    .table-team .leave-project:hover .icon {
      color: currentColor;
      transition: fill .3s linear; }

.table-team .team-header {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  border-bottom: 0; }

.table-team .hero {
  width: 100%; }
  .table-team .hero .row {
    border-bottom: 1px solid #e4e3e3;
    border-top: 1px solid #e4e3e3;
    margin: 1rem 0;
    padding: 1.5rem 1rem; }

.table-team .avatar {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }
  .table-team .avatar img {
    -ms-flex-preferred-size: 66px;
    flex-basis: 66px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 66px; }
  .table-team .avatar .avatar-data {
    margin-left: 1rem; }
    .table-team .avatar .avatar-data span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 100%; }
  .table-team .avatar .name,
  .table-team .avatar .position {
    display: block;
    width: 100%; }
  .table-team .avatar .name {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }
  .table-team .avatar .position {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #767676; }

.table-team .popover {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  background: #050505;
  bottom: 30px;
  color: #fff;
  display: none;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  width: 100%;
  z-index: 99;
  text-align: center; }
  .table-team .popover a {
    font-size: .9rem;
    border-bottom: 1px solid #444;
    color: #fff;
    display: block;
    padding: 10px 2px; }
    .table-team .popover a:last-child {
      border: 0; }
    .table-team .popover a:hover {
      color: #9dce0a;
      transition: color .3s linear; }
      .table-team .popover a:hover.point {
        color: #fff; }
  .table-team .popover:after {
    background: #050505;
    bottom: -5px;
    content: '';
    height: 15px;
    left: 50%;
    position: absolute;
    transform: rotate(45deg);
    width: 15px; }

.table-team .icon-badge {
  position: relative;
  top: .15rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.policy-table .policy-table-row {
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center; }

.policy-table .policy-table-header {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  border-bottom: 2px solid #767676; }

.policy-table .policy-table-project,
.policy-table .policy-table-all,
.policy-table .policy-table-involved,
.policy-table .policy-table-none {
  padding: 1rem; }

.policy-table .policy-table-project {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 3;
  flex-grow: 3; }

.policy-table .policy-table-all,
.policy-table .policy-table-involved,
.policy-table .policy-table-none {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.policy-table input {
  display: none; }
  .policy-table input:checked + label {
    background: #5b8200;
    transition: background .3s linear; }

.policy-table label {
  background: #767676;
  border-radius: 5px;
  color: #fff;
  display: block;
  padding: .5rem; }
  .policy-table label:hover {
    background: #9dce0a;
    cursor: pointer;
    transition: background .3s linear; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.user-change-password fieldset {
  margin-bottom: 1rem;
  width: 50%; }
  .user-change-password fieldset:last-child {
    margin-top: 2rem; }

.user-change-password label {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  display: block;
  margin-bottom: .5rem; }

.user-change-password .button-green {
  color: #fff;
  display: block;
  padding: 12px;
  text-align: center; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.user-profile {
  max-width: 780px; }
  .user-profile form {
    display: -ms-flexbox;
    display: flex; }
  .user-profile fieldset {
    margin-bottom: 1rem; }
  .user-profile label {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    display: block;
    margin-bottom: .2rem; }
  .user-profile .project-details-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: 180px;
    margin-right: 2rem; }
    .user-profile .project-details-image .image {
      width: 100%; }
  .user-profile .change-image {
    display: block; }
  .user-profile .image-container {
    position: relative;
    margin-bottom: .5rem; }
  .user-profile .loading-overlay {
    display: none; }
    .user-profile .loading-overlay.active {
      -ms-flex-align: center;
      align-items: center;
      background: rgba(5, 5, 5, 0.8);
      bottom: 0;
      display: -ms-flexbox;
      display: flex;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      width: 100%; }
  .user-profile .loading-spinner {
    animation-timing-function: ease-in-out;
    animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
    margin: 0 auto;
    max-height: 1rem;
    max-width: 1rem;
    transform-origin: 32 32;
    border: 0;
    transform-origin: center center; }
  .user-profile .use-default-image {
    font-size: 1rem;
    display: block;
    margin-top: .25rem;
    text-align: center; }
    .user-profile .use-default-image:hover {
      color: #f00; }
  .user-profile .project-details-form-data {
    -ms-flex: 1;
    flex: 1;
    max-width: 500px; }
  @media (max-width: 767px) {
    .user-profile form {
      display: block; } }
  .user-profile .submit-button {
    width: 100%; }
  .user-profile .delete-account {
    font-size: .9rem;
    display: block;
    margin-top: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wiki-nav {
  padding: 0;
  width: 240px; }
  .wiki-nav .title {
    font-size: 1.6rem;
    padding: 2rem 1rem 0 2rem; }
  .wiki-nav .add-button {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 1rem 1rem 2rem;
    text-transform: uppercase;
    vertical-align: middle; }
    .wiki-nav .add-button:hover svg {
      background: #9dce0a; }
    .wiki-nav .add-button svg {
      width: 1.25rem;
      height: 1.25rem;
      background: #767676;
      border-radius: 2px;
      fill: #fff;
      margin-right: .5rem;
      padding: .25rem;
      transition: background .2s linear; }
  .wiki-nav .wiki-link-container {
    margin: 0; }
    .wiki-nav .wiki-link-container.wiki-all-links {
      border-top: 1px solid #767676; }
  .wiki-nav input[type="text"] {
    background: #e4e3e3;
    color: #444;
    margin: 1rem 1rem 1rem 2rem;
    width: 80%; }
    .wiki-nav input[type="text"]:-ms-input-placeholder {
      color: #767676; }
    .wiki-nav input[type="text"]::placeholder {
      color: #767676; }
  .wiki-nav .loading {
    padding: 1rem;
    text-align: center; }

.wiki-link {
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 2rem;
  padding-right: 1rem;
  position: relative; }
  .wiki-link:hover .remove-wiki-page {
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s linear;
    transition-delay: .1s; }
  .wiki-link:hover .dragger {
    cursor: move;
    opacity: 1;
    transition: opacity .2s linear;
    transition-delay: .1s; }
  .wiki-link.gu-mirror {
    border-bottom: 0; }
  .wiki-link.fixed-link {
    font-size: 1.2rem;
    text-transform: uppercase; }
  .wiki-link.is-sortable {
    cursor: move; }
  .wiki-link .link-title {
    cursor: pointer;
    display: block;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 1rem 0; }
  .wiki-link .dragger {
    fill: #767676;
    left: -1rem;
    opacity: 0;
    position: absolute;
    top: 1rem; }
    .wiki-link .dragger svg {
      width: 0.7rem;
      height: 0.7rem; }
  .wiki-link .remove-wiki-page {
    opacity: 0; }
    .wiki-link .remove-wiki-page:hover .icon {
      fill: #f00; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wiki-pages-table {
  display: -ms-flexbox;
  display: flex; }
  .wiki-pages-table .row {
    padding: .5rem; }
  .wiki-pages-table .title {
    font-size: 1rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }
  .wiki-pages-table .table-main {
    font-size: .9rem; }
  .wiki-pages-table .title-field {
    -ms-flex-preferred-size: 180px;
    flex-basis: 180px;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .wiki-pages-table .created-field,
  .wiki-pages-table .created-field,
  .wiki-pages-table .modified-field {
    -ms-flex-preferred-size: 10vw;
    flex-basis: 10vw;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5rem; }
  .wiki-pages-table .editions-field {
    -ms-flex-preferred-size: 80px;
    flex-basis: 80px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5rem;
    text-align: center; }
  .wiki-pages-table .creator-field,
  .wiki-pages-table .last-modifier-field {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px; }
    .wiki-pages-table .creator-field .user-avatar,
    .wiki-pages-table .last-modifier-field .user-avatar {
      -ms-flex-positive: 0;
      flex-grow: 0; }
      .wiki-pages-table .creator-field .user-avatar img,
      .wiki-pages-table .last-modifier-field .user-avatar img {
        height: 2rem; }
    .wiki-pages-table .creator-field .user-full-name,
    .wiki-pages-table .last-modifier-field .user-full-name {
      -ms-flex-positive: 1;
      flex-grow: 1;
      padding: .5rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wiki-summary {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 1rem; }
  .wiki-summary.summary {
    background: #f5f5f5;
    color: #555; }
  .wiki-summary div {
    display: -ms-flexbox;
    display: flex;
    margin-right: 1.25rem; }
  .wiki-summary .wiki-user-modification {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .wiki-summary .avatar {
    margin-right: .5rem;
    width: 2.25rem; }
  .wiki-summary img {
    height: 100%;
    width: 100%; }
  .wiki-summary .username {
    font-size: 1.2rem;
    white-space: nowrap; }
  .wiki-summary .remove {
    fill: #767676;
    margin-left: auto;
    transition: fill .1s linear; }
    .wiki-summary .remove:hover {
      cursor: pointer;
      fill: #ff8282; }
    .wiki-summary .remove svg {
      width: 1.5rem;
      height: 1.5rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.attachment-gallery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 1rem; }
  .attachment-gallery .single-attachment {
    margin-bottom: .5rem;
    margin-right: .5rem;
    max-width: 200px; }
    .attachment-gallery .single-attachment:hover .icon-delete {
      opacity: 1; }
    .attachment-gallery .single-attachment .attachment-name {
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      display: inline-block;
      max-width: 175px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      word-wrap: normal;
      display: inline-block; }
  .attachment-gallery .attachment-image {
    display: inline-block; }
  .attachment-gallery img {
    height: 150px;
    margin-bottom: .2rem;
    width: 200px; }
    .attachment-gallery img:hover {
      filter: saturate(150%) hue-rotate(60deg);
      transition: all 0.3s cubic-bezier(0.01, 0.7, 1, 1); }
  .attachment-gallery.deprecated img {
    opacity: .5; }
  .attachment-gallery.deprecated .attachment-name {
    color: #767676; }
  .attachment-gallery .attachment-data {
    -ms-flex-line-pack: center;
    align-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .attachment-gallery .icon-delete {
    margin-left: auto;
    opacity: 0;
    transition: opacity .2s ease-in;
    transition-delay: .1s; }
    .attachment-gallery .icon-delete svg {
      fill: #ff8282; }
    .attachment-gallery .icon-delete:hover svg {
      color: #f00; }
  .attachment-gallery .loading-container {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: 150px;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 .5rem .5rem 0;
    width: 200px; }
  .attachment-gallery .loading-spinner {
    margin: 0 auto;
    max-height: 3rem;
    max-width: 3rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.attachment-list .single-attachment {
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem 0 .5rem .5rem;
  position: relative; }
  .attachment-list .single-attachment:hover .settings {
    opacity: 1;
    transition: opacity .2s ease-in; }
  .attachment-list .single-attachment.deprecated {
    color: #767676; }
    .attachment-list .single-attachment.deprecated .attachment-name a {
      color: #767676; }

.attachment-list .attachment-name {
  display: inline-block;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 1rem; }

.attachment-list .attachment-comments,
.attachment-list .editable-attachment-comment {
  -ms-flex: 2;
  flex: 2;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-right: .5rem; }
  .attachment-list .attachment-comments span,
  .attachment-list .editable-attachment-comment span {
    color: #555; }

.attachment-list .attachment-size {
  -ms-flex-preferred-size: 125px;
  flex-basis: 125px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.attachment-list .attachment-settings {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-left: auto; }
  .attachment-list .attachment-settings .settings {
    opacity: 0; }
  .attachment-list .attachment-settings .editable-settings {
    display: block;
    opacity: 1; }
  .attachment-list .attachment-settings svg {
    fill: #767676;
    pointer-events: none; }
  .attachment-list .attachment-settings .icon-edit:hover,
  .attachment-list .attachment-settings .icon-save:hover {
    fill: #5b8200; }
  .attachment-list .attachment-settings .icon-trash:hover,
  .attachment-list .attachment-settings .icon-close:hover {
    fill: #f00; }
  .attachment-list .attachment-settings .icon-drag {
    cursor: move; }

.attachment-list .editable-attachment-deprecated {
  display: -ms-flexbox;
  display: flex;
  padding-left: 1rem; }
  .attachment-list .editable-attachment-deprecated span {
    color: #767676; }
  .attachment-list .editable-attachment-deprecated input {
    margin-right: .2rem;
    vertical-align: middle; }
    .attachment-list .editable-attachment-deprecated input:checked + span {
      color: #444; }

.attachment-list .percentage {
  background: rgba(91, 130, 0, 0.1);
  bottom: 0;
  height: 40px;
  left: 0;
  position: absolute;
  top: 0;
  width: 45%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.attachments {
  margin-bottom: 4rem; }
  .attachments .gu-transit {
    background: #e4e3e3;
    height: 40px; }
    .attachments .gu-transit * {
      display: none; }
  .attachments .gu-mirror {
    opacity: 1; }
    .attachments .gu-mirror form {
      background: #e9ffb5;
      box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
      transition: background .2s ease-in; }

.attachments-header {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 36px; }
  .attachments-header .attachments-title {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 36px;
    padding: 0 1rem; }
  .attachments-header .options {
    display: -ms-flexbox;
    display: flex; }
  .attachments-header label {
    cursor: pointer;
    margin-left: .25rem; }
    .attachments-header label.add-attachment-button {
      background: #555;
      border: 0;
      display: inline-block;
      padding: .5rem;
      transition: background .25s; }
      .attachments-header label.add-attachment-button:hover {
        background: #9dce0a; }
    .attachments-header label svg {
      fill: #fff;
      height: 1.2rem;
      margin-bottom: -.2rem;
      width: 1.2rem; }
  .attachments-header button {
    background: none;
    margin-right: .2rem; }
    .attachments-header button:hover svg, .attachments-header button.is-active svg {
      fill: #9dce0a; }
    .attachments-header button svg {
      fill: #767676;
      height: 1.6rem;
      width: 1.6rem; }
  .attachments-header .size-info {
    font-size: .9rem;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #555;
    padding-left: 1rem; }
  .attachments-header input {
    display: none; }

.attachments-empty {
  font-size: 1.2rem;
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  border: 3px dashed #e4e3e3;
  color: #767676;
  margin-top: .5rem;
  padding: 1rem;
  text-align: center; }

.single-attachment {
  font-size: .9rem;
  background: rgba(255, 255, 255, 0.9); }
  .single-attachment .attachment-name {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    padding-right: 1rem; }
    .single-attachment .attachment-name svg {
      fill: #555;
      height: .9rem;
      margin-right: .25rem;
      width: .9rem; }
  .single-attachment .attachment-size {
    color: #767676; }

.more-attachments {
  font-size: .9rem;
  border-bottom: 1px solid #767676;
  display: block;
  padding: 1rem 0 1rem 1rem; }
  .more-attachments span {
    color: #767676; }
  .more-attachments .more-attachments-num {
    color: #5b8200;
    margin-left: .5rem; }
  .more-attachments:hover {
    background: #e9ffb5;
    transition: background .2s ease-in; }

.attachment-preview .attachment-preview-container svg {
  width: 3rem;
  height: 3rem;
  fill: #767676; }
  .attachment-preview .attachment-preview-container svg:hover {
    fill: #9dce0a;
    transition: fill .3s linear; }

.attachment-preview .previous {
  left: 3rem;
  position: absolute;
  top: calc(50% - 3rem); }

.attachment-preview .next {
  position: absolute;
  right: 3rem;
  top: calc(50% - 3rem); }

.attachment-preview img {
  max-height: 80vh;
  max-width: 80vw; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.assignable-member-single {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding: .25rem 0; }
  .assigned-members-option .assignable-member-single {
    background: #fff;
    border-bottom: 1px solid #e4e3e3;
    cursor: pointer; }
  .assignable-member-single:hover {
    background: rgba(157, 206, 10, 0.05); }
  .assignable-member-single .assignable-member-avatar {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    margin-right: .5rem;
    max-height: 3rem;
    max-width: 3rem; }
  .assignable-member-single .assignable-member-name {
    -ms-flex: 1;
    flex: 1; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.assigned-to-container {
  width: 600px; }

.assignable-member-list {
  margin-top: 1rem; }
  .assignable-member-list .assigned-member {
    -ms-flex-align: center;
    align-items: center;
    background: rgba(157, 206, 10, 0.05);
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem; }
  .assignable-member-list .unassign-epic {
    cursor: pointer;
    margin-right: 1rem; }
  .assignable-member-list .icon {
    fill: #ff8282;
    transition: fill .2s; }
    .assignable-member-list .icon:hover {
      cursor: pointer;
      fill: #f00; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.belong-to-epic-pill-wrapper {
  display: inline-block;
  position: relative; }
  .belong-to-epic-pill-wrapper:hover .belong-to-epic-pill-data {
    display: block; }

.belong-to-epic-pill {
  background-color: #f5f5f5;
  border-radius: 50%;
  display: inline-block;
  height: .7rem;
  margin: 0 .1rem;
  position: relative;
  width: .7rem; }

.belong-to-epic-text-wrapper {
  margin-right: 1rem; }

.belong-to-epic-text {
  margin-left: .25rem; }

.belong-to-epic-label {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .75rem;
  background: #444;
  border-radius: .25rem;
  color: #fff;
  margin: 0 .5rem;
  padding: .1rem .25rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.range-slider {
  -webkit-appearance: none;
  margin: 7px 0;
  width: 200px; }
  .range-slider:focus::-webkit-slider-runnable-track {
    background: #e9e8e8; }
  .range-slider:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(68, 68, 68, 0.3); }
  .range-slider:focus::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(68, 68, 68, 0.3); }
  .range-slider:focus::-ms-fill-lower {
    background: #e4e3e3; }
  .range-slider:focus::-ms-fill-upper {
    background: #e9e8e8; }
  .range-slider::-webkit-slider-runnable-track {
    width: 200px;
    height: 3px;
    cursor: pointer;
    transition: all .2s ease;
    background: #e4e3e3;
    border: 0 solid transparent;
    border-radius: 1px; }
  .range-slider::-webkit-slider-thumb {
    border: 0 solid transparent;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    box-shadow: 0 0 0 2px rgba(68, 68, 68, 0.3);
    transition: box-shadow .2s;
    -webkit-appearance: none;
    margin-top: -5.5px; }
  .range-slider::-moz-range-track {
    width: 200px;
    height: 3px;
    cursor: pointer;
    transition: all .2s ease;
    background: #e4e3e3;
    border: 0 solid transparent;
    border-radius: 1px; }
  .range-slider::-moz-range-thumb {
    border: 0 solid transparent;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    box-shadow: 0 0 0 2px rgba(68, 68, 68, 0.3);
    transition: box-shadow .2s; }
  .range-slider::-ms-track {
    width: 200px;
    height: 3px;
    cursor: pointer;
    transition: all .2s ease;
    background: transparent;
    border-color: transparent;
    border-width: 14px 0;
    color: transparent; }
  .range-slider::-ms-fill-lower {
    background: #dfdede;
    border: 0 solid transparent;
    border-radius: 2px; }
  .range-slider::-ms-fill-upper {
    background: #e4e3e3;
    border: 0 solid transparent;
    border-radius: 2px; }
  .range-slider::-ms-thumb {
    border: 0 solid transparent;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    box-shadow: 0 0 0 2px rgba(68, 68, 68, 0.3);
    transition: box-shadow .2s; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.card {
  box-shadow: 2px 2px 4px #cbc9c9;
  cursor: move;
  display: block;
  margin: 0 .6rem .6rem;
  overflow: hidden;
  transition: box-shadow .2s ease-in; }
  .card:hover {
    box-shadow: 3px 3px 6px #cbc9c9; }

.card-inner {
  background: #fff;
  border-radius: .25rem; }
  .card-inner.zoom-0 .card-title, .card-inner.zoom-1 .card-title {
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    padding: .25rem; }
  .card-inner.zoom-1 .card-owner-info {
    -ms-flex-align: start;
    align-items: flex-start; }
  .card-inner.card-blocked {
    background: #ff8282; }
    .card-inner.card-blocked .statistic,
    .card-inner.card-blocked .card-title a,
    .card-inner.card-blocked .card-owner-name,
    .card-inner.card-blocked .card-estimation {
      color: #fff; }
    .card-inner.card-blocked .card-owner-actions {
      background: rgba(255, 130, 130, 0.9); }
    .card-inner.card-blocked svg {
      fill: #fff; }
    .card-inner.card-blocked .statistic.active {
      color: #fff; }
    .card-inner.card-blocked .card-unfold:hover {
      background: rgba(255, 130, 130, 0.9); }
    .card-inner.card-blocked.zoom-0 .card-title, .card-inner.card-blocked.zoom-1 .card-title {
      color: #fff; }

.card-tags {
  display: -ms-flexbox;
  display: flex; }
  .card-tags .card-tag {
    display: block;
    -ms-flex: 1;
    flex: 1;
    height: .5rem; }

.card-owner {
  position: relative; }
  .card-owner .card-owner-info {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
  .card-owner .card-owner-avatar {
    line-height: 0;
    position: relative; }
  .card-owner .is-iocaine {
    filter: hue-rotate(265deg) saturate(3); }
  .card-owner:hover .card-owner-actions {
    opacity: 1; }
  .card-owner img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 2.5rem;
    margin-right: .5rem;
    width: 2.5rem; }
  .card-owner .card-owner-name {
    color: #767676; }

.card-owner-actions {
  background: rgba(255, 255, 255, 0.9);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all .2s;
  width: 100%; }
  .card-owner-actions:hover {
    color: #9dce0a; }
    .card-owner-actions:hover svg {
      fill: currentColor; }
  .card-owner-actions .icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    margin-right: .25rem;
    padding: 0; }
  .card-owner-actions a {
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    padding: .6rem 1rem; }

.card-title {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: .25rem;
  padding: 1rem 1rem 0; }
  .card-title span {
    padding-right: .25rem; }

.card-data {
  color: #767676;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 1rem .5rem; }

.card-statistics {
  font-size: .9rem;
  color: #b6b6b6;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto; }
  .card-statistics .statistic {
    -ms-flex-line-pack: center;
    align-content: center;
    display: -ms-flexbox;
    display: flex;
    margin-left: .5rem; }
    .card-statistics .statistic.active {
      color: #9dce0a; }
      .card-statistics .statistic.active svg {
        fill: currentColor; }
    .card-statistics .statistic.card-iocaine {
      cursor: help; }
  .card-statistics .icon {
    width: 0.75rem;
    height: 0.75rem;
    fill: #b6b6b6;
    margin-right: .2rem; }
  .card-statistics .icon-iocaine {
    fill: #810061; }

.card-completion {
  margin: 0 1rem .5rem;
  position: relative; }
  .card-completion .card-completion-bar {
    background: #e4e3e3;
    height: .4rem;
    width: 100%; }
  .card-completion .card-completion-percentage {
    background: #9dce0a;
    cursor: pointer;
    height: .4rem;
    left: 0;
    position: absolute;
    top: 0; }
    .card-completion .card-completion-percentage:hover + .card-tooltip {
      opacity: 1; }
  .card-completion .card-tooltip {
    background: #050505;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    left: calc(25% - 50px);
    opacity: 0;
    padding: .25rem 1rem;
    position: absolute;
    text-align: center;
    top: -2.25rem;
    transition: opacity .2s;
    width: 100px; }
    .card-completion .card-tooltip::after {
      background: #000;
      content: '';
      height: 10px;
      left: 50%;
      position: absolute;
      top: 70%;
      transform: rotate(45deg);
      width: 10px; }

.card-unfold {
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: .25rem; }
  .card-unfold:hover {
    background: linear-gradient(to bottom, #fff, #fcfcfc); }
  .card-unfold svg {
    width: 2rem;
    height: 0.3rem;
    fill: #e4e3e3; }

.card-tasks {
  border-top: 1px solid #e4e3e3;
  margin: 0;
  margin-top: .5rem;
  padding: 0; }

.card-task {
  font-size: .75rem;
  border-bottom: 1px solid #e4e3e3;
  list-style: none; }
  .card-task a {
    color: #767676;
    display: block;
    overflow: hidden;
    padding: .5rem .75rem;
    text-overflow: ellipsis;
    transition: color .2s;
    white-space: nowrap; }
    .card-task a.blocked-task {
      color: #ff8282; }
    .card-task a.closed-task {
      color: #767676;
      text-decoration: line-through; }
    .card-task a:hover {
      color: #5b8200; }

.card-slideshow {
  position: relative; }
  .card-slideshow:hover .slideshow-left,
  .card-slideshow:hover .slideshow-right {
    background: rgba(255, 255, 255, 0.2);
    padding: .25rem;
    transition: background .2s; }
  .card-slideshow .slideshow-icon {
    cursor: pointer;
    position: absolute;
    top: 35%; }
    .card-slideshow .slideshow-icon:hover {
      background: rgba(157, 206, 10, 0.5);
      transition: background .2s; }
  .card-slideshow svg {
    width: 1.2rem;
    height: 1.2rem;
    transition: fill .2s; }
  .card-slideshow .slideshow-left,
  .card-slideshow .slideshow-right {
    background: transparent;
    padding: .25rem; }
  .card-slideshow .slideshow-left {
    left: 0; }
  .card-slideshow .slideshow-right {
    right: 0; }
  .card-slideshow img {
    width: 100%; }

.card-slideshow-wrapper {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  height: 120px;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden; }
  .card-slideshow-wrapper .loading-spinner {
    min-height: 3rem;
    min-width: 3rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.color-selector {
  position: relative; }
  .color-selector .tag-color {
    border-radius: 2px;
    cursor: pointer;
    height: 2.25rem;
    width: 2.25rem;
    min-width: 2.25rem;
    margin: 0 .5rem .5rem 0;
    border: 1px solid #767676;
    border-radius: 0;
    margin: 0;
    transition: background .3s ease-out; }
    .color-selector .tag-color:nth-child(7n) {
      margin-right: 0; }
    .color-selector .tag-color.disabled {
      cursor: auto; }
    .color-selector .tag-color.empty-color {
      background: #f5f5f5;
      border: 1px solid #e4e3e3;
      position: relative; }
      .color-selector .tag-color.empty-color:after {
        content: "";
        width: 2px;
        height: 48px;
        background: #ff8282;
        transform: rotate(-45deg);
        position: absolute;
        top: 0;
        left: 0;
        transform-origin: top; }
      .color-selector .tag-color.empty-color:before {
        content: "";
        width: 2px;
        height: 48px;
        background: #ff8282;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 0;
        transform-origin: top; }

.color-selector-dropdown {
  background: #050505;
  left: 0;
  padding: 1rem;
  position: absolute;
  top: 2.25rem;
  width: 332px;
  z-index: 99; }

.color-selector-dropdown-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 0; }
  .color-selector-dropdown-list .color-selector-option {
    border-radius: 2px;
    cursor: pointer;
    height: 2.25rem;
    width: 2.25rem;
    min-width: 2.25rem;
    margin: 0 .5rem .5rem 0; }
    .color-selector-dropdown-list .color-selector-option:nth-child(7n) {
      margin-right: 0; }
  .color-selector-dropdown-list .empty-color {
    border-radius: 2px;
    cursor: pointer;
    height: 2.25rem;
    width: 2.25rem;
    min-width: 2.25rem;
    margin: 0 .5rem .5rem 0;
    background: #f5f5f5;
    border: 1px solid #e4e3e3;
    position: relative; }
    .color-selector-dropdown-list .empty-color:nth-child(7n) {
      margin-right: 0; }
    .color-selector-dropdown-list .empty-color:after {
      content: "";
      width: 2px;
      height: 48px;
      background: #ff8282;
      transform: rotate(-45deg);
      position: absolute;
      top: 0;
      left: 0;
      transform-origin: top; }
    .color-selector-dropdown-list .empty-color:before {
      content: "";
      width: 2px;
      height: 48px;
      background: #ff8282;
      transform: rotate(45deg);
      position: absolute;
      top: 0;
      right: 0;
      transform-origin: top; }

.custom-color-selector {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }
  .custom-color-selector .custom-color-input {
    margin: 0;
    width: 100%; }
  .custom-color-selector .display-custom-color-wrapper {
    background: #f5f5f5;
    margin-right: .5rem; }
  .custom-color-selector .display-custom-color {
    border-radius: 2px;
    cursor: pointer;
    height: 2.25rem;
    width: 2.25rem;
    min-width: 2.25rem;
    margin: 0 .5rem .5rem 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0; }
    .custom-color-selector .display-custom-color:nth-child(7n) {
      margin-right: 0; }
    .custom-color-selector .display-custom-color.empty-color {
      background: #f5f5f5;
      border: 1px solid #e4e3e3;
      position: relative;
      cursor: default; }
      .custom-color-selector .display-custom-color.empty-color:after {
        content: "";
        width: 2px;
        height: 48px;
        background: #ff8282;
        transform: rotate(-45deg);
        position: absolute;
        top: 0;
        left: 0;
        transform-origin: top; }
      .custom-color-selector .display-custom-color.empty-color:before {
        content: "";
        width: 2px;
        height: 48px;
        background: #ff8282;
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 0;
        transform-origin: top; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.detail-header-container {
  background: #f5f5f5;
  -ms-flex: 1;
  flex: 1;
  padding: 1rem;
  position: relative; }
  .detail-header-container:hover .detail-edit {
    opacity: 1;
    display: inline-block; }
  .detail-header-container.blocked {
    background: #f00;
    color: #fff;
    transition: all .2s linear; }
    .detail-header-container.blocked a,
    .detail-header-container.blocked .detail-number,
    .detail-header-container.blocked .detail-subject {
      color: #fff; }
    .detail-header-container.blocked svg {
      fill: #fff; }
  .detail-header-container .item-generated-us,
  .detail-header-container .item-origin-issue,
  .detail-header-container .task-belongs-to,
  .detail-header-container .belong-to-epics-wrapper,
  .detail-header-container .block-desc-container,
  .detail-header-container .issue-external-reference {
    font-size: .9rem;
    margin-top: .5rem; }
  .detail-header-container .item-generated-us a,
  .detail-header-container .task-belongs-to a,
  .detail-header-container .item-origin-issue a,
  .detail-header-container .issue-external-reference a {
    cursor: pointer;
    padding: 0 .2rem; }
  .detail-header-container .item-generated-us .item-ref,
  .detail-header-container .task-belongs-to .item-ref,
  .detail-header-container .item-origin-issue .item-ref,
  .detail-header-container .issue-external-reference .item-ref {
    padding: 0 .2rem; }

.detail-title-wrapper {
  font-size: 1.6rem;
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  -ms-flex-line-pack: center;
  align-content: center;
  display: -ms-flexbox;
  display: flex;
  max-width: 95%;
  position: relative;
  transition: all .2s linear; }
  .detail-title-wrapper.blocked {
    background: #f00;
    transition: all .2s linear; }
  .detail-title-wrapper .detail-title-text {
    line-height: normal;
    margin: 0; }
  .detail-title-wrapper .detail-number {
    color: #767676;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5rem; }
  .detail-title-wrapper .detail-subject {
    color: #555;
    -ms-flex-positive: 1;
    flex-grow: 1; }
  .detail-title-wrapper .detail-edit {
    cursor: pointer;
    margin-left: .75rem;
    opacity: 0;
    transition: opacity .2s; }
    .detail-title-wrapper .detail-edit svg {
      width: 1.25rem;
      height: 1.25rem; }

.edit-title-wrapper {
  font-size: 1.6rem;
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1; }
  .edit-title-wrapper .edit-title-input {
    background: #fff;
    -ms-flex: 1;
    flex: 1; }
  .edit-title-wrapper .edit-title-button {
    background: none;
    display: inline;
    margin-left: 1rem;
    transition: fill .2s; }
    .edit-title-wrapper .edit-title-button:hover {
      fill: #5b8200; }

.block-desc-container .block-description-title {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  margin-right: .5rem; }

.issue-nav {
  position: absolute;
  right: 1rem;
  top: 1rem; }
  .issue-nav a {
    display: inline-block; }
  .issue-nav svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

tg-filter {
  background-color: #f5f5f5;
  box-shadow: 1px 1px 5px rgbag(#5b8200, 0.2);
  display: block;
  left: 0;
  min-height: 100%;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  width: 260px;
  z-index: 1; }
  tg-filter .filters-applied {
    padding: 0 1rem 1rem; }
  tg-filter h1,
  tg-filter form {
    padding: 0 1rem; }
  tg-filter input {
    background: #444;
    color: #fff; }
    tg-filter input:-ms-input-placeholder {
      color: #767676; }
    tg-filter input::placeholder {
      color: #767676; }
  tg-filter .search-action {
    position: absolute;
    right: .7rem;
    top: .7rem; }
  tg-filter.ng-hide-add {
    transform: translateX(0);
    transition-duration: .5s; }
  tg-filter.ng-hide-add-active {
    transform: translateX(-260px); }
  tg-filter.ng-hide-remove {
    transform: translateX(-260px);
    transition-duration: .5s; }
  tg-filter.ng-hide-remove-active {
    transform: translateX(0); }

.filter-list {
  overflow-y: auto;
  padding: 1rem; }

.filters-step-cat {
  margin-top: 2rem; }

.filters-cats ul {
  margin-bottom: 0; }

.filters-cats li {
  border-bottom: 1px solid #767676;
  text-transform: uppercase;
  margin-right: 5%; }
  .filters-cats li.selected {
    border-bottom: 0; }

.filters-cats .custom-filters .title {
  color: #5b8200; }

.filters-cats .filters-cat-single {
  -ms-flex-align: center;
  align-items: center;
  color: #444;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: .5rem .5rem .5rem 1.5rem;
  transition: color .2s ease-in; }
  .filters-cats .filters-cat-single:hover, .filters-cats .filters-cat-single.selected {
    background-color: #b2afaf;
    color: #444;
    transition: background-color .2s ease-in; }
    .filters-cats .filters-cat-single:hover .icon, .filters-cats .filters-cat-single.selected .icon {
      opacity: 1;
      transition: opacity .2s ease-in; }

.filters-cats .icon-arrow-down {
  fill: currentColor;
  float: right;
  height: .9rem;
  opacity: 0;
  transition: opacity .2s ease-in;
  width: .9rem; }

.single-filter {
  font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
  -ms-flex-align: center;
  align-items: center;
  background: #cbc9c9;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: .5rem;
  opacity: .5;
  padding-right: .5rem;
  position: relative; }
  .single-filter::after {
    clear: both;
    content: "";
    display: table; }
  .single-filter:hover {
    color: #444;
    opacity: 1;
    transition: opacity .2s linear; }
  .single-filter.selected, .single-filter.active {
    color: #444;
    opacity: 1;
    transition: opacity .2s linear; }
  .single-filter .name,
  .single-filter .number {
    padding: 8px 10px; }
  .single-filter .name {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    display: block;
    width: 100%; }
  .single-filter .number {
    background: #b2afaf;
    position: absolute;
    right: 0;
    top: 0; }
  .single-filter .remove-filter {
    display: block; }
    .single-filter .remove-filter svg {
      fill: #555;
      transition: fill .2s linear; }
    .single-filter .remove-filter:hover svg {
      fill: #f00; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.live-announcement {
  -ms-flex-line-pack: center;
  align-content: center;
  background: #107a8a;
  display: -ms-flexbox;
  display: flex;
  height: 0;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: width 0.5s, height 0.5s;
  transition-delay: 0.5s;
  width: 0;
  z-index: 99; }
  .live-announcement .live-announcement-inner {
    opacity: 0;
    transition: opacity 0.5s;
    width: 100%; }
  .live-announcement.visible {
    height: 146px;
    pointer-events: auto;
    transition-delay: 0s;
    width: 100%; }
    .live-announcement.visible .live-announcement-inner {
      opacity: 1;
      transition: opacity 0.5s 0.5s; }

.live-announcement-inner {
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px; }
  .live-announcement-inner .announcement-decoration {
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-right: 1rem; }
  .live-announcement-inner .text {
    padding: 1.25rem 3rem 1.25rem 2rem;
    position: relative;
    width: 100%; }
  .live-announcement-inner .title {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    color: #0b525c;
    margin-bottom: .5rem; }
  .live-announcement-inner .warning {
    color: #0b525c; }
    .live-announcement-inner .warning a {
      font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
      color: #0b525c; }
  .live-announcement-inner .close {
    display: block;
    position: absolute;
    right: 0;
    top: 1rem; }
    .live-announcement-inner .close svg {
      width: 2rem;
      height: 2rem;
      fill: #138ea1;
      pointer-events: none;
      transition: fill .2s; }
      .live-announcement-inner .close svg:hover {
        fill: #0b525c; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.add-tag-input {
  -ms-flex-align: start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 250px; }
  .add-tag-input input {
    border-color: #767676;
    padding: 6px;
    width: 14rem; }
  .add-tag-input .save {
    cursor: pointer;
    display: inline-block;
    fill: #444;
    margin: .5rem 0 0 .5rem;
    transition: .2s linear; }
    .add-tag-input .save:hover {
      fill: #5b8200; }
  .add-tag-input .tags-dropdown {
    font-size: .9rem;
    background: #fff;
    border: 1px solid #767676;
    border-top: 0;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    left: 0;
    max-height: 20vh;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 2.25rem;
    width: 85%;
    z-index: 99; }
  .add-tag-input .tags-dropdown-option {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem; }
  .add-tag-input .tags-dropdown-color {
    height: 1rem;
    width: 1rem; }
  .add-tag-input li:hover, .add-tag-input li.selected {
    background: #f4fdda;
    cursor: pointer;
    transition: .2s;
    transition-delay: .1s; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.tags-block {
  -ms-flex-line-pack: center;
  align-content: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.add-tag-button {
  color: #767676;
  cursor: pointer;
  display: inline-block; }
  .add-tag-button:hover {
    color: #9dce0a; }
  .add-tag-button .icon-add {
    width: 0.9rem;
    height: 0.9rem;
    fill: currentColor;
    margin: .5rem .25rem 0 0; }
  .add-tag-button .add-tag-text {
    font-size: .9rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.tag {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  background: #f5f5f5;
  border-left: 5px solid;
  border-radius: 0 5px 5px 0;
  color: #444;
  display: inline-block;
  margin: 0 .5rem .5rem 0;
  padding: .5rem;
  text-align: center; }
  .tag .icon-close {
    width: 0.7rem;
    height: 0.7rem;
    cursor: pointer;
    fill: #ff8282;
    margin-left: .25rem; }
  .tag .loading-spinner {
    height: 1rem;
    width: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.tribe-linked {
  margin-left: auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99; }
  .tribe-linked .tribe-linked-inner {
    padding: .5rem;
    transition: .2s; }
    .tribe-linked .tribe-linked-inner:hover {
      background: #fff;
      cursor: pointer; }
    .tribe-linked .tribe-linked-inner .title,
    .tribe-linked .tribe-linked-inner .gig-title,
    .tribe-linked .tribe-linked-inner .delete-link,
    .tribe-linked .tribe-linked-inner .synchronize-link,
    .tribe-linked .tribe-linked-inner .close {
      display: none;
      opacity: 0; }
  .tribe-linked .tribe-logo {
    height: 2rem;
    width: 2rem; }
  .tribe-linked.is-active {
    animation-duration: 1s;
    animation-name: slideTribeInner;
    background: #fff;
    box-shadow: 1px 1px 5px rgba(68, 68, 68, 0.2);
    overflow: hidden; }
    .tribe-linked.is-active .tribe-linked-inner {
      height: 100%;
      min-width: 300px; }
      .tribe-linked.is-active .tribe-linked-inner .title,
      .tribe-linked.is-active .tribe-linked-inner .gig-title,
      .tribe-linked.is-active .tribe-linked-inner .delete-link,
      .tribe-linked.is-active .tribe-linked-inner .synchronize-link,
      .tribe-linked.is-active .tribe-linked-inner .close {
        animation-duration: 1.25s;
        animation-name: fadeInFromNone;
        display: block;
        opacity: 1; }
    .tribe-linked.is-active .tribe-linked-header {
      -ms-flex-align: center;
      align-items: center;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 1rem; }
    .tribe-linked.is-active .tribe-logo {
      margin-right: .5rem;
      vertical-align: text-bottom; }
    .tribe-linked.is-active svg {
      width: 1rem;
      height: 1rem;
      fill: #ff8282;
      transition: all .2s; }
      .tribe-linked.is-active svg:hover {
        fill: #f00; }
    .tribe-linked.is-active .title {
      margin-bottom: 0; }
    .tribe-linked.is-active .gig-title {
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      color: #107a8a;
      margin-bottom: .5rem; }
    .tribe-linked.is-active .delete-link {
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      font-size: .9rem;
      color: #5b8200;
      display: block;
      margin-bottom: 1rem; }
    .tribe-linked.is-active .synchronize-link {
      display: block;
      padding: .5rem; }
    .tribe-linked.is-active .close {
      -ms-flex-item-align: start;
      align-self: flex-start;
      margin-left: 1rem; }

@keyframes slideTribeInner {
  0% {
    max-height: 60px;
    width: 100px; }
  20% {
    max-height: 60px;
    width: 300px; }
  100% {
    max-height: 225px; } }

@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  80% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.discover-header {
  background: url("../images/discover.png") repeat-x bottom left #e4e3e3;
  margin-bottom: 2.5rem;
  padding: 1rem 1rem 2rem;
  text-align: center; }
  .discover-header .discover-header-inner {
    margin: 1rem auto;
    max-width: 1200px;
    min-width: 768px;
    margin: 0 auto; }
    @media (max-width: 767px) {
      .discover-header .discover-header-inner {
        width: 90%;
        min-width: 0; } }
  .discover-header .title {
    font-size: 3rem;
    margin-bottom: 0; }
  .discover-header .project-number {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    color: #5b8200; }
  .discover-header form {
    margin: 0 30%;
    position: relative; }
    @media (max-width: 767px) {
      .discover-header form {
        margin: 0 .5rem; } }
  .discover-header input[type="text"] {
    background: #fff;
    border: 0;
    padding: 1rem;
    width: 100%; }
    .discover-header input[type="text"]:focus {
      outline-color: #9dce0a; }
    .discover-header input[type="text"]:-webkit-autofill {
      background: rgba(47, 50, 68, 0.5); }
  .discover-header .search-button {
    width: 1.5rem;
    height: 1.5rem;
    fill: #767676;
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: fill .2s; }
    .discover-header .search-button:hover {
      cursor: pointer;
      fill: #5b8200; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.discover-results-header .discover-results-header-inner {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.discover-results-header svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #767676;
  margin-right: .25rem; }

.discover-results-header .title {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase; }

.discover-results-header h2 {
  display: inline-block; }

.filter-discover-search .discover-search-filter {
  margin-right: 1rem; }
  .filter-discover-search .discover-search-filter.active {
    color: #5b8200; }
    .filter-discover-search .discover-search-filter.active svg {
      fill: #5b8200; }

.filter-discover-search svg {
  width: 0.8rem;
  height: 0.8rem; }

.discover-search-subfilter {
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative; }
  .discover-search-subfilter:after, .discover-search-subfilter:before {
    bottom: 100%;
    left: 88%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .discover-search-subfilter:after {
    border-color: rgba(245, 245, 245, 0);
    border-bottom-color: #f5f5f5;
    border-width: 8px;
    margin-left: -8px; }
  .discover-search-subfilter:before {
    border-color: rgba(245, 245, 245, 0);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-width: calc(8px + 1px);
    margin-left: calc(-10px + 1px); }
  .discover-search-subfilter.most-liked-subfilter::after, .discover-search-subfilter.most-liked-subfilter::before {
    left: 85%; }
  .discover-search-subfilter.most-active-subfilter::after, .discover-search-subfilter.most-active-subfilter::before {
    left: 95%; }
  .discover-search-subfilter.ng-enter {
    animation: dropdownFade .2s; }
  .discover-search-subfilter .results {
    font-size: .9rem;
    color: #ff8282;
    display: block;
    padding: .5rem 1rem;
    transition: all .2s; }
    .discover-search-subfilter .results:hover {
      color: #f00; }
  .discover-search-subfilter .filter-list {
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-left: auto; }
    .discover-search-subfilter .filter-list a {
      display: block;
      padding: .5rem 1rem;
      transition: all .2s; }
      .discover-search-subfilter .filter-list a:hover {
        background: #767676;
        color: currentColor; }
      .discover-search-subfilter .filter-list a.active {
        background: #9dce0a;
        color: #fff; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.featured-projects {
  margin: 1rem auto;
  max-width: 1200px;
  min-width: 768px; }
  @media (max-width: 767px) {
    .featured-projects {
      width: 90%;
      min-width: 0; } }
  .featured-projects .title {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    color: #444;
    text-align: center; }

.featured-projects-inner {
  -ms-flex-align: stretch;
  align-items: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.featured-project {
  background: #fff;
  border: 1px solid #fff;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 23%;
  flex-basis: 23%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 23%; }
  .featured-project .tags-container {
    display: -ms-flexbox;
    display: flex;
    height: .3rem; }
  .featured-project .project-tag {
    -ms-flex: 1;
    flex: 1; }
  .featured-project .project-card-inner {
    padding: 1.15rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 5px; }
  .featured-project .project-card-description {
    font-size: 12px;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #696768;
    margin: 17px 0 28px; }
  .featured-project .project-card-statistics {
    display: -ms-flexbox;
    display: flex;
    margin-top: auto; }
    .featured-project .project-card-statistics svg {
      width: 0.75rem;
      height: 0.75rem;
      fill: currentColor;
      margin-right: .25rem; }
  .featured-project .statistic {
    font-size: .9rem;
    color: #c91c00;
    display: inline-block;
    margin-right: .5rem; }
    .featured-project .statistic.active {
      color: #5b8200; }
      .featured-project .statistic.active svg {
        fill: currentColor; }
  .featured-project .project-card-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 0;
    flex-grow: 0; }
  .featured-project .project-card-logo {
    display: inline-block;
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: .5rem; }
    .featured-project .project-card-logo img {
      width: 100%;
      border-radius: 50%;
      padding: 5px; }
  .featured-project .project-card-name {
    line-height: 3em; }
    .featured-project .project-card-name a {
      font-size: 1.6rem;
      color: #000; }
      .featured-project .project-card-name a:hover {
        color: #b64234; }
  @media (max-width: 767px) {
    .featured-project {
      -ms-flex-preferred-size: 45%;
      flex-basis: 45%; } }
  @media (max-width: 480px) {
    .featured-project {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%; } }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.highlighted {
  margin: 1rem auto;
  max-width: 1200px;
  min-width: 768px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 4rem; }
  @media (max-width: 767px) {
    .highlighted {
      width: 90%;
      min-width: 0; } }
  @media (max-width: 767px) {
    .highlighted {
      -ms-flex-direction: column;
      flex-direction: column; }
      .highlighted tg-most-active {
        margin-top: 4rem; } }
  .highlighted tg-most-liked,
  .highlighted tg-most-active {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1; }
  .highlighted tg-most-liked {
    margin-right: 8%; }
    @media (max-width: 767px) {
      .highlighted tg-most-liked {
        margin-right: 0; } }
  .highlighted .most-active,
  .highlighted .most-liked {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column; }
  .highlighted .header {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem; }
    .highlighted .header svg {
      width: 0.8rem;
      height: 0.8rem;
      fill: #767676;
      margin-left: .5rem; }
  .highlighted .title-wrapper {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
    .highlighted .title-wrapper svg {
      width: 1.25rem;
      height: 1.25rem;
      fill: #767676;
      margin-right: .5rem; }
  .highlighted .title {
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    color: #444;
    display: inline-block;
    margin: 0; }
  .highlighted .highlighted-projects-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .highlighted .loading-container {
    margin-top: calc(50% - 1rem); }
  .highlighted .loading-spinner {
    display: block;
    margin: 2rem auto;
    max-height: 3rem;
    max-width: 3rem; }
  .highlighted .view-more-projects {
    margin-top: auto;
    width: 100%; }
  .highlighted .empty-highlighted-project {
    border: 2px dashed #e4e3e3;
    padding: 2rem;
    text-align: center; }
    .highlighted .empty-highlighted-project svg {
      width: 2rem;
      height: 2rem;
      display: block;
      fill: #767676;
      margin: 1rem auto; }
    .highlighted .empty-highlighted-project span {
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      color: #555;
      display: block; }

.filter-highlighted {
  position: relative; }
  .filter-highlighted .current-filter {
    padding: 1rem; }
    .filter-highlighted .current-filter span {
      margin-left: .2rem;
      position: relative;
      top: .2rem; }
    .filter-highlighted .current-filter:hover svg {
      fill: currentColor; }
  .filter-highlighted .filter-list {
    background: #000;
    position: absolute;
    right: 0;
    top: 1.5rem; }
    .filter-highlighted .filter-list.ng-enter {
      animation: dropdownFade .2s ease-in; }
    .filter-highlighted .filter-list.ng-leave {
      animation: dropdownFade .2s ease-in;
      animation-direction: reverse; }
  .filter-highlighted li {
    font-size: .9rem;
    color: #fff;
    cursor: pointer;
    min-width: 8rem;
    padding: .25rem .5rem; }
    .filter-highlighted li:hover {
      background: rgba(157, 206, 10, 0.4); }

.highlighted-project {
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 9rem;
  flex-basis: 9rem;
  min-height: 9rem;
  padding: 1.5rem 0; }
  .highlighted-project:nth-last-child(-n+2) {
    border-bottom: 0; }
  .highlighted-project .project-logo {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    height: auto;
    margin-right: 1rem;
    width: 3rem; }
    .highlighted-project .project-logo img {
      width: 100%; }
  .highlighted-project .project-data-container {
    -ms-flex: 1;
    flex: 1; }
  .highlighted-project .single-project-header {
    -ms-flex-line-pack: center;
    align-content: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .highlighted-project .project-title {
    font-size: 1.6rem;
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    display: inline-block;
    margin-bottom: .5rem; }
    .highlighted-project .project-title a {
      color: #5b8200; }
      .highlighted-project .project-title a:hover {
        color: #9dce0a; }
  .highlighted-project .project-description {
    font-size: .9rem;
    color: #555;
    margin-bottom: 0; }
  .highlighted-project .project-statistics {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .highlighted-project .project-statistics svg {
      width: 0.75rem;
      height: 0.75rem;
      fill: #767676;
      margin-right: .25rem; }
  .highlighted-project .statistic {
    font-size: .9rem;
    color: #767676;
    display: inline-block;
    margin-right: .5rem; }
    .highlighted-project .statistic.active {
      color: #5b8200; }
      .highlighted-project .statistic.active svg {
        fill: #5b8200; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.discover-search .discover-header form {
  margin: 0 8rem;
  position: relative; }

.discover-search .discover-header .search-button {
  left: 1rem;
  right: auto; }

.discover-search .discover-header .searchbox input {
  padding-left: 3.5rem;
  padding-right: 23rem; }

.discover-search .searchbox-filters {
  position: absolute;
  right: 1rem;
  top: .7rem;
  width: auto; }
  .discover-search .searchbox-filters input {
    display: none; }
  .discover-search .searchbox-filters label {
    border-radius: 4px;
    color: #767676;
    cursor: pointer;
    display: inline-block;
    padding: .4rem .75rem;
    transition: all .2s;
    transition-delay: .2s; }
    .discover-search .searchbox-filters label.active {
      background: #9dce0a;
      color: #fff; }
    .discover-search .searchbox-filters label:hover {
      background: #e4e3e3;
      color: #555; }

.discover-results {
  margin: 1rem auto;
  max-width: 1200px;
  min-width: 768px; }
  @media (max-width: 767px) {
    .discover-results {
      width: 90%;
      min-width: 0; } }
  .discover-results .discover-results-inner .spin {
    margin-top: 4rem; }
  .discover-results .list-itemtype-project {
    border-bottom: 1px solid #767676;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem 0; }
    .discover-results .list-itemtype-project:last-child {
      border-bottom: 0; }
  .discover-results .list-itemtype-project-left {
    -ms-flex-align: start;
    align-items: flex-start;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
  .discover-results .list-itemtype-project-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1rem; }
  .discover-results .list-itemtype-project-data {
    -ms-flex: 1;
    flex: 1;
    vertical-align: middle; }
  .discover-results .project-statistics {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .discover-results .project-statistics svg {
      width: 0.7rem;
      height: 0.7rem;
      fill: #767676;
      margin-right: .2rem; }
  .discover-results .statistic {
    font-size: .9rem;
    color: #767676;
    display: inline-block;
    margin-right: .5rem; }
    .discover-results .statistic.active {
      color: #5b8200; }
      .discover-results .statistic.active svg {
        fill: #5b8200; }
  .discover-results .more-results {
    display: block;
    margin: 0 20rem;
    transition: inherit; }
  .discover-results div[tg-loading] img {
    display: block;
    margin: 0 auto; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.lightbox-create-epic {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 1; }
  .lightbox-create-epic .create-epic-container {
    max-width: 700px;
    width: 90%; }
  .lightbox-create-epic .subject-container {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
    .lightbox-create-epic .subject-container .subject {
      padding-left: 1rem;
      width: 100%; }
  .lightbox-create-epic .attachments {
    margin-bottom: 0; }
  .lightbox-create-epic .settings {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center; }
    .lightbox-create-epic .settings fieldset {
      margin-right: .5rem; }
      .lightbox-create-epic .settings fieldset:hover {
        color: #fff;
        transition: all .2s ease-in;
        transition-delay: .2s; }
      .lightbox-create-epic .settings fieldset:last-child {
        margin: 0; }
    .lightbox-create-epic .settings input {
      display: none; }
      .lightbox-create-epic .settings input:checked + label {
        background: #5b8200;
        border: 1px solid #5b8200;
        color: #fff; }
      .lightbox-create-epic .settings input:checked + .blocked {
        background: #f00;
        border: 1px solid #f00;
        color: #fff; }
  .lightbox-create-epic label {
    font-size: .9rem;
    background: #f5f5f5;
    border: 1px solid #767676;
    color: #767676;
    cursor: pointer;
    display: block;
    padding: .5rem 3rem;
    text-transform: none;
    transition: all .2s ease-in; }
    .lightbox-create-epic label:hover {
      background: #9dce0a;
      border: 1px solid #5b8200;
      color: #fff; }
    .lightbox-create-epic label.blocked:hover {
      background: #ff8282;
      border: 1px solid #f00; }
  .lightbox-create-epic .create-epic-button {
    display: block;
    width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.epic-row {
  font-size: .9rem;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e3e3;
  cursor: move;
  display: -ms-flexbox;
  display: flex;
  transition: background .2s; }
  .epic-row .project,
  .epic-row .assigned {
    padding: .5rem; }
  .epic-row .vote,
  .epic-row .status,
  .epic-row .sprint,
  .epic-row .name,
  .epic-row .progress {
    padding: 1rem .5rem; }
  .epic-row .vote {
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center; }
  .epic-row .assigned,
  .epic-row .project {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center; }
  .epic-row .status,
  .epic-row .sprint {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 150px;
    text-align: center; }
  .epic-row .name,
  .epic-row .progress {
    -ms-flex-preferred-size: 20vw;
    flex-basis: 20vw;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    max-width: 40vw; }
  .epic-row .progress {
    -ms-flex-negative: 3;
    flex-shrink: 3;
    margin-right: 1rem;
    position: relative; }
  .epic-row .sprint {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90%; }
  .epic-row:hover {
    background: rgba(157, 206, 10, 0.05); }
    .epic-row:hover .icon-drag {
      opacity: 1; }
  .epic-row.not-empty {
    cursor: pointer; }
  .epic-row.is-blocked {
    background: rgba(255, 130, 130, 0.5); }
  .epic-row.is-closed .name a {
    color: #9c9c9c;
    text-decoration: line-through; }
  .epic-row.unfold .name .icon {
    transform: rotate(0deg); }
  .epic-row .name .icon {
    transform: rotate(180deg);
    transition: all .2s; }
  .epic-row .icon-drag {
    width: 0.75rem;
    height: 0.75rem;
    cursor: move;
    fill: #e4e3e3;
    opacity: 0;
    transition: opacity .1s; }
  .epic-row .epic-pill {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .75rem;
    background: #444;
    border-radius: .25rem;
    color: #fff;
    margin: 0 .5rem;
    padding: .1rem .25rem; }
  .epic-row .status {
    cursor: pointer;
    position: relative; }
    .epic-row .status button {
      background: none; }
  .epic-row .icon-arrow-down {
    width: 0.7rem;
    height: 0.7rem;
    fill: #767676;
    margin-left: .1rem; }
  .epic-row .progress-bar,
  .epic-row .progress-status {
    height: 1.5rem;
    left: 0;
    position: absolute;
    top: .25rem; }
  .epic-row .progress-bar {
    background: #f5f5f5;
    max-width: 40vw;
    padding-right: 1rem;
    width: 100%; }
  .epic-row .progress-status {
    background: #9dce0a;
    width: 10vw; }
  .epic-row .vote {
    color: #555; }
    .epic-row .vote.is-voter {
      color: #9dce0a;
      fill: #9dce0a; }
  .epic-row .assigned img {
    width: 40px; }
  .epic-row .icon-upvote {
    width: 0.75rem;
    height: 0.75rem;
    fill: #555;
    margin-right: .25rem;
    vertical-align: middle; }
  .epic-row .is-unassigned {
    color: #767676; }
  .epic-row .epic-statuses {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    background: rgba(5, 5, 5, 0.9);
    border-bottom: 1px solid #444;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.1);
    color: #fff;
    left: 0;
    list-style-type: none;
    margin: 0;
    position: absolute;
    text-align: left;
    top: 2.5rem;
    width: 200px;
    z-index: 99; }
    .epic-row .epic-statuses:last-child {
      border: 0; }
    .epic-row .epic-statuses li {
      padding: .5rem; }
      .epic-row .epic-statuses li:hover {
        color: #9dce0a;
        transition: color .3s linear; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.empty-epics {
  text-align: center; }
  .empty-epics a {
    color: #5b8200;
    display: block;
    margin-bottom: 2rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.epics-table {
  margin-top: 2rem; }

.epics-table-header {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #767676;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
  position: relative; }
  .epics-table-header .project,
  .epics-table-header .assigned {
    padding: .5rem; }
  .epics-table-header .vote,
  .epics-table-header .status,
  .epics-table-header .sprint,
  .epics-table-header .name,
  .epics-table-header .progress {
    padding: 1rem .5rem; }
  .epics-table-header .vote {
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center; }
  .epics-table-header .assigned,
  .epics-table-header .project {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center; }
  .epics-table-header .status,
  .epics-table-header .sprint {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 150px;
    text-align: center; }
  .epics-table-header .name,
  .epics-table-header .progress {
    -ms-flex-preferred-size: 20vw;
    flex-basis: 20vw;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    max-width: 40vw; }
  .epics-table-header .progress {
    -ms-flex-negative: 3;
    flex-shrink: 3;
    margin-right: 1rem;
    position: relative; }
  .epics-table-header .sprint {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90%; }
  .epics-table-header .project,
  .epics-table-header .assigned {
    padding: 1rem .5rem; }

.epics-table-options-wrapper {
  bottom: 1rem;
  position: absolute;
  right: .5rem; }

.epics-table-option-button {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: .9rem;
  background: none; }
  .epics-table-option-button .icon {
    width: 0.7rem;
    height: 0.7rem; }

.epics-table-dropdown {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.1);
  padding: .5rem;
  position: absolute;
  right: 0;
  top: 1.3rem;
  width: 250px;
  z-index: 99; }
  .epics-table-dropdown.ng-hide-remove {
    animation: dropdownFade .2s; }
  .epics-table-dropdown.ng-hide-add {
    animation: dropdownFade .2s reverse; }
  .epics-table-dropdown .fieldset {
    font-size: .9rem;
    border-bottom: 1px solid #e4e3e3;
    color: #767676;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 0; }
    .epics-table-dropdown .fieldset:last-child {
      border: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.story-row {
  font-size: .9rem;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding-left: 12px;
  transition: background .2s; }
  .story-row .project,
  .story-row .assigned {
    padding: .5rem; }
  .story-row .vote,
  .story-row .status,
  .story-row .sprint,
  .story-row .name,
  .story-row .progress {
    padding: 1rem .5rem; }
  .story-row .vote {
    -ms-flex-preferred-size: 60px;
    flex-basis: 60px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center; }
  .story-row .assigned,
  .story-row .project {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center; }
  .story-row .status,
  .story-row .sprint {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 150px;
    text-align: center; }
  .story-row .name,
  .story-row .progress {
    -ms-flex-preferred-size: 20vw;
    flex-basis: 20vw;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    max-width: 40vw; }
  .story-row .progress {
    -ms-flex-negative: 3;
    flex-shrink: 3;
    margin-right: 1rem;
    position: relative; }
  .story-row .sprint {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90%; }
  .story-row:hover {
    background: rgba(157, 206, 10, 0.05); }
  .story-row.is-blocked {
    background: rgba(255, 130, 130, 0.5); }
  .story-row.is-closed .name {
    color: #767676;
    text-decoration: line-through; }
  .story-row .name {
    -ms-flex-preferred-size: 20vw;
    flex-basis: 20vw;
    max-width: 40vw;
    padding-left: 40px; }
    .story-row .name a {
      cursor: pointer; }
  .story-row .progress-bar,
  .story-row .progress-status {
    height: 1.5rem;
    left: 0;
    position: absolute;
    top: .25rem; }
  .story-row .progress-bar {
    background: #f5f5f5;
    max-width: 40vw;
    width: 100%; }
  .story-row .progress-status {
    background: #9dce0a;
    width: 10vw; }
  .story-row .vote {
    color: #555; }
    .story-row .vote.is-voter {
      color: #9dce0a;
      fill: #9dce0a; }
  .story-row .project {
    cursor: pointer; }
  .story-row .project img,
  .story-row .assigned img {
    width: 40px; }
  .story-row .icon-upvote {
    width: 0.75rem;
    height: 0.75rem;
    fill: #555;
    margin-right: .25rem;
    vertical-align: middle; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.lightbox-create-related-user-stories .lightbox-create-related-user-stories-wrapper {
  max-width: 600px;
  width: 90%; }

.lightbox-create-related-user-stories .related-with-selector {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem; }
  .lightbox-create-related-user-stories .related-with-selector input {
    display: none; }
    .lightbox-create-related-user-stories .related-with-selector input:checked + label {
      background: #9dce0a;
      color: #fff;
      transition: background .2s ease-in; }
    .lightbox-create-related-user-stories .related-with-selector input:checked + label:hover {
      background: #9dce0a; }
    .lightbox-create-related-user-stories .related-with-selector input + label {
      background: rgba(228, 227, 227, 0.7);
      cursor: pointer;
      display: block;
      padding: 2rem 1rem;
      text-align: center;
      text-transform: uppercase;
      transition: background .2s ease-in; }
    .lightbox-create-related-user-stories .related-with-selector input + label:hover {
      background: rgba(157, 206, 10, 0.3);
      transition: background .2s ease-in; }
  .lightbox-create-related-user-stories .related-with-selector .related-with-selector-single {
    -ms-flex: 1;
    flex: 1; }
    .lightbox-create-related-user-stories .related-with-selector .related-with-selector-single:first-child {
      margin-right: .5rem; }

.lightbox-create-related-user-stories fieldset label {
  display: inline-block;
  margin-bottom: .5rem; }

.lightbox-create-related-user-stories .new-user-story-title {
  -ms-flex-align: end;
  align-items: flex-end;
  display: -ms-flexbox;
  display: flex; }

.lightbox-create-related-user-stories .existing-user-story-form,
.lightbox-create-related-user-stories .new-user-story-form {
  margin-bottom: 1rem; }

.lightbox-create-related-user-stories .new-user-story-options {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto; }
  .lightbox-create-related-user-stories .new-user-story-options input {
    display: none; }
    .lightbox-create-related-user-stories .new-user-story-options input:checked + label {
      background: #9dce0a;
      color: #fff;
      fill: #fff;
      transition: background .2s ease-in; }
    .lightbox-create-related-user-stories .new-user-story-options input + label {
      background: #f5f5f5;
      color: #444;
      cursor: pointer;
      display: block;
      padding: .5rem;
      transition: background .2s ease-in; }
    .lightbox-create-related-user-stories .new-user-story-options input + label:hover {
      background: #9dce0a;
      color: #fff;
      fill: #fff; }

.lightbox-create-related-user-stories button {
  width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.related-userstories {
  margin-bottom: 2rem;
  position: relative; }

.related-userstories-header {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f5f5f5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 36px; }
  .related-userstories-header .related-userstories-title {
    font-size: 1rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    margin-left: 1rem; }
  .related-userstories-header .add-button {
    background: #444;
    border: 0;
    display: inline-block;
    padding: .5rem;
    transition: background .25s; }
    .related-userstories-header .add-button:hover, .related-userstories-header .add-button.is-active {
      background: #9dce0a; }
    .related-userstories-header .add-button svg {
      fill: #fff;
      height: 1.25rem;
      margin-bottom: -.2rem;
      width: 1.25rem; }

.related-userstories-body {
  width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

tg-related-userstory-row {
  font-size: .9rem;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding: .5rem 0 .5rem .5rem; }
  tg-related-userstory-row.sortable {
    cursor: move; }
    tg-related-userstory-row.sortable:hover {
      background: rgba(157, 206, 10, 0.05); }
      tg-related-userstory-row.sortable:hover .userstory-settings {
        opacity: 1;
        transition: all .2s ease-in; }
      tg-related-userstory-row.sortable:hover .icon-drag {
        opacity: 1; }
    tg-related-userstory-row.sortable .icon-drag {
      width: 0.75rem;
      height: 0.75rem;
      cursor: move;
      fill: #e4e3e3;
      opacity: 0;
      transition: opacity .1s; }
  tg-related-userstory-row .status {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    width: 125px; }
  tg-related-userstory-row .assigned-to-column {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 150px; }
    tg-related-userstory-row .assigned-to-column img {
      -ms-flex-preferred-size: 35px;
      flex-basis: 35px;
      height: 35px;
      width: 35px; }
  tg-related-userstory-row .project {
    cursor: pointer;
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px; }
    tg-related-userstory-row .project img {
      width: 40px; }
  tg-related-userstory-row .userstory-name {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    margin-right: 1rem; }
    tg-related-userstory-row .userstory-name a {
      cursor: pointer; }
    tg-related-userstory-row .userstory-name span {
      display: inline-block;
      margin-left: .25rem; }
  tg-related-userstory-row .closed {
    border-left: 10px solid #e4e3e3;
    color: #e4e3e3; }
    tg-related-userstory-row .closed a,
    tg-related-userstory-row .closed svg {
      fill: #e4e3e3; }
    tg-related-userstory-row .closed .userstory-name a {
      color: #e4e3e3;
      text-decoration: line-through; }
  tg-related-userstory-row .blocked {
    background: rgba(255, 130, 130, 0.2);
    border-left: 10px solid #ff8282; }
  tg-related-userstory-row .userstory-settings {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    opacity: 0;
    width: 60px; }
    tg-related-userstory-row .userstory-settings svg {
      width: 1.1rem;
      height: 1.1rem;
      fill: #767676;
      margin-right: .5rem;
      transition: fill .2s ease-in; }
      tg-related-userstory-row .userstory-settings svg:hover {
        fill: #555; }
    tg-related-userstory-row .userstory-settings a:hover {
      cursor: pointer; }
  tg-related-userstory-row .delete-userstory:hover .icon-trash {
    fill: #ff8282; }
  tg-related-userstory-row .avatar {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
    tg-related-userstory-row .avatar img {
      -ms-flex-preferred-size: 35px;
      flex-basis: 35px;
      height: 35px;
      width: 35px; }
    tg-related-userstory-row .avatar figcaption {
      margin-left: .5rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.external-app-wrapper {
  margin: 2rem auto;
  text-align: center;
  width: 480px; }
  .external-app-wrapper .logo {
    height: 4rem;
    margin: 0 auto;
    width: 4rem; }
  .external-app-wrapper svg {
    width: 4rem;
    height: 4rem; }
  .external-app-wrapper h1 {
    margin-bottom: 0; }
  .external-app-wrapper .app-card,
  .external-app-wrapper .user-card {
    line-height: 1.4;
    margin-bottom: 2rem;
    text-align: left; }
    .external-app-wrapper .app-card .card-inner,
    .external-app-wrapper .user-card .card-inner {
      display: -ms-flexbox;
      display: flex; }
    .external-app-wrapper .app-card img,
    .external-app-wrapper .user-card img {
      width: 100%; }
    .external-app-wrapper .app-card h3,
    .external-app-wrapper .app-card p,
    .external-app-wrapper .user-card h3,
    .external-app-wrapper .user-card p {
      margin: 0; }
    .external-app-wrapper .app-card h3,
    .external-app-wrapper .user-card h3 {
      font-size: 1.2rem; }
    .external-app-wrapper .app-card a,
    .external-app-wrapper .user-card a {
      font-size: 1rem;
      display: block; }
  .external-app-wrapper .app-card .app-image {
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    margin-right: 1rem;
    max-width: 105px; }
  .external-app-wrapper .app-card .app-data {
    -ms-flex: 1;
    flex: 1; }
  .external-app-wrapper .app-card a {
    margin-bottom: .5rem; }
  .external-app-wrapper .app-card p {
    font-size: 1rem; }
  .external-app-wrapper .user-card {
    background: #fff8e4;
    border: 1px solid #f1e8cd;
    padding: 1rem; }
    .external-app-wrapper .user-card .card-inner {
      margin-bottom: .5rem; }
    .external-app-wrapper .user-card .user-image {
      -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
      margin-right: 1rem;
      max-width: 55px; }
  .external-app-wrapper .button-green {
    display: block; }
  .external-app-wrapper .cancel {
    font-size: .9rem;
    display: block;
    margin-top: .5rem;
    text-align: left; }

@media (max-width: 480px) {
  .external-app-wrapper {
    margin: 0;
    min-width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    width: 100%; } }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.comments {
  clear: both; }
  .comments .add-comment {
    margin-top: 1rem; }
    .comments .add-comment textarea {
      height: 3rem; }
    .comments .add-comment .preview-icon,
    .comments .add-comment .edit {
      position: absolute;
      right: 1rem; }
  .comments .save-comment-wrapper {
    -ms-flex-align: end;
    align-items: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
  .comments .save-comment {
    margin-top: 1rem;
    padding: .5rem 4rem; }

.comment {
  display: block; }
  .comment .comment-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem 0; }
    .comment .comment-wrapper:hover .comment-option {
      opacity: 1; }
  .comment .comment-main {
    width: 100%; }
  .comment .comment-avatar {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1.5rem;
    width: 60px; }
  .comment .comment-data {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 1rem; }
  .comment .comment-creator {
    color: #5b8200;
    margin-right: .5rem; }
  .comment .comment-date {
    font-size: .9rem;
    color: #767676; }
  .comment .comment-edited {
    font-size: .9rem;
    background: #e4e3e3;
    margin: 0 .5rem;
    padding: .25rem; }
    .comment .comment-edited .separator {
      margin: 0 .25rem; }
    .comment .comment-edited a {
      color: #5b8200;
      fill: #5b8200; }
    .comment .comment-edited svg {
      width: 0.75rem;
      height: 0.75rem;
      margin: 0 0 0 .25rem; }
  .comment .comment-options {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 1.5rem; }
    .comment .comment-options .comment-option {
      cursor: pointer;
      opacity: 0; }
    .comment .comment-options .icon-edit {
      fill: #767676;
      margin-right: .5rem; }
      .comment .comment-options .icon-edit:hover {
        fill: #555; }
    .comment .comment-options .icon-close {
      fill: #767676;
      margin-right: .5rem; }
      .comment .comment-options .icon-close:hover {
        fill: #f00; }
    .comment .comment-options .icon-trash {
      fill: #ff8282; }
      .comment .comment-options .icon-trash:hover {
        fill: #f00; }
  .comment .deleted-comment-wrapper {
    border-bottom: 1px solid #e4e3e3;
    padding: 1rem 0;
    width: 100%; }
  .comment .deleted-comment-main {
    font-size: .75rem;
    color: #767676;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
  .comment .toggle-deleted-comment {
    color: #5b8200;
    fill: #5b8200;
    margin: 0 1rem;
    transition: none; }
    .comment .toggle-deleted-comment .icon-arrow-down,
    .comment .toggle-deleted-comment .icon-arrow-up {
      width: 0.8rem;
      height: 0.8rem;
      margin-left: .25rem; }
  .comment .restore-comment {
    margin-left: auto;
    transition: all .2s; }
    .comment .restore-comment:hover {
      color: #5b8200;
      fill: #5b8200; }
    .comment .restore-comment .icon-reload {
      width: 0.8rem;
      height: 0.8rem;
      margin-right: .25rem; }
  .comment .deleted-comment-comment {
    margin-top: 1rem; }
  .comment .comment-editor textarea {
    height: 5rem;
    min-height: 5rem; }

.comment-text.wysiwyg {
  margin-bottom: 0;
  padding: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.lightbox-display-historic {
  display: none; }
  .lightbox-display-historic .history-container {
    max-width: 800px;
    width: 90%; }
  .lightbox-display-historic .history-wrapper {
    max-height: 600px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.entry {
  display: block; }
  .entry .entry-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem 0; }
  .entry .entry-avatar {
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1.5rem;
    width: 50px; }
  .entry .entry-main {
    -ms-flex: 1;
    flex: 1;
    max-width: calc(100% - 100px); }
  .entry .entry-data {
    -ms-flex-align: start;
    align-items: flex-start;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .5rem; }
  .entry .entry-creator {
    color: #5b8200;
    margin-right: .5rem; }
  .entry .entry-date {
    font-size: .9rem;
    color: #767676; }
  .entry .display-full-entry {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    fill: #5b8200;
    margin-left: auto;
    transform: rotate(0);
    transition: transform .2s; }
    .entry .display-full-entry.inactive {
      transform: rotate(180deg); }
  .entry .entry-text {
    margin-bottom: 0; }
    .entry .entry-text.ellipsed {
      max-height: 3rem;
      overflow: hidden; }
    .entry .entry-text.blurry {
      position: relative; }
      .entry .entry-text.blurry::after {
        background-image: linear-gradient(to top, #fff, transparent);
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.history-tabs .order-comments {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  margin-left: auto;
  transition: none; }

.history-tabs .icon-arrow-up,
.history-tabs .icon-arrow-down {
  width: 0.75rem;
  height: 0.75rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.activity-diff .key {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  background: #e4e3e3;
  margin-right: .5rem;
  padding: .25rem; }

.activity-diff .diff {
  line-height: 1.6; }

.activity-diff .icon-arrow-right {
  width: 0.75rem;
  height: 0.75rem;
  fill: #767676;
  margin: 0 .5rem; }

.activity-diff .diff-status-wrapper p {
  display: inline-block; }

.activity-diff .diff-status-wrapper ins {
  background: rgba(203, 246, 72, 0.3);
  text-decoration: underline; }

.activity-diff .diff-status-wrapper del {
  background: rgba(255, 130, 130, 0.3); }

.activity-diff .diff-color-wrapper {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }
  .activity-diff .diff-color-wrapper .diff {
    display: inline-block;
    height: 1.2rem;
    width: 1.2rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.activity {
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0; }
  .activity .activity-avatar {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1.5rem;
    width: 60px; }
  .activity .activity-data {
    margin-bottom: 1rem; }
  .activity .activity-creator {
    color: #5b8200;
    margin-right: .5rem; }
  .activity .activity-date {
    color: #767676; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.working-on,
.watching {
  margin-bottom: 2rem;
  padding: 0 25px; }
  .working-on .duty-single,
  .watching .duty-single {
    border-bottom: 1px solid #e4e3e3;
    cursor: pointer;
    transition: background .2s;
    transition-delay: .2s;
    padding: 8px 0; }
    .working-on .duty-single:hover,
    .watching .duty-single:hover {
      background: #f0f0f0; }
    .working-on .duty-single:last-child,
    .watching .duty-single:last-child {
      border: 0; }
    .working-on .duty-single > a,
    .watching .duty-single > a {
      -ms-flex-align: center;
      align-items: center;
      padding: 0;
      border-bottom: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
      flex-direction: row; }
      .working-on .duty-single > a.blocked,
      .watching .duty-single > a.blocked {
        background: rgba(255, 130, 130, 0.2);
        color: #f00; }
  .working-on .see-more,
  .watching .see-more {
    display: block;
    margin: 2rem 30%; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.home-wrapper {
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 767px) {
    .home-wrapper {
      -ms-flex-direction: column;
      flex-direction: column; } }
  @media (max-width: 480px) {
    .home-wrapper {
      -ms-flex-direction: column;
      flex-direction: column; } }
  .home-wrapper .duty-summary {
    -ms-flex: 1;
    flex: 1;
    margin-right: 2rem;
    padding-left: 72px;
    padding-top: 108px; }
  .home-wrapper .dashboard-left-con {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0; }
  .home-wrapper .dashboard-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row; }
    @media (max-width: 1280px) {
      .home-wrapper .dashboard-container {
        -ms-flex-direction: column;
        flex-direction: column; } }
    @media (max-width: 767px) {
      .home-wrapper .dashboard-container {
        -ms-flex-direction: column;
        flex-direction: column; } }
    @media (max-width: 480px) {
      .home-wrapper .dashboard-container {
        -ms-flex-direction: column;
        flex-direction: column; } }
  .home-wrapper .watching-container,
  .home-wrapper .working-on-container {
    background: #fff;
    border-radius: 5px;
    -ms-flex: 1;
    flex: 1;
    padding-left: 0;
    padding-right: 0; }
    .home-wrapper .watching-container header,
    .home-wrapper .working-on-container header {
      padding: 25px 25px 0; }
      .home-wrapper .watching-container header img,
      .home-wrapper .working-on-container header img {
        display: inline-block;
        margin-right: 12px;
        vertical-align: middle; }
      .home-wrapper .watching-container header h1,
      .home-wrapper .working-on-container header h1 {
        display: inline-block;
        margin: 0;
        padding: 0;
        vertical-align: middle; }
  .home-wrapper .working-on-container {
    margin-right: 42px; }
  .home-wrapper .project-list {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 72px;
    padding-top: 108px; }
  .home-wrapper .see-more-projects-btn {
    display: block; }
    .home-wrapper .see-more-projects-btn.button-gray {
      background: #b64234;
      font-family: 'poppins';
      font-size: 18px;
      font-weight: 300;
      height: 50px;
      line-height: 41px;
      margin-bottom: 20px;
      text-transform: capitalize; }
  .home-wrapper .title-bar {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    -ms-flex-line-pack: center;
    align-content: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.6rem;
    margin: 0 0 .5rem;
    padding: .5rem 1rem;
    text-transform: capitalize; }
  .home-wrapper .title-bar-breadcrum {
    background: #e7e7e7;
    display: block;
    height: 80px;
    line-height: 80px;
    padding: 0 122px;
    position: absolute;
    width: 100%; }
  .home-wrapper h1 .green {
    color: #000;
    font-size: 16px;
    vertical-align: top; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.home-project {
  background: #fff;
  border: 1px solid #fff;
  margin: 0;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all .2s;
  border-radius: 5px; }
  .home-project .tags-container {
    display: -ms-flexbox;
    display: flex;
    height: .3rem; }
  .home-project .project-tag {
    -ms-flex: 1;
    flex: 1; }
  .home-project .project-card-inner {
    padding: 1.15rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 5px; }
  .home-project .project-card-description {
    font-size: 12px;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    color: #696768;
    margin: 17px 0 28px; }
  .home-project .project-card-statistics {
    display: -ms-flexbox;
    display: flex;
    margin-top: auto; }
    .home-project .project-card-statistics svg {
      width: 0.75rem;
      height: 0.75rem;
      fill: currentColor;
      margin-right: .25rem; }
  .home-project .statistic {
    font-size: .9rem;
    color: #c91c00;
    display: inline-block;
    margin-right: .5rem; }
    .home-project .statistic.active {
      color: #5b8200; }
      .home-project .statistic.active svg {
        fill: currentColor; }
  .home-project .project-card-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 0;
    flex-grow: 0; }
  .home-project .project-card-logo {
    display: inline-block;
    -ms-flex-preferred-size: 50px;
    flex-basis: 50px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: .5rem; }
    .home-project .project-card-logo img {
      width: 100%;
      border-radius: 50%;
      padding: 5px; }
  .home-project .project-card-name {
    line-height: 3em; }
    .home-project .project-card-name a {
      font-size: 1.6rem;
      color: #000; }
      .home-project .project-card-name a:hover {
        color: #b64234; }
  .home-project:hover {
    box-shadow: 0 0 5px #e4e3e3; }
  .home-project.blocked-project {
    border: #e4e3e3; }
    .home-project.blocked-project:hover {
      border: #e4e3e3;
      box-shadow: none; }
    .home-project.blocked-project .tags-container,
    .home-project.blocked-project .project-card-logo,
    .home-project.blocked-project .project-card-name a,
    .home-project.blocked-project .project-card-description,
    .home-project.blocked-project .project-card-statistics {
      opacity: .3; }

.projects-empty {
  text-align: center; }
  .projects-empty svg {
    fill: #e4e3e3;
    height: 100px;
    margin: 1rem auto;
    text-align: center;
    width: 100%; }
  .projects-empty p {
    font-size: .9rem;
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif; }
  .projects-empty .create-project-button {
    display: block;
    margin-bottom: .25rem; }
  .projects-empty .import-project-button {
    display: block; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.working-on-empty,
.watching-empty {
  margin-bottom: 4rem;
  padding: 0 25px; }
  .working-on-empty p,
  .watching-empty p {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    margin: 2rem 2rem 1rem;
    text-align: center; }

.empty-ticket {
  display: -ms-flexbox;
  display: flex; }
  .empty-ticket:not(:last-child) {
    border-bottom: 1px solid #e4e3e3;
    padding: 1rem 0; }
  .empty-ticket:last-child {
    padding: 1rem 0 0; }
  .empty-ticket .avatar {
    background: #d7d6d6;
    -ms-flex-preferred-size: 48px;
    flex-basis: 48px;
    height: 48px;
    margin-right: 1rem;
    width: 48px;
    border-radius: 50%; }
  .empty-ticket .data {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
  .empty-ticket .line {
    background: #f5f5f5;
    height: 1rem;
    margin-bottom: 1rem;
    width: 8vw; }
    @media (max-width: 1280px) {
      .empty-ticket .line {
        width: 30vw; } }
    @media (max-width: 767px) {
      .empty-ticket .line {
        width: 30vw; } }
    @media (max-width: 480px) {
      .empty-ticket .line {
        width: 30vw; } }
    .empty-ticket .line:last-child {
      margin: 0;
      width: 18vw; }
      @media (max-width: 1280px) {
        .empty-ticket .line:last-child {
          width: 50vw; } }
      @media (max-width: 767px) {
        .empty-ticket .line:last-child {
          width: 50vw; } }
      @media (max-width: 480px) {
        .empty-ticket .line:last-child {
          width: 50vw; } }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.navbar {
  display: -ms-flexbox;
  display: flex;
  height: 78px;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative; }
  .navbar::after {
    background-size: 200%;
    bottom: 0;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1; }
  .navbar .searchbox {
    position: relative;
    width: 340px;
    margin-top: 0; }
    .navbar .searchbox input[type="text"] {
      border: none;
      padding: 14px 10px;
      border-radius: 5px;
      font-family: 'poppins';
      font-weight: 300;
      font-size: 12px; }
    .navbar .searchbox .search-button {
      position: absolute;
      right: 9px;
      top: 17px; }
    .navbar .searchbox .icon-search {
      max-width: 1rem;
      max-height: 1rem; }
  .navbar .nav-left,
  .navbar .nav-right {
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex; }
  .navbar .nav-left > a {
    color: #fff;
    padding: 0; }
    .navbar .nav-left > a.logo {
      background: rgba(0, 0, 0, 0.2);
      padding: .4rem .75rem; }
    .navbar .nav-left > a svg {
      height: 1.6rem;
      max-height: 1.6rem;
      max-width: 2rem;
      width: 1.6rem; }
    .navbar .nav-left > a path {
      fill: #fff; }
  .navbar .nav-right {
    margin-left: 0; }
    .navbar .nav-right a {
      color: #767676;
      padding: .5rem 2rem; }
  .navbar a {
    color: #fff;
    display: inline-block;
    transition: all .2s linear; }
    .navbar a svg {
      fill: #fff;
      transition: all .2s linear; }
    .navbar a:hover svg {
      fill: #fff; }
    .navbar a.user-avatar {
      min-width: 200px;
      padding: 0;
      padding-left: 2rem;
      text-align: right;
      margin-right: 7px;
      font-family: 'poppins';
      font-weight: 300; }
      .navbar a.user-avatar img {
        border-radius: 50%;
        padding: 4px; }
      .navbar a.user-avatar:after {
        border-style: solid;
        border-width: 0.20em 0.20em 0 0;
        content: '';
        display: inline-block;
        height: 0.45em;
        left: 15px;
        position: relative;
        top: 11px;
        transform: rotate(135deg);
        vertical-align: top;
        width: 0.45em;
        margin-right: 15px;
        border-color: #767676; }
      .navbar a.user-avatar span {
        padding-right: 1rem; }
  .navbar img {
    height: 2.5rem;
    margin-left: .5rem;
    vertical-align: middle; }
  .navbar .nav-left img {
    height: auto;
    width: 200px; }
  .navbar form {
    margin: auto; }
  .navbar svg {
    height: 1.2rem;
    max-height: 1.2rem;
    max-width: 1.2rem;
    width: 1.2rem; }
  .navbar .topnav-dropdown-wrapper {
    position: relative; }
    .navbar .topnav-dropdown-wrapper:hover .navbar-dropdown {
      animation: dropdownFade 0.2s cubic-bezier(0.09, 0, 0.99, 0.01) both;
      display: block; }
  .navbar .navbar-dropdown a {
    padding: .5rem .5rem;
    font-family: 'poppins';
    font-weight: 300;
    font-size: 14px;
    color: #000; }
  .navbar .navbar-dropdown {
    border-radius: 6px;
    display: none;
    left: calc(50% - 350px/2);
    min-width: 350px;
    position: absolute;
    top: 2.4rem;
    z-index: 999; }

.navbar-dropdown {
  background: #fff;
  border: 1px solid #fff;
  padding: .3rem;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2); }
  .navbar-dropdown.dropdown-user {
    left: calc(50% - 200px/2);
    min-width: 200px; }
    .navbar-dropdown.dropdown-user ul {
      margin-bottom: 0; }
  .navbar-dropdown ul {
    margin: 0;
    margin-bottom: .5rem;
    padding: 0; }
    .navbar-dropdown ul:after, .navbar-dropdown ul:before {
      bottom: 100%;
      left: 88%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none; }
    .navbar-dropdown ul:after {
      border-color: rgba(255, 255, 255, 0);
      border-bottom-color: #fff;
      border-width: 8px;
      margin-left: -8px; }
    .navbar-dropdown ul:before {
      border-color: rgba(228, 227, 227, 0);
      border-bottom-color: rgba(0, 0, 0, 0.2);
      border-width: calc(8px + 1px);
      margin-left: calc(-10px + 1px); }
  .navbar-dropdown .plugin:hover .new {
    color: #fff; }
  .navbar-dropdown .plugin .new {
    font-size: .9rem;
    background: #ff8282;
    float: right;
    margin-left: auto;
    padding: .1rem .25rem; }
  .navbar-dropdown a {
    color: #767676;
    display: block;
    padding: .8rem .5rem; }
    .navbar-dropdown a:hover {
      background: #b74e46;
      color: #fff; }
    .navbar-dropdown a.see-more-projects-btn, .navbar-dropdown a.create-organization-btn, .navbar-dropdown a.create-project-btn {
      color: #fff;
      text-align: center; }
      .navbar-dropdown a.see-more-projects-btn:hover, .navbar-dropdown a.create-organization-btn:hover, .navbar-dropdown a.create-project-btn:hover {
        color: #fff; }
    .navbar-dropdown a.see-more-projects-btn {
      margin-bottom: .3rem; }
      .navbar-dropdown a.see-more-projects-btn:hover {
        background: #b64234; }
    .navbar-dropdown a.import-project-button {
      padding: .8rem 1rem; }
    .navbar-dropdown a.create-project-btn {
      -ms-flex: 1;
      flex: 1; }
      .navbar-dropdown a.create-project-btn:hover {
        background: #9dce0a; }
    .navbar-dropdown a.blocked-project {
      color: #555; }
      .navbar-dropdown a.blocked-project svg {
        margin-left: .5rem;
        position: relative;
        top: .25rem; }
  .navbar-dropdown .import-project-button:hover svg {
    fill: #9dce0a; }
  .navbar-dropdown .import-project-button svg {
    fill: #fff; }
  .navbar-dropdown .create-options {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile-favs {
  border-top: 1px solid #e4e3e3; }

.profile-filter {
  -ms-flex-align: center;
  align-items: center;
  background: #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 1rem 0;
  padding: .5rem 1rem; }
  .profile-filter .searchbox {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1; }
    .profile-filter .searchbox .icon-search {
      fill: #555;
      margin-right: .5rem; }
    .profile-filter .searchbox input {
      border: 0;
      border-bottom: 1px solid transparent;
      -ms-flex: 1;
      flex: 1;
      margin-right: 1rem; }
      .profile-filter .searchbox input:focus {
        border-bottom: 1px solid #767676;
        outline: none;
        transition: border-bottom .3s ease-in; }
  .profile-filter .filters a {
    color: #767676;
    display: inline-block;
    padding: 0 .5rem; }
    .profile-filter .filters a:hover, .profile-filter .filters a.active {
      color: #050505; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile {
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - 40px);
  padding: 2rem 0; }
  .profile .profile-bar {
    margin-right: 1rem;
    width: 200px; }
  .profile .main {
    display: -ms-flexbox;
    display: flex;
    padding: 0; }
  .profile .timeline-wrapper {
    margin-right: 3.5rem;
    width: 768px; }
    .profile .timeline-wrapper > div {
      opacity: 1;
      padding-top: 0;
      position: relative;
      transition: all 0.3s cubic-bezier(0.09, 0.43, 0.35, 0.95); }
      .profile .timeline-wrapper > div.ng-hide {
        opacity: 0;
        padding-top: .5vh; }
    .profile .timeline-wrapper .spin {
      margin: 10% auto;
      width: 3rem; }
      .profile .timeline-wrapper .spin img {
        animation-timing-function: ease-in-out;
        animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
        margin: 0 auto;
        max-height: 1rem;
        max-width: 1rem;
        transform-origin: 32 32;
        max-height: 3rem;
        max-width: 3rem; }
  .profile .profile-sidebar {
    -ms-flex-preferred-size: 150px;
    flex-basis: 150px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 150px; }
    .profile .profile-sidebar .button-gray {
      display: block;
      margin-bottom: 2rem;
      padding-left: 2rem;
      padding-right: 2rem; }
  .profile .empty-tab {
    padding: 5vh;
    text-align: center; }
    .profile .empty-tab svg {
      fill: #e4e3e3;
      height: 10rem;
      margin: 2rem auto;
      text-align: center;
      width: 10rem; }
    .profile .empty-tab p {
      color: #767676;
      font-size: .9rem;
      margin: 0; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile-bar .profile-image-wrapper {
  height: 200px;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative; }
  .profile-bar .profile-image-wrapper.is-current-user:hover img {
    filter: brightness(40%) saturate(150%) hue-rotate(60deg);
    transition: all 0.2s cubic-bezier(0.01, 0.7, 1, 1); }
  .profile-bar .profile-image-wrapper.is-current-user:hover .profile-edition {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.2s cubic-bezier(0.01, 0.7, 1, 1);
    transition-delay: .3s; }

.profile-bar .profile-img {
  max-width: 100%;
  width: 100%; }

.profile-bar .profile-edition {
  font-size: 1.2rem;
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  color: #fff;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 1rem;
  position: absolute;
  transform: translateY(100%);
  width: 100%; }
  .profile-bar .profile-edition:hover {
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s cubic-bezier(0.01, 0.7, 1, 1); }

.profile-bar .button-green {
  display: block;
  margin-bottom: 1rem; }

.profile-bar .profile-data {
  position: relative; }

.profile-bar .flag {
  position: absolute;
  right: 0;
  top: 0;
  width: 12px; }
  .profile-bar .flag path {
    fill: #767676;
    transition: all .2s linear; }
  .profile-bar .flag:hover path {
    fill: #f00;
    transition: all .2s linear; }

.profile-bar h1 {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: .25rem;
  text-transform: none;
  word-wrap: break-word; }

.profile-bar .not-full-name {
  word-wrap: break-word; }

.profile-bar h2 {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 1.2;
  margin-bottom: 1rem; }

.profile-bar .username {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #767676;
  margin-bottom: 1rem; }

.profile-bar .location {
  color: #767676;
  margin-bottom: 1rem; }
  .profile-bar .location svg {
    position: relative;
    top: 2px;
    width: .75rem; }
  .profile-bar .location path {
    fill: #767676; }

.profile-bar .profile-stats {
  border-bottom: 1px solid #e4e3e3;
  border-top: 1px solid #e4e3e3;
  color: #555;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 1rem .5rem; }
  .profile-bar .profile-stats .stat {
    padding: 0 .2rem;
    text-align: center; }
  .profile-bar .profile-stats .stat-number {
    font-size: 2rem;
    font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
    display: block;
    line-height: 1; }
  .profile-bar .profile-stats .stat-name {
    font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
    font-size: .9rem;
    display: block; }

.profile-bar .profile-quote {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  background: url("../images/quote.png") no-repeat top left;
  line-height: 1.4;
  padding: .5rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile-contacts {
  border-top: 1px solid #e4e3e3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile-content-tabs {
  border-top: 1px solid #e4e3e3;
  z-index: 9; }
  .profile-content-tabs .tab {
    color: #767676;
    display: inline-block;
    padding: 1rem; }
    .profile-content-tabs .tab:hover, .profile-content-tabs .tab.active {
      color: #555;
      transition: color .2s linear; }
      .profile-content-tabs .tab:hover .icon, .profile-content-tabs .tab.active .icon {
        fill: #9dce0a; }
    .profile-content-tabs .tab.active {
      background: #fff;
      border-left: 1px solid #e4e3e3;
      border-right: 1px solid #e4e3e3;
      position: relative;
      top: 1px;
      transition: color .2s linear; }
      .profile-content-tabs .tab.active .icon {
        color: #5b8200; }
  .profile-content-tabs .icon {
    fill: #767676;
    height: .8rem;
    margin-right: .5rem;
    transition: fill .2s linear; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile-sidebar h4 {
  font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  color: #555;
  margin-bottom: .5rem;
  padding: .5rem; }
  .profile-sidebar h4 .icon {
    fill: #767676;
    margin-right: .3rem;
    margin-top: -3px;
    vertical-align: middle; }

.profile-sidebar p {
  font-size: .9rem;
  color: #767676; }

.profile-sidebar a {
  color: #5b8200; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile-projects {
  border-top: 1px solid #e4e3e3; }
  .profile-projects .list-itemtype-project {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 9rem;
    padding: .75rem; }
    .profile-projects .list-itemtype-project.blocked-project .list-itemtype-project-image,
    .profile-projects .list-itemtype-project.blocked-project .project-title,
    .profile-projects .list-itemtype-project.blocked-project .project-description,
    .profile-projects .list-itemtype-project.blocked-project .list-itemtype-project-right {
      opacity: .4; }
    .profile-projects .list-itemtype-project .project-list-single-title-wrapper {
      display: -ms-flexbox;
      display: flex; }
    .profile-projects .list-itemtype-project .list-itemtype-project-image {
      -ms-flex-negative: 0;
      flex-shrink: 0; }
    .profile-projects .list-itemtype-project .list-itemtype-project-right {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      -ms-flex-pack: justify;
      justify-content: space-between;
      width: 200px; }
    .profile-projects .list-itemtype-project .icon-blocked-project {
      width: 1rem;
      height: 1rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.project-list-wrapper {
  position: relative; }
  .project-list-wrapper .project-list-title {
    -ms-flex-align: center;
    align-items: center;
    background: #f5f5f5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 2rem 0 1rem;
    padding: .9rem 1rem; }
    .project-list-wrapper .project-list-title h1 {
      font-size: 1.6rem;
      font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
      margin: 0; }
  .project-list-wrapper .icon-lock,
  .project-list-wrapper .icon-badge,
  .project-list-wrapper .icon-blocked-project {
    width: 1rem;
    height: 1rem; }
  .project-list-wrapper .icon-badge {
    margin-left: .5rem; }
  .project-list-wrapper .create-project-btn {
    margin-right: .25rem;
    padding: .6rem 2.5rem; }
  .project-list-wrapper .import-project-button {
    padding: .53rem .8rem; }
    .project-list-wrapper .import-project-button:hover .icon-upload {
      fill: #9dce0a; }
    .project-list-wrapper .import-project-button .icon-upload {
      fill: #fff; }
  .project-list-wrapper .project-list-section {
    display: -ms-flexbox;
    display: flex; }
  .project-list-wrapper .project-list {
    -ms-flex: 1;
    flex: 1;
    margin-right: 2rem; }
  .project-list-wrapper .help-area {
    font-size: .9rem;
    color: #767676;
    width: 200px;
    padding-top: 5px; }
  .project-list-wrapper .list-itemtype-project {
    background: rgba(255, 255, 255, 0.6); }
    .project-list-wrapper .list-itemtype-project:hover {
      background: rgba(157, 206, 10, 0.1);
      cursor: move;
      transition: background .3s; }
      .project-list-wrapper .list-itemtype-project:hover .drag {
        opacity: 1; }
    .project-list-wrapper .list-itemtype-project.blocked-project .list-itemtype-project-image,
    .project-list-wrapper .list-itemtype-project.blocked-project .project-title,
    .project-list-wrapper .list-itemtype-project.blocked-project .private,
    .project-list-wrapper .list-itemtype-project.blocked-project .project-description,
    .project-list-wrapper .list-itemtype-project.blocked-project .icon-badge {
      opacity: .25; }
    .project-list-wrapper .list-itemtype-project.blocked-project:hover .icon-drag {
      opacity: 1; }
    .project-list-wrapper .list-itemtype-project .list-itemtype-project-data-wrapper {
      display: -ms-flexbox;
      display: flex; }
    .project-list-wrapper .list-itemtype-project .list-itemtype-project-image {
      -ms-flex-negative: 0;
      flex-shrink: 0;
      margin-right: 1rem; }
  .project-list-wrapper .drag {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    opacity: 0; }
    .project-list-wrapper .drag svg {
      fill: #767676;
      height: 1.1rem;
      margin-right: .5rem;
      transition: opacity .2s;
      width: 1.1rem; }
  .project-list-wrapper .gu-transit {
    background-color: #ecebeb;
    height: 5rem;
    opacity: 1; }
    .project-list-wrapper .gu-transit * {
      display: none; }
  .project-list-wrapper .gu-mirror {
    background: #edffc4;
    opacity: 1; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.blocked-project-detail {
  -ms-flex-align: center;
  align-items: center;
  background: url("../images/discover.png") bottom center repeat-x;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 40px);
  -ms-flex-pack: center;
  justify-content: center;
  min-height: calc(100vh - 40px);
  min-width: 100vw;
  width: 100vw; }

.blocked-project-inner {
  width: 330px; }

.blocked-project-title {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }
  .blocked-project-title .project-image {
    -ms-flex-preferred-size: 6rem;
    flex-basis: 6rem;
    margin-right: 1rem;
    max-width: 6rem;
    position: relative; }
  .blocked-project-title img {
    width: 100%; }
  .blocked-project-title .icon-blocked-project {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: -.5rem;
    top: -.5rem; }
  .blocked-project-title .project-title {
    font-size: 1.6rem; }

.blocked-project-message {
  margin-top: 4rem;
  text-align: center; }
  .blocked-project-message .project-block-title {
    font-size: 2rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.transfer-project-wrapper {
  -ms-flex-preferred-size: 500px;
  flex-basis: 500px;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 90%; }

.transfer-project {
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../images/discover.png") bottom center repeat-x;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 40px);
  -ms-flex-pack: center;
  justify-content: center;
  min-height: calc(100vh - 40px); }
  .transfer-project .transfer-title {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif; }
  .transfer-project-detail {
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e4e3e3;
    border-top: 1px solid #e4e3e3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1rem 0 3rem;
    padding: 1rem 0; }
  .transfer-project-image {
    margin-right: 1rem;
    width: 4rem; }
  .transfer-project-title {
    font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    margin-bottom: .25rem; }
  .transfer-project-statistics span {
    color: #767676;
    margin-right: .5rem; }
  .transfer-project-statistics svg {
    fill: #767676;
    margin-right: .25rem; }
  .transfer-project-private {
    text-transform: uppercase; }
  .transfer-project-comment-link {
    color: #5b8200;
    cursor: pointer;
    display: block;
    margin-bottom: 1rem; }
    .transfer-project-comment-link:hover {
      color: #9dce0a; }
  .transfer-project-comment-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .transfer-project-comment-header .icon-close {
      cursor: pointer;
      fill: #767676; }
      .transfer-project-comment-header .icon-close:hover {
        fill: #ff8282;
        transition: fill .2s; }
  .transfer-project-comment-form.ng-enter {
    animation: dropdownFade .2s; }
  .transfer-project-comment-label {
    display: block;
    margin-bottom: .5rem; }
  .transfer-project-comment {
    margin-bottom: 1rem;
    min-height: 6rem; }
  .transfer-project-options {
    display: -ms-flexbox;
    display: flex; }
    .transfer-project-options a {
      font-size: 1.2rem;
      display: block;
      -ms-flex: 1;
      flex: 1;
      padding: .75rem; }
      .transfer-project-options a:first-child {
        margin-right: .5rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.profile-timeline {
  border-top: 1px solid #e4e3e3; }
  .profile-timeline .activity-item {
    border-bottom: 1px solid #e4e3e3;
    padding: 1rem .5rem 1rem 0;
    position: relative;
    color: #74baed; }
    .profile-timeline .activity-item p {
      margin-bottom: 0;
      font-family: 'Poppins';
      font-weight: 300; }
    .profile-timeline .activity-item a,
    .profile-timeline .activity-item .username {
      color: #000; }
      .profile-timeline .activity-item a:first-child,
      .profile-timeline .activity-item .username:first-child {
        font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }
    .profile-timeline .activity-item a.blue-link {
      color: #74baed; }
    .profile-timeline .activity-item a:hover {
      color: #ca4f45; }
    .profile-timeline .activity-item blockquote {
      line-height: 1.4rem;
      margin-bottom: 0;
      margin-left: calc(35px + 1rem);
      margin-top: .5rem;
      overflow-x: auto;
      overflow-y: hidden;
      white-space: pre-line; }
    .profile-timeline .activity-item img {
      max-height: 640px;
      max-width: 640px; }
    .profile-timeline .activity-item .activity-info {
      -ms-flex-align: center;
      align-items: center;
      color: #767676;
      display: -ms-flexbox;
      display: flex;
      margin-right: 130px; }
    .profile-timeline .activity-item .activity-date {
      color: #767676;
      font-size: .75rem;
      position: absolute;
      right: .5rem;
      top: 1.2rem; }
    .profile-timeline .activity-item .profile-contact-picture,
    .profile-timeline .activity-item .profile-member-picture {
      border-radius: .1rem;
      -ms-flex-preferred-size: 2rem;
      flex-basis: 2rem;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      margin-right: 1rem;
      vertical-align: center;
      width: 2rem; }
      .profile-timeline .activity-item .profile-contact-picture img,
      .profile-timeline .activity-item .profile-member-picture img {
        width: 100%; }
    .profile-timeline .activity-item .new-color {
      border-radius: 50%;
      display: inline-block;
      height: 1rem;
      margin-left: .2rem;
      position: relative;
      top: .1rem;
      width: 1rem; }
  .profile-timeline .activity-member-view {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: .5rem;
    margin-left: calc(35px + 1rem);
    margin-top: .5rem; }
    .profile-timeline .activity-member-view .profile-member-picture {
      -ms-flex-preferred-size: 3rem;
      flex-basis: 3rem;
      width: 3rem; }
    .profile-timeline .activity-member-view .activity-member-info {
      -ms-flex: 1;
      flex: 1; }
    .profile-timeline .activity-member-view a {
      font-family: 'OpenSans-Semibold', Arial, Helvetica, sans-serif; }
    .profile-timeline .activity-member-view p {
      color: #767676; }
  .profile-timeline .single-attachment {
    border: 0;
    padding: 0; }
    .profile-timeline .single-attachment span {
      font-family: 'OpenSans-Regular', Arial, Helvetica, sans-serif;
      font-size: 1rem;
      display: inline-block;
      max-width: 95%;
      overflow: hidden;
      text-overflow: ellipsis;
      vertical-align: sub;
      white-space: nowrap; }
    .profile-timeline .single-attachment .icon {
      fill: #444;
      margin-right: .5rem; }
  .profile-timeline .spin {
    margin: 10% auto;
    width: 3rem; }
    .profile-timeline .spin img {
      animation-timing-function: ease-in-out;
      animation: rotate 1.5s cubic-bezier(0, 0.05, 0.87, 1.04) infinite alternate;
      margin: 0 auto;
      max-height: 1rem;
      max-width: 1rem;
      transform-origin: 32 32;
      max-height: 3rem;
      max-width: 3rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

.wiki-history {
  margin-bottom: 2rem; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

_:-ms-fullscreen .task-row,
:root .taskboard-table-body .task-row {
  min-height: auto; }

.markItUpEditor {
  font-size: .9rem;
  line-height: 1.5;
  font-family: monospace; }

svg {
  pointer-events: none; }

a[ng-click] svg {
  pointer-events: auto; }

tg-card .card-title span:last-child {
  word-break: break-word; }

@media only screen and (max-width: 1350px) {
  .summary .number {
    font-size: 1rem; }
  .summary .description {
    font-size: 11px; }
  .home-project .project-card-name a {
    font-size: 1.2rem; }
  .home-wrapper .working-on-container {
    margin-right: 0;
    border-radius: 0; }
  .home-wrapper .watching-container {
    border-radius: 0; } }

body {
  background: #fff;
  color: #444; }

.master {
  overflow: hidden;
  background: #eeeeee; }

.menu-secondary {
  background: #f5f5f5; }

.menu-tertiary {
  background-color: #2f3244; }

.extrabar {
  background: #f5f5f5; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #050505; }

a {
  color: #444; }
  a:hover {
    color: #5b8200; }

input[type="text"],
input[type="number"],
input[type="password"],
input[type="url"],
input[type="email"],
input[type="date"],
input[type="password"],
select,
textarea {
  background: #f5f5f5;
  border-color: #767676;
  color: #444; }
  input[type="text"]:-ms-input-placeholder,
  input[type="number"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="url"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="date"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  select:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #909090; }
  input[type="text"]::placeholder,
  input[type="number"]::placeholder,
  input[type="password"]::placeholder,
  input[type="url"]::placeholder,
  input[type="email"]::placeholder,
  input[type="date"]::placeholder,
  input[type="password"]::placeholder,
  select::placeholder,
  textarea::placeholder {
    color: #909090; }
  input[type="text"].checksley-error,
  input[type="number"].checksley-error,
  input[type="password"].checksley-error,
  input[type="url"].checksley-error,
  input[type="email"].checksley-error,
  input[type="date"].checksley-error,
  input[type="password"].checksley-error,
  select.checksley-error,
  textarea.checksley-error {
    border: 1px solid #f00; }

.checksley-error-list {
  font-family: 'OpenSans-Light', Arial, Helvetica, sans-serif;
  background: rgba(255, 0, 0, 0.7);
  color: #fff; }

blockquote {
  border-left: 5px solid #f5f5f5; }

blockquote,
blockquote p {
  color: #555; }

cite {
  color: #555; }

.summary {
  background: #2f3244;
  color: #fff; }

.navbar {
  background: #fff;
  padding: 0 20px;
  border-bottom: 1px solid #e0e0e0; }

tg-non-project-menu,
tg-project-menu {
  background-color: #2f3244; }

.main-nav svg {
  fill: #acacad; }

.taskboard-table-header .task-colum-name {
  background: #f5f5f5;
  border-top: 3px solid #767676; }
  .taskboard-table-header .task-colum-name .icon {
    fill: #767676; }

.taskboard-table-body .taskboard-tasks-box {
  background: #f5f5f5; }

.kanban-table-header .task-colum-name {
  background: #f5f5f5;
  border-top: 3px solid #767676; }
  .kanban-table-header .task-colum-name .icon {
    color: #767676; }

.kanban-table-body .kanban-uses-box {
  background: #f5f5f5; }
