:root {
    --primary-color-50: #dfe9fa;
    --primary-color-100: #becce4;
    --primary-color-200: #a9bfe2;
    --primary-color-300: #8baadb;
    --primary-color-400: #7599d3;
    --primary-color-500: #638cce;
    --primary-color-600: #4E78BD;
    --primary-color-700: #3a609e;
    --primary-color-800: #28497e;
    --primary-color-900: #1b3663;
    --primary-color-950: #0f2346;

    --main-color: #3C4986;
    --bg-color: #F9F9F9;
    --black-color: #3A3A3A;
    --sub-txt-color: #555555;
    --sub-txt-color-02: #777777;
    --sub-txt-color-03: #999999;
    --border-color: #D9D9D9;
    --red-color: #DA6257;
    --yellow-color: #FF9800;
  }

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
*::-webkit-scrollbar-thumb {
    height: 20%;
    background: #cccccc;
    border-radius: 20px;
}
*::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 20px;
}
input[type="text"]:focus {
    outline: none !important;
    border: 1px solid var(--primary-color-600) !important;
}
.text-14 {
    font-size: 14px !important;
}
.table-box {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  overflow-x: auto;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumnail-box {
  display: flex;
  align-items: center;
  width: 150px;
  height: 230px;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
  border: 1px solid #eee;
}
.thumnail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumnail-box:hover > .thumnail-cover {
  transition: all 0.3s;
  opacity: 1;
}
.thumnail-box .thumnail-cover {
  position: absolute;
  top: 0;
  left: 0;width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  opacity: 0;
}
.thumnail-box .thumnail-cover button {
  color: white;
  border: 1px solid #FFF;
  border-radius: 0;
}
.contact-box a {
  color: #06c;
  text-decoration: underline;
}
.maintenance-file {
  color: #06c;
  text-decoration: underline;
}
.input-w150 {
  min-width: 150px;
  max-width: 150px;
  width: 100%;
}
.sml-bb {
  display: inline-block;
}
.p-relative {
  position: relative;
}
.f-sticky {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background-color: white;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}
.issue-file a {
  color: #06c;
  text-decoration: underline;
}
.pre-line {
  white-space: pre-line;
}


.dashboard-area {
    display: flex;
    align-items: flex-start;
    column-gap: 20px;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 20px;
}
.dashboard-area .dash-item {
    min-width: 280px;
}
.dashboard-area .dash-item .dash-th {
    padding: 20px 16px;
    margin-bottom: 10px;
}
.dashboard-area .dash-item .dash-th
.dashboard-area .gray {
    background-color: #F7F7F7;
}
.dashboard-area .dash-item .dash-th .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.dashboard-area .dash-item .dash-th .hd span:first-child {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
}
.dashboard-area .dash-item .dash-th .hd span:nth-child(2) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 2px;
    width: 30px;
    height: 30px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
}

.dashboard-area .dash-item .dash-th .bd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard-area .dash-item .dash-th .bd > div:first-child span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 2px 5px;
    border: 1px solid #555;
    border-radius: 5px;
    margin-right: 5px;
}

.dashboard-area .dash-item .dash-bd {
    padding: 4px;
    text-align: center;
}
.dashboard-area .dash-item .dash-bd .empty > p {
    font-size: 14px;
}
.dashboard-area .dash-item .dash-bd .empty > button {
    background-color: #fff;
    border: 1px dashed #d9d9d9;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 10px;
}

