.specials-container {
  background: #00ccff;
  position: absolute;
  left: 0;
  top: 30%;
  display: flex;
}
#specials {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  background: #00ccff;
  border: 0;
  border-bottom: 1px solid black;
  border-radius: 0;
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.02em;
  transform: rotate(-90deg);
  width: 160px;
  height: 42px;
  transform-origin: left top;
  position: absolute;
  left: 0;
  top: 160px;
}
.specials-container {
  display: flex;
  height: 160px;
  padding-left: 42px;
}
.special-content {
  display: flex;
}
.hide {
  display: none;
}
#special-close {
  display: flex;
  margin-left: 38px;
  background: transparent;
  border: none;
  padding: 10px;
}
.specials-text {
  margin-left: 24px;
  font-family: "Haffer", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  max-width: 375px;
}
/* Hide specials outside of the home page */
body:not(.home) .specials-container {
  display: none !important;
}

@media (max-width: 1200px) {
  #specials {
    transform: rotate(0deg);
    width: 100vw;
    height: 42px;
    transform-origin: top;
    position: relative;
    left: 0;
    top: 0;
  }

  .specials-container {
    position: fixed;
    flex-direction: column;
    height: auto;
    padding-left: 0;
    top: 65px;
  }

  .special-content {
    width: 100vw;
    justify-content: center;
    margin-top: 8px;
  }

  .specials-text {
    max-width: 100%;
    padding: 10px 0 15px 0;
  }

  #special-close {
    margin-left: 0px;
  }
  #specials.closed::after{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid currentcolor;
    border-left: none;
    border-bottom: none;
    transform: rotate(135deg) translate(-80%, -20%);
    margin-left: 4px;
  }
  #specials::after{
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid currentcolor;
    border-left: none;
    border-bottom: none;
    transform: rotate(-45deg) translate(40%, 40%);
    margin-left: 4px;
  }
}