/* Custom submit button */
#normal-sortables .postbox .cnews .submit {
    float: right;
    padding: 0 12px;
    margin: 0;
}

/* Generel styling */
.cnews p {
    color: #6f6f6f;
}

.cnews .text-muted {
    padding: 2px 2px;
    color: #949494;
}

/* Styling for the admin meta boxes */
#cnews_notifications_email .form-table {
    margin-top: 20px;
}

#cnews_notifications_email .form-table th {
    width: 80px;
}

#cnews_notifications_email .form-table td {
    border: 1px solid #ddd;
    background-color: #fdfdfd;
}

#cnews_notifications_email .form-table td .regular-text {
    width: 100%;
    padding: 6px 6px;
}

/* Notices */

.cnews-notice {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    color: #8a6d3b;
}

.cnews-notice.cnews-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}


/* Panels */

.cnews-accordion {
    background-color: #f5f5f5;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.cnews-accordion.active, button.cnews-accordion:hover {
    background-color: #009BD3;
    color: #fff;
}

.cnews-accordion:after {
    content: '\02795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.cnews-accordion.cnews-active:after {
    content: "\2796";
}

.cnews-panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
    border: 1px solid #f5f5f5;
    border-top: none;
    margin-bottom: 4px;
    background-color: #fdfdfd;
}

.cnews-panel.cnews-show {
    opacity: 1;
    max-height: 500px;
    padding: 18px;
}

.cnews-panel .cnews-table th {
    padding: 10px 10px 10px 0;
    width: 100px;
    border-right: 1px solid #ddd;
}

.cnews-panel .cnews-table td {
    padding: 10px 10px 10px 20px;
}

.cnews-panel ul {
    list-style-type: disc !important;
    margin-left: 2em !important;
}
