@charset "UTF-8";

:root {
  /* 공통 */
  --fb-primary: #003da5;
  --fb-primary-rgb: 0, 61, 165;
  --fb-primary-hover: #0084d5;
  --fb-primary-hover-rgb: 0, 132, 213;  

  /* font 설정 */
  --fb-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --fb-font-family: var(--rs-font-sans-serif);
  --fb-font-size: 13px;
  --fb-font-weight: 400;
  --fb-font-color: black;  

  /* input 설정 */
  --fb-text-border: 1px solid #dfdfdf;
  --fb-text-height: 25px;

  /* 일반색상 */
  --fb-indigo: #6610f2;
  --fb-purple: #6f42c1;
  --fb-pink: #d63384;
  --fb-orange: #fd7e14;
  --fb-yellow: #ffc107;
  --fb-green: #198754;
  --fb-teal: #20c997;
  --fb-cyan: #0dcaf0;
  --fb-gray: #6c757d;
  --fb-gray-dark: #343a40;
  --fb-gray-100: #f8f9fa;
  --fb-gray-200: #e9ecef;
  --fb-gray-300: #dee2e6;
  --fb-gray-400: #ced4da;
  --fb-gray-500: #adb5bd;
  --fb-gray-600: #6c757d;
  --fb-gray-700: #495057;
  --fb-gray-800: #343a40;
  --fb-gray-900: #212529;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;

  font-family: var(--fb-font-family);
  font-size: var(--fb-font-size);
  font-weight : var(--fb-font-weight);
  color : var(--fb-font-color);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--fb-font-color);
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

/***************************** Layout *****************************/
.d-flex {
  display: flex;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-none {
  display: none;
}

.fd-row {
  display: flex;
  flex-direction: row;
}
.fd-column {
  display: flex;
  flex-direction: column;
}

.fw-none {
  flex-wrap: nowrap;
}
.fw-wrap {
  flex-wrap: wrap;
}

.jc-flex-start {
  justify-content: flex-start;
}
.jc-center {
  justify-content: center;
}
.jc-flex-end {
  justify-content: flex-end;
}
.jc-space-between {
  justify-content: space-between;
}
.jc-space-evenly {
  justify-content: space-evenly;
}

.ai-center {
  align-items: center;
}
.ai-flex-start {
  align-items: flex-start;
}
.ai-flex-end {
  align-items: flex-end;
}
.ai-stretch {
  align-items: stretch;
}
.ai-baseline {
  align-items: baseline;
}

.flex-0-5 {
  flex: 0.5;
}
.flex-1 {
  flex: 1;
}
.flex-1-5 {
  flex: 1.5;
}
.flex-2 {
  flex: 2;
}
.flex-2-5 {
  flex: 2.5;
}
.flex-3 {
  flex: 3;
}
.flex-3-5 {
  flex: 3.5;
}
.flex-4 {
  flex: 4;
}
.flex-4-5 {
  flex: 4.5;
}
.flex-5 {
  flex: 5;
}
.flex-5-5 {
  flex: 5.5;
}
.flex-6 {
  flex: 6;
}
.flex-6-5 {
  flex: 6.5;
}
.flex-7 {
  flex: 7;
}
.flex-8 {
  flex: 8;
}
  
.flex-auto {
  flex: auto;
  overflow-x: auto;
  max-width: 100%;
  width: 100%;
}
.flex-auto > * {
  overflow: hidden;
}

/* Grid */
.d-grid {
  display: grid;
}

/* align-items */
.ai-start {
  align-items: start;
}
.ai-end {
  align-items: end;
}
.ai-center {
  align-items: center;
}

/* text-align */
.ta-left {
  text-align: left;
}
.ta-right {
  text-align: right;
}
.ta-center {
  text-align: center;
}

.bs-1 {
  box-shadow: 1px 0 rgba(0, 0, 0, 0.2);
}

.b-left-gray {
  border-left: 1px solid #d4d4d5;
}
.b-right-gray {
  border-right: 1px solid #d4d4d5;
}
.b-top-gray {
  border-top: 1px solid #d4d4d5;
}
.b-bottom-gray {
  border-bottom: 1px solid #d4d4d5;
}

/***************************** 수치 *****************************/
.w-100-vh {
  width: 100vh; 
}

.h-25 {
  height: 25px;
}

.h-28 {
  height: 28px;
}

.h-32 {
  height: 32px;
}

.h-64 {
  height: 64px;
}

.h-100 {
  height: 100px;
}

.h-100-vh {
  height: 100vh; 
}

.h-100-per {
  height: 100%;
}

.p-0-10 {
  padding: 0px 10px;
}



/***************************** button *****************************/
/* 기본버튼 */
.fb-btn {
  appearance: none;
  /* display: inline-block; */
  display: inline-flex; /* 플렉스 박스를 사용하여 텍스트를 정렬 */
  align-items: center;  /* 수직 가운데 정렬 */
  justify-content: center;
  
  margin: 0px;
  padding: 0.35rem 0.8rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.fb-btn:hover {
  background-color: var(--fb-gray-300);
  transition: background-color 0.2s ease-in-out;
}
.fb-btn[disabled], .fb-btn.disabled {
  background-color: var(--fb-gray-500) !important;
  border: none;
  color: white !important;
  pointer-events: none;
}

/* select 버튼 */
.fb-btn.primary {
  background-color: var(--fb-primary);
  border-color: var(--fb-primary);
  color: white;
}
.fb-btn.primary:hover {
  background-color: var(--fb-primary-hover);
  border-color: var(--fb-primary-hover);
  color: white;
  transition: background-color 0.2s ease-in-out;
}
.fb-btn.primary:focus {
  outline: 0;
  border: 1px solid var(--fb-primary);
  /* box-shadow: 0 0 0 0.15rem rgba(122, 16, 27, 0.5); */
  box-shadow: 0 0 0 0.15rem #003ca583;
  color: white;
}

/* outline 버튼 */
.fb-btn.primary-outline {
  background-color: white;
  border-color: var(--fb-primary);
  color: var(--fb-primary);
}
.fb-btn.primary-outline:hover {
  background-color: var(--fb-primary-hover);
  border-color: var(--fb-primary-hover);
  color: white;
  transition: background-color 0.2s ease-in-out;
}
.fb-btn.primary-outline:focus {
  outline: 0;
  border: 1px solid var(--fb-primary);
  /* box-shadow: 0 0 0 0.15rem rgba(122, 16, 27, 0.5); */
  box-shadow: 0 0 0 0.15rem #003ca583;
}

/* bright 버튼 */
.fb-btn.bright {
  background: none;
  /* border-color: #f8f9fa; */
  border-color: var(--fb-gray-500);
}
.fb-btn.bright:hover {
  background-color: var(--fb-primary-hover);
  border-color: var(--fb-primary-hover);
  color: white;
  transition: background-color 0.2s ease-in-out;
}
.fb-btn.bright:focus {
  outline: 0;
  border: 1px solid var(--fb-primary);
  box-shadow: 0 0 0 0.10rem rgba(var(--fb-primary-rgb), 0.5);
}

/* 버튼 크기 */
.fb-btn.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
}
.fb-btn.btn-md {
  padding: 0.35rem 0.8rem;
  font-size: 1.05rem;
}

.fb-btn.btn-sm {
  padding: 0.2rem 0.6rem;
  font-size: 0.85rem;
}


/* 모양 */
.radius-lg {
  border-radius: 0.3rem;
}

.radius-sm {
  border-radius: 0.2rem;
}

/***************************** text box *****************************/
.fb-text {
  font-size: var(--fb-font-size);
  height: var(--fb-text-height);
  border: var(--fb-text-border);
  padding-left: 5px;
  width: 100%;
}
.fb-text:focus {
  outline-color: var(--fb-primary);
}
.fb-text-lg {
  font-size: 1.25rem;
  line-height: 2;
}
.fb-text-lg:focus {
  outline-color: var(--fb-primary);
}
.fb-text-sm {
  font-size: 0.75rem;
  line-height: 0.8;
}
.fb-text-sm:focus {
  outline-color: var(--fb-primary);
}

input.fb-text:read-only {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(59, 59, 59, 0.3));
  /* color: light-dark(rgb(168, 62, 62), rgb(170, 170, 170)); */
  color: rgb(170, 170, 170);
}

