.BINS-CONTAINER {
  width: 100%;
  height: calc(100% - 60px);
  overflow-y: auto;
}

.BINS-SUB-CONTAINER {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.BINS-CONTAINER.HOME {
  padding-top: 54px;
}

._HEADER {
  position: block;
  z-index: 20;
  left: 0;
  top: 0;
  height: 54px;
  width: 100%;
  display: flex;
  flex-direction: row;
  box-shadow: none;
}

.BINS-CONTAINER.HOME ._HEADER {
  position: fixed;
  background: rgba(255,255,255,1);
  box-shadow: 0 1px 2px 0 rgba(0,0,0, 0.15), 0 1px 2px 0 rgba(0,0,0, 0.15);
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}

.BINS-CONTAINER.HOME ._HEADER>div>*{
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}

._HEADER > ._HEADER-leftContetns{
  height: 100%;
  /* width: 120px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding-left: 5px;
}

._HEADER > ._HEADER-leftContetns > a{
  font-size: 20px;
  color: #000000;
  width: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
}

._HEADER > ._HEADER-rightContetns{
  height: 100%;
  /* width: 120px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

._HEADER > ._HEADER-titleContents{
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  padding-right: 20px;
}

._HEADER > ._HEADER-titleContents > label{
  font-size: 18px;
  font-weight: 800;
  word-break: keep-all;
}

.BINS-SUB-CONTAINER > ._HEADER > ._HEADER-titleContents {
  padding-left: 0px;
  padding-right: 0px;
}




.BINS-CONTAINER.HOME ._HEADER.DOWN{
  background: rgba(255,255,255,0.95);
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}

.BINS-CONTAINER.HOME ._HEADER.DOWN *{
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}

.BINS-CONTAINER.HOME ._HEADER.DOWN ._HEADER-titleContents label{
  color: rgba(0,0,0,1);
}



.BINS-VIEW {
  width: 100%;
  height: auto;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  height: calc(100% - 54px);
}

.HOME .BINS-VIEW{
  height: 100%;
}

.BINS-SUB-CONTAINER > .BINS-VIEW {
  height: calc(100% - 54px);
}

._MAIN {
  flex: 1;
  width: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  height: 100%;
}


._NAVI {
  z-index: 20;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  border-top: 0.5px #aaaaaa solid;
  padding-bottom: 5px;
}

._NAVI > .item-navi {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

._NAVI > .item-navi > .icon-navi-normal,
._NAVI > .item-navi > .icon-navi-select{
  display: flex;
  align-items: center;
  justify-content: center;
}

._NAVI > .item-navi > .icon-navi-normal > i,
._NAVI > .item-navi > .icon-navi-select > i{
  font-size: 22px;
}

._NAVI > .item-navi > .icon-navi-normal > img,
._NAVI > .item-navi > .icon-navi-select > img{
  width: 28px;
  height: 28px;
}

._NAVI > .item-navi > span{
  font-size: 9px;
  color: #000000;
  font-weight: 600;
  margin-top: 1px;
}

._NAVI > .item-navi.select > span{
  color: var(--main-color);
}






.BINS-SUB-VIEW {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  background: #FFFFFF;
  width: 100%;
  height: 100%;

  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  -o-transition: right 0.5s ease;
  transition: right 0.5s ease;
}

.BINS-SUB-VIEW.hide {
  display: inherit !important;
  right: calc(-100% - 3px);
  -webkit-transition: right 0.2s ease;
  -moz-transition: right 0.2s ease;
  -o-transition: right 0.2s ease;
  transition: right 0.2s ease;
}


.BINS-SUB-VIEW > ._SUB-HEADER{
  height: 52px;
  width: 100%;
  display: flex;
  background: #ffffff;
  border-bottom: 1px #cccccc solid;
  box-shadow: 0 1px 3px 0 rgba(0,0,0, 0.15), 0 1px 3px 0 rgba(0,0,0, 0.15);
  align-items: center;
}

.BINS-SUB-VIEW > ._SUB-HEADER > .contents-close-button{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 52px;
}

.BINS-SUB-VIEW > ._SUB-HEADER > .contents-close-button > i{
  font-size: 20px;
  color: #000000;
}

.BINS-SUB-VIEW > ._SUB-HEADER > .contents-title{
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items:center;
  justify-content: center;
}

.BINS-SUB-VIEW > ._SUB-HEADER > .contents-title > h2{
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.BINS-SUB-VIEW > ._SUB-HEADER > .contents-dummy{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 100%;
}


.BINS-SUB-VIEW > ._SUB-MAIN{
  height: calc(100% - 52px);
  overflow-y: auto;
}




.view-main {
  display: none;
  width: 100%;
  height: 100%;
}






.BINS-DOWN-VIEW-Background {
  display: none;
  height: 100%;
  width: 100%;
  position: fixed;
  background: rgba(0,0,0,0.5);
  z-index: 41;
  left: 0;
  top: 0;
}

.BINS-DOWN-VIEW-Main {
  position: fixed;
  z-index: 42;
  left: 0;
  bottom: 0;
  height: 90%;
  width: 100%;
  max-height: 90%;
  overflow-x: auto;
  overflow-y: auto;
  background: #ffffff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.5);

  -webkit-transition: bottom 0.3s ease-in-out;
  -moz-transition: bottom 0.3s ease-in-out;
  -o-transition: bottom 0.3s ease-in-out;
  transition: bottom 0.3s ease-in-out;
}

.BINS-DOWN-VIEW-Main.hide {
  display: inherit !important;
  bottom: -90%;
  -webkit-transition: bottom 0.2s ease-in-out;
  -moz-transition: bottom 0.2s ease-in-out;
  -o-transition: bottom 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out;
  box-shadow: none;
}


.extra-small{
  width: 60px !important;
}

.small{
  width: 90px !important;
}

.small-medium{
  width: 100px !important;
}

.medium{
  width: 120px !important;
}

.large{
  width: 180px !important;
}

.extra-large{
  width: 220px !important;
}

.max{
  width: 100% !important;
}

.text-center{
  text-align: center;
}

.cursor-pointer{
  cursor: pointer;
}

.touch{
  opacity: 0.8;
}

.disabled {
  border: 1px solid #cccccc !important; /* 테두리 설정 */
  cursor: default !important;
  color: #cccccc !important;
  background: #efefef;
  outline: none;
}

.disabled * {
  cursor: default !important;
}

.divide {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 12px;
  border-bottom: 1px #cccccc dashed;
}
