@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
  --t:rgba(13, 255, 0, 0.55); /*true*/
  --f:rgba(245, 39, 39, 0.55); /*false*/
  --m:rgba(196, 182, 0, 0.9); /*middle*/
  --u:rgba(169, 169, 169, 1); /*Unknown*/
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background: #122D36;
  padding: 0 20px;
}
.ansb{
  background-color: white;
  width: 60%;
  max-width: 500px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.1);
  color:white;
  margin: auto;
  text-align: center;
  text-shadow: 2px black;
font-family: 'Rubik', sans-serif;
}
.ni{
margin: 150px auto;
}
.ansc{
color:white; 
font-size: 17px;
text-align: center;
font-family: 'Rubik', sans-serif;
text-shadow: 1px 1px #7f3225;

}
.ansc2{
color: white; 
font-size: 17px;
text-align: center;
font-family: 'Rubik', sans-serif;
text-shadow: 1px 1px #580221  ;
}

::selection{
  color: #fff;
  background: #664AFF;
}

.wrapper{
  max-width: 450px;
  margin: 150px auto;
}

.wrapper .search-input{
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
}

.search-input input{
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

.search-input.active input{
  border-radius: 5px 5px 0 0;
}

.search-input .autocom-box{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.search-input.active .autocom-box{
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}

.autocom-box li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.search-input.active .autocom-box li{
  display: block;
}
.autocom-box li:hover{
  background: #efefef;
}

.search-input .icon{
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #c8507a;
  cursor: pointer;
}
.tit{
text-align: center;
color:white;
}
