@charset "UTF-8";

:root {
  --admin-sidebar-width: 14.375rem;
  --admin-header-height: 3.5rem;
  --admin-bg: #f5f7fa;
  --admin-surface: #fff;
  --admin-surface-muted: #f8fafc;
  --admin-border: #dde5ee;
  --admin-border-dark: #c9d4df;
  --admin-text: #243241;
  --admin-muted: #667789;
  --admin-muted-light: #9aa8b6;
  --admin-sidebar: #17324a;
  --admin-sidebar-deep: #10263a;
  --admin-sidebar-active: #0f9f9a;
  --admin-primary: #156f9f;
  --admin-primary-hover: #0f5b83;
  --admin-success: #1f9d6b;
  --admin-warning: #d9912b;
  --admin-danger: #c84b4b;
  --admin-info: #1c8fb8;
  --admin-scrollbar-thumb: rgba(21, 111, 159, .34);
  --admin-scrollbar-thumb-hover: rgba(15, 159, 154, .52);
  --admin-radius: 0.25rem;
  --admin-shadow: 0 1px 1px rgba(24, 36, 51, .04);
  --admin-shadow-panel: 0 0.0625rem 0.1875rem rgba(24, 36, 51, .04), 0 0.5rem 1.25rem rgba(24, 36, 51, .05);
}

.account-role-group {
  margin-bottom: 0.75rem;
}

.account-role-group:last-child {
  margin-bottom: 0;
}

.account-role-group > strong {
  display: block;
  margin-bottom: 0.375rem;
}

.account-role-group label {
  display: inline-flex;
  margin-bottom: 0.25rem;
  margin-right: 1rem;
}

