#sertifier-container {
    width: calc(100% + 20px);
    margin-left: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sertifier-container *:not(.button) {
    text-decoration: none;
    color: #3c3c3b;
}
#sertifier-container *:focus {
    outline: none;
    box-shadow: none;
}
#sertifier-container a:hover {
    color: #09705b;
}
#sertifier-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #f1f1f1;
    margin-bottom: 20px;
}
#sertifier-header a img {
    height: 35px;
    margin: 15px 0;
}
#sertifier-body {
    width: calc(100% - 400px);
    display: flex;
}
#sertifier-nav {
    width: 250px;
    padding-right: 20px;
    border-right: 1px solid #cdcfd5;
    display: flex;
    flex-direction: column;
}
#sertifier-nav a {
    display: flex;
    height: 40px;
    padding: 8px 20px;
    font-size: 16px;
    text-decoration: none;
    align-items: center;
    margin-bottom: 10px;
}
#sertifier-nav a.active {
    border-radius: 4px;
    background: #fbfbfb;
    -webkit-box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
}
#sertifier-content {
    flex: 1;
    margin-left: 20px;
    margin-bottom: 20px;
}
#sertifier-content .head {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#sertifier-content .head h1.page-title {
    font-size: 1.5rem;
    font-weight: 500;
}
#sertifier-content .head a.add-new-button {
}
#sertifier-content .content {
    padding: 20px;
    border-radius: 4px;
    background: #fbfbfb;
    -webkit-box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
}
#sertifier-content .content select {
    width: 100%;
}
#sertifier-content .content input[type="text"] {
    width: 100%;
}
#sertifier-content table.sertifier-table {
    width: 100%;
    border-spacing: 0;
    border-radius: 5px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
}
#sertifier-content span.helper {
    display: block;
    font-weight: 400;
    font-size: 12px;
    font-style: italic;
}
#sertifier-content table.sertifier-table thead {
    background-color: #333;
}
#sertifier-content table.sertifier-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}
#sertifier-content table.sertifier-table tbody tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}
#sertifier-content table.sertifier-table tbody tr {
    background-color: #fff;
}
#sertifier-content table.sertifier-table tbody tr:nth-child(even) {
    background-color: #f0f0f1;
}
#sertifier-content table.sertifier-table tbody tr:hover {
    background-color: #ddd;
}
#sertifier-content table.sertifier-table thead tr td:first-child {
    border-radius: 5px 0 0 0;
}
#sertifier-content table.sertifier-table thead tr td:last-child {
    border-radius: 0 5px 0 0;
}
#sertifier-content table.sertifier-table thead tr td {
    color: #fff;
}
#sertifier-content table.sertifier-table tr td {
    padding: 12px 20px;
}
#sertifier-content table.sertifier-table tr td:last-child a {
    display: inline-block;
    margin: 0 4px;
}
#sertifier-content table.sertifier-table tr td a span.dashicons {
    font-size: 18px;
}
#sertifier-content table.sertifier-table tr td.no-records {
    text-align: center;
    font-style: italic;
}
#sertifier-content .content .user-list {
    width: 100%;
    height: 350px;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #8c8f94;
    display: flex;
    flex-direction: column;
}
#sertifier-content .content .user-list #result {
    flex: 1;
    overflow-y: scroll;
}
#sertifier-content .content .user-list .search {
    display: flex;
    width: 100%;
    padding: 5px;
}
#sertifier-content .content .user-list label {
    display: flex;
    align-items: center;
    height: 45px;
    margin: 0 20px;
}
#sertifier-content .content .user-list label input[type="checkbox"] {
    margin: 0 7px 0 0;
}
#sertifier-content h4.error {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}
#sertifier-container h4.success {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}
#sertifier-container h4.warning {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    max-width: calc(100% - 400px);
}
