@font-face {
    font-family: 'Noto Sans CJK KR';
    font-style: normal;
    font-weight: 100;
    src: url("/fonts/NotoSansKR-Light.woff2") format('woff2'),
    url("/fonts/NotoSansKR-Light.woff") format('woff'),
    url("/fonts/NotoSansKR-Light.otf") format('truetype')
}

@font-face {
    font-family: 'Noto Sans CJK KR';
    font-style: normal;
    font-weight: normal;
    src: url("/fonts/NotoSansKR-Regular.woff2") format('woff2'),
    url("/fonts/NotoSansKR-Regular.woff") format('woff'),
    url("/fonts/NotoSansKR-Regular.otf") format('truetype')
}


@font-face {
    font-family: 'Noto Sans CJK KR';
    font-style: normal;
    font-weight: 500;
    src: url("/fonts/NotoSansKR-Medium.woff2") format('woff2'),
    url("/fonts/NotoSansKR-Medium.woff") format('woff'),
    url("/fonts/NotoSansKR-Medium.otf") format('truetype')
}

@font-face {
    font-family: 'Noto Sans CJK KR';
    font-style: normal;
    font-weight: 600;
    src: url("/fonts/NotoSansKR-Bold.woff2") format('woff2'),
    url("/fonts/NotoSansKR-Bold.woff") format('woff'),
    url("/fonts/NotoSansKR-Bold.otf") format('truetype')
}

@font-face {
    font-family: 'Noto Sans CJK KR';
    font-style: normal;
    font-weight: 600;
    src: url("/fonts/NotoSansKR-Bold.woff2") format('woff2'),
    url("/fonts/NotoSansKR-Bold.woff") format('woff'),
    url("/fonts/NotoSansKR-Bold.otf") format('truetype')
}

@font-face {
    font-family: 'Noto Sans CJK KR';
    font-style: normal;
    font-weight: bold;
    src: url("/fonts/NotoSansKR-Bold.woff2") format('woff2'),
    url("/fonts/NotoSansKR-Bold.woff") format('woff'),
    url("/fonts/NotoSansKR-Bold.otf") format('truetype')
}

:root {
    --brownish-grey: #666666;
    --black: #222222;
    --orange: #FD6D0D;
    --inner-width: 1024px;
    --header-height: 70px;
    -webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust : none;  /* IE */
    -moz-text-size-adjust : none;  /* 파이어폭스 */
    -o-text-size-adjust : none;  /* 오페라 구버전 */
}

*, *::before, *::after {
    box-sizing: border-box;
    font-family: 'Noto Sans CJK KR', sans-serif;
    font-weight: 400;
    -ms-overflow-style: none; /* // IE에서 스크롤바 감춤 */
}

*:focus {
    outline:none;
    -webkit-appearance: none;
    outline:0;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    display: none; /* // 윈도우 크롬 등 */
}

.login-check-div {
    display: none;
    position: fixed;
    background-color: red;
    opacity: 0;
    top: 7%;
    left: 0%;
    width: 100%;
    height: 95%;
    z-index: 100001;
}

.login-check-div.active {
    display: block;
}

body {
    margin: 0px;
}

#container {
    width: 100vw;
    height: auto;
    margin: 0px auto;
    padding-top: var(--header-height);
}

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

a {
    color: black;
    text-decoration: unset;
}

div {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

ol {
    padding-left: 15px;
    margin: 0;
}

input, button, select {
    -webkit-appearance: none;
    outline: none;
    margin: 0px;
}

button {
    cursor: pointer;
}

input[type="checkbox"], input[type="checkbox"]:focus {
    -webkit-appearance: checkbox;
}

table {
    /* font-size: 13px; */
    border-spacing: 0;
    border-collapse: collapse;
}

table th {
    text-align: center;
}

table th, table td {
    position: relative;
}

dl, dd {
    margin: 0;
}

input[type="radio"] {
    -webkit-appearance: radio;
}

.align-right {
    text-align: right;
}

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

#black_bg {
    display: none;
    top: 0;
    left: 0px;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100002;
}

.black_bg_small {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
}

#tab_div {
    position: relative;
    height: auto;
    width: 100%;
}

#tab_div > #tab_list {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
}

