
.m_only{ display: none !important; }
.tab_only{ display: none !important; }
.pc_only{ display: block !important; }

.mt0 { margin-top: 0 !important; }
.pt0 { padding-top: 0 !important; }
.mb0 { margin-bottom: 0 !important; }
.pb0 { padding-bottom: 0 !important; }
.ml0 { margin-left: 0 !important; }
.pl0 { padding-left: 0 !important; }
.mr0 { margin-right: 0 !important; }
.pr0 { padding-right: 0 !important; }

/*********************************
*********(JS 관련 스타일 설정)********
**********************************/

.custom-select {
  width: auto;
  position: relative;
  /* margin: 20px 0; */
}
.custom-select.disabled {
  pointer-events: none;
}
.contents .custom-select .selected-item{
  width: 100%;
  min-height: 36px;
  text-align: left;
}


.custom-select select {
  display: none;
}
.custom-select label{
  font-family: "SamsungOne";
  font-weight: 400;
  font-size: 12px;
  color: rgba(193, 193, 193, 1);
}

.selected-item {
  position: relative;
  /* background: #be0071; */
  padding: 5px 20px;
  color: black;
  cursor: pointer;
  z-index: 99;
}
.selected-item.selected-placeholder{
  color: rgba(193, 193, 193, 1);
} 
.disabled .selected-item, input:disabled, textarea:disabled{
  color: #000a;
  cursor:default;
}


.custom-select .selected-item::after{
  /* font-family: FontAwesome; */
  content: "";
  font-size: 20px;
  width:13.71px;
  height:13.33px;
  background: url("/resources/images/header/arrow_down.png");
  background-size: 13.71px 13.33px;
  color: #fff;
  position: absolute;
  right: 0;
  /* transition: 0.5s; */
  top: calc(50% - 8.33px / 2);
}


