@charset "utf-8";

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    background: #eef0f4;
}

body.view_2_body {
    min-width: 320px;
    background: #eef0f4;
    color: #17191e;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Pretendard",
        "Noto Sans KR",
        "Malgun Gothic",
        sans-serif;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.view_2_shell {
    --view-2-point: #3157d5;
    --view-2-hero: #3157d5;

    position: relative;
    width: 100%;
    max-width: 720px;
    min-height: 100vh;
    margin: 0 auto;
    background: #f6f7f9;
    box-shadow: 0 0 45px rgba(23, 30, 48, 0.11);
    overflow: hidden;
}

/* 상단 프로필 영역 */

.view_2_hero {
    position: relative;
    min-height: 470px;
    padding: 0 24px 94px;
    background: var(--view-2-hero);
    color: #ffffff;
    overflow: hidden;
}

.view_2_has_image .view_2_hero {
    background-image: var(--view-2-hero-image);
    background-position: var(--view-2-hero-position, center);
    background-repeat: no-repeat;
    background-size: cover;
}

.view_2_hero_shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(7, 10, 20, 0.12),
        rgba(7, 10, 20, 0.48)
    );
}

.view_2_topbar {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.view_2_brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    width: 105px;
    height: 42px;
}

.view_2_brand img {
    display: block;
    width: 105px;
    height: 32px;
    object-fit: contain;
    object-position: left center;
    filter: none;
}

.view_2_brand strong {
    font-size: 21px;
    font-weight: 900;
}

.view_2_brand span {
    font-size: 10px;
    opacity: 0.7;
}

.view_2_circle_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.13);
    color: #ffffff;
}

.view_2_top_actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.view_2_more_dots {
    flex-direction: column;
    gap: 3px;
}

.view_2_more_dots > span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

.view_2_circle_btn svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.view_2_more_menu {
    position: absolute;
    z-index: 110;
    top: 64px;
    right: 0;
    width: 174px;
    padding: 7px;
    border: 1px solid rgba(224, 227, 234, 0.95);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 13px 34px rgba(20, 27, 44, 0.2);
    color: #252932;
}

.view_2_more_menu[hidden] {
    display: none;
}

.view_2_more_menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 11px;
    border-radius: 10px;
    background: transparent;
    color: #343841;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
}

.view_2_menu_icon {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #f0f2f6;
    color: #555b66;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.view_2_more_menu button[aria-pressed="true"] {
    color: var(--view-2-point);
}

.view_2_more_menu button[aria-pressed="true"] .view_2_menu_icon {
    background: #eef2ff;
    color: var(--view-2-point);
}

.view_2_more_menu button:hover,
.view_2_more_menu button:focus {
    background: #f1f3f7;
    outline: none;
}

.view_2_more_menu button + button {
    border-top: 1px solid #eef0f3;
}

/* 프로필 정보 */

.view_2_identity {
    position: relative;
    z-index: 2;
    padding-top: 25px;
    text-align: center;
}

.view_2_avatar_wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 21px;
}

.view_2_avatar {
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.view_2_avatar_empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--view-2-point);
    font-size: 45px;
    font-weight: 800;
}

.view_2_verified {
    position: absolute;
    right: -3px;
    bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #20c47a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.view_2_company {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.85;
}

.view_2_identity h1 {
    margin: 0;
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: -1.5px;
}

.view_2_identity h1 small {
    margin-left: 5px;
    font-size: 15px;
    font-weight: 500;
}

.view_2_name_en {
    margin: 8px 0 0;
    font-size: 10px;
    letter-spacing: 0.17em;
    opacity: 0.6;
}

.view_2_slogan {
    max-width: 420px;
    margin: 19px auto 0;
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.94;
}

/* 빠른 메뉴 */

.view_2_quick {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: calc(100% - 40px);
    margin: -64px auto 0;
    padding: 18px 8px;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 13px 35px rgba(32, 41, 65, 0.12);
}

