@charset "utf-8";
*{
    box-sizing: border-box;
}

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
/* font설정 */
body, h1, h2, h3, h4, h5, h6, li, p, button { 
    font-family: 'Pretendard';
}
a, h1 {
    color: var(--txt-color01);
}
blockquote {
    font-size: inherit;
}
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
code,
kbd,
tt,
var,
samp,
pre {
    font-family: Inconsolata, monospace;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

:root {
    --main-color01: #F25E25;
    --main-color02: #F25E25c7;
    --main-color03: #F25E2573;
    --btn-color01: rgba(0, 27, 55, 0.1);
    --btn-color02: rgba(2, 32, 71, 0.05);
    --txt-color01: #191f28;
    --txt-color02: rgba(3, 18, 40, 0.7);;
    --txt-color03: rgba(0, 19, 43, 0.58);
    --border-color: #e5e8eb;
    --bg-color: #fff;
    --black: #000;
    --border-radius: 10px;
    /* default custom */
    --ct-menu-item-active: var(--main-color01);
    --ct-navbar-light-active-color: var(--main-color01);
    --ct-input-placeholder-color: #8391a2;
    --ct-link-hover-color: var(--txt-color01);
}
body[data-layout=topnav] .content-page {
    padding: 0;
}
body[data-leftbar-compact-mode=condensed]:not(.authentication-bg) {
    min-height: fit-content;
}
body {
    background-color: #F3F4F6;
    color: var(--txt-color02);
    padding-top: 80px; /* fixed header 높이만큼 */
}
body.gest {
    background-color: var(--bg-color);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav_logo img {
    height: 36px;
    width: auto;
}

/* PC MENU */
.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav a {
    font-size: 15px;
    color: #222;
    transition: opacity 0.2s;
}
.nav a:hover {
    opacity: 0.6;
}
.nav .contact-btn {
    padding: 12px 22px;
    border-radius: 8px;
    background: #4f8f3a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* RIGHT AREA */
.right-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* USER ICON */
.user-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.user-btn:hover {
    background: #f5f5f5;
}
.user-btn i {
    font-size: 25px;
    color: #222;
}

/* CTA BUTTON */
.contact-btn {
    padding: 12px 22px;
    border-radius: 8px;
    background: #4f8f3a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

  /* HAMBURGER */
.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #222;
    left: 0;
    transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* ACTIVE */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

.nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
    border-bottom: 1px solid #eee;
}

.nav.active {
    max-height: 500px;
}

.nav a {
    width: 100%;
    padding: 20px 24px;
    border-top: 1px solid #f5f5f5;
}

.contact-btn {
    margin: 16px 24px 24px;
}
}
/* header-end */

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--main-color01) !important;
}
.text-dark {
    color: var(--txt-color01) !important;
}
.content {
    width: 100%;
}
.inner {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
.col-lg-6 {
    max-width: 520px;
}
input,
select,
.card {
    /*background-color: transparent !important; 이거 하면 radio 테두리만 나옴 */
    box-shadow: none;
    -webkit-box-shadow: none;
}
label {
    color: var(--txt-color02);
    font-weight: normal;
    font-size: 15px;
}
.form-control,
.form-select {
    border: none;
    box-shadow: inset 0 0 0 1px var(--border-color);
    color: var(--txt-color01);
    font-size: 16px;
    padding: 0 20px;
    border-radius: var(--border-radius);
    background-color: transparent;
    height: 48px;
}
.input-group {
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    column-gap: 10px;
}
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: var(--border-radius);
    margin-left: 0;
}
.form-control:hover,
.form-select:hover {
    box-shadow: inset 0 0 0 2px var(--main-color03);
}
.form-control:focus,
.form-select:focus {
    box-shadow: inset 0 0 0 2px var(--main-color01);
}
.form-control:valid,
.form-select:valid {
    background-color: transparent !important;
}
.custom-select.is-invalid:focus,
.custom-select.is-valid:focus,
.custom-select:invalid:focus,
.custom-select:valid:focus,
.formcontrol.is-valid:focus,
.form-control:invalid:focus,
.form-control:valid:focus{
    box-shadow: inset 0 0 0 2px var(--main-color01) !important;
    color: var(--txt-color01);
}
.popover {
    max-width: 300px;
}
.popover img {
    max-width: 100%;
    width: 100%;
}
@media (max-width: 768px) {
    .popover {
        max-width: 90vw;
        width: max-content;
        left: 50% !important;
        transform: translateX(-50%) translateY(-475.781px) !important;
    }
}
i {color: var(--txt-color02)}
.btn {border-radius: var(--border-radius);}
.btn-primary {
    background-color: var(--main-color01);
    border-color: var(--main-color01);
}
.btn-primary:hover {
    background-color: var(--main-color01);
    border-color: var(--main-color01);
}
.rounded {
    border-radius: var(--border-radius) !important;
}
/* footer */
footer {
    background-color: #F7F8FA;
    padding: 20px 15px;
    color: #262626;
    word-wrap: break-word;
}

