/* Actions */
.tile {
	text-align:center;
	padding:0;
	background-color:#1f1f1f;
	box-shadow: 1px 1px 1px 1px #050505, 3px 3px 9px 1px #9e9e9e;
}
.tile h1 {
	color:#9e9e9e;
	font-size:1.5em;
	text-transform: none !important;
	width:100%;
	margin:0;
	text-align:center;
	background-color:#050505;
}
.tile h2 {
	color:#f1f1f1;
	font-size:1em;
	text-transform: none !important;
	margin-bottom:.5em;
	width:100%;
	text-align:center;
}
.tile h4 {
	color:#f1f1f1;
	text-transform: none;
	margin-bottom:0;
}
.tile table td {
	padding:.1em;
}
.tile table th {
	border-top:none;
	text-align:center;
	font-style:italic;
	color:#9e9e9e;
	text-transform: none !important;
	text-align:center;
	background-color:#050505;
}




.div_button {
	background-color:#000;
	color:#f1f1f1;
	padding:0;
	margin:.25em;
	box-shadow: 2px 2px 6px 1px #888888;
	font-weight:600;
}


.ico-login {
	position:absolute;
	bottom:0.5em;
	right:0.5em;
	width:1.75em;
	height:auto;
	opacity:0.6;
}


.button-3 {
  height:1.75em;
  appearance: none;
  background-color: #2ea44f;
  border: 1px solid rgba(27, 31, 35, .15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, .1) 0 1px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing:-1px;
  padding: 2px 3px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  margin-bottom:.5em;
}

.button-3:focus:not(:focus-visible):not(.focus-visible) {
  box-shadow: none;
  outline: none;
}

.button-3:hover {
  background-color: #2c974b;
}

.button-3:focus {
  box-shadow: rgba(46, 164, 79, .4) 0 0 0 3px;
  outline: none;
}

.button-3:disabled {
  background-color: #94d3a2;
  border-color: rgba(27, 31, 35, .1);
  color: rgba(255, 255, 255, .8);
  cursor: default;
}

.button-3:active {
  background-color: #298e46;
  box-shadow: rgba(20, 70, 32, .2) 0 1px 0 inset;
}

/*___________________________*/
/* Pies                      */
@property --p{
  syntax: '<number>';
  inherits: true;
  initial-value: 1;
}

.pie_tin {
  --p:20;
  --b:22px;
  --c:darkred;
  --w:60px;

  width: var(--w);
  aspect-ratio: 1;
  position: relative;
  top:0;
  right:0;
  display: inline-grid;
  margin: 5px 5px 5px 48px;
  place-content: center;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 3px rgb(255 255 0 / 0.7);

}
.pie_rack {
  position:relative;
  top:-.3em;
  right:-2.5em;
  width:100%;
  height:100%;
}
.pie_label {
  position:absolute;
  top:-.3em;
  right:1em;

  font-size: 21px;
  font-weight: bold;
  font-family: sans-serif;
  font-style: italic;
  text-align:right;
  color:#fff;
  text-shadow: 2px 2px 2px #000, 3px 3px 3px #f1f1f1;
  z-index:12;
}
.pie {
  --p:20;
  --b:30px;
  --c:darkred;
  --w:60px;
}
.pie:before,
.pie:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.pie:before {
  inset: 0;
  background:
    radial-gradient(farthest-side,var(--c) 98%,#0000) top/var(--b) var(--b) no-repeat,
    conic-gradient(var(--c) calc(var(--p)*1%),#0000 0);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
          mask: radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
}
.pie:after {
  inset: calc(50% - var(--b)/2);
  background: var(--c);
  transform: rotate(calc(var(--p)*3.6deg)) translateY(calc(50% - var(--w)/2));
}
.animate {
  animation: p 1s .5s both;
}
.no-round:before {
  background-size: 0 0, auto;
}
.no-round:after {
  content: none;
}


.pie_top {
  --p:20;
  --b:12px;
  --c:darkred;
  --w:60px;
  z-index: 9;
}
.pie_top:before,
.pie_top:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.pie_top:before {
  inset: 0;
  background:
    radial-gradient(farthest-side,var(--c) 98%,#0000) top/var(--b) var(--b) no-repeat,
    conic-gradient(var(--c) calc(var(--p)*1%),#0000 0);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
          mask: radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
}
.pie_top:after {
  inset: calc(50% - var(--b)/2);
  background: var(--c);
  transform: rotate(calc(var(--p)*3.6deg)) translateY(calc(50% - var(--w)/2));
}



@keyframes p{
  from{--p:0}
}
/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾*/

.noshow {
  display:none;
}

