.reminder-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 13px 30px;
  background: #FB2F51;
  color: #fff;
  text-align: center;
  font-size: 14px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 9999;
  box-sizing: border-box;
}
.reminder-bar.visible {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.reminder-bar-inner {
  position: relative;
  overflow: hidden;
}
.reminder-bar-items {
  padding: 0 15px;
}
.reminder-bar-item {
  display: inline-block;
  vertical-align: middle;
}
.reminder-bar-icon {
  display: none;
}
@media screen and (min-width: 1024px) {
  .reminder-bar-icon {
    display: inline-block;
    font-size: 20px;
  }
}
.reminder-bar-message {
  padding: 0 40px 10px 20px;
}
@media screen and (min-width: 1024px) {
  .reminder-bar-message {
    padding: 0 40px 0 20px;
  }
}
.reminder-bar-cta {
  text-decoration: none;
  background: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #222;
  letter-spacing: 0.05em;
  padding: 10px;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -ms-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  will-change: background, color;
}
@media screen and (min-width: 1024px) {
  .reminder-bar-cta:hover {
    background: #222;
    color: #fff;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1113px) {
  .reminder-bar-cta {
    margin-top: 10px;
  }
}
.reminder-bar-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer !important;
  color: #fff !important;
  font-size: 1.25em !important;
  outline: none !important;
}
@media screen and (min-width: 1024px) {
  .reminder-bar-close {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}