.toggle-content {
position: relative;
margin-bottom: 30px;
line-height: 2;
max-height: 700px;
overflow: hidden;
-webkit-transition: 0.3s;
transition: 0.3s;
}
.toggle-content.expand {
max-height: initial;
}
.toggle-content.expand .readmore-box {
background: none;
}
.toggle-content .readmore-box {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 120px 0 0;
color: #b20209;
text-align: center;
background: #fff;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), color-stop(85%, #fff));
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 85%);
}
.toggle-content .readmore-box .button {
max-width: 200px;
color: #a60711;
background-color: #fff;
font-size: 20px;
line-height: 30px;
font-weight: bold;
display: block;
border: 1.5px solid #ff8c00;
border-radius: 13px;
margin: 0 auto;
padding: 4px 10px;
vertical-align: bottom;
margin-top: 12px;
height: 41px;
width: 150px;
box-sizing: border-box;
}