a {
	display: flex;
	text-decoration: none;
	color: black;
	position: relative;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.header {
	position: fixed;
	margin: 0px;
	top: 0;
	left: 0;
	width: 100%;
	height: 72px;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: darkslategray;
}

.header-icon {
	margin: 0px 12px;
	height: 56px;
	border-radius: 100%;
}

.header-title {
	margin: 0px;
	color: white;
	font-size: 2em;
}

.header-button-back {
	position: fixed;
	right: 20px;
	padding: 10px;
	text-align: center;
	background-color: orangered;
	border-radius: 7px;
	cursor: pointer;
}

.header-button-back span {
	color: white;
	font-weight: bolder;
}

.builds-container {
	height: calc(100% - 72px);
	position: fixed;
	top: 72px;
	width: 100%;
	overflow: scroll;
	left: 0;
	background-color: lightslategrey;
}

.builds-list {
	width: 100%;
	height: 100%;
	display: flex;
	overflow-x: scroll;
	overflow-y: scroll;
	align-items: center;
	flex-direction: row;
}

.loader {
	width: 100%;
	height: 100%;
	background-color: lightslategrey;
	z-index: 9000;
	top: 72px;
	left: 0;
	top: 0;
	position: fixed;
}

.loader-spinner {
	z-index: 9001;
	position: fixed;
	margin: 0 auto;
	top: calc(50% - 60px);
	left: calc(50% - 60px);
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 0.5s linear infinite;
	/* Safari */
	animation: spin 0.5s linear infinite;
}

.card-icon-download-config,
.card-icon-download-dist,
.card-icon-download-compiled-properties {
	cursor: pointer;
}

.card {
	width: 390px;
	border: 1px solid black;
	height: 50%;
	min-width: 390px;
	border-radius: 20px;
	background-color: black;
	position: relative;
	margin: 0 40px;
}

.card-general {
	width: 100%;
	background-color: darkslategray;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: scroll;
	border-radius: 20px;
}

.card-general-list {
	padding: 0px 20px;
	margin-top: 50px;
	overflow: scroll;
	margin-bottom: 40px;
}

.card-icon {
	position: absolute;
	width: 80px;
	height: 80px;
	border: 1px solid black;
	border-radius: 100%;
	right: calc(50% - 40px);
	z-index: 9001;
	top: -40px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 65%;
	background-color: white;
}

.card-general-list-info {
	font-weight: bolder;
	color: white;
	font-variant: petite-caps;
	border-radius: 20px;
	border: 1px solid black;
	padding: 3px 20px 3px 2px;
	text-indent: 10px;
	margin-bottom: 5px;
	background-color: lightslategrey;
}

.card-general-list-data {
	color: white;
	margin: 0;
	text-indent: 10px;
	font-size: 0.8em;
	text-overflow: ellipsis;
	max-width: 100%;
}

.card-icon-download-dist {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	background-color: white;
	background-image: url(./img/icon_download.png);
	height: 80px;
	width: 80px;
	position: absolute;
	border-radius: 100%;
	bottom: -40px;
	right: 20px;
}

.card-icon-download-config {
	left: 15px;
	background-color: lightblue;
}

.card-icon-download-compiled-properties {
	left: 75px;
	background-color: lightcoral;
}

.card-icon-download-config,
.card-icon-download-compiled-properties {
	height: 50px;
	width: 50px;
	position: absolute;
	font-size: 1em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: black;
	bottom: -50px;
	border-bottom-right-radius: 100%;
	border: 1px solid black;
	border-bottom-left-radius: 100%;
}

/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media only screen and (max-device-width: 1024px) {
	.header {
		height: 120px;
	}

	.header-icon {
		width: 100px;
		height: 100px;
	}

	.header-button-back {
		font-size: 2em;
	}

	.builds-container {
		top: 120px;
	}

	.builds-list {
		width: 100%;
		display: flex;
		overflow-x: scroll;
		overflow-y: scroll;
		align-items: center;
		flex-direction: column;
		padding-bottom: 100px;
	}

	.card {
		width: 90%;
		height: 80%;
		min-height: 80%;
		margin: 100px 0px;
	}

	.card-icon {
		width: 140px;
		height: 140px;
		border-radius: 100%;
		right: calc(50% - 70px);
		top: -70px;
		background-size: 70%;
	}

	.card-icon-download-dist {
		background-size: 100%;
		height: 140px;
		width: 140px;
		bottom: -70px;
		right: 20px;
	}

	.card-general-list-info {
		font-size: 3em;
	}

	.card-general-list-data {
		width: 100%;
		font-size: 2em;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}


	.card-general-list p {
		display: inline-block;
	}

	.card-general-list {
		height: calc(100% - 90px);
	}

	.card-icon-download-config,
	.card-icon-download-compiled-properties {
		height: 120px;
		width: 120px;
		bottom: -60px;
		font-size: 2em;
		border-radius: 100%;
	}

	.card-icon-download-config {
		left: 15px;
	}

	.card-icon-download-compiled-properties {
		left: 150px;
	}
}




/* @media only screen and (max-device-width: 1024px) { 
	
	.icon {
		top: 9px !important;
		width: 110px !important;
		height: 110px !important;
	}

	body {
		font-size: 36px !important;
		background-color: #ecf0f1;
	}
	
	.section h1 {
		text-align: center;
		padding-top: 30px !important;
		border-bottom: 1px solid #34495e;
	}
	
	img {
	 width: 300px !important;
	 height: 300px !important;
	}
	
	.clause {
		font-size: 20px;
	}
	
	.header {
	font-size: 56px;
	background-color: #462446;
	color: white;
	font-weight: normal;
	position: fixed;
	width: 100%;
    margin: 0px;
    top: 0px;
    left: 0px;
    line-height: 130px !important;
    height: 130px !important;
    text-align: center;
}

	.content {
		margin-top: 150px !important;
	}
	
	
	#show-button {
		-webkit-appearance: none;
		margin-top: 40px;
		height: 130px !important;
		width: 100%;
		align-items:flex-start;
		background-color: #1abc9c;
		color: white;
		display:block;
		line-height:40px !important;
		-webkit-font-smoothing:antialiased;
	}
	
	
	.button-text {
		font-size: 40px !important;
	}
}

h3 {
	padding: 20px;
	border-bottom: 1px solid #34495e;
	
}

.icon {
	    position: absolute;
    left: 10px;
    top: 7px;
	width: 55px;
	height: 55px;
}

li, p {
	padding-top: 10px;
	
}

body { 
	max-height: 1000000px;
	font-size: 20px;
	background-color: #ecf0f1;
	font-family: 'Open Sans', sans-serif;
}

body * {
    max-height: 1000000px;
}

.download-box {
	text-align: center; 
}

.section h1 {
	text-align: center;
	padding-top: 20px;
	border-bottom: 1px solid #34495e;
}

button {
		font-family: 'Open Sans', sans-serif;
}

img {
	 width: 150px;
	 height: 150px;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

#show-button {
	-webkit-appearance: none;
	margin-top: 20px;
	height: 80px;
	width: 100%;
	align-items:flex-start;
	background-color: #1abc9c;
	color: white;
	display:block;
	font-size:12px;
	line-height:50px;
	-webkit-font-smoothing:antialiased;
}

.clause {
	font-size: 12px;
}

.button-text {
	font-size: 20px;
}

.center-text {
	text-align: center; 
}

.header {
	background-color: #462446;
	color: white;
	font-weight: normal;
	position: fixed;
	width: 100%;
    margin: 0px;
    top: 0px;
    left: 0px;
    line-height: 70px;
    height: 70px;
    text-align: center;
}

.content {
	margin-top: 70px;
}
 */