@charset "utf-8";


/* -- switch button base setting ------------------------------------------------------------ */

div.switch-button ul {
    position: absolute;
    width: auto;
    bottom: 20px;
    left: 30px;
    float: left;
    list-style-type: none;
    line-height: 0;
    font-size: 15px;
}

div.switch-button ul li {
	display: inline-block;
	margin: 0px;
}

div.switch-button ul li a {
	display: inline-block;
    padding: 15px 10px;
    border-radius: 0px;
    text-decoration: none;
    color: #ff7800;
    vertical-align: middle;
}

div.switch-button ul li a:before {
	display: inline-block;
	font-family: 'switch-button' !important;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	font-size: 130%;
	margin-right: 0px;
	vertical-align: middle;
}

div.switch-button ul li a:hover {
	opacity: 0.7;
}




/* -- icon only ------------------------------------------------------------ */

div.icon-only ul li a {
	padding: 9px 10px 9px;
}

div.icon-only ul li a:before {
	margin-right: 0px;
}




/* -- circle ------------------------------------------------------------ */

div.circle ul li a {
	display: inline-block;
	padding: 10px;
	border-radius: 20px;
	text-decoration: none;
	color: #ffffff;
	vertical-align: middle;
}




/* -- switch-button ------------------------------------------------------------ */

div.switch-button ul li.switch a {
	background: rgba(0, 0, 0, .9);
}


/* -- responsive setting ------------------------------------------------------------ */
@media screen and (max-width : 480px) {
  div.switch-button ul {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 15px;
    left: 50%;
    right: 0px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0 auto;
  }

}






