@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap");
@font-face {
    font-family: hana2;
    src: url("../font/Hana2-Light.otf") format("opentype");
    font-style: normal;
    font-weight: 300;
}
@font-face {
    font-family: hana2;
    src: url("../font/Hana2-Regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: hana2;
    src: url("../font/Hana2-Medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: hana2;
    src: url("../font/Hana2-Bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: hana2;
    src: url("../font/Hana2-Heavy.otf") format("opentype");
    font-style: normal;
    font-weight: 900;
}
:root {
    --color-text: #666666;
    --color-background: #fafafa;
    --size-font: 20px;
    --color-green: #08bfa3;
    --color-dark-green: #009591;
    --color-purple: #987fe8;
    --color-red: #f56179;
    --color-blue: #4e9def;
	--color-orange: #F8943E;
    --color-gray: #cccccc;
	--color-black: #000000;
    --header-height: 100px;
    --footer-height: 210px;
    --max-width: 1720px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: hana2, sans-serif;
    font-weight: 400;
}

html {
    width: 100%;
    height: 100%;
}
body {
    width: 100%;
    height: 100%;
    color: var(--color-text);
    background-color: var(--color-background);
    font-size: var(--size-font);
}
p {
    margin-inline: 0 0;
    margin-block: 0 0;
}

a,
a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--color-dark-green);
}

textarea {
    width: 100%;
    height: auto;
    outline: none;
    border: 1px solid #dddddd;
    padding: 1rem;
    resize: none;
}
textarea:focus-visible {
    border: 2px solid var(--color-green);
}

input[type="text"]:read-only,
input[type="number"]:read-only,
input[type="email"]:read-only {
    background-color: #f3fefd;
}

.hide {
    display: none;
}

.text-green {
    color: var(--color-green);
}
.text-red {
    color: var(--color-red);
}
.text-center {
    text-align: center;
}

.mx-auto {
    margin-inline: auto;
}

red {
    color: var(--color-red);
}
green {
    color: var(--color-green);
}
gray {
    color: #999999;
}
black {
    color: #000000;
}
b {
    font-weight: bold;
}

/* buttons */
button {
    background-color: transparent;
    border-width: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.button {
    border-radius: 30px;
    font-size: 18px;
    height: 60px;
    min-width: 200px;
    padding-inline: 24px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: background-color 200ms ease;
}
.button.green {
    --btn-color: var(--color-green);
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.red {
    --btn-color: var(--color-red);
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.purple {
    --btn-color: var(--color-purple);
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.blue {
    --btn-color: var(--color-blue);
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.orange {
    --btn-color: var(--color-orange);
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.gray {
    --btn-color: var(--color-gray);
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.black {
    --btn-color: var(--color-black);
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.closed_con {
    /* --btn-color: #009591; */
	--btn-color: #c99d18;
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.closed_job {
    --btn-color: #0f6fc7;
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    color: white;
}
.button.clear {
    background-color: transparent;
    color: var(--btn-color, black);
}
/* buttons hover */
.button:hover {
    color: var(--btn-color, black);
    background-color: var(--color-background);
}
.button.clear:hover {
    background-color: var(--btn-color);
    color: white;
}

.more-button {
    width: 40px;
    height: 40px;
    border: 1px solid #dddddd;
    background-color: transparent;
    background-image: url("../images/icon-plus.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
}
.clear-button {
    width: auto;
    height: auto;
    border: 0;
    background-color: transparent;
    font-size: inherit;
}
.clear-button:hover {
    background-color: transparent;
}
/*
.button.icon-left-arrow,
.button.icon-right-arrow {
    position: relative;
}
.button.icon-left-arrow::before {
    content: "<";
    font-family: "Poppins", sans-serif;
    color: inherit;
    position: absolute;
    left: 1rem;
    font-size: 2em;
    transform: translateY(0.05em);
}
.button.red.clear.icon-left-arrow::before {
    content: "";
    width: 9px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/icon_btn_prev_red.png);
}
.button.red.clear.icon-left-arrow:hover::before {
    background-image: url(../images/icon_btn_prev_white.png);
}
.button.icon-right-arrow::after {
    content: ">";
    font-family: "Poppins", sans-serif;
    color: inherit;
    position: absolute;
    right: 14px;
    font-size: 2em;
    transform: translateY(0.05em);
}
.button.green.clear.icon-right-arrow::after {
    content: "";
    width: 9px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/icon_btn_next_green.png);
}
.button.green.clear.icon-right-arrow:hover::after {
    background-image: url(../images/icon_btn_next_white.png);
}
*/
label {
    cursor: pointer;
}

/* == custom checkbox shapes == */
.custom-checkbox {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    /* display: inline-block; */
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.custom-checkbox::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #dddddd;
    background-color: var(--color-background, white);
    top: 0;
    left: 0;
}
.custom-checkbox.square::before {
    border-radius: 3px;
}
.custom-checkbox::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 60%;
    border-color: #dddddd;
    border-style: solid;
    border-left-width: 0;
    border-top-width: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
    top: 0;
    left: 0;
    transform: rotateZ(45deg) translateX(70%) translateY(-20%);
}
.custom-checkbox.square::after {
    border-color: var(--color-background, white);
}
.custom-checkbox:checked::before {
    border-color: var(--color-green);
    background-color: var(--color-green);
}
.custom-checkbox:checked::after {
    border-color: var(--color-background, white);
}
/* === custom checkbox end. */
/* ========= custom radio shape ==========*/
.custom-radio {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    /* display: inline-block; */
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.custom-radio::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #dddddd;
    background-color: var(--color-background, white);
    top: 0;
    left: 0;
}
.custom-radio::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: var(--color-background, white);
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.custom-radio:checked::before {
    border-color: var(--color-green);
}
.custom-radio:checked::after {
    background-color: var(--color-green);
}
/* =========== custom radio end. ========== */
img {
    max-width: 100%;
}
/* ================= */
/* header and footer */
header {
    width: 100%;
    height: var(--header-height);
    --menu-link-color: var(--color-green);
    --menu-text-color: black;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-background);
    z-index: 3;
    transform: translate3d(0, 0, 3px);
}
header.scrolled {
    background-color: #009591;
    --menu-link-color: white;
    --menu-text-color: white;
}
.header-box {
    width: 100%;
    max-width: 1720px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.header-logo {
    height: 60px;
    width: 240px;
    background-image: url(../images/logo-black.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 40px;
}
header.scrolled .header-logo {
    background-image: url(../images/logo-white.png);
}
.top-menu {
    flex: 1 1 0;
    max-width: 600px;
    padding-inline: 32px;
}
.top-menu ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-menu li {
    list-style: none;
}
.top-menu a {
    display: block;
    position: relative;
    color: var(--menu-text-color);
}
.top-menu a::before {
    content: "";
    width: 0;
    height: 3px;
    background-color: var(--menu-link-color, black);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: width ease 300ms;
}
.top-menu a.active,
.top-menu a:hover {
    color: var(--menu-link-color, black);
}
.top-menu a.active::before,
.top-menu a:hover::before {
    width: 100%;
}
.top-icons-box {
    width: 240px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 45px;
    font-size: 16px;
}
.top-icon-link {
    position: relative;
    width: 25px;
    height: 28px;
}
.top-icon-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transition: opacity 300ms ease;
}
.top-icon-link.top-icons-hanabank_logo {
    width: 100px;
}
.top-icon-link.top-icons-join::after {
    background-image: url(../images/icon_sign_up.png);
    transform: translateX(-2px);
}
.top-icon-link.top-icons-login::after {
    background-image: url(../images/icon_sign_in.png);
    transform: translateX(-4px);
}
.top-icon-link.top-icons-hanabank_logo::after {
    background-image: url(../images/icon_hanabank_logo.png);
}
.top-icon-link.top-icons-mypage::after {
    background-image: url(../images/icon_my_page.png);
}
.top-icon-link.top-icons-logout::after {
    background-image: url(../images/icon_sign_out.png);
}
header.scrolled .top-icon-link.top-icons-join::after {
    background-image: url(../images/icon_sign_up_white.png);
}
header.scrolled .top-icon-link.top-icons-login::after {
    background-image: url(../images/icon_sign_in_white.png);
}
header.scrolled .top-icon-link.top-icons-hanabank_logo::after {
    background-image: url(../images/icon_hanabank_logo_white.png);
}
header.scrolled .top-icon-link.top-icons-mypage::after {
    background-image: url(../images/icon_my_page_white.png);
}
header.scrolled .top-icon-link.top-icons-logout::after {
    background-image: url(../images/icon_sign_out_white.png);
}
header.scrolled .top-icon-link-text {
  color: white;
}
.top-icon-link::before {
    position: absolute;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    width: fit-content;
    transform: translateX(-50%) translateY(-50%);
    color: var(--menu-text-color);
    font-size: 16px;
    opacity: 0;
    transition: opacity 300ms ease;
}
.top-icon-link.top-icons-join::before {
    content: "회원가입";
}
.top-icon-link.top-icons-login::before {
    content: "로그인";
}
.top-icon-link.top-icons-hanabank_logo::before {
    content: "하나은행";
}
.top-icon-link.top-icons-mypage::before {
    content: "마이페이지";
}
.top-icon-link.top-icons-logout::before {
    content: "로그아웃";
}
.top-icon-link:hover::after {
    opacity: 0;
}
.top-icon-link:hover::before {
    opacity: 1;
}
.top-icon-link-text {
  position: absolute;
  left: -19px;
  bottom: -20px;
  font-size: 0.8rem;
  width: 60px;
  text-align: center;
  display: block;
  opacity: 1;
  transition: opacity 300ms ease;
}
.top-icon-link:hover .top-icon-link-text {
  opacity: 0;
}
.logo {
    max-height: 60px;
    width: auto;
}
header .mobile-menu-btn {
    display: none;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
}
header .mobile-menu-btn > span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 200ms ease-in-out;
    transform-origin: center center 0;
}
header.scrolled .mobile-menu-btn > span {
    background-color: white;
}
header .mobile-menu-btn > span:nth-child(1) {
    top: 0;
    left: 0;
}
header .mobile-menu-btn > span:nth-child(2) {
    top: 11px;
    left: 0;
}
header .mobile-menu-btn > span:nth-child(3) {
    top: 11px;
    left: 0;
}
header .mobile-menu-btn > span:nth-child(4) {
    top: 22px;
    left: 0;
}
header .mobile-menu-btn.active > span:nth-child(1) {
    transform: translateY(11px) scaleX(0);
}
header .mobile-menu-btn.active > span:nth-child(2) {
    transform: rotateZ(-45deg);
}
header .mobile-menu-btn.active > span:nth-child(3) {
    transform: rotateZ(45deg);
}
header .mobile-menu-btn.active > span:nth-child(4) {
    transform: translateY(-11px) scaleX(0);
}
@media screen and (max-width: 1023px) {
    .top-menu {
        display: none;
    }
    .top-icons-box {
        display: none;
    }
    header .mobile-menu-btn {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .header-logo {
        height: 50px;
        width: 180px;
        margin-left: 0;
    }
    .top-icons-box {
        width: 180px;
        gap: 20px;
    }
    .top-icon-link {
        width: 20px;
        height: 22.4px;
    }
    .top-menu {
        display: none;
    }
}
@media screen and (max-width: 420px) {
    .header-logo {
        height: 40px;
        width: 180px;
        margin-left: 0;
    }
}
.mobile-menu-popup {
    display: none;
    position: fixed;
    z-index: 10;
    top: var(--header-height);
    left: -100vw;
    width: 100vw;
    height: calc(100dvh - var(--header-height));
    background-color: white;
    overflow: auto;
    transition: 200ms ease-in;
}
@media screen and (max-width: 1023px) {
    .mobile-menu-popup {
        display: block;
        z-index: 10;
        transform: translate3d(0, 0, 10px);
        font-size: 16px;
    }
}
.mobile-menu-popup.show {
    left: 0;
    /* z-index: 50;
  transform: translate3d(0, 0, 50px); */
}
.mobile-top-bar {
    width: 100%;
    background-color: var(--color-dark-green);
    color: white;
}
.mobile-top-bar > .button-bar {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-top-bar > .button-bar > p {
    display: flex;
    align-items: center;
}
.mobile-top-bar > .button-bar > p > span {
    font-size: 20px;
}
.mobile-top-bar-status {
    padding: 10px;
    background-color: var(--color-green);
}
.mobile-top-bar-status > div {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--color-background);
    padding: 10px;
}
.mobile-top-bar-status > div > div {
    width: 100%;
    background-color: var(--color-background);
    border-right: 1px solid #dddddd;
}
.mobile-top-bar-status > div > div:last-child {
    border-right: none;
}
.mobile-top-bar-status > div > div p {
    width: 100%;
    line-height: 1.6rem;
    color: black;
    font-size: 0.825rem;
    text-align: center;
}
.mobile-top-bar-status > div > div p:last-child {
    color: var(--color-red);
}
.mobile-menu-items-wrapper {
    width: 100%;
    padding: 0px 10px;
}
.mobile-menu-item {
    width: 100%;
    border-bottom: 1px solid #dddddd;
    padding: 1rem 0;
    color: black;
}
.mobile-menu-item a.mobile-menu-item-direct {
    width: 100%;
    position: relative;
    display: block;
    font-size: 1rem;
}
.mobile-menu-item a.mobile-menu-item-direct::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1em;
    height: 1em;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
    transform-origin: center;
    transform: translateY(-50%) rotateZ(-45deg) scale(0.7);
}
.mobile-menu-item > p {
    width: 100%;
    padding-top: 1.5rem;
    display: grid;
   /* grid-template-columns: 1fr 1fr; */
	grid-template-columns: 1fr;
    row-gap: 1rem;
}
.mobile-menu-item > p > a {
    font-size: 0.825rem;
}
/* ============= */
footer {
    width: 100%;
    height: var(--footer-height);
    border-top: 1px solid #dddddd;
    position: relative;
    z-index: 2;
    transform: translate3d(0, 0, 2px);
    background-color: var(--color-background);
    padding-inline: 16px;
}
.footer-box {
    width: 100%;
    height: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 10px 60px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}
.footer-box > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #929292;
    font-size: 16px;
    gap: 10px;
    /* position: absolute; */
}
/* .footer-box > div:first-of-type {
  top: 30px;
  left: 60px;
} */
.footer-box > div:last-of-type {
    position: absolute;
    top: 30px;
    right: 60px;
}
/* .footer-box .logo {
  margin-bottom: 20px;
} */

.footer-box .address-phone > div {
    line-height: 24px;
    width: 100%;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.footer-box .address-phone > div:nth-child(2) {
    line-height: 24px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.footer-box .address-phone > div > span {
    font-weight: 400;
}
.footer-box .address-phone > div > span > b {
    color: #515151;
    font-weight: 500;
}
.footer-box .address-phone > div span::after {
    content: "|";
    font-size: 12px;
    color: #eeeeee;
    padding: 0 15px;
}
.footer-box .address-phone > div > span:last-child::after {
    display: none;
}
.footer-box .address-phone > div > p > span:last-child::after {
    display: none;
}
.footer-box > div:last-child {
    align-items: flex-end;
}
.footer-box .logo-bar {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
}
.footer-box .logo-bar img {
    transform: scale(0.8);
}
/* === footer media === */
@media screen and (max-width: 1100px) {
    .footer-box .logo-bar {
        display: none;
    }
}
@media screen and (max-width: 860px) {
    .footer-box {
        padding: 20px 0;
        display: block;

        height: auto;
    }
    .footer-box > div {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .footer-box > div:first-of-type {
        top: unset;
        left: unset;
    }
    .footer-box .logo,
    .footer-box .logo-bar {
        display: none;
    }
    .footer-box .address-phone > div > span::after {
        display: none;
    }
    .footer-box .address-phone > div > span.fax {
        display: none;
    }
    .footer-box .address-phone > div {
        text-align: center;
    }
    .footer-box .address-phone > div:nth-child(2) {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: auto;
    }
}
@media screen and (max-width: 440px) {
    .footer-box .address-phone > div {
        width: 100%;
        font-size: 14px;
        padding-inline: 10px;
        word-break: keep-all;
        white-space: unset;
        line-height: 20px;
    }
    .footer-box > div > div {
        font-size: 14px;
        line-height: 20px;
    }
}

#floatToTopBtn {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 2;
}

main {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100% - var(--footer-height));
    padding-top: var(--header-height);
    overflow: auto;
}

.sub-body {
    width: 100%;
    max-width: 1200px;
    padding-block: 140px;
    margin: 0 auto;
}
@media screen and (max-width: 1232px) {
    .sub-body {
        padding-inline: 16px;
    }
}
@media screen and (max-width: 599px) {
    .sub-body {
        padding-block: 50px;
    }
}

.sub-page-title {
    /* font-size: clamp(1.5rem, 8vw,48px); */
    font-size: clamp(0.875rem, 7vw, 48px);
    font-weight: 500;
    color: black;
    text-align: center;
    width: fit-content;
    padding: 0 0.8em;
    margin: 0 auto;
    position: relative;
    isolation: isolate;
    word-break: keep-all;
}
.sub-page-title.margin-below {
    margin-bottom: 140px;
}
@media screen and (max-width: 599px) {
    .sub-page-title.margin-below {
        margin-bottom: 50px;
    }
}
.sub-page-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--color-green);
    opacity: 0.1;
    z-index: -1;
}
.sub-page-menu {
    margin: 0 auto;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-page-menu > a {
    width: clamp(80px, 40vw, 260px);
    height: clamp(40px, 11vw, 70px);
    border: 1px solid #dddddd;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: black;
    font-size: clamp(14px, 3vw, 16px);
}
.sub-page-menu > a.active {
    color: white;
    background-color: var(--color-green);
}
.margin-h-140-box {
    width: 100%;
    height: 140px;
}
@media screen and (max-width: 599px) {
    .margin-h-140-box {
        width: 100%;
        height: 50px;
    }
}

.circle-progress-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 90px;
}
@media screen and (max-width: 599px) {
    .circle-progress-bar {
        padding-block: 40px;
    }
    .circle-progress-bar.col-6-more {
        width: fit-content;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 0.8fr 1fr 0.8fr 1fr 0.8fr;
        row-gap: 0.5rem;
    }
}
@media screen and (max-width: 359px) {
    .circle-progress-bar {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }
}
.circle-progress-bar > .step {
    width: clamp(40px, 13vw, 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow: visible;
}
.circle-progress-bar.col-6-more > .step {
    width: clamp(40px, 10vw, 100px);
}
.circle-progress-bar > .step:nth-child(2n) {
    width: clamp(32px, 9vw, 80px);
}
.circle-progress-bar.col-6-more > .step:nth-child(2n) {
    width: clamp(32px, 8vw, 80px);
}
.circle-progress-bar > .step > p {
    width: fit-content;
    height: 1em;
    font-size: clamp(0.625rem, 2vw, 16px);
    white-space: nowrap;
}
.circle-progress-bar > .step > p.mid-line {
    position: relative;
}
.circle-progress-bar > .step > p.mid-line::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-green);
    position: absolute;
    left: 0;
    top: 50%;
}
.circle-progress-bar > .step > p:first-child {
    width: clamp(32px, 9vw, 80px);
    height: clamp(40px, 11.4vw, 100px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle-progress-bar > .step > p.step-icon {
    font-size: clamp(1.1rem, 3vw, 30px);
    width: clamp(40px, 11.4vw, 100px);
    height: clamp(40px, 11.4vw, 100px);
    border-radius: 50%;
    box-shadow: 0px 6px 18px 0px rgba(8, 191, 163, 0.2);
}

@media screen and (max-width: 768px) {
    .circle-progress-bar > .step > p > img {
        height: 4.2vw;
        width: auto;
    }
}

.circle-progress-bar > .step > p.step-icon > img:first-child {
    display: block;
}
.circle-progress-bar > .step > p.step-icon > img:last-child {
    display: none;
}
.circle-progress-bar > .step.active > p.step-icon {
    background-color: var(--color-green);
}
.circle-progress-bar > .step.active > p.step-icon > img:first-child {
    display: none;
}
.circle-progress-bar > .step.active > p.step-icon > img:last-child {
    display: block;
}

.sub-body h2 {
    font-size: clamp(1.5rem, 5vw, 30px);
    color: black;
    padding-bottom: 20px;
    margin-top: 1em;
}
.sub-body h2:first-of-type {
    margin-top: 0;
}
.sub-body > form > h2 {
    margin-top: 2rem;
}
.sub-body > form > h2:first-of-type {
    margin-top: 0;
}

.right-button-bar {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 60px;
    gap: 1rem;
}
@media screen and (max-width: 599px) {
    .right-button-bar button {
        flex: 1 1 0;
    }
}
/* ------------------- */
#alertDialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 360px;
    height: 280px;
    border: 1px solid #dddddd;
    box-shadow: 0px 6px 18px 0px #39ccb533;
}
#alertDialog > div {
    width: 100%;
    height: calc(100% - 60px);
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#alertDialog > div.button-bar {
    border-top: 1px solid #dddddd;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#alertDialog > div.button-bar > .button {
    min-width: unset;
    height: 40px;
    font-size: 1rem;
}
/* --------------------- */
#askYesNoDialog,
#infoDialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    max-width: 360px;
    height: fit-content;
    max-height: 100%;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 0px 6px 18px 0px #39ccb533;
}
#askYesNoDialog > div,
#infoDialog > div {
    width: 100%;
    height: calc(100% - 50px);
    display: flex;
    align-items: stretch;
    padding: 2rem 1rem;
    gap: 5px;
}
#askYesNoDialog > div:last-child {
    height: fit-content;
    align-items: center;
    padding: 0;
    gap: 0;
}
#askYesNoDialog > div > div,
#infoDialog > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
#askYesNoDialog > div > div:first-child,
#infoDialog > div > div:first-child {
    width: 60px;
}
#askYesNoDialog > div > div:last-child,
#infoDialog > div > div:last-child {
    width: calc(100% - 60px);
}
#askYesNoDialog > div > div > p,
#infoDialog > div > div > p {
    font-size: 1rem;
    word-break: keep-all;
}

