body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  margin: 0;
  overflow: hidden;
  box-sizing: content-box;
}

button {
  display: flex;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  margin-bottom: 30px;
}

p {
  line-height: 24px;
}

.alertBar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  padding: 16px;
  min-height: 48px;
  color: white;
  fill: white;
  font-size: 16px;
  line-height: 20px;
  background-color: #d32f2f;
  width: calc(100% - 32px);
}

.alertBar--info {
  background-color: #bbdefb;
  color: #000;
  fill: #000;
}

.alertBar__icon {
  display: flex;
  flex-direction: column;
  margin-right: 16px;
}

.alertBar__row {
  display: flex;
  justify-content: space-between;
}

.alertBar__row__message {
  display: flex;
}

.alertBar__row__message__icon {
  margin-right: 10px;
}

.alertBar__details {
  display: flex;
  flex-direction: row;
  margin-left: 28px;
  margin-top: 10px;
}
  
.alertBar__details__labels {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 30px;
  text-transform: capitalize;
}

.alertBar__details__info {
  display: flex;
  flex-direction: column;
}

.logo {
  height: 50px;
  margin-top: 30px;
  margin-left: 1rem;
}

.panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
  border:0;
}

.slideBackground {
  background:linear-gradient(160deg, rgba(187,39,39,1) 0%, rgba(33,58,199,0.8) 65%, rgba(22,80,211,0.7) 100%), url("../img/hero.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.fade-enter-active {
  transition: opacity 1.5s, transform 1.5s;
}
.fade-enter {
  opacity: 0;
  transform: translateX(-10px)
}

.slide-top-enter-active {
  transition:  opacity 1s, transform 1s;
 
}
.slide-top-enter {
  opacity: 0;
  transform: translateY(10px)
}

.popoverArrow::after{
  position: absolute;
  content:'';
  bottom:-10px;
  left: 14px;
  width: 0; 
  height: 0; 
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  
  border-top: 12px solid #fff;
}