#tab_div > #tab_list > .tabs_div {
    position: relative;
    width: auto;
    height: auto;
    padding: 5px 0px;
    /* padding-top: 18px; */
    border: 1px solid #FEFEFE;
    background-color: rgba(41, 44, 47, 0.8);
    text-align: center;
    border: 1px solid #FAFAFA;
    cursor: pointer;
    color: white;
    text-align: left;
    padding-left: 9px;
    border-bottom: 0px;
}

#tab_div > #tab_list > .tabs_div > div.tab_name {
    width: auto;
    float: left;
}

.tab_img {
    width: 23px;
    height: 23px;
    background-image: url("../img/save.png");
    background-size: 100%;
    cursor: pointer;
    z-index: 5;
    float: right;
    margin-left: 7px;
    margin-top: 1px;
}

#tab_div > #tab_list > .tabs_div:nth-child(1) {
    border-left: 0px;
    border-top-left-radius: 7px;
}

#tab_div > #tab_list > .tabs_div:nth-child(2) {
    border-left: 0px;
    border-right: 0px;
}

#tab_div > #tab_list > .tabs_div:last-child{
    border-top-right-radius: 7px;
}

#tab_div > #tab_list > .tabs_div.active_tab {
    background-color: rgb(1, 32, 96);
}

.tab-btns {
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tab-btn-list {
    width: auto;
    height: auto;
}

.tab-btn-list li {
    display: inline-block;
    width: 80px;
    height: 30px;
    margin-right: 5px;
    border: 1px solid#00377B;
    border-radius: 15px;
    color: #00377B;
    font-size: 13px;
    line-height: 30px;
    cursor: pointer;
    text-align: center;
}

.tab-btn-list li:last-child {
    margin-right: 0;
}

#close_up_img_div {
    display: none;
    width: 600px;
    height: 700px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    border-radius: 8px;
}

#header, .tab-container, .main-body {
    width: 100%;
    height: auto;
}

.main-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 0 20px 0;
}

.x_btn {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-image: url("../img/close_black.png");
    z-index: 5;
    cursor: pointer;
}

.arrow {
    width: 6px;
    height: 9px;
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    right: 5px;
    background-image: url("../img/right-arrow.png");
}

.calendar-btn {
    background-image: url("../img/calendar-icon.png");
    width: 10px;
    height: 10px;
    cursor: pointer;
}

/* ref: https://loading.io/css/ */
.ten_display_loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0px;
    top: 0px;
    text-align: center;
    z-index:200;
    background-color: rgba(0, 0, 0, 0.5);
}

#loading_border {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

.mic {
    width: 100px;
    height: 100px;
    background-image: url("../img/mic.png");
    border-radius: 100%;
    cursor: pointer;
    position: fixed;
    bottom: 114px;
    right: 130px;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

#message_box {
    position: relative;
    margin: auto;
    text-align: center;
    color: #ffffff;
}

#message_box strong {
    font-weight: 500;
}

#speech_rec_wrapper {
    position: fixed;
    right: 20px;
    bottom: 63px;
    padding: 0px;
    text-align: right;
    display: inline;
    line-height: 58px;
    z-index: 10000;
}

#speech_rec_button {
    display: block;
    width: 60px;
    height: 60px;
    -webkit-filter: grayscale(0) brightness(100%);
    filter: grayscale(0) brightness(100%);
    cursor: pointer;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    border-radius: 50%;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.47);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.47);
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.47);
    background-color: #ffffff;
    background-image: url(../img/icons/mic_bluesky.png);
    background-size: 58%;
    background-repeat: no-repeat;
}

#speech_rec_background {
    display: block;
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10001;
}

#speech_rec_box {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    width: 60%;
    max-width: 600px;
    height: 40%;
    min-height: 300px;
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    /* Firefox */
    -webkit-animation: fadein 2s;
    /* Safari and Chrome */
    -o-animation: fadein 2s;
    /* Opera */
}

.cell-style th, .cell-style:not(.compare-product-table) td, .cell-style .th-div, .cell-style .td-div {
    border: 1px solid #d9dde2;
}

table.cell-style tr:first-child > * {
    border-top: 0;
}

