.catalog-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  opacity: 0.8;
  background: linear-gradient(90deg, #1F295A 13.36%, #4B5FB8 92.42%);
  border-radius: 0 20px 20px 0;
  padding: 5px 0;
  box-sizing: border-box;
  margin-top: 20px;
  left: -103px;
  transition: ease 0.4s;
}


@media only screen and (min-width: 576px) {
  .catalog-button:hover {
    left: 0;
    opacity: 1;
  }
}

.catalog-button-hover {
  left: 0;
  opacity: 1;
}

.catalog-button-text {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 2px 0 8px;
}

.catalog-button-img {
  width: 40px;
  height: 40px;
  padding: 10px;
}

#catalog-button-x-icon {
  display: none;
  fill: #fff;
  opacity: 0.2;
  width: 30px;
  height: 30px;
  cursor: pointer;
  padding-right: 15px;
  transition: ease 0.2s;
}

#catalog-button-x-icon:hover {
  opacity: 0.7;
}



.product-info-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 50px 0;
}

.product-info-img-box {
  /* max-height: 350px; */
  box-sizing: border-box;
  border-radius: 38px;
  background-color: #F4F4F4;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 33%;
}

.product-info-img {
  max-height: 100%;
  max-width: 100%;
}

.product-info-content {
  padding-left: 40px;
  width: 100%;
}

.product-info-name {
  max-height: 70px;
  border-radius: 38px;
  background-color: #4B5FB8;
  padding: 25px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.product-info-count-and-code-and-details-and-ingredients {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
}

.product-info-count-and-code-and-details {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  /*max-width: 600px;*/
  width: 100%;
}

.product-info-count-and-code {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.product-info-code {
  margin-left: 10px;
}

.product-info-details {
  font-weight: 300;
  line-height: 1.5;
}

.product-info-price-and-button {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.product-info-price {
  background-color: #4B5FB8;
  border-radius: 20px;
  color: #fff;
  align-self: stretch;
  padding: 0.3em 1em;
  font-size: 20px;
  font-weight: 600;
  margin: 1em 5px;
  white-space: nowrap;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.product-info-price.product-info-contact-us-button {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  background-color: #122783;
  cursor: pointer;
  transition: ease 0.4s;
}

.product-info-price.product-info-contact-us-button:hover {
  background-color: #4B5FB8;
}

.product-ingredients {
  box-sizing: border-box;
  max-width: 500px;
  width: 100%;
  margin: 0 20px;
  font-size: 18px;
  background-color: #E9FCFF;
  padding: 20px 40px;
  border-radius: 38px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: none;
  align-items: center;
}

.product-ingredients-table {
  border-collapse: collapse;
  width: 100%;
}

.product-ingredients-table-tr {
  border-top: solid 1px rgba(0, 0, 0, 0.7);
}

.product-ingredients-table-tr:first-child {
  text-align: center;
  border-top: none;
}

.product-ingredients-table-td {
  padding: 0.3em 0;
}

.product-ingredients-table-td:nth-child(2) {
  text-align: right;
}