* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: okmedia-medium;;
  list-style: none;
  outline: none;
}
.search {
  background-image: linear-gradient(90deg, #5040b2, #7a69e6);
  position: relative;
}
.search .texture {
  background-repeat: repeat;
  filter: grayscale(100%) opacity(0.05) brightness(100);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-size: 210px;
  background-position: center;
  pointer-events: none;
}
.search .container {
  display: flex;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
}
.search .reportTitle {
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  display: flex;
  overflow: hidden;
}
#okmediaLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}
.search .reportTitle .tab {
  color: #ffffff82;
  z-index: 1;
  background-color: #5346a38f;
  font-size: 35px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  padding: 15px 15px 0 15px;
}
.search .reportTitle .tab.active {
  background-color: #42397f9e;
  color: white;
}
.search .searchInput {
  background-color: #42397f9e;
  padding: 15px;
  display: flex;
  width: 100%;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  z-index: 1;
}
.search .searchInput>input {
    width: 33%;
}
.search .searchInput>label {
    width:33%;
    position: relative;
}
.search .searchInput>label span {
    position: absolute;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #ebebeb;
    color: #323232;
    border-radius: 8px;
}
.search .searchInput>label input,
#reportFieldsetFirst input {
    width: 100%;
}
.search .searchInput>label input {
    padding-left: 100px;
}
.search .searchInput input {
  font-size: 1.4em;
  height: 80px;
  padding-left: 30px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border: none;
  box-shadow: 0 5px 5px #4a4a731a;
}
.search .searchInput .searchBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: white;
  padding: 7px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.search .searchInput .searchBtn button {
  display: block;
  background-color: #4c3f98;
  color: white;
  padding: 18px 41px;
  font-size: 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  border: none;
  transition: 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
#backHome {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    gap: 10px;
    margin-top: 30px;
    font-size: 25px;
}
.search .searchInput .searchBtn button:hover {
    background-color: #059b52;
}
#reportForm fieldset:not(:first-of-type) {
  display: none;
}
#progressBarContainer {
  color: #fff;
}
#progressBarContainer h4 {
  text-align: center;
  margin-bottom: 10px;
}
#progressBar {
  width: 100%;
  height: 10px;
  background-color: #ddd;
  border-radius: 5px;
  overflow: hidden;
}
#progressBarInner {
  height: 100%;
  width: 0;
  background-color: #06b45e;
  transition: all 0.3s ease-in-out;
}
#hiddenForm {
  display: none;
}
#progressBarInner.progress-bar-animated {
  animation: progress-bar-stripes 10s linear forwards;
}
@keyframes progress-bar-stripes {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
#progressPercent {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-top: 10px;
}
#reportFieldsetSecond .searchInput {
  gap: 10px;
}
#reportFieldsetSecond input {
  border-radius: 8px;
}
#reportFieldsetSecond .searchBtn {
  background-color: #fff;
  border-radius: 4px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
#reportFieldsetThree {
  background: #fff;
  text-align: center;
  font-size: 25px;
  padding: 20px;
  border-radius: 16px;
}
#reportFieldsetThree {
    color: green;
}
@media (max-width: 768px) {
    .search .searchInput {
        flex-direction: column;
    }
    .search .searchInput input {
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0px;
        height: 50px;
        font-size: 14px;
        width: 100%;
    }
    .search .searchInput>label {
        width: 100%;
    }
    .search .searchInput>label input {
        padding-left: 80px;
    }
    .search .searchInput>label span {
        font-size: 16px;
        padding: 15px;
    }
    .search .searchInput .searchBtn {
        border-bottom-left-radius: 4px;
        border-top-right-radius: 0;
    }
        .search .searchInput .searchBtn button {
        font-size: 12px;
        width: 100%;
        text-align: center;
        padding: 8px 41px;
    }
}