/* table.cell-style tr:not(.result-row, .list-row) > *:first-child {
    border-right: 0;
}    */

table td {
    padding: 0 8px;
}

.custom-select-box {
    display: inline-block;
    position: relative;
    width: auto;
    height: auto;
}

.custom-select-box span {
    font-size: 13px;
}

.custom-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #d9dde2;
}

.custom-selected img {
    width: 14px;
    height: 9px;
}

#x_btn {
    width: 45px;
    height: 45px;
    cursor: pointer;
    background-image: url(/img/icons/btn_close_white.png);
    background-size: 20px;
    background-position: center;
    float: right;
    padding: 0px;
}

#mic_icon {
    position: relative;
    width: 40%;
    height: 40%;
    margin: auto;
    border-radius: 50px;
    background-size: contain;
    background-repeat: no-repeat;
}

#speech_rec_box #mic_icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #FFF;
    padding: 0px 70px;
}

#speech_rec_box h1 {
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 200;
    user-select: none;
}

#speech_rec_box canvas {
    width: 100%;
}

.calendar_img {
    background-image: url("../img/calendar.png");
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* about background colour */
.smoke_gray {
    background-color: rgb(237, 237, 237);
}

.light_green {
    background-color: rgb(226, 240, 217);
}

.light_red {
    background-color: rgb(251, 229, 215);
}

.light_sky_blue {
    background-color: rgb(74, 112, 195);
}

.sky_blue {
    background-color: rgb(222, 234, 246);
}

.light_orange {
    background-color: rgb(255, 242, 205);
}

.smoke_orange {
    background-color: rgb(255, 230, 153);
}

.light_gray {
    /* background-color: rgba(91, 94, 97, 0.1);  */
    background-color: #f2f3f5;
}

.light_sky_blue {
    background-color: #eef2fb;
}

.white_gray {
    background-color: #fafafa;
}

.dark_gray_2 {
    background-color: #d9dde2;
}

.light_gray_text {
    color: rgba(41, 44, 47, 0.4);
}

/* new colour code */

/* about font */
.orange-font-col {
    color: var(--orange-col);
}

.skyblue-font-col {
    color: #4174b7;
}

.gray-font-col {
    color: #777777;
}

.gray-font-col-2 {
    color: #999999;
}

/* about background */
.lightgray-bg-col-2 {
    background-color: #F2F3F5;
}


/* about button */
.white_font_btn {
    width: auto;
    height: auto;
    border-radius: 5px;
    color: white;
    padding: 9px 10px;
    cursor: pointer;
}


.td_img_p_div {
    width: auto;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 0;
    padding: 3px 0 0 0px;
    transform: translateX(-50%);
}

.blue_up_arrow, .red_down_arrow, .red_up_arrow, .blue_down_arrow {
    width: 10px;
    height: 10px;
    margin: 4px 2.5px 0 0;
    float: left;
}

.blue_up_arrow {
    background-image: url("../img/blue_up_arrow.png");
}

.blue_down_arrow {
    background-image: url("../img/blue_down_arrow.png");
}

.td_img_p_div > .blue_up_arrow + p, .td_img_p_div > .blue_down_arrow + p {
    color: #118CC9;
    width: auto;
    float: left;
}

.red_up_arrow {
    background-image: url("../img/red_up_arrow.png");
}

.red_down_arrow {
    background-image: url("../img/red_down_arrow.png");
}

.td_img_p_div > .red_up_arrow + p, .td_img_p_div > .red_down_arrow + p {
    color: #eb000d;
    width: auto;
    float: left;
}

.switching_arrows {
    display: none;
    background-image: url("../img/switching_arrows.png");
    width: 70px;
    height: 70px;
    position: absolute;
    cursor: pointer;
}

.basic_popup {
    display: none;
    top: 160px;
    /* width: 430px; */
    width: auto;
    height: auto;
    /* height: 285px; */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(255, 255, 255);
    z-index: 10000;
    border-radius: 6px;
    box-shadow: 1px 2px 3px 2px rgba(41, 44, 47, 0.2);
    z-index: 10000;
}

.popup_header {
    width: 100%;
    height: 40px;
    position: relative;
    background-color: rgb(1, 32, 96);
    text-align: center;
    line-height: 2.5em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.basic_popup_body {
    /* height: 60%; */
    /* padding-top: 18%; */
    text-align: center;
}

.popup_footer {
    width: 100%;
    height: auto;
    position: relative;
}

.popup_footer .basic_footer_btn {
    width: 80px;
    height: 35px;
    border-radius: 5px;
    /* margin-right: 5px; */
    text-align: center;
    cursor: pointer;
    line-height: 2;
    border-style: none;
    background-color: rgb(0, 32, 96);
}

.popup_footer .basic_footer_btn p {
    color: white;
    font-size: 15px;
    font-weight: bold;
}

.popup_header {
    width: 100%;
    height: 40px;
    position: relative;
    background-color: rgb(1, 32, 96);
    text-align: center;
    line-height: 2.5em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.popup_header p {
    font-weight: bold;
    color: white;
    font-size: 20px;
}

.popup_header .x_btn{
    background-image: url("../img/white_x_btn.png");
    width: 20px;
    height: 20px;
}

.popup_body, .popup_footer {
    width: 100%;
    height: auto;
}

.focus_text {
    font-weight: bold;
    font-size: 17px;
}

/**
@font-face {
font-family: 'NotoSansCJKkr';
src: local('NotoSansCJKkr-Light'),
    url(../font/NotoSansCJKkr-Light.otf) format("opentype");
    /* url(../font/NotoSansCJKkr-Light-.woff2) format("woff2"),
    url(../font/NotoSansCJKkr-Light-.woff) format("woff"),
    url(../font/NotoSansCJKkr-Light-.ttf) format("truetype"); *_/
font-weight: 300;
font-style: normal;
font-stretch: normal;
font-display:fallback;
}
@font-face {
font-family: 'NotoSansCJKkr';
src: local('NotoSansCJKkr-Medium'),
    url(../font/NotoSansCJKkr-Medium.otf) format("opentype");
    /* url(../font/NotoSansCJKkr-Medium-.woff2) format("woff2"),
    url(../font/NotoSansCJKkr-Medium-.woff) format("woff"),
    url(../font/NotoSansCJKkr-Medium-.ttf) format("truetype"); *_/
font-weight: 500;
font-style: normal;
font-stretch: normal;
font-display:fallback;
}
@font-face {
font-family: 'NotoSansCJKkr';
src: local('NotoSansCJKkr-Bold'),
    url(../font/NotoSansCJKkr-Bold.otf) format("opentype");
    /* url(../font/NotoSansCJKkr-Bold-.woff2) format("woff2"),
    url(../font/NotoSansCJKkr-Bold-.woff) format("woff"),
    url(../font/NotoSansCJKkr-Bold-.ttf) format("truetype"); *_/
font-weight: bold;
font-style: normal;
font-stretch: normal;
font-display:fallback;
}

@font-face {
    font-family: 'NotoSansCJKkr';
    src: local('NotoSansCJKkr-Regular'),
        url(../font/NotoSansCJKkr-Regular.otf) format("opentype");
        /* url(../font/NotoSansCJKkr-Light-.woff2) format("woff2"),
        url(../font/NotoSansCJKkr-Light-.woff) format("woff"),
        url(../font/NotoSansCJKkr-Light-.ttf) format("truetype"); *_/
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    font-display:fallback;
}

@font-face {
    font-family: 'NotoSansCJKkr';
    src: local('NotoSansCJKkr-Thin'),
        url(../font/NotoSansCJKkr-Thin.otf) format("opentype");
        /* url(../font/NotoSansCJKkr-Light-.woff2) format("woff2"),
        url(../font/NotoSansCJKkr-Light-.woff) format("woff"),
        url(../font/NotoSansCJKkr-Light-.ttf) format("truetype"); *_/
    font-weight: 100;
    font-style: normal;
    font-stretch: normal;
    font-display:fallback;
}
*/

.text-style {
    font-size: 32.7px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    /* line-height: 1.2; */
    /* letter-spacing: 16.34px; */
    /* text-align: left; */
    color: var(--black);
}
.text-style-4 {
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.2; */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--black);
    line-height: 1;
}
.text-style-3 {
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.19; */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--black);
    line-height: 1;
}
.text-style-2 {
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.2; */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--brownish-grey);
    line-height: 1;
}
.text-style-5 {
    font-size: 13px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    /*  line-height: 2.15; */
    letter-spacing: normal;
    /* text-align: center; */
    color: var(--black);
    line-height: 1;
}

