.product_desc h3{
  margin: 0;
}

.product_title a{
  color: #222;
}
.product_title{
  font-size: 15px;
  color: #222;
  padding: 5px 0 3px 0;
}

.product_price{
  font-size: 13px;
  text-decoration: none;
  color: #222;
  padding: 0 0 5px 0;
}

.product_desc > form{
  flex: 1 1 auto;
  display: flex;
  min-height: 0%;
  flex-direction: column;
  justify-content: space-between;
}

.product_desc{
  padding: 0 5px;
  display: flex;
  min-height: 0%;
  flex-direction: column;
  flex: 1 1 auto;
}

.product_desc p{
  font-size: 12px;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: break-all;
  margin: 0 0 5px 0;
}

.list{
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.list__item > div{
  height: auto;
  width: 100%;
  background: #eee;
  padding: 5px;
  min-height: 0%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list__item img{
  width: 100%;
  height: auto;
}


.list__item{
  width: 220px;
  padding: 3px;
  min-height: 0%;
  display: flex;
}

.product_img{
  height: auto;
  min-height: 0%;
}

@media (min-width: 1280px){
  .search-table ul {
    margin: 0 0 0 calc( 24.88vw - 330px );
    width: max-content;
  }
}

@media (max-width: 1280px)
{
  .list__item
  {
    width: 25%; /* 3 items per row */
    max-width: 220px;
  }
}

@media (max-width: 1100px)
{
  .list__item
  {
    width: 33.33%; /* 3 items per row */
    max-width: 100%;
  }
}

@media (max-width: 766px)
{
  .list__item
  {
    width: 100%;
    max-width: 100%;
  }
  .product_img{
    display: flex;
    align-items: center;
    width: 33.33%;
  }
  .product_desc{
    margin: 0;
    width: 76.77%;
  }
  .product_title{
    color: #222;
    margin: 5px 0;
  }
  .product_desc p{
    display:inline;
    font-size: 12px;
    line-height: 1.3;
    word-wrap: break-word;
    word-break: break-all;
  }
  .list__item > div{
    flex-direction: row;
    word-wrap: break-word;
    word-break: break-all;
  }
}

#search-sidebar{
  float: right;
  width: 200px;
}
#search-result-container {
  float: left;
  width: calc(100% - 210px);
}

@media (min-width: 1028px) {
  .fullscreen{
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1028px) {
  #search-sidebar {
    float: right;
    width: 19%;
  }
}
@media (max-width: 1028px) {
  #search-result-container {
    float: left;
    width: 80%;
  }
}

@media (max-width: 766px) {
  #search-result-container {
    width: 100%;
  }
  #search-sidebar.pull-left {
    float: none !important;
  }
  #search-result-container.pull-right {
    float: none !important;
  }
}

.button-group a{
  width: auto;
  padding: 12px;
}