/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(18,19,19,0.9);
	overflow: hidden;
	overflow-y: auto;
	z-index: 99999;
}

#popup-inner {
	display: grid;
}

.popup-close {
	position: absolute;
    display: block;
    width: 100%;
    height: 0;
    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"] .close {
	position: absolute;
	display: block;
	width: 16px;
	height: 16px;
	background: url(../images/close.png) no-repeat;
	top: 18px;
	right: 18px;
	margin: auto;
	z-index: 1;
}

#popup div[data-rel="popup-content"] .close:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup div[data-rel="popup-content"] {
	/*position: initial;*/
	display: none;
	width: calc(100% - 20px);
	max-width: 717px;
	padding: 10px;
	align-self: center;
	justify-self: center;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	border: 1px solid rgba(255,255,255,0.09);
}

#popup div[data-rel="popup-content"] .popup-content-inner {
	position: relative;
	display: block;
	width: calc(100% - 40px);
	min-height: 100px;
	background: #080a0b;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	padding: 35px 20px 15px;
}

#popup div[data-rel="popup-content"] .popup-title {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto 20px;
	text-align: center;
}

#popup div[data-rel="popup-content"] .popup-title span {
	position: relative;
	display: block;
	color: #ffffff;
	font-size: 24px;
    font-family: montserrat-black;
}

#popup div[data-rel="popup-content"] .popup-title span i {
	color: #ffd200;
	font-style: normal;
}

#popup div[data-rel="popup-content"] .popup-title p {
	position: relative;
	display: block;
	color: #7f999c;
	text-shadow: 0 0 0 #7f999c;
	font-size: 16px;
	margin-top: 2px;
}
/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup div[data-rel="popup-content"] .block-items {
	position: relative;
	display: block;
	margin: 0 auto 15px;
}

#popup div[data-rel="popup-content"] .block-items .item {
	position: relative;
	display: grid;
	width: calc(100% - 40px);
	padding: 12px 20px;
	background: #000000;
	margin: 0 auto 9px;
	grid-template-columns: 1fr 280px;
}

#popup div[data-rel="popup-content"] .block-items .item:last-child {
	margin: 0 auto;
}

#popup div[data-rel="popup-content"] .block-items .item .left {
	position: relative;
	display: block;
	align-self: center;
	color: #d0dadb;
	font-size: 16px;
}

#popup div[data-rel="popup-content"] .block-items .item .left span {
	color: #ffd200;
}

#popup div[data-rel="popup-content"] .block-items .item .right {
	position: relative;
	display: inline-grid;
	align-self: center;
	grid-template-columns: repeat(2, 135px);
	grid-gap: 6px;
}

#popup div[data-rel="popup-content"] .block-items .item .right a {
	position: relative;
	display: inline-block;
	width: 135px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	color: #ffd200;
	font-size: 14px;
	z-index: 1;
}

#popup div[data-rel="popup-content"] .block-items .item .right a:before {
	content: '';
	position: absolute;
	display: block;
	width: 135px;
	height: 38px;
	top: 0;
	left: 0;
	z-index: -1;
	background: url(../images/popup-btn-load.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 div[data-rel="popup-content"] .block-items .item .right a:hover:before {
	-webkit-filter: brightness(1.5); 
	-moz-filter: brightness(1.5); 
	-o-filter: brightness(1.5); 
	filter: brightness(1.5);
}
/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup div[data-rel="popup-content"] .popup-text {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	color: #5d5d5d;
	text-shadow: 0 0 0 #5d5d5d;
	font-size: 16px;
	line-height: 24px;
}

#popup div[data-rel="popup-content"] .popup-text a {
	position: relative;
	display: table;
	width: 172px;
	height: 38px;
	text-align: center;
	line-height: 38px;
	color: #ffd200;
	font-size: 14px;
	z-index: 1;
	margin: 10px auto 0;
}

