@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&display=swap");

body {
    font-family: "Lato", "Noto Sans TC", sans-serif;
}

.logo {
    width: 165px;
}

.header-icon {
    position: relative;
    width: 24px;
}

.header-icon>img {
    width: 100%;
}

.header-icon p {
    width: 17px;
    height: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #A18875;
    font-size: 11px;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 50%;
    bottom: 0;
    right: -5px;
    position: absolute;
}

.header-lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-lang a {
    display: block;
    position: relative;
    padding: 0 8px;
}

.header-lang a::after {
    position: absolute;
    content: "";
    height: 12px;
    width: 1px;
    background-color: #C7C7C7;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-lang a.active,
.header-lang a:hover {
    color: #A08875;
    font-weight: 700;
}

.header-lang li:last-child a::after {
    display: none;
}

.bg-yellow {
    background-color: #F9EFE5;
}

.bg-yellow #main-nav {
    background-color: #FFFFFF;
}

a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

button {
    border: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

input {
    background-color: transparent !important;
    border: 0;
}

.btn {
    padding: 8px 12px;
    border-radius: 100px;
    gap: 4px;
    border: 0;
    height: auto;
    min-height: inherit;
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn svg path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn img {
    width: 18px;
}

.btn span {
    font-size: 1em;
    line-height: 1.5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn-brown {
    background-color: #A08875;
    border: 1px solid #A08875;
}

.btn-brown span {
    color: #FFFFFF;
}

.btn-brown svg path {
    fill: #FFFFFF;
}

.btn-brown:hover {
    background-color: #767691;
    color: #FFFFFF;
    border-color: #767691;
}

.btn-light {
    background-color: rgba(160, 136, 117, 0.1);
    border: 1px solid rgba(160, 136, 117, 0.1);
}

.btn-light span {
    color: #A08875;
}

.btn-light svg path {
    fill: #A08875;
}

.btn-light:hover {
    background-color: #767691;
    border-color: #767691;
}

.btn-light:hover span {
    color: #FFFFFF;
}

.btn-light:hover svg path {
    fill: #FFFFFF;
}

.btn-border {
    border: 1px solid #A08875;
    background-color: transparent;
}

.btn-border span {
    color: #A08875;
}

.btn-border svg path {
    fill: #A08875;
}

.btn-border:hover {
    background-color: #767691;
    border-color: #767691;
}

.btn-border:hover span {
    color: #FFFFFF;
}

.btn-border:hover svg path {
    fill: #FFFFFF;
}

.btn-onlyicon {
    width: 32px;
    height: 32px;
    min-height: inherit;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
}

.btn-onlyicon img {
    width: 18px;
}

.btn-onlyicon svg {
    width: 18px;
    height: 18px;
}

.btn-onlyicon svg path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    fill: #FFFFFF;
}

.btn-onlyicon:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-onlyicon:hover svg path {
    fill: #A08875;
}

.btn-onlyicon.border-brown {
    border-color: #A08875;
}

.btn-onlyicon.border-brown svg {
    width: 14px;
    height: 14px;
}

.btn-onlyicon.border-brown svg path {
    fill: #A08875;
}

.btn-onlyicon.border-brown:hover {
    background-color: #A08875;
    border-color: #A08875;
}

.btn-onlyicon.border-brown:hover svg path {
    fill: #FFFFFF;
}

.btn[disabled] {
    background-color: #C7C7C7;
}

.btn[disabled] span {
    color: #FFFFFF;
}

.btn-save_normal {
    display: block;
}

.btn-save_active {
    display: none;
}

.btn-save.active {
    background-color: #A08875;
    border-color: #A08875;
}

.btn-save.active svg path {
    fill: #FFFFFF;
}

.btn-save.active span {
    color: #FFFFFF;
}

.btn-save.active .btn-save_normal {
    display: none;
}

.btn-save.active .btn-save_active {
    display: block;
}

.btn-water.active,
.btn-dropper.active {
    background-color: #A08875;
    border-color: #A08875;
}

.btn-water.active svg path,
.btn-dropper.active svg path {
    fill: #FFFFFF;
}

.btn-back {
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #A08875;
    border: 1px solid #A08875;
}

.btn-back svg {
    width: 24px;
    height: 24px;
}

.btn-back svg path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    fill: #FFFFFF;
}

.btn-back:hover {
    background-color: transparent;
}

.btn-back:hover svg path {
    fill: #A08875;
}

.btn-delete {
    font-size: 1em;
    color: #D76161;
}

.btn-delete svg {
    display: none;
    width: 16px;
    height: 16px;
}

.btn-delete:hover {
    color: #767691;
}

.btn-like.active {
    background-color: #A08875;
}

.btn-like.active svg path {
    fill: #FFFFFF;
}

.btn-like.active span {
    color: #FFFFFF;
}

.btn-sort {
    position: relative;
}

.btn-sort .sort-list {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    list-style: none;
    display: none;
    z-index: 10;
}

.btn-sort .sort-list li {
    white-space: nowrap;
    color: #595959;
    font-weight: normal;
    padding: 14px 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.btn-sort .sort-list li:hover {
    color: #A08875;
    font-weight: 700;
}

.btn-sort .sort-list li.active {
    background-color: rgba(160, 136, 117, 0.1);
    color: #A08875;
    font-weight: 700;
}

.btn-sort.active {
    background-color: #A08875;
}

.btn-sort.active svg path {
    fill: #FFFFFF;
}

.btn-sort.selected::after {
    display: block;
}

.btn-sort::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D76161;
    top: 1px;
    right: 0;
    display: none;
}

.btn-sm {
    padding: 0 12px;
    border-radius: 8px;
    min-height: inherit;
}

.btn-sm svg {
    width: 12px;
    height: 12px;
}

.btn-hide_active {
    display: none;
}

.btn-hide.active {
    background-color: #A08875;
}

.btn-hide.active svg path {
    fill: #FFFFFF;
}

.btn-hide.active span {
    color: #FFFFFF;
}

.btn-hide.active .btn-hide_active {
    display: block;
}

.btn-hide.active .btn-hide_normal {
    display: none;
}

@media screen and (max-width: 767px) {
    .btn-delete {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 1px solid #D76161;
    }

    .btn-delete span {
        display: none;
    }

    .btn-delete svg {
        display: block;
    }

    .btn-back {
        width: 36px;
        height: 36px;
    }

    .btn-back svg {
        width: 20px;
        height: 20px;
    }
}

.tag {
    padding: 4px 12px;
    border-radius: 100px;
    background-color: #FFFFFF;
    border: 1px solid #E2D7CE;
}

.tag.active {
    background-color: #A08875;
    border-color: #A08875;
    color: #FFFFFF;
}

.tag:hover {
    border-color: #A08875;
}

.search-common {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    background-color: rgba(160, 136, 117, 0.1);
    border-radius: 100px;
    padding: 0 20px;
}

.search-common input {
    width: calc(100% - 40px);
}

.search-common button {
    width: 40px;
    height: 40px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.search-common button svg {
    width: 18px;
    height: 18px;
}

.search-common button svg path {
    fill: #A08875;
}

.search-common--list {
    background-color: #A08875;
    padding: 0;
    margin-top: 16px;
    display: none;
}

.search-common--list input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-common--list input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-common--list input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-common--list input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-common--list button svg path {
    fill: #FFFFFF;
}

.side-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.side-popup_bg {
    background-color: rgba(0, 0, 0, 0.76);
    width: 100%;
    height: 100%;
}

.side-popup_main {
    position: absolute;
    max-width: 400px;
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #FFFFFF;
}

.side-popup_main_head {
    padding: 12px 20px;
    background-color: #A08875;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.side-popup_main_head h3 {
    color: #FFFFFF;
    margin-bottom: 4px;
    font-size: 1.5em;
    font-weight: 700;
}

.side-popup_main_head p {
    color: #FFFFFF;
}

.side-popup_main_title {
    width: calc(100% - 40px);
    padding-right: 16px;
}

.side-popup_main_body {
    height: calc(100vh - 88.8px);
    width: 100%;
    overflow-y: auto;
    padding: 32px 24px;
}

.side-popup_close {
    width: 40px;
    height: 40px;
}

.side-popup_close svg {
    width: 20px;
    height: 20px;
}

.side-popup_close:hover {
    background-color: #FFFFFF;
}

.side-popup_close:hover svg path {
    stroke: #A08875 !important;
}

.filter_delete {
    color: #C7C7C7;
}

.filter_main_item {
    border-bottom: 1px solid #C7C7C7;
}

.filter_main_name {
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filter_main_name h4 {
    font-size: 1.125em;
    margin: 0;
    font-weight: 700;
    color: #595959;
}

.filter_main_clean {
    color: #767691;
    display: none;
}

.filter_main_clean:hover {
    color: #A08875;
}

.filter_main_num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #A08875;
    color: #FFFFFF;
    font-weight: 700;
    display: none;
}

.filter_main_content {
    padding: 16px;
    background-color: rgba(160, 136, 117, 0.11);
    display: none;
}

.filter_main_content .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.filter_main_arrow {
    padding: 0;
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.filter_main_arrow.active {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.chemical {
    display: block !important;
}

.chemical_selected_item {
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #C7C7C7;
}

.chemical_selected_name {
    color: #595959;
    font-weight: 500;
    margin: 0;
    font-size: 1em;
}

.chemical_selected_range {
    font-weight: 700;
    color: #595959;
    font-family: "Montserrat", sans-serif;
}

.chemical_selected_delete {
    width: 16px;
    height: 16px;
    padding: 0;
}

.chemical_selected_delete svg {
    width: 16px;
    height: 16px;
}

.chemical_selected_delete svg path {
    stroke: #595959;
}

.chemical_list {
    margin-top: 12px;
}

.chemical_list_main {
    border-bottom: 1px solid #C7C7C7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.chemical_list_main-title {
    padding: 12px 15px;
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.chemical_list_main-title h6 {
    font-size: 1em;
    font-weight: 700;
    margin: 0;
    color: #595959;
}

.chemical_list_main-title-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 16px - 8px);
    gap: 4px;
}

.chemical_list_main-percent {
    font-size: 1em;
    color: #ACACAC;
}

.chemical_list_main-content {
    display: none;
}

.chemical_list_main-content li {
    padding: 8px 12px 8px 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.chemical_list_main-content li span {
    color: #ACACAC;
    font-size: 1em;
}

.chemical_list_main.active {
    background-color: #FFFFFF;
    border: 1px solid #C7C7C7;
}

.chemical_list_second {
    padding-left: 62px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.chemical_list_second-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px;
    cursor: pointer;
}

.chemical_list_second-title .chemical_list_circle {
    width: 14px;
    height: 14px;
}

.chemical_list_second-title h6 {
    color: #595959;
    margin: 0;
    font-size: 1em;
    font-weight: normal;
}

.chemical_list_second-title img {
    width: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.chemical_list_second-title.active img:not(.icon-file) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.chemical_list_second-content {
    display: none;
    padding: 12px 20px;
}

.chemical_list_second-content .irs-grid-pol,
.chemical_list_second-content .irs-grid-text {
    display: none;
}

.chemical_list_second-content .irs-bar {
    background-color: #A08875;
}

.chemical_list_second-content .irs-line {
    bottom: rgba(160, 136, 117, 0.29);
}

.chemical_list_second-content .irs-bar,
.chemical_list_second-content .irs-line {
    height: 4px !important;
}

.chemical_list_second-content .irs-handle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #995C00;
    top: 19px !important;
}

.chemical_list_second-content .irs-handle i {
    display: none !important;
}

.chemical_list_second-content .irs-from,
.chemical_list_second-content .irs-to,
.chemical_list_second-content .irs-single {
    background-color: transparent;
    font-size: 1em;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #595959;
}

.chemical_list_second-content .irs-from::before,
.chemical_list_second-content .irs-to::before,
.chemical_list_second-content .irs-single::before {
    display: none;
}

.chemical_list_second-content .irs-min,
.chemical_list_second-content .irs-max {
    display: none;
}

.chemical_list_second.active {
    background-color: #F5F2F0;
}

.chemical_list_icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.chemical_list_icon .bar {
    width: 10px;
    height: 1.5px !important;
    background-color: #A08875;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.chemical_list_icon .bar.horizontal {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.chemical_list_icon .bar.vertical {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.chemical_list_icon.active .bar.vertical {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.chemical_list_circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.chemical_list_circle.mix {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.chemical_list_circle.mix .inner-circle {
    width: 50%;
    height: 100%;
}

.chemical_list_circle.has-border {
    border: 1px solid;
}

.chemical_list_confirm {
    padding: 6px 12px;
    border-radius: 100px;
    background-color: #A08875;
    font-size: 12px;
    color: #FFFFFF;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin-left: auto;
}

.chemical_list_confirm:hover {
    background-color: #767691;
}

.chemical_list.detail-page .chemical_list_main-title {
    padding: 8px;
}

.chemical_list.detail-page .chemical_list_main.active {
    border: 0;
}

.chemical_list.detail-page .chemical_list_main.active .chemical_list_main-title-text .chemical_list_main-percent {
    color: #595959;
    font-weight: 700;
}

.chemical_list.detail-page .chemical_list_second {
    padding-left: 28px;
}

.chemical_list.detail-page .chemical_list_second-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.chemical_list.detail-page .chemical_list_second-content {
    padding: 0;
}

.chemical_list.detail-page .chemical_list_second.active {
    background-color: transparent;
}

.modal-dialog {
    max-width: 700px !important;
    width: 100%;
}

.modal-content {
    border-radius: 0 !important;
    border: 0 !important;
}

.modal-body {
    padding: 40px 40px 20px;
}

.modal-header {
    background-color: #A08875;
    padding: 16px 24px;
    background-color: #A08875;
    border-radius: 0 !important;
}

.modal-title {
    height: auto;
    width: auto;
    text-align: left;
    color: #FFFFFF;
    font-size: 1.5em;
    font-weight: 600;
    margin: 0;
}

.modal-title::after {
    display: none;
}

.modal-close:hover svg path {
    stroke: #A08875;
}

.modal-footer {
    padding: 20px 40px 40px !important;
    border: 0 !important;
}

.modal-footer .btn {
    padding: 10px 16px;
}

.modal-footer .btn-brown:hover {
    color: #FFFFFF;
}

.modal.show {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100000 !important;
}

.modal.show.top {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100001 !important;
}

@media screen and (max-width: 767px) {
    .modal-title {
        font-size: 1.25em;
    }

    .modal-header {
        padding: 16px 24px;
    }

    .modal-dialog {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }

    .modal-body {
        padding: 20px !important;
    }

    .modal-footer {
        padding: 20px !important;
    }
}

.input {
    background-color: rgba(160, 136, 117, 0.1) !important;
    border-radius: 4px;
    border: 1px solid #C7C7C7;
    padding: 16px 15px;
}

.input::-webkit-input-placeholder {
    color: #ACACAC;
}

.input:-ms-input-placeholder {
    color: #ACACAC;
}

.input::-ms-input-placeholder {
    color: #ACACAC;
}

.input::placeholder {
    color: #ACACAC;
}

.essay-item {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #C7C7C7;
}

.essay-item h4 {
    color: #595959;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1em;
}

.essay-item p {
    color: #ACACAC;
    margin-bottom: 12px;
    font-size: 1em;
    line-height: 1.5;
}

.essay-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.essay-item a span {
    color: #A08875;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.essay-item a svg path {
    fill: #A08875;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.essay-item a:hover span {
    color: #767691;
}

.essay-item a:hover svg path {
    fill: #767691;
}

.essay-item:last-child {
    margin-bottom: 0;
}

.designer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.designer_pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
}

.designer_pic>img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
}

.designer p {
    color: #595959;
    margin: 0;
    font-size: 1em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.designer:hover p {
    color: #A08875;
}

.detail-oil-item {
    text-align: center;
    margin-bottom: 30px;
    display: block;
}

.detail-oil-item canvas {
    width: 180px !important;
    height: 180px !important;
    margin: 0 auto 20px;
}

.detail-oil-item h3 {
    font-size: 1.125em;
    font-weight: normal;
    color: #595959;
    margin-bottom: 4px;
    line-height: 1.5;
}

.detail-oil-item p {
    color: #A08875;
    font-weight: 300;
    font-size: 1em;
    margin: 0;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .detail-oil-item canvas {
        width: 130px !important;
        height: 130px !important;
    }
}

.list-title {
    height: auto;
    margin: 0;
    font-size: 2.25em;
    font-weight: 700;
    text-align: left;
    color: #595959;
}

.list-title::after {
    display: none;
}

@media screen and (max-width: 575px) {
    .list-title {
        font-size: 1.75em;
    }
}

.data_item {
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.data_item_num {
    font-size: 4em;
    font-weight: 900;
    color: #A08875;
    padding-bottom: 5px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.5;
}

.data_item_num::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 3px;
    background-color: #A08875;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.data_item_text {
    text-align: center;
    margin: 0;
    color: #ACACAC;
    font-size: 1em;
    line-height: 1.5;
}

@media screen and (max-width: 575px) {
    .data_item {
        padding: 8px;
    }

    .data_item_num {
        font-size: 1.875em;
        margin-bottom: 4px;
        padding-bottom: 0;
    }

    .data_item_num::after {
        display: none;
    }

    .data_item_text {
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    .lang-en .modal-header {
        padding: 12px;
    }
}

.home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100vh - 60px);
}

.home-bigchart {
    width: 45%;
    background-color: #767691;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-bigchart_close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 28px;
    right: 35px;
}

.home-bigchart_close svg {
    width: 22px;
    height: 22px;
}

.home-bigchart_close svg path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-bigchart_close:hover {
    background-color: #FFFFFF;
}

.home-bigchart_close:hover svg path {
    stroke: #767691;
}

.home-bigchart_main {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: center;
    align-content: center;
    height: 100%;
    text-align: center;
}

.home-bigchart_main_chart {
    width: 350px !important;
    margin: 0 auto 48px;
}

.home-bigchart_main h2 {
    font-size: 2em;
    color: #FFFFFF;
    font-weight: 700;
    padding-bottom: 8px;
    margin-bottom: 20px;
    position: relative;
}

.home-bigchart_main h2::after {
    position: absolute;
    content: "";
    width: 128px;
    height: 2px;
    background-color: #FFFFFF;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.home-bigchart_main h3 {
    font-weight: normal;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.home-bigchart_main h4 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
    font-size: 1em;
}

.home-bigchart_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    gap: 8px;
    width: 100%;
    bottom: 48px;
}

.home-bigchart .btn-more {
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    position: absolute;
    right: 35px;
    bottom: 42px;
}

.home-bigchart .btn-more svg path {
    fill: #A08875;
}

.home-bigchart .btn-more:hover {
    background-color: transparent;
}

.home-bigchart .btn-more:hover svg path {
    fill: #FFFFFF;
}

.home-list {
    width: 55%;
    padding-top: 32px;
    padding-left: 56px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-list_head_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 56px;
    margin-bottom: 20px;
}

.home-list_head_title h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    line-height: 1;
    height: auto;
    text-align: left;
}

