/* bottom sheet */
.bottom_sheet__dim{
  background: rgba(0, 0, 0, 0.21);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.bottom_sheet--check{
  position: fixed;
  width: 100%;
  max-width: 640px;
  min-width: 320px;
  height: 196px;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 12px 12px 0 0;
  z-index: 99991;
  padding: 32px 16px 0 16px;
}


.bottom_sheet--check__top{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-BL);
  margin-bottom: 16px;
}

.bottom_sheet--check__button{
  border: none;
  background-color: transparent;
  font-weight: 800;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-A5);
}

.bottom_sheet--check_content{
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color:var(--color-BL);
}

/* bottom_sheet list */
.bottom_sheet_list{
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #FFFFFF;
  border-radius: 12px 12px 0 0;
  z-index: 99991;
  padding: 24px 0 56px 0;

}

.bt-active {
  font-weight: 800 !important;
  font-size: 16px !important;
  line-height: 160% !important;
  color: var(--color-A5) !important;
}

.bottom_sheet_list__li{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  color: var(--color-G6);
}

.bottom_sheet_list_blank_stroke{
  height: 1px;
  background-color:var(--color-G3);
  padding: 0 16px;
  box-sizing: border-box;
  margin: 0 16px;
}