html,body{
  overflow-x: hidden; 
  position: relative;
}

form.search_produto input {
  width: 246px;
  margin-left: 10px;
  font-size: 14px;
  height: 53px;
  padding-left: 22px;
  border-radius: 5px;
  background-image: url(../images/assets/lupa.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  border: 1px solid #e6e5e5;
  background-color: #f2f2f2;
  margin-right: 50px;
}
.selecionar_produtos {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
  padding-top: 15px;
}
span.resultado {
  display: block;
  color: #666666;
  font-size: 14px;
}

ul.paginacao {
  margin: auto;
  list-style: none;
  padding: 36px 0;
  width: 100%;
  text-align: center;
}
ul.paginacao li {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #e6e5e5;
  border-radius: 4px;
}
ul.paginacao li a {
  color: #676767;
  font-weight: 600; 
}
ul.paginacao li:hover {
  background: #008d00;
  cursor: pointer;
  color: white;
  cursor: pointer;
}
ul.paginacao li:hover a{
  color: white;
}
/* select */
.custom-select {
  position: absolute;
  right: 13px;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
 background-color: #f2f2f2;
color: #676767 !important;
width: 150px;
border-radius: 5px;
border: 1px solid #e6e5e5 !important;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 0;
  height: 0;
  font-size: 14px;
  border: 6px solid transparent;
  border-color: #676767 transparent transparent transparent;
}
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  position: relative;
}
.select-items div {
  font-size: 14px;
  font-weight: 600;
}
.select-items {
  position: absolute;
  background-color: #008d00;
  top: 100%;
  left: 0;
  border-radius: 5px;
  right: 0;
  z-index: 99;
}
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* fim select */


@media screen and (max-width: 1190px){
  .box_produtos {
    width: calc(100% / 3 + -21px) !important;
  }
}

@media screen and (max-width: 615px){
  .selecionar_produtos{
    display: block;
    margin-bottom: 65px;
  }
  span.resultado{
    text-align: center;
    margin: 15px 0;
  }
  form.search_produto input {
    display: block;
    margin: auto;
    height: 35px;
    width: 91%;
  }
  .custom-select {
    position: absolute;
    right: 0;
    display: block !important;
    width: 100%;
  }
  .select-selected{
    width: calc(100% + -43px);
    margin: auto;
  }
  .select-selected:after{
    top: 16px;
  }
  .box_produtos {
    width: 100% !important;
  }
  .imagem_produto {
    height: 254px;
  }
}