@media (min-width: 768px) {
  .data-wrapped { 
    max-height: none !important;
  }
  .read-more {
    display: none;  
  }
}

body.no-readmore .data-wrapped { 
    max-height: none !important;
}
body.no-readmore .read-more {
  display: none;  
}

.readmorebutton {
  background: #000;
  padding: 10px 30px;
  text-transform: uppercase;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;

  box-shadow: rgba(0,0,0,1) 0 1px 0, rgba(0,0,0,90) 0 0 10px, rgba(0,0,0,90) 0 0 20px, rgba(0,0,0,90) 0 0 30px;
  -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
  -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;

  text-shadow: rgba(0,0,0,.4) 0 1px 0;
  color: white !important;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  text-decoration: none;
  vertical-align: middle;
}
.readmorebutton:hover {
  color: #FFF;
  text-decoration: none;
}
.readmorebutton:active {
  color: #FFF;
  text-decoration: none;
}
.data-wrapped {
  max-height: 400px;
  position: relative;
  overflow: hidden;
  -webkit-transition: height 1s ease-in;
  -moz-transition: height 1s ease-in;
  -ms-transition: height 1s ease-in;
  -o-transition: height 1s ease-in;
  transition: height 1s ease-in;
}
.data-wrapped .read-more { 
  position: absolute; 
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%; 
  text-align: center; 
  margin: 0; 
  padding: 50px 0 30px 0; 
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,0.2+10,0.8+30,1+100 */
background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 10%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 10%,rgba(255,255,255,0.8) 30%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 10%,rgba(255,255,255,0.8) 30%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}