.banner-component-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: 130px;
  position: relative;
  left: 40px;
  padding: 5px 0;
}

.banner-component {
  background-color: #006bb714;
  border-radius: 7px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: 80%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.banner-active {
  background-color: #006bb7;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}

.banner-active::after {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 7l-5 5l5 5'/%3E%3C/svg%3E");
}

.banner-component span {
  color: #00367c;
  font-size: 18px;
  font-weight: bold;
}

.banner-active span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding-right: 5px;
}

.banner-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 7l-5 5l5 5'/%3E%3C/svg%3E");
}
