@charset "UTF-8";

/* ANKER */

#tab--menu {
	margin-top: -32px;
	padding-top: 32px;
}

/* -------------------- */

/* TAB BUTTON */

.tab_button {
	display: table;
	overflow: hidden;
	width: 100%;
	margin-bottom: 30px;
	border-radius: 12px;
	text-align: center;
}
.tab_button li {
	display: table-cell;
	overflow: hidden;
	border-right: solid 1px rgba(255,255,255,0.75);
}
.tab_button li:last-child {
	border: none;
}
.tab_button__icon {
	width: 62px;
	text-align: center;
}
.tab_button li a {
	display: block;
	padding: 10px 0;
	letter-spacing: 1.5px;
	font-size: 24px;
	font-weight: bold;
	color: rgba(255,255,255,1);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* Microsoft Edge */

.tab_button > li:first-child {
	border-radius: 12px 0 0 12px;
}
.tab_button > li:last-child:hover,
.tab_button > li:last-child .tab--active {
	border-radius: 0 12px 12px 0;
}

/* -------------------- */

/* COLOR */

.tab_button {
	background-color: rgba(190,190,190,1);
}
.tab_button .tab--default,
.tab_button > li .tab--active,
.tab_button > li:active {
	background-color: #f7950c;
}
.tab_button > li:hover {
	background-color: rgba(255,196,68,1);
}
.tab_button > li:first-child {
	background-color: #f7950c;
	font-size: 24px;
	color: rgba(255,255,255,1);
}