/***
    Author: FastChen (NullCraft)
    WebSite: https://fastchen.com / https://nullcraft.org
***/

@keyframes donut-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader{
    text-align: center;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.loader-donut {
	display: inline-block;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-left-color: #FDA567;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	animation: donut-spin 1s linear infinite;
}

*{
    cursor:default;
}
body{
    width: 100%;
    height: 100%;
    background-color: #F3F3F9;
    margin:0;
    font-family: "Microsoft YaHei","Arial","SimHei","SimSun","STHeiti",sans-serif;
}
header{
	z-index: 1000;
	height: 50px;
	background-color: #fff;
	position:fixed;
	left:0px;
	top:0px;
	width:100%;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
	-webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
	-moz-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
}

.container {
    margin-top: 62px;
}

footer{
	margin-top: 12px;
    left: 0px;
    width: 100%;
    padding-top: 1px;
    padding-bottom: 1px;
    background-color: #fff;
    text-align: center;
    font-size:0.9em;
    vertical-align:middle;
}
a{
    cursor:pointer;
    color: #FDA567;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

.card-a,.card-a:link,.card-a:visited,.card-a:hover,.card-a:active{
    text-decoration: none;
}
.card{
	height: 40px;
	background-color: #fff;
    border-radius: 5px;
    border: none;
    margin: 10px;
    padding: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
	-moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}
.card:hover{
	cursor:pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.items-img{
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 3px;
}
.items-title{
	cursor:default;
	display: block;
	margin-left: 50px;
	color: #212121;
	font-size: 16px;
	line-height: 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.items-title:hover{
	cursor:pointer;
}
.items-subtitle{
	cursor:default;
	display: block;
	margin-left: 50px;
	color: #A0A0A0;
	font-size: 14px;
	line-height: 22px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.items-subtitle:hover{
	cursor:pointer;
}
.items-badge{
	float: right;
	color: #fff;
	background-color: #FDA567;
	padding: 0.25em 0.4em;
	margin-left: 4px;
    font-size: 9px;
	font-weight: 700;
	line-height: 1;
	border-radius: 0.25rem;
    white-space: nowrap;
    /*display: inline-block;*/
    /*font-size: 75%;*/
}

.badge-nullcraft{
    background-color: #2DCEB1;
}
.badge-official{
    background-color: #ff5e5e;
}
.badge-version{
    background-color: #4d7cff;
}
.badge-plugin{
    background-color: #FDA567;
}
.badge-mod{
    background-color: #f0a500;
}
.badge-success{
    background-color: #6fd96f;
}
.badge-danger{
    background-color: #ff5e5e;
}

.header-title {
    margin: 3px;
    padding: 0 0 0 10px;
    font-size: 19px;
    font-weight:bold;
    line-height: 40px;
    color: #FDA567;
    white-space: nowrap;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.header-title:before {
    position: absolute;
    left: 0;
    top: 11px;
    width: 4px;
    height: 26px;
    content: "";
    background-color: #FDA567;
}

.error-title{
    line-height: 30px;
    font-size: 100px;
}
.error-subtitle{
    line-height: 30px;
    font-size: 40px;
}
