.prompt_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 100;
  bottom: 14%;
  left: 1%;
  padding: 10px;
  border-radius: 2px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  color: white;
  font-family: 'Futura Book';
  font-weight: 500;
  height: 40px;
  background-color: #fe5000;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.prompt_wrapper {
  display: flex;
  align-items: center;
}

.prompt_text {
  margin: 0 10px;
  font-family: 'Futura Book';
  font-weight: 500;
  font-size: 16px;
}

.prompt_button {
  background-color: transparent;
  border: none;
  margin: 0 5px;
  font-family: 'Futura Book';
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}

.prompt_button:focus,
.prompt_button:active,
.prompt_button:active:focus {
  outline: none;
  box-shadow: none;
}

.prompt_button:active {
  filter: brightness(90%);
}

.prompt_close_button {
  color: #9b9b9b;
  font-size: 12px;
}


@media (max-width: 380px) {
  .prompt_container {
    flex-direction: column;
    height: 45px;
    left: 7%;
  }
}