.hide {
  display: none !important;
}

*:not(input) {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.bins-input {
  position: relative;
  display: inline-flex;
  align-items: center;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  cursor: pointer;
}

.bins-input.readonly {
  cursor:default !important;
}

.bins-input.readonly *{
  cursor: default !important;
}

.bins-input.readonly label{
  color: #888888 !important;
}


.bins-input.readonly input + span{
  background-color: #aaaaaa !important;
  border: 1px #aaaaaa solid !important;
  -webkit-animation: borderscale 200ms ease-in;
  animation: borderscale 200ms ease-in;
}

.bins-input.readonly input + span:after {
  border-color: #666666 !important;
}

.bins-input input {
  opacity: 0;
  height: 0;
  width: 0;
}

.bins-input input[type="checkbox"] + span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border: 1px rgba(190,190,190,0.8) solid;
}

.bins-input input[type="checkbox"]:checked + span {
  background-color: var(--rep-color);
  border: 1px var(--rep-color) solid;
  -webkit-animation: borderscale 200ms ease-in;
  animation: borderscale 200ms ease-in;
}

.bins-input input[type="checkbox"] + span:after {
  content: '';
  width: 3px;
  height: 5px;
  border: solid #000000;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(-45deg) scale(0);
  transform: rotate(-45deg) scale(0);
  -webkit-transition: none;
  transition: none;
  margin-top: -1px;
}

.bins-input input[type="checkbox"]:checked + span:after {
  content: "";
  -webkit-transform: rotate(45deg) scale(1) !important;
  -ms-transform: rotate(45deg) scale(1) !important;
  transform: rotate(45deg) scale(1) !important;
  -webkit-transition: -webkit-transform 150ms ease-out;
  transition: -webkit-transform 150ms ease-out;
  transition: transform 150ms ease-out;
  transition: transform 150ms ease-out, -webkit-transform 150ms ease-out;
}






.bins-input input[type="radio"] + span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  background-color: #ffffff;
  border: 1px #aaaaaa solid;
  border-radius: 100%;
}

.bins-input input[type="radio"]:checked + span {
  -webkit-animation: borderscale 200ms ease-in;
  animation: borderscale 200ms ease-in;
  /* border-color: var(--rep-color); */
}

.bins-input input[type="radio"] + span:after {
  content: '';
  width: 3px;
  height: 3px;
  border: solid var(--rep-color);
  background: var(--rep-color);
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: none;
  transition: none;
}

.bins-input input[type="radio"]:checked + span:after {
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
  -webkit-transition: -webkit-transform 150ms ease-out;
  transition: -webkit-transform 150ms ease-out;
  transition: transform 150ms ease-out;
  transition: transform 150ms ease-out, -webkit-transform 150ms ease-out;
}

.bins-input label {
  font-size: 12px;
  font-weight: 500;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-top: -1px;
  white-space: nowrap;
  cursor: pointer;
}


.bins-input input[type="radio"]:checked + span + label {
  color: var(--rep-color) !important;
  font-weight: 700 !important;
}


@-webkit-keyframes borderscale {
    50% {
        box-shadow: 0 0 0 2px var(--rep-color);
    }
}

@keyframes borderscale {
    50% {
        box-shadow: 0 0 0 2px var(--rep-color);
    }
}






.bins-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.bins-switch .round:before {
  border-radius: 50%;
}

.bins-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.bins-switch span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(221,221,221);
  -webkit-transition: .2s;
  transition: .2s;
  border-radius: 16px;
}

.bins-switch span:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #ffffff;
  -webkit-transition: .2s;
  transition: .2s;
}

.bins-switch input:checked + span {
  background-color: var(--rep-color);
}

.bins-switch input:checked + span:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}









.bins-select-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc; /* 테두리 설정 */
  z-index: 1;
  height: 100%;
  width: auto;
  background: #ffffff;
  border-radius: 2px;
  cursor: pointer;

  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.bins-select-box * {
  cursor: pointer;
}

.bins-select-box.disable {
  border: 1px solid #cccccc; /* 테두리 설정 */
  cursor: default;
}

.bins-select-box.disable * {
  cursor: default;
}

.bins-select-box label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  z-index: -1; /* IE8에서 label이 위치한 곳이 클릭되지 않는 것 해결 */
  color: #333333;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  padding-left: 10px;
}

.bins-select-box.disable label{
  color: #cccccc; /* 테두리 설정 */
}

/* 가상 선택자를 활용 화살표 대체 */
.bins-select-box label::after {
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333333;
  margin-left: auto;
  margin-right: 10px;
}

.bins-select-box.disable label::after {
  border-top: 5px solid #cccccc !important;
}


.bins-select-box select {
  height: 100%;  /* 높이 초기화 */
  width: 100%;
  border: 0;
  opacity: 0;  /* 숨기기 */
  filter: alpha(opacity=0);  /* IE8 숨기기 */
  font-size: 12px;
  -webkit-appearance: none;  /* 네이티브 외형 감추기 */
  -moz-appearance: none;
  appearance: none;
  padding-left: 10px;
  padding-right: 30px;
}

.bins-select-box option {
  font-size: 12px;
  padding-left: 5px;
  padding-right: 5px;
}








