/* 기본 설정 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    padding: 0;
    margin: 0 auto;
    width: 100%;
	height: 100%;
    background-color: #fff;
    /* max-width: 1194px;
    max-height: 834px; */
    overflow: hidden;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 100%;
    min-width: 320px;
    position: relative;
}

ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

h1, h2, h3, h4, h5 {
    padding: 0;
    margin: 0;
}

input,
select,
textarea {
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
}
 
input:focus,
textarea:focus {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

.no-padding { padding: 0; }
.no-margin  { margin: 0;  }

.no-bottom-margin { margin-bottom: 0; }
.no-top-margin    { margin-top: 0; }


/* header 설정 */

#logo {
    width: 200px;
    height: 36px;
    background: url('../img/logo.png') center no-repeat;
    background-size: contain;
    top: 40px;
    left: calc(50% - 100px);
    position: fixed;
    z-index: 9;
    cursor: pointer;
}

nav {
    width: 100%;
    height: 69px;
    border-top: 1px solid #898989;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    z-index: 9;
}

nav ul {
    width: 324px;
    height: 25px;
    margin: 15px auto 30px;
    color: #282828;
    font-family: "Noto Sans CJK KR";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 36px;
    display: flex;
}

nav li {
    width: 111px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-left: 33px;
}

nav li#home { background-image: url('../img/home-button.png'); }
nav li#map  { background-image: url('../img/map-button.png');  }
body.home nav li#home { background-image: url('../img/home-button-current.png'); }
nav li#map.current  { background-image: url('../img/map-button-current.png');  }

#home-buttons {
    width: 100%;
    height: 100%;
    background-color: #fff;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 95px;
    position: fixed;
    display: flex;
    top: -100%;
    opacity: 0;
    z-index: 8;

    transition: top 0.4s 0.4s, opacity 0.4s;
}

body.home #home-buttons {
    top: 0;
    opacity: 1;
}

#home-buttons li {
    width: 320px;
    height: 320px;
    border-radius: 30px;
    background: #F4F4F4;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    color: #282828;
    display: block;
    position: relative;
    cursor: pointer;
}

#home-buttons li::before {
    content: '';
    width: 130px;
    height: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    top: 62px;
    left: calc(50% - 65px);
}

#link-to-about::before { background-image: url('../img/home-menu-1.png'); }
#link-to-test::before  { background-image: url('../img/home-menu-2.png'); }

#home-buttons li span {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}


/* 질문 설정 */

#welcome {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #fff;
    display: flex;
}

#welcome .container {
    height: 450px;
    width: 500px;
    margin: auto;
}

#welcome h1 {
    width: 100%;
    height: 130px;
    background: url('../img/welcome.png') center no-repeat;
    background-size: contain;
}

#welcome p {
    margin: 84px 0;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 32px */
    color: #282828;
}

#input {
    height: 55px;
    width: 410px;
    display: grid;
    gap: 45px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
}

#input input {
    width: 100%;
    height: 50px;
    margin-bottom: 4px;
    border-bottom: 1px solid #282828;
    background: url('../img/placeholder.png') center no-repeat;
    background-size: 39px 27px;
    text-align: center;
    font-size: 24px;
    color: #282828;
}

#input input:focus {
    background: none;
}

#input button {
    background-color: #282828;
    color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 27.5px;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 55px;
    border: none;
    cursor: pointer;
}

#question {
    width: 100vw;
    height: 100vh;
    background: url('../img/question-bg.jpg') center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

#question .swiper-wrapper {
    width: 100%;
    height: 100%;

    transition: opacity 0.6s;
}

#question .swiper-slide {
    display: flex;
    position: relative;
}

/* #question .swiper-slide:not(.swiper-slide-active) {
    opacity: 0 !important;
} */

#question.loading::before {
    content: attr(data-username) '님을 위한\A 큐레이션 결과는?';
    white-space: pre;
    width: 680px;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
    position: absolute;
    top: 320px;
    left: calc(50% - 340px);
}

#question.loading .swiper-wrapper {
    opacity: 0;
}

#question.loading .swiper-pagination {
    bottom: 320px;
}

#question.loading .swiper-pagination-progressbar-fill {
    transition: transform 0s linear;
}

#question h2 {
    width: 840px;
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
    position: absolute;
    top: 190px;
    left: calc(50% - 420px);
}

.page {
    margin: auto;
    color: #282828;
}

.options {
    margin: 100px auto 0;
    width: 680px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    display: flex;
}

.options li {
    width: calc(100% - 36px);
    padding: 18px;
    background-color: #fff;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.options.option-4 {
    display: grid;
    gap: 20px 17px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.options.option-4 li {
    min-height: 66px;
}

#question .swiper-pagination {
    width: 570px;
    position: fixed;
    bottom: 180px;
    top: auto;
    left: calc(50% - 285px);
    border-radius: 2.5px;
    background: rgba(255, 255, 255, 0.3);

    transition: bottom 0.6s;
}

