﻿
/* -------- more button  --------- */
.more {
 display: inline-block;
 border-radius: 4px;
 background-color: #d2ae76;  	/* #dfbf8d */
 border: none;
 color: #FFFFFF;
 text-align: center;
 font-size: 16px;
 line-height: 20px;
 ---padding-bottom: 2px;
 width: 140px;
 transition: all 0.5s;
 cursor: pointer;
 margin: 0; 
 }
.more span {
 cursor: pointer;
 display: inline-block;
 position: relative;
 transition: 0.5s;
 }
.more span:after {
 content: '\00bb';
 position: absolute;
 opacity: 0;
 top: 0;
 right: -20px;
 transition: 0.5s;
 }
.more:hover span {
 padding-right: 25px;
}
.more:hover span:after {
 opacity: 1;
 right: 0;  
 }
