.custompopup{
	display:none;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0000002e;
    z-index: 400;
}

.custompopup .content {
    background: white;
    max-height: calc(100vh - 200px);
    max-width: calc(100% - 100px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    overflow-y: auto;
}
.custompopup .content .first_content,
.custompopup .content .second_content{
	padding: 50px;
}

.custompopup .content .second_content{
	background-color:#f3f3f3;
}

.linkpopup{
	margin-bottom:60px;
	display:block;
}

.custompopup img.cross {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    padding: 15px;
}

.custompopup .content>img {
    width: 100%;
}

.custompopup .content>img.cross {
    width: auto;
}