.produto_hv {
  background: #fdfdfd;
}

.produto_hv:hover {
  box-shadow: 0px 0px 10px #888888;
}

.img_sobrepoe {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* height: 0px; */
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: top 0.7s;
}

.btn_carrinhoadd {
  display: none;
}

.produto_hv:hover .img_sobrepoe {
  /*
  top: 50%;
   opacity: 1;
  */
}

.produto_hv:hover .btn_carrinhoadd {
  display: block;
}

.produto_hv .img_anuncio {
  height: 95%;
  width: 100%;
  object-fit: contain;
  transition: height 0.5s;
}

.produto_hv:hover .img_anuncio {
  height: 100%;
}

.produto_hv:hover .btn_product {
  display: block;
  /* opacity: 1; */
}

.produto_hv:hover .btn_product:not(.d-block) {
  -webkit-animation: slide-down 0.4s ease-out;
  -moz-animation: slide-down 0.4s ease-out;
}

/* PRODUTO IMAGE */
.img_produto {
  position: relative;
  z-index: 1;
}

.img_background {
  background: rgba(255, 0, 0, 0);
  background: linear-gradient(180deg, rgba(255, 0, 0, 0), rgba(250, 250, 250, 0.05), rgba(149, 149, 149, 0.3));
  height: 100%
}

.img_content {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* :not(.d-block) {
     -webkit-animation: slide-down 0.4s ease-out;
     -moz-animation: slide-down 0.4s ease-out;
}
 */
/* @-webkit-keyframes slide-down {
     0% {
         opacity: 0;
         -webkit-transform: translateX(100%);
    }
     100% {
         opacity: 1;
         -webkit-transform: translateX(0);
    }
}
 @-moz-keyframes slide-down {
     0% {
         opacity: 0;
         -moz-transform: translateX(100%);
    }
     100% {
         opacity: 1;
         -moz-transform: translateX(0);
    }
}
 */
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.btn_product {
  display: none;
  width: 40px;
  height: 40px;
  text-decoration: none;
  box-shadow: 0px 0px 10px #888888;
  background-color: #ff0000;
}

.btn_product.d-block {
  background: #ff4500;
}

.btn_product:not(.d-block) {
  background: #ff7979;
}

.btn_product:hover:not(.d-block) {
  background-color: #ff4500;
}

.btn_product svg {
  top: 50%;
  transform: translateY(4%);
}

.img_produto {
  position: relative;
  z-index: 1;
}

.img_background {
  background: rgba(255, 0, 0, 0);
  background: linear-gradient(180deg, rgba(255, 0, 0, 0), rgba(250, 250, 250, 0.05), rgba(149, 149, 149, 0.3));
  height: 100%
}

.img_content {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

input[type="radio"]+label:not(.adm) {
  /* background: #f8f9fa !important; */
  height: 37px;
  min-width: 37px;
  border: #c2c2c2 5px double;
  /* line-height: 26px;*/
  text-align: center;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 10px;
}

input[type="radio"]+label:not(:last-child):not(.adm) {
  margin-right: 5px;
}

input[type="radio"]+label:not(.adm):before {
  content: attr(grade);
}

input[type="radio"]+label:not(.adm):hover {
  border: #0D6EFD 5px solid;
}

input[type="radio"]:checked+label:not(.adm) {
  border: red 5px outset !important;
  /* background: #0D6EFD !important; */
  /* color: white !important; */
}

input[type="radio"]:checked+label:not(.adm):after {
  /* font-family: 'google_false'; */
  /* content: "check"; */
  /* content: '<span class="material-symbols-outlined">check_small</span>'; */
  /* content: attr(badge); */
  background: green;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  margin-top: -5px;
  width: 20px;
  height: 20px;
  padding: 2px;
  position: absolute;
  text-align: center;
}

.work img:not(:last-child) {
  margin-right: 10px;
}

.product_grade.product_add:not(.list_grade) {
  /* background: green;
      color: white; */
  padding: 10px;
}

.product_grade.product_add:not(.list_grade):after {
  content: 'Adicionado com sucesso';
}