{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  position: relative;
  font-family: 'Poppins', sans-serif;
}
wrapper, .search-data {
    top: 5%;
    left: 20%;
    /* transform: translate(-2%, -2%); */
    width: 50%;
    right: 20%;
}
.wrapper{
  position: fixed;
  background: #fff;
  transition: all 0.4s linear;
}
.wrapper.active{
  height: 90%;
  width: 100%;
  z-index: 1000;
  overflow-x: scroll;
}
.search-btn{
  position: absolute;
  top: 0%;
  right: 10%;
  transform: translate(-10%, -10%);
  height: 60px;
  width: 60px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
}
.search-btn span{
  color: #fff;
  font-size: 22px;
  line-height: 60px;
}
.search-data{
  position: absolute;
  height: 50px;
  width: 60%;
  display: flex;
  text-align: center;
  /* display: none; */
}
.search-data input{
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 300;
  color: #5a5a5a;
}
.search-data .line{
  position: absolute;
  height: 3px;
  width: 100%;
  background: #bfbfbf;
  bottom: 0;
  transform: scaleX(0);
  transition: transform 0.4s 0.3s linear;
}
.search-data .line.active{
  transform: scaleX(1);
}
.search-data label{
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #bfbfbf;
}
.search-data input:valid ~ label{
  opacity: 0;
}
.search-data span {
    color: #bfbfbf;
    position: absolute;
    width: 20px;
    font-size: 18px;
    right: 0;
    top: 0;
    line-height: 55px;
    cursor: pointer;
}
.close-btn {
    position: absolute;
    z-index: 99;
    right: 25px;
    top: 15px;
    font-size: 18px;
    color: #5a5a5a;
    cursor: pointer;
}
.search-data, .search-data span,
.search-data label, .close-btn{
  display: none;
}

.clear-data {
    color: #5a5a5a;
    position: absolute;
    width: 20px;
    font-size: 16px;
    left: 80%;
    top: 0;
    line-height: 55px;
    cursor: pointer;
    border: none;
    background: transparent;
    display: none;
}

.tipue_drop_text{
  font-size: 10px;
  font-weight: 500;
  color:#8c8c8c;
}

@media screen and (min-width: 1400px) {
  wrapper, .search-data {
    left: 40%;
    width: 20%;
    right: 40%;
}
    .search-data {
    width: 40%;
}
}

@media screen and (min-width: 1000px) {
  wrapper, .search-data {
    left: 35%;
    width: 30%;
    right: 35%;
}
    .search-data {
    width: 30%;
}
}

@media (max-width: 400px) {
  .search-data {
    width: 90%;
    left:  5%;
    right: 5%;
}

}

@media screen and (min-width: 560px) {
  .clear-data {
    left:  88%;
}
}

@media screen and (min-width: 1200px) {
  .clear-data {
    left:  89%;
}
}

@media screen and (min-width: 1600px) {
  .clear-data {
    left:  92%;
}
}