.view_2_quick a,
.view_2_quick button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #363941;
    font-size: 12px;
    font-weight: 700;
}

.view_2_quick b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 15px;
    background: #eef2ff;
    color: var(--view-2-point);
    font-size: 18px;
}

/* 콘텐츠 공통 */

.view_2_content {
    padding: 18px 20px 112px;
}

.view_2_section,
.view_2_event {
    margin-top: 14px;
    border: 1px solid #eceef2;
    border-radius: 23px;
    background: #ffffff;
    overflow: hidden;
}

.view_2_section {
    padding: 28px 24px;
}

.view_2_section_head {
    margin-bottom: 21px;
}

.view_2_section_head p {
    margin: 0 0 5px;
    color: var(--view-2-point);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.view_2_section_head h2 {
    margin: 0;
    font-size: 21px;
    letter-spacing: -0.8px;
}

.view_2_head_row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.view_2_head_row a {
    padding-bottom: 2px;
    color: #9297a0;
    font-size: 11px;
}

.view_2_intro {
    margin: 0;
    color: #50545d;
    font-size: 15px;
    line-height: 1.85;
}

/* 이벤트 배너 */

.view_2_event a {
    position: relative;
    display: block;
    background: linear-gradient(
        135deg,
        var(--view-2-point),
        #142452
    );
    color: #ffffff;
}

.view_2_event_image {
    display: block;
    width: 100%;
    height: auto;
}

.view_2_event_image_mobile {
    display: none;
}

.view_2_event picture {
    display: block;
    width: 100%;
}

.view_2_event picture img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.view_2_event_text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62),
        rgba(0, 0, 0, 0.05)
    );
}

.view_2_event_text em {
    margin-bottom: 6px;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.view_2_event_text strong {
    font-size: 20px;
    line-height: 1.4;
}

.view_2_event_text span {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.85;
}

/* 공지사항 */

.view_2_notice_list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #edf0f3;
    list-style: none;
}

.view_2_notice_list li {
    border-bottom: 1px solid #edf0f3;
}

.view_2_notice_list li:last-child {
    border-bottom: 0;
}

.view_2_notice_list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 15px 2px;
}

.view_2_notice_list strong {
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view_2_notice_list span {
    color: #a0a4ac;
    font-size: 10px;
}

/* 갤러리 2개씩 3줄 */

.view_2_gallery_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.view_2_gallery_item {
    position: relative;
    min-width: 0;
    padding: 0;
    border-radius: 15px;
    background: #edf0f4;
    overflow: hidden;
}

.view_2_gallery_item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.view_2_gallery_item:hover img {
    transform: scale(1.04);
}

.view_2_gallery_item span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 25px 11px 10px;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.72)
    );
    color: #ffffff;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
}

/* 숏폼 2개씩 3줄 */

.view_2_shorts_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
}

.view_2_short_item {
    display: block;
    min-width: 0;
}

.view_2_short_thumb {
    position: relative;
    display: block;
    border-radius: 15px;
    background: #edf0f4;
    overflow: hidden;
}

.view_2_short_thumb img {
    width: 100%;
    aspect-ratio: 9 / 14;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.view_2_short_item:hover .view_2_short_thumb img {
    transform: scale(1.04);
}

.view_2_short_thumb i {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    padding-left: 3px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 15px;
    font-style: normal;
}

.view_2_short_item > strong {
    display: block;
    padding: 9px 3px 0;
    font-size: 12px;
    line-height: 1.4;
}

/* 주소 및 지도 */

.view_2_address {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.view_2_address strong {
    min-width: 0;
    color: #333840;
    font-size: 13px;
    line-height: 1.6;
}

.view_2_address button {
    flex: none;
    padding: 7px 10px;
    border: 0;
    border-radius: 8px;
    background: #f0f2f6;
    color: #666b74;
    font-size: 10px;
    font-weight: 700;
}

/* 토큰 없는 지도 */

.view_2_map {
    position: relative;
    width: 100%;
    height: 260px;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    background: #e9edf2;
    overflow: hidden;
}

.view_2_map_iframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

/* 지도 버튼 */

.view_2_map_actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 14px;
}

.view_2_map_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 50px;
    margin: 0;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
}

