/*! Primary plugin stylesheet. * @since 1.0.0 * @package Directly Import */
@-moz-keyframes diim-spinning {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-ms-keyframes diim-spinning {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes diim-spinning {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes diim-spinning {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes diim-spinning {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.diim-ajax-button {
  position: relative;
}

.diim-ajax-button::after {
  -moz-animation: diim-spinning 1s linear 0s infinite normal none;
  -ms-animation: diim-spinning 1s linear 0s infinite normal none;
  -o-animation: diim-spinning 1s linear 0s infinite normal none;
  -webkit-animation: diim-spinning 1s linear 0s infinite normal none;
  animation: diim-spinning 1s linear 0s infinite normal none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid transparent;
  bottom: 50%;
  content: ' ';
  display: block;
  height: 24px;
  margin: 12px -12px -12px 12px;
  position: absolute;
  right: 50%;
  width: 24px;
  z-index: 2;
  border-color: rgba(50, 55, 60, 0.25);
  border-top-color: #32373c;
  opacity: 0;
}

.diim-ajax-button.diim-clicked[disabled]::after {
  opacity: 1;
}

.diim-clear {
  content: ' ';
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

.diim-hidden {
  display: none;
}

.diim-text-center {
  text-align: center;
}

.diim-text-extra-large {
  font-size: 1.5em;
  line-height: inherit;
}

.diim-text-large {
  font-size: 1.25em;
  line-height: inherit;
}

.diim-text-red {
  color: #dc3232;
}

.wrap .notice.settings-error {
  display: none;
}

.wrap .diim-notice {
  background: #72777c;
  border: 0;
  color: #fff;
  margin: 0 0 10px;
}

.wrap .diim-notice.notice-error {
  background: #dc3232;
}

.wrap .diim-notice.notice-info {
  background: #00a0d2;
}

.wrap .diim-notice.notice-success {
  background: #46b450;
}

.wrap .diim-notice.notice-warning {
  background: #ffb900;
}

.wrap .diim-notice:last-of-type {
  margin-bottom: 0;
}

.wrap .diim-notice a {
  color: inherit;
}

.wrap .diim-notice a:hover {
  text-decoration: none;
}

.wrap .diim-notice .notice-dismiss::before {
  -moz-transition: opacity 200ms ease-in-out;
  -ms-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
  color: #fff;
}

.wrap .diim-notice .notice-dismiss:hover::before {
  opacity: 0.75;
}

.diim-copy-to-clipboard {
  position: relative;
}

.diim-copy-to-clipboard::before, .diim-copy-to-clipboard::after {
  -moz-transition: opacity 200ms ease-in-out;
  -ms-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
  display: block;
  opacity: 0;
  position: absolute;
}

.diim-copy-to-clipboard::before {
  background: #f3f5f6;
  content: ' ';
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.diim-copy-to-clipboard::after {
  -moz-transform: translateX(50%) translateY(50%);
  -ms-transform: translateX(50%) translateY(50%);
  -o-transform: translateX(50%) translateY(50%);
  -webkit-transform: translateX(50%) translateY(50%);
  transform: translateX(50%) translateY(50%);
  bottom: 50%;
  content: '\f147';
  font-family: 'Dashicons';
  font-size: 2em;
  right: 50%;
  z-index: 2;
}

.diim-copy-to-clipboard.diim-clicked::before, .diim-copy-to-clipboard.diim-clicked::after {
  opacity: 1;
}

#poststuff .diim-meta-box .hndle {
  border-bottom-width: 2px;
}

#poststuff .diim-meta-box-locked .handlediv {
  display: none;
}

#poststuff .diim-meta-box .inside {
  margin: 0;
  padding: 0;
}

.diim-nav {
  line-height: 1.25em;
  margin-bottom: 10px;
}

@media (min-width: 783px) {
  .diim-nav {
    margin-top: 35px;
  }
}

.diim-nav .diim-nav-title {
  font-size: 23px;
  font-weight: 600;
  padding: 10px 15px 12px;
}

@media (max-width: 782px) {
  .diim-nav .diim-nav-title {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.diim-nav .diim-nav-title h1 {
  color: inherit;
  font-weight: 300;
  padding: 0;
}

.diim-nav .diim-tab-wrapper {
  font-size: 14px;
}

.diim-nav .diim-tab-wrapper a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  -moz-transition: color 200ms ease-in-out;
  -ms-transition: color 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
}

@media (min-width: 783px) {
  .diim-nav .diim-tab-wrapper a {
    padding: 8px 15px 10px;
  }
}

@media (max-width: 782px) {
  .diim-nav .diim-tab-wrapper a {
    padding: 13px 10px 15px;
  }
}

.diim-nav .diim-tab-wrapper a.diim-tab-active::before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 6px solid transparent;
  border-bottom-color: #f1f1f1;
  bottom: 0;
  content: ' ';
  display: block;
  height: 12px;
  left: 50%;
  margin-left: -6px;
  position: absolute;
  width: 12px;
  z-index: 1;
}

.diim-field {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: background 200ms ease-in-out;
  -ms-transition: background 200ms ease-in-out;
  -o-transition: background 200ms ease-in-out;
  -webkit-transition: background 200ms ease-in-out;
  transition: background 200ms ease-in-out;
  background: #fff;
  overflow: hidden;
  position: relative;
}

@media (max-width: 782px) {
  .diim-field {
    font-size: 16px;
  }
  .diim-field li,
  .diim-field p {
    font-size: 16px;
  }
}

.diim-field:nth-child(odd) {
  background: #f9f9f9;
}

.diim-field-actions {
  margin-left: -3px;
}

.diim-field-actions .diim-button {
  margin: 3px 0 0 3px;
}

.diim-field label {
  display: block;
}

.diim-field.diim-loading::before {
  background: rgba(255, 255, 255, 0.5);
  content: ' ';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.diim-field.diim-loading::after {
  -webkit-box-shadow: 0 0 8px 8px #fff;
  box-shadow: 0 0 8px 8px #fff;
  -moz-animation: diim-spinning 1s linear 0s infinite normal none;
  -ms-animation: diim-spinning 1s linear 0s infinite normal none;
  -o-animation: diim-spinning 1s linear 0s infinite normal none;
  -webkit-animation: diim-spinning 1s linear 0s infinite normal none;
  animation: diim-spinning 1s linear 0s infinite normal none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 4px solid transparent;
  bottom: 50%;
  content: ' ';
  display: block;
  height: 32px;
  margin: 16px -16px -16px 16px;
  position: absolute;
  right: 50%;
  width: 32px;
  z-index: 2;
  background: #fff;
}

.diim-field-label,
.diim-field-input {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  padding: 12px;
}

.diim-field-input input.error,
.diim-field-input select.error,
.diim-field-input textarea.error {
  border: 1px solid #dc3232;
}

.diim-field-input label.error {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #dc3232;
  border: 0;
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: -1px;
  padding: 3px 5px;
  width: 100%;
  vertical-align: top;
}

.diim-description {
  color: #666;
}

.diim-required {
  color: #dc3232;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 0.8em;
}

@media (min-width: 783px) {
  #diim-primary-wrapper .diim-field > .diim-field-label {
    float: left;
    max-width: 240px;
    width: 25%;
  }
  #diim-primary-wrapper .diim-field > .diim-field-label > label {
    margin-top: 3px;
  }
}

@media (max-width: 782px) {
  #diim-primary-wrapper .diim-field > .diim-field-label {
    margin-bottom: -8px;
    padding-bottom: 0;
  }
}

#side-sortables .diim-field > .diim-field-label {
  margin-bottom: -8px;
  padding-bottom: 0;
}

body.rtl .diim-field-actions {
  margin-left: 0;
  margin-right: -3px;
}

body.rtl .diim-field-actions .diim-button {
  margin-left: 0;
  margin-right: 3px;
}

@media (min-width: 783px) {
  body.rtl #diim-primary-wrapper .diim-field > .diim-field-label {
    float: right;
  }
}

