.ws-app_download_qrcodes-js {
	display:inline;
	cursor:pointer;
	text-decoration:underline;
	transition: color .5s
}
.ws-app_download_qrcodes-js:hover {
	color: var(--Text-Tertiary);
}
.ws-app_download_qrcodes {
	position:absolute;
	top:0;left:0;right:0;bottom:0;
	display: flex;
	flex-direction:column;
	align-items: center;
	justify-content: center;
}

/* popup */
.download_qrcodes-overlay {
	top:0;
	left:0;
	height: 100vh;
	width: 100vw;
	position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 99999999;
	background-color: rgba(20, 20, 20, 0.80);
}
.download_qrcodes-popup {
	height: auto;
	width: 56rem;
	max-width:90%;
	max-height: 90%;
	overflow-y: auto;
	position:relative;
	box-shadow: 0 0 20px rgb(0 0 0 / 80%);
	background-color: var(--Background-Primary);
	border: 1px solid var(--Stroke-Primary);
	color: #fff;
}
@supports not selector(::-webkit-scrollbar) {
  .download_qrcodes-popup {
      scrollbar-width: thin;
      scrollbar-color: var(--Background-Primary) var(--Stroke-Primary);
  }
}
.download_qrcodes-popup::-webkit-scrollbar {
    width: 3px;
}
.download_qrcodes-popup::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: var(--Stroke-Primary);
}
.download_qrcodes-popup::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: var(--Background-Primary);
}

.ws-apps-popup-wrap {
    position: relative;
	text-align: center;
	background-size:cover;
	background-position:center;
	background-repeat: no-repeat;
}
.ws-apps-popup-wrap:before {
	content:'';
	position: fixed;
	/* top:0; left:0;
	bottom: 0;
	right: 0; */
	width:inherit;
	height:inherit;
	background-color: var(--Background-Primary);
	opacity: .2;
}

.ws-apps-popup-wrap > * {
	position: relative;
	z-index: 1
}
.apps-popup-title {
	margin: 1.5rem .5rem;
}
.ws-apps-popup-wrap .app-wrap {
	/* padding: 2rem 3rem; */
	flex-basis: 100%;
}
.ws-apps-popup-wrap .app-wrap > *:not(:last-child) {
	/* margin-bottom: 2rem */
}
.ws-apps-popup-wrap .app-wrap .button {
	width: 100%;
	max-width: 16.75rem;
	min-width: unset;
	padding: 1rem;
}
.download_qrcodes-popup.download_qrcodes-fullscreenmode {
	width: 100vw;
	max-width: 100vw;
	height: 100vh
}
.download_qrcodes-popup iframe {
	width:100%;
	display: block
}
.download_qrcodesoverlay-close {
	position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
	width: 2.75rem;
	height: 2.75rem;
    /* padding: .825rem; */
	display: flex;
	align-items: center;
	justify-content: center;
    line-height: 1;
	z-index: 1;
	border: 1px solid var(--Stroke-Primary);
	background: var(--Background-Secondary);
	transition: background-color .5s
}
.download_qrcodesoverlay-close:hover {
	background: var(--Background-Primary);
}
.download_qrcodesoverlay-close.download_qrcodesoverlay-close-top {
    top: 2rem;
    right: 2rem;

}
.download_qrcodesoverlay-close svg {
	fill:#fff;
	width: .875rem;
    height: .875rem;
}
@media (min-width: 992px) {
	.ws-apps-popup-wrap {
	    padding: 1rem 5.5rem;
	}
	.ws-apps-popup-wrap .app-wrap > *:not(:last-child) {
		margin-bottom: 2rem
	}
	.ws-apps-popup-wrap .app-wrap {
		padding: 2rem 3rem;
	}
}
@media (max-width: 991px) {
	.ws-apps-popup-wrap {
		padding: 1rem 2rem;
	}
	.ws-apps-popup-wrap .app-wrap > *:not(:last-child) {
		margin-bottom: 1.5rem
	}
	.ws-apps-popup-wrap .app-wrap {
		padding: 1.5rem;
	}

}
@media (max-width: 767px) {
	.ws-apps-popup-wrap {
		padding: 1rem;
	}
}
