/*
/* All Tickets
*/
.client-ticket-list-container .tickets-header {
    user-select: none;
    -webkit-user-select: none;
}

.client-ticket-list-container .tickets-header h5 {
    font-size: 18px;
    font-weight: 600;
}

.client-ticket-list-container .ticket-item,
.client-ticket-list-container .tickets-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #36474e;
    padding: 15px 0;
}

.client-ticket-list-container .ticket-item {
    cursor: pointer;
}

.client-ticket-list-container .ticket-item:hover {
    background: radial-gradient(circle at center, #122935 0%, transparent 100%);
}

.client-ticket-list-container .tickets-header {
    padding-top: 0;
}

.client-ticket-list-container .ticket-item-subject,
.client-ticket-list-container .tickets-header-subject {
    width: 100%;
}

.client-ticket-list-container .ticket-item-subject img {
    width: 13px;
    margin-right: 5px;
}

.client-ticket-list-container .tickets-header-created {
    width: 195px;
    margin-left: 30px;
    user-select: none;
    -webkit-user-select: none;
}

.client-ticket-list-container .ticket-item-created {
    width: 180px;
    margin-left: 30px;
    user-select: none;
    -webkit-user-select: none;
}

.client-ticket-list-container .ticket-item-status,
.client-ticket-list-container .tickets-header-status {
    width: 115px;
}

.client-ticket-list-container .category {
    font-size: 14px;
}

.client-ticket-list-container .website-url {
    color: #7CD9FF;
}

@media only screen and (max-width: 600px) {
    .client-ticket-list-container .tickets-header {
        display: none;
    }

    .client-ticket-list-container .ticket-item .ticket-item-created,
    .client-ticket-list-container .ticket-item .component-status-badge {
        display: none;
    }
}



/*
/* View Ticket
*/
.client-view-ticket-header .ticket-badges {
    margin-bottom: 15px;
    display: flex;
}

.client-view-ticket-header .component-status-badge {
    margin-right: 20px;
}

.client-view-ticket-header h1 {
    font-size: 27px;
}

.client-view-ticket-header .ticket-meta {
    font-size: 14px;
}

.client-view-ticket-replies {
    margin-top: 40px;
}

.client-view-ticket-form {
    margin-top: 60px;
}

#component-ticket-reply-form .component-file-attachments {
    margin-top: 35px;
}



/*
/* Add Ticket
*/
#client-add-ticket-form {
    margin: 0;
}

#client-add-ticket-form .subject {
    margin-bottom: 18px;
}

#client-add-ticket-form .metadata {
    display: flex;
    margin-bottom: 8px;
}

#client-add-ticket-form .urgency-group {
    margin-right: 70px;
    position: relative;
}

#client-add-ticket-form .category-group {
    width: 40%;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

#client-add-ticket-form #client-ticket-category {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

#category-list-container {
    display: none;
    position: absolute;
    z-index: 100;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    background-color: #1f3441;
    overflow-y: auto;
    font-size: 14px;
    user-select: none;
    -webkit-user-select: none;
}

#category-list {
    padding: 0;
    margin: 0;
}

#category-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#category-list-container li {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: .3s;
    margin: 0;
    padding: 8px 0;
}

#category-list-container li:hover {
    color: #FFD668;
}

#category-list span.url {
    color: #7CD9FF;
}

#client-add-ticket-form .message-group {
    margin-bottom: 35px;
}

#client-add-ticket-form .submit-button {
    margin-top: 45px;
}

#client-add-ticket-form .field-group.error .wp-editor-container {
    border: 1px solid #bb0100 !important;
}

@media only screen and (max-width: 600px) {
    #client-add-ticket-form .metadata {
        flex-direction: column;
    }

    #client-add-ticket-form .category-group {
        width: 100%;
        margin-top: 10px;
    }
}