
img.entity {
	cursor:pointer;
}

div.entityBox {
	margin-top: 10px;
}

div#login_right {
	min-width:0!important;
}

#entity {
	width: 135px;
}

#img_logo {
  max-width: 250px;
}

div.mc-upgrade-alert {
  color: #302020;
  padding: 0.5em 0.5em 0.5em 0.5em;
  margin: 0.5em 1.5em 0.5em 1.5em;
  border: 1px solid #e0d0b0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #EFCFCF;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.small, small {
	font-size: 80%;
	font-weight: 400;
}

.progress-bar {
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width .6s ease;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-warning {
	background-color: #ffc107 !important;
}

.bg-danger {
	background-color: #dc3545 !important;
}

/* requirements */
.req-block {
  text-align: left;
}

.req-block ul {
  list-style: none;
  padding: unset;
  margin-top: 0;
}

.req-block .req.validated {
  color: #23a094;
}
/* checkmark */
.req-block .req .checkmark-container {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
  top: 3px;
}
.req-block .req .checkmark-container .checkmark {
  fill-rule: evenodd;
  clip-rule: evenodd;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #23a094;
  border-radius: 50%;
  background-color: transparent;
  pointer-events: none;
  border: 2px solid black;
}
.req-block .req .checkmark-container .checkmark * {
  fill: transparent;
  stroke: transparent;
}
/* checkmark animation */
.req-block .req .checkmark-container .checkmark.animated {
  animation: fill-checkmark 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.req-block .req .checkmark-container .checkmark.animated .circle {
  fill: none;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #23a094;
  stroke-dasharray: 79;
  stroke-dashoffset: 79;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.req-block .req .checkmark-container .checkmark.animated .check {
  fill: none;
  fill-rule: nonzero;
  stroke: #fff;
  stroke-width: 2.5px;
  stroke-dasharray: 23;
  stroke-dashoffset: 23;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* animations */
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill-checkmark {
  100% {
    box-shadow: inset 0px 0px 0px 10px #23a094, 1px 1px black;
  }
}