.diim-field-discount input,
.diim-field-email input,
.diim-field-select select,
.diim-field-text input,
.diim-field-textarea textarea,
.diim-field-url input {
  display: block;
  margin: 0;
  width: 100%;
}

@media (min-width: 783px) {
  .diim-field-discount input,
  .diim-field-email input,
  .diim-field-select select,
  .diim-field-text input,
  .diim-field-url input {
    height: 28px;
  }
}

@media (max-width: 782px) {
  .diim-field-discount input,
  .diim-field-email input,
  .diim-field-select select,
  .diim-field-text input,
  .diim-field-url input {
    height: 36px;
  }
}

@media (min-width: 783px) {
  .diim-field-select select[multiple] {
    height: 32px;
  }
}

@media (max-width: 782px) {
  .diim-field-select select[multiple] {
    height: 36px;
  }
}

.diim-field-textarea textarea {
  resize: vertical;
}

body.rtl .diim-field-email input,
body.rtl .diim-field-url input {
  text-align: right;
}

body.rtl .diim-field input.diim-ltr {
  direction: ltr;
  text-align: right;
}

.diim-field-checkbox input {
  float: left;
  margin-top: 4px;
}

@media (max-width: 782px) {
  .diim-field-checkbox input {
    margin-top: 0;
  }
}

