.bargain-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column;
    width: 300px;
    height: 195px;
    padding: 20px;
    background: $white;
    border-radius: 3px;

    .title {
        text-align: center;
        font-size: $font_16;
        margin-bottom: 12px;
    }

    .list {
        .am-list-item {
            height: 30px;
            min-height: 30px;
            border: 1px solid $border_ddd;

            input {
                font-size: $font_12;
            }
        }

        .am-list-item {
            margin-bottom: 15px;
        }

        .am-list-line {
            &::after {
                display: none;
            }
        }

        .am-list-body {
            &::after {
                display: none;
            }
        }
    }

    button {
        display: inline-block;
        width: 260px;
        height: 30px;
        background: $bg_999;

        -webkit-appearance: none;
        border: none;

        font-size: $font_16;
        color: $white;
        text-align: center;
        line-height: 30px;
    }
}