.system-permission-role-form {
  align-items: end;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.system-permission-role-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.system-permission-role-form select {
  min-width: 12rem;
}

.system-permission-layout {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(15rem, 0.32fr) minmax(0, 0.68fr);
}

.system-permission-folder-panel,
.system-permission-list-panel {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  box-shadow: var(--admin-shadow);
  min-width: 0;
  overflow: hidden;
}

.system-permission-panel-head {
  align-items: center;
  background: var(--admin-surface-muted);
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  justify-content: space-between;
  min-height: 2.75rem;
  padding: 0.6875rem 0.75rem;
}

.system-permission-panel-head h2 {
  align-items: center;
  display: inline-flex;
  font-size: 0.8125rem;
  gap: 0.375rem;
  margin: 0;
}

.system-permission-folder-list {
  display: grid;
  gap: 0.375rem;
  padding: 0.625rem;
}

.system-permission-folder-item {
  align-items: center;
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  color: var(--admin-text);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0.5rem 0.625rem;
}

.system-permission-folder-item:hover,
.system-permission-folder-item.is-selected {
  background: #edf5fb;
  border-color: #a8cce6;
  color: var(--admin-text);
}

.system-permission-folder-item strong,
.system-permission-folder-item small {
  display: block;
}

.system-permission-folder-item strong {
  align-items: center;
  display: flex;
  gap: 0.375rem;
}

.system-permission-folder-item small {
  color: var(--admin-muted);
  font-size: 0.6875rem;
  margin-top: 0.125rem;
}

.system-permission-folder-count {
  background: #edf2f6;
  border-radius: 1rem;
  color: var(--admin-muted);
  flex: 0 0 auto;
  font-size: 0.6875rem;
  font-weight: 700;
  min-width: 1.75rem;
  padding: 0.125rem 0.5rem;
  text-align: center;
}

.system-permission-list-panel > form {
  padding: 0.625rem;
}

.system-permission-table {
  min-width: 30rem;
  width: 100%;
}

.system-permission-table :where(th:first-child, td:first-child) {
  width: 82%;
}

.system-permission-table :where(th:last-child, td:last-child) {
  text-align: center;
  width: 18%;
}

.system-permission-description {
  color: var(--admin-muted);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.system-permission-check {
  justify-content: center;
}

@media screen and (max-width: 800px) {
  .system-permission-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .system-permission-role-form > div,
  .system-permission-role-form select {
    width: 100%;
  }
}

* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--admin-bg);
  color: var(--admin-text);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

a {
  color: var(--admin-primary);
  text-decoration: none;
}

a:hover {
  color: var(--admin-primary-hover);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

img {
  border: 0;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  vertical-align: middle;
}

::-moz-selection {
  background: #d9e8fb;
  color: var(--admin-text);
}

::selection {
  background: #d9e8fb;
  color: var(--admin-text);
}

* {
  scrollbar-color: var(--admin-scrollbar-thumb) transparent;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.5rem;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-clip: content-box;
  background-color: var(--admin-scrollbar-thumb);
  border: 0.125rem solid transparent;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--admin-scrollbar-thumb-hover);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

/* Layout */
.site-header {
  align-items: center;
  background: var(--admin-sidebar);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: none;
  display: flex;
  height: var(--admin-header-height);
  left: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: var(--admin-sidebar-width);
  z-index: 50;
}

.site-header__logo {
  align-items: center;
  background: var(--admin-sidebar-deep);
  display: flex;
  height: var(--admin-header-height);
  left: 0;
  padding: 0 1.125rem;
  position: absolute;
  top: 0;
  width: var(--admin-sidebar-width);
}

.site-header__link {
  color: #ecf0f1;
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__link:before {
  background: var(--admin-sidebar-active);
  border-radius: 0.125rem;
  content: "";
  display: inline-block;
  height: 0.5rem;
  margin-right: 0.625rem;
  vertical-align: 1px;
  width: 0.5rem;
}

.site-header__link:hover {
  color: #fff;
}

.site-header__menu-button {
  display: none;
}

.site-header__menu-line {
  background: currentColor;
  display: block;
  height: 0.125rem;
  width: 1.125rem;
}

.site-header__lang,
.site-header__user,
.site-header__logout {
  color: var(--admin-muted);
}

.mobile-menu-overlay {
  display: none;
}

.side-menu {
  background: var(--admin-sidebar);
  border-top: 1px solid rgba(255, 255, 255, .06);
  bottom: 0;
  color: #ecf0f1;
  display: flex;
  flex-direction: column;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: var(--admin-header-height);
  width: var(--admin-sidebar-width);
  z-index: 45;
}

.side-menu__list {
  display: block;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0.75rem 0;
  scrollbar-width: thin;
}

.side-menu__list:before {
  color: rgba(255, 255, 255, .48);
  content: "CONTROL PANEL";
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.3125rem 1.125rem 0.5rem;
}

.side-menu__item {
  color: #ecf0f1;
  display: block;
  position: static;
}

.side-menu__heading,
.side-menu__heading--link {
  align-items: center;
  color: rgba(255, 255, 255, .78);
  cursor: pointer;
  display: flex;
  min-height: 2.4375rem;
  padding: 0 1.125rem;
  position: relative;
}

.side-menu__heading:after {
  content: none;
}

.side-menu__item--single .side-menu__heading:after {
  content: none;
}

.side-menu__heading-text {
  color: inherit;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
}

.side-menu__item.is-selected > .side-menu__heading,
.side-menu__heading:hover,
.side-menu__heading--link:hover {
  background: rgba(15, 159, 154, .16);
  color: #fff;
}

.side-menu__item.is-selected > .side-menu__heading:before,
.side-menu__item.is-active > .side-menu__heading:before {
  background: var(--admin-sidebar-active);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 0.1875rem;
}

.side-menu__item.is-selected > .side-menu__heading:after {
  content: none;
}

.side-menu__sub-list {
  background: rgba(0, 0, 0, .12);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: none;
  min-width: 0;
  padding: 0.25rem 0 0.4375rem;
  position: static;
}

.side-menu__item.is-selected .side-menu__sub-list {
  display: block;
}

.side-menu__item:hover .side-menu__sub-list {
  display: none;
}

.side-menu__item.is-selected:hover .side-menu__sub-list {
  display: block;
}

.side-menu__sub-item {
  display: block;
}

.side-menu__sub-heading {
  color: rgba(255, 255, 255, .74);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4375rem 1.125rem 0.3125rem 2.125rem;
  position: relative;
}

.side-menu__sub-heading:before {
  background: rgba(255, 255, 255, .24);
  border-radius: 50%;
  content: "";
  height: 0.3125rem;
  left: 1.25rem;
  position: absolute;
  top: 0.9375rem;
  width: 0.3125rem;
}

.side-menu__sub-link {
  color: rgba(255, 255, 255, .7);
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4375rem 1.125rem 0.4375rem 2.125rem;
  position: relative;
}

.side-menu__sub-link:before {
  background: rgba(255, 255, 255, .24);
  border-radius: 50%;
  content: "";
  height: 0.3125rem;
  left: 1.25rem;
  position: absolute;
  top: 0.9375rem;
  width: 0.3125rem;
}

.side-menu__sub-item.is-active .side-menu__sub-link,
.side-menu__sub-item.is-selected .side-menu__sub-link,
.side-menu__sub-link:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.side-menu__sub-item.is-active .side-menu__sub-link:before,
.side-menu__sub-item.is-selected .side-menu__sub-link:before {
  background: var(--admin-sidebar-active);
}

.side-menu__sub-item.is-active > .side-menu__sub-heading,
.side-menu__sub-item.is-selected > .side-menu__sub-heading {
  color: #fff;
}

.side-menu__sub-item.is-active > .side-menu__sub-heading:before,
.side-menu__sub-item.is-selected > .side-menu__sub-heading:before {
  background: var(--admin-sidebar-active);
}

.side-menu__third-list {
  display: block;
  padding: 0.0625rem 0 0.25rem;
}

.side-menu__third-item {
  display: block;
}

.side-menu__third-link {
  color: rgba(255, 255, 255, .62);
  display: block;
  font-size: 0.7188rem;
  font-weight: 600;
  padding: 0.3125rem 1.125rem 0.3125rem 3rem;
  position: relative;
}

.side-menu__third-link:before {
  background: rgba(255, 255, 255, .2);
  content: "";
  height: 0.0625rem;
  left: 2.25rem;
  position: absolute;
  top: 0.8125rem;
  width: 0.375rem;
}

.side-menu__third-item.is-active .side-menu__third-link,
.side-menu__third-item.is-selected .side-menu__third-link,
.side-menu__third-link:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.side-menu__third-item.is-active .side-menu__third-link:before,
.side-menu__third-item.is-selected .side-menu__third-link:before {
  background: var(--admin-sidebar-active);
}

.side-menu__account {
  background: rgba(0, 0, 0, .2);
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: block;
  flex: 0 0 auto;
  margin-left: 0;
  padding: 0.8125rem 1rem 0.875rem;
}

.side-menu__account-name {
  color: rgba(255, 255, 255, .88);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-menu__account-logout {
  align-items: center;
  border: 1px solid rgba(236, 240, 241, .28);
  border-radius: var(--admin-radius);
  color: rgba(236, 240, 241, .86);
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  justify-content: center;
  margin-top: 0.625rem;
  min-height: 2rem;
  padding: 0 0.75rem;
}

.side-menu__account-logout:hover {
  background: var(--admin-sidebar-active);
  border-color: var(--admin-sidebar-active);
  color: #fff;
}

.admin-page--with-sidebar {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100vh;
}

.l-main {
  background: var(--admin-bg);
  min-width: 0;
  padding: 1.125rem 1.75rem 2.25rem;
}

.admin-page--with-sidebar .l-main {
  margin-left: var(--admin-sidebar-width);
  min-height: 0;
}

.l-content {
  margin: 0;
  max-width: none;
  min-width: 0;
  padding: 0;
  width: 100%;
}

.admin-page .l-content > * + * {
  margin-top: 0.875rem;
}

.admin-page .l-content > .page-title + * {
  margin-top: 0;
}

.page-title {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.75rem;
  min-height: 1.25rem;
}

.page-title__heading {
  color: var(--admin-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-heading {
  color: var(--admin-text);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.25;
}

.site-footer {
  background: transparent;
  border-top: 1px solid var(--admin-border);
  color: var(--admin-muted);
  font-size: 0.75rem;
  min-height: 2.125rem;
  padding: 0.5rem 0.625rem;
  text-align: center;
}

.admin-page--with-sidebar .site-footer {
  margin-left: var(--admin-sidebar-width);
  width: auto;
}

/* Components: forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="date"],
select,
textarea,
.select2-container--default .select2-selection--single {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-dark);
  border-radius: var(--admin-radius);
  color: var(--admin-text);
  font-size: 0.7813rem;
  min-height: 2.125rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="date"],
select {
  height: 2.125rem;
  padding: 0 0.625rem;
}

textarea {
  line-height: 1.6;
  min-height: 7rem;
  overflow: auto;
  padding: 0.5rem 0.625rem;
  resize: vertical;
  width: 100%;
}

input::placeholder {
  color: var(--admin-muted-light);
  opacity: 1;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 0.1875rem rgba(23, 107, 159, .14);
}

input[type="checkbox"],
input[type="radio"] {
  vertical-align: -0.125rem;
}

input[type="radio"] {
  accent-color: var(--admin-primary);
}

input[type="checkbox"] {
  appearance: none;
  background: #fff;
  border: 1px solid #c8d0da;
  border-radius: 0.25rem;
  cursor: pointer;
  height: 1rem;
  position: relative;
  width: 1rem;
}

input[type="checkbox"]:checked {
  background: var(--admin-primary);
  border-color: var(--admin-primary);
}

input[type="checkbox"]:checked:after {
  border: solid #fff;
  border-width: 0 0.125rem 0.125rem 0;
  content: "";
  height: 0.5rem;
  left: 0.25rem;
  position: absolute;
  top: 1px;
  transform: rotate(45deg);
  width: 0.3125rem;
}

input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 0.1875rem rgba(23, 107, 159, .16);
}

.checkbox {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: 0.375rem;
  min-height: 1.625rem;
  position: relative;
}

.checkbox input[type="checkbox"] {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.checkbox__icon {
  align-items: center;
  background: #fff;
  border: 1px solid #c8d0da;
  border-radius: 0.25rem;
  color: #fff;
  display: inline-flex;
  height: 1rem;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 1rem;
}

.checkbox__icon-mark {
  display: none;
}

.checkbox input[type="checkbox"]:checked ~ .checkbox__icon {
  background: var(--admin-primary);
  border-color: var(--admin-primary);
}

.checkbox input[type="checkbox"]:checked ~ .checkbox__icon:after {
  border: solid #fff;
  border-width: 0 0.125rem 0.125rem 0;
  content: "";
  height: 0.5rem;
  left: 0.25rem;
  position: absolute;
  top: 1px;
  transform: rotate(45deg);
  width: 0.3125rem;
}

.checkbox-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.875rem;
  max-width: 35rem;
}

.checkbox-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  max-width: 48rem;
}

.checkbox-list--grid .checkbox-list__item {
  align-items: flex-start;
  min-width: 0;
}

.checkbox-list__item {
  min-height: 1.75rem;
}

.checkbox__text {
  line-height: 1.4;
}

.radio {
  align-items: center;
  display: inline-flex;
  gap: 0.375rem;
}

.radio__icon {
  align-items: center;
  background: #fff;
  border: 1px solid #ccd0d7;
  border-radius: 50%;
  display: inline-flex;
  height: 1.125rem;
  justify-content: center;
  width: 1.125rem;
}

.radio__icon-mark {
  background: var(--admin-success);
  border-radius: 50%;
  display: inline-block;
  height: 0.625rem;
  opacity: 0;
  width: 0.625rem;
}

input[type="radio"]:checked ~ .radio__icon {
  border-color: var(--admin-success);
}

input[type="radio"]:checked ~ .radio__icon .radio__icon-mark {
  opacity: 1;
}

.l-content input[type="text"],
.l-content input[type="email"],
.l-content input[type="password"],
.l-content input[type="tel"],
.l-content input[type="search"],
.l-content input[type="number"],
.l-content select {
  width: 11.25rem;
}

.l-content input[size="30"],
.l-content input.form-control--large,
.l-content select.form-control--large {
  width: min(100%, 16.25rem);
}

.l-content input[size="40"] {
  width: min(100%, 24rem);
}

.l-content input[size="50"],
.l-content input[size="70"],
.l-content input[size="80"] {
  width: min(100%, 35rem);
}

.l-content .entry-url__input,
.l-content .js-entry-url {
  width: min(100%, 20rem);
}

.form-required,
.u-text-danger {
  color: var(--admin-danger);
  font-weight: 700;
}

.form-error {
  color: var(--admin-danger);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0.375rem;
}

.u-muted-text {
  color: var(--admin-muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.select2-container--default {
  min-width: 11.25rem;
}

.l-content .select2-container {
  width: 11.25rem !important;
}

.select2-container .selection {
  display: block;
}

.select-date + .select2-container--default {
  min-width: 4.375rem;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-dark);
  border-radius: var(--admin-radius);
  height: 2.125rem;
  min-height: 2.125rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--admin-text);
  font-size: 0.7813rem;
  line-height: 2.125rem;
  padding-left: 0.625rem;
  padding-right: 1.75rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.125rem;
  right: 0.25rem;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--admin-muted-light);
}

.select2-container--default .select2-selection--multiple {
  background: var(--admin-surface);
  border: 1px solid #ccd0d7;
  border-radius: var(--admin-radius);
  min-height: 2rem;
  padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  display: block;
  min-height: calc(2rem - 2px);
  overflow: hidden;
  padding: 0 0.5625rem;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: var(--admin-muted-light);
  line-height: calc(2rem - 2px);
  margin-top: 0;
}

.select2-container--default .select2-selection--multiple .select2-search--inline {
  margin: 0;
}

.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
  color: var(--admin-text);
  font-size: 0.7813rem;
  height: calc(2rem - 2px);
  line-height: calc(2rem - 2px);
  margin: 0;
  min-height: 0;
  min-width: 0;
  padding: 0;
  width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-right: 0.3125rem;
  margin-top: 0.25rem;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 0.1875rem rgba(32, 107, 196, .14);
}

.select2-dropdown {
  border-color: #ccd0d7;
  box-shadow: 0 0.625rem 1.5rem rgba(24, 36, 51, .12);
  font-size: 0.7813rem;
}

.select2-results__option {
  padding: 0.375rem 0.625rem;
}

/* Components: buttons */
.button,
button.button,
a.button {
  align-items: center;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-dark);
  border-radius: var(--admin-radius);
  color: var(--admin-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.7813rem;
  font-weight: 700;
  gap: 0.375rem;
  justify-content: center;
  line-height: 1.4;
  min-height: 2.125rem;
  padding: 0.375rem 0.875rem;
  text-align: center;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.button:hover {
  box-shadow: 0 0.125rem 0.5rem rgba(24, 36, 51, .1);
}

.button.button--primary {
  background: var(--admin-sidebar-active);
  border-color: var(--admin-sidebar-active);
  color: #fff;
}

.button.button--primary:hover {
  background: #0b8f8a;
  border-color: #0b8f8a;
  color: #fff;
}

.button.button--secondary {
  background: #fff;
  border-color: var(--admin-border-dark);
  color: var(--admin-text);
}

.button.button--secondary:hover {
  background: var(--admin-surface-muted);
  color: var(--admin-primary);
}

.button.button--dark {
  background: var(--admin-sidebar);
  border-color: var(--admin-sidebar);
  color: #fff;
}

.button.button--dark:hover {
  background: var(--admin-sidebar-deep);
  border-color: var(--admin-sidebar-deep);
  color: #fff;
}

.button.button--info {
  background: var(--admin-info);
  border-color: var(--admin-info);
  color: #fff;
}

.button.button--info:hover {
  background: #46b8da;
  border-color: #46b8da;
  color: #fff;
}

.button.button--warning {
  background: var(--admin-warning);
  border-color: var(--admin-warning);
  color: #fff;
}

.button.button--warning:hover {
  background: #ec971f;
  border-color: #ec971f;
  color: #fff;
}

.button.button--alert {
  background: var(--admin-danger);
  border-color: var(--admin-danger);
  color: #fff;
}

.button.button--alert:hover {
  background: #c9302c;
  border-color: #c9302c;
  color: #fff;
}

.button.button--upload {
  background: var(--admin-success);
  border-color: var(--admin-success);
  color: #fff;
  position: relative;
}

.button:disabled {
  background: #edf1f5 !important;
  border-color: var(--admin-border) !important;
  box-shadow: none !important;
  color: var(--admin-muted-light) !important;
  cursor: not-allowed;
}

.button-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.button-toolbar--start {
  justify-content: flex-start;
}

.button-toolbar--center {
  justify-content: center;
}

.u-gap-10 {
  gap: 0.625rem;
}

/* Components: panels and tables */
.search-form,
.form-table,
.data-table,
.dashboard-section,
.dashboard-kpi__card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  box-shadow: var(--admin-shadow-panel);
}

.search-form {
  align-items: flex-end;
  border-radius: var(--admin-radius);
  border-top: 0.125rem solid var(--admin-sidebar-active);
  display: grid;
  gap: 0.75rem 1.25rem;
  grid-template-columns: 1fr auto;
  padding: 0.875rem 1rem;
}

.search-form__table {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
  margin: 0;
  overflow: visible;
}

.search-form__table :where(tbody) {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.search-form__table :where(tr, th, td) {
  background: transparent;
  border: 0;
  display: block;
  padding: 0;
  width: auto;
}

.search-form__table :where(th) {
  color: var(--admin-muted);
  font-size: 0.7188rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.375rem;
  white-space: nowrap;
}

.search-form__table :where(td) {
  white-space: nowrap;
}

.search-form__table :where(tr:first-child) {
  min-width: 19.75rem;
}

.search-form__table :where(input, select) {
  min-width: 11.125rem;
  width: 11.125rem;
}

.search-form__table .select2-container {
  min-width: 11.125rem;
  width: 11.125rem !important;
}

.search-form__table .date-range {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.375rem;
  min-width: 19.375rem;
}

.search-form__table .date-input {
  min-width: 8.5rem;
  width: 8.5rem;
}

.date-range__sep {
  color: var(--admin-muted-light);
  line-height: 2.125rem;
}

.date-preset {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.date-preset__button {
  background: #fff;
  border: 1px solid var(--admin-border-dark);
  border-radius: var(--admin-radius);
  color: var(--admin-primary);
  cursor: pointer;
  font-size: 0.7813rem;
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.125rem;
  padding: 0.3125rem 0.625rem;
}

.date-preset__button:hover,
.date-preset__button.is-active {
  background: var(--admin-sidebar-active);
  border-color: var(--admin-sidebar-active);
  color: #fff;
}

.search-form .button-toolbar {
  align-self: end;
  justify-content: flex-end;
  margin-top: 0;
  padding-bottom: 0;
}

.form-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--admin-radius);
  overflow: hidden;
}

.form-table--small,
.form-table--small + .button-toolbar {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  width: 100%;
}

.form-table--medium,
.form-table--medium + .button-toolbar {
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
  width: 100%;
}

.form-table--large,
.form-table--large + .button-toolbar {
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem;
  width: 100%;
}

.form-table--full,
.form-table--full + .button-toolbar {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  width: 100%;
}

.form-table :where(th, td) {
  border: 0;
  border-bottom: 1px solid var(--admin-border);
  padding: 0.75rem 0.875rem;
  text-align: left;
}

.form-table :where(tr:last-child th, tr:last-child td) {
  border-bottom: 0;
}

.form-table :where(th) {
  background: var(--admin-surface-muted);
  color: var(--admin-muted);
  font-size: 0.7813rem;
  font-weight: 700;
  width: 11.875rem;
}

.form-table :where(td) {
  background: #fff;
  color: var(--admin-text);
}

.search-form__table :where(th, td) {
  background: transparent;
  border: 0;
  padding: 0;
  width: auto;
}

.search-form__table input[type="text"]:not(.date-input) {
  width: 15rem;
}

.data-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--admin-radius);
  min-width: 47.5rem;
  overflow: hidden;
  table-layout: auto;
}

.data-table--medium,
.data-table--medium + .button-toolbar {
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
  width: 100%;
}

.data-table :where(th, td) {
  border: 0;
  border-bottom: 1px solid var(--admin-border);
  padding: 0.5625rem 0.75rem;
  text-align: left;
  vertical-align: middle;
}

.data-table :where(thead th) {
  background: #24435d;
  border-bottom: 1px solid #17324a;
  color: #fff;
  font-size: 0.7188rem;
  font-weight: 700;
  white-space: nowrap;
}

.data-table :where(tbody td) {
  color: var(--admin-text);
  font-size: 0.7813rem;
}

.data-table :where(tbody tr:nth-child(even)) {
  background: #fafcff;
}

.data-table :where(tbody tr:hover) {
  background: #eef9f8;
}

.data-table :where(tbody tr:last-child td) {
  border-bottom: 0;
}

.data-table :where(td a) {
  color: var(--admin-primary);
  font-weight: 700;
}

.data-table :where(td a:hover) {
  color: var(--admin-primary-hover);
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.table-scroll .data-table {
  width: 100%;
}

.list-count {
  color: var(--admin-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.analysis-table {
  min-width: 47.5rem;
}

.analysis-target-table {
  margin-bottom: 1.25rem;
}

.analysis-target-table :where(td) {
  word-break: break-all;
}

.analysis-table__number,
.u-text-right {
  font-variant-numeric: tabular-nums;
  text-align: right !important;
}

.analysis-table__link {
  text-align: center !important;
  white-space: nowrap;
}

.analysis-table__code,
.analysis-table__date {
  white-space: nowrap;
}

.analysis-table__name {
  min-width: 9.375rem;
}

.analysis-table__url {
  max-width: 32.5rem;
  min-width: 17.5rem;
  word-break: break-all;
}

.ad-conversion-request-log-table__uri {
  max-width: 60rem;
  min-width: 28rem;
  word-break: break-all;
}

.ad-conversion-table__order-id {
  max-width: 18rem;
  min-width: 18rem;
  width: 18rem;
}

.ad-conversion-table__order-id-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-report-table {
  min-width: 58rem;
  table-layout: fixed;
  width: 100%;
}

.media-report-table .analysis-table__name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-report-table .analysis-table__name a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.media-report-table .analysis-table__name .media-report-table__name-main {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-report-table__id {
  color: var(--admin-muted-light);
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 0.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-report-table .analysis-table__number {
  white-space: nowrap;
  width: 7.5rem;
}

.entry-url {
  align-items: center;
  display: flex;
  gap: 0.375rem;
  min-width: 20.625rem;
}

.entry-url__copy-button {
  align-items: center;
  background: #fff;
  border: 1px solid #ccd0d7;
  border-radius: var(--admin-radius);
  color: var(--admin-muted);
  cursor: pointer;
  display: inline-flex;
  height: 2.125rem;
  justify-content: center;
  min-width: 2.125rem;
  width: 2.125rem;
}

.entry-url__copy-button:hover {
  background: #eef8f5;
  border-color: #b9e6dc;
  color: var(--admin-success);
}

.entry-url__copy-button.is-copied {
  background: #eafaf6;
  border-color: #9ee2d3;
  color: var(--admin-success);
}

.cta-link-modal-backdrop {
  align-items: center;
  background: rgba(24, 36, 51, .35);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 1rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.cta-link-modal {
  background: var(--admin-surface);
  border-radius: var(--admin-radius);
  box-shadow: 0 1rem 2.5rem rgba(24, 36, 51, .2);
  max-height: calc(100vh - 2rem);
  max-width: 100%;
  overflow-y: auto;
  padding: 1.25rem;
  width: 36rem;
}

.cta-link-modal__header {
  align-items: center;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-bottom: 0.875rem;
}

.cta-link-modal__header h2 {
  font-size: 1.125rem;
  margin: 0;
}

.cta-link-modal__close {
  align-items: center;
  color: var(--admin-muted);
  display: inline-flex;
  font-size: 1.75rem;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 2rem;
}

.cta-link-modal__body {
  padding-top: 1rem;
}

.cta-link-modal .entry-url {
  min-width: 0;
}

.cta-link-modal .entry-url__input {
  min-width: 0;
}

.ad-list-table {
  min-width: 86rem;
  table-layout: fixed;
}

.ad-list-table__col-id {
  width: 3%;
}

.ad-list-table__col-name {
  width: 14%;
}

.ad-list-table__col-code {
  width: 7%;
}

.ad-list-table__col-matter {
  width: 8%;
}

.ad-list-table__col-group {
  width: 9%;
}

.ad-list-table__col-media {
  width: 7%;
}

.ad-list-table__col-platform {
  width: 7%;
}

.ad-list-table__col-entry-url {
  width: 17%;
}

.ad-list-table__col-landing-url {
  width: 17%;
}

.ad-list-table__col-status {
  width: 5%;
}

.ad-list-table__col-action {
  width: 6%;
}

.ad-list-table :where(th, td) {
  overflow: hidden;
}

.ad-list-table__text,
.ad-list-table .badge {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ad-list-table__text {
  display: block;
}

.ad-list-table__text--name {
  display: -webkit-box;
  line-height: 1.45;
  max-height: 2.9em;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ad-list-table .badge {
  display: inline-block;
  vertical-align: bottom;
}

.ad-list-table .entry-url {
  min-width: 0;
  width: 100%;
}

.ad-list-table .entry-url__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.ad-list-table .entry-url--plain {
  display: block;
}

/* Components: dashboard */
.dashboard-kpi {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dashboard-kpi__card {
  border-top: 0.1875rem solid var(--admin-sidebar-active);
  min-height: 6.25rem;
  padding: 0.9375rem 1.0625rem;
}

.dashboard-kpi__card:nth-child(2) {
  border-top-color: var(--admin-primary);
}

.dashboard-kpi__card:nth-child(3) {
  border-top-color: var(--admin-warning);
}

.dashboard-kpi__card:nth-child(4) {
  border-top-color: var(--admin-danger);
}

.dashboard-kpi__label {
  color: var(--admin-muted);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.dashboard-kpi__value {
  color: var(--admin-text);
  font-size: 1.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1.15;
}

.dashboard-kpi__sub-label,
.dashboard-kpi__diff {
  color: var(--admin-muted);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.dashboard-kpi__diff--plus {
  color: var(--admin-success);
}

.dashboard-kpi__diff--minus {
  color: var(--admin-danger);
}

.dashboard-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-section {
  overflow-x: auto;
  overflow-y: hidden;
}

.dashboard-section__header {
  background: #f5f8fb;
  border-bottom: 1px solid var(--admin-border);
  padding: 0.75rem 0.9375rem;
}

.dashboard-section__title {
  color: var(--admin-text);
  font-size: 0.875rem;
  font-weight: 700;
}

.dashboard-section .data-table {
  border: 0;
  box-shadow: none;
  min-width: 100%;
}

/* Components: badges and messages */
.badge {
  border: 1px solid transparent;
  border-radius: 62.4375rem;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.125rem 0.5rem;
  white-space: nowrap;
}

.badge-stack {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badge--green {
  background: #e6f6f2;
  border-color: #b8e3d8;
  color: var(--admin-success);
}

.badge--gray {
  background: #f0f2f4;
  border-color: #dfe4e8;
  color: #7b8793;
}

.badge--blue {
  background: #e9f3fa;
  border-color: #bdd7e8;
  color: var(--admin-primary);
}

.badge--cyan {
  background: #e8f7fb;
  border-color: #b7e0ec;
  color: #23748a;
}

.badge--teal {
  background: #e7f6f3;
  border-color: #b8ded7;
  color: #28766c;
}

.badge--amber,
.badge--yellow {
  background: #fff7e8;
  border-color: #f8d9a7;
  color: #b37516;
}

.badge--red {
  background: #fdeeee;
  border-color: #efc1bf;
  color: var(--admin-danger);
}

.badge--purple {
  background: #f2edfa;
  border-color: #d7c5ef;
  color: #7752a8;
}

.badge--pink {
  background: #fdeef5;
  border-color: #efc1d6;
  color: #b44f79;
}

.badge--orange {
  background: #fff0e4;
  border-color: #f4c59f;
  color: #b8651c;
}

.badge--lime {
  background: #f2f8df;
  border-color: #d8e9a8;
  color: #6f8522;
}

.badge--brown {
  background: #f5eee8;
  border-color: #ddc7b7;
  color: #7c573f;
}

.label-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.875rem;
}

.label-color-list label {
  align-items: center;
  display: inline-flex;
  gap: 0.25rem;
}

.message {
  border-radius: var(--admin-radius);
  font-weight: 700;
  line-height: 1.6;
  padding: 0.625rem 0.75rem;
}

.message--notice {
  background: #eaf7f4;
  border: 1px solid #bfe5dc;
  color: var(--admin-success);
}

.message--alert {
  background: #fff2f2;
  border: 1px solid #efc1bf;
  color: var(--admin-danger);
}

/* Pagination */
.pagination {
  margin: 0.75rem 0;
}

.pagination__body {
  align-items: center;
  display: flex;
  gap: 0.3125rem;
  justify-content: flex-end;
}

.pagination__item,
.pagination__current,
.pagination__sep {
  align-items: center;
  display: inline-flex;
  height: 1.9375rem;
  justify-content: center;
}

.pagination__item {
  background: #fff;
  border: 1px solid #ccd0d7;
  border-radius: var(--admin-radius);
  color: var(--admin-muted);
  min-width: 1.9375rem;
}

.pagination__link {
  align-items: center;
  color: var(--admin-muted);
  display: flex;
  height: 1.8125rem;
  justify-content: center;
  min-width: 1.8125rem;
  padding: 0 0.5625rem;
}

.pagination__item:not(.is-disabled):hover,
.pagination__item.is-current {
  background: var(--admin-primary);
  border-color: var(--admin-primary);
  color: #fff;
}

.pagination__item:not(.is-disabled):hover .pagination__link,
.pagination__item.is-current .pagination__link {
  color: #fff;
}

.pagination__item.is-disabled {
  background: #edf1f5;
  border-color: var(--admin-border);
}

.pagination__item.is-disabled .pagination__link {
  color: var(--admin-muted-light);
  pointer-events: none;
}

.pagination__current {
  background: var(--admin-primary);
  border: 1px solid var(--admin-primary);
  border-radius: var(--admin-radius);
  color: #fff;
  font-weight: 700;
  min-width: 2.125rem;
  padding: 0 0.625rem;
}

.pagination__sep {
  color: var(--admin-muted);
  padding: 0 0.25rem;
}

.pagination__item--three-point {
  color: var(--admin-muted);
  padding: 0 0.5rem;
}

/* Components: login */
.login-page {
  background: var(--admin-bg);
  color: var(--admin-text);
  min-height: 100vh;
}

.login-page .site-header {
  align-items: center;
  background: var(--admin-sidebar);
  border-bottom: 0;
  box-shadow: none;
  display: flex;
  height: var(--admin-header-height);
  justify-content: center;
  left: auto;
  padding: 0 1.5rem;
  position: static;
  top: auto;
  width: 100%;
}

.login-page .site-header__logo {
  background: transparent;
  height: var(--admin-header-height);
  padding: 0;
  position: static;
  width: auto;
}

.login-page .l-main {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - var(--admin-header-height));
  padding: 3.5rem 1.25rem;
}

.login-page .l-content {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-top: 0.1875rem solid var(--admin-success);
  box-shadow: 0 0.625rem 1.75rem rgba(42, 63, 84, .12);
  width: min(26.25rem, 100%);
}

.login-page .page-title {
  border-bottom: 1px solid var(--admin-border);
  margin: 0;
  min-height: 0;
  padding: 1.375rem 1.625rem 0.9375rem;
}

.login-page .page-title__heading {
  color: var(--admin-text);
  font-size: 1.25rem;
  font-weight: 700;
}

.login-page form {
  padding: 1.375rem 1.625rem 1.625rem;
}

.login-page .form-table {
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
}

.login-page .form-table tbody,
.login-page .form-table tr,
.login-page .form-table :where(th, td) {
  background: transparent;
  border: 0;
  display: block;
  padding: 0;
  width: 100%;
}

.login-page .form-table tr + tr {
  margin-top: 0.875rem;
}

.login-page .form-table :where(th) {
  color: var(--admin-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.3125rem;
}

.login-page .form-table input[type="text"],
.login-page .form-table input[type="password"] {
  height: 2.5rem;
  width: 100%;
}

.login-page .u-text-center {
  margin-top: 1.125rem;
}

.login-form__button {
  min-width: 10rem;
}

.login-page .site-footer {
  display: none;
}

/* Components: loading overlay */
.loading-overlay {
  align-items: center;
  background: rgba(247, 247, 247, .72);
  display: none;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 1000;
}

body.is-loading .loading-overlay {
  display: flex;
}

.loading-overlay__spinner {
  animation: loading-spin .8s linear infinite;
  border: 0.1875rem solid rgba(42, 63, 84, .18);
  border-radius: 50%;
  border-top-color: var(--admin-success);
  height: 2.375rem;
  width: 2.375rem;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utilities */
.u-hidden {
  display: none !important;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-scroll-x {
  overflow-x: auto;
}

.u-horizontal {
  align-items: center;
  display: flex;
}

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

.u-text-right {
  text-align: right;
}

.u-w-fit {
  width: fit-content;
}

.u-h-fit {
  field-sizing: content;
}

.u-mt-10 {
  margin-top: 0.625rem;
}

.u-mt-20 {
  margin-top: 1.25rem;
}

.u-mt-30 {
  margin-top: 1.875rem;
}

.u-mb-10 {
  margin-bottom: 0.625rem;
}

.u-mb-20 {
  margin-bottom: 1.25rem;
}

.u-mb-30 {
  margin-bottom: 1.875rem;
}

.u-ml-10 {
  margin-left: 0.625rem;
}

.u-ml-20 {
  margin-left: 1.25rem;
}

.u-ml-30 {
  margin-left: 1.875rem;
}

.u-mr-10 {
  margin-right: 0.625rem;
}

.u-mr-20 {
  margin-right: 1.25rem;
}

.u-mr-30 {
  margin-right: 1.875rem;
}

.new-item-form {
  background: #fff8d7 !important;
}

.cfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

/* Responsive */
@media screen and (max-width: 68.75rem) {
  .l-main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .l-content {
    overflow-x: auto;
  }

  .dashboard-kpi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 47.5rem) {
  :root {
    --admin-header-height: 3.25rem;
  }

  .admin-page--with-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header {
    background: var(--admin-surface);
    border-bottom: 1px solid var(--admin-border);
    box-shadow: 0 1px 0.125rem rgba(42, 63, 84, .05);
    justify-content: space-between;
    padding: 0 0.875rem;
    width: 100%;
    z-index: 90;
  }

  .site-header__logo {
    background: transparent;
    height: var(--admin-header-height);
    padding: 0;
    position: static;
    width: auto;
  }

  .site-header__menu-button {
    align-items: center;
    background: #fff;
    border: 1px solid #ccd0d7;
    border-radius: var(--admin-radius);
    color: var(--admin-text);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    height: 2rem;
    justify-content: center;
    padding: 0;
    width: 2.25rem;
  }

  .login-page .site-header__menu-button {
    display: none;
  }

  .site-header__link {
    color: var(--admin-text);
    font-size: 1rem;
  }

  .login-page .site-header__link {
    color: #fff;
  }

  .admin-page--with-sidebar .side-menu {
    box-shadow: none;
    display: flex;
    max-width: 84vw;
    top: var(--admin-header-height);
    transform: translateX(-100%);
    transition: transform .18s ease;
    width: 17.5rem;
    z-index: 80;
  }

  body.is-mobile-menu-open .side-menu {
    box-shadow: 0.375rem 0 1rem rgba(24, 36, 51, .18);
    transform: translateX(0);
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-overlay {
    background: rgba(24, 36, 51, .32);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: var(--admin-header-height);
    z-index: 70;
  }

  body.is-mobile-menu-open .mobile-menu-overlay {
    display: block;
  }

  .side-menu__sub-list,
  .side-menu__item:hover .side-menu__sub-list {
    display: block;
  }

  .admin-page--with-sidebar .l-main,
  .admin-page--with-sidebar .site-footer {
    margin-left: 0;
    width: 100%;
  }

  .l-main {
    background: var(--admin-bg);
    padding: calc(var(--admin-header-height) + 1.125rem) 0.875rem 2rem;
  }

  .l-content {
    overflow-x: visible;
  }

  .page-title {
    align-items: flex-start;
    display: block;
    min-height: 0;
  }

  .page-heading {
    color: var(--admin-text);
    font-size: 1.1875rem;
  }

  .dashboard-kpi {
    grid-template-columns: 1fr;
  }

  .search-form {
    display: block;
    max-width: 100%;
    overflow: hidden;
  }

  .search-form__table :where(tbody) {
    display: block;
  }

  .search-form__table,
  .search-form__table :where(tbody, tr, th, td) {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .search-form__table :where(tr + tr) {
    margin-top: 0.75rem;
  }

  .search-form__table :where(tr:first-child) {
    grid-column: auto;
    min-width: 0;
  }

  .search-form__table :where(td) {
    white-space: normal;
  }

  .search-form__table :where(input, select:not(.select2-hidden-accessible)),
  .search-form__table .select2-container {
    max-width: 100%;
    min-width: 0;
    width: 100% !important;
  }

  .search-form__table select.select2-hidden-accessible {
    max-width: 1px;
    min-width: 0;
    width: 1px !important;
  }

  .l-content select.select2-hidden-accessible {
    left: 0 !important;
    position: fixed !important;
    top: 0 !important;
  }

  .search-form__table .date-range {
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .search-form__table .date-input {
    flex: 1 1 8.5rem;
    max-width: 100%;
    min-width: 0;
    width: 8.5rem;
  }

  .search-form .button-toolbar {
    justify-content: flex-start;
    margin-top: 0.875rem;
  }

  .form-table,
  .form-table :where(tbody, tr, th, td) {
    display: block;
    width: 100%;
  }

  .form-table :where(th) {
    border-bottom: 0;
    padding-bottom: 0.3125rem;
  }

  .form-table :where(td) {
    padding-top: 0.3125rem;
  }

  .data-table {
    display: block;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .data-table :where(thead) {
    display: table-header-group;
  }

  .data-table :where(tbody) {
    display: table-row-group;
  }

  .data-table :where(tr) {
    display: table-row;
  }

  .data-table :where(th, td) {
    display: table-cell;
  }

  .table-scroll .ad-list-table {
    display: table;
    max-width: none;
    min-width: 86rem;
    width: 86rem;
  }

  .entry-url {
    min-width: 18.75rem;
  }

  .pagination__body {
    flex-wrap: wrap;
  }
}