.fb-text.error {
  background-color: #ff00001a;
}

/***************************** Search text box *****************************/
.fb-text-search {
  display: flex;
  align-items: center;
  position: relative;
}
.fb-text-search-box {
  position: absolute; 
  right: 4%; 
  /* top: 25%; */
  color: #c3c3c3;
  font-size: 0.9rem;
}
.fb-text-search-box > i:hover {
  cursor: pointer;
  color: #7a7a7a;
}
.aui-grid .fb-text-search-box > i + i {
  margin-left: 5px;
}



.fb-textarea-50 {
  height: 50px;
  width: 100%;
  resize: none;
  font-family: var(--fb-font-family);
  border: var(--fb-text-border);
  padding-left: 5px;
}
.fb-textarea-50:focus{
  outline-color: var(--fb-primary);
}
.fb-textarea-100 {
  height: 100px;
  width: 100%;
  resize: none;
  font-family: var(--fb-font-family);
  border: var(--fb-text-border);
  padding-left: 5px;
}
.fb-textarea-100:focus{
  outline-color: var(--fb-primary);
}
.fb-textarea-150 {
  height: 200px;
  width: 100%;
  resize: none;
  font-family: var(--fb-font-family);
  border: var(--fb-text-border);
  padding-left: 5px;
}
.fb-textarea-150:focus{
  outline-color: var(--fb-primary);
}
.fb-textarea-200 {
  height: 200px;
  width: 100%;
  resize: none;
  font-family: var(--fb-font-family);
  border: var(--fb-text-border);
  padding-left: 5px;  
}
.fb-textarea-200:focus{
  outline-color: var(--fb-primary);
}




/***************************** AUI Gird *****************************/
[data-area=grid] {
  width: 100%;
  margin-top: 8px;
}

[data-area=grid] .aui-grid {
  border-top: 2px solid var(--fb-primary);
}

.aui-grid-selection-cell-border-lines {
  background: var(--fb-primary);
}

.aui-checkbox:checked {
  background: var(--fb-primary);
  border: 1px solid var(--fb-primary);
}

.aui-checkbox:after {
  top: 1px;
}



.aui-grid-button-renderer {
  height: 25px;
  width: 30px;
  color: var(--fb-primary);
  background: white;
  border: 1px solid var(--fb-primary);
  background-color: white;
  background-clip: padding-box;
  box-sizing: border-box;
  display: inline-block;
  line-height: 1em;
  border-radius: 0px;
  appearance: none;
  -webkit-appearance: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.aui-grid-button-renderer:hover {
  color: white;
  background-color: var(--fb-primary-hover);
  border-color: var(--fb-primary-hover);
  transition: background-color 0.2s ease-in-out;
}
.aui-grid-button-renderer:focus {
  color: white;
  outline: 0;
  border: 1px solid var(--fb-primary);
  box-shadow: 0 0 0 0.15rem #003ca583;
}







/***************************** Table *****************************/
.fb-table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #d6d6d6;
  background-color: #fff;
  width: 100%;
  font-size: var(--fb-font-size);
}
.fb-table em {
  color: lightcoral;
  margin-left: 5px;
}
.fb-table.error {
  background-color: var(--fb-primary-light);
}
.fb-table tr > th {
  background-color: #eeeeee;
}
.fb-table th, .fb-table td {
  padding: 10px;
  border: 1px solid #d6d6d6;
}



/***************************** Column *****************************/
.fb-col-1 {
  width: 8.3%;
}

.fb-col-2 {
  width: 16.6%;
}

.fb-col-3 {
  width: 24.9%;
}

.fb-col-4 {
  width: 33.2%;
}

.fb-col-5 {
  width: 41.5%;
}

.fb-col-6 {
  width: 50%;
}

.fb-col-7 {
  width: 58.1%;
}

.fb-col-8 {
  width: 66.4%;
}

.fb-col-9 {
  width: 74.7%;
}

.fb-col-10 {
  width: 83%;
}

.fb-col-11 {
  width: 94.6%;
}

.fb-col-12 {
  width: 100%;
}




/***************************** Select Box *****************************/
.fb-select {
  vertical-align: middle;
  position: relative;
  display: inline-block;
  font-size: var(--fb-font-size);
  border: var(--fb-text-border);
  height: var(--fb-text-height);
  padding-right: 20px;
  cursor: pointer;
  background-color: #fff;
  color: #666;
  width: 100%
}
.fb-select:focus {
  outline-color: var(--fb-primary);
}
.fb-select[disabled], .fb-select.disabled {
  pointer-events: none;
}
.fb-select.readonly + span {
  pointer-events: none;
}
.fb-select.readonly + .select2-container .select2-selection__rendered {
  background-color: rgba(239, 239, 239, 0.3);
}
.fb-select.readonly + div {
  pointer-events: none;
}
.fb-select.readonly + .multiselect-wrapper .multiselect-input {
  background-color: rgba(239, 239, 239, 0.3); /* 예시로 밝은 배경색 */
}

/* .fb-select {
  vertical-align: middle;
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding-left: 8px;
  padding-right: 20px;
  border: 1px solid #aaa;
  border-radius: 4px;
  width: 100%;
  height: 28px;
  cursor: pointer;
  background-color: #fff;
  background-size: 17px;
  color: #666;
}
.fb-select:focus {
  outline: none;
}
.fb-select[disabled], .fb-select.disabled {
  pointer-events: none;
}

.select2-dropdown {
  z-index: 999999;
} */





/***************************** Check Box *****************************/
.fb-checkbox input[type="checkbox"] {
  display: none;
}
.fb-checkbox input[type="checkbox"] + label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}
.fb-checkbox input[type="checkbox"] + label::before {
  display:block;
  content:'';
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: -1.5px;
  color:#FFF;
  font-size: 16px;
  text-align: center;
  line-height:16px;
  border: 1.5px solid #ddd;
  border-radius: 2px;
  cursor: pointer;
}
.fb-checkbox input[type="checkbox"]:checked + label::before {
  background: var(--fb-primary);
  border-color: var(--fb-primary);
}
.fb-checkbox input[type="checkbox"]:checked + label::after {
  display: block;
}
.fb-checkbox label::after {
  display: none;
  content: '';
  width: 8%;
  height: 70%;
  position: absolute;
  left: 5px;
  top: 1px;
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.fb-checkbox label {
  cursor: pointer;
}
.fb-checkbox label > span {
  font-size: 12px;
}











/***************************** Radio *****************************/
/* 기본 라디오 버튼 */
.fb-radio {
  position: relative;
  vertical-align: middle;
  width: 1px;
  height: 1px;
  /* 네모 라디오 버튼 */
}
.fb-radio + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.fb-radio + label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  background: #ccc;
  border-radius: 50%;
}
.fb-radio + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.fb-radio + label > span {
  padding-left: 25px;
  padding-right: 5px;
}
.fb-radio:checked + label:before {
  background: #7a101b;
}
.fb-radio:checked + label :after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.fb-radio.rs-square + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  text-align: center;
  background: #ccc;
  border-radius: 0;
}
.fb-radio.rs-square + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0;
}
.fb-radio.rs-square:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0;
}
.fb-radio.rs-square:checked + label:before {
  background: #7a101b;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  text-align: center;
  border-radius: 0;
}