#infoDialog > button {
    width: 100%;
    height: 50px;
    background-color: #f8f8f8;
    border: none;
    cursor: pointer;
}
#askYesNoDialog > div > button {
    width: 50%;
    height: 50px;
    background-color: #f8f8f8;
    border: none;
    cursor: pointer;
}
#askYesNoDialog > div > button:first-child {
    border-right: 1px solid #dddddd;
}
/* --------------------- */
/* === post table ==== */
.post-title {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}
.post-table2 {
    width: 100%;
    max-width: 840px;
    border-top: 2px solid black;
    margin: 0 auto;
}
.post-table {
    width: 100%;
    border-top: 2px solid black;
    /* margin-bottom: 2em; */
}
.post-table.no-border {
    border-top: none;
}
.post-table.no-margin {
    margin-bottom: 0;
}
.post-table.result {
    margin-top: 100px;
}
.post-table.single-border {
    border-top: 1px solid #dddddd;
}
.post-table-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #dddddd;
}
.post-table.no-border > .post-table-row {
    border-bottom: none;
}
@media screen and (max-width: 768px) {
    .post-table-row {
        grid-template-columns: 1fr;
        border-bottom: none;
    }
}
.post-table-row.full {
    padding-left: 140px;
    grid-template-columns: 1fr;
}
@media screen and (max-width: 768px) {
    .post-table-row.full {
        padding-left: unset;
    }
}
.post-table-row.col-1 {
    grid-template-columns: 1fr;
}
.post-table-row.dark-border {
    border-bottom: 2px solid black;
}

