.qrContainer {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: #000;
  padding: 0 10px;
  left: 0;
  top: 0;
  z-index: 999999999;
  display: flex;
  flex-direction: column;

  -webkit-transition: top 0.3s ease-in-out;
  -moz-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}

.qrContainer.hide {
  top: 100%;
  -webkit-transition: top 0.1s ease-in-out;
  -moz-transition: top 0.1s ease-in-out;
  -o-transition: top 0.1s ease-in-out;
  transition: top 0.1s ease-in-out;
}

.qrTitleContents {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrTitleContents label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.qrScannerContents {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: calc(100% - 230px);
  border-radius: 4px;
}

.qrScannerContents #qrCanvas {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  max-height: 100%;
}

.qrScannerContents #qrScanArea {
  position: absolute;
}

.qrScannerContents #qrScanArea .left-top{
  position: absolute;
  border-left: 3px rgba(255,216,0,1) solid;
  border-top: 3px rgba(255,216,0,1) solid;
  height: calc(100% / 5);
  width: calc(100% / 5);
  left: 0;
  top: 0;
  border-radius: 2px;
}

.qrScannerContents #qrScanArea .right-top {
  position: absolute;
  border-right: 3px rgba(255,216,0,1) solid;
  border-top: 3px rgba(255,216,0,1) solid;
  height: calc(100% / 5);
  width: calc(100% / 5);
  right: 0;
  top: 0;
  border-radius: 2px;
}

.qrScannerContents #qrScanArea .left-bottom {
  position: absolute;
  border-left: 3px rgba(255,216,0,1) solid;
  border-bottom: 3px rgba(255,216,0,1) solid;
  height: calc(100% / 5);
  width: calc(100% / 5);
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.qrScannerContents #qrScanArea .right-bottom {
  position: absolute;
  border-right: 3px rgba(255,216,0,1) solid;
  border-bottom: 3px rgba(255,216,0,1) solid;
  height: calc(100% / 5);
  width: calc(100% / 5);
  right: 0;
  bottom: 0;
  border-radius: 2px;
}


.qrScannerTip {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.qrScannerTip span{
  color: rgba(255,255,255,80);
  font-size: 12px;
  font-weight: 500;
}

.btnContents {
  min-height: 80px;
  width: 100%;
  display: flex;
  align-items:flex-start;
  justify-content: center;
  flex-direction: row;
  padding-top: 20px;
}

.btnContents button{
  width: 80%;
  height: 40px;
  background: rgba(255,255,255,0.8);
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}



.container-qr-result {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999999;
}


.container-qr-result.hide {
  display: none;
}

.container-qr-result .contents-qr-result {
  background: #ffffff;
  border-radius: 4px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}

.container-qr-result .contents-qr-result span {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 1.2px;
}
