.POPUP_background {
  z-index: 100;
  position:fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.5);
}

.POPUP_VIEW {
  z-index: 101;
  position:fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.POPUP_VIEW > .POPUP_body{
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 2px 2px 5px 2px rgba(53, 53, 53, 0.5);
}

.POPUP_VIEW > .POPUP_body > .POPUP_Title{
  background: #333333;
  display: flex;
  align-items: center;
  height: 42px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-left: 15px;
  padding-right: 15px;
}

.POPUP_VIEW > .POPUP_body > .POPUP_Title > label{
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}


.POPUP_VIEW > .POPUP_body > .POPUP_Main{
  background: #ffffff;
}


.POPUP_VIEW > .POPUP_body > .POPUP_Button{
  display: flex;
  flex-direction: row;
  height: 42px;
  width: 100%;
  border-top: 1px #cccccc solid;
}


.POPUP_VIEW > .POPUP_body > .POPUP_Button > button{
  height: 100%;
  min-width: 100px;
  flex: 1;
  background: #ffffff;
  border: none;
  cursor: pointer;

  font-size: 13px;
  font-weight: 500;
}

.POPUP_VIEW > .POPUP_body > .POPUP_Button > button + button{
  border-left: 1px #cccccc solid;
}

.POPUP_VIEW > .POPUP_body > .POPUP_Button > button:first-child{
  border-bottom-left-radius: 4px;
}

.POPUP_VIEW > .POPUP_body > .POPUP_Button > button:last-child{
  border-bottom-right-radius: 4px;
}




.cursor-pointer{
  cursor: pointer;
}

.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;
}

.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;
}


@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;
    }
}