.fb-radio-non {
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.fb-radio-non + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  text-align: center;
  background: #ccc;
  border-radius: 50%;
}
.fb-radio-non + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.fb-radio-non:checked + label:before {
  background: #7a101b;
}
.fb-radio-non:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}






/***************************** Search Area *****************************/
.fb-search {
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 5px;
}

.fb-search > .fd-row + .fd-row {
  margin-top: 10px;
}

.fb-search .fd-row.ai-center > div:nth-child(1) {
  text-align: right;
  margin: 0 10px;
}
.fb-search .fd-row.ai-center label {
  font-size: 13px;
}
.fb-search .fd-row.ai-center label em {
  margin-left: 5px;
  font-weight: bold;
  color: lightcoral;
}

.fb-search .font-12 {
  font-size: 12px !important;
}



/***************************** Input Area *****************************/
.fb-form {
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 5px;
}

.fb-form > .fd-row + .fd-row {
  margin-top: 11px;
}

.fb-form .fd-row.ai-center > div:nth-child(1) {
  text-align: right;
  margin: 0 10px;
}
.fb-form .fd-row.ai-center label {
  font-size: 12px;
}
.fb-form label em {
  color: lightcoral;
  margin-left: 5px;
  font-weight: bold;
  margin-right: 5px;
}




/***************************** Upload *****************************/
.fb-upload {
  position: absolute;
  overflow: hidden;
  padding: 0;
  border: 0;
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
}




/***************************** Tag *****************************/
.fb-tag-container {
  display: flex;
  flex-direction: row;
}
.fb-tag-container > .fb-tag + .fb-tag {
  margin-left: 10px;
}
.fb-tag {
  /* background-color: #ededed;
  border: 1px solid #ededed;;  */
  border: 1px solid #003da5; 
  color: #003da5;
  border-radius: 5px; 
  padding: 5px 10px;
  font-size: 13px;
}
.fb-tag + .fb-tag {
  margin-left: 10px;
}
.fb-tag > i {
  margin-left: 5px;
  cursor: pointer;
}





