:root {
    --vadaro-max-width: 414px;
    --vadaro-max-height: 736px;
    --vadaro-main-color: #3d7739;
    --beta-main-color: #fd9c3c;
    --product-title-color: #26502a;
    --product-title-font-color: #d3e0ea;
    --tabbar-active-color: #3d7739;
    --tabbar-inactive-color: #423f3f;
    --hr-color--light: #e8e8e8;
    --hr-color--bold: #8f8f8f;
    --blue-color--light: #91b28f;

    --product-name-font-size: 1.1rem;
    --product-font-size: 0.7rem;

    --font-family-light: 'S-CoreDream-3Light';
    --font-family-regular: 'S-CoreDream-4Regular';
    --font-family-bold: 'S-CoreDream-6Bold';
    --font-family-extra-bold: 'S-CoreDream-7ExtraBold';
    /* 나눔스퀘어 */
    --font-family-nanum-regular: 'NanumSquare', sans-serif;
}
@font-face {
    font-family: 'TmonTium';
    src: url('../font/TmonTium.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-3Light';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-4Regular';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-6Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-7ExtraBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

html,
body {
    font-family: var(--font-family-regular);
    margin: 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
}

a,
a:link,
a:visited,
a:hover {
    text-decoration: none;
    color: black;
}

button {
    border: none;
    outline-style: none;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
p,
h3 {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--vadaro-max-width);
    margin: auto;
    position: relative;
}

/* Splash */
.loader {
    width: 100%;
    max-width: var(--vadaro-max-width);
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    margin: auto;
    background-color: var(--vadaro-main-color);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.bg-img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.fadeout {
    animation: fadeout 2s forwards;
}

@keyframes fadeout {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.fadein {
    animation: fadein 5s forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
        visibility: hidden;
    }
    to {
        opacity: 1;
        visibility: visible;
    }
}

/* data loading */
.loading {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    margin: auto;
    padding-top: 30px;
    text-align: center;
    font-family: var(--font-family-regular), sans-serif;
    font-size: var(--product-font-size);
    background-color: var(--product-title-color);
    color: var(--product-title-font-color);
}

.loading-balls {
    margin: auto;
    display: flex;
    justify-content: center;
}

.loading-balls div {
    margin: 8px 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;
    animation: data-loading 1.2s ease-in-out infinite;
}

.loading div:nth-of-type(1) {
    animation-delay: 0s;
}
.loading div:nth-of-type(2) {
    animation-delay: 0.12s;
}
.loading div:nth-of-type(3) {
    animation-delay: 0.24s;
}

@keyframes data-loading {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
        background-color: yellow;
    }
    100% {
        transform: scale(1);
    }
}

/* product List */
.list-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.banner-wrap {
    /* margin-top: 36px; */
    width: 90%;
    height: 100px;
    display: flex;
    justify-content: center;
}
.banner {
    background-image: url(../imgs/list_banner.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    /* border: 1px solid var(--hr-color--bold); */
    box-shadow: 5px -1px 10px var(--hr-color--light);
}
.list-view {
    width: 95%;
    height: calc(var(--vh, 1vh) * 55);
    border-radius: 35px;
    box-shadow: 5px -1px 10px var(--hr-color--light);
    /*overflow-y: scroll;*/
    overflow-y: hidden;
    overflow-x: hidden;
    flex-wrap: wrap;
    margin: calc(var(--vh, 1vh) * 2) 0px calc(var(--vh, 1vh) * 1) 0px;
    padding: 15px 10px;
}
.list-section {
    width: 100%;
    height: 95%;
    /*margin: 30px 10px 30px 10px;*/
    text-align: left;
    overflow-y: scroll;
    margin-top: 10px;
}

.list-section::-webkit-scrollbar {
    width: 4px;
}
.list-section::-webkit-scrollbar-thumb {
    background-color: var(--vadaro-main-color);
    border-radius: 6px;
}

.list-title {
    font-family: var(--font-family-regular), sans-serif;
    font-size: var(--product-font-size);
    background-color: white;
    color: var(--vadaro-main-color);
    display: flex;
    justify-content: space-between;
    /* align-items: flex-end; */
    padding: 8px 1em 10px 1em;
    flex-basis: 3 1;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom: solid 4px var(--vadaro-main-color);
    height: 60px;
}
.list-company-name {
    font-family: var(--font-family-extra-bold), sans-serif;
    font-size: 20px;
    margin: 10px 0px 10px 0px;
    color: #3f3e3e;
}
.list-logo-wrap {
    background-color: #3d7739;
}
/* .product-wrap.bundle {
    border: 1px solid #26502a;
} */
.ingredient-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1em;
    margin: 15px 0px 50px 0px;
}

/* .single-product {
    display: flex;
    flex-direction: column;
} */
/* .product-wrap.single,
.ingredient-wrap {
    width: 7em;
    height: 7em;
    border-radius: 100%;
    background-color: #91b28f;
    background-size: cover;
}
.product-wrap.single {
    display: inline-block;
} */
.bundle-icon-wrap {
    margin-right: 5px;
    align-content: center;
}
.bundle-icon {
    width: 12px;
    height: 12px;
    margin-bottom: 1px;
}
.bundle-name-container {
    text-align: start;
    margin-left: 10px;
    display: flex;
    flex-direction: row;
    /* border-bottom: solid 2px var(--vadaro-main-color); */
    word-break: keep-all;
}
.bundle-name {
    text-align: center;
    vertical-align: middle;
}
.beta-menu {
    /* -webkit-mask-image: url('./imgs/beta_layer.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: url('./imgs/beta_layer.png');
    mask-repeat: no-repeat;
    mask-size: 100% 100%; */
    border: solid var(--beta-main-color) 3px;
}
.beta-badge-wrap {
    width: 42px;
    height: 20px;
    background-color: var(--beta-main-color);
    box-shadow: 1.5px 2px 1px 2px rgb(0 0 0 / 20%);
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    /* width: 100%; */
    position: relative;
    top: -5px;
    /* text-align: end; */
}
.badge {
    margin: auto;
    color: white;
    font-size: 12px;
    /* padding: 3.5px; */
    font-family: var(--font-family-nanum-regular);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-fig,
.ingredient-fig {
    width: 86px;
    height: 86px;
    border-radius: 15px;
    display: inline-block;
    background-size: cover;
    /* background-color: var(--beta-main-color); */
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15%;
    /* background-size: cover; */
    background-size: 100% 100%;
}
.single-container {
    /* display: flex; */
    width: 100%;
    justify-content: space-evenly;
    /*margin: 15px 0px 50px 0px;*/
}

.single-wrap {
    vertical-align: text-top;
    width: 90px;
    /* height: 107px; */
    display: flex;
    flex-direction: column;
    display: inline-block;
    align-items: center;
}
.product-container {
    display: inline-block;
    margin: 0px 10px 40px 10px;
    width: 100%;
}
.product-container a {
    /* width: 100px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}
.bundle-wrap {
    display: flex;
    flex-direction: row;
    /* align-self: center; */
    flex-wrap: wrap;
}
.ingredient-name,
.single-name {
    font-size: 12px;
    word-break: keep-all;
    text-align: center;
    width: 86px;
}
.test {
    align-items: center;
}
.ingredient-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.single-wrap,
.ingredient-wrap {
    margin: 10px;
}
.tab-container {
    width: 100%;
    position: relative;
    padding-top: 10px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    display: flex;

    /* cross browser */
    -webkit-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.tab-container::-webkit-scrollbar {
    display: none;
    width: 0;
}
.first {
    background-color: #3d7739;
    color: white;
}

.tab-container a,
.tab-container div {
    /* 사파리 잔상 문제 해결
    -webkit-transform: translateZ(0);
    -webkit-transition: -webkit-transform 0.5s;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    box-shadow: none; */
    -webkit-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.category-tab {
    padding: 10px;
    min-width: 72px;
    height: 32px;
    border: 1px solid var(--hr-color--bold);
    box-shadow: 5px -1px 10px var(--hr-color--light);
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 5px;
    margin-left: 12px;
    /* cross browse */
    -webkit-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* date popup */
.carinder-wrap {
    display: none;
}
.carinder-wrap.show {
    position: fixed;
    display: block;
    max-width: var(--vadaro-max-width);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.6;
}

.carinder {
    position: absolute;
    width: 80%;
    height: 70vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.carinder-title {
    font-size: calc(var(--product-font-size) * 1.28);
}
.carinder-chose {
    margin: 1rem 0 0.6rem;
}
.carinder-btn {
    padding: 0.6rem 1rem;
    background-color: var(--vadaro-main-color);
    border-radius: 4px;
    color: #fff;
}

@media screen and (max-width: 360px) {
    .carinder {
        position: absolute;
        width: 90%;
        height: 70vh;
    }
}

/* app main*/
.main-container {
    position: fixed;
    background-color: white;
    width: 100%;
    max-width: var(--vadaro-max-width);
    height: 100%;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
/* 
.main-container::-webkit-scrollbar {
    width: 1vw;
}

.main-container::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 42%, 0.49);
    border-radius: 100px;
} */

.main-container::-webkit-scrollbar {
    width: 4px;
}

.main-container::-webkit-scrollbar-thumb {
    background-color: var(--vadaro-main-color);
    border-radius: 100px;
}

.tab-contents-container {
    width: 100%;
    height: 100%;
}

/* Nav bar */
.navbar-logo {
    width: 100%;
    /* position: fixed; */
    background-color: var(--vadaro-main-color);
    padding-top: 16px;
    padding-bottom: 12px;
}

/* .navbar-logo-img {
    margin: 0;
    text-align: center;
    padding: 10px;
} */

.navbar-logo-tit {
    color: #fff;
    font-family: 'TmonTium';
    font-size: 26px;
}

.flag-img {
    width: 50px;
    margin: 0;
    margin: auto;
    padding-top: 2px;
}

.product-title-wrap {
    width: 100%;
    background-color: var(--vadaro-main-color);
}

.product-title {
    font-family: var(--font-family-regular), sans-serif;
    font-size: var(--product-font-size);
    background-color: white;
    color: var(--vadaro-main-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px 1em 10px 1em;
    flex-basis: 3 1;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom: solid 4px var(--hr-color--light);
}

.product-title--left {
    /* width: 70%; */
    padding-left: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-title--left span {
    display: flex;
    align-items: flex-end;
    padding: 8px 0px 6px 0px;
}

.product-title--left .product-name {
    font-family: var(--font-family-extra-bold), sans-serif;
    font-size: var(--product-name-font-size);
    font-weight: normal;
    line-height: 100%;
    margin-right: 4px;
}

.product-title--left strong {
    font-family: var(--font-family-extra-bold), sans-serif;
}

.product-title--right {
    /* width: 30%; */
    text-align: center;
    position: relative;
    padding-left: 10px;
    margin-right: 8px;
}

.product-title--right strong {
    font-size: 16px;
}

.product-code {
    text-align: left;
    text-indent: -4.5em;
    margin-left: 4.5em;
    font-size: 0.7rem;
}

/* home */
.home-container {
    height: 100%;
}

.home-chart-title {
    font-size: 16px;
    text-align: center;
    margin-top: 24px;
}

.fresh-value-average {
    font-family: var(--font-family-extra-bold);
    font-size: 32px;
    color: var(--vadaro-main-color);
}

.home-chart-explain {
    font-size: 10px;
    text-align: center;
    color: var(--tabbar-inactive-color);
}

.home-chart-container {
    max-width: 1000px;
    text-align: center;
    margin: 8px auto;
    padding: 8px 0;
}

#chart {
    cursor: pointer;
}

.link-to {
    width: 60%;
    background-color: var(--vadaro-main-color);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 14px;
}

.link-to a {
    color: white;
    font-size: 16px;
    display: block;
    width: 100%;
}

/* tabbar */
.tabbar-items {
    display: flex;
    position: relative;
    padding: 0;
    margin: 10px 0 5px 0;
    border-bottom: solid 0.3px var(--hr-color--bold);
}

.scroll {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.scroll::-webkit-scrollbar {
    display: none;
}

.tabbar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--tabwidth);
    max-width: var(--tabwidth);
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    padding: 10px 14px 4px 14px;
}

.tabbar-item.active {
    font-weight: bold;
    color: var(--tabbar-active-color);
}

/* sub tabbar */
.tabbar-sub-items {
    display: flex;
    position: relative;
    padding: 0;
    margin: 10px 0 15px 0;
}

.tabbar-sub-item {
    list-style: none;
    font-family: var(--font-family-bold);
    font-size: 14px;
    color: var(--tabbar-inactive-color);
    padding: 4px 6px 6px 6px;
    border: 1px solid var(--hr-color--light);
    border-radius: 8px;
    margin: 0 4px;
    cursor: pointer;
}

.tabbar-sub-item.active {
    border: 1px solid var(--tabbar-active-color);
    background-color: var(--tabbar-active-color);
    color: white;
}

/* home product days */
.product-days * {
    display: none;
    /* visibility: hidden; */
    justify-content: space-around;
    align-items: flex-start;
}

.product-day {
    width: 30%;
    text-align: center;
    font-weight: bold;
    color: var(--tabbar-inactive-color);
    border: solid 0.3px var(--hr-color--light);
    border-radius: 8px;
    cursor: pointer;
}

.product-day-title {
    padding: 0 10px 2px 10px;
    font-size: 0.7rem;
    border-bottom: solid 0.3px var(--hr-color--bold);
}

.product-day h1 span,
.product-day h1 {
    padding: 3px 0 2px 0;
    font-size: 14px;
    font-weight: bold;
    color: var(--tabbar-active-color);
}

.hidden {
    display: none;
}

.blink {
    animation: blink-effect 1.5s ease-in-out infinite;
}

@keyframes blink-effect {
    50% {
        opacity: 0;
    }
}

.day-explain {
    position: absolute;
    color: var(--vadaro-main-color);
    font-size: 12px;
    margin-top: 4px;
    padding: 0 4px;
}

/* slider */
.slide-next-leave-active,
.slide-next-enter-active,
.slide-prev-enter-active,
.slide-prev-leave-active {
    transition: 0.5s;
}
.slide-next-enter,
.slide-next-leave,
.slide-prev-leave-to {
    transform: translate(100%, 0);
}

.slide-next-leave-to,
.slide-prev-enter,
.slide-prev-leave {
    transform: translate(-100%, 0);
}

.slider {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 0px;
    left: calc(var(--tabwidth) / 2);
    background: var(--tabbar-active-color);
    transition: 0.5s ease;
}

.tabcontainer {
    position: relative;
    touch-action: pan-y;
    height: calc(var(--vh, 1vh) * 68);
}

.tabpane {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* home, fresh-detail, trace, trace-detail */
.view-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    touch-action: pan-y;
    padding: 0 8px;
}

/* fresh-detaile */
#summary-container {
    height: 100%;
    overflow-y: overlay;
    touch-action: pan-y;
}
/* #summary-container::-webkit-scrollbar {
    width: 1vw;
}

#summary-container::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 42%, 0.49);
    border-radius: 100px;
} */
#summary-container::-webkit-scrollbar {
    width: 4px;
}

#summary-container::-webkit-scrollbar-thumb {
    background-color: var(--vadaro-main-color);
    border-radius: 100px;
}

.fresh-detail-card {
    padding: 4px 8px;
}

.fresh-detail-card h1 {
    font-family: var(--font-family-extra-bold);
    font-size: 16px;
    color: var(--vadaro-main-color);
    margin: 10px 0 6px 0;
}

.fresh-detail-card-contents {
    text-align: center;
    border: 1px solid var(--hr-color--light);
    border-radius: 8px;
    background-color: white;
    padding: 8px;
}

.fresh-detail-card-contents p {
    color: var(--tabbar-inactive-color);
    font-size: 12px;
}

.fresh-value-wrap {
    width: 60%;
    border-radius: 8px;
    margin: 12px auto;
    padding: 12px 0;
    background-color: var(--vadaro-main-color);
    color: white;
}

.fresh-value-wrap p {
    font-family: var(--font-family-light);
    color: white;
}

.fresh-value-wrap h3 {
    font-size: 18px;
}

.fresh-value-text-wrap {
    margin-bottom: 14px;
}

.margin-4-0 {
    margin: 4px 0;
}

.fresh-value-container {
    width: 100%;
    padding: 4px;
    margin-top: 18px;
    color: var(--vadaro-main-color);
}

.fresh-value-container h3 strong {
    font-family: var(--font-family-extra-bold);
    font-size: 24px;
}

.fresh-value-container p {
    font-size: 8px;
}

.fresh-bar-container {
    padding: 0 12px;
}

.fresh-bar-status {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
}

.fresh-bar-status div {
    width: 50px;
}

.fresh-bar-status div img {
    width: 100%;
}

.fresh-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, white, var(--vadaro-main-color));
}

.indicator {
    position: relative;
    width: 0px;
    height: 0px;
    border-top: 8px solid var(--vadaro-main-color);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    left: var(--triangle-position);
    margin-bottom: 4px;
}

/* trace */
.trace-detail-title-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    margin-left: -20%;
    margin-right: -20%;
}

.trace-detail-title {
    padding: 5px;
    background-color: var(--vadaro-main-color);
    color: white;
}

.trace-detail-title-wrap img {
    margin-top: -1px;
    align-self: center;
}

.trace-det {
    color: darkblue;
}

.trace-history {
    width: 100%;
}

.trace-history,
#trace_stat {
    flex-direction: row;
    justify-content: center;
    height: 100%;
}

.trace-wrap {
    padding: 10px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    touch-action: pan-y;
    overflow-x: hidden;
}
.trace-wrap::-webkit-scrollbar {
    width: 4px;
}

.trace-wrap::-webkit-scrollbar-thumb {
    background-color: var(--vadaro-main-color);
    border-radius: 100px;
}

.trace-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-basis: 30px;
    margin-bottom: 10px;
    width: 100%;
}