.diim-field-checkbox.diim-taxable-field > .diim-field-input {
  float: right;
}

.diim-field-checkbox.diim-taxable-field > .diim-field-input label {
  padding-bottom: 4px;
  padding-top: 4px;
}

@media (min-width: 783px) {
  .diim-field-checkbox.diim-taxable-field > .diim-field-input label input {
    margin-top: 2px;
  }
}

.diim-field-checkbox .diim-description {
  display: block;
}

.diim-field-checkbox .diim-description input {
  vertical-align: text-bottom;
}

@media (min-width: 783px) {
  .diim-field-checkbox .diim-description {
    padding-bottom: 3px;
    padding-top: 3px;
  }
}

.diim-field-checkbox.diim-confirmation {
  color: #dc3232;
  font-weight: 600;
}

.diim-field-checkbox.diim-confirmation .diim-description {
  color: #dc3232;
}

body.rtl .diim-field-checkbox.diim-taxable-field > .diim-field-input {
  float: left;
}

body.rtl .diim-field-checkbox input {
  float: right;
}

.diim-field pre {
  -webkit-box-shadow: inset 0px 1px 2px 0 rgba(0, 0, 0, 0.07);
  box-shadow: inset 0px 1px 2px 0 rgba(0, 0, 0, 0.07);
  background: #fff;
  border: 1px solid #ddd;
  color: #32373c;
  cursor: default;
  margin-bottom: 0;
  margin-top: 0;
  overflow: auto;
  padding: 3px 5px;
  white-space: pre-wrap;
}

.diim-field pre.diim-export-url {
  margin-bottom: 4px;
}

.diim-field-html a {
  -moz-transition: color 200ms ease-in-out;
  -ms-transition: color 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  display: inline-block;
}

.diim-field-html a img {
  -moz-transition: opacity 200ms ease-in-out;
  -ms-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.diim-field-html a:hover img {
  opacity: 0.875;
}

.diim-field-html canvas {
  margin: 0 auto;
  max-width: 480px;
}

.diim-field-html label {
  cursor: default;
}

.diim-field-html p {
  margin-top: 0;
}

.diim-field-html p:last-child {
  margin-bottom: 0;
}

.diim-field-html img {
  height: auto;
  max-width: 100%;
}

.diim-field-html img.robert-noakes {
  margin-top: 6px;
  max-width: 257px;
  width: 100%;
}

.diim-field-html ul {
  margin-top: -8px;
}

.diim-field-html ul:first-child {
  margin-top: 0;
}

.diim-field-html ul:last-child {
  margin-bottom: 0;
}

.diim-field-html li:last-child {
  margin-bottom: 0;
}

body.diim-wp-5-3 .diim-field-input input.error,
body.diim-wp-5-3 .diim-field-input select.error,
body.diim-wp-5-3 .diim-field-input textarea.error {
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

body.diim-wp-5-3 .diim-field-input label.error {
  -webkit-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  padding: 6px 8px;
}

@media (min-width: 783px) {
  body.diim-wp-5-3 .diim-field-discount input,
  body.diim-wp-5-3 .diim-field-email input,
  body.diim-wp-5-3 .diim-field-select select,
  body.diim-wp-5-3 .diim-field-text input,
  body.diim-wp-5-3 .diim-field-url input {
    height: 30px;
  }
}

body.diim-wp-5-3 .diim-field pre {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #7e8993;
  padding: 5px 8px;
}

/*! Plugin theme colors. * @since 1.0.0 * @package Directly Import */
body .diim-nav-title {
  background: #23282d;
  color: #fff;
}

body .diim-tab-wrapper {
  background: #32373c;
}

body .diim-tab-wrapper a {
  color: #b4b9be;
}

body .diim-tab-wrapper a:hover {
  color: #00b9eb;
}

body .diim-tab-wrapper a.diim-tab-active, body .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #0073aa;
  color: #fff;
}

body #poststuff .diim-meta-box .hndle {
  border-bottom-color: #0073aa;
}

