body {
    font-family: 'Pretendard', 'NotoSans', 'NotoSansCJK', 'Noto Color Emoji';
}

div {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div::-webkit-scrollbar {
    width: 5px;
}

div::-webkit-scrollbar-thumb {
    background-color: #dbdee1;
    border-radius: 5px;
}

input {
    width: 100%;
    height: 58px;
    box-shadow: 0 0 0 1px #dbdee1 inset;
    border-radius: 20px;
    color: #191f28 !important;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.025em;
    -webkit-appearance: none;
}

input::placeholder {
    color: #999fa9;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.025em;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="email"]:hover {
    box-shadow: 0 0 0 1px #999fa9 inset;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    /* WebKit browsers */
    color: transparent !important;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: transparent !important;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: transparent !important;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: transparent !important;
}

button {
    -webkit-tap-highlight-color: transparent;
}

p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

span {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

font {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px #191f28 inset;
}

input[type="text"]:hover:focus,
input[type="password"]:hover:focus,
input[type="email"]:hover:focus {
    outline: none;
    box-shadow: 0 0 0 2px #191f28 inset;
}

.hidden {
    display: none;
}

.disabled {
    pointer-events: none;
}

.wrapper .main__title {
    color: #191f28;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -0.025em;
}

.wrapper .main__sub__title {
    color: #76808f;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.025em;
}

.wrapper .title {
    color: #191f28;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.025em;
}

.wrapper .sub__title {
    color: #76808f;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.025em;
}

.input_title {
    color: #191f28;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.025em;
}

.input_star {
    font-weight: 600;
}
.alert_msg {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.025em;
    color: #ff3a3a;
}

.border_check_alert {
    box-shadow: 0 0 0 2px #ff3a3a inset !important;
}

.color_check_alert {
    color: #ff3a3a;
}

.popup_btn {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: #191f28f2 !important;
    box-shadow: 0 5px 10px 0 rgba(25, 31, 40, 0.15);
}

.disabled.popup_btn {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: #dbdee1f2 !important;
    box-shadow: 0px 5px 10px 0px rgba(117, 145, 181, 0.15);
}

.btn_wrap {
    position: fixed;
    width: inherit;
    z-index: 10; 
    display: flex;
    justify-content: center;
}

.btn:hover {
    background-color: #000 !important;
}

.btn:active {
    transform: scale(0.97);
    background: rgba(0, 0, 0);
}

.btn.btn__blur {
    background: rgba(25, 31, 40, 0.95);
    box-shadow: 0px 5px 10px 0px rgba(25, 31, 40, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #ffffff;
}
.btn.btn__blur:hover{
    background: rgba(0, 0, 0, 0.95);   
}

.btn.btn__blur:active{
    transform: scale(0.97);   
    background: rgba(0, 0, 0, 0.95);   
}

.btn.disabled.btn__blur {
    background: rgba(219, 222, 225, 0.95);
    box-shadow: 0px 5px 10px 0px rgba(117, 145, 181, 0.15);
}
.grid-stack-item-content {
    height: inherit;
}

/* 600px 미만 모바일 웹 화면 */
@media (orientation: Portrait) and (max-width: 600px) {
    html {
        font-size: calc(16 * 10vw / 39);
    }
}

/* 600px 이상 1024px 미만 모바일 웹 화면 */
@media (orientation: Portrait) and (min-width: 600px) and (max-width: 814px) {
    html {
        font-size: 16px;
    }
}

/* 600px 이상 1024px 미만 모바일 웹 화면 */
@media (orientation: Portrait) and (min-width: 815px) and (max-width: 1024px) {
    html {
        font-size: 16px;
    }
}

/* 1024px 이상 웹 화면 */
@media (orientation: Portrait) and (min-width: 1024px) {
    html {
        font-size: 16px;
    }
}

/* 1024px 이상 모바일 웹 가로보기*/
@media (orientation: Landscape) and (min-width: 1024px) {
    html {
        font-size: 16px;
    }
}