/***************************** File Upload *****************************/
.file-drop-area {
  height: 80px; 
  border: 1px solid rgb(223, 223, 223);
  border-radius: 5px;
}
.file-drop-area:hover {
  cursor: pointer;
  background-color: rgb(243, 243, 243);
  transition: background-color 0.1s ease-in-out;
}
.file-drop-area > label {
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.file-list-area {
  height: 200px; 
  border: 1px solid rgb(223, 223, 223);
  border-radius: 5px;
  padding: 10px;
  overflow-y: auto;
}
.file-list {
  font-size: 12px;
  padding: 10px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid rgb(223, 223, 223);
}
/* .file-list + .file-list {
  border-top: 1px solid rgb(223, 223, 223);
} */
.file-list-del {
  cursor: pointer;
  font-size: 13px;
}
.file-list-del:hover {
  color: red;
}


/***************************** Image Upload *****************************/
.img-drop-area {
  height: 80px; 
  /* padding: 10px 20px; */
  border: 1px solid rgb(223, 223, 223);
  border-radius: 5px;
}
.img-drop-area.hover {
  cursor: pointer;
  background-color: rgb(243, 243, 243);
  transition: background-color 0.1s ease-in-out;
}
.img-drop-area > label {
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.img-preview-area {
  height: 250px; 
  padding: 20px;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 5px;
}
.img-preview-area.over-x {
  flex-wrap: nowrap;
  overflow-x: auto;
}
.img-preview-area.over-y {
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
}
.img-preview-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border: 1px solid rgb(230, 230, 230);
  position: relative;
}
.img-preview-area.over-x .img-preview-box + .img-preview-box {
  margin-left: 10px;
}
/* .img-preview-area.over-y .img-preview-box + .img-preview-box {
  margin-left: 0px;
} */
.img-preview-box > img {
  max-width: 100%;
  max-height: 100%;
}
.img-preview-box:hover > img {
  cursor: pointer;
  opacity: 0.3; /* 투명도를 0.7로 설정 */
  transition: opacity 0.1s ease-in-out; /* 투명도 변경에 트랜지션 효과 적용 */
}
.img-preview-box:hover .img-del-btn {
  opacity: 1;
  z-index: 9999;
}
.img-preview-box:hover .fb-btn.img-del-btn:hover {
  background-color: rgb(255, 0, 0);
  font-weight: 900;
}
.img-del-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 가운데 정렬을 위해 위치 조정 */
  background-color: rgba(255, 0, 0, 0.7); /* 투명 빨간 배경색 */
  color: #fff;
  /* padding: 8px 16px; */
  /* border: none; */
  /* border-radius: 5px; */
  cursor: pointer;
  opacity: 0; /* 초기에는 숨깁니다. */
  transition: opacity 0.1s ease-in-out; /* 투명도 변경에 트랜지션 효과 적용 */
}
.img-box-label {
  position: absolute;
  top: 0%;
  left: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  background-color: rgba(255, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.img-preview-box:hover .img-box-label {
  opacity: 1;
  z-index: 9999;
}









/***************************** Scroll *****************************/
.none-scroll {
  overflow-y: hidden;
}






/***************************** JBOX *****************************/
.jBox-content .alert {
  line-height: 18px;
}








/***************************** etc *****************************/
.rs-btn-outline-primary {
  background-color: white;
  border-color: var(--fb-primary);
  color: var(--fb-primary);
}
.rs-btn-outline-primary:hover {
  background-color: var(--fb-primary);
  color: white;
  border: 1px solid var(--fb-primary);
}
.rs-btn-outline-primary:focus {
  outline: 0;
  border: 1px solid var(--fb-primary);
  box-shadow: 0 0 0 0.15rem rgba(122, 16, 27, 0.5) !important;
}
.rs-btn-outline-primary[disabled], .rs-btn-outline-primary.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}



.fb-btn i.left {
  font-size: 0.9rem;
  margin-right: 5px;
  margin-left: 0;
}
.fb-btn i.right {
  margin-right: 0;
  margin-left: 5px;
}
.fb-btn.fb-btn-icon {
  padding: 0;
  width: 32px;
  height: 32px;
}



.rs-btn-close {
  background: none;
  border: solid 1px var(--rs-gray-500);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 0 10px;
}

.rs-btn-secondary {
  background-color: #312f2d;
  border-color: #312f2d;
  color: white;
}
.rs-btn-secondary:hover {
  background-color: #161615;
  color: white;
}
.rs-btn-secondary:focus {
  outline: 0;
  border: 1px solid #312f2d;
  box-shadow: 0 0 0 0.15rem rgba(49, 47, 45, 0.5) !important;
  color: white;
}
.rs-btn-secondary[disabled], .rs-btn-secondary.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-secondary {
  background-color: white;
  border-color: #312f2d;
  color: #312f2d;
}
.rs-btn-outline-secondary:hover {
  background-color: #312f2d;
  color: white;
  border: 1px solid #312f2d;
}
.rs-btn-outline-secondary:focus {
  outline: 0;
  border: 1px solid #312f2d;
  box-shadow: 0 0 0 0.15rem rgba(49, 47, 45, 0.5) !important;
}
.rs-btn-outline-secondary[disabled], .rs-btn-outline-secondary.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-success {
  background-color: #198754;
  border-color: #198754;
  color: white;
}
.rs-btn-success:hover {
  background-color: #115c39;
  color: white;
}
.rs-btn-success:focus {
  outline: 0;
  border: 1px solid #198754;
  box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.5) !important;
  color: white;
}
.rs-btn-success[disabled], .rs-btn-success.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-success {
  background-color: white;
  border-color: #198754;
  color: #198754;
}
.rs-btn-outline-success:hover {
  background-color: #198754;
  color: white;
  border: 1px solid #198754;
}
.rs-btn-outline-success:focus {
  outline: 0;
  border: 1px solid #198754;
  box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.5) !important;
}
.rs-btn-outline-success[disabled], .rs-btn-outline-success.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-info {
  background-color: #0dcaf0;
  border-color: #0dcaf0;
  color: black;
}
.rs-btn-info:hover {
  background-color: #3cd5f4;
  color: black;
}
.rs-btn-info:focus {
  outline: 0;
  border: 1px solid #0dcaf0;
  box-shadow: 0 0 0 0.15rem rgba(13, 202, 240, 0.5) !important;
  color: black;
}
.rs-btn-info[disabled], .rs-btn-info.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-info {
  background-color: white;
  border-color: #0dcaf0;
  color: #0dcaf0;
}
.rs-btn-outline-info:hover {
  background-color: #0dcaf0;
  color: white;
  border: 1px solid #0dcaf0;
}
.rs-btn-outline-info:focus {
  outline: 0;
  border: 1px solid #0dcaf0;
  box-shadow: 0 0 0 0.15rem rgba(13, 202, 240, 0.5) !important;
}
.rs-btn-outline-info[disabled], .rs-btn-outline-info.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: black;
}
.rs-btn-warning:hover {
  background-color: #ffce3a;
  color: black;
}
.rs-btn-warning:focus {
  outline: 0;
  border: 1px solid #ffc107;
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.5) !important;
  color: black;
}
.rs-btn-warning[disabled], .rs-btn-warning.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-warning {
  background-color: white;
  border-color: #ffc107;
  color: #ffc107;
}
.rs-btn-outline-warning:hover {
  background-color: #ffc107;
  color: white;
  border: 1px solid #ffc107;
}
.rs-btn-outline-warning:focus {
  outline: 0;
  border: 1px solid #ffc107;
  box-shadow: 0 0 0 0.15rem rgba(255, 193, 7, 0.5) !important;
}
.rs-btn-outline-warning[disabled], .rs-btn-outline-warning.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  color: white;
}
.rs-btn-danger:hover {
  background-color: #bd2130;
  color: white;
}
.rs-btn-danger:focus {
  outline: 0;
  border: 1px solid #dc3545;
  box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.5) !important;
  color: white;
}
.rs-btn-danger[disabled], .rs-btn-danger.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-danger {
  background-color: white;
  border-color: #dc3545;
  color: #dc3545;
}
.rs-btn-outline-danger:hover {
  background-color: #dc3545;
  color: white;
  border: 1px solid #dc3545;
}
.rs-btn-outline-danger:focus {
  outline: 0;
  border: 1px solid #dc3545;
  box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.5) !important;
}
.rs-btn-outline-danger[disabled], .rs-btn-outline-danger.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: black;
}
.rs-btn-light:hover {
  background-color: white;
  color: black;
}
.rs-btn-light:focus {
  outline: 0;
  border: 1px solid #f8f9fa;
  box-shadow: 0 0 0 0.15rem rgba(248, 249, 250, 0.5) !important;
  color: black;
}
.rs-btn-light[disabled], .rs-btn-light.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-light {
  background-color: white;
  border-color: #f8f9fa;
  color: #f8f9fa;
}
.rs-btn-outline-light:hover {
  background-color: #f8f9fa;
  color: white;
  border: 1px solid #f8f9fa;
}
.rs-btn-outline-light:focus {
  outline: 0;
  border: 1px solid #f8f9fa;
  box-shadow: 0 0 0 0.15rem rgba(248, 249, 250, 0.5) !important;
}
.rs-btn-outline-light[disabled], .rs-btn-outline-light.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-dark {
  background-color: #212529;
  border-color: #212529;
  color: white;
}
.rs-btn-dark:hover {
  background-color: #0a0c0d;
  color: white;
}
.rs-btn-dark:focus {
  outline: 0;
  border: 1px solid #212529;
  box-shadow: 0 0 0 0.15rem rgba(33, 37, 41, 0.5) !important;
  color: white;
}
.rs-btn-dark[disabled], .rs-btn-dark.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-dark {
  background-color: white;
  border-color: #212529;
  color: #212529;
}
.rs-btn-outline-dark:hover {
  background-color: #212529;
  color: white;
  border: 1px solid #212529;
}
.rs-btn-outline-dark:focus {
  outline: 0;
  border: 1px solid #212529;
  box-shadow: 0 0 0 0.15rem rgba(33, 37, 41, 0.5) !important;
}
.rs-btn-outline-dark[disabled], .rs-btn-outline-dark.disabled {
  background-color: #ccc;
  border: none;
  color: var(--rs-white);
  pointer-events: none;
}

.rs-btn-outline-light {
  background-color: #fff;
  border-color: #adb5bd;
  color: #6c757d;
}
.rs-btn-outline-light:hover {
  border-color: #343a40;
  color: #6c757d;
}
.rs-btn-outline-light:focus {
  border: 1px solid #343a40;
  box-shadow: 0 0 0 0.15rem rgba(108, 117, 125, 0.5) !important;
}

.rs-cycle {
  border-radius: 50%;
}

.rs-badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  cursor: pointer;
}

.rs-bg-primary {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--fb-primary-rgb), var(--rs-bg-opacity)) !important;
}

.rs-bg-secondary {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--rs-secondary-rgb), var(--rs-bg-opacity)) !important;
}

.rs-bg-success {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--rs-success-rgb), var(--rs-bg-opacity)) !important;
}

.rs-bg-info {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--rs-info-rgb), var(--rs-bg-opacity)) !important;
}

.rs-bg-warning {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--rs-warning-rgb), var(--rs-bg-opacity)) !important;
}

.rs-bg-danger {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--rs-danger-rgb), var(--rs-bg-opacity)) !important;
}

.rs-bg-light {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--rs-light-rgb), var(--rs-bg-opacity)) !important;
}

.rs-bg-dark {
  --rs-bg-opacity: 1;
  background-color: rgba(var(--rs-dark-rgb), var(--rs-bg-opacity)) !important;
}

/* checkbox */
.rs-checkbox {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.rs-checkbox + label {
  cursor: pointer;
}
.rs-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  width: 16px;
  height: 16px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  border: 1px solid #d0d0d0;
}
.rs-checkbox:checked:disabled + label:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' data-prefix='fas' data-icon='check' class='svg-inline--fa fa-check fa-w-16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2399a1a7' d='m173.898 439.404-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  background-color: #eee;
}
.rs-checkbox:checked + label:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' data-prefix='fas' data-icon='check' class='svg-inline--fa fa-check fa-w-16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2399a1a7' d='m173.898 439.404-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
}
.rs-checkbox:disabled + label {
  cursor: default;
}
.rs-checkbox:disabled + label:before {
  background-color: #eee;
}

/* text box */