.sales-ul {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    position: relative;
}
.sales-ul li > div {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 13px;
    color: #555;
}
.sales-ul li > div:not(:last-child) {
    margin-bottom: 5px;
}
.sales-ul li {
    width: 272px  !important;
    min-width: 272px !important;
    min-height: 181px !important;
    padding: 20px 16px;
    border: 1px solid #eee;
    background-color: #fff;
    border: 1px solid #eee;
    cursor: pointer;
}
.sales-ul li:hover {
    background-color: #f9f9f9;
}
.sales-ul.green li {
    border-left: 3px solid #aae9b9;
}
.sales-ul.red li {
    border-left: 3px solid #f17e7e;
}
.sales-ul.purple li {
    border-left: 3px solid #b888d3;
}
.sales-ul.blue li {
    border-left: 3px solid #799bcf;
}
.sales-ul.gray li {
    border-left: 3px solid #d9d9d9;
}
.sales-ul li > div:first-child {
    justify-content: space-between;
    margin-bottom: 15px;
}
.sales-ul li > div:first-child > span {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 13px;

}
.sales-ul li > div:first-child > span:nth-child(2) {
    border-radius: 3px;
    padding: 3px 5px;
    font-size: 10px;
}
.sales-ul.gray li > div:first-child > span:nth-child(2) {
    color: #474747 !important;
    border: 1px solid #aaaaaa !important;
    background-color: #eee !important;
}
.sales-ul.blue li > div:first-child > span:nth-child(2) {
    color: #4d78b8 !important;
    border: 1px solid #8ca4c9 !important;
    background-color: #e2ebfa !important;
}
.sales-ul.purple li > div:first-child > span:nth-child(2) {
    color: #a869cc !important;
    border: 1px solid #cfa2e9 !important;
    background-color: #f2e9f8 !important;
}
.sales-ul.green li > div:first-child > span:nth-child(2) {
    color: #059669 !important;
    border: 1px solid #A2E9B2 !important;
    background-color: #d1fae5 !important;
}
.sales-ul.red li > div:first-child > span:nth-child(2) {
    color: #dc2626 !important;
    border: 1px solid #eeb9b9 !important;
    background-color: #fee2e2 !important;
}
.dash-bd:has(.placeHolderArea) > .sales-ul.gray::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border: 1px dashed rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.1);
}
.dash-bd:has(.placeHolderArea) > .sales-ul.blue::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border: 1px dashed rgba(100, 132, 218, 0.8);
    background-color: rgba(61, 98, 219, 0.1);
}
.dash-bd:has(.placeHolderArea) > .sales-ul.purple::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border: 1px dashed rgba(164, 93, 211, 0.8);
    background-color: rgba(145, 58, 216, 0.1);
}
.dash-bd:has(.placeHolderArea) > .sales-ul.green::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border: 1px dashed rgba(61, 173, 89, 0.8);
    background-color: rgba(88, 216, 56, 0.1);
}
.dash-bd:has(.placeHolderArea) > .sales-ul.red::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    border: 1px dashed rgba(238, 74, 74, 0.8);
    background-color: rgba(216, 60, 60, 0.1);
}
.border-red-600 {
    border: 1px solid #eeb9b9 !important;
}
.border-emerald-600 {
    border: 1px solid #A2E9B2 !important;
}
.bg-purple-100 {
    background-color: #f2e9f8 !important;
}
.border-purple-600 {
    border: 1px solid #cfa2e9 !important;
}
.text-purple-600 {
    color: #a869cc !important;
}

.bg-blue-100 {
    background-color: #e2ebfa !important;
}
.border-blue-600 {
    border: 1px solid #8ca4c9 !important;
}
.text-blue-600 {
    color: #4d78b8 !important;
}

.bg-orange-100 {
    background-color: #f1dbce !important;
}
.border-orange-600 {
    border: 1px solid #e0b296 !important;
}

