@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Pretendard";
    src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}


* {
    word-break: keep-all;
    box-sizing: border-box;
}

/* 초기화 */


body {
    font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif;
    font-weight: 400;
    font-style: normal;

}


html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
ol,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1em;
}

input,
button {
    margin: 0;
    padding: 0;
    font-family: inherit !important;
}

input[type="submit"] {
    cursor: pointer;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
}

textarea,
select {
    font-family: inherit !important;
}

select {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
    word-break: break-all;
}

pre {
    overflow-x: scroll;
    font-size: 1.1em;
}

a {
    color: inherit;
    text-decoration: none;
}

:root {
    --header-height: 60px;
    --primary: #CA9B34;
    --dark: #616161;
    --aside-width: 25vw;
}

.not-allowed {
    cursor: not-allowed;
}


.wrapper {
    background-color: #f0f0f0;
}

.container-fluid {
    padding: 0 2.5rem;
}

.line-through {
    text-decoration: line-through;
}



#header {
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-nav {
    margin-left: 50px;
    height: 100%;
}

.navbar-nav .nav-item {
    width: 125px;
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--dark);
    transition: all .3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-item:hover::after {
    width: 100%;

}

.navbar-nav .nav-item a {

    font-size: 1.12rem;
    display: inline-block;
    width: 100%;
    font-weight: 400;
    color: #666;
    transition: all .3s;
}


.aside-left {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    border: 0;
    border-radius: 5px 0 0 5px;
    background: #C0C0C0;
    top: 0;
    left: -50px;

}

.product-mobile-toolbar {
    z-index: 10;
}

.aside-bottom {
    position: absolute;
    display: none;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -42px;
    right: 0;
    z-index: 10;
    transition: all .3s;

}

.aside-bottom i {
    display: block;
    transform: rotate(90deg);
    transition: all .3s;
}

.aside-bottom.show {
    top: -292px;
    display: block;
}

.aside-bottom.show i {
    transform: rotate(270deg);
}

.product-mobile-toolbar .product-aside-content-mobile {
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.25rem 1.5rem;
    background-color: #fff;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
}

.product-mobile-toolbar .product-aside-content-mobile.show {
    z-index: 1;
    opacity: 1;

    height: 250px;
}

.product-aside {
    width: var(--aside-width);
    border-top: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: -2px 3px 5px 0 rgba(0, 0, 0, 0.15);
    color: #000;
    height: calc(100vh - var(--header-height));
    position: fixed;
    right: 0;
    top: 0;
    margin-top: var(--header-height);
    transition: all .5s;
    z-index: 1;

}

.product-aside-content {
    overflow-y: auto;
    height: 75%;
    padding: 1.25rem 1.5rem;


    /* Firefox */
}


.product-aside-content h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6em;
    font-size: 1rem;

}

.product-aside-content ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.25em;
    font-size: 0.875rem;
    padding-left: 1em;
    font-weight: 400;
    color: #666;
    border-left: 2px solid #D9D9D9;
}

.step_1,
.step_2 {
    border-bottom: 1px solid #D9D9D9;
    padding: 1.25rem 0;
}

.step_2 {
    border-bottom: none;
}

.step_1>div,
.step_2>div {
    /* margin-bottom: 1.4rem; */
}

.product-aside-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-aside-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-aside.hide {
    right: calc(-1 * var(--aside-width));
}

.product-aside.hide .arrow-icon {
    transform: rotate(180deg);
    display: block;
}

.products-wrap.hide {
    padding-right: 0;
}

.total-price {
    padding: 1.25rem 1rem;
    border-top: 1px solid #D9D9D9;

}

.total-price .original-price {
    color: rgba(0, 0, 0, 0.4);
}


/* 옵션 wrap */
.products-wrap input[type="radio"],
.products-wrap input[type="checkbox"] {
    display: none;
}

.products-wrap {
    padding-right: var(--aside-width);
    padding-top: var(--header-height);
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    transition: all .5s;
    border-right: 1px solid #e0e0e0;
}

.products-wrap-inner {
    overflow-y: auto;
    height: calc(100vh - 56px);
}

.option-group {
    margin-bottom: 3rem;

}

.option-group .option-list {

    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: stretch;


}

.option-group .option-list li {
    min-width: 230px;
    height: inherit;
    width: 20%;
}

.option-group .option-list li * {
    word-break: keep-all;
}

.option-item {
    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.15);
    width: 100%;
    min-height: 62px;
    height: 100%;
    padding: 16px;
    font-size: 1.1rem;
    transition: all .3s;
    gap: 6px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.option-item::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    background-color: var(--dark);
    width: 0;
    height: 110%;
    transition: all .3s;
    opacity: 0;
    z-index: 0;
}

.option-item::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 12px;
    width: 24px;
    height: 24px;
    background-image: url('../img/checked.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s;
    opacity: 0;
    z-index: 1;
}

.option-item * {
    position: relative;
    z-index: 1;
}

.option-item strong {
    font-weight: 500;
}

.option-item p {

    opacity: 0.8;
    text-align: center;
    font-weight: 300;
}

.option-item p.desc {
    font-size: 0.8rem;
}

.option-item p.price {
    font-size: 1rem;
}

