.ms-controller {
    visibility: hidden
}

.live-search {
    position: relative;
    width: 100%;
}

.live-search > i {
    position: absolute;
    /*top: 0px;*/
    /*right: -35px;*/
}

.live-search > input { /*width: 100%;*/
}

.live-search-list {
    border: 1px solid #ffffff;
    border-radius: 3px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.46);
    width: 100%;
    /*margin-top: 40px;*/
    min-width: 250px;
    position: absolute;
    background-color: #ffffff;
    z-index: 9;
    margin-left: -50px;
}

.live-search-list > div {
    padding: 5px;
}

.live-search-list .l-s-i {
    cursor: pointer;
}

.modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(55, 55, 55, 0.6);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center; }

.confirm-content {
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px; }

.modal-confirm {
    width: 400px;
    box-sizing: border-box;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 6px;
    transition: transform .3s ease; }
.modal-confirm i {
    color: #fa0;
    font-size: 24px;
    position: relative;
    top: 2px; }
.modal-confirm .confirm-btns {
    text-align: right; }

.modal-box {
    width: 520px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 6px; }

@media only screen and (max-width: 640px) {
    .modal-confirm {
        width: 100%;
        margin: 0 20px;
        padding: 10px 20px; }
    .modal-box {
        width: 100%;
        margin: 0 20px; } }

.modal-header {
    padding: 13px 18px 14px 16px;
    border-bottom: 1px solid #e9e9e9;
    position: relative; }
.modal-header i {
    position: absolute;
    right: 20px;
    /*top: 15px;*/
    font-size: 14px;
    cursor: pointer; }
.modal-header h3 {
    font-size: 14px;
    text-align: center;
}

.modal-body {
    padding: 16px; }

.modal-close {
    color: #000;
    font-weight: 700; }

.modal-footer {
    padding: 10px 18px 10px 10px;
    border-top: 1px solid #e9e9e9;
    background: #fff;
    border-radius: 0 0 6px 6px;
    text-align: right; }

.modal-enter {
    opacity: 0; }

.modal-enter-active {
    opacity: 1; }
.modal-enter-active .modal-confirm {
    transform: scale(1.1); }
.modal-enter-active .modal-box {
    transform: scale(1.1); }

.modal-leave {
    opacity: 1; }

.modal-leave-active {
    opacity: 0; }
.modal-leave-active .modal-confirm {
    transform: scale(1.1); }
.modal-leave-active .modal-box {
    transform: scale(1.1); }

.modal-enter, .modal-leave {
    transition: all .3s ease; }
.live-search-selected-row{
    background-color: #c2ff9f;
}