.al-tabs {
	position: relative;
	margin: 0 auto;
	max-width: 1328px;
	display: none;
}
.al-tabs label {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	letter-spacing: 0.25px;
	color: #333;
	position: relative;
	padding-top: 14px;
	cursor: pointer;
	height: 155px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	transition: all .4s ease-out;
	transition-delay: .1s;
}
.al-tabs label:hover {
	background: #F1F3F4;
	box-shadow: 0 -4px #45A7C7 inset;
}
.al-tabs input {
	position: absolute;
	left: -9999px;
}
#tab_1:checked ~ .al-tabgrid #tab_l1, #tab_2:checked ~ .al-tabgrid #tab_l2, #tab_3:checked ~ .al-tabgrid #tab_l3, #tab_4:checked ~ .al-tabgrid #tab_l4, #tab_5:checked ~ .al-tabgrid #tab_l5, #tab_6:checked ~ .al-tabgrid #tab_l6 {
	background: #F1F3F4;
	box-shadow: 0 -4px #45A7C7 inset;
	z-index: 3;
}
.al-tabs-content {
	background: #F2F5F7;
	padding: 24px;
	border-radius: 8px;
	position: relative;
	z-index: 2;
}
.al-tabs-content > .al-tab-item {
	position: absolute;
	left: -9999px;
	top: 0;
	opacity: 0;
	transition: opacity .5s ease-in-out;
}
#tab_1:checked ~ .al-tabs-content #tab_c1, #tab_2:checked ~ .al-tabs-content #tab_c2, #tab_3:checked ~ .al-tabs-content #tab_c3, #tab_4:checked ~ .al-tabs-content #tab_c4, #tab_5:checked ~ .al-tabs-content #tab_c5, #tab_6:checked ~ .al-tabs-content #tab_c6 {
	position: static;
	left: 0;
	opacity: 1;
}
.al-tabgrid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	width: calc(100% - 12px);
    margin: 0 auto;
}
.al-autotype {
	width: 60px;
	height: 60px;
}
.type-1:before {
	content: url(../img/icon/tipe-1.svg);
}
.type-2:before {
	content: url(../img/icon/tipe-2.svg);
}
.type-3:before {
	content: url(../img/icon/tipe-3.svg);
}
.type-4:before {
	content: url(../img/icon/tipe-4.svg);
}
.type-5:before {
	content: url(../img/icon/tipe-5.svg);
}
.type-6:before {
	content: url(../img/icon/tipe-6.svg);
}
#tab_l1:hover .type-1:before, #tab_1:checked ~ .al-tabgrid #tab_l1 .type-1:before {
	content: url(../img/icon/tipe-1a.svg);
}
#tab_l2:hover .type-2:before, #tab_2:checked ~ .al-tabgrid #tab_l2 .type-2:before {
	content: url(../img/icon/tipe-2a.svg);
}
#tab_l3:hover .type-3:before, #tab_3:checked ~ .al-tabgrid #tab_l3 .type-3:before {
	content: url(../img/icon/tipe-3a.svg);
}
#tab_l4:hover .type-4:before, #tab_4:checked ~ .al-tabgrid #tab_l4 .type-4:before {
	content: url(../img/icon/tipe-4a.svg);
}
#tab_l5:hover .type-5:before, #tab_5:checked ~ .al-tabgrid #tab_l5 .type-5:before {
	content: url(../img/icon/tipe-5a.svg);
}
#tab_l6:hover .type-6:before, #tab_6:checked ~ .al-tabgrid #tab_l6 .type-6:before {
	content: url(../img/icon/tipe-6a.svg);
}
@media (min-width: 769px) {
	.al-tabs {
		display: block;
	}
}
@media (min-width: 1025px) {
	.al-tabs label {
		font-size: 18px;
	}
}