.nb-delivery-date {
    width: 100%;
    height: 100%;
    margin-top: 15px;
    padding: 0 20px;
    overflow: auto;

    &__item {
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        padding: 0 10px;
        margin-bottom: 10px;
        background-color: #f6f7f9;
        border-radius: 5px;
        color: #333333;
        font-size: 14px;
        border: 1px solid transparent;
        @include text-ellipsis();

        &--current {
            background-color: #fce0df;
            border: 1px solid #fa2c19;
            color: #fa2c19;
        }

        &--disable {
            background-color: #cecece;
            border: 1px solid #cecece;
            color: #999;
        }
    }
}