.btn-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: center;
}
.btn-container:has(.btn-2-detail-page:hover) {
  gap: 0;
}
.btn-container:has(.btn-2-detail-page:hover) .btn-add-2-basket {
  width: 0;
  overflow: hidden;
}
.btn-container:has(.btn-2-detail-page:hover) .btn-2-detail-page {
  width: 100%;
  padding-right: 46px;
}
.btn-container:has(.btn-2-detail-page:hover) .btn-2-detail-page > span {
  display: block;
}
.btn-container .btn-add-2-basket {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s ease;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 0;
  background-color: #5BAA00;
  border-radius: 3px;
  width: 100%;
}
.btn-container .btn-2-detail-page {
  position: relative;
  transition: all 0.5s ease;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50px;
  border: 2px solid #5BAA00;
}
.btn-container .btn-2-detail-page span {
  display: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  text-transform: uppercase;
  color: #5BAA00;
  padding: 12px 0 12px 12px;
}
.btn-container .btn-2-detail-page::after {
  content: "";
  width: 10px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  background-image: url("../images/catalog/catalog_btn_arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}/*# sourceMappingURL=catalog.css.map */