#question .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #fff;
    border-radius: 2.5px;
}

/* 결과 설정 */

#result {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    color: #282828;
    z-index: 3;
}

#cover .container {
    text-align: center;
    padding: 136px 0 70px;
}

#cover h1 {
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

#result span.name {
    display: block;
}

#result span.name::after {
    content: '님은 ';
}

h1 strong,
h2 strong {
    border-bottom: 1px solid #282828;
    margin-right: 0.25em;
    font-weight: inherit;
}

#cover i {
    width: 250px;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    margin: 35px auto 45px;
}

#cover button {
    width: 200px;
    height: 55px;
    border-radius: 30px;
    background: #282828;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 55px;
    border: none;
}

#report .container {
    display: grid;
    grid-template-columns: 655px 450px;
    gap: 90px;
    padding: 116px 0 70px;
    min-height: 600px;
}

#report .col {
    position: relative;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

#report .col:nth-child(1) {
    margin-left: 200px;
}

#report .col:nth-child(2) {
    margin-right: 49px;
} 

#report .col i {
    width: 140px;
    height: 140px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    left: -160px;
    top: 0px;
}

#report h2 {
    width: 665px;
    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    position: absolute;
    top: 0;
    left: 0;
}

#report h3 {
    margin-top: 270px;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 20px;
}

#report p {
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    margin: 18px 0;
}

#buttons {
    flex-direction: row;
    justify-content: left;
    align-items: center;
    display: flex;
    gap: 15px;
    position: absolute;
    bottom: 7px;
}

#buttons li {
    width: 96px;
    height: 48px;
    background-color: #282828;
    border-radius: 24px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    color: #fff;
    line-height: 44px;
}

#buttons li#print::before { content: '출력'; }
#buttons li#share::before { content: '공유'; }

#quotation {
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    word-break: keep-all;
    position: absolute;
    top: 0;
    left: 0;
}

#quotation span {
    text-decoration-line: underline;
}

#quotation::after {
    content: attr(data-source);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    display: block;
    margin-top: 30px;
}

#toolkits {
    color: #898989;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
    margin-top: 245px;
    /* margin-top: 135px; */
    margin-bottom: 45px;
}

#toolkits::before {
    content: '추천 툴키트는?';
    color: #282828;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    display: block;
}

#toolkits:after {
    content: '';
    display: block;
    clear: both;
}

#toolkits li {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    width: 92px;
    margin-left: 11px;
    float: left;
    word-break: keep-all;
}

#toolkits li:first-child {
    margin-left: 0;
}

#toolkits li .thumbnail {
    width: 90px;
    height: 122px;
    border: 1px solid #898989;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 10px 0;
}

#toolkits li span,
#toolkits li span::after {
    color: #898989 !important;
}

#toolkits li span::after {
    content: '[' attr(data-location) ']';
    display: block;
}

#toolkits li.tray::after {
    content: '체험 트레이 구성';
    color: inherit;
    font-family: "Noto Sans CJK KR";
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: block;
}

#recommand {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    transform: rotateX(180deg);
    position: relative;
}

#recommand::-webkit-scrollbar {
    height: 4px;
    border-radius: 2px;
    box-shadow: none;
    background-color: #f0f0f0;
}

#recommand::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #B1B1B1;  
}

#recommand::-webkit-scrollbar-track {
    border-radius: 2px;
    background-color: #EBEBEB;
}

ul#recommand-contents {
    width: 740px;
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.5fr 1.1fr;
    gap: 20px;
    transform: rotateX(180deg);
    position: relative;
}

#recommand li {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    word-break: keep-all;
}

#recommand li::before {
    font-weight: 700;
    display: block;
    margin-top: 15px;
    margin-bottom: 2px;
    font-size: 15px;
}

#books::before { content: '추천 도서는?'; }
#tools::before { content: '추천 도구는?'; }
#seat::before  { content: '추천 좌석은?'; }
#additional::before{ content: '다음에 해볼 만한 툴키트는?'; }

#recommand li#books li {
    word-break: break-all;
}


/* about 설정 */

#about-container {
    width: 100%;
    height: calc(100vh - 146px);
    padding-top: 76px;
    margin-bottom: 70px;
    position: relative;
    display: flex;
}

#about-container::before {
    content: '';
    display: block;
    background: url('../img/about-bg.jpg') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 50%;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

#table {
    width: 864px;
    height: 545px;
    padding: 30px;
    border-radius: 30px;
    background: #F4F4F4;
    margin: auto;
    overflow: hidden;
    position: relative;
}

#tab {
    height: 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

#tab li {
    height: 50px;
    line-height: 48px;
    border-radius: 25px;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    color: #000;
    background: #fff;
    cursor: pointer;
}