.rs-textarea {
  font-family: var(--rs-body-font-family);
  font-size: 14px;
  padding: 8px;
  width: 100%;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-color: #fff;
  color: #666;
}
.rs-textarea.disabled, .rs-textarea:disabled {
  background: #eee;
}

/* 기본 라디오 버튼 */
.rs-radio {
  position: relative;
  vertical-align: middle;
  width: 1px;
  height: 1px;
  /* 네모 라디오 버튼 */
}
.rs-radio + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.rs-radio + label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  text-align: center;
  background: #ccc;
  border-radius: 50%;
}
.rs-radio + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.rs-radio + label > span {
  padding-left: 25px;
  padding-right: 5px;
}
.rs-radio:checked + label:before {
  background: var(--fb-primary);
}
.rs-radio:checked + label :after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.rs-radio.rs-square + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  text-align: center;
  background: #ccc;
  border-radius: 0;
}
.rs-radio.rs-square + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0;
}
.rs-radio.rs-square:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0;
}
.rs-radio.rs-square:checked + label:before {
  background: var(--fb-primary);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  text-align: center;
  border-radius: 0;
}

.rs-radio-non {
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.rs-radio-non + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  text-align: center;
  background: #ccc;
  border-radius: 50%;
}
.rs-radio-non + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.rs-radio-non:checked + label:before {
  background: var(--fb-primary);
}
.rs-radio-non:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.select2-dropdown {
  z-index: 999999;
}

body {
  overflow: hidden;
}

.dropdown-menu {
  position: absolute;
  z-index: 9999999;
  display: none;
  min-width: 14rem !important;
  width: 15rem !important;
  top: 50px;
  padding: 1rem 0;
  margin: 0;
  top: 50px;
  right: 15px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  font-size: 16px;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  list-style: none;
}
.dropdown-menu .dropdown-item {
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background: transparent;
  border: 0;
  align-items: center !important;
  gap: 0.5rem !important;
  display: flex !important;
  list-style: none;
}
.dropdown-menu .dropdown-item.dropdown-hover {
  margin-top: 15px;
  cursor: pointer;
}
.dropdown-menu .dropdown-item.dropdown-hover:hover {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-menu:after {
  content: "";
  position: absolute;
  border-bottom: 10px solid #f9f9f9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  top: -9px;
  right: 16px;
}

.rs-elevation-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}

.rs-elevation-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23) !important;
}

/* 내용 */
.rs-wrapper {
  position: relative;
  min-height: 100%;
  height: 100vh;
  min-width: 1320px;
}
.rs-wrapper .rs-content-wrapper {
  margin-left: 280px;
  background-color: var(--rs-gray-100);
  min-height: calc(100vh - (3.5rem + 10px));
  height: 100%;
}
.rs-wrapper .rs-content-wrapper .hamBtn a {
  cursor: pointer;
}
.rs-wrapper .rs-content-wrapper > .rs-content {
  height: 95vh;
}
.rs-wrapper .rs-content-wrapper > div {
  height: 100%;
}
.rs-wrapper .rs-content-wrapper > div > .content {
  height: 100%;
}

.rs-scroll {
  overflow-y: scroll;
  box-sizing: border-box;
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
  margin-right: 50px;
}

/* 추가 */
.grid-title {
  margin-top: 10px;
  margin-bottom: 2px;
}

.rs-row.grid-title {
  align-items: center;
}

.step1 {
  max-height: 40px;
  padding: 2px 30px 0 14px !important;
  margin-bottom: 0 !important;
  overflow: hidden;
}

.contextmenu {
  position: absolute;
  z-index: 9999999;
  display: none;
  width: 200px !important;
  top: 50px;
  padding: 1rem 0.4rem;
  margin: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  font-size: 17px;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  cursor: pointer;
}
.contextmenu .contextItem {
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background: transparent;
  border: 0;
  align-items: center !important;
  gap: 0.5rem !important;
  display: flex !important;
}
.contextmenu .contextItem div {
  width: 17px;
  text-align: center;
}
.contextmenu .contextItem:hover {
  color: #1e2125;
  background-color: #e9ecef;
}
.contextmenu:after {
  content: "";
  position: absolute;
  border-bottom: 10px solid #f9f9f9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  top: -9px;
  left: 10px;
}

.rs-row {
  display: flex;
}

.rs-row > * {
  width: 100%;
  max-width: 100%;
}

.rs-col {
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 0;
}

.rs-col-1 {
  width: 8.3%;
}

.rs-col-2 {
  width: 16.6%;
}

.rs-col-3 {
  width: 24.9%;
}

.rs-col-4 {
  width: 33.2%;
}

.rs-col-5 {
  width: 41.5%;
}

.rs-col-6 {
  width: 50%;
}

.rs-col-7 {
  width: 58.1%;
}

.rs-col-8 {
  width: 66.4%;
}

.rs-col-9 {
  width: 74.7%;
}

.rs-col-10 {
  width: 83%;
}

.rs-col-11 {
  width: 94.6%;
}

.rs-col-12 {
  width: 100%;
}

/* width */
/* 20px~1400px ex) w-20 w-40 w-60 ... */
.w-10 {
  width: 10px !important;
}

.w-20 {
  width: 20px !important;
}

.w-30 {
  width: 30px !important;
}

.w-40 {
  width: 40px;
}

.w-50 {
  width: 50px !important;
}

.w-60 {
  width: 60px !important;
}

.w-70 {
  width: 70px !important;
}

.w-80 {
  width: 80px;
}

.w-90 {
  width: 90px !important;
}

.w-100 {
  width: 100px !important;
}

.w-110 {
  width: 110px !important;
}

.w-120 {
  width: 120px !important;
}

.w-130 {
  width: 130px !important;
}

.w-140 {
  width: 140px !important;
}

.w-150 {
  width: 150px !important;
}

.w-160 {
  width: 160px !important;
}

.w-170 {
  width: 170px !important;
}

.w-180 {
  width: 180px !important;
}

.w-190 {
  width: 190px !important;
}

.w-200 {
  width: 200px !important;
}

.w-210 {
  width: 210px !important;
}

.w-220 {
  width: 220px !important;
}

.w-230 {
  width: 230px !important;
}

.w-240 {
  width: 240px !important;
}

.w-250 {
  width: 250px !important;
}

.w-260 {
  width: 260px !important;
}

.w-270 {
  width: 270px !important;
}

.w-280 {
  width: 280px;
}

.w-290 {
  width: 290px !important;
}

.w-300 {
  width: 300px;
}

.w-310 {
  width: 310px !important;
}

.w-320 {
  width: 320px !important;
}

.w-330 {
  width: 330px !important;
}

.w-340 {
  width: 340px !important;
}

.w-350 {
  width: 350px !important;
}

.w-360 {
  width: 360px !important;
}

.w-370 {
  width: 370px !important;
}

.w-380 {
  width: 380px !important;
}

.w-390 {
  width: 390px !important;
}

.w-400 {
  width: 400px !important;
}

.w-410 {
  width: 410px !important;
}

.w-420 {
  width: 420px !important;
}

.w-430 {
  width: 430px !important;
}

.w-440 {
  width: 440px !important;
}

.w-450 {
  width: 450px !important;
}

.w-460 {
  width: 460px !important;
}

.w-470 {
  width: 470px !important;
}

.w-480 {
  width: 480px !important;
}

.w-490 {
  width: 490px !important;
}

.w-500 {
  width: 500px !important;
}

.w-510 {
  width: 510px !important;
}

.w-520 {
  width: 520px !important;
}

.w-530 {
  width: 530px !important;
}

.w-540 {
  width: 540px !important;
}

