.item {
    margin: 1em 0 0 0;
}
.item:first-child {
    margin: 0;
}
.handle {
    position: relative;
    margin: 0;
    border: #e5e5e5 1px solid;
    padding: 1em;
    background: #fafafa;
}
.handle:nth-of-type(2) {
    margin-top: 1em;
}
.group {
    display: none;
    border: #e5e5e5 1px solid;
    border-top: none;
    padding: 1em;
    background: #fff;
}
.removeItemButton {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
}
.handle {
    cursor: pointer;
}
.handle .dashicons-leftright {
    transform: rotateZ(90deg)
}
.addButton.button-primary {
    margin: 1em 0 0 0;
}

.metaboxFieldItem [data-field-key="type"] .description,
.taxonomyFieldItem [data-field-key="type"] .description {
    display: none;
}

.metaboxFieldItem .invalid,
.taxonomyFieldItem .invalid {
    background-color: #faa;
}

.form-table tr {
    border-bottom: #e5e5e5 1px solid;
}
.form-table tr:last-child {
    border-bottom: none;
}
.form-table tr.hide {
    display: none;
}

.windowWrapper,
.windowWrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #333;
}
.windowWrapper {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.windowWrapper.active {
    display: block;
}
.windowWrapper .windowOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
}
.windowWrapper .windowInner {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 1rem;
    width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    overflow: auto;
    transform: translate(-50%, -50%);
    background: #fff;
}
.windowWrapper .windowInner pre {
    margin-bottom: 1em;
}
@media screen and (min-width: 600px) {
    .windowWrapper .windowInner {
        width: auto;
    }
}