#tab li.current {
    background: #282828;
    color: #fff;
}

#tab-content-wrapper {
    width: 100%;
    height: calc(100% - 105px);
}

.content-wrapper:not(.current) {
    display: none;
}

#intro-content {
    color: #282828;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    padding-top: 40px;
}

#intro-content > p {
    max-width: 635px;
    margin: 0 auto 50px;
    word-break: keep-all;
}

#intro-content h2 {
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

#intro-content .wp-block-columns {
    margin-top: 75px;
    padding-top: 27px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    border-top: 1px solid rgb(121 121 121 / 50%);
}

#intro-content .wp-block-column {
    text-align: left;
    padding-left: 30px;
    position: relative;
}

#intro-content .wp-block-column::before {
    content: attr(ID);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 165%;
    position: absolute;
    left: 0;
    top: 0;
}

#intro-content .wp-block-column h4 {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}

#intro-content .wp-block-column h4 strong {
    font-weight: 700;
}

#intro-content .wp-block-column p {
    margin: 10px 0;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}

#floor-content {
    padding: 0 5px 10px 360px;
    width: calc(100% - 365px);
    height: calc(100% - 10px);
    position: relative;
    overflow: hidden;
}

#floor-tab {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
    display: flex;
    position: absolute;
    top: 0;
    left: 5px;
    width: 70px;
}

#floor-tab li {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 25px;
    width: 70px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    color: #282828;
    cursor: pointer;
}

#floor-tab li.current {
    background: #282828;
    color: #fff;
}

.floor-content {
    display: none;
}

.floor-content.current {
    display: block;
    height: 100%;
}

.map {
    width: 100%;
    height: 100%;
    /* border-radius: 30px; */
    /* background: #DFDFDF; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    overflow: hidden;
}

.map::after {
    content: '*지도 위 번호를 터치하면 각 공간에 대해 안내해 드립니다.';
    color: #000;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    bottom: 0;
    right: 10px;
}

.map li {
    position: absolute;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.map li.top::after,
.map li.bottom::before {
    content: attr(data-index);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 17px;
    background-color: #282828;
    color: #fff;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    display: block;
    left: calc(50% - 9px);
    position: relative;
}

.map li.top::after {
    top: 24px;
}

.map li.top::before,
.map li.bottom::after {
    content: attr(data-title);
    color: #282828;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    display: inline-block;
    position: absolute;
    width: 200px;
    text-align: center;
    left: calc(50% - 100px);
}

.guide {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    word-break: keep-all;
    position: absolute;
    left: 5px;
    bottom: 10px;
    width: 360px;
    padding-right: 10px;
}

.guide span {
    text-decoration: underline;
}

.guide h3 {
    width: 100%;
    height: 64px;
    font-size: 0;
    text-indent: -9999em;
    margin-top: -19px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

#info-content {
    padding-top: 165px;
}

#info-content ul {
    display: grid;
    grid-template-columns: 1fr 0.87fr 0.73fr;
    gap: 40px;
    border-top: 1px solid #000;
    padding-top: 15px;
    margin-top: 46px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

#info-content li {
    position: relative;
}

#info-content li::before {
    content: attr(data-label);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    position: absolute;
    top: -62px;
}

#info-content ul small {
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
}

#info-content ul strong {
    font-weight: 700;
}


/* 팝업 설정 */

#popup-container {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
    position: fixed;
    display: flex;
    opacity: 0;
    top: 100%;

    transition: opacity 0.6s;
}

body.popup #popup-container {
    z-index: 99;
    opacity: 1;
    top: 0;
}

#popup-wrapper {
    width: 320px;
    min-height: 150px;
    padding: 35px;
    background-color: #fff;
    border-radius: 30px;
    position: relative;
    margin: auto;
}

#close-x {
    cursor: pointer;
    width: 21px;
    height: 21px;
    background: url('../img/close.png') no-repeat center;
    background-size: contain;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 9;
}

body.popup-qr #popup-content {
    padding: 20px;
    position: relative;
}

body.popup-qr #popup-content::before {
    content: 'QR 코드를 스캔해 주세요.';
    color: #000;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; 
    width: 100%;
    height: 56px;
    line-height: 56px;
    position: absolute;
    bottom: -32px;
    left: 0;
}

body.popup-about #popup-container {
    background-color: transparent;
}

body.popup-about #table::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 98;
}

body.popup-about #popup-content {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

body.popup-about #popup-content h2 {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 45px;
    display: block;
}

/* footer 설정 */

#copyright {
    display: none;
}


/* 모바일 설정 */

body:not(.mobile) br.mobile {
    display: none;
}

body.mobile {
    overflow-y: auto;
}

body.mobile header {
    display: none;
}

#result-mobile {
    padding: 55px 55px 0;
    color: #282828;
    font-family: "Noto Sans CJK KR";
}

