.std_ui_layer__main {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 20000;
}
.std_ui_layer__main > .container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.std_ui_layer__main > .container > .wrapper {
  background-color: #FFF;
  border-radius: 4px;
}
.std_ui_layer__main > .container > .wrapper > .close_button {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 64px;
  height: 64px;
  background: url("images/close64.png");
  opacity: 0.3;
  z-index: 15000;
}
.std_ui_layer__main > .container > .close_button {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 64px;
  height: 64px;
  background: url("images/close64.png");
  opacity: 0.3;
  z-index: 15000;
}
.std_ui_layer__main > .container > .close_button:hover {
  opacity: 0.6;
}
.std_ui_layer__main.padding > .container > .wrapper {
  padding: 10px;
}
@media only screen and (max-width: 600px) {
  .std_ui_layer__main > .container > .close_button {
    display: block;
  }
  .std_ui_layer__main > .container > .wrapper {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