.post-table-column {
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .post-table-column {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #dddddd;
    }
}
.post-table-column.long {
    grid-column: 1/3;
}
.post-table-column > p {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 1rem;
    font-size: 16px;
}
.post-table-column > p > img {
    width: 1em;
    height: 1em;
    margin-right: 0.5em;
}
.post-table-column > p > .custom-checkbox {
    width: 24px;
    height: 24px;
}
.post-table-column > p.titled {
    width: 140px;
    background-color: #f8f8f8;
    color: black;
    justify-content: center;
    font-size: 1rem;
    padding-inline: 0;
    text-align: center;
}
.post-table-column > p.titled.right {
    justify-content: flex-end;
    text-align: right;
    padding-inline: 0 1em;
}

/* === 디지털전환 모집공고 테이블 추가 20210115 Start === */
.post-table-column > p.titled.center {
    justify-content: flex-end;
    text-align: center;
    padding-inline: 0 1em;
}
.post-table-column > p.titled.left {
    justify-content: flex-end;
    text-align: left;
    padding-inline: 0 1em;
}
/* === 디지털전환 모집공고 테이블 추가 20210115 End === */

@media screen and (max-width: 768px) {
    .post-table-column > p.titled {
        width: 100%;
        background-color: unset;
        justify-content: flex-start;
        padding: 10px 0 0px 0;
    }
    .post-table-column > p.titled.right {
        justify-content: flex-start;
        padding-inline: 0;
    }
}
.post-table-column > p.titled.blank {
    background-color: transparent;
}
.post-table-column > p.green {
    color: var(--color-green);
    font-size: 24px;
}
.post-table-column > p.required::after {
    content: "*";
    color: var(--color-red);
}
.post-table-column > p:nth-child(2) {
    width: calc(100% - 140px);
}
@media screen and (max-width: 768px) {
    .post-table-column > p {
        padding: 10px 0;
    }
    .post-table-column > p:nth-child(2) {
        width: 100%;
    }
}
.post-table-column > p.big {
    font-size: clamp(20px, 4.8vw, 24px);
}
.post-table-column > p.end-align {
    justify-content: flex-end;
}
.post-table-column > div.full-between {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
@media screen and (max-width: 768px) {
    .post-table-column > div.full-between {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
}
.post-table-column > div.full-between p {
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.post-table-column > div.multi-content {
    width: calc(100% - 140px);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
}
@media screen and (max-width: 768px) {
    .post-table-column > div.multi-content {
        width: 100%;
        padding: 16px 0;
    }
}
.post-table-column .clear-button {
    color: var(--color-green);
}
.post-table-column p > img {
    width: 18px;
    height: 18px;
}
.post-table-column > div.multi-content > div.input-bar-5-col {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 5px;
}
.post-table-column > div.multi-content > div.input-bar-2-col {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 5px;
}
@media screen and (max-width: 768px) {
    .post-table-column > div.multi-content > div.input-bar-5-col,
    .post-table-column > div.multi-content > div.input-bar-2-col {
        grid-template-columns: 1fr;
    }
}
.post-table.result .result-message-box {
    border-bottom: 1px solid #dddddd;
    background-color: #f3fefd;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}
@media screen and (max-width: 768px) {
    .post-table.result .result-message-box {
        padding: clamp(1rem, 7.8vw, 60px);
        gap: clamp(1.5rem, 6.5vw, 50px);
    }
}
.post-table.result .result-message-box p {
    color: black;
    line-height: 1.5em;
}
.post-table.result .result-message-box p.inform-line {
    align-self: flex-start;
}
/* == product select grid == */
.post-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    gap: 20px;
    border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 1240px) {
    .post-card-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 800px) {
    .post-card-list {
        grid-template-columns: 1fr;
    }
}
.post-card-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.post-card-item-image {
    width: 100%;
    aspect-ratio: 1.7;
    border: 1px solid #dddddd;
}
.post-card-item-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-card-item > p {
    font-size: 1rem;
    color: #666666;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    height: 3em;
    padding-block: 0 1em;
}
.post-card-item > p.post-card-item-check {
    padding-block: 1em 0;
}

/* image file input */
.input-file-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.input-file-box > input[type="file"] {
    display: none;
}
.input-file-box > input[type="text"] {
    flex: 1 1 100px;
    height: 100%;
    min-height: 40px;
    outline: none;
    padding: 5px 1rem;
    border: 1px solid #dddddd;
    border-bottom: 1px solid #d4d6dd;
    background: transparent;
    color: black;
    font-size: 1rem;
}
.input-file-box > label {
    width: 40px;
    height: 40px;
    background-color: var(--color-green);
    display: grid;
    place-items: center;
}
.input-file-box > label > img {
    width: 40%;
    height: auto;
}
.input-file-box > button.clear-button {
    width: fit-content;
    margin-left: 1.25rem;
    font-size: inherit;
}
/* ---------------- */

.post-input-price {
    position: relative;
    display: flex;
    align-items: center;
}
.post-input-price .post-input-unit {
    position: absolute;
    right: 21px;
}
.post-input-price .post-input-unit-2 {
    position: absolute;
    right: 8px;
}
.post-input-price .post-input-unit-2 ~ input {
    padding-right: 3em;
}
.post-input {
    width: 100%;
    height: 100%;
    outline: none;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid #d4d6dd;
    background: transparent;
    color: black;
}
.post-input:focus-visible {
    border-bottom: 2px solid var(--color-green);
}
.post-input-box {
    width: 100%;
    height: 100%;
    min-height: 40px;
    outline: none;
    padding: 5px 1rem;
    border: 1px solid #dddddd;
    border-bottom: 1px solid #d4d6dd;
    background: transparent;
    color: black;
    font-size: 1rem;
}
.post-input-box::placeholder {
    color: #cccccc;
}
.post-input-box:focus-visible {
    border: 2px solid var(--color-green);
}

select::-ms-expand {
    display: none;
}
.post-select-box {
    width: 100%;
    height: 100%;
    min-height: 40px;
    outline: none;
    padding: 5px 1rem;
    border: 1px solid #dddddd;
    border-bottom: 1px solid #d4d6dd;
    background: transparent;
    color: black;
    font-size: 1rem;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/icon_down_arrow_tip_black.png);
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-color: var(--color-background);
}
.post-select-box.inline-small {
    width: unset;
    min-width: 4rem;
    min-height: unset;
    height: fit-content;
    font-size: inherit;
}
.post-select-box::placeholder {
    color: #cccccc;
}
.post-select-box:focus-visible {
    border: 2px solid var(--color-green);
}
.button-bar {
    width: 100%;
    padding-top: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}
.button-bar2 {
    width: 100%;
    max-width: 840px;
    padding-top: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
}
.button-bar.centered {
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .button-bar {
        padding-top: 50px;
    }
    .button-bar2 {
        padding-top: 50px;
    }
    .button-bar > button {
        width: 50%;
        height: 50px;
        font-size: 1rem;
        min-width: unset;
    }
    .button-bar2 > button {
        flex: 1 1 0;
        min-width: 0;
        height: 50px;
        font-size: 1rem;
    }
}
.address-input {
    width: calc(100% - 140px);
    height: 100%;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    gap: 10px;
}
@media screen and (max-width: 768px) {
    .address-input {
        width: 100%;
        padding: 10px 0;
        grid-template-columns: 1fr;
    }
}
.zipcode-input {
    width: 100%;
    display: flex;
    justify-items: center;
}
.zipcode-input > input {
    width: 110px;
    border: 1px solid #dddddd;
}
.zipcode-input > button.search-button {
    width: 40px;
    height: 40px;
    border: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: var(--color-green);
    background-image: url(../images/icon_search.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
@media screen and (max-width: 768px) {
    .zipcode-input > input {
        width: calc(100% - 40px);
    }
}

.check-box-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}
.check-box-row.with-padding {
    padding: 10px 16px;
}
.check-box-row.with-padding .custom-checkbox {
    width: 24px;
    height: 24px;
}
@media screen and (max-width: 768px) {
    .check-box-row {
        padding-bottom: 1rem;
    }
    .check-box-row.with-padding {
        padding: 10px 0;
    }
}
.check-box-row > p {
    font-size: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
}
.calculator-box {
    display: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-block: 1rem;
}
@media screen and (max-width: 1023px) {
    .calculator-box {
        grid-template-columns: 1fr;
        padding: 10px 0;
    }
}
.calculator-box .calculator-left {
    display: grid;
    gap: 0.5rem;
    align-items: center;
}
.calculator-box .calculator-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.calculator-box .calculator-right > div {
    flex: 1 1 100px;
    display: grid;
    gap: 5px;
}
.calculator-box .calculator-right > div.equal-sign {
    flex: unset;
    width: 30px;
    height: 24px;
    border-top: 7px solid black;
    border-bottom: 7px solid black;
}
.calculator-box .calculator-right > div > p:nth-child(1) {
    font-size: clamp(1.2rem, 3.9vw, 30px);
    color: black;
}
.calculator-box .calculator-right > div > p > #sumPrice {
    color: var(--color-red);
}
.calculator-box .input-price-box {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 40px;
}
.calculator-box .input-price-box label {
    width: 130px;
    height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    word-break: keep-all;
}
.calculator-box .input-price-box input {
    width: calc(100% - 130px);
    height: 100%;
    min-height: 40px;
    outline: none;
    padding: 5px 2rem 5px 1rem;
    border: 1px solid #dddddd;
    border-bottom: 1px solid #d4d6dd;
    background: transparent;
    color: black;
    font-size: 1rem;
}
.calculator-box .input-price-box p {
    position: absolute;
    right: 5px;
}
.calculator-box .input-price-box input::placeholder {
    color: #cccccc;
}
/* == */
.image-preview-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    justify-content: center;
    align-items: center;
    background-color: #00000030;
}
.image-preview-wrapper .image-preview-box {
    width: 100%;
    max-width: 500px;
    height: auto;
    max-height: 100%;
    overflow: auto;
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #ffffff10;
    background-color: var(--color-background);
}
.image-preview-wrapper .image-preview-box img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}
.image-preview-wrapper .image-preview-box > div {
    width: 100%;
    height: 50px;
    padding: 10px 5px 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-preview-wrapper .image-preview-box > div > button {
    width: 50%;
    height: 100%;
}
.post-table-basic-row {
    width: 100%;
    margin: 40px 0;
    font-size: 1rem;
}
.title-row {
    width: fit-content;
    position: relative;
    color: black;
    font-size: clamp(16px, 3vw, 24px);
}
.title-row.required::after {
    content: "*";
    font-size: 0.725rem;
    position: absolute;
    color: var(--color-red, red);
    right: -8px;
    top: -2px;
}
.post-table-basic-row textarea {
    margin: 1rem 0;
}
.inform-line {
    /* display: block; */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1rem;
    color: #999999;
    width: fit-content;
    line-height: 1.375em;
    padding-block: 2px;
}
.inform-line > img {
    width: 18px;
    height: 18px;
    margin-right: 0.25rem;
    transform: translateY(10%);
}
@media screen and (max-width: 389px) {
    .inform-line {
        font-size: 0.875rem;
    }
}
.post-table.bottom-border {
    border-bottom: 1px solid #dddddd;
}

/* == */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}
.responsive-table th,
.responsive-table td {
    color: black;
    font-size: 1rem;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dddddd;
}
.responsive-table td.align-left {
    text-align: left;
}
.responsive-table th {
    background-color: #f8f8f8;
    border-top: 2px solid black;
}
.responsive-table tr:hover td {
    background-color: #f3fefd;
    color: #39ccb5;
}
@media screen and (max-width: 639px) {
    .responsive-table thead {
        display: none;
    }
    .responsive-table tbody tr:nth-child(2n-1) {
        background-color: #f5f5f5;
    }
    .responsive-table td {
        display: grid;
        border: none;
        grid-template-columns: 90px auto;
        text-align: left;
        padding-left: 1rem;
    }
    .responsive-table td:before {
        content: attr(data-cell);
        font-size: 0.825rem;
        padding-right: 0.5rem;
        text-align: left;
    }
}