.view_2_map_kakao {
    background: #ffdf00;
    color: #282200;
}

.view_2_map_google {
    border: 1px solid #dfe3e8;
    background: #ffffff;
    color: #353a42;
}

/* 운영시간 */

.view_2_hours {
    padding: 0;
}

.view_2_hours > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 21px 23px;
    background: #ffffff;
    color: #17191e;
    text-align: left;
}

.view_2_hours > button span {
    display: flex;
    align-items: center;
    gap: 14px;
}

.view_2_hours em {
    color: #8d929b;
    font-size: 12px;
    font-style: normal;
}

.view_2_hours strong {
    font-size: 14px;
}

.view_2_hours i {
    font-style: normal;
    transition: transform 0.2s ease;
}

.view_2_hours button[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.view_2_hours > div {
    padding: 0 23px 19px;
}

.view_2_hours > div p {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid #eeeeee;
    color: #777777;
    font-size: 12px;
}

/* 하단 */

.view_2_footer {
    padding: 42px 0 15px;
    color: #9a9fa8;
    text-align: center;
}

.view_2_footer strong {
    color: #737982;
    font-size: 16px;
}

.view_2_footer small {
    font-size: 9px;
}

.view_2_footer p {
    margin: 8px 0 10px;
    font-size: 11px;
}

.view_2_footer span {
    font-size: 10px;
}

.view_2_bottom_bar {
    position: fixed;
    z-index: 30;
    left: 50%;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    width: 100%;
    max-width: 720px;
    padding:
        11px
        20px
        calc(11px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    border-top: 1px solid #e4e6ea;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
}

.view_2_bottom_bar a,
.view_2_bottom_bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 800;
}

.view_2_bottom_bar a {
    background: var(--view-2-point);
    color: #ffffff;
}

.view_2_bottom_bar button {
    border: 1px solid #dfe2e7;
    background: #ffffff;
    color: #30343b;
}

/* 안내 메시지 */

.view_2_toast {
    position: fixed;
    z-index: 60;
    left: 50%;
    bottom: 92px;
    max-width: calc(100% - 40px);
    padding: 11px 17px;
    transform: translate(-50%, 20px);
    border-radius: 22px;
    background: rgba(20, 22, 27, 0.9);
    color: #ffffff;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
}

.view_2_toast.is_show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* 갤러리 확대 */

.view_2_lightbox {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 10, 15, 0.92);
}

.view_2_lightbox[hidden] {
    display: none;
}

.view_2_lightbox figure {
    width: 100%;
    max-width: 720px;
    margin: 0;
}

.view_2_lightbox img {
    width: 100%;
    max-height: 78vh;
    border-radius: 15px;
    object-fit: contain;
}

.view_2_lightbox figcaption {
    padding-top: 12px;
    color: #ffffff;
    text-align: center;
    font-size: 13px;
}

.view_2_lightbox_close {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 27px;
}

/* 잉샷 화면 내 플레이어 */

.view_2_short_item {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.view_2_shorts_player {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.88);
}

.view_2_shorts_player[hidden] {
    display: none;
}

.view_2_shorts_player_box {
    position: relative;
    width: min(100%, 430px);
    height: min(88vh, 764px);
    overflow: hidden;
    border-radius: 18px;
    background: #000000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.view_2_shorts_player_screen,
.view_2_shorts_player_screen > div,
.view_2_shorts_player_screen iframe {
    width: 100%;
    height: 100%;
}

.view_2_shorts_player_close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    font-size: 28px;
    line-height: 42px;
}

#view_2_like[aria-pressed="true"] b {
    background: var(--view-2-point);
    color: #ffffff;
}

