@charset "UTF-8";

/* Slider */

.slider_list {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2rem;
}

.slider_list_item_wrapper {
	margin-bottom: 1.5rem;
	hyphens: auto;
}

.slider_list h4:before {
	font-family: 'Material Symbols Outlined';
	font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
	font-weight: normal;
	font-style: normal;
	font-size: 30px;
	font-feature-settings: 'liga';
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	vertical-align: bottom;
	line-height: 1;
}

.slider_list h4 {
	display: flex;
	flex-direction: column;
	margin: 1rem 0 .5rem 0;
}

.slider_list h4:before {
	box-sizing: border-box;
	display: inline-block;
	font-size: 50px;
	height: 48px;
	width: 48px;
	margin-bottom: 1rem;
}

.slider_list h4.userdata:before {
	content: "\e7fd";
}

.slider_list h4.meter:before {
	content: "\ec1b";
}

.slider_list h4.contract:before {
	content: "\f5a0";
}

.slider_list h4.bill:before {
	content: "\e873";
}

.slider_list h4.history:before {
	content: "\e9e4";
}

.slider_list h4.payment:before {
	content: "\e926";
}


/* Responsive */

.responsive_small .slider_list {
    grid-template-columns: 1fr;
}