.home-list_head_title h1::after {
    display: none;
}

.home-list_save {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 12px;
    padding: 4px 8px;
    background-color: #FFFFFF;
    border-radius: 100px;
    border: 1px solid #A08875;
}

.home-list_save li {
    font-weight: 700;
    color: #A08875;
    padding: 0 8px;
    position: relative;
}

.home-list_save li::after {
    position: absolute;
    content: "";
    height: 19px;
    width: 1px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #A08875;
}

.home-list_save li:first-child {
    padding-left: 0;
}

.home-list_save li:last-child {
    padding-right: 0;
}

.home-list_save li:last-child::after {
    display: none;
}

.home-list_func {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
}

.home-list_func_icon {
    background-color: #A08875;
    border-radius: 100px 0 0 100px;
    padding: 12px 40px 12px 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.home-list_func_icon .search-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 100px;
    width: 250px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-list_func_icon .search-bar input {
    width: calc(100% - 64px);
    color: #FFFFFF;
}

.home-list_func_icon .search-bar input::-webkit-input-placeholder {
    color: #FFFFFF;
}

.home-list_func_icon .search-bar input:-ms-input-placeholder {
    color: #FFFFFF;
}

.home-list_func_icon .search-bar input::-ms-input-placeholder {
    color: #FFFFFF;
}

.home-list_func_icon .search-bar input::placeholder {
    color: #FFFFFF;
}

.home-list_func_icon .search-bar_close {
    width: 32px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-list_func_icon .search-bar_close img {
    width: 14px;
}

.home-list_func_icon .search-bar-wrap {
    width: 34px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-list_func_icon .search-bar-wrap.expand {
    width: 250px;
}

.home-list_func_icon .search-bar-wrap.expand .search-bar {
    border-color: #FFFFFF;
}

.home-list_func_icon .search-bar-wrap.expand .home-list_func_search {
    border-color: transparent;
}

.home-list_func_num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #FFFFFF;
    font-weight: 700;
    color: #A08875;
    display: none;
}

.home-list_func_cancel {
    color: #767691;
    display: none;
}

.home-list_func_cancel:hover {
    color: #A08875;
}

.home-list_func .btn-search-m_active {
    display: none;
}

.home-list_func .btn-search-m.active {
    background-color: #A08875;
}

.home-list_func .btn-search-m.active .btn-search-m_default {
    display: none;
}

.home-list_func .btn-search-m.active .btn-search-m_active {
    display: block;
}

.home-list_item {
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid #A08875;
    padding: 16px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.home-list_item h2 {
    font-size: 1.125em;
    font-weight: 700;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 6px;
    border-bottom: 2px solid #A08875;
    margin-bottom: 8px;
    color: #A08875;
}

.home-list_item h3 {
    color: #595959;
    font-size: 1em;
    margin-bottom: 8px;
    font-weight: normal;
}

.home-list_item h4 {
    font-size: 1em;
    margin-bottom: 16px;
    font-weight: normal;
    color: #ACACAC;
}

.home-list_item_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px;
}

.home-list_item.active {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    border-color: #FFFFFF;
}

.home-list_item:hover {
    background-color: #FFFFFF;
}

.home-list_main {
    height: calc(100vh - 32px - 57px - 80px);
    padding-bottom: 24px;
}

.home-list_main_swiper {
    height: 100%;
}

.home-list_main_swiper .swiper-slide {
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
}

.home-list_main_swiper .swiper-wrapper {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    padding-right: 30px;
}

.home-list_main_swiper .swiper-button-prev {
    left: inherit;
    right: 100px;
}

.home-list_main_swiper .swiper-button-next {
    right: 40px;
}

.home-list_main_swiper .swiper-button-next,
.home-list_main_swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #A08875;
    bottom: 40px;
    margin: 0;
    top: inherit;
    z-index: 20;
}

.home-list_main_swiper .swiper-button-next svg,
.home-list_main_swiper .swiper-button-prev svg {
    width: 24px;
    height: 24px;
}

.home-list_main_swiper .swiper-button-next svg path,
.home-list_main_swiper .swiper-button-prev svg path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    stroke: #A08875;
}