.w-550 {
  width: 550px !important;
}

.w-560 {
  width: 560px !important;
}

.w-570 {
  width: 570px !important;
}

.w-580 {
  width: 580px !important;
}

.w-590 {
  width: 590px !important;
}

.w-600 {
  width: 600px !important;
}

.w-610 {
  width: 610px !important;
}

.w-620 {
  width: 620px !important;
}

.w-630 {
  width: 630px !important;
}

.w-640 {
  width: 640px !important;
}

.w-650 {
  width: 650px !important;
}

.w-660 {
  width: 660px !important;
}

.w-670 {
  width: 670px !important;
}

.w-680 {
  width: 680px !important;
}

.w-690 {
  width: 690px !important;
}

.w-700 {
  width: 700px !important;
}

.w-720 {
  width: 720px !important;
}

.w-740 {
  width: 740px !important;
}

.w-760 {
  width: 760px !important;
}

.w-780 {
  width: 780px !important;
}

.w-800 {
  width: 800px !important;
}

.w-820 {
  width: 820px !important;
}

.w-840 {
  width: 840px !important;
}

.w-860 {
  width: 860px !important;
}

.w-880 {
  width: 880px !important;
}

.w-900 {
  width: 900px !important;
}

.w-920 {
  width: 920px !important;
}

.w-940 {
  width: 940px !important;
}

.w-960 {
  width: 960px !important;
}

.w-980 {
  width: 980px !important;
}

.w-1000 {
  width: 1000px !important;
}

.w-1020 {
  width: 1020px !important;
}

.w-1040 {
  width: 1040px !important;
}

.w-1060 {
  width: 1060px !important;
}

.w-1080 {
  width: 1080px !important;
}

.w-1100 {
  width: 1100px !important;
}

.w-1120 {
  width: 1120px !important;
}

.w-1140 {
  width: 1140px !important;
}

.w-1160 {
  width: 1160px !important;
}

.w-1180 {
  width: 1180px !important;
}

.w-1200 {
  width: 1200px !important;
}

.w-1220 {
  width: 1220px !important;
}

.w-1240 {
  width: 1240px !important;
}

.w-1260 {
  width: 1260px !important;
}

.w-1280 {
  width: 1280px !important;
}

.w-1300 {
  width: 1300px !important;
}

.w-1320 {
  width: 1320px !important;
}

.w-1340 {
  width: 1340px !important;
}

.w-1360 {
  width: 1360px !important;
}

.w-1380 {
  width: 1380px !important;
}

.w-1400 {
  width: 1400px !important;
}

.w-1420 {
  width: 1420px !important;
}

.w-1440 {
  width: 1440px !important;
}

.w-1460 {
  width: 1460px !important;
}

.w-1480 {
  width: 1480px !important;
}

.w-1500 {
  width: 1500px !important;
}

.w-1520 {
  width: 1520px !important;
}

.w-1540 {
  width: 1540px !important;
}

.w-1560 {
  width: 1560px !important;
}

.w-1580 {
  width: 1580px !important;
}

.w-1600 {
  width: 1600px !important;
}

.w-1700 {
  width: 1700px !important;
}

.w-0-per {
  width: 0% !important;
}

.w-5-per {
  width: 5% !important;
}

.w-10-per {
  width: 10% !important;
}

.w-15-per {
  width: 15% !important;
}

.w-20-per {
  width: 20% !important;
}

.w-25-per {
  width: 25% !important;
}

.w-30-per {
  width: 30% !important;
}

.w-33-per {
  width: 33.34% !important;
}

.w-35-per {
  width: 35% !important;
}

.w-40-per {
  width: 40% !important;
}

.w-45-per {
  width: 45% !important;
}

.w-50-per {
  width: 50% !important;
}

.w-55-per {
  width: 55% !important;
}

.w-60-per {
  width: 60% !important;
}

.w-65-per {
  width: 65% !important;
}

.w-66-per {
  width: 66.66% !important;
}

.w-70-per {
  width: 70% !important;
}

.w-75-per {
  width: 75% !important;
}

.w-80-per {
  width: 80% !important;
}

.w-85-per {
  width: 85% !important;
}

.w-90-per {
  width: 90% !important;
}

.w-95-per {
  width: 95% !important;
}

