/*-------------------------------

	POPUP.CSS

-------------------------------*/

.popup_back {
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1080;
}

.popup_cont {
	position: fixed;
	z-index: 1100;
}

.preloader {
	z-index: 1110;
}

.popup{
	max-height:750px;
	overflow-y:auto;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
      background-color: #E94C6F;
}
::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.3); 
}

/*---------------------

	EDIT BELOW

*/

.popup_close {
	color: #343333;
	cursor: pointer;
    background: #fff;
	position: absolute;
	padding: 0 5px;
	right: 20px;
	top: 10px;
}

@media only screen and (max-width: 768px) {
    .popup_close {
        color: #fff;
        background: #343333;
    }
	
	.popup{
	max-height:400px;
	overflow-y:auto;
	}
}

.popup_back {
	cursor: pointer;
	background-color: #222;
}

div.popup {
	background: #fff;
}

.preloader {
	left: 50%;
	margin: -10px 0 0 -25px;
	position: fixed;
	top: 50%;
}