
#counsel-product {
  display: block;
  margin: 60px 0;
  font-family: var(--font-family-text);
}

#counsel-product .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

#counsel-product .title {
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  flex: 1;
}

#counsel-product .line-title {
  width: auto;
  height: 2px;
  display: inline-block;
  flex: 1;
}

#counsel-product .line-title.before {
background: linear-gradient(45deg, #fdc90a, #ff7e14, #ff5c14);  
}

#counsel-product .line-title.after {
background: linear-gradient(45deg, #ff5c14, #ff7e14, #fdc90a);    
}

#counsel-product .list {
  display: flex;
}

#counsel-product .list .item::before {
  display: none !important;
}

#counsel-product .list .item>.special-offers {
position: absolute;
top: 0;
right: 0;
display: flex;
column-gap: 20px;
width: fit-content;
}

#counsel-product .list .item>.special-offers span {
  display: inline-block;
  font-family: 'Roboto';
  letter-spacing: 1px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.15);
  color: white;
  width: fit-content;
  padding: 5px 7px;
  border-radius: 0px 0px 6px 6px;
  font-weight: bold;
  text-transform: uppercase;
}

#counsel-product .list .item>.special-offers .new {
  background: linear-gradient(249.52deg, #7DCF06 50.11%, #8DE30E 99.99%);
}

#counsel-product .list .item>.special-offers .lowprice {
  background: linear-gradient(249.52deg, #FF7E14 50.11%, #FFAF14 99.99%);
}


#counsel-product .list .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

#counsel-product .list .item .link {
  display: flex;
  justify-content: center;
}

#counsel-product .list .item .title-name {
  width: fit-content;
  max-width: 225px;
  text-align: center;
  margin: 15px auto;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  flex: 1;
}

#counsel-product .list .icon {
  width: 100%;
  max-width: 220px;
  margin: 0;
}

#counsel-product .list .wrapper-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  font-size: 14px;
}

#counsel-product .list .price {
  color: black;
  text-decoration: none;
  width: fit-content;
  margin: 0 auto;
}

#counsel-product .list .bay-online {
  border: none;
  background: #f4f6f4;
  font-weight: bold;
  padding: 10px 15px;
  line-height: 100%;
  font-size: 14px;
  color: #f68b1f;
  transition: .2s cubic-bezier(0.4, 0, 1, 1);
  border-radius: 5px;
  font-style: normal;
  opacity: 0;
  margin: 10px 0;
}

#counsel-product .list .item:hover .bay-online {
  opacity: 1;
}

#counsel-product .list .item .bay-link {
  text-decoration: none;
}

@media(max-width: 640px) {
  #counsel-product .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 0;
  }

  #counsel-product .list .icon {
    height: auto;
  }

  #counsel-product .list .item {
    margin: 0 10px;
  }

  #counsel-product .list .bay-online {
    opacity: 1;
  }

  #counsel-product .title {
    font-size: 25px;
  }
}