/*========= Speech Bubble for Testimonials
 * ========      Left arrow      ========*
\*======================================*/


.rectangle-speech-bubble, .rectangle-speech-bubble-left {
  width: 70.212765957447%; /*660 / 940 */
  position:relative;
  padding:2em !important;
  margin: 0em auto 6em auto !important;
  background:#C6A0B4;
  color: #F9F8EA;
  font-size: 0.85em !important;
  line-height: 1.5em;
  display: block;
  /* css3 */
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  border-radius:10px;
}

/* creates larger curve */
.rectangle-speech-bubble:before {
  content:"";
  position:absolute;
  z-index:10;
  bottom:-15px;
  left:69px;
  width:30px;
  height:15px;;
  border-style:solid;
  border-width:0 10px 10px 0;
  border-color: #C6A0B4;
  background:transparent;
  /* css3 */
  -webkit-border-bottom-right-radius:30px 30px;
  -moz-border-radius-bottomright:30px 30px;
  border-bottom-right-radius:30px 30px;
  /* reduce the damage in FF3.0 */
  display:block;
}

/* creates smaller curve */
.rectangle-speech-bubble:after {
  content:"";
  position:absolute;
  z-index:10;
  bottom:-15px;
  left:65px;
  width:5px;
  height:5px;
  border-style:solid;
  border-width:0 10px 10px 0;
  border-color:#C6A0B4;
  background:transparent;
  /* css3 */
  -webkit-border-bottom-right-radius:20px 10px;
  -moz-border-radius-bottomright:20px 20px;
  border-bottom-right-radius:20px 20px;
  /* reduce the damage in FF3.0 */
  display:block;
}

/* creates a small circle to produce a rounded point where the two curves meet */
.rectangle-speech-bubble > :first-child:before {
  content:"";
  position:absolute;
  bottom:-15px;
  left:62px;
  width:10px;
  height:10px;
  background:#C6A0B4;
  /* css3 */
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  border-radius:10px;
}

/* creates a white rectangle to cover part of the oval border*/
.rectangle-speech-bubble > :first-child:after {
  content:"";
  position:absolute;
  bottom:-10px;
  left:76px;
  width:20px;
  height:10px;
  background:#C6A0B4;
}


/*========= Speech Bubble for Testimonials
 * ========      Right arrow      ========*
\*======================================*/

/* creates larger curve */
.rectangle-speech-bubble-left:before {
  content:"";
  position:absolute;
  z-index:10;
  bottom:-15px;
  right:69px;
  width:30px;
  height:15px;
  border-style:solid;
  border-width:0px 0px 10px 10px;
  border-color: #C6A0B4;
  background:transparent;
  /* css3 */
  -webkit-border-bottom-left-radius:30px 30px;
  -moz-border-radius-bottomleft:30px 30px;
  border-bottom-left-radius:30px 30px;
  /* reduce the damage in FF3.0 */
  display:block;
}

/* creates smaller curve */
.rectangle-speech-bubble-left:after {
  content:"";
  position:absolute;
  z-index:10;
  bottom:-15px;
  right:65px;
  width:5px;
  height:5px;
  border-style:solid;
  border-width:0px 0px 10px 10px;
  border-color:#C6A0B4;
  background:transparent;
  /* css3 */
  -webkit-border-bottom-left-radius:20px 20px;
  -moz-border-radius-bottomleft:20px 20px;
  border-bottom-left-radius:20px 20px;
  /* reduce the damage in FF3.0 */
  display:block;
}

/* creates a small circle to produce a rounded point where the two curves meet */
.rectangle-speech-bubble-left > :first-child:before {
  content:"";
  position:absolute;
  bottom:-15px;
  right:62px;
  width:10px;
  height:10px;
  background:#C6A0B4;
  /* css3 */
  -webkit-border-radius:10px;
  -moz-border-radius:10px;
  border-radius:10px;
}

/* creates a white rectangle to cover part of the oval border*/
.rectangle-speech-bubble-left > :first-child:after {
  content:"";
  position:absolute;
  bottom:-10px;
  right:74px;
  width:25px;
  height:10px;
  background:#C6A0B4;
}