.gift_voucher_item{
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
  display: flex;
  direction: ltr;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit !important;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
}
.gift_voucher_item * {
  text-decoration: none !important;
}
.gift-voucher-image-wrapper{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.gift-voucher-info-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.gift-voucher-image-wrapper img{
  width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover; 
  border-radius: 20px;
}
.gift-voucher-image-wrapper img:hover{
  border: 1px solid var(--pink-color);
}
.gift_voucher_item.selected .gift-voucher-image-wrapper img {
  border: 2px solid var(--pink-color);
}
/* .gift-voucher-image-wrapper img:hover{
  border: 1px solid var(--red-color);
} */
.gift-voucher-title{
  font-family: var(--font-main);
  font-weight: bold;
  font-size: 16px;
  color: var(--black-color);
  text-align: right;
  text-decoration: none;
  width: 90%;
  margin-top: 10px;
}
.gift-voucher-description {
  margin-top: 10px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--black-color);
  text-align: right;
  display: none;
  justify-content: center;
  align-items: center;
  width: 90%;
}