/* Header 시작 */
.lab-page-service-main {
    width: 100%;
}

.lab-page-service-header {
    width: 100%;
    margin-bottom: 20px;
}

.lab-page-service-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #DADADA;
}

.lab-page-service-header__title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lab-page-service-header__title > img {
    width: 32px;
}

.lab-page-service-header__title > div {
    color: #4A4A4A;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.lab-page-service-header__buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lab-page-service-header__navigation {
    width: 100%;
    height: 50px;
    display: flex;
    border-bottom: 1px solid #DADADA;
}

.lab-page-service-header__navigation > a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    color: #4A4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.lab-page-service-header__navigation > a.active {
    font-weight: 600;
}

.lab-page-service-header__navigation > a.active > div:last-child {
    width: 100%;
    height: 4px;
    background-color: #4600BD;
    position: absolute;
    bottom: 0;
}
/* Header 끝 */

/* Icon button 시작 */
.lab-page-service-icon-button {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DADADA;
}

.lab-page-service-icon-button > img {
    width: 18px;
    height: 18px;
}
/* Icon button 끝 */

/* Object list / Object 시작 */
.lab-page-service-object-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lab-page-service-object {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #DADADA;
}

.lab-page-service-object.hide {
    display: none;
}

.lab-page-service-object__content {
    width: 100%;
    display: flex;
    gap: 20px;
}

.lab-page-service-object__content.hide {
    display: none;
}

.lab-page-service-object__content > div:nth-child(2) {
    margin-left: auto;
}

.lab-page-service-form-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.lab-page-service-form-background.hide {
    display: none;
}

.lab-page-service-object__form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lab-page-service-object__form label {
    display: block;
    width: 100%;
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 16px;
}

.lab-page-service-object__form input,
.lab-page-service-object__form textarea {
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 44px 0 16px;
    width: 100%;
    height: 50px;
    border: 1px solid #DADADA;
    border-radius: 5px;
}

.lab-page-service-object__form textarea {
    padding: 16px;
    height: 200px;
    resize: none;
}

.lab-page-service-object__form input:focus,
.lab-page-service-object__form textarea:focus {
    outline: none;
}

.lab-page-service-object__form input::placeholder,
.lab-page-service-object__form textarea::placeholder {
    color: #9B9B9B;
}

