.ocms-popuptext {
	position: relative;
	text-decoration: none;
	border: 0;
	border-bottom: 1px dashed blue;
	padding-right: 0.7em;
	cursor: pointer;
}
.ocms-popuptext:after {
	position: absolute;
	content: "⌂"; /* "⚠"; */  /* "🛈"; */
	top: -0.4em;
	right: 0;
	font-size: 0.8em;
}
.ocms-popuptext-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 16, 46, 0.8);
	backdrop-filter: blur(2.5px);
	text-align: center;
	z-index: 100;
	cursor: default;
}
.ocms-popuptext-layer > div {
	display: block;
	/* background-color: transparent; */
	width: calc(100vw - 40px);
	max-width: 800px;
	max-width: 960px;
	height: calc(100vh - 40px);
	max-height: 600px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: default;
    border-radius: 10px;
	background: #fff none;
	padding-top: 18px;
    border-radius: var(--border-radius-small);
}
.ocms-popuptext-layer > div > div {
	position: relative;
	background-color: #fff;
	margin: 40px 50px;
	width: calc(100% - 100px);
	height: calc(100% - 80px);
	text-align: left;
    padding: 16px;
    /* border: 1px solid silver; */
    cursor: default;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    scrollbar-color: var(--DarkBlue) var(--Blue-new);
	scrollbar-width: thin;
}

.ocms-popuptext-layer > div > div::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	border-radius: 4px;
}

.ocms-popuptext-layer > div > div::-webkit-scrollbar-track { /* Background */
	background: var(--Blue-new);
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	overflow: hidden;
}

.ocms-popuptext-layer > div > div::-webkit-scrollbar-thumb { /* Foreground */
	background: var(--DarkBlue);
	border-radius: 4px;
}


/*
.ocms-popuptext-layer > div > div:-webkit-scrollbar {
	-webkit-appearance: none;
    width: 3px;
}
*/
.ocms-popuptext-close {
	position: fixed;
	top: 30px;
	right: 4px;
	cursor: pointer;
	display: inline-block;
    text-align: right;
}
.ocms-popuptext-layer .ocms-popuptext-close {
	position: fixed;
	top: 20px;
	right: 56px;
	border: 0;
	box-shadow: none;
	color: transparent;
}
.ocms-popuptext-layer .ocms-popuptext-close:after {
	position: absolute;
	content: "\e91c";
    background: transparent;
    font-family: "danubius";
    font-style: normal;
    font-weight: normal;
    color: var(--DarkGray);
}
.ocms-popuptext-oneimage {
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.ocms-popuptext-layer > div > div {
		margin: 30px 0 0 0;
		width: calc(100% - 4px);
	}
	.ocms-popuptext-layer .ocms-popuptext-close {
		top: 10px;
		right: 10px;
	}
	.ocms-popuptext-layer > div {
		width: 100vw;
		height: 100vh;
		border-radius: 0;
		max-height: unset;
	}
}