.home-list_main_swiper .swiper-button-next::after,
.home-list_main_swiper .swiper-button-prev::after {
    display: none;
}

.home-list_main_swiper .swiper-button-next:hover,
.home-list_main_swiper .swiper-button-prev:hover {
    background-color: #A08875;
}

.home-list_main_swiper .swiper-button-next:hover svg path,
.home-list_main_swiper .swiper-button-prev:hover svg path {
    stroke: #FFFFFF;
}

.home-list_main_swiper .swiper-pagination {
    bottom: 40px;
}

.home-list_main_swiper .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    border: 1px solid #A08875;
    opacity: 1;
    background-color: transparent !important;
}

.home-list_main_swiper .swiper-pagination-bullet-active {
    background-color: #A08875 !important;
}

.home.onlylist .home-bigchart {
    width: 0;
    overflow: hidden;
}

.home.onlylist .home-list {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .home {
        height: auto;
    }

    .home-bigchart {
        position: fixed;
        width: 100%;
        padding: 36px 20px;
        left: 0;
        bottom: 0;
        border-radius: 28px 28px 0 0;
        z-index: 10;
    }

    .home-bigchart_btn {
        display: none;
    }

    .home-bigchart.hide-chart {
        bottom: -100%;
    }

    .home-list {
        width: 100%;
        padding: 20px 16px;
    }

    .home-list_main {
        height: auto;
    }

    .home-list_main_swiper {
        height: auto;
    }

    .home-list_main_swiper .swiper-wrapper {
        width: 100% !important;
        gap: 30px;
    }

    .home-list_main_swiper .swiper-slide {
        margin: 0 !important;
        width: calc((100% - 30px) / 2) !important;
    }

    .home-list_main_swiper .swiper-button-next,
    .home-list_main_swiper .swiper-button-prev,
    .home-list_main_swiper .swiper-pagination {
        display: none;
    }

    .home-list_func_icon {
        padding: 0;
        background-color: transparent;
    }

    .home-list_func_icon .btn {
        border-color: #A08875;
    }

    .home-list_func_icon .btn svg path {
        fill: #A08875;
    }

    .home-list_head_title {
        padding-right: 0;
    }

    .home-list_head_title h1 {
        font-size: 28px;
    }

    .home-list_save {
        margin-left: 8px;
        border-radius: 8px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }

    .home-list_save li {
        text-align: center;
        padding: 0;
    }

    .home-list_save li::after {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .home-list_func {
        display: block;
        position: relative;
    }

    .home-list_func_icon {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 16px;
    }

    .home-list_func_cancel {
        position: absolute;
        bottom: 10px;
        left: 0;
    }

    .home-list_func_num {
        width: 20px;
        height: 20px;
        font-size: 0.75em;
    }

    .home-list_main_swiper .swiper-wrapper {
        -webkit-column-gap: 12px;
        column-gap: 12px;
        row-gap: 20px;
    }

    .home-list_main_swiper .swiper-slide {
        width: calc((100% - 12px) / 2) !important;
    }

    .home-list_item h2 {
        font-size: 1em;
    }

    .home-list_item h3 {
        margin-bottom: 16px;
    }

    .home-list_item h4 {
        display: none;
    }

    .home-list_item_btn {
        gap: 10px;
    }

    .home-list_item_btn .btn {
        width: 24px;
        height: 24px;
    }

    .home-bigchart_main_chart {
        width: 200px !important;
        height: 200px !important;
        margin-bottom: 16px;
    }

    .home-bigchart_main h2 {
        font-size: 1.25em;
        margin-bottom: 8px;
    }

    .home-bigchart_main h3 {
        margin-bottom: 8px;
    }

    .home-bigchart_close {
        top: 20px;
        right: 20px;
    }

    .home-bigchart .btn-more {
        right: 20px;
        bottom: 20px;
    }
}

.oil-item {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #C7C7C7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.oil-item_text h2 {
    font-size: 1em;
    color: #595959;
    margin-bottom: 5px;
}

.oil-item_text h3 {
    color: #ACACAC;
    font-size: 1em;
    font-weight: 300;
    margin: 0;
}

.oil-item button {
    width: 16px;
    height: 16px;
    padding: 0;
}

.oil-item button svg {
    width: 16px;
    height: 16px;
}

.oil-item button svg path {
    stroke: #595959;
}

.oil-item .drop-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.oil-item .drop-num button {
    width: 32px;
    height: 32px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(160, 136, 117, 0.1);
}

.oil-item .drop-num button img {
    width: 20px;
}

.oil-item .drop-num button:hover {
    background-color: rgba(160, 136, 117, 0.3);
}

.oil-item .drop-num p {
    text-align: center;
    width: 40px;
    color: #595959;
    font-weight: 500;
    margin: 0;
}

.recipe-form_item {
    margin-bottom: 24px;
}

.recipe-form_item label {
    color: #595959;
    font-weight: 500;
    margin-bottom: 4px;
}

.recipe-form_item input {
    width: 100%;
}

.recipe-form_item select {
    width: 100%;
    background-image: url(../img/chevron-down.svg);
    background-size: 16px;
    background-position: calc(100% - 15px) center;
    background-repeat: no-repeat;
}

.recipe-form_item .input {
    height: auto;
}

.recipe-form_item.textarea {
    padding: 0 !important;
}

.recipe-form_item.textarea textarea {
    width: 100%;
    height: 160px;
    margin-bottom: 4px;
}

.recipe-form_item.textarea p {
    text-align: right;
    color: #ACACAC;
    line-height: 1;
}

.recipe-form_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.recipe-form_row_input {
    width: 55%;
    padding-right: 40px;
}

.recipe-form_row_input span {
    color: #ACACAC;
    font-size: 1em;
}

.recipe-form_row_chart {
    width: 45%;
}

.recipe-form_row_chart #modal-chart {
    width: 100% !important;
}

