@charset "utf-8";

/*** button ***/ 
.btn_set {position: relative;}
.btn_set span {display: inline-block; vertical-align:middle; font-size: 16px; margin-top: 10px;}
/* .btn_set span + span {margin-left: 8px;} */
.btn_set a {
  display: block;
  color: #fff;
  text-align: center; 
  line-height: 36px;
  min-width: 120px;
  height: 38px;
  background:#289d25; 
  border-radius: 21px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
}
.btn_set a.large {width: 220px;}
.btn_set a.button-panel-reg {background-color:#1c3e61;}
.btn_set a.outline {background:#fff; color: #555; border:solid 1px #ddd;}
.btn_set a.gray {background:#aaa; color: #fff; border:solid 1px #aaa;}
.btn_set a.outgrn {background:#fff; color: #7fbe26; border:solid 1px #289d25;}
.inner-btn {display: inline-block; vertical-align: middle; background: #777; color: #fff; padding: 2px 10px 4px 10px; border-radius: 3px; line-height: 32px;}

/*policy css추가 230403*/
.policy-list{cursor: pointer;}
.policy-footer span.bedge {display: inline-block;text-align: center; vertical-align: middle; min-width: 15px;height: 25px;line-height: 25px;font-size:15px;color: #fff;border-radius: 11px;margin-right: 10px;padding: 0 14px;}
.policy-footer span svg {position: relative; top:2px;}
.policy-footer span:last-child {display: inline-block; margin-left: 5px;}
.policy-footer span:last-child svg {position: relative; top:4px;}

@media ( max-width: 768px ) {
  .btn_set span {font-size: 14px;}
  /* .btn_set span + span {margin-left: 4px;} */
  .btn_set a {min-width: auto;font-size: 14px;line-height: 36px;height: 38px;}
}
@media ( max-width: 480px ) {
	.btn_set span + span {margin-left: 8px;}
 	.btn_set a.large {width: 150px;}
}

/** 입력박스 **/
input {
  height: 38px; 
  background: #fff;
  border:solid 1px #d2d2d2;
  outline: medium;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding: 0 10px;
  border-radius: 3px;
}
input:focus {border: 1px solid #aaa;color: #666; background: #fff;}
input:disabled {background:#ebe9e9;}
input:-ms-clear {display: none;}

input::-webkit-inner-spin-button,
input::-webkit-clear-button {display: none;}

::placeholder {color:#aaa;}
::-webkit-input-placeholder {color:#aaa;}
::-ms-input-placeholder {color:#aaa;}

input:-moz-read-only {background:#ebe9e9; border:0;}
input:read-only {border:solid 1px #d2d2d2; background: #eee;}

input+label.error {display: block; color: red; font-size: 14px;}

@media ( max-width: 768px ) {
  input+label.error {display: block; position: relative; left: 0; line-height: 20px;}
}
.datepicker {
  background:#fff url(../images/object/icon_calendar.png) no-repeat right 5px center; 
  padding: 0 21px 0 5px;
}
.set-date {position: relative; display: inline-block; height: 30px; line-height: 28px; padding:0 20px 0 10px;}
.set-date a {position:absolute;right: 0;top:5px;width: 20px;height: 20px;font-size: 0;background: url(/static/homepage/images/icon_delete-5403b796d6be1bdfe58b98b34d506896.png) no-repeat;}
.set-date + .set-date {margin-left: 10px;}

.filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
.filebox label {
    display: inline-block; 
    background: #777; 
    color: #fff; 
    padding: 2px 10px 4px 10px; 
    border-radius: 3px;
}

/* named upload */
.filebox .upload-name {
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #dfe2e4;
}

/** 콤보박스 **/
select {
  min-width: 80px;
  height: 38px;
  border: 1px solid #dfe2e4;
  outline: medium;  
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  vertical-align: middle;
  padding: 0 25px 0 5px;
  background: #fff url('../images/object/select_arrow_black.png') no-repeat center right 8px;
  background-size: 10px;
  font-size: 16px;
  border-radius: 3px;
}
select:focus {border: 1px solid #aaa;color: #666;}
select:disabled {background:#eee;}
/**20-03-05 수정**/
select::-ms-expand {display: none;background-color: transparent;}

/** 텍스트 박스 **/
textarea {background: #fff; border: 1px solid #d2d2d2; resize:vertical; font:inherit; overflow-y:auto;padding: 10px;}
textarea:focus {border: 1px solid #aaa;color: #666;}

/** check&radio **/
.input_rdo, 
.input_chk {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size:inherit;
    line-height: 24px;
    overflow: hidden;
    cursor: pointer;
}
.input_rdo + .input_rdo, 
.input_chk + .input_chk {margin-left: 20px;}
.input_rdo input,
.input_chk input {
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0; 
    width: 24px;
    height: 24px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    opacity: 0;
}
.input_rdo i,
.input_chk i {
    padding-left: 24px;
    font-style: normal;
}
.input_rdo i:before, .input_rdo i:after,
.input_chk i:before, .input_chk i:after {
    position: absolute;
}
.input_rdo i:before,
.input_chk i:before {
    content: '';
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    background: #fff;
}
.input_rdo i:before {
    border-radius: 100%;
}
.input_chk i:before {
    border-radius: 3px;
}
.input_chk input:checked + i:after {
    content: '';
    width: 12px;
    height: 7px;
    top: 7px;
    left: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}
.input_chk input:checked + i:before {
    background: #7fbe26;
    border-color: #7fbe26;
    border-radius:3px; 
}
.input_rdo input:checked + i:after {
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 10px;
    margin: auto;
    background: #7fbe26;
    border-radius: 100%;
}
.input_rdo input:disabled + i,
.input_chk input:disabled + i {
    cursor: default;
}
.input_chk input:disabled + i:before {
    opacity: 0.2;
    background-color: #ddd;
    border-color: #333;
}
.input_chk input:disabled:checked + i:before {
    opacity: 0.2;
    background-color: #333;
    border-color: #333;
}
.input_rdo input:disabled + i:before,
.input_rdo input:disabled:checked + i:before {
    opacity: 0.2;
    background-color: #ddd;
    border-color: #999;
}
.input_rdo input:disabled:checked + i:after {
    opacity: 0.2;
    background-color: #333;
}


/** check&radio **/
.input_agree {
    display: inline-block;
    vertical-align: middle;
    font-size:inherit;
    line-height: 42px;
    overflow: hidden;
    cursor: pointer;
}
.input_agree input {display: none;}
.input_agree i {display: inline-block;width: 120px;height: 42px;text-align: center;background: #eee; color: #000;font-weight: 400;}
.input_agree input:checked + i {background: #e63e30;color: #fff;}

/* Tooltip */
.tooltip {position: relative; display: inline-block; cursor: pointer;}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
  position: absolute;
  width: 150px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 3px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
    top: 135%;
    left: 50%;
    margin-left: -60px;
}
.tooltip .tooltiptext > p {font-size: 0.857rem; }

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/**alert**/
.alert-mask {
    position: fixed;
    z-index: 75535;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    display: table;
    transition: opacity .3s ease;
}

.alert-wrapper {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.alert-container {
    position: relative;
    width: 400px !important;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.alert-body {
    margin: 0 0 30px 0 !important;
    padding: 100px 20px 0 20px !important;
    line-height: 1.4;
}
.alert-footer {padding-bottom: 20px;}

.alert-default-button {
    width: 45%;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    line-height: 32px; 
    min-width: 80px; 
    height: 36px;
    color:#fff;
    background: #7fbe26;    
    border-radius: 2px;
    padding: 0 15px;
}

.alert-enter {
    opacity: 0;
}

.alert-leave-active {
    opacity: 0;
}
.alert-enter .alert-container,
.alert-leave-active .alert-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.alert-header {position: absolute; top:15px; width:100%; height:70px !important;}
.confirm .alert-header {background:url(/static/homepage/images/alert_confirm-49077a924baaa7b8ad221954d46ee190.png) center top no-repeat !important;background-size: auto 70px !important;}
.success .alert-header {background:url(/static/homepage/images/alert_success-b6369f6abb63048ec3a8f6dcfddb496e.png) center top no-repeat !important;background-size: auto 70px !important;}
.error .alert-header {background:url(/static/homepage/images/alert_error-ec840ac24e022bcac88fba2edd970a8c.png) center top no-repeat !important;background-size: auto 70px !important;}
.mce-content-body {font-family:"Nanum Barun Gothic","Helvetica Neue",Helvetica,Arial,sans-serif;}

/**모달팝업**/
.popup-mask {
    position: absolute;
    z-index: 998;
    top: 50%;
    left: 50%;
    margin-top: -300px;
    margin-left: -300px;
    transition: opacity .3s ease;
  }
  .popup-wrapper {
    width: 600px;
    height: 600px;
    background: #fff;
  }
  .popup-container {
    width: 100%;
    height: 100%;
  }
  .popup-body {
    width: 100%; 
    height: calc(100% - 50px);   
    background-color: #fff;
    overflow-y: auto;
    color: #000;
  }
  .popup-body img {max-width: 100%; height: auto;}
  .popup-footer {position: relative; bottom: 0; width: 100%; font-size: 0;}
  .popup-button {float: left; width: 50%;}
  .popup-button + .popup-button {border-left: solid 1px #555;}
  .check-day>label,
  .b-close>a {display: block; background: #333; color: #999; font-size: 16px; text-align: center; height: 50px; line-height: 50px;}
  .check-day>label>input {display: none;}
  .check-day>label>input:checked + i {color: #7fbe26;}
@media screen and (max-width: 480px){
  .popup-mask {width: 100%; top: 0; left:0;margin-top: 0;margin-left: 0;}
  .popup-wrapper {position: relative; top:130px; margin: 0 auto; width: 85%; height: auto; min-height: 320px;}
  .check-day>label,
  .b-close>a {font-size: 14px;}
}

/**스피너**/
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #86df77;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #86df77, 0 0 5px #86df77;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #86df77;
  border-left-color: #86df77;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}