.header {
}

.caption-bar {
  background-color: var(--zz-purple);
  display: none;
  flex-flow: row;
  align-items: center;
  height: 60px;
  justify-content: center;
  padding: 16px 0 12px;
}

.caption-bar-text {
  color: white;
  text-align: center;
  font-size: 30px;
  letter-spacing: 1.67px;
}

.caption-bar.hide {
  display: none;
}

.title-bar {
  background-color: #FFE100;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 0px 30px;
  align-items: center;
  height: 60px;
}

.title-bar-svg {
  height: 43px;
  width: 400px;
  margin-left: -190px;
}

.menu-button {
  border: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  cursor: pointer;
}

.menu-button-text {
  margin-top: 4px;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
  font-size: 15px;
}

.blue-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--zz-purple);
}

.search-box-wrapper {
  display: flex;
  flex-flow: row;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
  font-size: 15px;
  padding: 3px 44px 0 15px;
  padding-left: 30px;
  letter-spacing: 1px;
}

.search-box {
  height: 30px;
  font-size: 15px;
  border: 0;
  border-radius: 30px;
  padding: 3px 44px 0 15px;
  background: transparent;
  outline: none;
  font-family: "ITCFranklinGothicLTPro-Bk", serif;
}

.search-button {
  background: transparent;
  color: white;
  height: 30px;
  padding: 3px 10px;
  cursor: pointer;
  margin-left: -44px;
  margin-right: 5px;
  border: 0;
}

@media screen and (max-width: 900px) {
  .title-bar-svg {
    width: 180px;
    position: absolute;
    margin-left: calc(50% - 117px);
  }

  .search-box {
    padding-left: 0px;
  }

  .search-box-wrapper {
    padding-left: 0;
  }

  .search-button {
    padding-left: 0;
  }

  .search-button {
    margin-left: 0;
  }

  .title-bar-svg.hide {
    display: none;
  }
}

@media screen and (max-width: 590px) {
  .caption-bar-text {
    font-size: 20px;
  }

  .search-box {
    display: none;
    padding-left: 0px;
  }

  .menu-button-text {
    display: none;
  }

  .search-box.show {
    display: inline-block;
  }
}