body .diim-field.diim-loading::after {
  border-color: rgba(0, 115, 170, 0.25);
  border-top-color: #0073aa;
}

body.admin-color-light .diim-nav-title {
  background: #e5e5e5;
  color: #333;
}

body.admin-color-light .diim-tab-wrapper {
  background: #fff;
}

body.admin-color-light .diim-tab-wrapper a {
  color: #686868;
}

body.admin-color-light .diim-tab-wrapper a:hover {
  color: #04a4cc;
}

body.admin-color-light .diim-tab-wrapper a.diim-tab-active, body.admin-color-light .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #888;
  color: #fff;
}

body.admin-color-light #poststuff .diim-meta-box .hndle {
  border-bottom-color: #888;
}

body.admin-color-light .diim-field.diim-loading::after {
  border-color: rgba(136, 136, 136, 0.25);
  border-top-color: #888;
}

body.admin-color-blue .diim-nav-title {
  background: #52accc;
  color: #fff;
}

body.admin-color-blue .diim-tab-wrapper {
  background: #4796b3;
}

body.admin-color-blue .diim-tab-wrapper a {
  color: #e2ecf1;
}

body.admin-color-blue .diim-tab-wrapper a:hover {
  color: #fff;
}

body.admin-color-blue .diim-tab-wrapper a.diim-tab-active, body.admin-color-blue .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #096484;
  color: #fff;
}

body.admin-color-blue #poststuff .diim-meta-box .hndle {
  border-bottom-color: #096484;
}

body.admin-color-blue .diim-field.diim-loading::after {
  border-color: rgba(9, 100, 132, 0.25);
  border-top-color: #096484;
}

body.admin-color-coffee .diim-nav-title {
  background: #59524c;
  color: #fff;
}

body.admin-color-coffee .diim-tab-wrapper {
  background: #46403c;
}

body.admin-color-coffee .diim-tab-wrapper a {
  color: #cdcbc9;
}

body.admin-color-coffee .diim-tab-wrapper a:hover {
  color: #c7a589;
}

body.admin-color-coffee .diim-tab-wrapper a.diim-tab-active, body.admin-color-coffee .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #c7a589;
  color: #fff;
}

body.admin-color-coffee #poststuff .diim-meta-box .hndle {
  border-bottom-color: #c7a589;
}

body.admin-color-coffee .diim-field.diim-loading::after {
  border-color: rgba(199, 165, 137, 0.25);
  border-top-color: #c7a589;
}

body.admin-color-ectoplasm .diim-nav-title {
  background: #523f6d;
  color: #fff;
}

body.admin-color-ectoplasm .diim-tab-wrapper {
  background: #413256;
}

body.admin-color-ectoplasm .diim-tab-wrapper a {
  color: #cbc5d3;
}

body.admin-color-ectoplasm .diim-tab-wrapper a:hover {
  color: #a3b745;
}

body.admin-color-ectoplasm .diim-tab-wrapper a.diim-tab-active, body.admin-color-ectoplasm .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #a3b745;
  color: #fff;
}

body.admin-color-ectoplasm #poststuff .diim-meta-box .hndle {
  border-bottom-color: #a3b745;
}

body.admin-color-ectoplasm .diim-field.diim-loading::after {
  border-color: rgba(163, 183, 69, 0.25);
  border-top-color: #a3b745;
}

body.admin-color-midnight .diim-nav-title {
  background: #363b3f;
  color: #fff;
}

body.admin-color-midnight .diim-tab-wrapper {
  background: #26292c;
}

body.admin-color-midnight .diim-tab-wrapper a {
  color: #c3c4c5;
}

body.admin-color-midnight .diim-tab-wrapper a:hover {
  color: #e14d43;
}

body.admin-color-midnight .diim-tab-wrapper a.diim-tab-active, body.admin-color-midnight .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #e14d43;
  color: #fff;
}

body.admin-color-midnight #poststuff .diim-meta-box .hndle {
  border-bottom-color: #e14d43;
}

body.admin-color-midnight .diim-field.diim-loading::after {
  border-color: rgba(225, 77, 67, 0.25);
  border-top-color: #e14d43;
}

body.admin-color-ocean .diim-nav-title {
  background: #738e96;
  color: #fff;
}

body.admin-color-ocean .diim-tab-wrapper {
  background: #627c83;
}

