/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(39,30,15,0.83);
	overflow: hidden;
	overflow-y: auto;
	z-index: 99999;
}

#popup-grid {
	position: relative;
	display: grid;
	align-self: center;
	justify-self: center;
	width: 100%;
	max-width: 539px;
}

.popup-close {
	position: absolute;
    display: block;
    width: 100%;
    top: 0;
    left: 0;
}

.popup-close:before {
	content: '';
	position: fixed;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup div[data-rel="popup-content"] {
	/*position: initial;*/
	display: none;
	width: 100%;
	padding: 15px 0;
	min-height: 100px;
	align-self: center;
	justify-self: center;
	margin: 30px auto;
}

#popup div[data-rel="popup-content"] .popup-close-content {
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/close.png) no-repeat center;
	top: 3px;
    right: 45px;
	z-index: 1;
}

#popup div[data-rel="popup-content"] .popup-close-content:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
/*====================================================*/
/*====================================================*/
/*====================================================*/
.popup_content {
	width: 539px;
	min-height: 300px;
	background: url(../images/popup-center.png) repeat-y center;
}

.popup_content:before {
	content: '';
	position: absolute;
	display: block;
	width: 539px;
	height: 170px;
	top: -28px;
	background: url(../images/popup-top.png) no-repeat center top;
}

.popup_content:after {
	content: '';
	position: absolute;
	display: block;
	width: 539px;
	height: 259px;
	bottom: -38px;
	background: url(../images/popup-bottom.png) no-repeat center top;
}

.popup_close {
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
    top: 1px;
    right: 38px;
	background: url(../images/close.png) no-repeat;
}

.popup_close:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.popup_text {
	position: relative;
	display: block;
	width: 372px;
	margin: 0 auto 15px;
	z-index: 10;
}

.popup_title {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	margin: 0 auto 10px;
	padding-top: 50px;
}

.popup_title span {
	position: relative;
	display: block;
	color: #ffc600;
	font-size: 18px;
	font-family: calibrib;
	margin: 0 auto;
}

.popup_title p {
	position: relative;
	display: block;
	color: #9f9f9f;
	font-size: 12px;
	font-family: calibri;
	margin: 0 auto;
}

.popup_item {
	position: relative;
	display: block;
	width: 302px;
	height: 70px;
	border-bottom: 1px solid #2f2721;
	padding-left: 70px;
}

.popup_item:before {
	content: '';
	position: absolute;
	display: block;
	width: 77px;
	height: 74px;
	top: -2px;
	left: -10px;
	-webkit-transition:all 0.3s ease; 
	-o-transition:all 0.3s ease; 
	-moz-transition:all 0.3s ease; 
	transition:all 0.3s ease;
}

.popup_item:nth-child(1):before {
	background: url(../images/f-1.png) no-repeat center;
}
.popup_item:nth-child(2):before {
	background: url(../images/f-2.png) no-repeat center;
}
.popup_item:nth-child(3):before {
	background: url(../images/f-3.png) no-repeat center;
}
.popup_item:nth-child(4):before {
	background: url(../images/f-4.png) no-repeat center;
}

.popup_item:after {
	content: '';
	position: absolute;
	display: block;
	width: 40px;
	height: 46px;
	top: 11px;
	right: -10px;
	bottom: 0;
	margin: auto;
	background: url(../images/f-arrow.png) no-repeat;
	-webkit-transition:all 0.3s ease; 
	-o-transition:all 0.3s ease; 
	-moz-transition:all 0.3s ease; 
	transition:all 0.3s ease;
}

.popup_item:hover:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.popup_item:hover:after {
	right: -20px;
}

.popup_item span {
	position: relative;
	display: block;
	margin: 0 auto 1px;
	color: #ffc55f;
	font-family: calibrib;
	font-size: 12px;
	padding-top: 22px;
	-webkit-transition:all 0.3s ease; 
	-o-transition:all 0.3s ease; 
	-moz-transition:all 0.3s ease; 
	transition:all 0.3s ease;
}

.popup_item p {
	position: relative;
	display: block;
	margin: 0 auto;
	color: #c0c0c0;
	font-family: calibri;
	font-size: 12px;
	-webkit-transition:all 0.3s ease; 
	-o-transition:all 0.3s ease; 
	-moz-transition:all 0.3s ease; 
	transition:all 0.3s ease;
}

.popup_item:hover span {
	color: #ffc600;
}

.popup_item:hover p {
	color: #fff;
}

.popup_help {
	position: relative;
	display: block;
	width: 100%;
	text-align: center;
	margin: 15px auto 0;
}

.popup_help span {
	position: relative;
	display: block;
	margin: 0 auto;
	color: #ffd58b;
	font-size: 12px;
}

.popup_help a.help {
	position: relative;
	display: block;
	width: 120px;
	height: 44px;
	margin: 15px auto 0;
	background: url(../images/f-btn.png) no-repeat;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	font-size: 12px;
	font-family: PTSansRegular;
}

.popup_help a.help:hover {
	-webkit-filter:contrast(130%); 
	-moz-filter:contrast(130%); 
	-o-filter:contrast(130%); 
	filter:contrast(130%);
}

#popup .select-server {
	position: relative;
	display: block;
	width: 267px;
	margin: 0 auto 40px;
}

#popup .select-server a {
	position: relative;
    display: block;
    width: 267px;
    height: 97px;
    background: url(../images/btn-reg.png) no-repeat;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 96px;
    margin: 0 auto;
}

#popup .select-server a:hover {
	-webkit-filter:contrast(130%); 
	-moz-filter:contrast(130%); 
	-o-filter:contrast(130%); 
	filter:contrast(130%); 	
}

#popup .popup_back {
	position: absolute;
	display: inline-block;
	height: 21px;
	background: url(../images/f-arrow2.png) no-repeat center left;
	background-size: auto 100%;
	top: 0px;
    right: 94px;
    padding-left: 20px;
    color: #ffc55f;
    font-size: 14px;
    line-height: 16px;
    z-index: 11;
}

#popup .popup_back:hover {
	padding-left: 25px;
}
/*====================================================*/
/*====================================================*/
/*====================================================*/

/*====================================================*/
/*====================================================*/
/*====================================================*/

/*====================================================*/
/*====================================================*/
/*====================================================*/

/*====================================================*/
/*====================================================*/
/*====================================================*/

/*====================================================*/
/*====================================================*/
/*====================================================*/