#HorseList
{
	display: flex;
	/*align-content: stretch;*/
	flex-wrap: wrap;
}

.horse
{
	flex: 1 1  auto;
	border-radius:16px;
	position: relative;
}

.enabled
{
	border: 5px solid rgb(0, 0, 0);
	border-radius:16px
}

.selected, .horse .selected
{
	background-color: rgb(20, 220, 137);
	border: 5px solid rgba(0, 255, 0, 0.4);
}

.disabled
{
	background-color: rgb(10, 110, 68);
	border: 5px solid rgba(255, 0, 0, 0.4);
	border-radius:16px
}

.shader
{
	z-index: 3;
	text-align: center;
	display:block;
	position:absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.subselect
{
	background: rgba(0,0,0,0);
}

.selected .subselect
{
	background: radial-gradient( closest-side, /* TODO Finetune */
		rgba(0, 70, 0, 0) 70%,
		rgba(0, 70, 0, 0.4) 70%,
		rgba(0, 255, 0, 0.4) 80%,
		rgba(0, 70, 0, 0.4) 90%,
		rgba(0, 255, 0, 0)
	  );
}

.disabled .subselect
{
	background: linear-gradient(
		-45deg,
		rgba(255, 0, 0, 0.0) 46%,
		rgba(70, 0, 0, 0.4) 46%,
		rgba(70, 0, 0, 0.4) 47%,
		rgba(255, 0, 0, 0.4) 47%,
		rgba(255, 0, 0, 0.4) 53%,
		rgba(70, 0, 0, 0.4) 53%,
		rgba(70, 0, 0, 0.4) 54%,
		rgba(255, 0, 0, 0 ) 54%
	  );
}

.horseHeader
{
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.horseHeader > .thumb
{
	/*float: right;*/
	margin-left: 3%;
	margin-right: 3%;
	order: 2
}
.horseHeader > .post
{
	/*float: left;*/
	vertical-align:top;
	margin-left: 3%;
	margin-right: 3%;
	order: 0;
}

.horseHeader > .name
{
	font-size: large;
	order: 1;
}

.w3-container:after,.w3-container:before {/*content:"";*/display:table;clear:both}
.w3-container ,/*{padding:0.01em 16px;}*/
.w3-round-xlarge { stroke: linen; border-radius:16px}
.w3-light-grey{/*background-color: lightgray;*/
position: relative;

}
.w3-blue{background-color: blue;
height: 1.3em}

.w4-container
{
	height: 1.3em;
	display: flex;
	position:relative;
}
.w4-container:after,.w4-container:before {/*content:"";*/display:table;clear:both}
.w4-tag
{
	margin-left: 2%;
	margin-right: 2%;
	border-radius: 16px;
	flex: 1 1 auto;
}


.my-sticker
{
	background-color: mediumspringgreen;
}
.some-sticker
{
	background-color:cornflowerblue;
}
.unclaimed-sticker
{
	background-color: grey;
}

.odds
{
	width: 90%;
	padding-left: 5%;
	padding-right: 5%;
	text-align: center;
}

.floater
{
	z-index: 1;
	text-align: center;
	display:block;
	position:absolute;
	width: 100%;
	top: 0px;
	background: rgba(1,0,0,0);
}

.RandomHorse
{
	/*flex-basis: 100%;*/
	
	flex: 1 1  auto;
	height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	order: 100;
	width: 100%;
}

.RandomHorse > span
{
	text-align: center;
	vertical-align: middle;
}

#Loading
{
	margin: auto;
	width: 82px;
}

#dLoading
{
	margin: auto;
	object-fit: contain;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

#HorseFeedback
{
	padding: 3%;
}

.lds-spinner {
	color: official;
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
  }
  .lds-spinner div {
	transform-origin: 40px 40px;
	animation: lds-spinner 1.2s linear infinite;
  }
  .lds-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	left: 37px;
	width: 6px;
	height: 18px;
	border-radius: 20%;
	background: #ED174F;
  }
  .lds-spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
  }
  .lds-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
  }
  .lds-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
  }
  .lds-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
  }
  .lds-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
  }
  .lds-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
  }
  .lds-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
  }
  .lds-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
  }
  .lds-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
  }
  .lds-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
  }
  .lds-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
  }
  .lds-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
  }
  @keyframes lds-spinner {
	0% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
  }
  