@charset "utf-8";

@font-face{font-family:nbg;  src: url('../font/NanumBarunGothic.ttf') format("truetype");}
*{color: #2d2d2d; font-family:nbg;}

body {
    span{
        background: none !important;
    }
    div{   max-width: none !important;}

    .d-flex{
        display: none !important;
    }

    .rd-body-wrapper{
        width: 100% !important;
        height: calc(100vh - 85px) !important;
        overflow: auto !important;

        .small {
            display: none !important;
        }
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    } to {
          opacity: 1;
      }
}

.wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-left: none !important;
    border-right: none !important;
    border-top: 2px solid #e2e2e2 !important;
    min-width: 800px;

}
.log-wrap{
    display: flex;
    flex-direction: column;
    width: 800px;
    height: 100%;
    margin: 20px;

    h2{
        font-size: 26px;
    }
    .top {
        display: flex;
        border-top: 2px solid #e2e2e2;
        margin-top: 20px;

        .left, .right {
            flex: 1;
            text-align: center;
            padding: 10px 20px;
        }

        .left {
            position: relative;

            .type-sel{
                gap: 12px;
                display: flex;
                justify-content: center;
                font-size: 16px;
                margin: 20px 0;

                input{
                    margin-right: 8px;
                    cursor: pointer;
                }
            }

            .input-wrap{
                display: flex;
                flex-direction: column;
                gap: 8px;
                text-align: left;
                margin-bottom: 10px;

                label{
                    font-size: 12px;
                    color: #7C7C7C;
                    font-weight: bold;
                }

                input{
                    border: 2px solid #7C7C7C;
                    padding: 8px 12px;
                    border-radius: 6px;
                    background-color: #E8F0FE;
                    font-size: 16px;
                    outline: none;
                }

                input:focus {
                    border: 2px solid black;
                    padding: 8px 12px;
                }

                button{
                    margin-top: 16px;
                    background-color: #246BEB;
                    color: #fff !important;
                    font-size: 16px;
                    padding: 10px 0;
                    border-radius: 6px;
                }
            }

            .find-info{
                display: inline-block;
                font-size: 14px;
                margin-bottom: 20px;

                ul {
                    display: flex;
                    gap: 16px;
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        font-size: 12px;
                        font-weight: bold;
                        color: #7C7C7C;
                    }
                }

            }
        }

        .left::after {
            content: "";
            position: absolute;
            top: 10%;
            bottom: 10%;
            right: 0;
            width: 2px;
            background-color: #e2e2e2;
        }

        .right {
            display: flex;
            text-align: left;

            ul{
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 20px;
                list-style: disc;
                padding-left: 20px;

                li{
                    font-weight: bold;
                    font-size: 12px;
                    color: #7C7C7C;
                }
            }
        }

    }

    .bottom {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        border-top: 2px solid #e2e2e2;
        p {
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 20px;

            a {
                margin-left: 8px;
                color: #7C7C7C;

                &:hover {
                    color: #246BEB;
                }

                span {
                    font-size: 10px;
                }
            }
        }

        .bottom-info {
            display: flex;
            padding: 20px;
            background-color: #F8F8F8;
            text-align: left;
            flex-direction: column;
            border-radius: 6px;

            div {
                padding: 0 30px;
                ul{
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    list-style: disc;
                    padding-bottom: 10px;

                    li{
                        font-weight: bold;
                        font-size: 12px;

                        span{
                            color: red;
                        }
                    }
                }
            }

        }
    }
}
