.popup {
	position: fixed;
	z-index: 1000000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255, 1);
    overflow-y: scroll;
    padding: var(--big-spacing) var(--default-spacing) var(--default-spacing) var(--default-spacing);
	/*padding: 20px;
	text-align: center;*/
}
/*.popup > .wrapper {
	display: inline-block;
	width: 40%;
	max-width: 500px;
	min-height: 150px;
	background: #fff;
	padding: 10px;
	position: relative;
	z-index: 1000000;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	text-align: left;
}
.popup .tools {
	position: absolute;
	right: 40px;
	top: 30px;
	z-index: 1000000;
}
.popup .tools span.button {
	display: inline-block;
	font-size: 0;
	cursor: pointer;
	background-size: 100%;
	margin-left: 20px;
}*/
.close {
    position: absolute;
    right: var(--default-spacing);
    top: var(--default-spacing);
	display: block;
	width: 15px;
	height: 20px;
	background: url('../img/close.svg') no-repeat 0 2px;
    background-size: 100%;
	cursor: pointer;
	font-size: 0;
}
.popup .close.back {
	display: inline-block;
	width: auto;
	height: 20px;
	background: url('../img/prev.svg') no-repeat;
	cursor: pointer;
	background-size: 15px;
	font-size: 12px;
	padding-left: 20px;
	margin-bottom: 10px;
}


/* Page popup */
.page_popup {
    display: none;
	position: fixed;
    z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255, 0.8);
}
.page_popup.unclosable {
    background: rgba(255,255,255, 0.95);
}
.page_popup > .wrapper {
    width: 100%;
	max-width: 700px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #666;
    padding: 35px;
    box-sizing: border-box;
}
.page_popup > .wrapper .close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: url('../img/close.svg') no-repeat;
    background-size: 100%;
    cursor: pointer;
}
.page_popup.unclosable > .wrapper .close {
    display: none;
}
.page_popup > .wrapper .image {
    float: left;
    width: 50%;
    position: relative;
}
.page_popup > .wrapper .image img {
    width: 100%;
}
.page_popup > .wrapper .details {
    float: right;
    width: 45%;
}
.page_popup > .wrapper .details .popup_title {
}
.page_popup > .wrapper .details .description {
    margin-top: 20px;
    font-size: 17px;
    line-height: 21px;
}
.page_popup > .wrapper .details .more {
    font-size: 15px;
    display: block;
    margin-top: 20px;
}
@media only screen and (max-width: 1023px) {
}
@media only screen and (max-width: 767px) {
    .page_popup {
        height: 100vh;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        width: auto;
    }
    .page_popup > .wrapper {
        position: static;
        top: 0;
        left: 0;
        transform: none;
        height: calc(100vh - 30px);
        overflow: auto;
        
    }
    .page_popup > .wrapper .image {
        float: none;
        width: 100%;
    }
    .page_popup > .wrapper .image img {
	    margin-bottom: 10px;
	}
    .page_popup > .wrapper .details {
        float: none;
        width: 100%;
    }
}