@charset "UTF-8";

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

.results-wrap {
	background-color: white;
	display: flex;
	flex-flow: column;
	align-items: center;
	color: rgb(10,10,10);
}

.results-content {
	background-color: rgb(44,84,120);
	padding: 2em;
	width: calc(100% - 4em);
	max-width: calc(1280px - 4em);
}

.results-group {
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 2em;
	width: calc(100% - 4em);
	z-index: 1;
}

.results-group::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(145deg, rgba(250,250,250,0.9), white, rgba(240,240,240,0.9));
	border-radius: 6px;
	box-shadow: 5px 5px 2px rgba(10,10,10,0.3);
	backdrop-filter: blur(3px);
	width: 100%;
	height: 100%;
	z-index: -1;
}

.results-group:not(:last-child) {
	margin-bottom: 2em;
}

.results-fb {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5em;
	width: 100%;
}

.results-item1, .results-item2, .results-item3 {
	border-bottom: solid 1px gray;
	display: flex;
}

.results-item1 {
	display: flex;
	margin-right: 0.5em;
	width: calc(60% - 0.5em);
}

.results-item2 {
	display: flex;
	width: 40%;
}

.results-item3 {
	display: flex;
	width: 100%;
}

.results-item1 span, .results-item2 span, .results-item3 span {
	background-color: rgb(0,90,100);
	width: 5em;
	text-align: center;
	color: white;
}

.results-item1 p, .results-item2 p, .results-item3 p {
	padding-left: 0.5em;
}

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

@media screen and (max-width:700px) {
.results-wrap {
	font-size: 0.65rem;
}
}

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

@media screen and (max-width:960px) {
.results-content {
	padding: 0.5em;
	width: calc(100% - 1em);
	max-width: calc(1280px - 1em);
}
.results-group {
	padding: 0.5em;
	width: calc(100% - 1em);
}
.results-fb {
	display: flex;
	flex-flow: column;
	margin-bottom: 0;
}
.results-item1 {
	margin-right: 0em;
	margin-bottom: 0.5em;
	width: calc(100% - 0em);
}
.results-item2 {
	margin-bottom: 0.5em;
	width: 100%;
}
}

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