.text-style-6  {
    font-size: 15px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.87; */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--black);
    line-height: 1;
}

.text-style-7 {
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.2; */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--black);
    line-height: 1;
}

.text-style-10 {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 2; */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--black);
    line-height: 1;
}

.text-style-8 {
    font-size: 17px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.65;  */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--orange);
    line-height: 1;
}

.text-style-9 {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.27; */
    letter-spacing: normal;
    text-align: left;
    color: var(--orange);
    line-height: 1;
}

.text-style-11 {
    font-size: 17px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.65; */
    letter-spacing: normal;
    /* text-align: left; */
    color: var(--black);
    line-height: 1;
}

.text-style-12 {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.2;    */
    letter-spacing: normal;
    /*  text-align: left; */
    color: var(--black);
    line-height: 1;
}

.text-style-13 {
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 3.27; */
    letter-spacing: normal;
    text-align: center;
    color: var(--black);
    line-height: 1;
}

.text-style-14 {
    font-size: 19px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    /*  line-height: 2.58; */
    letter-spacing: normal;
    text-align: center;
    color: var(--black);
    line-height: 1;
}

.text-style-15 {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.75; */
    letter-spacing: normal;
    /* text-align: right; */
    color: var(--black);
    line-height: 1;
}

.text-style-16 {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    /* line-height: 1.4; */
    letter-spacing: normal;
    /* text-align: right; */
    color: var(--orange);
    line-height: 1;
}