@media (max-width: 1024px) {
    .topnav-navbar.navbar-custom ul {
        float: unset;
    }
    .topnav-navbar.navbar-custom .nav-link {
        margin-left: 135%;
    }
    .form-control:hover,
    .form-select:hover {
        box-shadow: inset 0 0 0 2px var(--main-color01);
    }
}
/* graph & icon */
.widget-icon {
    border-radius: 100px;
    color: var(--txt-color02) !important;
    background-color: var(--btn-color02) !important;
}
.widget-icon.widget-icon-invert {
    color: var(--txt-color01) !important;
    background-color: var(--bg-color) !important;
}
/* login */
.index_btn {
    background-color: var(--btn-color02);
    display: inline-flex;
    justify-content: space-around;
    width: 100%;
    border: none;
    color: var(--txt-color01);
    align-items: center;
    gap: 5px;
    word-break: keep-all;
    transition: background .2s ease, color .1s ease;
}
.index_btn:hover {
    background-color: var(--btn-color01);
}
.index_btn img {
    width: 40%;
}
.account-pages {
    margin: auto;
    width: 100%;
    padding: 24px;
}
.account-pages.login {
    max-width: 520px;
}
.text-style {
    font-size: 2rem;
	font-weight:600;
    color: var(--txt-color01);
}

/* index */
.dashboard_card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.items_box {
    display: grid;
    grid-template-columns: 80px 1fr;
}
.items_name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.items_number {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
}
.items_number em {
    font-size: 15px;
    font-style: normal;
    color: #00000099;
    font-weight: normal;
}

.dash_ul li {
    padding: 10px 0;
    overflow: hidden;
    min-height: 67.5px;
}
.dash_ul li:not(:last-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, .2);
}
.dash_ul li .name {
    font-size: 15px;
    color: #000;
}
.dash_ul li .number {
    text-align: right;
}
.dash_ul li .number div {
    font-size: 17px; font-weight: 600; color: #000;
}
.dash_ul li .number p {
    color: #00000065; font-size: 14px;
}

/* main_box */
.main_box_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}
.main_box {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, .3);
    border-radius: 10px;
    background: lightblue;
    padding: 20px;
    word-break: auto-phrase;
}

/* 퍼센테이지 바 */
.gauge {
    position: absolute;
    top: -2px;
    left: 0px;
    background: linear-gradient(to left, #4f6cff 0%, #c582fb 50%);
    height: 22px;
    padding: 0 5px;
    border-radius: 11px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .15);
    font-size: 10px;
    font-weight: 500;
    line-height: 22px;
    animation: animate 2s linear;
}

/* 하단 네비게이션 */
.bottomnav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 768px;
    width: 100%;
    height: 60px;
    background: #fff;
    box-shadow: 0 -10px 15px rgba(0, 0, 0, .07);
    display: flex;
    justify-content: space-around;
    z-index: 1;
}
.bottomnav a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 100%;
    gap: 1px;
}
.bottomnav a img {
    width: 30%;
}

/* estimate_form */
input[type=file]::file-selector-button {
    width: 30%;
    height: 30px;
    background-color: #E9E9EB;
    font-family: 'SunBatang-Light';
    color: #3b3b3b;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;

}
input[type=file]::file-selector-button:hover {
transition: 0.3s;
background-color: #d2d2d3;
}