.setting_shop_promotion{
    .description{
        display: flex;
        align-items: center;
        justify-content: space-between;
        .content__subtitle{
            width: 70%;
            font-size: 14px;
        }
        .btn_addPromotion{
            border: 0;
            background: #004f9c;
            color: #fff;
            padding: 8px 15px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
            &:after{
                content: '+';
                margin-left: 10px;
                font-size: 1.6em;
                line-height: 0.9em;
            }
            &:focus{
                outline: 0;
            }
        }
    }
    .promotionlist{
        width: 100%;
        margin-top: 20px;
        tr{
            border-bottom: 1px solid #d9d9d9;
            &.enable_status_delete{
                opacity: 0.5;
            }
        }
        th{
            padding: 10px 0;
            .title_info{
                display: flex;
            }
            .icon_info{
                width: 15px;
                cursor: pointer;
                margin-left: 5px;
            }
            .info{
                display: none;
                position: absolute;
                padding: 15px 20px;
                background: #fff;
                border-radius: 5px;
                box-shadow: 1px 1px 5px #ddd;
                font-size: 12px;
                font-weight: 100;
            }
            .title_info:hover + .info{
                display: block;
            }
        }
        td{
          padding: 15px 0;
          // &:first-child{
          //     display: flex;
          // }
          &:last-child{
              text-align: center;
          }
          &.disabled{
            opacity: 0.5;
          }
        }

        &__name {
            display: flex;
        }

        &__expired{
          font-size: 12px;
          color: red;
        }

        &__switch{
            position: relative;
            margin-right: 20px;
            input[type=checkbox]{
                height: 100%;
                width: 100%;
                position: absolute;
                opacity: 0;
            }
            
            label {
                cursor: pointer;
                text-indent: -9999px;
                width: 40px;
                height: 24px;
                background: grey;
                border-radius: 100px;
                position: relative;
                display: flex;
                align-items: center;
                margin-bottom: 0;
            }
            
            label:after {
                content: '';
                position: absolute;
                left: 2px;
                width: 20px;
                height: 20px;
                background: #fff;
                border-radius: 50%;
                transition: 0.3s;
            }
            
            input:checked + label {
                background: #9ecc3b;
            }
            
            input:checked + label:after {
                left: calc(100% - 2px);
                transform: translateX(-100%);
            }
        }
        .text-center{
            text-align: center;
        }
        .btn_edit{
          display: inline-flex;
            img{
                width: 17px;
                height: 17px;
            }
        }
        .btn_view{
          display: inline-flex;
          svg{
            width: 20px;
            height: 19px;
            margin-left: 10px;
          }
          &.disabled{
            opacity: 0.5;
          }
        }
        
        .nodata{
            display: table-cell !important;
            color: #d9d9d9;
        }
    }
    @media only screen and (max-width: 992px) {
        .description{
            display: block;
            .content__subtitle{
                width: 100%;
                margin-bottom: 20px;
            }
        }
    }
}