html,
body {
  margin: 0 auto;
  height: 100%;
  /* OCR 개발시 html에 ocr 클래스 부여필요  */
  /* background: #000; */
  box-sizing: border-box;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.text-info {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 3.2vmin;
  line-height: 5vmin;
  color: white;
}

.text-color-black {
  color: black;
}

.text-weight-bold {
  font-weight: bold;
}

.preview-img {
  border-radius: 3vmin;
}

.preview-ui {
  display: flex;
  border-radius: 3vmin;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  border: 6vmin solid #fff;
}

.top-ui-logo {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 4.2vmin;
  line-height: 8.4vmin;
  color: #cccccc;
}

.bottom-ui-copyright {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 3.2vmin;
  line-height: 7.2vmin;
  color: #868686;
}

[data-useb-ocr='topUI'],
[data-useb-ocr='middleUI'],
[data-useb-ocr='bottomUI'],
[data-useb-ocr='previewUI'] {
  display: none;
}

.preloading-ui {
  position: absolute;
  display: none;
  background-color: #2f2f2f;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 2rem;
  color: #d2d2d2;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.gap10 {
  gap: 10px;
}

.flex {
  display: flex;
}

.custom--label {
  font-style: normal;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 0.75rem;
  color: #aaaaaa;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