.bins-pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.bins-pagenation a {
    color: #333333;
    padding: 6px 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    margin-left: 2px;
    margin-right: 2px;
    cursor: pointer;
}

.bins-pagenation a.active {
    background-color: var(--rep-color);
    color: white;
}

.bins-pagenation a:hover:not(.active) {background-color: #dedede;}








.bins-table {
  display:flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  font-size: 0;
}

.bins-table .bins-theader {
  min-width: 100%;
  width: auto !important;
  background: rgb(82,96,111);
  overflow: auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15), 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.bins-table .bins-theader::-webkit-scrollbar {
  display: none !important; // 윈도우 크롬 등
}

.bins-table .bins-theader .bins-trow {
  display: inline-flex;
  flex-wrap: nowrap;
  min-width: 100%;
  width: auto !important;
  height: 40px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.bins-table .bins-theader .bins-trow .bins-tcol {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.bins-table .bins-theader .bins-trow .bins-tcol label {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.8px;
  word-wrap:break-all;
  text-align: center;
  white-space: nowrap;
}

.bins-table .bins-theader .bins-trow .bins-tcol input {

}


.bins-table .bins-tbody {
  flex: 1;
  min-width: 100%;
  width: auto !important;
  overflow: auto;
  box-shadow: 0 1px 3px 0 rgba(223, 223, 223, 0.5), 0 2px 5px 0 rgba(223, 223, 223, 0.5);
}

.bins-table .bins-tbody .bins-trow {
  display: inline-flex;
  align-items: center;
  min-width: 100%;
  width: auto !important;
  min-height: 40px;
  cursor: pointer;
}

.bins-table .bins-tbody .bins-trow *{
  cursor: pointer;
}

.bins-table .bins-tbody .bins-trow+.bins-trow {
  border-top: 1px #cdcdcd dashed;
}

.bins-table .bins-tbody .bins-trow .bins-tcol {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
  padding-bottom: 6px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;

}

.bins-table .bins-tbody .bins-trow .bins-tcol label {
  font-size: 12px;
  font-weight: 400;
  color: #444444;
  letter-spacing: 0.8px;
  text-align: center;
  word-break: keep-all;
  margin: auto;
}

.bins-table .bins-tbody .bins-trow .bins-tcol input {

}

.bins-table .bins-tbody .bins-tnone {
  justify-content: center;
  width: 100%;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.bins-table .bins-tbody .bins-tnone label{
  font-size: 13px;
  font-weight: 500;
  color: #888888 !important;
}

.bins-table .bins-tbody::-webkit-scrollbar {
    display:inherit !important;
    height: 8px !important;
    width: 8px !important;
  }
.bins-table .bins-tbody::-webkit-scrollbar-thumb { background: #444444;  border-radius: 4px;}
.bins-table .bins-tbody::-webkit-scrollbar-track { background: #ececec;}







.bins-alert {
  z-index: 500;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.5);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.bins-alert .bins-alert-container{
  background: #ffffff;
  max-width: 80%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.19);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}


.bins-alert .bins-alert-container .bins-alert-contents{
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.bins-alert .bins-alert-container .bins-alert-contents label {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  word-break: keep-all;
  line-height: 18px;
}

.bins-alert .bins-alert-container .bins-alert-button {
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px rgba(0,0,0,0.2) solid;
  height: 35px;
}

.bins-alert .bins-alert-container .bins-alert-button button {
  flex: 1;
  background: #ffffff;
  height: 100%;
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}

.bins-alert .bins-alert-container .bins-alert-button button+button{
  border-left: 1px rgba(0,0,0,0.2) solid;
}


.bins-alert .bins-alert-container .bins-alert-button #binsAlertCloseBtn {
  color: var(--rep-color);
}

.bins-alert .bins-alert-container .bins-alert-button #binsAlertCancelBtn {
  color: #333333;
}




.bins-popup{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}


.bins-popup .bins-popup-hidden-value {
  display: none;
}

.bins-popup .bins-popup-view {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  min-width: 200px;
  /* max-width: 1024px; */
  /* max-height: 768px; */
  max-height: 85%;
  max-width: 70%;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.bins-popup .bins-popup-view .bins-popup-header{
  display: flex;
  flex-direction: row;
  background: rgb(53,53,53);
  width: 100%;
  height: 40px;
  min-height: 40px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.bins-popup .bins-popup-view .bins-popup-header label{
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.bins-popup .bins-popup-view .bins-popup-body{
  flex: 1;
  background: #ffffff;
  max-height: calc(100% - 78px);
  overflow-y: auto;
}

.bins-popup .bins-popup-view .bins-popup-button{
  display: flex;
  flex-direction: row;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  height: 38px;
  min-height: 38px;
  border-top: 1px #cccccc solid;
  background: #ffffff;
}

.bins-popup .bins-popup-view .bins-popup-button button{
  background: #ffffff;
  border: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #333333;
}

.bins-popup .bins-popup-view .bins-popup-button button:first-child{
  border-bottom-left-radius: 2px;
}

.bins-popup .bins-popup-view .bins-popup-button button:last-child{
  border-bottom-right-radius: 2px;
}

.bins-popup .bins-popup-view .bins-popup-button button+button{
  border-left: 1px #cccccc solid;
}
