.header {
  width: 100%;
  /* height: 200px; */
  background-color: #6c5dde;
  display: block;
  border-radius: 0px 0px 10px 10px;
  color: #ffffff;
  padding: 30px 50px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.header_label {
  display: flex;
  height: fit-content;
}

.header_label .icon {
  margin-right: 20px;
}

.header_label h1 {
  margin: 0;
}

.header hr {
  border: 0.5px solid #9b9b9b;
  margin: 30px 0;
}

.filter_form {
  display: flex;
  justify-content: center;
}

.filter_select {
  background: #f9f9f9;
  border: 1px solid #9b9b9b;
  border-radius: 8px;
  width: 100%;
  height: 50px;
  margin: 0 10px;
  padding: 15px 20px;
  font-size: 14px;
  color: #000000;
}

.filter_select:after {
  content: "";
  margin-right: 5px;
}

/* .filter_select option {
  height: 100px;
} */

.filter_input {
  background: #f9f9f9;
  border: 1px solid #9b9b9b;
  border-radius: 8px;
  height: 50px;
  width: 100%;
  padding: 17px 20px;
  margin: 0 10px;
  font-size: 14px;
  color: #000000;

}

.btn_search {
  border: none;
  background-color: #f3b44a;
  padding: 10px;
  border-radius: 4px;
  margin-top: 5px;
}

.type_filter {
  display: flex;
  width: 30%;
}

.search_filter {
  display: flex;
  width: 70%;
}

/* checkbox */

.allEvent{
  margin-top: 10px;
}

.styledCheckbox {
  position: absolute;
  opacity: 0;
}
.styledCheckbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
}

.styledCheckbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 4px;
}

.styledCheckbox:hover + label:before {
  background: #fff;
}

.styledCheckbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styledCheckbox:checked + label:before {
  background: #f3b44a;
}

.styledCheckbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.styledCheckbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}

.styledCheckbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

@media only screen and (max-width: 600px) {
  .filter_form {
    flex-direction: column;
  }

  .type_filter {
    display: flex;
    width: 100%;
  }

  .filter_select {
    margin: 0 0 0 10px;
  }

  .search_filter {
    display: flex;
    width: 100%;
  }

  .filter_input {
    margin: 0 10px 0 0;
  }
}