.placeholder-text {
    font-size: 11px;
}

.scroll-stop {
    overflow: hidden;
}

.b2c-div > button {
    width: 120px;
    height: 40px;
    line-height: 40px;
    border-radius: 32px;
    border: solid 1px #00aeef;
    background-color: #ffffff;
    color: #00aeef;
    font-size: 16px;
    margin-left: 8px;
}

.b2c-div {
    display: none;
}

.carzal-popup {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 10001;
}

.carzal-popup.active {
    display: block;
}

.carzal-popup-div {
    position: fixed;
    width: auto;
    height: auto;
    right: 10px;
    top: 70px;
    border-radius: 17px;
    background-color: rgba(255,255,255,0.9);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px 30px 10px;
}

.carzal-popup-div > div {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.carzal-popup-div > div > button {
    width: 80px;
    height: 80px;
    text-align: center;
    margin-top: 15px;
    border-radius: 17px;
}

.type-1 {
    border: none;
    background-color: #fff;
}

.type-2 {
    border: 1px solid #cbcdcc;
    background-color: #e8e8e8;
}

.carzal-popup-div > div > button > img {
    width: 50%;
    height: 50%;
}

.carzal-main-footer {
    display: flex;
    position: fixed;
    width: 100%;
    max-width: 720px;
    margin: auto;
    height: 75px;
    bottom: 0;
    left: 50%;
    border-top: 1px solid #ddd;
    background-color: #FFF;
    z-index: 1000;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.carzal-main-footer.active {
    display: flex;
}

.carzal-main-footer > button {
    width: 24%;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
    background-color: unset;
}

.carzal-main-footer > button > img {
    width: 30px;
    height: auto;
}

.login-check {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 100029;
}

.login-check-main {
    width: 300px;
    height: 150px;
    background-color: #fff;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 40%;
    left: 50%;
    border-radius: 10px;
    /* text-align: center; */
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.login-check-main h1 {
    font-size: 20px;
}

.login-check-main button {
    font-size: 18px;
    width: 80%;
    height: 40px;
    background-color: #222;
    color: #FFF;
    border: 0;
}

.login-check.active {
    display: block;
}

.AI-bot {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    bottom: 15%;
    right: 5%;
    background-color: black;
    border: 3px solid white;
    border-style: double;
    border-radius: 50%;
    color: white;
    font-size: 15px;
    font-weight: 500;
    z-index: 10000;
}

.app-popup-top-img img {
    width: 60px;
    height: 50px;
    border-radius: 10px;
}

.app-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 100001;
    top: 0;
    display: none;
}

.app-popup.active {
    display: block;
}

.app-popup-main {
    width: 425px;
    height: 220px;
    position: fixed;
    background-color: white;
    bottom: 0px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transform: translate(-50%, 0%);
    left: 50%;
    padding: 25px 40px;
}

.app-going-btn {
    border: none;
    background: #eef5ff;
    text-align: center;
    margin-top: 20px;
    padding: 10px 0px;
    width: 100%;
    font-weight: 600;
    color: #505ed9;
    font-size: 15px;
}

.app-popup-close-btn {
    border: none;
    background: none;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    padding-top: 3px;
    color: #b3b3b3;
}

.app-popup-top {
    display: flex;
    justify-content: space-between;
}

.app-popup-top-p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 55px;
}

.app-popup-top-p p {
    font-size: 14px;
}

.carzal-popup-div p {
    font-size: 12px;
}

.renew-popup {
    display: none;
    position: fixed;
    background-color: rgba(0,0,0,0.2);
    width: 100%;
    height: 100%;
    z-index: 100000;
    top: 0;
}

.renew-popup.active {
    display: block;
}

.renew-popup-main {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    position: absolute;
    max-width: 720px;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.renew-popup-main2 {
    width: 270px;
    height: 100%;
    right: -270px;
    position: absolute;
    background-color: white;
    transition: ease 0.5s;
    padding: 15px 32px 0px 32px;
}

.renew-popup-main2.active {
    right: 0px;
}

.renew-popup-main3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    padding-top: 28px;
}

.renew-popup-main3 button {
    width: 100%;
    display: flex;
    border: 0;
    background-color: transparent;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #09141E;
}

.renew-popup-main3 img, .renew-popup-main4 img {
    width: 24px;
    height: 24px;
}

.renew-popup-main4 {
    position: absolute;
    top: 2%;
    right: 5%;
}

.renew-popup-main4 button {
    border: 0;
    background-color: transparent;
    padding: 0;
}

.renew-popup-main4 img {

}

@media (max-width: 1024px) {
    .carzal-logout {
        text-decoration: underline;
    }

    :root {
        --inner-width: 100vw;
        --header-height: 70px;
    }

    #header > #top_bar_div {
        height: 8.301vw;
        padding: 3.906vw 0 2.051vw 0;
    }

    #header > #top_bar_div > #top_bar_left > #top_bar_logo_div > #top_logo_img {
        width: 15.820vw;
        height: 2.246vw;
    }

    #header > #top_bar_div > #top_bar_right > #top_bar_ul > .top_bar_li:first-child {
        width: 10.449vw;
        height: 3.906vw;
        padding: 0.488vw 0.977vw;
        bottom: 0.488vw;
        background-position-x: 0.977vw;
        background-position-y: 0.977vw;
        background-size: 2.930vw;
    }

    #header > #top_bar_div > #top_bar_right > #top_bar_ul > .top_bar_li {
        margin-right: 5.371vw;
    }

    .tab-container {
        padding-top: 1.953vw;
    }

    .tab-list {
        height: 4.492vw;
    }

    .tab-content.active {
        height: 4.590vw;
    }

    .tab-content {
        width: 19.824vw;
    }

    .tab-content.active .td-content {
        padding: 0 1.953vw 0 3.516vw;
    }

    .tab-inner p {
        line-height: 2.930vw;
    }

    .tab-content.active .tab-icon {
        width: 6.641vw;
        height: 2.539vw;
        padding: 0 0.977vw;
        background-position-x: 0.977vw;
        background-position-y: 0.488vw;
        background-size: 1.563vw;
        padding-top: 0.293vw;
    }

    .arrow {
        width: 0.586vw;
        height: 0.879vw;
        right: 0.488vw;
    }
}

@media (max-width: 768px) {

    .carzal-popup-div > div {
        width: 60px;
    }

    .carzal-popup-div > div > button {
        width: 50px;
        height: 50px;
    }

    .carzal-popup-div {
        top: 70px;
    }

    :root {
        --inner-width: 100vw;
        --header-height: 70px;
    }
}