.recipe-form_row .row {
    margin-left: -10px;
    margin-right: -10px;
}

.recipe-form_row .row>div {
    padding-left: 10px;
    padding-right: 10px;
}

.recipe-form_upload {
    width: 100%;
    padding-bottom: 48%;
    position: relative;
    background-color: rgba(160, 136, 117, 0.1) !important;
    border-radius: 4px;
    border: 1px solid #C7C7C7;
}

.recipe-form_upload input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.recipe-form_upload img {
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.recipe-list_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.recipe-list_head_delete {
    color: #767691;
}

.recipe-list_head_delete:hover {
    color: #A08875;
}

.recipe-delete {
    color: #D76161;
}

.recipe-delete:hover {
    color: #A08875;
}

@media screen and (max-width: 767px) {
    .recipe-form {
        margin-bottom: 20px;
    }

    .recipe-form_row {
        margin: 0;
    }

    .recipe-form_row_chart {
        width: 100%;
        margin-bottom: 40px;
    }

    .recipe-form_row_chart #modal-chart-m {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto;
    }

    .recipe-form_row_input {
        width: 100%;
        padding: 0;
    }

    .recipe-form_item {
        margin-bottom: 20px;
    }

    .recipe-list_head {
        display: block;
    }

    .recipe-list_head_delete {
        margin-bottom: 16px;
    }

    .recipe-list_content .oil-item {
        position: relative;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .recipe-list_content .oil-item_text {
        padding-right: 22px;
    }

    .recipe-list_content .oil-item>div {
        width: 100%;
    }

    .recipe-list_content .oil-item_func {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 16px;
    }

    .recipe-list_content .oil-item_delete {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

.keyword-item {
    padding: 20px 0;
    border-bottom: 1px solid #C7C7C7;
}

.keyword-item h2 {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 12px;
}

.keyword-item_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.keyword-item:first-child {
    padding-top: 0;
}

.keyword-item:last-child {
    border: 0;
}

.keyword-delete {
    color: #ACACAC;
}

.create-list {
    margin-top: 40px;
}

.create-list_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #C7C7C7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.create-list_item.active {
    background-color: rgba(160, 136, 117, 0.1);
}

.create-list_chart {
    width: 100px !important;
    height: 100px !important;
}

.create-list_text {
    width: calc(100% - 100px);
    padding-left: 24px;
}

.create-list_text h2 {
    font-size: 1.25em;
    color: #A08875;
    font-weight: 500;
    padding-bottom: 6px;
    margin-bottom: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 2px solid #A08875;
}

.create-list_text p {
    color: #595959;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .create-list_item {
        padding-left: 0;
        padding-right: 0;
    }
}

.lang-en .home-list_head_title h1 {
    max-width: 250px !important;
}

.lang-en .create-list_text h2 {
    display: none;
}

.lang-en .create-list_text p {
    color: #A08875;
    font-weight: 700;
    line-height: 1.5;
}

.lang-en .oil-item_text h2 {
    display: none;
}

.lang-en .oil-item_text h3 {
    font-weight: 700;
    color: #595959;
}

.lang-en .home-list_item h2 {
    display: none;
}

.lang-en .home-list_item h3 {
    color: #A08875;
    font-weight: 700;
}

.lang-en .home-bigchart_main h2 {
    display: none;
}

.lang-en .home-bigchart_main h3 {
    color: #fff;
    font-size: 1.5em;
}

@media screen and (max-width: 991px) {
    .lang-en .home-list_head_title h1 {
        max-width: 200px !important;
    }

    .lang-en .home-list_func .btn-brown img {
        display: none;
    }
}

.detail-top {
    background-color: rgba(255, 255, 255, 0.7);
}

.detail-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 24px;
    padding-bottom: 24px;
}

