.flag-container {
  width: 100%;
  display: flex;
  position: relative;
}

.flag-container.left {
  justify-content: flex-start;
}

.flag-container.left .flag-content{
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding-left: 40px;
}   

.flag-container.right {
  justify-content: flex-end;
}

.flag-container.right .flag-content{
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.flag-content {
  align-items: center;
  justify-content: space-between;
  width: 90%;
  font-size: 1.6rem;
  line-height: 1.2;
  color: white;
  padding: 15px 35px;
  position: relative;
  z-index: 1;
}

.flag-content.purple {
  background-color: var(--purple);
}

.flag-content.orange {
  background-color: var(--orange);
}

.flag-content.fucsia {
  background-color: var(--fucsia);
}

.flag-container a {
  text-decoration: none !important;
  width: 100%;
}

.flag-container a:hover {
  text-decoration: none;
}

.flag-image {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 7%;
  top: 40%;
  transform: translateY(-50%) rotate(-70deg);
  z-index: 2;
}
