.pos-container {
    width: 100%;
    height: auto;
    max-height: 50px;
    overflow:hidden;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#0A8BB0), color-stop(99.64%, #2C225C));
    background: linear-gradient(90deg, #0A8BB0 0%, #2C225C 99.64%);;
    font-size: 14px;
    color: #fff;
}

.pos-wrapper {
    text-align:center;
    position: relative;
    width:100%;
    padding: 10px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;   
}

.pos-message {
    opacity: 0;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    display: none;
}

.pos-message.active {
      opacity: 1;
      display: block;
      pointer-events: all;
      position: relative;
    }

.pos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
}

.pos-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 20px;
  letter-spacing: 0.5px;
}

.pos-mobile-text {
  display: none;
}

.pos-highlight {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1.25px;
}

.pos-cta-btn {
    font-weight: 700;
    position: relative;
    width: auto;
    text-align: center;
    padding: 8px 20px;
    outline: none;
    color: #1e4d7f;
    line-height: 1;
    background: #fff;
    border-radius: 9999px;
}

.pos-cta-btn-mobile {
  padding: 7px;
  background: white;
  border-radius: 9999px;
  color: #1e4d7f;
  font-weight: 700;
  display: none;
}

/* md (phones, 600px and down) */

@media only screen and (max-width: 768px) {
  .pos-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pos-mobile-text {
    padding-right: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .pos-desktop-text {
    display: none;
  }

.pos-cta-btn-mobile {
  display: none;
}

}

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 565px) {

  .pos-item {
    -webkit-box-pack: between;
        -ms-flex-pack: between;
            justify-content: between;
  }

    .pos-mobile-text {
      padding-right: 20px;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
    }
    .pos-desktop-text {
      display: none;
    }
    .pos-highlight {
      display: none;
    }
  
  .pos-cta-btn {
    display: none;
  }

  .pos-cta-btn-mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
    .pos-cta-btn-mobile > svg {
      width: 12px;
      height: 12px;
      display: inline-block;
      vertical-align: middle;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
    }
}

@-webkit-keyframes fade {
  from {
    opacity: .5
  }
  to {
    opacity: 1
  }
}

@keyframes fade {
  from {
    opacity: .5
    }   
  to {
    opacity: 1
  }
}