p.message {
    padding-left: 25px;
    position: relative;
    font-size: clamp(0.75rem, 3.3vw, 18px);
    line-height: 2em;
    word-break: keep-all;
}
p.message::before {
    content: "";
    position: absolute;
    left: 0;
    width: clamp(10px, 4.5vw, 18px);
    height: 100%;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
p.message.red::before {
    background-image: url("../images/icon_info_red.png");
}
p.message.green::before {
    background-image: url("../images/icon_info_green.png");
}

.post-table-row > h3 {
    font-size: clamp(1.2rem, 4vw, 24px);
    padding: 20px 0;
}
.title-and-2-input {
    width: 100%;
    display: grid;
    grid-template-columns: 110px 1fr 1fr;
    gap: 10px;
}
.title-and-2-input > p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .title-and-2-input {
        grid-template-columns: 1fr;
    }
}

.terms-block {
    width: 100%;
    height: auto;
    font-size: clamp(14px, 3vw, 16px);
    background-color: #f3fefd;
    padding: 1em;
    line-height: 1.6em;
}
.terms-block h1 {
    color: black;
    font-size: 1.2em;
    text-align: left;
}
.terms-block h2 {
    color: black;
    font-size: 1.1em;
    text-align: left;
}
.terms-block h3 {
    color: black;
    font-size: 1em;
}
.terms-block h1,
.terms-block h2,
.terms-block h3,
.terms-block p,
.terms-block ol,
.terms-block ul {
    margin-top: 1em;
    padding-bottom: 0;
}
.terms-block h1:first-child,
.terms-block h2:first-child,
.terms-block h3:first-child {
    margin-top: 0;
}
.terms-block p {
    color: #666666;
    line-height: 1.5em;
    min-height: 1.5em;
}
.terms-block ol li {
    margin-left: 1.5em;
}
.terms-block ol li p {
    margin-top: 0;
}
.terms-block p.sub-p {
    padding-left: 1em;
    margin-top: 0;
}
.terms-block ol.korean > li {
    list-style: hangul-consonant;
}
.terms-block ol.sub,
.terms-block ul.sub {
    margin-bottom: 1em;
}
.terms-block ul.sub > li {
    list-style: disc;
}

