/* Login
---------------------------------------- */
.login-wrapper {
    /* background: url('../bg_login.png') center/cover no-repeat; */

    position: absolute;
    top: 0;
    /* bottom: 0; */
    left: 0;
    right: 0;
    min-height: calc(100% - 0px);
   /* padding-top: var(--gnb-height);
    padding-bottom: var(--gnb-height);*/
	
    /* gnb header 사용시 top을 gnb-height로 바꾸고 padding-bottom 값만 적용 */
    overflow: hidden;
     display: flex;
    justify-content: center;
    align-items: center; 
	
	background: #23304f;
}
.login-wrapper.signup {
    background: #666666;
}
.login-wrapper .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.login-wrapper .card {
    margin:  auto;
    padding: 56px 40px;
    width: 600px;
}

.login-wrapper .input-wrapper .input-div {
    flex-direction: column;
    align-items: start;
}
.login-wrapper .input-div label {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
}
.login-wrapper .input-div .input-radio label {
    display: inline-block;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin-left: 5px;
    margin-right: 0;
    margin-bottom: 0;
    /* width: 80px; */
}
.login-wrapper .input-div .input-check label, .input-div.terms .input-check label {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 0 5px;
}

.terms h3 {
    margin-bottom: 8px;
}

.mobile-header {
    display: none;
}
.pc-header {
    display: block;
}


/* Sign up
---------------------------------------- */
.btn-verify {
    position: relative;
    background-color: #fff;
    color: var(--primary-color);
    font-weight: bold;
    border: 1px solid var(--primary-color);
}
.btn-verify::before {
    content: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 20.25V3.75C18 2.92157 17.3284 2.25 16.5 2.25L7.5 2.25C6.67157 2.25 6 2.92157 6 3.75L6 20.25C6 21.0784 6.67157 21.75 7.5 21.75H16.5C17.3284 21.75 18 21.0784 18 20.25Z' stroke='%2300479D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 5.25H15' stroke='%2300479D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    position: absolute;
    left: 16px;
    vertical-align: middle;
}


/* Navigation
---------------------------------------- */
.gnb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: var(--gnb-height);
    padding: 0 1rem 0 2rem;
    border-bottom: 1px solid #bbb;
    background-color: var(--gnb-bg-color);
    color: var(--gnb-text-color);
}

.gnb div.logo {
    width: var(--lnb-width);
    height: var(--gnb-height);
    display: flex;
    justify-content: start;
    align-items: center;
}

.gnb > menu,
.gnb > ul {
    display: flex;
    height: var(--gnb-height);
    /* height: calc(var(--gnb-height) + 100px); */
    align-items: flex-start;
    list-style: none;
    padding-inline-start: 0;
    margin-block: 0;
}

.gnb > menu.active,
.gnb > ul.active {
    height: calc(var(--gnb-height) + 100px);
}

.gnb .main-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gnb .main-menu .main-btn-wrapper {
    height: var(--gnb-height);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gnb .main-menu .sub-menu {
    display: block;
    width: 100%;
    height: 0px;
    overflow: hidden;
    /* display: block;
    height: 100px; */
    padding: 0;
    background-color: var(--gnb-sub-color);
    list-style: none;
    transition: height 2s;
    z-index: 100;
}

.gnb menu.active .main-menu .sub-menu, .gnb ul.active .main-menu .sub-menu {
    display: block;
    height: 100px;
}

.gnb .sub-menu button {
    background-color: var(--gnb-sub-color);
    color: #000;
}

.gnb .sub-menu button:hover {
    background-color: var(--gnb-sub-hover);
}

.gnb div.util {
    width: var(--lnb-width);
    height: var(--gnb-height);
    padding-right: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.lnb {
    position: absolute;
    left: 0;
    top: var(--gnb-height);
    bottom: 0;
    width: var(--lnb-width);
    padding: 1rem;
    /* border-right: 1px solid #bbb; */
}

.lnb menu,
.lnb ul {
    list-style: none;
    padding-inline-start: 0;
    margin-block: 0;
    /* border: 1px solid #aaa; */
}

.lnb menu li,
.lnb ul li {
    overflow: hidden;
}

.lnb menu li button,
.lnb ul li button {
    width: 100%;
    height: var(--lnb-button-height);
    background-color: var(--lnb-button-color);
    color: var(--lnb-btn-text-color);
    transition: 0.4s;

    font-size: 18px;
}
.lnb menu li button:not(first-of-type),
.lnb ul li button:not(first-of-type) {
    margin-top: 0.5rem;
}

.lnb button img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.lnb menu li button:hover,
.lnb ul li button:hover,
.lnb button.active {
    background-color: var(--lnb-hover-color);
    color: var(--btn-default-color);
}
.lnb menu li button:hover img,
.lnb ul li button:hover img,
.lnb button.active img {
    filter: var(--filter-default-color);
}

/* Main
-------------------------------------- */
main {
    margin-left: var(--lnb-width);
    padding: 1rem;
    background-color: var(--main-bg-color);

    position: absolute;
    top: var(--gnb-height);
    bottom: 0;
    left: 0;
    right: 0;

    overflow-x: hidden;
    overflow-y: auto;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 0.5rem 0;
    font-size: 0.75rem;
    list-style: none;
}

.breadcrumb li:first-child {
    /*font-weight: bold;*/
}

.breadcrumb li:not(:is(li, first-child)) {
    padding-left: 0.25rem;
}

.breadcrumb li + li::before {
    float: left;
    padding-right: 0.25rem;
    color: #aaa;
    content: ">";
}

.breadcrumb a {
    text-decoration: none;
}

.dashboard-strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}



@media screen and (max-width: 600px) {
    .login-wrapper, .login-wrapper.signup {
        background: none;
       /* top: var(--gnb-height);*/
        padding-top: 0;
    }
	
    .login-wrapper .card {
        max-width: 100vw;
    }

}