@charset "utf-8";

/*-----------------------------------
	QR read
-----------------------------------*/

button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}



.qr-read {
	background-image: none;
	margin: 0;
	padding: 0;
}

.reader {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.reader-video {
    background-color: #000;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.reticle {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reticle a{
	position: static;
}
.button-qr-close {
	position: absolute;
	bottom: 5.33dvw;
	left: 50%;
	transform: translateX(-50%);

	color: #fff;
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 10px 20px;
}

.qr-cont {
	position: relative;
	height: 100%;
	color: #faa;
}

.qr-cont .text {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 1.4em;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.modal-overlay.is-show {
    display: block;
}

.modal-overlay .button-close {
	position: absolute;
	bottom: 5.33dvw;
	left: 50%;
	transform: translateX(-50%);

	color: #f88;
	border: 1px solid #f88;
	border-radius: 20px;
	padding: 10px 20px;
}

.unsupported {
    display: none;
    flex-direction: column;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    z-index: 999;
}

.unsupported.is-show {
    display: flex;
}

.unsupported-title {
    font-weight: bold;
    font-size: 2em;
}

session.mission {
	display: none;
	height: 100%;
	position: relative;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% auto;
}
session.mission.is-show {
	display: block;
	height: 100%;
}

session.mission.is-show .qr-cont-wrap{
	height: 100%;
}