.terms-block .table-wrapper {
    width: 100%;
    max-width: 600px;
    overflow: auto;
}
.terms-block table {
    width: 100%;
    max-width: 600px;
    min-width: 500px;
    border-collapse: collapse;
    font-size: inherit;
    margin: 2em auto;
}
.terms-block table :is(td, th) {
    border: 1px solid #dddddd;
    padding: 0.5em 1em;
    font-size: inherit;
    width: 33.33%;
    text-align: center;
    background-color: var(--color-background);
}
.terms-block table th {
    background-color: var(--color-green);
    color: var(--color-background);
}
.flex-box {
    display: flex;
    align-items: center;
}
.flex-wrap-box {
    min-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 1em;
    row-gap: 0.5em;
    flex-wrap: wrap;
    padding-block: 0.5em;
}
.short-input-number {
    padding-inline: 1em;
    height: 30px;
    width: 5ch;
    border: 1px solid #dddddd;
}

@media screen and (max-width: 768px) {
    .m-mt-50 {
        margin-top: 50px;
    }
}

#loading {
    position: absolute;
    display:none;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    margin:auto;    
    background: #e3e3e3;
    opacity:0.3;
    text-align:center;
    z-index:9999;
}

#loading img {
    display:block;
    position:relative;
    top:49%;
    left:49%;
}