.bg-gray-100 {
    background-color: #f9f9f9 !important;
}
.border-gray-600 {
    border: 1px solid #aaaaaa !important;
}
.text-gray-600 {
    color: #474747 !important;
}
.sales-ul li > .del-box {
    justify-content: right;
}
.sales-ul li > .del-box > button {
    border-radius: 3px;
    padding: 3px;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.05);
}
.request-area {
    display: flex;
    align-items: flex-start;
    padding-bottom: 53px;
}
.request-area .left {
    height: calc(100vh - 112px);
    flex: 1;
    padding: 40px 28px;
    border-right-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
    overflow: hidden;
    overflow-y: auto;
}
.request-area .left::-webkit-scrollbar {
    display: none;
}
.request-area .left .request-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.request-area .left .request-icon > span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color-50);
    color: var(--primary-color-600);
    border-radius: 10px;
    padding: 5px;
}
.request-area .left .request-icon > span:nth-child(2) {
    color: var(--primary-color-600);
    font-size: 18px;
}
.request-area .left .request-tit > input[type="text"] {
    border: 1px solid transparent;
    border-radius: 10px;
    height: 60px;
    line-height: 60px;
    width: 100%;
    font-size: 32px;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}
.request-area .left .request-tit > input[type="text"]:hover {
    outline: none;
    border: 1px solid #eee !important;
    transition: 0.2s;
}
.request-area .left .request-tit > input[type="text"]:focus {
    background-color: #f9f9f9;
    font-size: 24px;
    padding: 0 24px;
    transition: 0.2s;
    outline: none;
}
.request-area .left .select-area {
    display: flex;
    flex-direction: column;
    margin: 15px 0 40px;
}
.request-area .left .select-area > div {
    position: relative;
}
.request-area .left .select-area .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    position: relative;
    cursor: pointer;
}
.request-area .left .select-area .toggle-content {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
    padding: 16px;
    min-width: 350px;
    border: 1px solid #eee;
    display: none;
}
.search-box {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}
.search-box > svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.search-box > input[type="text"] {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    padding-left: 40px;
    background-color: #fff;
    border-radius: 30px;
}
.search-box > input[type="text"]:focus {
    border-width: 1px;
    outline: none;
    border: 1px solid var(--primary-color-600);
}
.request-area .left .select-area .toggle-content > ul {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.request-area .left .select-area .toggle-content > ul li label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}
.request-area .left .select-area .toggle-content > ul li label > input[type="radio"] {
    display: none;
}
.request-area .left .select-area .toggle-content > ul li:has(input[type="radio"]:checked) > label::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url('../img/icons/check_on.svg');
    background-size: 20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
}
.request-area .left .select-area .item:hover {
    background-color: #f9f9f9;
}
.request-area .left .select-area .item:not(:last-child) {
    border-bottom-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.request-area .left .select-area .item > span {
    display: inline-block;
    color: #000;
    font-weight: 500;
}
.request-area .left .request-textarea {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.request-area .left .request-textarea > p {
    display: inline-block;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
}
.request-area .left .contract-area {
    display: flex;
    flex-direction: column;
}
.request-area .left .contract-area > p {
    display: flex;
    font-size: 18px;
    align-items: center;
    column-gap: 5px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
}
.contract-add {
    border: 1px dashed rgb(229 231 235 / var(--tw-border-opacity));
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
}
.contract-add > span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    padding: 4px;
    border: 1px dashed rgb(229 231 235 / var(--tw-border-opacity));
    background-color: #f9f9f9;
}
.contract-add > p {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
.contract-add > button {
    padding: 4px 8px;
    font-size: 12px;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
}
.request-area {
    height: 100%;
}
.request-area .right {
    width: 380px;
    height: 100%;
    position: relative;
}
.request-area .right .sm-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
}
.request-area .right .sm-tit > div {
    display: flex;
    align-items: center;
    column-gap: 5px;
    color: #000;
}
.request-area .right .sm-tit .link-box {
    position: relative;
}
.request-area .right .client-box {
    background-color: #f9f9f9;
    padding: 16px;
    border-bottom: 1px solid #d9d9d9;
}
.request-area .right .client-box > P {
    font-size: 13px;
    text-align: left;
}
.request-area .right .client-box .info-box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.request-area .right .client-box .info-box > div {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 13px;
    color: #555;
}
.request-area .right .tab-content .tab-empty {
    font-size: 13px;
    color: #000;
    display: inline-block;
}
.request-area .right .history-list {
    width: 100%;
    height: calc(100vh - 425px);
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    overflow: hidden;
    overflow-y: auto;
    padding: 16px;
}
.request-area .right .history-list > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.request-area .right .history-list > li > div {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.request-area .right .history-list > li > div > svg {
    color: #999;
}
.request-area .right .history-list > li > div > input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border-radius: 100%;
}
.request-area .right .history-list > li > div > div {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}
.request-area .right .history-list > li > div > div > span:first-child {
    display: inline-block;
    font-size: 11px;
    border-radius: 3px;
    width: max-content;
}
.request-area .right .history-list > li > div > div > span:nth-child(2) {
    font-size: 12px;
    color: #000;
}
.request-area .right .history-list > li > div:nth-child(2) > span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #999;
    font-size: 10px;
    color: #000;
    background-color: #EBDEFF;
}

