@charset "utf-8";

/*
 * File       : alert.css
 * Author     : SMART GEO
 * Guideline  : -
 * Update : 2022-03-21
 *
 * Dependency : 알림창 스타일
 *
 * SUMMARY:
 * 01) 기본알림창 스타일
 * 02) 커스텀알림창 스타일
 */

/* **************************************** *
 * 01) 기본알림창 스타일
 * **************************************** */
.alt_wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    z-index: 100001;
}
.alt_wrap .alt_content {
    position: absolute;
    background-color: #fefefe;
    width: 25%;
    min-width: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}
.alt_wrap .alt_content .alt_title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    font-size: 20px;
    color: #ffffff;
    background: #2A3760;
    text-align: left;
    overflow: hidden;
}
.alt_wrap .alt_content .alt_input input {
    padding: 5px;
    width: 90%;
}
.alt_wrap .alt_close {
    position: absolute;
    right: 20px;
    top: 14px;
    font-size: 35px;
    font-weight: bold;
    z-index: 100;
    color: #ffffff;
}
.alt_wrap .alt_close:hover,
.alt_wrap .alt_close:focus {
    color: #414144;
    text-decoration: none;
    cursor: pointer;
}
.alt_wrap .alt_content .alt_msg{
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
    justify-content: center;
    flex-direction: column;
    align-content: center;
}
.alt_wrap button, input[type="button"], input[type="submit"], select{
    cursor: pointer;
}
.alt_wrap .btn_normal,
.alt_wrap a.btn_normal {
    display: block;
    padding: 0 60px;
    margin: 0 auto;
    font-size: 16px;
    color: #fff;
    background: #2A3760;
    box-sizing: border-box;
    line-height: 44px;
    height: 44px;
    border: 0;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 6px;
}
.alt_wrap input[name="alt_cancel"]{
    background: linear-gradient(to right, #efefef 0%, #ececec 100%)!important;
    color: #414144!important;
    border: 1px solid #ececec!important;
}
.alt_wrap .alt_result{
    margin: 10px;
}
.alt_wrap .alt_close{
    display: none;
}
.alt_wrap .alt_title{
    display: none;
}
.alt_wrap .alt_result{
    margin: 16px 20px 10px;
}
.alt_wrap .alt_content{
    padding-bottom: 0;
    border-radius: 3px;
    width: 80%;
    min-width: 325px;
    max-width: 500px;
}
.alt_wrap .alt_button {
    padding-bottom: 25px;
}
.alt_wrap .alt_confirm{
    position: relative;
    bottom: 0;
    width: 100%;
}
.alt_wrap .alt_confirm .btn_normal{
    width: 50%;
    float: left;
    display: inline;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: #2A3760;
    box-sizing: border-box;
    line-height: 44px;
    height: 52px;
    transition: all 0.2s;
    border-radius: 0;
    border: 1px solid #2A3760;
}
.alt_wrap input[name="alt_cancel"]{
    border: 1px solid #ececec;
}
.alt_wrap .alert_impact{
    font-size: 14px;
    margin-top: 6px;
    color: #777777;
}
@media screen and (max-width: 1140px) {
    .alt_wrap .alt_content {
        width: 85%;
        max-width: unset;
    }
    .alt_wrap .alt_content .alt_title{
        font-size: 16px;
    }
    .alt_wrap .alt_content .alt_msg{
        font-size: 16px;
    }
    .alt_wrap .btn_normal,
    .alt_wrap a.btn_normal{
        font-size: 14px;
        padding: 0 30px;
    }
    .alt_wrap .alt_result{
        margin: 30px 20px 10px;
    }
}

/* **************************************** *
 * 02) 커스텀알림창 스타일
 * **************************************** */

.alt_wrap .alert_font{
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
}
.alt_wrap .alert_font_sub{
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
}
.alt_wrap .alert_font_color{
    color: #F26F3D;
}
.alt_wrap .alt_content .alt_msg.type_line1{
    margin: 0;
}

