@charset "UTF-8";

.symptons_list {
  display:flex;
  flex-flow: wrap;
}

.symptoms_item{
  list-style-type: none!important;
  padding-left:0!important;
  width: calc((94% / 3));
  margin: 0 1% 2%;
}

.symptoms_item a {
  box-sizing:border-box;
  transition: .3s;
}

.symptoms_item a:hover {
  opacity: .5;
}

.symptoms_image {
  width: 100%;
  position: relative;
  padding-top: 75%;
  box-sizing: border-box;
  border-top: 1px solid var(--i_border_color);
  border-right: 1px solid var(--i_border_color);
  border-left: 1px solid var(--i_border_color);
}

.symptoms_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%!important;
  height: 100%;
  object-position: center;
}

.symptoms_title{
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--i_border_color);
    border-right: 1px solid var(--i_border_color);
    border-left: 1px solid var(--i_border_color);
}

.symptoms_title span:not(.ilb):after{
  content:">";
  font-weight: bold;
  margin: 0 0 0 3px;
}

.ilb {
  display:inline-block;
}

@media screen and (max-width:330px){
.symptoms_title span:not(.ilb):after{
  margin: 0 0 0 1px;
}
}

@media screen and (max-width:550px){
.symptoms_title{
  font-size: 2.9vw;
}
}

@media screen and (min-width:351px) and  (max-width:900px){
.symptoms_item{
  width: calc((96% / 2));
  margin: 0 1% 2%;  
}
}

@media screen and (max-width:350px){
.symptoms_item{
  width: calc((98% / 2));
  margin: 0 0.5% 1%;  
}
}

