﻿
/*  alleen voor review button ellipse.d.*/

.reviewcontain2 {
    /* border: 2px solid  #00FF00;   #ccc; */
    border-radius: 10px; /* 5 */
}

.quote-wrapper {
  width: 140px;/*300*/
  height: 140px;/*300*/
  position: relative;
  margin: 10vh auto 0; /*OPTIONAL MARGIN*/
  cursor: pointer;
}


.textCrcl {
    width: 100%;
    height: 80%;
    padding-top: 35px; /*khp*/
    /*BLUE BG
  background: radial-gradient(
    ellipse at center,
    rgba(0, 128, 172, 1) 0%,
    rgba(0, 128, 172, 1) 70%,
    rgba(0, 128, 172, 0) 70.3%
  );*/
    /*background: radial-gradient( ellipse at center, rgba(0, 128, 172, 1) 0%, rgb(0, 172, 43) 70%, rgba(0, 128, 172, 0) 70.3% );*/
    background: radial-gradient( ellipse at center, #75c5de 0%, #75c5de29 70%, rgba(0, 128, 172, 0) 70.3% );
    /*RED BG
  background: radial-gradient(
    ellipse at center,
    rgba(210, 20, 20, 1) 0%,
    rgba(210, 20, 20, 1) 70%,
    rgba(210, 20, 20, 0) 70.3%
  );*/
    position: relative;
    margin: 0;
    color: white;
}

.textCrcl p {
  height: 100%;
  font-size: 17px;/*21*/
  line-height: 1.25;
  padding: 0;
  text-align: center;
  font-style:  normal; /* italic */
  font-weight: bold;
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}

.textCrcl::before {
  content: "";
  width: 50%;
  height: 100%;
  float: left;
  shape-outside: polygon(
    0 0,
    98% 0,
    50% 6%,
    23.4% 17.3%,
    6% 32.6%,
    0 50%,
    6% 65.6%,
    23.4% 82.7%,
    50% 94%,
    98% 100%,
    0 100%
  );
  shape-margin: 7%;
}

.textCrcl p::before {
  content: "";
  width: 50%;
  height: 100%;
  float: right;
  shape-outside: polygon(
    2% 0%,
    100% 0%,
    100% 100%,
    2% 100%,
    50% 94%,
    76.6% 82.7%,
    94% 65.6%,
    100% 50%,
    94% 32.6%,
    76.6% 17.3%,
    50% 6%
  );
  shape-margin: 7%;
}

.quote-wrapper blockquote footer {
bottom: 5px;
}

.quote-wrapper blockquote footer {
  width: 100%;
  position: absolute;
  bottom: 5px;
  font-size: 12px;
  text-align: center;
  font-style: italic;
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}

.quote-wrapper::before {
  content: "\201C";
  font-size: 270px;
  height: 82px;
  line-height: 0.78;
  line-height: 1;
  position: absolute;
  top: -48px;
  left: 0;
  z-index: 1;
  font-family: sans-serif, serif;
  color: #ccc;
  opacity: 0.9;
}

@media (min-width: 1850px) { /* 850 -> 1850 dus uit */
  .quote-wrapper {
    width: 200px;/*370*/
    height: 200px;/*370*/
  }

  .quote-wrapper::before {
    font-size: 300px;
  }

  .textCrcl p {
    font-size: 23px;
  }

  .quote-wrapper blockquote footer {
    bottom: 32px;
  }

	.quote-wrapper blockquote footer {
	  width: 100%;
	  position: absolute;
	  bottom: 25px;
	  font-size: 17px;
	  text-align: center;
	  font-style: italic;
	  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
	}
}