.detail-head_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.detail-head_func {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.detail-head h1 {
    margin: 0;
    font-size: 2.25em;
    font-weight: 700;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    line-height: 1.5;
    white-space: nowrap;
}

.detail-head h1 input {
    padding: 8px;
    border-bottom: 1px solid #595959;
    font-size: 1em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #595959;
}

.detail-head h1::after {
    display: none;
}

.detail-head .btn {
    padding: 8px 16px;
}

.detail-tab_nav {
    position: relative;
}

.detail-tab_nav .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    border: 0;
}

.detail-tab_nav .nav-tabs .nav-link {
    border-radius: 0;
    border: 0;
    padding: 0 0 4px;
    border-bottom: 2px solid transparent;
    color: #595959;
    background-color: transparent;
}

.detail-tab_nav .nav-tabs .nav-link:hover {
    color: #A08875;
}

.detail-tab_nav .nav-tabs .nav-link.active {
    color: #A08875;
    font-weight: 700;
    border-color: #A08875;
}

.detail-tab_nav_active {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid #A08875;
    background-color: #FFFFFF;
    display: none;
    width: 100%;
}

.detail-tab_nav_active p {
    margin: 0;
    font-weight: 700;
    color: #595959;
    width: calc(100% - 20px);
    padding-right: 16px;
}

