﻿#ctiTickets {
    border: 2px solid #000;
    border-image: none;
    left: 0px;
    position: absolute;
    background-color: white;
    display: none;
    z-index: 2000;
    overflow: hidden;
}

#ctiTickets div.header {
    padding: 10px;
    background-color: orange;
    height: 40px;
}

#ctiTickets div.header a {
    font-size: 22px;
    margin-top: -5px;
    float: right;
}

#ctiTickets div.header.blink {
    -webkit-animation: ctiTicketsHeader 0.8s infinite;
    -moz-animation: ctiTicketsHeader 0.8s infinite;
    animation: ctiTicketsHeader 0.8s infinite;
}

#ctiTickets table {
    cursor: default !important;
}

#ctiTickets table td {
    white-space: nowrap;
}

#ctiTickets input[type=text] {
    width: 250px;
}

button.create {
    width: 110px;
}

@-webkit-keyframes ctiTicketsHeader {
    0%, 49% {
        background-color: #ffa500;
    }

    50%, 100% {
        background-color: #ff8c00;
    }
}

@-moz-keyframes ctiTicketsHeader {
    0%, 49% {
        background-color: #ffa500;
    }

    50%, 100% {
        background-color: #ff8c00;
    }
}

@keyframes ctiTicketsHeader {
    0%, 49% {
        background-color: #ffa500;
    }

    50%, 100% {
        background-color: #ff8c00;
    }
}