.date {
    width: 30%;
    font-size: 12px;
    color: var(--vadaro-main-color);
    text-align: right;
}

.trace-icons-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
}

.trace-container:last-child .trace-icons-wrap,
.trace-container:last-child .trace-info {
    cursor: default;
}

.trace-icon-wrap {
    margin: 0;
}

.trace-icon {
    color: var(--vadaro-main-color);
    border: 1px solid var(--vadaro-main-color);
    font-size: 30px;
    border-radius: 50%;
    padding: 5px;
    margin-bottom: 5px;
}

.trace-arrow {
    width: 20px;
}

.trace-info {
    width: 45%;
    font-size: 14px;
    overflow: hidden;
    height: auto;
    border-radius: 7px;
    text-align: left;
    cursor: pointer;
}

.company-name {
    font-family: var(--font-family-bold);
}

.date,
.trace-info {
    margin-top: 20px;
}

.trace-info b {
    font-size: 16px;
    color: var(--vadaro-main-color);
}

/* traceCode History */
.trace-code-history {
    width: 100%;
    text-align: center;
    padding: 10px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title-history {
    background-color: #e5e5e5;
    width: 15em;
    justify-content: center;
    margin: 5px;
}
.history-table {
    width: 100%;

    text-align: center;
}
.history-table table,
th,
td {
    border: 1px solid var(--hr-color--bold);
    border-collapse: collapse;
    text-align: center;
    padding-left: 0px;
}
.code-title {
    width: 30%;
}
.code-title02 {
    width: 70%;
}
.code-row td {
}
.show-trace {
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.btn_trace {
    /* background-color: var(--product-title-color);
    color: var(--hr-color--light);
    width: 100px;
    border-radius: 3px; */
    text-align: center;
    text-decoration: underline;
}

/* trace detail*/
.det-templ-container {
    margin-bottom: 50px;
}

.det-templ-container h1,
.det-templ-container h4 {
    color: var(--vadaro-main-color);
    text-align: center;
}

.det-templ-container h4 {
    font-family: var(--font-family-extra-bold);
    margin-bottom: 4px;
}

.det-table {
    width: 100%;
    margin: auto;
    border-collapse: collapse;
    font-size: 15px;
}

tr,
th {
    border-top: 1px solid var(--hr-color--bold);
    border-bottom: 1px solid var(--hr-color--bold);
}

td {
    color: var(--tabbar-inactive-color);
}
.det-table td {
    padding-left: 18px;
    text-align: left;
}

th {
    width: 120px;
    border-right: 1px solid var(--hr-color--bold);
    color: var(--vadaro-main-color);
}

#stepImgFig,
#stepDocFig,
#st_imgFig,
#st_DocFig {
    width: 90vw;
    margin: auto;
}
.traceImg,
.doc {
    width: 100%;
    object-fit: cover;
}

.fig img {
    border: 1px solid var(--hr-color--bold);
}

.popUp {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.layer {
    width: 80%;
    max-width: 768px;
    height: 80%;
    overflow-y: scroll;
    touch-action: pan-y;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px -4px;
}
.dimmed {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
#popUpImgFig {
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
}
.popUpImg {
    width: 95%;
    border: 1px solid silver;
}

.productImg {
    width: 55%;
    border: 1px solid silver;
    padding: 2px;
}

.btnClose {
    width: 50px;
    height: 30px;
    line-height: 30px;
    background-color: var(--vadaro-main-color);
    border-radius: 8px;
    text-align: center;
    margin: 0px auto;
    color: white;
    cursor: pointer;
}

#stepImg,
#stepDoc,
#st_stepDoc,
#st_stepImg {
    width: 100%;
    object-fit: cover;
}

.btn_rad {
    width: 15em;
    height: 2em;
    font-size: 1em;
    background-color: #3d7739;
    color: white;
    border-radius: 5px;
}

@media screen and (min-width: 1025px) {
    html {
        background-color: whitesmoke;
    }

    .det-templ-container {
        width: 80%;
        margin: auto;
        margin-bottom: 50px;
    }

    .trace-detail-title-wrap {
        margin-left: -20%;
        margin-right: -20%;
    }

    .slide-next-leave-active,
    .slide-next-enter-active,
    .slide-prev-enter-active,
    .slide-prev-leave-active {
        transition: 0s;
    }
    .slide-next-enter,
    .slide-next-leave,
    .slide-prev-leave-to {
        transform: translate(0, 0);
    }

    .slide-next-leave-to,
    .slide-prev-enter,
    .slide-prev-leave {
        transform: translate(0, 0);
    }
}

@media screen and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
    :root {
        --product-name-font-size: 18px;
    }
    html,
    body {
        height: 100%;
    }

    main {
        -ms-overflow-style: none;
    }

    main::-webkit-scrollbar {
        display: none;
    }

    header {
        height: 100%;
    }

    .tabcontainer {
        height: calc(var(--vh, 1vh) * 80);
    }

    @media (max-height: 767px) {
        .tabcontainer {
            height: calc(var(--vh, 1vh) * 88);
        }
    }

    .trace-wrap {
        overflow-y: auto;
    }

    #summary-container {
        overflow-y: auto;
    }
    .bg-img {
        z-index: -1;
    }
}

.vadaro-introduce {
    width: 400px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.introduce-title {
    border-left: 5px solid var(--blue-color--light);
    font-family: var(--font-family-extra-bold);
    font-size: var(--product-name-font-size);
    color: var(--vadaro-main-color);
    margin-bottom: 20px;
    width: 300px;
    text-align: left;
    padding-left: 10px;
    letter-spacing: -1px;
}

.introduce-contents {
    font-family: var(--font-family-regular);
    color: var(--vadaro-main-color);
    font-size: var(--product-font-size);
    margin-bottom: 30px;
    word-break: keep-all;
    width: 280px;
    justify-content: center;
    padding-left: 5px;
}
.introduce-contents p {
    text-align: left;
    line-height: 150%;
}
.introduce-link {
    width: 200px;
    height: 60px;
    background-color: var(--vadaro-main-color);
    border-radius: 8px;
}

.introduce-link a {
    display: block;
    width: 100%;
    font-family: var(--font-family-regular);
    color: #fff;
    font-size: var(--product-font-size);
}
