/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.read-more {
  position: relative;
}
.read-more__button {
  display: none;
}
.read-more--init {
  overflow: hidden;
}
.read-more--init .read-more__content:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #f7f5ef 10%, rgba(247, 245, 239, 0) 100%);
  pointer-events: none;
}
.read-more--active.read-more--init .read-more__content {
  height: auto;
  overflow: visible;
}
.read-more--active.read-more--init .read-more__content:before {
  -webkit-animation: fadeOut 200ms ease-in forwards;
  -moz-animation: fadeOut 200ms ease-in forwards;
  -ms-animation: fadeOut 200ms ease-in forwards;
  -o-animation: fadeOut 200ms ease-in forwards;
  animation: fadeOut 200ms ease-in forwards;
}
.read-more--init .read-more__button {
  display: flex;
  justify-content: center;
}
.read-more--init .read-more__button .bttn {
  color: #c2bfb6;
}