.detail-tab_nav_active img {
    width: 20px;
}

@media screen and (max-width: 991px) {
    .detail-head {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 20px;
    }

    .detail-head h1 {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 12px;
        white-space: wrap;
    }

    .detail-head h1 input {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
        margin: 0;
    }

    .detail-head_title h1 {
        margin: 0;
    }

    .detail-head_func {
        gap: 12px;
    }

    .detail-tab_nav {
        max-width: 350px;
        width: 100%;
    }

    .detail-tab_nav_active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .detail-tab_nav .nav-tabs {
        position: absolute;
        width: 100%;
        padding: 20px;
        background-color: #FFFFFF;
        border-radius: 12px;
        border: 1px solid #A08875;
        z-index: 10;
        top: calc(100% + 4px);
        left: 0;
        display: none;
    }

    .detail-tab_nav .nav-tabs .nav-link {
        margin-bottom: 12px;
        width: 100%;
    }

    .detail-tab_nav .nav-tabs .nav-link.active {
        border: 0;
    }

    .detail-tab_nav .nav-tabs .nav-link:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .detail-head h1 {
        font-size: 1.75em;
    }

    .detail-head_func .btn:not(.btn-save) {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: transparent;
        padding: 0;
        min-height: inherit;
    }

    .detail-head_func .btn:not(.btn-save) span {
        display: none;
    }

    .detail-head_func .btn:not(.btn-save) svg {
        display: block;
    }

    .detail-head_func .btn:not(.btn-save) svg path {
        fill: #A08875;
    }
}

.chart_triangle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none;
}

.chart_lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.chart_lines .line {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(160, 136, 117, 0.1);
}

.chart_lines .line-vertical {
    width: 1px;
    height: 100%;
}

.chart_lines .line-horizontal {
    width: 100%;
    height: 1px;
}

.chart_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.chart_btn .btn {
    width: 40px;
    height: 40px;
    border-color: #A08875;
}

.chart_btn .btn svg path {
    fill: #A08875;
}

.chart_btn .btn.active {
    background-color: #A08875;
}

.chart_btn .btn.active svg path {
    fill: #FFFFFF;
}

.compare {
    overflow: hidden;
}

.compare-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.compare-tab_chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
}

.compare-tab_chart #compare-swiper-prev,
.compare-tab_chart #compare-swiper-next {
    display: none;
    border-color: #A08875;
}

.compare-tab_chart #compare-swiper-prev svg path,
.compare-tab_chart #compare-swiper-next svg path {
    fill: #A08875;
}

.compare-tab-content {
    padding: 20px 0 25px;
}

.compare-tab-content .swiper-slide {
    border-right: 1px solid #C7C7C7;
    padding: 0 20px;
    height: auto;
}

.compare-tab-content .swiper-slide:last-child {
    border: 0;
}

.compare-chart {
    padding: 30px 0;
}

.compare-chart_content {
    margin: 0 auto 20px;
    position: relative;
    width: 70%;
    padding-bottom: 70%;
}

