/* Expand the content when click link */
.entry-content .short-content {
    box-shadow: 0 5px 5px -5px rgba(0,0,0,0.2);
    height: 700px;
    margin-bottom: 15px;
    overflow:hidden;
  /*  transform:scaleY(0); */
}

.entry-content .expand {
    height: auto;
    transition:transform 400s ease-out; 
  /*   transform:scaleY(1); 
   transform-origin:top; */
}

.entry-content a.toggle-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 40px;
    box-shadow: unset;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto;
    padding: 3px 5px;
    text-align: center;
    width: 20%;
}

.entry-content a.toggle-btn:hover,
.entry-content a.toggle-btn:active,
.entry-content a.toggle-btn:focus {
    color: inherit;
	outline: none;
}