.build-flash-container .holder {
  margin: 12px;
  padding: 10px;
  height: 40px;
  position: relative;
}

.build-flash-container .holder .bowtie-icon {
  font-size: 16px;
}

.build-flash-container .holder .close {
  cursor: pointer;
  position: absolute;
  right: 7px;
  top: 4px;
  opacity: 0.6;
}

.build-flash-container .holder .close:hover {
  opacity: 1;
}

.build-flash-container .holder .build-message-icon-info {
  color: rgba(0, 120, 212, 1);
  color: var(--communication-background,rgba(0, 120, 212, 1));
}

.build-flash-container .holder .build-message-icon-success {
  color: rgba( 16, 124, 16 ,  1 );
  color: rgba( var(--palette-accent2-dark,16, 124, 16) ,  1 );
}

.build-flash-container .holder .build-message-icon-failure {
  color: rgba( 218, 10, 0 ,  1 );
  color: rgba( var(--palette-accent1,218, 10, 0) ,  1 );
}

.build-flash-container .holder .build-message-icon-warning {
  color: rgba( 214, 127, 60 ,  1 );
  color: rgba( var(--palette-accent3,214, 127, 60) ,  1 );
  position: relative;
  bottom: 1px;
  float: left;
}

.build-flash-container .fadeIn {
  opacity: 1;
  transition: opacity 0.25s ease-in;
}

.build-flash-container .fadeOut {
  opacity: 0;
  transition: visibility 0.25s linear, opacity 0.25s ease-out;
}

.build-flash-container.fadeOut {
  margin-top: -50px;
  transition: margin-top 0.25s ease-out;
}

.build-flash-container .content {
  display: block;
  position: relative;
  padding-left: 8px;
  bottom: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  margin-right: 20px;
}

.build-flash-container .links {
  position: absolute;
  right: 40px;
  top: 11px;
}

.build-flash-container .info {
  background-color: rgba( 239, 246, 252 ,  1 );
  background-color: rgba( var(--palette-primary-tint-40,239, 246, 252) ,  1 );
}

.build-flash-container .success {
  background-color: rgba( 244, 244, 244 ,  1 );
  background-color: rgba( var(--palette-neutral-4,244, 244, 244) ,  1 );
}

.build-flash-container .failure {
  background-color: rgba( 249, 235, 235 ,  1 );
  background-color: rgba( var(--palette-accent1-light,249, 235, 235) ,  1 );
}

.build-flash-container .warning {
  background-color: rgba( 251, 242, 236 ,  1 );
  background-color: rgba( var(--palette-accent3-light,251, 242, 236) ,  1 );
}