#view_2_like[aria-pressed="true"] span {
    color: var(--view-2-point);
}

/* 태블릿 및 PC */

@media (min-width: 721px) {
    .view_2_shell {
        margin: 24px auto;
        border-radius: 30px;
    }

    .view_2_hero {
        border-radius: 30px 30px 0 0;
    }

    .view_2_bottom_bar {
        bottom:0;
        border: 1px solid #e4e6ea;
        border-radius: 22px;
        overflow: hidden;
    }
}

/* 모바일 */

@media (max-width: 720px) {
    .view_2_content {
        padding-right: 0;
        padding-left: 0;
    }

    .view_2_section,
    .view_2_event {
        width: 100%;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .view_2_event a,
    .view_2_event picture,
    .view_2_event picture img {
        border-radius: 0;
    }

    .view_2_event_image_pc {
        display: none;
    }

    .view_2_event_image_mobile {
        display: block;
    }

    .view_2_footer {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 420px) {
    .view_2_hero {
        min-height: 455px;
        padding-right: 19px;
        padding-left: 19px;
    }

    .view_2_avatar_wrap,
    .view_2_avatar {
        width: 110px;
        height: 110px;
    }

    .view_2_avatar {
        border-radius: 36px;
    }

    .view_2_identity h1 {
        font-size: 28px;
    }

    .view_2_quick {
        width: calc(100% - 28px);
    }

    .view_2_section {
        padding: 25px 20px;
    }

    .view_2_map {
        height: 220px;
    }

    .view_2_map_btn {
        height: 48px;
        font-size: 11px;
    }

    .view_2_bottom_bar {
        padding-right: 14px;
        padding-left: 14px;
    }
}

@media (max-width: 720px) {
    .view_2_shorts_player {
        padding: 0;
    }

    .view_2_shorts_player_box {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}



/* view_2.php 판매중인 상품 영역 */

.view_2_pro_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
}

.view_2_pro_item {
    min-width: 0;
}

.view_2_pro_link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.view_2_pro_image_box {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #edf0f2;
    border-radius: 17px;
    background: #f4f5f6;
}

.view_2_pro_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.view_2_pro_link:hover .view_2_pro_image {
    transform: scale(1.035);
}

.view_2_pro_badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 8px;
    background: var(--view-2-point);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.view_2_pro_no_image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f1f3f5, #e6e9ed);
    color: #a0a5ab;
}

.view_2_pro_no_image strong {
    font-size: 21px;
    font-weight: 900;
}

.view_2_pro_no_image span {
    margin-top: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.view_2_pro_content {
    padding: 12px 2px 0;
}

.view_2_pro_name {
    overflow: hidden;
    margin: 0;
    color: #202327;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view_2_pro_description {
    display: -webkit-box;
    overflow: hidden;
    min-height: 36px;
    margin: 5px 0 0;
    color: #8a8e94;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.025em;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.view_2_pro_price_area {
    margin-top: 10px;
}

.view_2_pro_original_price {
    display: block;
    margin-bottom: 2px;
    color: #adb1b6;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
}

.view_2_pro_sale_row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    min-width: 0;
}

.view_2_pro_discount {
    flex: 0 0 auto;
    color: #f04452;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.view_2_pro_sale_price {
    overflow: hidden;
    color: #202327;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.045em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 380px) {
    .view_2_pro_list {
        gap: 20px 9px;
    }

    .view_2_pro_name {
        font-size: 14px;
    }

    .view_2_pro_discount,
    .view_2_pro_sale_price {
        font-size: 15px;
    }
}

@media (min-width: 600px) {
    .view_2_pro_list {
        gap: 28px 16px;
    }

    .view_2_pro_image_box {
        border-radius: 20px;
    }

    .view_2_pro_name {
        font-size: 16px;
    }

    .view_2_pro_description {
        font-size: 13px;
    }

    .view_2_pro_discount,
    .view_2_pro_sale_price {
        font-size: 18px;
    }
}