body{
  font-family: sans-serif;

  padding: 5px 3px 3px 3px;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.title{
  text-align: center;

}
mark{
  background: #ffec82;
}
.search-bar{
  margin: 1px auto;
  background: #3d383c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-width: 310px;
  max-width: 500px;
  border-radius: 8px;
  padding: 0 10px;
  color: #fff;
}
.search-bar input{
  flex-grow: 1;
  height: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
}
.search-bar input:placeholder{
  color: #b7b7b7;
}
.search-bar input:focus{
  outline: none;
}
.panels{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  margin: 1px 0 1px 0; //5em 0 3em 0
}
.panel{
  background: #3b383b;
  padding: 5px 10px 5px 10px; //1.5em 1.8em 1.5em 1.8em;
  min-width: 310px;
  max-width: 500px;
  border-radius: 8px;
  text-align: left;
}
.panel .material-symbols-outlined{
  width: 1.6em;
  height: 1.6em;
  color: #111;
  background: #fff82a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}
.panel h2{
  margin: 5px 0 5px 0;
  font-size: 18px;
  color: #000;
}
.panel h3{
  margin: 5px 0 5px 0;
  font-size: 16px;
  color: #05a3ff;
}
.panel p{
  font-size: 14px;
  color: #1ed14b;
  margin: 0;
}
.panel a{
  display: inline-block;
  color: #fff;
  margin-top: 20px;
}
.panel a:hover{
  color: #fff82a;
}
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul{
  list-style: none;
}
.panel{
  min-width: 360px;
  background: #fff;
  box-shadow: 2px 2px 10px rgba(0,0,0, .1);
  margin: 5px;
  border-radius: 10px;
}
/*.title{
  margin-bottom: 1em;
  font-size: 1.3em;
  max-width: 15em;
}*/
.option{
  background: #f2f2f2;
  padding: 1em 1em 1em 3em;
  margin: 0.5em 0;
  border-radius: 5px;
  position: relative;
  transition: 0.2s;
}
.option:hover{
  background: #e5e5e5;
}
.option input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.option span::before,
.option span::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.option span::before{
  background: #;
  border: 1px #ccc solid;
  width: 1.5em;
  height: 1.5em;
  left: 0.5em;
}
.option span::after{
  background: none;
  width: 1em;
  height: 1em;
  left: 0.83em;
  transition: 0.2s;
}
.option input:checked + span:after{
  background: #05a3ff;
}
/*----------+++++++++++++++++++++++++++++++++++-----------*/
.options{
  background: #f2f2f2;
  padding: 1em 1em 1em 3em;
  margin: 0.5em 0;
  border-radius: 5px;
  position: relative;
  transition: 0.2s;
}
.options:hover{
  background: #e5e5e5;
}
.options input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.options span::before,
.options span::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.options span::before{
  background: #;
  border: 1px #ccc solid;
  width: 1.5em;
  height: 1.5em;
  left: 0.5em;
}
.options span::after{
  background: none;
  width: 1em;
  height: 1em;
  left: 0.83em;
  transition: 0.2s;
}
.options input:checked + span:after{
  background: #05a3ff;
}