body.admin-color-ocean .diim-tab-wrapper a {
  color: #d5dde0;
}

body.admin-color-ocean .diim-tab-wrapper a:hover {
  color: #9ebaa0;
}

body.admin-color-ocean .diim-tab-wrapper a.diim-tab-active, body.admin-color-ocean .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #9ebaa0;
  color: #fff;
}

body.admin-color-ocean #poststuff .diim-meta-box .hndle {
  border-bottom-color: #9ebaa0;
}

body.admin-color-ocean .diim-field.diim-loading::after {
  border-color: rgba(158, 186, 160, 0.25);
  border-top-color: #9ebaa0;
}

body.admin-color-sunrise .diim-nav-title {
  background: #cf4944;
  color: #fff;
}

body.admin-color-sunrise .diim-tab-wrapper {
  background: #be3631;
}

body.admin-color-sunrise .diim-tab-wrapper a {
  color: #f1c8c7;
}

body.admin-color-sunrise .diim-tab-wrapper a:hover {
  color: #f7e3d3;
}

body.admin-color-sunrise .diim-tab-wrapper a.diim-tab-active, body.admin-color-sunrise .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #dd823b;
  color: #fff;
}

body.admin-color-sunrise #poststuff .diim-meta-box .hndle {
  border-bottom-color: #dd823b;
}

body.admin-color-sunrise .diim-field.diim-loading::after {
  border-color: rgba(221, 130, 59, 0.25);
  border-top-color: #dd823b;
}

body.admin-color-80s-kid .diim-nav-title {
  background: #0c4da1;
  color: #fff;
}

body.admin-color-80s-kid .diim-tab-wrapper {
  background: #0a3d80;
}

body.admin-color-80s-kid .diim-tab-wrapper a {
  color: #b6cae3;
}

body.admin-color-80s-kid .diim-tab-wrapper a:hover {
  color: #ed5793;
}

body.admin-color-80s-kid .diim-tab-wrapper a.diim-tab-active, body.admin-color-80s-kid .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #ed5793;
  color: #fff;
}

body.admin-color-80s-kid #poststuff .diim-meta-box .hndle {
  border-bottom-color: #ed5793;
}

body.admin-color-80s-kid .diim-field.diim-loading::after {
  border-color: rgba(237, 87, 147, 0.25);
  border-top-color: #ed5793;
}

body.admin-color-adderley .diim-nav-title {
  background: #216bce;
  color: #fff;
}

body.admin-color-adderley .diim-tab-wrapper {
  background: #1c5baf;
}

body.admin-color-adderley .diim-tab-wrapper a {
  color: #bcd3f0;
}

body.admin-color-adderley .diim-tab-wrapper a:hover {
  color: #fff;
}

body.admin-color-adderley .diim-tab-wrapper a.diim-tab-active, body.admin-color-adderley .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #1730e5;
  color: #fff;
}

body.admin-color-adderley #poststuff .diim-meta-box .hndle {
  border-bottom-color: #1730e5;
}

body.admin-color-adderley .diim-field.diim-loading::after {
  border-color: rgba(23, 48, 229, 0.25);
  border-top-color: #1730e5;
}

body.admin-color-aubergine .diim-nav-title {
  background: #5c5b73;
  color: #fff;
}

body.admin-color-aubergine .diim-tab-wrapper {
  background: #4c4b5f;
}

body.admin-color-aubergine .diim-tab-wrapper a {
  color: #ceced5;
}

body.admin-color-aubergine .diim-tab-wrapper a:hover {
  color: #da9b49;
}

body.admin-color-aubergine .diim-tab-wrapper a.diim-tab-active, body.admin-color-aubergine .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #da9b49;
  color: #fff;
}

body.admin-color-aubergine #poststuff .diim-meta-box .hndle {
  border-bottom-color: #da9b49;
}

body.admin-color-aubergine .diim-field.diim-loading::after {
  border-color: rgba(218, 155, 73, 0.25);
  border-top-color: #da9b49;
}

body.admin-color-contrast-blue .diim-nav-title {
  background: #a5cde8;
  color: #151923;
}

body.admin-color-contrast-blue .diim-tab-wrapper {
  background: #b5d3e8;
}

body.admin-color-contrast-blue .diim-tab-wrapper a {
  color: #151923;
}

body.admin-color-contrast-blue .diim-tab-wrapper a:hover {
  color: #000;
}