.compare-chart_content canvas {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: contain;
    object-fit: contain;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.compare-chart_swiper {
    text-align: center;
}

.compare-chart_swiper h2 {
    color: #595959;
    font-size: 1.125em;
    font-weight: normal;
    margin-bottom: 4px;
}

.compare-chart_swiper h3 {
    font-size: 1em;
    color: #A08875;
    font-weight: normal;
    margin: 0;
}

.compare-chart_swiper .swiper-slide:hover .compare-chart_delete {
    opacity: 1;
}

.compare-chart_delete {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(160, 136, 117, 0.1);
    width: 20px;
    height: 20px;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.compare-chart_delete svg {
    width: 12px;
    height: 12px;
}

.compare-chart_delete svg path {
    stroke: #A08875;
}

.compare-chart_delete:hover {
    background-color: #767691;
}

.compare-chart_delete:hover svg path {
    stroke: #FFFFFF;
}

@media screen and (max-width: 991px) {
    .compare-chart_delete {
        opacity: 1;
        right: 12px;
    }
}

@media screen and (max-width: 767px) {
    .compare-tab {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .compare-tab_nav {
        width: 100%;
        max-width: inherit;
    }

    .compare-tab_chart {
        width: 100%;
    }

    .compare-tab_chart #compare-swiper-prev,
    .compare-tab_chart #compare-swiper-next {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .compare-tab-content .swiper-slide {
        padding: 0 12px;
    }

    .compare-chart_swiper h2 {
        font-size: 1em;
    }
}

.info-item {
    margin-bottom: 16px;
}

.info-item_title {
    font-size: 1em;
    color: #A08875;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item_content {
    margin: 0;
    font-size: 1em;
    color: #595959;
    line-height: 1.3;
}

.tag-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-wrap li {
    padding: 4px 8px;
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #A08875;
    font-size: 1em;
    color: #595959;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.tag-wrap li .tag-percent {
    padding: 0 4px;
    border-radius: 8px;
    background-color: #A08875;
    color: #FFFFFF;
    font-weight: 300;
}

.tag-wrap-property li {
    padding: 4px;
}

.tag-wrap-info li {
    padding: 4px;
    border-color: #E2D7CE;
}

.analyze {
    overflow: hidden;
}

.oil-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 40px;
}

.oil-head_chart {
    width: 350px;
}

.oil-head_chart canvas {
    width: 100%;
}

.oil-head_content {
    width: calc(100% - 350px);
    padding-left: 50px;
}

.oil-head_title {
    padding-bottom: 16px;
    border-bottom: 1px solid #C7C7C7;
    margin-bottom: 30px;
}

.oil-head_title h1 {
    width: 100%;
    margin: 0 0 8px;
    text-align: left;
    font-size: 1.5em;
    font-weight: 700;
    color: #A08875;
    height: auto;
}

.oil-head_title h1::after {
    display: none;
}

.oil-head_title h2 {
    font-weight: normal;
    color: #595959;
    font-size: 1em;
    margin: 0;
}

.oil-head .detail-tab_nav,
.oil-head .tab-content {
    margin-bottom: 30px;
}

.oil-head_remark {
    color: #ACACAC;
    font-size: 1em;
    margin: 0;
}

.oil-head .info-item_title {
    color: #767691;
}

.oil-head .info-item_content {
    font-weight: 300;
}

.oil-head-formula {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.oil-head-formula .oil-head_chart {
    width: 250px;
}

.oil-head-formula .oil-head_content {
    width: calc(100% - 250px);
}

.oil-head-formula .oil-head_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.oil-head-formula .oil-head_title h1 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
}

.oil-head-formula .oil-head_pic {
    width: 250px;
    padding-bottom: calc(250px * 0.75);
    position: relative;
}

.oil-head-formula .oil-head_pic>img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
}

.oil-report {
    padding: 80px 0;
}

.oil-report_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.oil-report_chart {
    width: 350px;
}