#result-mobile h2 {
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    word-break: keep-all;
}

#result-mobile span.name::after {
    content: '님은 ';
}

#result-mobile i {
    width: 226px;
    height: 226px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    margin: 25px auto 30px;
}

#result-mobile h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
}

#result-mobile p {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
}

body.mobile footer {
    width: 100%;
    height: 130px;
    background: url('../img/footer-logo.png') center no-repeat;
    background-size: contain;
}


@media all and (max-width: 1366px) {

    #recommand::before {
        content: '';
        display: block;
        width: 217px;
        height: 3px;
        border-radius: 1.5px;
        background-color: #B1B1B1;
        position: absolute;
        left: 0;
        bottom: 2px;
        z-index: 3;
    
        opacity: 1;
    }
    
    #recommand.scrolled::before {
        opacity: 0;
    }
    
    ul#recommand-contents::before {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background-color: #f0f0f0;
        position: absolute;
        left: 0;
        top: 2px;
        z-index: 1;
    }
    
}

@media print {

    html,
    body {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #000;
        min-width: 0;
        min-height: auto;
        height: auto;
    }

    header,
    footer,
    .page-number,
    #result {
        display: none !important;
    }

    main {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    #print-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        display: block;
        
        box-sizing: border-box;
    }

    #print-container .print-page {
        height: 250px;
        min-height: 250px;
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        /* border-top: 1px solid #000;
        border-bottom: 1px solid #000; */
    }

    #print-container h1 {
        width: 100%;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }

    #print-container h3 {
        font-size: 9px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }

    #print-container p {
        word-break: keep-all;
        font-size: 8px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        padding: 0;
        margin-bottom: 15px;
    }

    #print-container i {
        width: 100%;
        height: 0;
        padding-top: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: block;
        margin: 15px auto 12px;
        filter: grayscale(1);
    }

    span.name {
        display: block;
    }

    span.name::after {
        content: '님은 ';
    }

    #quot {
        margin-top: 10px;
        font-size: 8px;
        font-style: normal;
        font-weight: 700;
        line-height: 170%;
        word-break: keep-all;
    }
    
    #quot span {
        text-decoration-line: underline;
    }
    
    #quot::after {
        content: attr(data-source);
        font-size: 7px;
        font-style: normal;
        font-weight: 700;
        line-height: 170%;
        display: block;
        margin-top: 7px;
    }

    #print-container ul {
        display: block;
        margin-top: 0;
        padding: 0;
    }

    #print-container ul::before {
        content: '추천 툴키트는?';
        font-size: 8px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        display: block;
    }

    #print-container ul::after {
        content: '';
        display: block;
        clear: both;
    }

    #print-container ul li {
        width: calc(50% - 2.5px);
        height: 93px;
        margin: 5px 0 0 5px;
        font-size: 6px;
        font-weight: 500;
        font-style: normal;
        word-break: keep-all;
        line-height: 150%;
        display: block;
        float: left;
        color: #000 !important;
    }

    #print-container ul li:nth-child(2n+1) {
        margin-left: 0;
    }

    #print-container ul li:first-child {
        margin-left: 0;
    }

    #print-container ul li .thumbnail {
        width: 85%;
        height: 0;
        padding-top: 115.222175%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        margin-bottom: 3px;
        position: relative;
    }

    #print-container ul li .thumbnail::before {
        content: '';
        border: 1px solid rgba(0, 0, 0, 0.5);
        width: calc(100% - 2px);
        height: calc(100% - 2px);
        display: block;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
    }

    #print-container ul li span::before {
        content: '[' attr(data-location) ']';
        display: inline-block;
        padding-right: 2px;
    }

    #print-container .text-only > ul,
    #print-container .text-only > div {
        font-size: 8px !important;
        line-height: 165% !important;
        margin-bottom: 10px;
    }

    #print-container .text-only > ul::before,
    #print-container .text-only > div::before {
        font-size: 9px;
        margin-bottom: 4px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        display: block;
    }
    
    #print-container ul.recommand-toolkit::before { content: '추천 툴키트는?'; }
    #print-container ul#recommand-add::before { content: '다음에 해볼 만한 툴키트는?'; }
    #print-container ul:not(.recommand-toolkits)::before { content: '추천 도서는?'; }
    #print-container #recommand-tools::before { content: '추천 도구는?'; }
    #print-container #recommand-seat::before { content: '추천 좌석은?'; }

    #print-container .text-only ul li {
        font-size: 8px !important;
        float: none !important;
        height: auto !important;
        width: 100% !important;
        margin: 0 !important;
    }

    #print-container .text-only ul li.tray::after {
        content: '체험 트레이 구성';
        color: #999;
    }

    #print-container .text-only .thumbnail {
        display: none !important;
    }

}