.popup {
	display: table;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 100;
	-webkit-transition: opacity 0.2s ease-in-out, visibility 0s ease 0.3s;
	-o-transition: opacity 0.2s ease-in-out, visibility 0s ease 0.3s;
	transition: opacity 0.2s ease-in-out, visibility 0s ease 0.3s;
}
.popup.active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.popup.active.hide {
	opacity: 0;
}
.popup-bg {
	background-color: #000000;
	height: 100%;
	left: 0;
	opacity: 0.7;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}
.popup-wrap {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}
.popup-content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 3px;
    margin: 0 auto;
    padding: 20px 45px 50px;
    position: relative;
    text-align: center;
    width: 260px;
}
.popup-content.fix-width {
    padding: 42px 90px;
    width: 617px;
}
.popup-content.big {
    width: 70%;
}
.popup-content h2 {
	padding: 25px 0 28px;
}
.popup-content.fix-width h2 {
	padding: 20px 0 40px;
}
.popup-content > p {
    text-indent: 0;
    margin-bottom: 35px;
    line-height: 1.2;
}
.popup-content > .scroller-wrap {
	text-align: left;
	margin-bottom: 30px;
    height: 450px;
}
.popup-content > .scroller-wrap > .scroller {
	min-height: inherit;
	height: 100%;
	max-height: inherit;
}
.popup-close {
    cursor: pointer;
    font-family: "IconsCampus";
    /* opacity: 0.5; */
    padding: 10px;
    position: absolute;
    right: -40px;
    top: -30px;
    font-size: 14px;
    color: #000;
}
.popup-close:after {
	content: "X";
}
.popup-close:hover {
	color: #f04c63;
}
.popup-main > textarea {
    height: 120px;
    resize: none;
    width: 100%;
}
.popup-menu > li {
	margin-bottom: 8px;
}
.popup-menu > li:last-of-type {
	margin-bottom: 0;
}
.popup-menu > li > a {
	border: 1px solid #dde1f3;
	display: block;
	font-size: 18px;
	padding: 10px 2px;
}
.popup-menu > li > a:hover {
	background-color: #e7ebee;
}
@media (max-width: 650px) {
	.popup-content.fix-width {
	    padding: 35px 20px;
	    width: 95%;
	}
}