body.admin-color-contrast-blue .diim-tab-wrapper a.diim-tab-active, body.admin-color-contrast-blue .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #dae9f3;
  color: #151923;
}

body.admin-color-contrast-blue #poststuff .diim-meta-box .hndle {
  border-bottom-color: #dae9f3;
}

body.admin-color-contrast-blue .diim-field.diim-loading::after {
  border-color: rgba(218, 233, 243, 0.25);
  border-top-color: #dae9f3;
}

body.admin-color-cruise .diim-nav-title {
  background: #36395c;
  color: #fff;
}

body.admin-color-cruise .diim-tab-wrapper {
  background: #292b46;
}

body.admin-color-cruise .diim-tab-wrapper a {
  color: #c3c4ce;
}

body.admin-color-cruise .diim-tab-wrapper a:hover {
  color: #8bbc9f;
}

body.admin-color-cruise .diim-tab-wrapper a.diim-tab-active, body.admin-color-cruise .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #8bbc9f;
  color: #fff;
}

body.admin-color-cruise #poststuff .diim-meta-box .hndle {
  border-bottom-color: #8bbc9f;
}

body.admin-color-cruise .diim-field.diim-loading::after {
  border-color: rgba(139, 188, 159, 0.25);
  border-top-color: #8bbc9f;
}

body.admin-color-flat .diim-nav-title {
  background: #2c3e50;
  color: #fff;
}

body.admin-color-flat .diim-tab-wrapper {
  background: #1f2c39;
}

body.admin-color-flat .diim-tab-wrapper a {
  color: #c0c5cb;
}

body.admin-color-flat .diim-tab-wrapper a:hover {
  color: #1abc9c;
}

body.admin-color-flat .diim-tab-wrapper a.diim-tab-active, body.admin-color-flat .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #1abc9c;
  color: #fff;
}

body.admin-color-flat #poststuff .diim-meta-box .hndle {
  border-bottom-color: #1abc9c;
}

body.admin-color-flat .diim-field.diim-loading::after {
  border-color: rgba(26, 188, 156, 0.25);
  border-top-color: #1abc9c;
}

body.admin-color-kirk .diim-nav-title {
  background: #5f1b29;
  color: #fff;
}

body.admin-color-kirk .diim-tab-wrapper {
  background: #340f18;
}

body.admin-color-kirk .diim-tab-wrapper a {
  color: #cfbbbf;
}

body.admin-color-kirk .diim-tab-wrapper a:hover {
  color: #bd3854;
}

body.admin-color-kirk .diim-tab-wrapper a.diim-tab-active, body.admin-color-kirk .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #bd3854;
  color: #fff;
}

body.admin-color-kirk #poststuff .diim-meta-box .hndle {
  border-bottom-color: #bd3854;
}

body.admin-color-kirk .diim-field.diim-loading::after {
  border-color: rgba(189, 56, 84, 0.25);
  border-top-color: #bd3854;
}

body.admin-color-lawn .diim-nav-title {
  background: #1e2a29;
  color: #fff;
}

body.admin-color-lawn .diim-tab-wrapper {
  background: #0f1515;
}

body.admin-color-lawn .diim-tab-wrapper a {
  color: #bcbfbf;
}

body.admin-color-lawn .diim-tab-wrapper a:hover {
  color: #a7b145;
}

body.admin-color-lawn .diim-tab-wrapper a.diim-tab-active, body.admin-color-lawn .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #a7b145;
  color: #fff;
}

body.admin-color-lawn #poststuff .diim-meta-box .hndle {
  border-bottom-color: #a7b145;
}

body.admin-color-lawn .diim-field.diim-loading::after {
  border-color: rgba(167, 177, 69, 0.25);
  border-top-color: #a7b145;
}

body.admin-color-primary .diim-nav-title {
  background: #35395c;
  color: #fff;
}

body.admin-color-primary .diim-tab-wrapper {
  background: #282b45;
}

body.admin-color-primary .diim-tab-wrapper a {
  color: #c2c4ce;
}

body.admin-color-primary .diim-tab-wrapper a:hover {
  color: #d8b230;
}

body.admin-color-primary .diim-tab-wrapper a.diim-tab-active, body.admin-color-primary .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #d8b230;
  color: #fff;
}

body.admin-color-primary #poststuff .diim-meta-box .hndle {
  border-bottom-color: #d8b230;
}

