.holder {
  width: 400px;
  height: 300px;
  position: relative;
}

.frame {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 0;
}

.bar {
  position: fixed;
  bottom: 1%;
  width: 100%;
  padding: 10px;
  z-index: 1;
}

button {
  border: none;
  background: #957b5f;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
}

.popup {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.popup_text {
  font-family: sans-serif;
}

.popup_text_title {
  font-weight: 800;
}

.popup_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  max-width: 250px;
  border-radius: 10px;
  padding: 20px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.popup_close {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup_close img {
  cursor: pointer;
}

.popup_qr img {
  width: 100%;
}

.popup_hide {
  display: none !important;
}

button {
  opacity: 0.8;
}

button:hover {
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */