
.search_box_page{
    width: 100%;
    height: 30px;
    color:#323232;
    border: 1px solid #323232;
    background-color: transparent;
    padding-right: 40px;
    padding-left: 10px;
}

.list_item:hover .content_holder {
  background-color: var(--colorfirst);
}
.list_item:hover .detail_square {  
  opacity: 0.8 !important;
}
.list_item:hover p,
.list_item:hover span {
  color: white !important;
}
.list_item .image_holder {
  position: relative;
}
.list_item .detail_square {
  background-color: var(--colorfirst);
  position: absolute;
  width: 70%;
  height: 70%;
  opacity: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.list_item .detail_square p {
  color: white;
}
.list_item .detail_square,
.list_item .content_holder {
  webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}