.oil-report_chart .chart_btn {
    margin-top: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.oil-report_chart .chart_btn .btn {
    border-color: #A08875;
}

.oil-report_chart .chart_btn .btn svg path {
    fill: #A08875;
}

.oil-report_chart .chart_btn .btn.active svg path {
    fill: #FFFFFF;
}

.oil-report_chart_content {
    position: relative;
}

.oil-report_content {
    width: calc(100% - 350px);
    padding-left: 50px;
    padding-top: 40px;
}

.oil-report_content .detail-tab_nav {
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .oil-head {
        display: block;
    }

    .oil-head_chart {
        margin: 0 auto 24px;
    }

    .oil-head_content {
        width: 100%;
        padding: 0;
    }

    .oil-head_content .detail-tab_nav {
        max-width: inherit;
    }

    .oil-head-formula .oil-head_content {
        width: 100%;
    }

    .oil-report_main {
        display: block;
    }

    .oil-report_chart {
        margin: 0 auto;
    }

    .oil-report_chart .chart_btn {
        margin-top: 30px;
    }

    .oil-report_content {
        width: 100%;
        padding: 40px 0 0;
    }

    .oil-report_content .detail-tab_nav {
        max-width: inherit;
    }

    .oil-report_content .chemical_list {
        margin-top: 0;
    }
}

@media screen and (max-width: 450px) {
    .oil-head_chart {
        width: 250px;
    }

    .oil-report_chart {
        width: 250px;
    }
}

.detail-title {
    padding-bottom: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 40px;
    font-size: 2.25em;
    color: #A08875;
    border-bottom: 3px solid #A08875;
}

.formula-intro {
    padding: 40px 0;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .formula-intro {
        padding-top: 0;
    }
}

.formula-used {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.lang-en .compare-tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.lang-en .compare-chart_swiper h2 {
    display: none;
}

.lang-en .compare-chart_swiper h3 {
    color: #595959;
    font-weight: 700;
}

.lang-en .save-nav ul a span {
    font-size: 1em;
}

.lang-en .save-nav ul a svg {
    display: none;
}

.lang-en .save .header-lang {
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.lang-en .detail-oil-item h3 {
    display: none;
}

.lang-en .detail-oil-item p {
    color: #595959;
    font-weight: 700;
}

.lang-en .oil-head_title h1 {
    display: none;
}

.lang-en .oil-head_title h2 {
    color: #A08875;
    font-weight: 700;
    font-size: 1.25em;
}

.formula-list {
    padding: 60px 0;
}

.formula-list .data {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 32px;
    padding: 0 20px;
}

.formula-list .data .row {
    margin-left: -15px;
    margin-right: -15px;
}

.formula-list .data .row>div {
    padding-left: 15px;
    padding-right: 15px;
}

.formula-list_search {
    max-width: 700px;
    width: 100%;
    margin: 0 auto 52px;
    padding: 0 20px;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.formula-list_search .btn-onlyicon {
    width: 40px;
    height: 40px;
}

.formula-list_search .btn-onlyicon svg {
    width: 22px;
    height: 22px;
}

.formula-list_search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    width: calc(100% - 100px);
}

.formula-list_search form input {
    background-color: #FFFFFF !important;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #C7C7C7;
    font-size: 1em;
    color: #595959;
    width: calc(100% - 124px);
}

.formula-list_search form input::-webkit-input-placeholder {
    color: #ACACAC;
    font-size: 1em;
}

.formula-list_search form input:-ms-input-placeholder {
    color: #ACACAC;
    font-size: 1em;
}

.formula-list_search form input::-ms-input-placeholder {
    color: #ACACAC;
    font-size: 1em;
}

.formula-list_search form input::placeholder {
    color: #ACACAC;
    font-size: 1em;
}

.formula-list_main .row {
    margin-left: -20px;
    margin-right: -20px;
}

.formula-list_main .row>div {
    padding-left: 20px;
    padding-right: 20px;
}

.formula-list_head {
    max-width: 700px;
    width: 100%;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 32px;
}

@media screen and (max-width: 575px) {
    .formula-list {
        padding: 12px 0;
    }

    .formula-list_head {
        margin-bottom: 12px;
    }

    .formula-list .data {
        margin-bottom: 12px;
    }

    .formula-list .data .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .formula-list .data .row>div {
        padding-left: 6px;
        padding-right: 6px;
    }

    .formula-list_search {
        gap: 12px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        margin-bottom: 12px;
    }

    .formula-list_search form {
        width: 100%;
        display: block;
        position: relative;
    }

    .formula-list_search form input {
        width: calc(100% - 104px);
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        height: 40px;
    }

    .formula-list_search form .btn {
        width: 100%;
    }

    .formula-list_main .row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .formula-list_main .row>div {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.formula-item {
    margin-bottom: 60px;
    position: relative;
}

.formula-item_link {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid #C7C7C7;
}

.formula-item_pic {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 16px;
}

.formula-item_pic canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.formula-item_pic_inner {
    position: absolute;
    width: 100%;
    padding-bottom: 75%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.formula-item_pic_inner>img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
}

.formula-item_title {
    text-align: center;
    font-size: 1.25em;
    margin-bottom: 8px;
    font-weight: 700;
    color: #595959;
}

.formula-item_intro {
    text-align: center;
    color: #595959;
    font-size: 1em;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.formula-item .designer {
    margin-top: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.formula-item .designer_pic {
    width: 20px;
    height: 20px;
}

.formula-item_btns {
    padding-top: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.formula-item .btn-save {
    border-color: #A08875;
    position: absolute;
    top: 9%;
    left: 4%;
    z-index: 5;
    background-color: #FFFFFF;
}

.formula-item .btn-save svg path {
    fill: #A08875;
}

@media screen and (max-width: 575px) {
    .formula-item {
        margin-bottom: 16px;
    }

    .formula-item_link {
        padding-bottom: 8px;
    }

    .formula-item_pic {
        margin-bottom: 4px;
    }

    .formula-item_title {
        margin-bottom: 4px;
    }

    .formula-item .designer {
        margin-top: 8px;
    }

    .formula-item_btns {
        padding-top: 8px;
    }
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
}

.pagination_arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ACACAC;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagination_arrow svg {
    width: 24px;
    height: 24px;
}

.pagination_arrow svg path {
    fill: #ACACAC;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagination_arrow:hover {
    background-color: #A08875;
    border-color: #A08875;
}

.pagination_arrow:hover svg path {
    fill: #FFFFFF;
}

.pagination p {
    margin: 0;
}

.pagination p span {
    font-size: 1em;
    color: #595959;
    font-weight: 300;
}

.pagination p span.active {
    color: #A08875;
}

.page-designer {
    padding-bottom: 45px;
}

.page-designer_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 35px;
    padding-bottom: 40px;
    border-bottom: 1px solid #C7C7C7;
    gap: 24px;
    margin-bottom: 40px;
}

.page-designer_head .designer_pic {
    width: 126px;
    height: 126px;
}

.page-designer_head .data_item {
    width: 105px;
}

.page-designer_head .data_item_num {
    font-size: 2.5em;
}

.page-designer_head_text {
    width: calc(100% - 126px - 105px - 48px);
}

.page-designer_head_text h2 {
    color: #A08875;
    font-weight: 700;
    font-size: 1.25em;
    margin-bottom: 12px;
}

.page-designer_head_text p {
    margin: 0;
    color: #595959;
    font-size: 1em;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .page-designer_head {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .page-designer_head_text {
        width: 100%;
    }
}

.save {
    padding-bottom: 120px;
}

.save-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #A08875;
    color: #FFFFFF;
    font-weight: 700;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.save-nav {
    padding: 0 20px;
    margin-bottom: 40px;
}

.save-nav_active {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    background-color: #FFFFFF;
    border: 1px solid #A08875;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: none;
}

.save-nav_active_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.save-nav_active_title {
    font-weight: 700;
    margin: 0;
    color: #595959;
}

.save-nav_active img {
    width: 20px;
}

.save-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
}

.save-nav ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid #A08875;
    gap: 8px;
}

.save-nav ul a svg {
    width: 28px;
    height: 28px;
}

.save-nav ul a svg path {
    fill: #A08875;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.save-nav ul a span {
    color: #A08875;
    font-size: 1.25em;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.save-nav ul a.active,
.save-nav ul a:hover {
    background-color: #A08875;
}

.save-nav ul a.active svg path,
.save-nav ul a:hover svg path {
    fill: #FFFFFF;
}

.save-nav ul a.active span,
.save-nav ul a:hover span {
    color: #FFFFFF;
}

.save-nav ul a.active .save-num,
.save-nav ul a:hover .save-num {
    background-color: #FFFFFF;
    color: #A08875;
}

.save-compare {
    padding: 30px;
    background-color: #FFFFFF;
    border: 1px solid #A08875;
    margin-bottom: 40px;
}

.save-compare_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.save-compare_title h3 {
    font-size: 1.75em;
    font-weight: 700;
    color: #A08875;
    margin: 0;
}

.save-compare .detail-oil-item {
    margin: 0;
}

@media screen and (max-width: 991px) {
    .save-num {
        width: 20px;
        height: 20px;
    }

    .save-nav {
        position: relative;
        margin-bottom: 20px;
    }

    .save-nav_active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .save-nav ul {
        position: absolute;
        display: block;
        width: calc(100% - 40px);
        background-color: #FFFFFF;
        top: calc(100% + 4px);
        left: 20px;
        border-radius: 12px;
        border: 1px solid #A08875;
        overflow: hidden;
        display: none;
    }

    .save-nav ul a {
        border-radius: 0;
        border: 0;
        padding: 12px;
    }

    .save-nav ul a svg {
        width: 20px;
        height: 20px;
    }

    .save-nav ul a span {
        font-size: 1em;
    }
}

@media screen and (max-width: 575px) {
    .save-compare {
        padding: 20px 20px 0;
        margin-bottom: 20px;
    }

    .save-compare_title {
        margin-bottom: 20px;
    }

    .save-compare .detail-oil-item {
        margin-bottom: 20px;
    }
}