.request-area .right .history-list .dropdown-menu .menu-item a {
    display: flex;
    align-items: center;
    column-gap: 5px;
    font-size: 12px;
    font-weight: 500;
}
.request-area .right .history-add {
    width: 100%;
    padding: 16px;
    border-top: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
}
.request-area .right .history-add > p {
    display: inline-block;
    font-size: 13px;
    color: #000;
    text-align: left;
    margin-bottom: 5px;
}
.request-area .right .history-add > div {
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.request-area .right .history-add > div > input[type="text"] {
    width: 100%;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
}
.request-area .right .history-add > div > input[type="text"]:focus {
    border-radius: 0;
    border-width: 1px;
    outline: none;
    border: 1px solid var(--primary-color-600);
}
.request-area .right .history-add > div > button {
    width: 70px;
    border: none;
    background-color: var(--primary-color-50);
    color: var(--primary-color-600);
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.request-area .left .select-area .toggle-content .btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    margin-bottom: 10px;
}
.request-area .left .select-area .toggle-content .btn-wrap button {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 3px 5px;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    background-color: #fff;
    color: #333;
}
.request-area .left .select-area .toggle-content .btn-wrap button:hover {
    background-color: #f9f9f9;
}
.request-area .left .select-area .toggle-content .input-box {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}
.request-area .left .select-area .toggle-content .input-box input[type="text"] {
    width: 100%;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    background-color: #fff;
    padding-right: 40px;
}
.request-area .left .select-area .toggle-content .input-box input[type="text"]:focus {
    border-radius: 0;
    border-width: 1px;
    outline: none;
    border: 1px solid var(--primary-color-600);
}
.request-area .left .select-area .toggle-content .input-box > span {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: inline-block;
}
.request-area .left .select-area .toggle-content .btn-solo {
    display: flex;
    justify-content: flex-end;
}
.request-area .left .select-area .toggle-content .btn-solo > button {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 3px 5px;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    background-color: #fff;
    color: #333;
}
.request-area .left .select-area .toggle-content .btn-solo > button:hover {
    background-color: #f9f9f9;
}
.request-area .left .select-area .toggle-content .btn-solo-solid {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: var(--primary-color-50);
    color: var(--primary-color-600);
    height: 40px;
    margin-top: 30px;
}
.date-picker-rq {
    border: none;
    background-color: transparent;
    cursor: pointer;
    text-align: right;
    padding: 0;
}
.date-picker-rq:focus {
    outline: none;
    border: none;
}
.file-area {
    padding: 16px;
}
.file-area .input-file {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.file-area .input-file > input[type=file] {
    display: none;
}
.file-area .input-file > .upload-name {
    width: 100%;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
    background-color: #fff;
    padding-right: 40px;
}
.file-area .input-file > .upload-name:focus {
    border-radius: 0;
    border-width: 1px;
    outline: none;
    border: 1px solid var(--primary-color-600);
}
.file-area .input-file > label {
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    height: 40px;
    line-height: 40px;
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
    padding: 0 16px;
}
.file-area .input-file > label:hover {
    background-color: #f9f9f9;
}
.file-area > p {
    color: #000;
    text-align: left;
    font-size: 14px;
}
.file-area .sales-file-list > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
}
.file-area .sales-file-list > li:not(:last-child) {
    border-bottom: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
}
.file-area .sales-file-list > li .tit {
    display: flex;
    align-items: center;
    gap: 5px;
}
.file-area .sales-file-list > li .tit .badge {
    width: 34px;
    min-width: 34px;
    white-space: nowrap;
    text-align: center;
}
.file-area .sales-file-list > li .tit .file-name {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.file-area .sales-file-list > li .dt-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.file-area .sales-file-list > li .dt-btn a {
    display: inline-block;
    cursor: pointer;
    color: #000;
}
.close-btn.border-none {
    outline: none !important;
}
.client-list {
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
}
.client-list li {
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
}
.client-list li label {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    padding: 16px;
    cursor: pointer;
}
.client-list li label > input[type="radio"] {
    width: 20px;
    height: 20px;
}
.client-list li:has(input[type="radio"]:checked) > label {
    background-color: #f9f9f9;
}
.client-list li label > div > p {
    font-weight: 500;
    color: #000;
}
.client-list li label > div > div {
    display: flex;
    align-items: center;
}
.client-list li label > div > div > span {
    display: inline-block;
    font-size: 13px;
    color: #999;
}
.client-list li label > div > div > span:not(:last-child)::after {
    content: "";
    display: inline-flex;
    height: 10px;
    border-left: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    margin: 0 6px;
}
.client-area .client-btn-wrap {
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.client-area .client-btn-wrap > button {
    width: 100%;
    white-space: nowrap;
    height: 50px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-area .client-btn-wrap > button:first-child {
    background-color: #E7EFFF;
    color: #2C74FF;
}
.client-area .client-btn-wrap > button:last-child {
    background-color: #2C74FF;
    color: #FFF;
}
.drawer-content .fixed-bottom-area {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #f9f9f9;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
}
.drawer-content .fixed-bottom-area > span {
    font-size: 12px;
    color: #999;
}
.drawer-content .fixed-bottom-area > button {
    outline: 1px solid #d9d9d9;
    padding: 3px 5px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
    background-color: #fff;
}
.client-num {
    margin-bottom: 40px;
}
.client-num .tit {
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 10px;
}
.client-num .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.client-num .content .item {
    background-color: #f9f9f9;
    padding: 8px 12px;
}
.client-num .content .item > p {
    color: #000;
    font-size: 14px;
    margin-bottom: 6px;
}
.client-num .content .item > span {
    display: inline-block;
    color: #999;
    font-size: 14px;
}
.client-num .content .item:nth-child(3) {
    grid-column: 1 / -1;
}
.client-area .modal-input-box {
    margin-bottom: 20px;
}
.client-area .modal-input-box > p {
    font-size: 14px;
    color: #000;
    margin-bottom: 5px;
    color: #000;
}
.client-area .modal-input-box > input[type="text"] {
    width: 100%;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    background-color: #fff;
    padding-right: 40px;
}
.client-area .modal-input-box > input[type="text"]:focus {
    border-radius: 0;
    border-width: 1px;
    outline: none;
    border: 1px solid var(--primary-color-600);
}
.sales-tab-area {
    padding: 16px;
}
.sales-tab-area .sales-ul {
    width: 100%;
}
.sales-tab-area .sales-ul li {
    width: 100% !important;
    min-width: 100% !important;
    min-height: inherit !important;
}
.sales-tab-area .solo-add-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
   width: 100%;
   height: 40px;
   line-height: 40px;
   text-align: center;
   color: #2C74FF;
   background-color: #E7EFFF;
}

.dialog-content .company-name {
    text-align: center;
    font-size: 16px;
    color: #2C74FF;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}
.dialog-content .other-expl {
    text-align: center;
    font-size: 16px;
    color: #000;
    font-weight: 300;
    margin-bottom: 10px;
    display: block;
    margin-bottom: 30px;
}
.dialog-content .dis-btn-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.dialog-content .dis-btn-wrap > button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.dialog-content .dis-btn-wrap > button:first-child {
    color: #fff;
    background-color: #2C74FF;
}
.dialog-content .dis-btn-wrap > button:last-child {
    background-color: #fff;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
    outline: none;
}
.dialog-content .solo-btn-wrap {
    margin-top: 30px;
}
.dialog-content .solo-btn-wrap > button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background-color: #2C74FF;
}
.dialog-content .modal-input-box {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}
.dialog-content .modal-input-box > input[type="text"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
}
.dialog-content .modal-input-box > button {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    white-space: nowrap;
    border: 1px solid rgb(229 231 235 / var(--tw-border-opacity));
}

.request-tag-box {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}
.request-tag-box .item {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.request-tag-box .item > button {
    width: 16px;
    height: 16px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bbb;
    border-radius: 100%;
}
.request-type-ul {
    display: flex !important;
    flex-direction: column !important;
    row-gap: 0 !important;
}
.request-type-ul li {
    width: 100%;
}
.request-type-ul li label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
}
.request-type-ul li:hover label {
    background-color: #f9f9f9;
}
.menu-collapse {
    position: relative;
}
 .new-badge {
    display: inline-flex;
    font-size: 11px;
    font-weight: 300;
    background-color: rgb(226, 19, 19);
    color: #fff;
    border-radius: 3px;
    padding: 0 3px;
    width: 14px;
    height: 14px;
}
.square-btn {
    width: 36px;
    max-width: 36px;
    min-width: 36px;
    padding: 0 !important;
    line-height: 36px;
}

.view-form {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    border-bottom: 1px solid #000;
    padding: 24px 0;
}
.view-form .view-tit {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
}
.view-form .view-tit b {
    color: var(--primary-color-600);
}
.view-form .view-expl {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 12px;
}
.form-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.form-grid .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 8px;
}
.form-grid.border-none .item {
    border-bottom: none;
}
.form-grid .item.border-none {
  border-bottom: none;
}
.form-grid .item.span-2 {
  grid-column: auto / span 2;
}
.form-grid .item.col-span-2 {
  grid-row: auto / span 2;
}
.form-grid .item > p:first-child {
  font-weight: 400;
  color: var(--primary-color-600);
}
.form-grid .item > p:first-child::before {
  content: "*";
  color: red;
  margin-right: 6px;
}
.form-grid .item.ns > p:first-child::before {
  display: none;
}
.form-grid .item > p:nth-child(2) {
  font-size: 16px;
}
.w-nowrap {
	white-space: nowrap;
}
.cursor-pointer {
  cursor: pointer;
}
.mw-100 {
  width: 100%;
  max-width: 100px;
}
.mw-150 {
  width: 100%;
  max-width: 150px;
}
.mw-200 {
  width: 100%;
  max-width: 200px;
}
.mw-250 {
  width: 100%;
  max-width: 250px;
}
.mw-400{
  width: 100%;
  max-width: 400px !important;
}
.login-box {
  background-color: rgba(255, 255, 255, 0.93);
}
.login-bg {
  background-image: url('../img/common/login_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: relative;
}
.ns {
  display: inline-flex;
}
.menu-collapse ul {
  position: relative;
}
.menu-collapse ul::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0.125rem;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #bbb;
}
.menu-item {
  position: relative;
  display: inline-flex;
  margin-left: 1.5rem;
}
.menu-item::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -1.25rem;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1px;
  border-bottom: 1px dashed #bbb;
  background-color: transparent !important;
}
.input-full {
	width: 100%;
}
.nowrap {
	white-space: nowrap
}
.tit-span {
	min-width: 100px;
}

.width-100 {
    width: 100%;
}

.mc-txt {
    color: var(--primary-color-600);
}

.pf-modal {
	display: none;
	z-index: 500;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
}

.pf-modal .x-btn {
	position: absolute;
	top: 8px;
	right: 16px;
  z-index: 2;
	background: transparent;
	border: 0;
	color: #000;
	font-size: 24px;
}

.pa-box {
  position: relative;
  top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	width: 100%;
  max-width: 350px;
}
.modalBox {
	position: relative;
	height: auto;
	text-align: center;
}
.modalBox img {
  width: 100%;
  height: 100%;
}

.profile-img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-img span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.layout-ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 800px;
}
.layout-ul li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  cursor: pointer;
}
.layout-ul li .tit {
  width: 100%;
  max-width: 400px;
  padding: 24px;
  border: 1px dashed #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.layout-ul li.move-none .tit {
  border: 1px solid #d9d9d9;
}

