
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */

/*# sourceMappingURL=custom.css.map */
input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{

    -webkit-appearance: none;
    
}
.select2-container {
    z-index: 99999;
}

#monitor {
    margin: auto;
    position: relative;
    width: 220px;
    height: 250px;
    border: 1px solid rgba(0, 0, 0, .1);
}

#monitor .screen {
    margin: auto;
    margin-top: 10px;
    width: 200px;
    height: 230px;
    background: transparent url('http://www.terminally-incoherent.com/blog/wp-content/uploads/2010/02/maketitle.jpg');
    background-size: cover;
    background-color: rgba(0, 0, 0, .2);
}
.startScan{
    animation:scan 1s infinite;
}
#monitor .scan {
    width: 100%;
    height: 10px;
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    z-index: 9999;
    /* -moz-animation: scan 5s infinite;
    -webkit-animation: scan 5s infinite; */
    -webkit-animation-direction: alternate-reverse;
    box-shadow: 0px 0px 30px rgba(255, 204, 102, .5);
}
.modal{
    overflow-y: scroll;
}
@-webkit-keyframes scan {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(210px);
        transform: translateY(240px);
    }
}