.option-item .more {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 400;

    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem;
    position: relative;
}



.option-item .more:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: all .3s;
}

.option-item .more:hover:before {
    width: 100%;
}

.option-group .option-list li input[type="radio"]:checked+.option-item,
.option-group .option-list li input[type="checkbox"]:checked+.option-item,
.option-item.option-static {
    color: #fff;
    outline: 1px solid var(--primary);
}

.option-group .option-list li input[type="radio"]:checked+.option-item::before,
.option-group .option-list li input[type="checkbox"]:checked+.option-item::before,
.option-item.option-static::before {
    width: 110% !important;
    opacity: 1 !important;
}

.option-group .option-list li input[type="radio"]:checked+.option-item::after,
.option-group .option-list li input[type="checkbox"]:checked+.option-item::after,
.option-item.option-static::after {
    opacity: 1 !important;
}

.option-img {
    width: 100%;
    position: relative;
    padding-top: 75%;
    overflow: hidden;

}

.option-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loop-option {
    font-size: 0.8rem;
    font-weight: 300;
    background-color: #3C3C3C;
    color: #fff;
}

@media screen and (max-width: 1199px) {
    :root {
        --aside-width: 400px;
    }
}

@media screen and (max-width: 991px) {


    .product-aside-content {
        height: 25vh;
        padding: 0.8rem 1rem;
    }

    .products-wrap {
        padding-left: 0rem;
        padding-right: 0rem;
        padding-bottom: 1rem;

    }

    .step_1,
    .step_2 {
        padding: 1rem 0;
    }

    .step_1>div,
    .step_2>div {
        margin-bottom: 1rem;
    }

    .option-item {
        font-size: 0.9rem;
        padding: 14px;

    }

    .option-group .option-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .option-group .option-list li {
        min-width: 100%;
    }

    .option-item::after {
        width: 3vw;
        height: 3vw;
        left: 1.5vw;
        top: 1.5vw;
    }

    .products-wrap-inner {
        height: 100%;
    }
}

@media screen and (max-width: 767px) {
    .container-fluid {
        padding: 0 1rem;
    }

    .navbar-nav {
        margin-left: 24px;
    }

    .navbar-nav .nav-item {
        width: auto;
        min-width: 60px;
    }

    .option-item p.desc {
        font-size: 0.7rem;
    }

    .option-item p.price {
        font-size: 0.8rem;
    }

    .option-item .more {
        font-size: 0.8rem;
    }
}

.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f5f5f5;
}

.scrollbar::-webkit-scrollbar {
    width: 8px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 6px;
}

.scrollbar::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 6px;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #888;
}


/* popup */
.modal .btn-close {
    position: absolute;
    padding: 0;
    right: 8px;
    font-size: 1.25rem;
    font-weight: 300;
    width: 36px;
    height: 36px;
    text-shadow: none;
    z-index: 1;
    top: 8px;
}

.modal .modal-body {
    padding: 48px 2rem 1.5rem 2rem;
}

@media (max-width: 991px) {
    .modal .modal-body {
        padding: 48px 1rem 1.5rem 1rem;
    }
}

/* .modal .modal-body p>img {
    width: calc(100% + 4rem);
    margin: 0 -2rem;
} */

.modal .modal-body img {
    max-width: 100%;
}

/* 상세 */
.inquiry-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.inquiry-detail-header img {
    width: 365px !important;
    height: auto;
    object-fit: contain;
}

.inquiry-detail-section-title {
    color: #CA9B34;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.inquiry-detail-divider {
    border-top: 1px solid #CA9B34;

}

.inquiry-detail-label {
    color: #222;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 85px;

}

.inquiry-detail-value {
    color: #222;
    font-size: 0.8rem;
    font-weight: 400;

}

.inquiry-detail-box {
    background: #fff;
    padding: 1rem 0.7rem;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
}

.inquiry-detail-value-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    width: 100%;
    flex-wrap: wrap;
}

.inquiry-detail-value-list ul {
    padding: 0 !important;
    margin: 0 !important;
}

.inquiry-detail-value-list ul li {
    padding-left: 1rem;
    position: relative;
}

.inquiry-detail-value-list ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

}



#bo_v_con ul {
    padding: 0;
    margin: 0;
}

.inquiry-detail-divider-light {
    border-top: 1px solid #F9F9F9;
    margin: 1.5rem 0;
}

.inquiry-detail-small {
    color: #404040;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.inquiry-estimate-list,
.inquiry-estimate-list ul {
    padding: 0;
    margin: 0;
}

.inquiry-estimate-list ul {}

.inquiry-estimate-list>li {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 0.25rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.price-list li {
    font-size: 0.85rem;
}

.inquiry-estimate-list>li:first-child {

    border-left: none !important;
}

.inquiry-estimate-value-list li {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.inquiry-detail-small {
    margin-left: 1rem;
}

.inquiry-detail-small,
.inquiry-detail-small li {
    padding-left: 0.5rem;
    list-style: disc;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 400;

}

.square {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.square span {
    display: block;
    width: 18px;
    height: 18px;
    border: 1px #D9D9D9 solid
}

@media (max-width: 767.98px) {
    .contract-sign-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .contract-sign-row .ms-4 {
        margin-left: 0 !important;
    }
}