.move-btn button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
}
.move-btn button:hover {
  background-color: #f9f9f9;
}

.list-tit {
  width: 100%;
  min-width: 200px;
  max-width: 900px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.layout-img {
  width: 100px;
  height: 100px;

}

.color-square {
  width: 2.25rem !important;
  height: 2.25rem !important;
  background-color: #fafafa;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
  padding: 0 !important;
  color: #fff !important;
}
.minicolors-theme-default .minicolors-swatch {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  height: 100%;
}
.minicolors-sprite {
  background-image: url('../img/common/jquery.minicolors.png') !important;
}
.minicolors-theme-default .minicolors-swatch {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: 100% !important;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 2rem 0;
  border-top: 1px solid #d9d9d9d9;
  border-bottom: 1px solid #d9d9d9d9;
}
.gallery-grid .item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  cursor: pointer;
}
.gallery-grid .item.empty {
  grid-column: 1 / -1;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
}
.gallery-grid .item .img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.gallery-grid .item .img-box::after {
  content: "";
  background-image: url('../images/logo/logo_mc_v.png');
  background-size: 120px auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .2s ease-in-out;
}
.gallery-grid.cover-none .item .img-box::after {
  display: none;
}
.gallery-grid.cover-none .item .img-box a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.gallery-grid.cover-none .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-grid.cover-none .item:hover .img-box a::after {
  opacity: 1;
  transition: .2s ease-in-out;
}
.gallery-grid .item:hover .img-box::after {
  opacity: 1;
  transition: .2s ease-in-out;
}
.gallery-grid .item .img-box .gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: .2s ease-in-out;
}
.gallery-grid .item:hover .img-box .gallery-thumb {
  transform: scale(1.1);
  transition: .2s ease-in-out;
}
.gallery-grid .item .txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-grid .item .img-box .play-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  opacity: 1;
  transition: .2s ease-in-out;
}
.gallery-grid .item:hover .img-box .play-icon {
  opacity: 0;
  transition: .2s ease-in-out;
}
.gallery-grid .item .txt .tit {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.gallery-grid .item .txt .content {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.font-blue {
  color: blue;
}
.a-none {
  color: #000 !important;
}
.fixed-area {
  background-color: #dfdfdf;
}

.part-ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label span {
    white-space: nowrap
}
.file-lg {
    min-height: 10rem !important;
    height: 10rem !important;
    line-height: 8.725rem !important;
}

.form-horizontal .checkbox, .form-horizontal .radio {
    min-height: unset !important;
}

textarea {
    line-height: 1.2 !important;
}

.map-more {
    color: var(--primary-color-600);
    text-decoration: underline;
}

.basic-file {
    color: #06c;
    text-decoration: underline;
}
.file-sub {
    padding: 4px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: var(--primary-color-500);
}

.swal2-confirm {
    background-color: #3085d6 !important;
}
.swal2-cancel {
    background-color: #999 !important;
}

.txt-sm {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}
.close-lg.close-btn {
    font-size: 14px;
    height: 2.25rem;
    white-space: nowrap;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.825 !important;
    font-weight: 600;
}

.category-box {
    border: 1px solid #d9d9d9;
    padding: 24px 0;
    border-radius: 8px;
    margin-top: 24px;
}
.ui-sortable-handle {
    padding-left: 24px;
}
.ui-sortable-handle .toggle {
    font-size: 16px;
    color: var(--primary-color-600);
    margin-right: 6px;
    cursor: pointer;
}
.ui-sortable-handle .name {
    font-size: 16px;
    margin-right: 16px;
}
.ui-sortable-handle > button {
    font-size: 20px;color: #555;
}
ul.sortable > li > ul.sortable > li .name {
    font-size: 14px;
    color: #555;
}

.user-history {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
}
.user-history li {
    padding: 8px 0;
    display: flex;
    gap: 24px;
}
.user-history li:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
}
.user-history li .user-point {
    min-width: 80px;
    font-size: 14px;
    color: #FF9800;
    line-height: 1.3;
}
.user-history li .user-content {
    font-size: 14px;
    width: 100%;
    color: #3a3a3a;
    line-height: 1.3;
}
.user-history li .user-date {
    font-size: 14px;
    color: #999;
    line-height: 1.3;
    white-space: nowrap;
}
.user-history li .user-send, .user-history li .user-receiver {
    display: flex;
    align-items: center;
    gap: 12px;
}
.user-history li .user-send::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #d9d9d9;
}
.user-history li .user-send, .user-history li .user-receiver {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}
.user-history li b {
    font-weight: 400;
    color: var(--primary-color-400);
}
.user-history li .note-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.user-history li .note-box > div {
    width: 100%;
}
.user-history li .note-box .user-content {
    display: block;
    width: 100%;
    background-color: #f9f9f9;
    padding: 4px;
}
.note-editor.note-airframe, .note-editor.note-frame {
    width: 100%;
}