.custom-select.bordered{border-bottom: 1px solid #d9d9d9;}

.custom-select.black:not(.disabled) .selected-item::after {
  background: url("/resources/images/header/arrow_down_black.png");
  background-size: 13.71px 8.33px;
  height: 8.33px;
    /* top: auto; */
    bottom: 11px;
}

.custom-select .selected-item.arrowanim::after{
  transform: rotate(180deg);
}

.custom-select .item {
  /* background: #be0071; */
  padding: 12px 10px;
  color: black;
    /* background-color: white; */
  /* border-top: 1px solid #99005c; */
  cursor: pointer;
  text-align: left;
  line-height: 1.15;

  order: 1000;
}

.custom-select .item[data-value="null"]{
  order: 1;
}
.custom-select .item[data-value="SC0102"]{
  order: 2;
}

.custom-select .item:hover {
  background-color: rgba(60, 128, 252, 1);
  color: white;
}
.custom-select .item.selected {
  font-weight: 700;
  color: rgba(60, 128, 252, 1);
}
.custom-select .item.selected:hover {
  font-weight: 700;
  color: white;
}


.custom-select .selected-item {
  width: 100%;
  min-height: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}
.custom-select .item_search {
  margin: 8px;
  border-bottom: 1px solid #cccccc ;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.custom-select .item_search .search_input{
  font-family: unset;
  padding: 8px 0;
  border: none;
  flex: 1;
}
.custom-select .item_search img{
  width: 20px;
  height: 20px;
}

.custom-select.open .all-items{
  display: block;
}
.all-items {
  display: none;
  position: absolute;
  /* border: 1px solid #cccccc; */
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  /* padding: 8px 0; */
  /* padding-right: 25px; */
  font-family: 'SamsungOne';
  font-weight: 400;
  font-size: 16px;
  background-color: white;
  box-shadow: 0 0.28vw 0.69vw 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
}
.all-items-inner{
  max-height: 300px;
  overflow: auto;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.sdf {
  border: 1px solid red;
}



.note-editor .note-toolbar, .note-popover .popover-content {
  display: flex;
  flex-direction: row;
}
.note-editor .note-toolbar>.note-btn-group, .note-popover .popover-content>.note-btn-group {
  display: flex;
  flex-direction: row;
}
.note-editor .note-btn:active {
    padding: 5px 10px;
}
.note-editor button.close{
  width: fit-content;
}



section.base {
    padding: 100px 0;
    max-width: 1920px;
    margin: 0 auto;
}
section.base.full {
    padding: 0;
}

.inner {
    position: relative;
    width: 100%;
    max-width: calc(1440px - 48px);
    padding : 0;
    margin: 0 auto;
    font-family: 'SamsungSharpSans',arial,sans-serif;
    overflow: visible;
    word-break: keep-all;
    text-overflow: clip;
    display: flex;
    flex-direction: column;
}
.inner.full{
    max-width: 100%;
    padding: 0;
    padding-bottom: 150px;
}

.section__title{
    color: #000;
    text-align: center;
    font-family: 'SamsungSharpSans';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px; /* 120.833% */
    margin: 0 auto 48px;
    width: 90%;
    text-align: center;

}

.custom-dropdown {
  flex-direction: column;
  border-radius: 0;
}
.custom-dropdown .title{
  position: relative;
  width:100%;
  cursor: pointer;
  font-weight: bold;
}
.custom-dropdown .title::before{
  content: "";
  position: absolute;
  background: url('/resources/images/sidebar/arrow_up.png');
  width:15.68px;
  height:8.1px;
  right:0;
  top: 4.5px;
  /* transition: 0.5s; */
}
.custom-dropdown.active .title::before{
  transform: rotate(180deg);
}
.active .custom-dropdown .title::before{
  display: none;
}

.contents__wrapper{
    overflow: hidden;
    /* border-radius: 0px 0px 20px 20px; */
    border-radius: 0;
    width: 100%;
    position: relative;
    background: none;
    display: grid;
    grid-template-rows: 0fr;
    
    /* border: 1px solid rgb(221, 221, 221); */
    /* transition: grid-template-rows 0.5s; */
  }
  
  .custom-dropdown.active .contents__wrapper{
    grid-template-rows: 1fr;
}
.contents__wrapper .contents{
  min-height: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contents input[type="radio"]{
  display: none;
}
.contents input[type="radio"]+*{
  position: relative;
  cursor: pointer;
  padding-left: 25px;
  font-family: "SamsungOne";
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 12px;
}
.contents input[type="radio"]:checked+*{
  position: relative;
  padding-left: 25px;
  font-family: "SamsungOne";
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 12px;
}
.contents input[type="radio"]+*:last-of-type{
  margin-bottom: 24px;
}
.contents input[type="radio"]+*::before{
  position: absolute;
  display: block;
  content: "";
  width:20px;
  height:20px;
  background: url("/resources/images/sidebar/off.png");
  left: 0;
  top:0;
}
.contents input[type="radio"]:checked+*::before{
  background: url("/resources/images/sidebar/on.png");
}


/*********************************
*********(메인페이지 관련 설정)********
**********************************/

.breadcrumb{
  display:flex;
  margin-top:22px;
  margin-bottom: 80px;
  
}

.breadcrumb > a{
  font-family: "SamsungOne";
  font-weight: 400;
  color:rgba(141, 141, 141, 1);
  font-size: 16px;
  line-height: 22.56px;
}

.breadcrumb > .normal{
  font-family: "SamsungOne";
  font-weight: 400;
  color:rgba(141, 141, 141, 1);
  font-size: 16px;
  line-height: 22.56px;
}

.breadcrumb > *::before{
  content: ">";
  display:inline-block;
  margin: 0 5px;
}
.breadcrumb > b.last:before{
  content: none;
  display:inline-block;
  margin: 0 5px;
}
.breadcrumb > *:first-child::before{
  content: "";
  display: none;
}

.breadcrumb > b{
  font-family: "SamsungOne";
  font-weight: 700;
  font-size: 16px;
  line-height: 22.56px;
}

.col__contents {
  display: flex;
  gap: 32px;
}
.col__contents .title{
  width: 400px;
  font-family: "SamsungSharpSans";
  font-weight: 700;
  font-size: 22px;
  text-align: left;
}
.col__contents .title.title--big{
  /* font-size: 28px; */
}
.col__contents > .title.title-single{
  width: 100%;
}
.col__contents > .contents{
  /* width: calc(100% - 315px); */
  display: flex;
  flex-direction: column;
  margin-top:25px;
  flex: 1;
  /* width: 0; */
}
.col__contents > .contents > *{
  margin-bottom: 30px;
}
.col__contents > .contents > *:last-child{
  margin-bottom: 0px;
  
}
.col__contents > .contents > h1{
  font-family: "SamsungSharpSans";
  font-weight: 500;
  font-size: 18px;
}
.col__contents > .contents .col{
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-end;
  gap: 32px;
  flex: 1;
  font-family: SamsungOne;
  font-weight: 400;
}
.col__contents > .contents > .col .input__wrapper{
  flex: 1;
  width: 0;
}
/* .col__contents > .contents > .col__1 > *{
  Width: 100%;
}
.col__contents > .contents > .col__2 > *{
  width: calc(50% - 20px);
}
.col__contents > .contents > .col__3 > *{
  width: calc(33% - 26.66px);
}
.col__contents > .contents > .col__4 > *{
  width: calc(25% - 26.66px);
} */
.col__contents > .contents > .col .input__wrapper,
.col__contents > .contents > .col > input,
.contents > .col > input{
  border: none;
  border-bottom: 1px solid #d9d9d9;
  flex: 1;
}
.col__contents > .contents > .col > .empty{
  border: 0;
}

.contents input,
.contents textarea{
 padding: 8px 8px;
 font-family: 'SamsungOne';
 font-weight: 400;
 font-size: 16px;
}
.custom-select .selected-item{
 padding: 8px 16px 8px 0px;
 font-family: 'SamsungOne';
 font-weight: 400;
 font-size: 16px;
}


/* .col__contents > .contents > .col .selected-item::after{
  content: "";
  background: url('/resources/icon/ico_select_arrow_down.svg');
  width: 13.71px;
  height: 8.33px;
  
} */
.col__contents > .contents > .col input{
  padding: 8px 0;
  flex: 1;
}
.col__contents > .contents > .col input.disabled{
  color: #888;
}

.input__box input.disabled{
  color: #888;
}

.input__box textarea.disabled{
  color: #888;
}


.col__contents > .contents > .col .big_input{
  width: calc(66% - 8.33px);
}


.col__contents .contents__wrapper{
  grid-template-rows: 1fr;
}
.col__contents .contents__wrapper .contents{
  flex-direction: row;
}
.col__contents .contents__wrapper .contents label{
  margin:0 !important;
  margin-right: 42px !important;
}


input[type='date']::before{
  content: attr(data-placeholder);
  width: 100%;
}
input[type='date']:focus::before,
input[type='date']:valid::before{
  display:none;
}

.col__contents > .contents > .col .button__wrapper{
  border: 0;
  width: 395px;
  display: flex;
  gap: 10px;
}
.col__contents > .contents > .col .button__wrapper button{
  padding: 8px 22px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  width: auto;
  font-family:"SamsungOne";
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}
.col__contents > .contents > .col .button__wrapper button.active{
  background: rgba(0, 0, 0, 1);
  color: white;
}

.button__contents {
  display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}
.button__contents_inner{
  display: flex;
  flex-direction: row;
  row-gap: 8px;
  column-gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.button__contents_inner button{
  margin: 0;
}
.button__contents button{
  width:auto;
  padding: 14px 38px;
  background: rgba(229, 229, 229, 1);
  border-radius: 20px;
  font-family: "SamsungOne";
  font-weight: 700;
  font-size: 14px;
}
.button__contents .create{
  width:236px;
  /* background: rgba(212, 232, 252, 1); */
  background: rgba(60, 128, 252, 1);
  color:white;
}
.button__contents .blue:not(:disabled){
  background: rgba(60, 128, 252, 1);
  color:white;
}
.button__contents .dynamic{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  padding: 10px 24px;
  color:black;
  background-color: #fff;
  border: 1px solid #00000026;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 20px;
}
.button__contents .dynamic img{
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.input__optional button{
  background: #000;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input__optional button p{
  font-family: "SamsungOne";
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.input__optional button:disabled{
  background: #E5E5E5;
}
.input__optional button:disabled p{
  color: #000;
}

.input__optional .custom-select{
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}
.input__wrapper{
  position: relative;
}

.input__wrapper input{
  width: 100%;
}
.placeholder{
  pointer-events: none;
}
.placeholder span{
  color: red;
}
.input__wrapper .placeholder {
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  color: #aaa;
  transition: 
      top 0.3s ease-in-out,
      font-size 0.3s ease-in-out,
      color 0.3s ease-in-out;
  font-family: 'SamsungOne';
  font-weight: 400;
  font-size: 16px;
}
.input__wrapper input:valid + .placeholder,
.input__wrapper input:focus + .placeholder {
  top: -8px;
  font-size: 12px;
  color: #aaa;
}
.input__wrapper .custom-select + .placeholder{
  top: -8px;
  font-size: 12px;
}

.ui-widget.ui-widget-content{
  z-index: 1111111111 !important;
}


.div__flex--row{
  display: flex;
  flex-direction: row;
}


/* custom check box */
.wrapper__custom-checkbox {position: relative;display: flex;align-items: center;}
.wrapper__custom-checkbox input[type="checkbox"] {display: none;}
.wrapper__custom-checkbox label {padding-left: 30px;
  background: url("/resources/images/sidebar/off.png") no-repeat left center;
  background-size: 20px 20px;
  cursor: pointer;
  user-select: none;
  line-height: 20px;
}
.wrapper__custom-checkbox label.disabled{
  opacity: 0.5;
  pointer-events: none;
  /* color : #b6b6b6; */
  /* background: url("/resources/images/sidebar/off-disabled.png") no-repeat left center; */
}
.wrapper__custom-checkbox input[type="checkbox"]:checked + label,
.wrapper__custom-checkbox input[type="checkbox"]:checked + label + label,
.wrapper__custom-checkbox input[type="checkbox"]:checked + label + label + label,
.wrapper__custom-checkbox input[type="checkbox"]:checked + label + label + label + label {
  background-image: url("/resources/images/sidebar/on.png");
}
.wrapper__custom-checkbox label {margin-left: 40px;}
.wrapper__custom-checkbox label:first-of-type {margin-left: 0;}


.otp-input__wrapper {
  width: fit-content;
  margin: auto;
}
.otp-input__wrapper input{
  margin-top: 16px; width: 320px; padding: 8px 16px; border-radius: 100px; border: solid 1px #888; font-size: 14px;
}

.otp-input__wrapper .otp-fail{
  display: none;
  margin-top: 8px;
  font-size: 14px;
  text-align: left;
}
.otp-input__wrapper.fail input{
  border-color: red;
}

.otp-input__wrapper.fail .otp-fail{
  display: block;
  color: red;
}

/* Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    section.base {
        padding: 6.94vw 0;

    }

    .inner {
        width: 100%;
        max-width: calc(100.00vw - 3.33vw);
        padding : 0;
        margin: 0 auto;
    }

    .section__title{
        font-size: 3.33vw;
        font-style: normal;
        line-height: 4.03vw;
        margin-bottom: 3.33vw;
    }



}



@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .m_only{ display: none !important; }
    .pc_only{ display: none !important; }
    .tab_only{ display: block !important; }



    section.base {
        padding: 8.33vw 0;

    }

    .inner {
        width: 100%;
        max-width: calc(100.00vw - 8.34vw);
        padding : 0;
        margin: 0 auto;
    }

    .section__title{
        font-size: 5.47vw;
        font-style: normal;
        line-height: 5.47vw;
        margin-bottom: 5.47vw;
    }



}



@media only screen and (max-width: 767px){

    .pc_only{ display: none !important; }
    .tab_only{ display: none !important; }
    .m_only{ display: block !important; }

    section.base {
        padding: 11.11vw 0;

    }

    .inner {
        width: 100%;
        max-width: calc(100.00vw - 13.34vw);
        padding : 0;
        margin: 0 auto;
    }

    .inner.m-full{
        max-width: 100%;
    }

    .section__title{
        font-size: 7.78vw;
        font-style: normal;
        line-height: 10.28vw;
        margin-bottom: 8.33vw;
    }



}