.cart_change_p{
  text-align: center;
}
.cart_change_link {
    text-align: center;
    font-size: smaller;
}
.field {
  position: relative;
/*  width: max-content; */
}
.product-description{
	overflow: hidden;
    max-height: 300px;
    position:relative;
}
.product-description.open {
    height:auto;
    overflow: hidden;
    position:relative;
}
.desc-fade {
    width: 200%;
    margin-left: -50%;
    height: 30px;
    background: #fff;
    z-index: 1;
    position: absolute;
    -webkit-box-shadow: 0 0 20px 30px #fff;
    -moz-box-shadow: 0 0 20px 30px #fff;
    box-shadow: 0 0 20px 30px #fff;
    bottom: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: opacity 250ms,1s;
    -moz-transition: opacity 250ms,1s;
    -o-transition: opacity 250ms,1s;
    transition: opacity 250ms,1s;
}
.open-link {
    position:absolute;
    bottom: 15px;
    z-index:2;
}

#btn_cart{
  margin-bottom: 22px;
}


.field__label {
  color: #919293;
  box-sizing: border-box;
  display: block;
  font-size: .8125em;
  line-height: 1;
  opacity: 0;
  overflow: hidden;
  padding: .5em 1em;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 0;
  text-align: left;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  transition: all .2s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 1;
}
.field--not-empty .field__label {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.field__input {
  background-color: #f5f5f5;
  border: 2px solid #e9e9e9;
  color: #333;
  font-size: 0.8125em;
  padding: .4761904762em;
  transition: all .2s ease-out;
  width: 100%;
}
.field__input:hover, .field__input:focus {
  /* inset | offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: inset 0 0 10px 0 rgba(85, 85, 85, 0.1);
  outline: 0;
}
.field--not-empty .field__input {
  padding-bottom: 2px;
  padding-top: 18px;
  text-align: end;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #919293;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #919293;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #919293;
}
:-moz-placeholder { /* Firefox 18- */
  color: #919293;
}
.img-wrap{
        overflow:hidden; position:relative;
        img{ height:100%; max-width:100%; width:auto; display:inline-block; object-fit:scale-down;} /*object-fit:cover*/
}