body.admin-color-primary .diim-field.diim-loading::after {
  border-color: rgba(216, 178, 48, 0.25);
  border-top-color: #d8b230;
}

body.admin-color-seashore .diim-nav-title {
  background: #e1dbc5;
  color: #533c30;
}

body.admin-color-seashore .diim-tab-wrapper {
  background: #d5cdad;
}

body.admin-color-seashore .diim-tab-wrapper a {
  color: #7e6c5d;
}

body.admin-color-seashore .diim-tab-wrapper a:hover {
  color: #456a7f;
}

body.admin-color-seashore .diim-tab-wrapper a.diim-tab-active, body.admin-color-seashore .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #456a7f;
  color: #f8f6f1;
}

body.admin-color-seashore #poststuff .diim-meta-box .hndle {
  border-bottom-color: #456a7f;
}

body.admin-color-seashore .diim-field.diim-loading::after {
  border-color: rgba(69, 106, 127, 0.25);
  border-top-color: #456a7f;
}

body.admin-color-vinyard .diim-nav-title {
  background: #462b36;
  color: #fff;
}

body.admin-color-vinyard .diim-tab-wrapper {
  background: #301d25;
}

body.admin-color-vinyard .diim-tab-wrapper a {
  color: #c8bfc3;
}

body.admin-color-vinyard .diim-tab-wrapper a:hover {
  color: #dcb034;
}

body.admin-color-vinyard .diim-tab-wrapper a.diim-tab-active, body.admin-color-vinyard .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #dcb034;
  color: #fff;
}

body.admin-color-vinyard #poststuff .diim-meta-box .hndle {
  border-bottom-color: #dcb034;
}

body.admin-color-vinyard .diim-field.diim-loading::after {
  border-color: rgba(220, 176, 52, 0.25);
  border-top-color: #dcb034;
}

body.admin-color-bbp-evergreen .diim-nav-title {
  background: #446950;
  color: #fff;
}

body.admin-color-bbp-evergreen .diim-tab-wrapper {
  background: #36533f;
}

body.admin-color-bbp-evergreen .diim-tab-wrapper a {
  color: #c6d2ca;
}

body.admin-color-bbp-evergreen .diim-tab-wrapper a:hover {
  color: #56b274;
}

body.admin-color-bbp-evergreen .diim-tab-wrapper a.diim-tab-active, body.admin-color-bbp-evergreen .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #56b274;
  color: #fff;
}

body.admin-color-bbp-evergreen #poststuff .diim-meta-box .hndle {
  border-bottom-color: #56b274;
}

body.admin-color-bbp-evergreen .diim-field.diim-loading::after {
  border-color: rgba(86, 178, 116, 0.25);
  border-top-color: #56b274;
}

body.admin-color-bbp-mint .diim-nav-title {
  background: #5fb37c;
  color: #fff;
}

body.admin-color-bbp-mint .diim-tab-wrapper {
  background: #4ca26a;
}

body.admin-color-bbp-mint .diim-tab-wrapper a {
  color: #cfe8d7;
}

body.admin-color-bbp-mint .diim-tab-wrapper a:hover {
  color: #4f6d59;
}

body.admin-color-bbp-mint .diim-tab-wrapper a.diim-tab-active, body.admin-color-bbp-mint .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #4f6d59;
  color: #fff;
}

body.admin-color-bbp-mint #poststuff .diim-meta-box .hndle {
  border-bottom-color: #4f6d59;
}

body.admin-color-bbp-mint .diim-field.diim-loading::after {
  border-color: rgba(79, 109, 89, 0.25);
  border-top-color: #4f6d59;
}

body.admin-color-godaddy .diim-nav-title {
  background: #333;
  color: #fff;
}

body.admin-color-godaddy .diim-tab-wrapper {
  background: #212121;
}

body.admin-color-godaddy .diim-tab-wrapper a {
  color: #c2c2c2;
}

body.admin-color-godaddy .diim-tab-wrapper a:hover {
  color: #77c043;
}

body.admin-color-godaddy .diim-tab-wrapper a.diim-tab-active, body.admin-color-godaddy .diim-tab-wrapper a.diim-tab-active-no-arrow {
  background: #008a32;
  color: #fff;
}

body.admin-color-godaddy #poststuff .diim-meta-box .hndle {
  border-bottom-color: #008a32;
}

body.admin-color-godaddy .diim-field.diim-loading::after {
  border-color: rgba(0, 138, 50, 0.25);
  border-top-color: #008a32;
}
