﻿
#authentication-modal .modal_wrap {
    width: 450px;
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
}

#authentication-modal .modal_wrap > .modal-content {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* 인증하기모달팝업 */
#authentication-modal .modal-content > .modal-header {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

#authentication-modal .modal-content > .modal-desc > p {
    font-size: 14px;
    color: var(--color-grey_600);
    text-align: center;
    margin-bottom: 5px;
}


#authentication-modal .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 0 10px;
    margin-top: 20px;
}

#authentication-modal .list > .box {
    width: 100%;
    padding: 35px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid var(--color-grey_200);
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

#authentication-modal .list > .box:hover {
    background-color: var(--color-grey_100);
}

#authentication-modal .list > .box:first-child {
    margin-bottom: 16px;
}

#authentication-modal .list > .box > .icon_img {
    width: 88px;
    height: 88px;
    background: url(../../img/icons/certified_img.png) no-repeat 0px 0px;
    background-image: -webkit-image-set(url(../../img/icons/certified_img.png) 1x, url(../../img/icons/certified_img@2x.png) 2x, url(../../img/icons/certified_img@3x.png) 3x);
    margin-bottom: 10px;
}

#authentication-modal .list > .box:nth-child(2) > .icon_img {
    background-position: 0px -88px;
}


#authentication-modal .list > .box:nth-child(1):hover > .icon_img {
    background-position: -88px 0px;
}

#authentication-modal .list > .box:nth-child(2):hover > .icon_img {
    background-position: -88px -88px;
}


#authentication-modal .list > .box > p {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

#authentication-modal .list > .box:hover > p {
    text-decoration: underline;
}

@media (max-width: 500px) {
    #authentication-modal .modal_wrap {
        width: 400px;
    }
}

@media (max-width: 450px) {
    #authentication-modal .modal_wrap {
        width: 360px;
    }

    #authentication-modal .list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #authentication-modal .list > .box {
        padding: 25px 0;
    }

}

@media (max-width: 390px) {
    #authentication-modal .modal_wrap {
        width: 340px;
    }

    #modal-document-evidence .masking-desc .masking-desc-01 .img-area{
        max-width: 160px;
    }
}