body {
	/* font-family: 'Noto Sans KR', sans-serif; */
	font-family: 'Apple SD Gothic Neo', sans-serif;
  overflow: hidden;
  letter-spacing: -0.04rem;
  background-color: rgba(34 34 42);
  padding: 0;
  margin: 0;
}
input {
  outline: none;
  border: none;
  font-size: 1.125rem;
  padding: 8px 12px;
  max-width: 100%;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-radius: 4px;
}
input::placeholder {
  color: #bdbdbd;
}
button {
  display: inline-block;
  width: 100%;
  height: 52px;
  line-height: 52px;
  background-color: #0a4fc5;
  color: #fff;
  font-size: 1.125rem;
  box-sizing: border-box;
  border: none;
  outline: none;
  border-radius: 4px;
}
button:hover {
  filter: brightness(1.1);
}
button:active {
  filter: brightness(0.9);
}
.hidden, *[hidden='hidden'], *[hidden] {
  display: none !important;
}
#appContainer {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 100;
  line-height: 1;
  padding-top: 2px;
  min-height: 52px;
  height: 52px;
  background-color: #36373A;
}

#header img {
  vertical-align: middle;
  height: 20px;
}
#header::after {
  position: absolute;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: inset 0 7px 24px rgba(0,0,0,.7);
}

#videoContainer {
  display: flex;
  position: relative;
  width: 100%;
  /* padding-top: 125%; */
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #242424;
  /* box-shadow: 0 4px 48px rgba(0,0,0,.65); */
  /* padding-top: 56.25%; */
  
}


#videoContainer > iframe {
  position: absolute;
  top: 0;
  left: 0;
}

#videoContainer #tmpbg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
}


#nav {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  height: 52px;
  line-height: 52px;
  /* padding: 0 20px; */
  /* background-color:rgb(60, 60, 60); */
  background-color:rgb(45, 45, 58);
  /* gap: 24px; */
  box-shadow: 0 3px 24px -8px rgba(0,0,0,.5);
  font-size: 1rem;
}

#nav > div:not(.pointer) {
  display: block;
  position: relative;
  flex: 1;
  text-align: center;
  color: #999;
  /* padding: 10px 0; */
}

#nav .nav-item::after {
  content: '';
  position: absolute;
  display: block;
  width: 1px;
  height: 24px;
  top: 14px;
  right: 0;
  background-color: #000;
}
#nav .nav-item.selected {
  color: #fff;
}
#nav .pointer {
  display: block;
  position: absolute;
  left: 0;
  /* width: 50%; */
  bottom: 0;
  height: 2px;
  background-color: #ccc;
  transition: .275s all;
}

#nav .nav-item:hover, #nav .nav-item:active {
  filter: brightness(1.15);
}
#nav img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  height: 24px;
  filter: drop-shadow(1px 1px 5px rgba(0,0,0,.5));
}
#nav .label {
  display: inline-block;
}

#nav .loader {
  display: inline-block;
}

#nav #connecting .label {
  position: relative;
  padding-left: 0.5rem;
  color: rgb(213, 203, 110)
}
#nav #connecting .label::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#nav #btn-connect {
  color: rgb(42, 219, 127)
}
#nav #btn-disconnect {
  color: #ff0353;
}

#info {
  flex: 1;
  overflow: auto;
  padding: 18px 18px 64px 18px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
}
#info img{
  width: 100%;
  margin-top: -1px;
}

/* form (contents) */
#form {
  flex: 1;
  padding: 24px 18px 80px 18px;
  overflow: hidden auto;
}
#form-input-page, #form-confirm-page {
  width: 100%;
  color: #fff;
  font-size: 1.125rem;
}

#form-input-page form {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding-left: 8px;
  margin-bottom: 32px;
}

#form-input-page .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
}

#form-input-page .row .label {
  width: 64px;
}
#form-input-page .row .value {
  flex: 1;
}
#form-input-page .row .value input {
  min-width: 100%;
}

#form-confirm-page {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
}
#form-confirm-page .img-area {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
#form-confirm-page img {
  height: 90px;
  object-fit: cover;
  margin-bottom: 4px;
}
#form-confirm-page .title {
  color: rgb(175, 237, 51);
  margin-bottom: 4px;
}
#form-confirm-page .text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
}

#form-confirm-page .row {
  display: flex;
  flex-direction: row;
  line-height: 1.6;
  padding: 8px 0;
}

#form-confirm-page .row .label {
  width: 100px;
}


#chatContainer {
  display: block;
  flex: 1;
}

.bottom_sheet {
  display: flex;
  position: absolute;
  z-index: 100;
  /* bottom: 0; */
  /* top: 100vh; */
  top: 0;
  width: 100%;
  /* height: 64px; */
  /* height: 400px; */
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  background-color: #2b3341;
  /* background-image: linear-gradient(rgb(67, 75, 88) 0%, #2b3341 100%); */
  background-image: linear-gradient(#474747 0%, #676767 100%);

  /* overflow-y: auto; */
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
  /* transition-duration: 1s; */
  box-shadow: 0 -3px 24px rgba(0,0,0,.5);
}

.bottom_sheet_handle_wrap {
  z-index: 1;
  /* background: #414246; */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  height: 40px;
  margin-bottom: 10px;
  position: fixed;
}

.bottom_sheet_handle {
  width: 10%;
  height: 4px;
  background-color: #222;
  border-radius: 30px;
  margin-top: 8px;
}

.bottom_sheet .title {
  position: absolute;
  display: block;
  z-index: 2;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  top: 28px;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 12px rgba(0,0,0,.75);
}

.bottom_box {
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
  /* border: 1px solid lightgray; */
  border-radius: 10px;
  transition-duration: 2s;
  padding-top: 20px;
  padding-bottom: 20px;
}

.up_sensor {
  z-index: 1;
  position: absolute;
  background: transparent;
  width: inherit;
  height: 100%;
  bottom: 0;
  height: 64px;
  transition-duration: 1s;
}
