.colored-banner-container {
  position: relative;
  display: flex;
}
.colored-banner-container.red-gradient {
  background-image: linear-gradient(261deg, #f98080, #76020c);
}
.colored-banner-container.turquoise-gradient {
  background-image: linear-gradient(289deg, #aad2d7 0%, #1ea2b1 100%);
}
.colored-banner-container.yellow-gradient {
  background-image: linear-gradient(307deg, #fffea2 0%, #e3e000);
}
@media only screen and (max-width: 767px) {
  .colored-banner-container {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.colored-banner-container .left-colored-border .turquoise-line {
  height: 70%;
  width: .6rem;
  background-color: #1ea2b1;
}
.colored-banner-container .left-colored-border .yellow-line {
  height: 15%;
  width: .6rem;
  background-color: #e3e000;
}
.colored-banner-container .left-colored-border .red-line {
  height: 15%;
  width: .6rem;
  background-color: #b00402;
}
.colored-banner-container .colored-banner-text {
  padding: 30px 0 30px 15px;
  font-size: 20px;
  width: 75%;
}
.colored-banner-container .colored-banner-label-container {
  width: 30%;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .colored-banner-container .colored-banner-label-container {
    background-position-x: right;
    background-position-y: bottom;
  }
}
@media only screen and (max-width: 767px) {
  .colored-banner-container .colored-banner-label-container {
    background-position-x: 20%;
    background-position-y: bottom;
  }
}
.colored-banner-container .colored-banner-label-container .banner-label {
  width: max-content;
  padding: 5px 10px 5px 21px;
  margin: 3px 0 5px 0;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  font-weight: bold;
  float: right;
}
.colored-banner-container .colored-banner-label-container .banner-label.bordeaux-white {
  background-color: #B00402;
  color: #FFFFFF;
}
.colored-banner-container .colored-banner-label-container .banner-label.turquoise-white {
  background-color: #1EA2B1;
  color: #FFFFFF;
}
.colored-banner-container .colored-banner-label-container .banner-label.yellow-bordeaux {
  background-color: #E3E000;
  color: #B00402;
}
