.event {
  max-width: 94%;
  margin-left: 3%;
  padding-top: 90px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
.event-components {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  width: 100%;
  border: 2px solid #e9ecee;
  border-radius: 4px;
}
.event-component {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  color: #217880;
  text-decoration: underline;
  cursor: pointer;
}
.event-component:hover {
  color: #29949e;
  text-decoration: none;
}
.event-selected {
  font-weight: 800;
  text-decoration: none;
}
.event-tab {
  border: 1px solid #29949e;
  margin-bottom: 50px;
}
.tab-title {
  margin: 20px 0px;
  font-family: "Jost";
  font-size: 20px;
  font-weight: 600;
  color: #364146;
  text-align: center;
}
.tab-content {
  margin: 10px;
}
.information-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #364146;
  display: inline-block;
}
.event button {
  /* background: #009cea; */
  background: #217880;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.event button:hover {
  /* background: #1eb4ff; */
  background: #29949e;
}
.event .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.event .error-message br + br {
  margin-top: 25px;
}
.event .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.event .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.event .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}
