
html,
body {
    height: 100%;
}

body{
    margin: 0;
    padding: 0;
    font-family: "Noto Sans KR";
    font-size: 14px;
    color: var(--basic-black);
   /*  display: flex;
    flex-direction: column; */
}

body.modal--open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
input,
textarea,
button,
a,
span,
p {
    font-style: normal;
    font-family: "Noto Sans KR" !important;
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
    border: 0 none;
    vertical-align: middle;
}

input {
    margin: 0;
    letter-spacing: -0.15px;
    box-sizing: border-box;
}
/* Change the color to your own background color */
/* input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
	-webkit-transition: background-color 9999s ease-out;
	-webkit-box-shadow: 0 0 0px 1000px white inset !important;
	-webkit-text-fill-color: #ccc !important;
} */

h1,
h2,
h3,
h4,
p {
    letter-spacing: -0.05em;
}

a,
a:hover,
a:focus,
a:visited {
    color: var(--basic-black);
    text-decoration: none;
    cursor: pointer;
}

p {
    letter-spacing: -0.15px;
    line-height: 23.17px;
}

label,
input[type=button],
input[type=reset],
input[type=submit],
button,
input[type=checkbox],
input[type=radio] {
    margin: 0;
    padding: 0;
    cursor: pointer;
}

form {
    margin: 0;
    position: relative;
}

ul {
    margin: 0;
    padding-left: 7.5px;
    color: var(--basic-gray);
    letter-spacing: -0.15px;
    font-weight: 400;
    list-style-position: outside;
}
ul li {
    color: inherit;
    line-height: 17px;
    letter-spacing: inherit;
    font-weight: inherit;
    font-size: inherit;
}

dl {
    display: flex;
    justify-content: space-between;
    margin: 0 0 8px;
    padding: 0;
    letter-spacing: -0.05em;
}
dl dt {
    margin: 0;
    height: 35px;
    line-height: 35px;
    font-weight: 500;
    font-size: 16px;
    overflow:hidden;
}
dl dd {
    display: flex;
    margin:0;
    text-align: right;
    font-weight: 500;
    font-size: 18px;
    align-items: center;
}

.unstyled {
    margin: 0;
    padding: 0;
}
.unstyled li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.d-block {
    display: block;
}
.d-flex {
    display: flex;
}
.d-grid {
    display: grid;
}
.d-none {
    display: none;
}
.d-justify {
    justify-content: space-between;
}

.flex-left {
    justify-content: flex-start !important;
}

.flex-self-left {
    align-self: flex-start;
}
.flex-self-center {
    align-self: center;
}

.flex-center {
    align-items: center;
    justify-content: center;
}
.flex-right {
    justify-content: flex-end;
    align-self: flex-end;
}
.flex-row {
    flex-direction: column;
}

.grid-2-column {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3-column {
    grid-template-columns: repeat(3, 1fr);
}

.medium {
    font-size: 18px;
}

.size--14 {
    font-size: 14px;
	font-weight: 500;
}
.size--16 {
    font-size: 16px;
}
.size--18 {
    font-size: 18px;
}

.text--thin {
    font-weight: 100;
}
.text--light {
    font-weight: 300;
}
.text--demilight {
    font-weight: 350;
}
.text--reguler {
    font-weight: 400;
}
.text--medium {
    font-weight: 500;
}
.text--bold {
    font-weight: 500;
}
.text-bold {
    font-weight: 500;
}
.text-bbold {
    font-weight: 700;
}

.text--left {
    text-align: left !important;
}

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

.text--medium {
    font-size: 16px;
}

.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-24{
    margin-top: 24px !important;
}
.mb-0 {
    margin-top: 0 !important;
}
.mb-24 {
    margin-bottom: 24px !important;
}

.p-0 {
    padding: 0 !important; 
}
.pr-0 {
    padding-right: 0 !important;
}

.nowrap {
    white-space: nowrap;
}
.bg--lightgray {
    background-color: var(--lightgray);
}
.bg--none {
    background: transparent;
}
.b-none,
.b--none {
    border: 0 none !important;
}
.b-dfdfdf,
.b--dfdfdf {
    border: 0.35px solid #DFDFDF !important;
}

[name=box_logedin] {display:none} /*로그인 사용자가 볼 수 있는 박스. 기본숨김*/
[name=box_unlogedin] {display:auto} /*로그아웃 사용자가 볼 수 있는 박스. 기본표시*/

.mobile-only {
    display: none!important;
}

.mobile-bottom {
    display: none;
}

@media (max-width: 800px) {
    .mobile-bottom {
        width: 100%;
        height: 72px;
        position: fixed;
        bottom: 0;
        background: var(--white);
		box-shadow: -4px -20px 30px rgb(0 0 0 / 8%);
		z-index: 101;
    }
    .mobile-bottom li {
        height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-weight: 700;
        font-size: 8px;
        letter-spacing: -0.3px;
        flex: 1 1 auto;
    }
    .mobile-bottom .exchange::before {
        width: 20px;
        height: 20px;
        display: block;
        content: "";
        background: url('../img/icon/icon-exchange.svg') no-repeat 50%;

    }
    .mobile-bottom .area::before {
        width: 23px;
        height: 20px;
        display: block;
        content: "";
        background: url('../img/icon/icon-area.svg') no-repeat 50%;
    }
    .mobile-bottom .auction::before {
        width: 20px;
        height: 20px;
        display: block;
        content: "";
        background: url('../img/icon/icon-auction.svg') no-repeat 50%;
    }
    .mobile-bottom .transaction::before {
        width: 20px;
        height: 20px;
        display: block;
        content: "";
        background: url('../img/icon/icon-transaction.svg') no-repeat 50%;
    }
    .mobile-bottom .more a {
        color: var(--red-up);
    }
    .mobile-bottom .more::before {
        width: 20px;
        height: 20px;
        display: block;
        content: "";
        background: url('../img/icon/icon-more.svg') no-repeat 50%;
    }
}

.mobile-only,
.mobile-only-block {
    display:none;
}
@media (max-width: 600px) {
	.desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
	.mobile-only-block{
		display: block
	}

}

@media only screen and (max-width: 1400px) {
   h1,h2,h3,h4,h5,input,textarea,button,a,span,p {
      -webkit-tap-highlight-color : transparent !important;
   }
}