.reply-area .reply-cnt {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color);
}
.reply-area .reply-cnt img {
    width: 16px;
}
.reply-area .reply-cnt span {
    font-weight: 500;
    color: var(--red-color);
}

.reply-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.reply-list li.empty {
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color);
    background-color: var(--bg-color);
    border-radius: 4px;
    padding: 12px 16px;
    text-align: center;
}

.reply-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.reply-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
    border-radius: 6px;
    padding: 8px 16px;
}
.reply-info .name {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.reply-info .name img {
    width: 16px;
}
.reply-info .name .me {
    display: inline-block;
    background-color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: var(--red-color);
    border: 1px solid var(--red-color);
    border-radius: 3px;
    padding: 2px 3px;
}
.reply-info .name .choice {
    display: inline-block;
    background-color: #fff;
    font-size: 12px;
    font-weight: 400;
    color: var(--yellow-color);
    border: 1px solid var(--yellow-color);
    border-radius: 3px;
    padding: 2px 3px;
}

.reply-info .rt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.reply-info .rt button, .reply-info .rt span {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    display: flex;
    align-items: center;
}
.reply-info .rt button::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    margin: 0 16px;
    background-color: var(--border-color);
}
.reply-info .rt button.reply-choice {
    color: var(--red-color);
}

.reply-list li .content {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.3;
    padding: 8px 16px;
}
.reply-list li.re {
    padding-left: 18px;
}
.reply-list li.re::before {
    position: absolute;
    left: 0;
    content: "";
    width: 18px;
    height: 18px;
    background-image: url('../../front/images/icons/reply_re_icon.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.mw-150 {
    max-width: 150px;
}
.del-sm {
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: #fff;
    background-color: red;
    text-align: center;
}
.del-xs {
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    background-color: red;
    text-align: center;
}
.add-sm {
    width: 100px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: #fff;
    background-color: var(--primary-color-600);
    text-align: center;
}
.width-100 {
    width: 100%;
}
.preview-img-box {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}
.preview-img-box > div {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.preview-img-box > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.upload-img-box {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}
.upload-img-box .img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.upload-img-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
