body {
    font-family: "Roboto", sans-serif;
    /*background-color: #d2f5ff;*/
    margin: 0;
}

.header {
    background: #2C2958;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 0 1em;
}

.header div {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.ci {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    margin-top: 5px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: 500;
    /* background: rgba(118, 238, 180, 1); */
    padding: 1px 6px;
    color: #2C2958;
    letter-spacing: 1.24px;
    margin-left: 4px;
    font-size: 0.8em;
    border-radius: 4px;
    background: rgba(255,255,255,.5);
    transition: all .24s cubic-bezier(0.075, 0.82, 0.165, 1);

}

.margins {
    margin-left: 6px;
    margin-right: 6px;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

h1 {
    font-weight: bold;
    text-decoration: underline;
    align-content: center;
}

h2, h3 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin: 0;
}

h4 {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin: 0;
    font-size: 16px;
    color: white;
    font-weight: 300;
    font-style: normal;
}

a{
    text-decoration: none!important;
}

div {
    box-sizing: border-box;
}

.small {
    font-size: 12px;
}

.project-logo {
    max-width: 150px;
    margin: 1em auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.status-span {
    font-size: 12px;
    border-radius: 20px;
    padding: 3px 6px;
    font-weight: 400;
    text-align: center;
    display: block;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.success {
    background: rgba(118, 238, 180, 0.2);
    color: #33cc33;
}

.working {
    background: rgba(244, 175, 72, 0.2);
    color: #ff9900;
}

.failure {
    background: rgba(238, 118, 118, 0.2);
    color: #DE1919;
}

.cancelled {
    background: rgba(103, 109, 236, 0.2);
    color: #555BD4;
}

.timeout {
    background: rgba(182, 68, 231, 0.2);
    color: #A827DF;
}

.default{
    background: rgba(0, 0, 0, 0.1);
    color: rgba(0,0,0,0.7);
}

.mouseover:hover {
    background-color: rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

button {
    background-color: #2C2958;
    border-radius: 4px;
    padding: 6px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.14);
    color: white;
    font-weight: 400;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    margin-top: 1em;
    margin-bottom: 1em;
    letter-spacing: 1.2px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: box-shadow .24s cubic-bezier(0.075, 0.82, 0.165, 1); 
}

button:hover{
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14),
                0 3px 4px 0 rgba(0, 0, 0, 0.12),
                0 1px 8px 0 rgba(0, 0, 0, 0.2);
}

button:focus{
    outline: 0;
}

.inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.project-title {
    margin: 1em 0;
}

.icn {
    margin-right: 6px;
}

.projects-container {
    margin: 1em 0;
    padding: 0 1em;
}

.projects-header {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding-left: 12px;
    align-items: center;
    margin: 8px 0;
}

.projects-header div {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.72);
    text-align: left;
    width: 10%;
    padding: 0 12px;
}

.projects-header div:first-child {
    width: 12%;
}

.projects-header div:nth-child(2) {
    width: 10%;
    text-align: center;
}

.projects-header div:nth-child(3) {
    width: 19%;
}

.projects-header div.message {
    width: 19%;
}

.project {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 16px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 0 16px 0;
    overflow: visible;
}

.project .project--item {
    width: 10%;
    padding: 16px 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
}

.project .project--item.status div {
    overflow: visible;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.project .project--item.status div .status-span {
    width: 100%;
    text-align: center;
}

.project .project--item:nth-child(2) {
    width: 12%;
    overflow: visible;
    position: relative;
}

.project .project--item:nth-child(3) {
    width: 10%;
}

.project .project--item:nth-child(4) {
    width: 19%;
}

.project .project--item:nth-last-child(2) {
    width: calc(19% - 8px);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0 4px 4px 0;
}

.project.CD .project--item:nth-last-child(2){
    width: calc(7% - 8px);
}

.project .project--item.status{
    position: relative;
}

.project .project--item div {
    box-sizing: border-box;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
}

.status-border {
    align-self: stretch;
    min-width: 8px;
    width: 8px !important;
    max-width: 8px;
    background: rgba(0, 0, 0, 0.1);

    padding: 0;
    display: block;
    border-radius: 4px 0 0 4px;
}

.status-border--success {
    background: rgba(118, 238, 180, 1);
}

.status-border--failure {
    background: rgba(238, 118, 118, 1);
}

.status-border--working {
    background: rgba(244, 175, 72, 1);
}

.status-border--cancelled {
    background: rgba(103, 109, 236, 1);
}

.status-border--timeout {
    background: rgba(182, 68, 231, 1);
}

.more-info {
    padding: 1em;
}

ul {
    padding: 0;
    margin: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

li {
    padding: 0 0 0 24px;
    list-style: none;
    margin: 12px 0;
}

.available {
    padding: 1em;
}

.leftPadding {
    padding: 0px 40px;
}

.verticalPadding {
    padding: 10px 0px;
}

.available a {
    font-weight: 400;
    text-decoration: none;
    color: rgba(103, 109, 236, 1);
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(103, 109, 236, 0.2);
}

.available a:hover {
    font-weight: 500;
    background: rgba(103, 109, 236, 0.2);
}

.refresh {
    text-align: center;
}

.more-info-s {
    height: 0;
    opacity: 1;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
    transition: height 1s ease-in;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
    width: 100%;
}

.more-info-s > div:last-child {
    margin-left: 2em;
}

.more-info-s.display {
    height: 100%;
    opacity: 1;
    padding: 1em;
    border-radius: 0 0 4px 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    margin-top: -2px;
}

.releaseTag {
    color: #67ee68;
}

.rcTag {
    color: #ffd548;
}

.developTag {
    color: orange;
}

.featureTag {
    color: red;
}

.defaultTag {
    color: #3aa5cc;
}

table {
    border-spacing: 10px 0;
    height: 100%;
}

td{
    padding: 1em 2em;
    transition: all .24s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    margin: 0 1em;
    box-sizing: border-box;
}

td:not(.active) img{
    opacity: 0.5;
}

td:not(.active):hover {
    border-bottom: 1px solid white;
}

td:not(.active):hover .ci{
    background: rgba(255,255,255,1);
}

td:not(.active):hover img{
    opacity: 1;
}

td.active{
    border-bottom: 3px solid white;
}

td.active .ci{
    background: linear-gradient(to left, rgba(118, 238, 180, 1), rgba(244, 175, 72, 1), rgba(238, 118, 118, 1), rgba(103, 109, 236, 1));
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
    position: absolute;
    bottom: calc(100% - 16px);
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: auto;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
    transform: translateY(-50%);
  }
  
  /* Triangle hack to make tooltip look like a speech bubble */
  [data-tooltip]:after {
    position: absolute;
    bottom: calc(100% - 2px);
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
  }
  
  /* Show tooltip content on hover */
  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  .version{
      position: relative;
  }

/*# sourceMappingURL=main.9eb3f9ed.css.map*/