/* Expand the content when click link */
.toggle-content {
	position: relative;
    margin-bottom: 30px;
    line-height: 2;
    max-height: 250px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.toggle-content.expand {
    max-height: initial;
}
.toggle-content.expand .readmore-box {
	display: contents;
	background: none;
}
.toggle-content .readmore-box {
	cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 120px 0 0;
    color: #4c79ef;
    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: #4c79ef;
    background-color: #f2f2f2;
    font-size: 10px;
    line-height: 30px;
    font-weight: bold;
    display: block;
    border: 1.5px solid #4c79ef;
    border-radius: 13px;
    margin: 0 auto;
    padding: 4px 10px;
    vertical-align: bottom;
    margin-top: 12px;
    height: 41px;
    width: 150px;
    box-sizing: border-box;
}