.lab-page-service-object__input {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.lab-page-service-object__input.lab-page-service-object__input--autocomplete input {
    padding-left: 50px;
}

.lab-page-service-object__text-count {
    position: absolute;
    right: 0;
    top: -27px;
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.lab-page-service-object__input > button {
    position: absolute;
    right: 16px;
}

.lab-page-service-object__input > button.hide {
    display: none;
}

.lab-page-service-object__input > button > img {
    width: 12px;
}

.lab-page-service-object__autocomplete-icon {
    position: absolute;
    left: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.lab-page-service-object__autocomplete-icon > img {
    width: 14px;
}

.lab-page-service-object__autocomplete-icon > div {
    color: #DADADA;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.lab-page-service-object__autocomplete {
    position: absolute;
    z-index: 3;
    bottom: -214px;
    width: 100%;
    height: 204px;
    overflow: auto;
    padding: 16px;
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #DADADA;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lab-page-service-object__autocomplete.hide {
    display: none;
}

.lab-page-service-object__autocomplete > div {
    background-color: #FFFFFF;
    cursor: pointer;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.lab-page-service-object__textarea {
    position: relative;
}

.lab-page-service-object__file-input {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 10px;
}

.lab-page-service-object__file-input > label {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background-color: rgba(70, 0, 189, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    margin-bottom: 0;
}

.lab-page-service-object__form-sub-text {
    color: #9B9B9B;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
}

.lab-page-service-object__form-triple-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.lab-page-service-object__dropdown-input-pair {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 21px;
}

.lab-page-service-object__check-boxs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lab-page-service-object__check-boxs > label {
    display: flex;
    gap: 20px;
    padding: 10px 16px;
    border-radius: 9999px;
    border: 1px solid #DADADA;
    width: fit-content;
    cursor: pointer;
}

.lab-page-service-object__check-boxs > label > div {
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}

.lab-page-service-object__check-boxs > label > img {
    display: none;
}

.lab-page-service-object__check-boxs > label:has(input:checked) {
    border: 1px solid var(--point-button-color);
}

.lab-page-service-object__check-boxs > label > input:checked + img {
    display: block;
}

.lab-page-service-object__buttons {
    display: flex;
    justify-content: space-between;
}

.lab-page-service-object__buttons > div {
    display: flex;
    gap: 10px;
}

.lab-page-service-object__buttons button {
    width: 145px;
    height: 44px;
    border-radius: 5px;
    background-color: rgba(70, 0, 189, 0.04);
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.lab-page-service-object__buttons > div:last-child > button:last-child {
    background-color: var(--point-button-color);
    color: #FFFFFF;
}

.lab-page-service-object__research {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.lab-page-service-object__research > div:first-child {
    margin-bottom: 20px;
}

.lab-page-service-object__publication {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lab-page-service-object__publication > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lab-page-service-object__news {
    display: grid;
    gap: 6px;
    grid-template-columns: 250px 1fr;
}

.lab-page-service-object__news > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.lab-page-service-object__news > div:first-child > img {
    width: 220px;
    height: 180px;
    object-fit: cover;
}

.lab-page-service-object__news > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lab-page-service-no-data {
    width: 100%;
    padding: 72px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #DADADA;
}

.lab-page-service-no-data > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lab-page-service-no-data.lab-page-service-no-data--contact > div {
    align-items: start;
}

.lab-page-service-no-data > div > img {
    width: 60px;
}

.lab-page-service-no-data > div > div {
    display: flex;
    flex-direction: column;
}

.lab-page-service-no-data > div > div > div:first-child {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 4px;
}

.lab-page-service-no-data > div > div > div:nth-child(2) {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.lab-page-service-no-data > div > div > a {
    width: fit-content;
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-bottom: 1px solid var(--point-button-color);
    margin-top: 10px;
}

.lab-page-service-more-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.lab-page-service-more-button.hide {
    display: none;
}

.lab-page-service-more-button > button {
    width: 145px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    background-color: rgba(70, 0, 189, 0.04);
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
/* Object list / Object 끝 */

/* Common content 시작 */
.lab-page-service-title-text {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    word-break: break-all;
}

.lab-page-service-description-text {
    color: #666666;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    word-break: break-all;
}

.lab-page-service-research-image {
    width: 100%;
    height: 300px;
    margin-bottom: 16px;
}

.lab-page-service-additional-card {
    display: flex;
    gap: 8px;
}

.lab-page-service-additional-card > div,
.lab-page-service-additional-card > a {
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 8px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #DADADA;
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.lab-page-service-additional-card.lab-page-service-additional-card--news > div,
.lab-page-service-additional-card.lab-page-service-additional-card--news > a {
    gap: 6px;
}

.lab-page-service-additional-card > a > img {
    width: 14px;
}

.lab-page-service-additional-card.lab-page-service-additional-card--news > div > img,
.lab-page-service-additional-card.lab-page-service-additional-card--news > a > img {
    width: 20px;
}

.lab-page-service-additional-card.lab-page-service-additional-card--news > a > div {
    width: 66px;
}
/* Common content 끝 */

/* Research 순서 변경 시작 */
.lab-page-service-change-research-position {
    position: relative;
    z-index: 4;
}

.lab-page-service-change-research-position__header {
    width: 100%;
    height: 40px;
    display: grid;
    grid-template-columns: 82px 70px 1fr 206px;
    background-color: #FBFAFE;
    margin-bottom: 20px;
}

.lab-page-service-change-research-position__header > div {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.lab-page-service-change-research-position__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lab-page-service-change-research-position__row {
    width: 100%;
    height: 80px;
    display: grid;
    grid-template-columns: 82px 70px 1fr 206px;
    border: 1px solid #DADADA;
}

.lab-page-service-change-research-position__row > div {
    border-right: 1px solid #DADADA;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.lab-page-service-change-research-position__row > div:nth-child(3) {
    justify-content: start;
    padding: 0 16px;
}

.lab-page-service-change-research-position__row > div:last-child {
    border-right: none;
}

.lab-page-service-change-research-position__row > div:last-child > div {
    width: 103px;
    height: 60px;
    overflow: hidden;
}

.lab-page-service-change-research-position__row > div:last-child > div > img {
    object-fit: cover;
}

.lab-page-service-change-research-position__buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.lab-page-service-change-research-position__buttons > a,
.lab-page-service-change-research-position__buttons > button {
    width: 145px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: rgba(70, 0, 189, 0.04);
    color: var(--point-button-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.lab-page-service-change-research-position__buttons > button {
    background-color: var(--point-button-color);
    color: #FFFFFF;
}
/* Research 순서 변경 끝 */
