:root {
  --huddlespot-color-white: #fff;
  --huddlespot-color-black: #000;
  --huddlespot-color-border: #c3c4c7;
  --huddlespot-color-text: #3c434a;
  --huddlespot-color-danger: #d63638;
  --huddlespot-color-overlay: rgba(0, 0, 0, 0.6);
  --huddlespot-color-progress: #04aa6d;
  --huddlespot-color-shadow: #0000000a;
  --huddlespot-radius-sm: 5px;
  --huddlespot-font-size-notice: 13px;
  --huddlespot-font-size-sync: 18px;
}

.huddlespot-notice {
  background: var(--huddlespot-color-white);
  border: 1px solid var(--huddlespot-color-border);
  border-left-width: 4px;
  box-shadow: 0 1px 1px var(--huddlespot-color-shadow);
  margin: 5px 15px 2px;
  padding: 1px 12px;
}

.huddlespot-notice.notice-error {
  border-left-color: var(--huddlespot-color-danger);
}

.huddlespot-notice p {
  margin: 0.5em 0;
  padding: 2px;
  font-size: var(--huddlespot-font-size-notice);
  line-height: 1.5;
  color: var(--huddlespot-color-text);
}

.huddlespot-main-container {
  width: 100%;
  display: block;
}

#huddlespot-community {
  margin: 0;
  padding: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: auto;
}

#huddlespot-community iframe {
  width: 100% !important;
  margin: 0 !important;
  max-width: none;
  max-height: none;
}

.post-inner {
  padding-top: 0 !important;
}

.footer-nav-widgets-wrapper {
  margin-top: 0 !important;
}

.entry-content {
  width: 100% !important;
  max-width: 100% !important;
}

article header {
  display: none !important;
}

article h1.entry-title.main_title {
  display: none;
}

.huddlespot-modal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--huddlespot-color-overlay);
  z-index: 100000;
  align-items: center;
  justify-content: center;
}

.huddlespot-modal .huddlespot-modal-dialog {
  display: block;
  position: fixed;
  background: var(--huddlespot-color-white);
  padding: 20px 20px 20px;
  width: 596px;
  max-width: 100%;
  border-radius: var(--huddlespot-radius-sm);
}

.huddlespot-modal.active {
  display: flex;
}

.huddlespot-modal .reason .additional_field {
  display: none;
}

.huddlespot-modal .reason .additional_field input {
  width: 250px;
  margin: 10px 20px;
}

.huddlespot-modal .reason.active .additional_field {
  display: block;
}

.huddlespot-settings-wrap {
  display: flex;
  flex-wrap: wrap;
}

.huddlespot-settings-wrap form {
  flex: 1 0 auto;
}

.huddlespot-settings-wrap .huddlespot-sidebar {
  width: 400px;
  border: 1px solid;
  padding: 15px;
  border-radius: var(--huddlespot-radius-sm);
}

.huddlespot-settings-wrap .settings .option-field {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.huddlespot-settings-wrap .settings .option-field .option-name {
  min-width: 200px;
  max-width: 265px;
}

.huddlespot-settings-wrap .settings .input-check .option-name {
  margin-right: 20px;
}

.huddlespot-settings-wrap .settings .sub_settings {
  padding-left: 20px;
}

.huddlespot-settings-wrap .settings .divider {
  border: 0.7px solid;
  margin-right: 20px;
}

.huddlespot-settings-wrap .option-name {
  min-height: 30px;
}

.huddlespot-settings-wrap .option-name strong {
  display: flex;
  align-content: center;
  align-items: center;
  min-height: 30px;
  height: 30px;
}

.huddlespot-settings-wrap input[type='text'] {
  min-height: 30px;
}

.import-wrap {
  padding: 0 20px;
}

.import-wrap .sync-progress-wrap {
  display: none;
}

.import-wrap .sync-progress-wrap #sync-progress {
  width: 100%;
  background-color: var(--huddlespot-color-white);
}

.import-wrap .sync-progress-wrap #sync-progress #bar {
  width: 0;
  height: 30px;
  background-color: var(--huddlespot-color-progress);
  text-align: center;
  line-height: 30px;
  color: var(--huddlespot-color-white);
}

.import-wrap .sync-progress-wrap .numbers {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.toplevel_page_huddlespot #sync_users {
  display: inline-flex;
  align-items: center;
  margin: 20px 0;
  margin-left: 20px;
}

.toplevel_page_huddlespot #sync_users .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 1;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.toplevel_page_huddlespot .rotating {
  animation: rotating 2s linear infinite;
}
