#popup {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	overflow-y: auto;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.65);
	z-index: 999999;
}

#popup .popup-fade {
	position: fixed;
	display: block;
	width: 99%;
	height: 99%;
	top: 0;
	left: 0;
	opacity: 0;
}

#popup .popup-content {
	position: absolute;
	display: none;
	width: 92%;
	max-width: 534px;
	padding: 4px;
	top: 20%;
	left: 0;
	right: 0;
	margin: auto;
	border: 1px solid rgba(255,255,255,0.15);
}

#popup .popup-content .popup-inner {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	background: #1e1e1e;
	overflow: hidden;
	padding: 30px 0 5px;
}

#popup .popup-content .popup-close {
	position: absolute;
	display: block;
	width: 17px;
	height: 17px;
	font-size: 0px;
	background: url(../images/popup-close.png) no-repeat;
	top: 22px;
	right: 22px;
	cursor: pointer;
	-webkit-transition:all 0.3s ease; 
	-o-transition:all 0.3s ease; 
	-moz-transition:all 0.3s ease; 
	transition:all 0.3s ease;
	z-index: 1;
}

#popup .popup-content .popup-close:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

#popup .popup-content .popup-title {
	position: relative;
	display: block;
	width: 98%;
	max-width: 610px;
	margin: 0 auto 40px;
	text-align: center;
}

#popup .popup-content .popup-title span {
	position: relative;
	display: block;
	color: #f4d401;
	font-size: 16px;
    font-family: montserrat-black;
}

#popup .popup-content .popup-title p {
	position: relative;
	display: block;
	color: #6b6b6b;
	text-shadow: 0 0 0 #6b6b6b;
	font-size: 12px;
	margin-top: 3px;
}

#popup .popup-content .item-files {
	position: relative;
	display: block;
	width: 98%;
	max-width: 506px;
	height: 50px;
	background: #171717;
	margin: 0 auto 8px;
	border: 1px solid #313131;
}

#popup .popup-content .item-files .text {
	position: absolute;
	display: inline-block;
	top: 50%;
	transform: translateY(-50%);
	left: 12px;
}

#popup .popup-content .item-files .text span {
	position: relative;
	display: block;
	color: #f4d501;
	font-size: 12px;
}

#popup .popup-content .item-files .text p {
	position: relative;
	display: block;
	color: #767676;
	text-shadow: 0 0 0 #767676;
	font-size: 11px;
	margin-top: 2px;
}

#popup .popup-content .item-files .link {
	position: absolute;
	display: inline-block;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
}

#popup .popup-content .item-files .link a {
	position: relative;
	display: inline-block;
	width: 120px;
	height: 41px;
	line-height: 38px;
	float: left;
	background: url(../images/btn.png) no-repeat;
	text-align: center;
	color: #ddc004;
	font-size: 12px;
	margin-left: 1px;
}

#popup .popup-content .item-files .link a:hover {
	background: url(../images/btn-hover.png) no-repeat;
}

#popup .popup-content .help {
	position: relative;
	display: block;
	width: 98%;
	max-width: 506px;
	margin: 15px auto 0;
}

#popup .popup-content .help a {
	position: relative;
	display: inline-block;
	margin-right: 30px;
	color: #b9c951;
	font-size: 12px;
	text-decoration: underline;
	margin-bottom: 15px;
}

#popup .popup-content .help a:hover {
	text-decoration: none;
}

#popup .popup-content .help a:last-child {
	margin-right: 0;
}