#popup div[data-rel="popup-content"] .popup-text a:before {
	content: '';
	position: absolute;
	display: block;
	width: 172px;
	height: 38px;
	top: 0;
	left: 0;
	z-index: -1;
	background: url(../images/popup-btn-forum.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 div[data-rel="popup-content"] .popup-text a:hover:before {
	-webkit-filter: brightness(1.5); 
	-moz-filter: brightness(1.5); 
	-o-filter: brightness(1.5); 
	filter: brightness(1.5);
}
/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup div[data-rel="popup-content"] .src {
	position: relative;
	display: block;
	width: 100%;
	margin: 30px auto 0;
}

#popup div[data-rel="popup-content"] .src iframe {
	width: 100%;
	height: 100%;
}
/*====================================================*/
/*====================================================*/
/*====================================================*/
#popup div[data-rel="popup-content"] .donate-form {
	position: relative;
	display: block;
	display: 100%;
	margin: 0 auto;
}

#popup div[data-rel="popup-content"] .donate-form .title {
	position: relative;
	display: block;
	color: #5d5d5d;
	text-shadow: 0 0 0 #5d5d5d;
	font-size: 16px;
	margin: 0 auto 10px;
	text-align: center;
}

#popup div[data-rel="popup-content"] .donate-form .content {
	position: relative;
	display: block;
	margin: 0 auto;
	padding-bottom: 10px;
}

#popup div[data-rel="popup-content"] .donate-form .content .item {
	position: relative;
	display: grid;
	width: calc(100% - 40px);
	padding: 10px 20px;
	background: #000;
	grid-template-columns: 90px 1fr 205px;
	grid-gap: 15px;
	margin: 0 auto 9px;
}

#popup div[data-rel="popup-content"] .donate-form .content .item .step {
	position: relative;
	display: grid;
	width: 90px;
	height: 33px;
	align-self: center;
	justify-self: center;
	background: #ff4600;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

#popup div[data-rel="popup-content"] .donate-form .content .item .step span {
	align-self: center;
	justify-self: center;
	color: #ffffff;
	font-size: 14px;
    font-family: montserrat-bold;
}

#popup div[data-rel="popup-content"] .donate-form .content .item .text {
	position: relative;
	display: block;
	color: #686868;
	text-shadow: 0 0 0 #686868;
	font-size: 12px;
	align-self: center;
}

#popup div[data-rel="popup-content"] .donate-form .content .item .area {
	position: relative;
	display: block;
	width: 100%;
	align-self: center;
}

#popup div[data-rel="popup-content"] .donate-form .content .item .area select {
	position: relative;
	display: block;
	width: 100%;
	height: 41px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 1px solid #302222;
	background: #000 url(../images/select.png) no-repeat center right 15px;
	-webkit-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none !important;
	-moz-appearance: none;
	padding: 0 20px;
}

#popup div[data-rel="popup-content"] .donate-form .content .item .area input {
	position: relative;
	display: block;
	width: calc(100% - 42px);
	height: 39px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: 1px solid #302222;
	background: #000;
	-webkit-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none !important;
	-moz-appearance: none;
	padding: 0 20px;
}

#popup div[data-rel="popup-content"] .donate-form .content .total {
	position: relative;
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 237px;
	grid-gap: 15px;
	margin-top: 25px;
}

#popup div[data-rel="popup-content"] .donate-form .content .total .left {
	position: relative;
	display: block;
	align-self: center;
	color: #ffffff;
	font-size: 14px;
}

#popup div[data-rel="popup-content"] .donate-form .content .total .left span {
	color: #ff4600;
}

#popup div[data-rel="popup-content"] .donate-form .content .total .right {
	position: relative;
	display: block;
	width: 100%;
	align-self: center;
}

#popup div[data-rel="popup-content"] .donate-form .content .total .right button {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 237px;
	height: 58px;
	background: url(../images/donate-btn.png) no-repeat;
	border: none;
	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;
	color: #ffd200;
	font-size: 13px;
    font-family: montserrat-black;
}

#popup div[data-rel="popup-content"] .donate-form .content .total .right button:hover {
	-webkit-filter: brightness(1.5); 
	-moz-filter: brightness(1.5); 
	-o-filter: brightness(1.5); 
	filter: brightness(1.5);
}
/*====================================================*/
/*====================================================*/
/*====================================================*/

/*====================================================*/
/*====================================================*/
/*====================================================*/