.w-100-per {
  width: 100% !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-0 {
  margin: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mtb-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.mlr-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-0 {
  padding: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.ptb-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.plr-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-2 {
  margin: 2px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.ml-2 {
  margin-left: 2px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.mtb-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

.mlr-2 {
  margin-left: 2px !important;
  margin-right: 2px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-2 {
  padding: 2px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pl-2 {
  padding-left: 2px !important;
}

.pr-2 {
  padding-right: 2px !important;
}

.ptb-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.plr-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-3 {
  margin: 3px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.ml-3 {
  margin-left: 3px !important;
}

.mr-3 {
  margin-right: 3px !important;
}

.mtb-3 {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}

.mlr-3 {
  margin-left: 3px !important;
  margin-right: 3px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-4 {
  margin: 4px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mtb-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mlr-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-4 {
  padding: 4px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.ptb-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.plr-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-6 {
  margin: 6px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.ml-6 {
  margin-left: 6px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.mtb-6 {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.mlr-6 {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-6 {
  padding: 6px !important;
}

.pt-6 {
  padding-top: 6px !important;
}

.pb-6 {
  padding-bottom: 6px !important;
}

.pl-6 {
  padding-left: 6px !important;
}

.pr-6 {
  padding-right: 6px !important;
}

.ptb-6 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.plr-6 {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-8 {
  margin: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mtb-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mlr-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-8 {
  padding: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.ptb-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.plr-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-10 {
  margin: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mtb-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mlr-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.ptb-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.plr-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-12 {
  margin: 12px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.mtb-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mlr-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-12 {
  padding: 12px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.ptb-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.plr-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-14 {
  margin: 14px !important;
}

.mt-14 {
  margin-top: 14px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.ml-14 {
  margin-left: 14px !important;
}

.mr-14 {
  margin-right: 14px !important;
}

.mtb-14 {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.mlr-14 {
  margin-left: 14px !important;
  margin-right: 14px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-14 {
  padding: 14px !important;
}

.pt-14 {
  padding-top: 14px !important;
}

.pb-14 {
  padding-bottom: 14px !important;
}

.pl-14 {
  padding-left: 14px !important;
}

.pr-14 {
  padding-right: 14px !important;
}

.ptb-14 {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.plr-14 {
  padding-left: 14px !important;
  padding-right: 14px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-16 {
  margin: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mtb-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mlr-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-16 {
  padding: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.ptb-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.plr-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-18 {
  margin: 18px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.ml-18 {
  margin-left: 18px !important;
}

.mr-18 {
  margin-right: 18px !important;
}

.mtb-18 {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.mlr-18 {
  margin-left: 18px !important;
  margin-right: 18px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-18 {
  padding: 18px !important;
}

.pt-18 {
  padding-top: 18px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

.pl-18 {
  padding-left: 18px !important;
}

.pr-18 {
  padding-right: 18px !important;
}

.ptb-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.plr-18 {
  padding-left: 18px !important;
  padding-right: 18px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-20 {
  margin: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mtb-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mlr-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.ptb-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.plr-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-22 {
  margin: 22px !important;
}

.mt-22 {
  margin-top: 22px !important;
}

.mb-22 {
  margin-bottom: 22px !important;
}

.ml-22 {
  margin-left: 22px !important;
}

.mr-22 {
  margin-right: 22px !important;
}

.mtb-22 {
  margin-top: 22px !important;
  margin-bottom: 22px !important;
}

.mlr-22 {
  margin-left: 22px !important;
  margin-right: 22px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-22 {
  padding: 22px !important;
}

.pt-22 {
  padding-top: 22px !important;
}

.pb-22 {
  padding-bottom: 22px !important;
}

.pl-22 {
  padding-left: 22px !important;
}

.pr-22 {
  padding-right: 22px !important;
}

.ptb-22 {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

.plr-22 {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-24 {
  margin: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mtb-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.mlr-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.ptb-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.plr-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-26 {
  margin: 26px !important;
}

.mt-26 {
  margin-top: 26px !important;
}

.mb-26 {
  margin-bottom: 26px !important;
}

.ml-26 {
  margin-left: 26px !important;
}

.mr-26 {
  margin-right: 26px !important;
}

.mtb-26 {
  margin-top: 26px !important;
  margin-bottom: 26px !important;
}

.mlr-26 {
  margin-left: 26px !important;
  margin-right: 26px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-26 {
  padding: 26px !important;
}

.pt-26 {
  padding-top: 26px !important;
}

.pb-26 {
  padding-bottom: 26px !important;
}

.pl-26 {
  padding-left: 26px !important;
}

.pr-26 {
  padding-right: 26px !important;
}

.ptb-26 {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

.plr-26 {
  padding-left: 26px !important;
  padding-right: 26px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-28 {
  margin: 28px !important;
}

.mt-28 {
  margin-top: 28px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.ml-28 {
  margin-left: 28px !important;
}

.mr-28 {
  margin-right: 28px !important;
}

.mtb-28 {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.mlr-28 {
  margin-left: 28px !important;
  margin-right: 28px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-28 {
  padding: 28px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

.pb-28 {
  padding-bottom: 28px !important;
}

.pl-28 {
  padding-left: 28px !important;
}

.pr-28 {
  padding-right: 28px !important;
}

.ptb-28 {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.plr-28 {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-30 {
  margin: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mtb-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mlr-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.ptb-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.plr-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-32 {
  margin: 32px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.mtb-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.mlr-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-32 {
  padding: 32px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

.pb-32 {
  padding-bottom: 32px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.ptb-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.plr-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-34 {
  margin: 34px !important;
}

.mt-34 {
  margin-top: 34px !important;
}

.mb-34 {
  margin-bottom: 34px !important;
}

.ml-34 {
  margin-left: 34px !important;
}

.mr-34 {
  margin-right: 34px !important;
}

.mtb-34 {
  margin-top: 34px !important;
  margin-bottom: 34px !important;
}

.mlr-34 {
  margin-left: 34px !important;
  margin-right: 34px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-34 {
  padding: 34px !important;
}

.pt-34 {
  padding-top: 34px !important;
}

.pb-34 {
  padding-bottom: 34px !important;
}

.pl-34 {
  padding-left: 34px !important;
}

.pr-34 {
  padding-right: 34px !important;
}

.ptb-34 {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.plr-34 {
  padding-left: 34px !important;
  padding-right: 34px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-36 {
  margin: 36px !important;
}

.mt-36 {
  margin-top: 36px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}

.ml-36 {
  margin-left: 36px !important;
}

.mr-36 {
  margin-right: 36px !important;
}

.mtb-36 {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.mlr-36 {
  margin-left: 36px !important;
  margin-right: 36px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-36 {
  padding: 36px !important;
}

.pt-36 {
  padding-top: 36px !important;
}

.pb-36 {
  padding-bottom: 36px !important;
}

.pl-36 {
  padding-left: 36px !important;
}

.pr-36 {
  padding-right: 36px !important;
}

.ptb-36 {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

.plr-36 {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-38 {
  margin: 38px !important;
}

.mt-38 {
  margin-top: 38px !important;
}

.mb-38 {
  margin-bottom: 38px !important;
}

.ml-38 {
  margin-left: 38px !important;
}

.mr-38 {
  margin-right: 38px !important;
}

.mtb-38 {
  margin-top: 38px !important;
  margin-bottom: 38px !important;
}

.mlr-38 {
  margin-left: 38px !important;
  margin-right: 38px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-38 {
  padding: 38px !important;
}

.pt-38 {
  padding-top: 38px !important;
}

.pb-38 {
  padding-bottom: 38px !important;
}

.pl-38 {
  padding-left: 38px !important;
}

.pr-38 {
  padding-right: 38px !important;
}

.ptb-38 {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

.plr-38 {
  padding-left: 38px !important;
  padding-right: 38px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-40 {
  margin: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mtb-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mlr-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.ptb-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.plr-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-42 {
  margin: 42px !important;
}

.mt-42 {
  margin-top: 42px !important;
}

.mb-42 {
  margin-bottom: 42px !important;
}

.ml-42 {
  margin-left: 42px !important;
}

.mr-42 {
  margin-right: 42px !important;
}

.mtb-42 {
  margin-top: 42px !important;
  margin-bottom: 42px !important;
}

.mlr-42 {
  margin-left: 42px !important;
  margin-right: 42px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-42 {
  padding: 42px !important;
}

.pt-42 {
  padding-top: 42px !important;
}

.pb-42 {
  padding-bottom: 42px !important;
}

.pl-42 {
  padding-left: 42px !important;
}

.pr-42 {
  padding-right: 42px !important;
}

.ptb-42 {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

.plr-42 {
  padding-left: 42px !important;
  padding-right: 42px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-44 {
  margin: 44px !important;
}

.mt-44 {
  margin-top: 44px !important;
}

.mb-44 {
  margin-bottom: 44px !important;
}

.ml-44 {
  margin-left: 44px !important;
}

.mr-44 {
  margin-right: 44px !important;
}

.mtb-44 {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}

.mlr-44 {
  margin-left: 44px !important;
  margin-right: 44px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-44 {
  padding: 44px !important;
}

.pt-44 {
  padding-top: 44px !important;
}

.pb-44 {
  padding-bottom: 44px !important;
}

.pl-44 {
  padding-left: 44px !important;
}

.pr-44 {
  padding-right: 44px !important;
}

.ptb-44 {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.plr-44 {
  padding-left: 44px !important;
  padding-right: 44px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-46 {
  margin: 46px !important;
}

.mt-46 {
  margin-top: 46px !important;
}

.mb-46 {
  margin-bottom: 46px !important;
}

.ml-46 {
  margin-left: 46px !important;
}

.mr-46 {
  margin-right: 46px !important;
}

.mtb-46 {
  margin-top: 46px !important;
  margin-bottom: 46px !important;
}

.mlr-46 {
  margin-left: 46px !important;
  margin-right: 46px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-46 {
  padding: 46px !important;
}

.pt-46 {
  padding-top: 46px !important;
}

.pb-46 {
  padding-bottom: 46px !important;
}

.pl-46 {
  padding-left: 46px !important;
}

.pr-46 {
  padding-right: 46px !important;
}

.ptb-46 {
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

.plr-46 {
  padding-left: 46px !important;
  padding-right: 46px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-48 {
  margin: 48px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.mtb-48 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.mlr-48 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-48 {
  padding: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

.pb-48 {
  padding-bottom: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.ptb-48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.plr-48 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-50 {
  margin: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mtb-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mlr-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.ptb-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.plr-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-52 {
  margin: 52px !important;
}

.mt-52 {
  margin-top: 52px !important;
}

.mb-52 {
  margin-bottom: 52px !important;
}

.ml-52 {
  margin-left: 52px !important;
}

.mr-52 {
  margin-right: 52px !important;
}

.mtb-52 {
  margin-top: 52px !important;
  margin-bottom: 52px !important;
}

.mlr-52 {
  margin-left: 52px !important;
  margin-right: 52px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-52 {
  padding: 52px !important;
}

.pt-52 {
  padding-top: 52px !important;
}

.pb-52 {
  padding-bottom: 52px !important;
}

.pl-52 {
  padding-left: 52px !important;
}

.pr-52 {
  padding-right: 52px !important;
}

.ptb-52 {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

.plr-52 {
  padding-left: 52px !important;
  padding-right: 52px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-54 {
  margin: 54px !important;
}

.mt-54 {
  margin-top: 54px !important;
}

.mb-54 {
  margin-bottom: 54px !important;
}

.ml-54 {
  margin-left: 54px !important;
}

.mr-54 {
  margin-right: 54px !important;
}

.mtb-54 {
  margin-top: 54px !important;
  margin-bottom: 54px !important;
}

.mlr-54 {
  margin-left: 54px !important;
  margin-right: 54px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-54 {
  padding: 54px !important;
}

.pt-54 {
  padding-top: 54px !important;
}

.pb-54 {
  padding-bottom: 54px !important;
}

.pl-54 {
  padding-left: 54px !important;
}

.pr-54 {
  padding-right: 54px !important;
}

.ptb-54 {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.plr-54 {
  padding-left: 54px !important;
  padding-right: 54px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-56 {
  margin: 56px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

.mb-56 {
  margin-bottom: 56px !important;
}

.ml-56 {
  margin-left: 56px !important;
}

.mr-56 {
  margin-right: 56px !important;
}

.mtb-56 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.mlr-56 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-56 {
  padding: 56px !important;
}

.pt-56 {
  padding-top: 56px !important;
}

.pb-56 {
  padding-bottom: 56px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.ptb-56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.plr-56 {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-58 {
  margin: 58px !important;
}

.mt-58 {
  margin-top: 58px !important;
}

.mb-58 {
  margin-bottom: 58px !important;
}

.ml-58 {
  margin-left: 58px !important;
}

.mr-58 {
  margin-right: 58px !important;
}

.mtb-58 {
  margin-top: 58px !important;
  margin-bottom: 58px !important;
}

.mlr-58 {
  margin-left: 58px !important;
  margin-right: 58px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-58 {
  padding: 58px !important;
}

.pt-58 {
  padding-top: 58px !important;
}

.pb-58 {
  padding-bottom: 58px !important;
}

.pl-58 {
  padding-left: 58px !important;
}

.pr-58 {
  padding-right: 58px !important;
}

.ptb-58 {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.plr-58 {
  padding-left: 58px !important;
  padding-right: 58px !important;
}

/* margin */
/* 0px~60px ex) m-20 m-2 m-10 ... */
.m-60 {
  margin: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mtb-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mlr-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

/* padding */
/* 0px~60px ex) p-20 p-2 p-10 ... */
.p-60 {
  padding: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.ptb-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.plr-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

/* float */
.f-l {
  float: left !important;
}

.f-r {
  float: right !important;
}

.rs-form-wrap {
  display: flex;
  border: 1px solid var(--rs-gray-500);
  border-radius: 6px;
  padding: 5px 30px 5px 14px;
  margin-bottom: 20px;
  font-size: 14px;
}
.rs-form-wrap .rs-form {
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 0;
}
.rs-form-wrap .rs-form .rs-control {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.rs-form-wrap .rs-form .rs-control label {
  max-width: 100%;
  margin-right: 20px;
  white-space: nowrap;
}
.rs-form-wrap .rs-form .rs-control label em {
  color: lightcoral;
  margin-left: 5px;
  font-weight: bold;
}
.rs-form-wrap .rs-form .rs-control label + div {
  max-width: 100%;
  width: 100%;
  flex-basis: 0%;
  flex-grow: 1;
  flex-shrink: 0;
}

.rs-form-wrap .rs-row {
  align-items: center;
}

/* 로더 */
@keyframes loader {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rs-wrap-loader {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.85);
  line-height: 1;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 800;
  display: flex;
  opacity: 0.5;
}

.rs-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  z-index: 1000;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 1em;
  width: auto !important;
  height: auto !important;
  text-align: center;
  font-style: normal;
  min-width: 2.28571429rem;
  padding-top: 3.07142857rem;
  color: rgba(255, 255, 255, 0.9);
}

.rs-loader::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  border-radius: 500rem;
  border: 0.2em solid rgba(0, 0, 0, 0.1);
  width: 2.28571429rem;
  height: 2.28571429rem;
  margin: 0 0 0 -1.14285714rem;
  border-color: rgba(255, 255, 255, 0.15);
}

.rs-loader::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-animation: loader 0.6s linear;
  animation: loader 0.6s linear;
  animation-iteration-count: infinite;
  border-radius: 500rem;
  border-style: solid;
  border-width: 0.2em;
  -webkit-box-shadow: 0 0 0 1px transparent;
  box-shadow: 0 0 0 1px transparent;
  width: 2.28571429rem;
  height: 2.28571429rem;
  margin: 0 0 0 -1.14285714rem;
  border-color: #fff transparent transparent;
}

.rs-search-form {
  font-size: 14px;
  width: 100%;
  text-align: left;
  border-collapse: separate;
  border-spacing: 0 3px;
}
.rs-search-form th {
  text-align: right;
}
.rs-search-form td {
  padding-left: 10px;
}
.rs-search-form em {
  color: lightcoral;
  margin-left: 5px;
  font-weight: bold;
}

/* search box */
.rs-search-box, .rs-calendar-box {
  margin: 0;
  position: relative;
  display: inline-block;
  height: 30px;
  width: 100%;
}
.rs-search-box a, .rs-calendar-box a {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  font-size: 16px;
  color: #999;
  top: 1px;
  right: 5px;
  cursor: pointer;
  z-index: 10;
}
.rs-search-box a i, .rs-calendar-box a i {
  position: absolute;
  color: #333;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.rs-search-box .btn_close, .rs-calendar-box .btn_close {
  padding-right: 30px;
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  right: 6px;
  top: 6px;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
  outline: none;
  border: none;
}
.rs-search-box .btn_close:hover span, .rs-calendar-box .btn_close:hover span {
  background: var(--fb-primary);
}
.rs-search-box .btn_close span, .rs-calendar-box .btn_close span {
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: #b5b5b5;
  border-radius: 2px;
}
.rs-search-box .btn_close span:first-child, .rs-calendar-box .btn_close span:first-child {
  transform: rotate(45deg);
  left: -1px;
}
.rs-search-box .btn_close span:nth-child(2), .rs-calendar-box .btn_close span:nth-child(2) {
  transform: rotate(-45deg);
  left: -1px;
}

.rs-calendar-box input {
  cursor: pointer;
}
.rs-calendar-box a {
  pointer-events: none;
}

/* 파일 */
.rs-file {
  display: flex;
}
.rs-file input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}
.rs-file .rs-text {
  height: 32px !important;
}
.rs-file label {
  margin-left: 15px;
}

/* 2022.10.02 - SCM 멀티 선택 SELECT BOX */
.select2-container { font-size : small; }
.select2-selection__choice__remove { height : 100%; }
.select2-container--default .select2-selection--multiple .select2-selection__choice { height : 20px; background-color : white; margin-top : 3px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice__display { height : 100%; vertical-align : middle; }

/* AUIGrid drop down list z-index 최상위 */
.aui-grid-drop-list-item-wrapper { z-index: 999999 !important;}
