#earth-day-bar {
  background: #689c42;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 1.1rem 0;
  overflow: hidden;
  max-height: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 9000;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 3px solid rgb(228, 228, 228);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          -webkit-transition: opacity 0.5s ease-in-out;
          -o-transition: opacity 0.5s ease-in-out;
          transition: opacity 0.5s ease-in-out;

}

#earth-day-bar p {
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 1.3em;
    margin-left: auto;
}

#earth-day-button {
  -webkit-box-shadow: rgba(0, 0, 0, 0.278431) 1px 1px 3px;
  background: #444444;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.278431) 1px 1px 3px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
  outline: none;
  padding: 4px 10px;
  position: relative;
  text-decoration: none;
  margin-left: 0.5rem;
}

#earth-day-button:hover {
  cursor: pointer;
  background: rgb(56, 136, 98);
}

#earth-day-button:active {
  top: 1px;
  text-decoration: none;
}

#earth-day-button:visited {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
#earth-day-bar p {
    font-size: 0.8rem!important;
}
}

#earth-day-bar-hidden {
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 9000;
  position: fixed;
  top: 0;
  right: 0.5rem;
  cursor: pointer;
  margin-top: 1rem;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

#bar-link {
  width: 100%;
  z-index: 9001;
  text-decoration: none;
}

.show-bar {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.hide-bar {
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.hide-bar * {
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.arrow {
  height: auto;
  width: 2rem;
}

#close-button {
  z-index: 9999;
  cursor: pointer;
  margin-left: auto;
  margin-right: 0.6rem;
  font-size: 18px;
  font-weight: bold;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
}

#open-button {
  z-index: 9999;
  cursor: pointer;
  font-size: 18px;
  border: none;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
}