.BINS-CONTAINER {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
}

.BINS-VIEW {
  flex: 1;
  height: 100%;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
}

._Bottom {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

._Bottom label{
  color: #666666;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

._MAIN {
  flex: 1;
  width: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  overflow-y: auto;
  opacity: 0;
}

._MAIN.show {
  opacity: inherit;
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s ;
  -o-animation: fadein 1s;
  animation: fadein 1s;
}

.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;
}


@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



.bins-alert .bins-alert-container .bins-alert-contents{
  padding-left: 6vw !important;
  padding-right: 6vw !important;
  padding-top: 5vw !important;
  padding-bottom: 5vw !important;
}


.bins-alert .bins-alert-container .bins-alert-contents label {
  font-size: 3.5vw !important;
  line-height: 4.5vw !important;
}

.bins-alert .bins-alert-container .bins-alert-button {
  height: 5vh !important;
}

.bins-alert .bins-alert-container .bins-alert-button button {
  font-size: 3vw !important;
}
