#m-searchpanel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width  : 100%;
  margin-bottom: 40px;
}
.m-searchpanel__template{
  width: 40%;
  position: relative;
  select{
    width: 100%;
  }
  &:after{
    position: absolute;
    bottom: 20px;
    right: 10px;;
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      background         : url('~@images/select.svg');
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
  }
  select{
    border: solid 1px #cbd7e8;
    border-radius: 0;
    padding: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 67, 175, 0.1);
    background: #ffffff;
  }
}
