/**
 * Colors
 */
/**
 * Breakpoints & Media Queries
 */
/**
 * Often re-used variables
 */
/**
 * Breakpoint mixins
 */
/**
 * Long content fade mixin
 *
 * Creates a fading overlay to signify that the content is longer
 * than the space allows.
 */
/**
 * Button states and focus styles
 */
/**
 * Applies editor left position to the selector passed as argument
 */
/**
 * Styles that are reused verbatim in a few places
 */
/**
 * Allows users to opt-out of animations via OS-level preferences.
 */
/**
 * Reset default styles for JavaScript UI based pages.
 * This is a WP-admin agnostic reset
 */
/**
 * Reset the WP Admin page styles for Gutenberg-like pages.
 */
.components-animate__appear {
  animation: components-animate__appear-animation 0.1s cubic-bezier(0, 0, 0.2, 1) 0s;
  animation-fill-mode: forwards; }
  @media (prefers-reduced-motion: reduce) {
    .components-animate__appear {
      animation-duration: 1ms; } }
  .components-animate__appear.is-from-top, .components-animate__appear.is-from-top.is-from-left {
    transform-origin: top left; }
  .components-animate__appear.is-from-top.is-from-right {
    transform-origin: top right; }
  .components-animate__appear.is-from-bottom, .components-animate__appear.is-from-bottom.is-from-left {
    transform-origin: bottom left; }
  .components-animate__appear.is-from-bottom.is-from-right {
    transform-origin: bottom right; }

@keyframes components-animate__appear-animation {
  from {
    transform: translateY(-2em) scaleY(0) scaleX(0); }
  to {
    transform: translateY(0%) scaleY(1) scaleX(1); } }

.components-animate__slide-in {
  animation: components-animate__slide-in-animation 0.1s cubic-bezier(0, 0, 0.2, 1);
  animation-fill-mode: forwards; }
  @media (prefers-reduced-motion: reduce) {
    .components-animate__slide-in {
      animation-duration: 1ms; } }
  .components-animate__slide-in.is-from-left {
    transform: translateX(100%); }

@keyframes components-animate__slide-in-animation {
  100% {
    transform: translateX(0%); } }

.components-animate__loading {
  animation: components-animate__loading 1.6s ease-in-out infinite; }

@keyframes components-animate__loading {
  0% {
    opacity: 0.5; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0.5; } }

.components-autocomplete__popover .components-popover__content {
  min-width: 200px; }

.components-autocomplete__popover .components-autocomplete__results {
  padding: 3px;
  display: flex;
  flex-direction: column;
  align-items: stretch; }
  .components-autocomplete__popover .components-autocomplete__results:empty {
    display: none; }

.components-autocomplete__result.components-button {
  margin-bottom: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: #555d66;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: center;
  padding: 6px 8px;
  margin-left: -3px;
  margin-right: -3px;
  text-align: left; }
  .components-autocomplete__result.components-button.is-selected {
    color: #191e23;
    border: none;
    box-shadow: none;
    outline-offset: -2px;
    outline: 1px dotted #555d66; }
  .components-autocomplete__result.components-button:hover {
    color: #191e23;
    border: none;
    box-shadow: none;
    background: #f3f4f5; }

.components-base-control {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px; }
  .components-base-control .components-base-control__field {
    margin-bottom: 8px; }
    .components-panel__row .components-base-control .components-base-control__field {
      margin-bottom: inherit; }
  .components-base-control .components-base-control__label {
    display: inline-block;
    margin-bottom: 4px; }
  .components-base-control .components-base-control__help {
    margin-top: -8px;
    font-style: italic; }

.components-base-control + .components-base-control {
  margin-bottom: 16px; }

.components-button-group {
  display: inline-block; }
  .components-button-group .components-button.is-button {
    border-radius: 0;
    display: inline-flex; }
    .components-button-group .components-button.is-button + .components-button.is-button {
      margin-left: -1px; }
    .components-button-group .components-button.is-button:first-child {
      border-radius: 3px 0 0 3px; }
    .components-button-group .components-button.is-button:last-child {
      border-radius: 0 3px 3px 0; }
    .components-button-group .components-button.is-button:focus, .components-button-group .components-button.is-button.is-primary {
      position: relative;
      z-index: 1; }
    .components-button-group .components-button.is-button.is-primary {
      box-shadow: none; }

.components-button {
  display: inline-flex;
  text-decoration: none;
  font-size: 13px;
  margin: 0;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  background: none;
  transition: box-shadow 0.1s linear;
  /* Buttons that look like links, for a cross of good semantics with the visual */
  /* Link buttons that are red to indicate destructive behavior. */ }
  @media (prefers-reduced-motion: reduce) {
    .components-button {
      transition-duration: 0s; } }
  .components-button.is-button {
    padding: 0 10px;
    line-height: 2;
    height: 28px;
    border-radius: 3px;
    white-space: nowrap;
    border-width: 1px;
    border-style: solid; }
  .components-button.is-default {
    color: rgb(0, 117, 175);
    border-color: rgb(0, 117, 175);
    background: #f3f5f6; }
  body.admin-color-sunrise .components-button.is-default {
    color: rgb(196, 126, 70);
    border-color: rgb(196, 126, 70); }
  body.admin-color-ocean .components-button.is-default {
    color: rgb(153, 174, 152);
    border-color: rgb(153, 174, 152); }
  body.admin-color-midnight .components-button.is-default {
    color: rgb(212, 72, 63);
    border-color: rgb(212, 72, 63); }
  body.admin-color-ectoplasm .components-button.is-default {
    color: rgb(157, 171, 81);
    border-color: rgb(157, 171, 81); }
  body.admin-color-coffee .components-button.is-default {
    color: rgb(182, 156, 132);
    border-color: rgb(182, 156, 132); }
  body.admin-color-blue .components-button.is-default {
    color: rgb(204, 161, 84);
    border-color: rgb(204, 161, 84); }
  body.admin-color-light .components-button.is-default {
    color: rgb(0, 125, 175);
    border-color: rgb(0, 125, 175); }
    .components-button.is-default:hover {
      background: #f1f1f1;
      border-color: rgb(0, 93, 140);
      color: rgb(0, 93, 140);
      text-decoration: none; }
    body.admin-color-sunrise .components-button.is-default:hover {
      border-color: rgb(157, 101, 56);
      color: rgb(157, 101, 56); }
    body.admin-color-ocean .components-button.is-default:hover {
      border-color: rgb(122, 139, 122);
      color: rgb(122, 139, 122); }
    body.admin-color-midnight .components-button.is-default:hover {
      border-color: rgb(169, 58, 50);
      color: rgb(169, 58, 50); }
    body.admin-color-ectoplasm .components-button.is-default:hover {
      border-color: rgb(125, 137, 65);
      color: rgb(125, 137, 65); }
    body.admin-color-coffee .components-button.is-default:hover {
      border-color: rgb(146, 125, 105);
      color: rgb(146, 125, 105); }
    body.admin-color-blue .components-button.is-default:hover {
      border-color: rgb(163, 128, 67);
      color: rgb(163, 128, 67); }
    body.admin-color-light .components-button.is-default:hover {
      border-color: rgb(0, 100, 140);
      color: rgb(0, 100, 140); }
    .components-button.is-default:focus:enabled {
      background: #f3f5f6;
      color: rgb(0, 93, 140);
      border-color: rgb(0, 118, 177);
      box-shadow: 0 0 0 1px rgb(0, 118, 177);
      text-decoration: none; }
    body.admin-color-sunrise .components-button.is-default:focus:enabled {
      color: rgb(157, 101, 56);
      border-color: rgb(199, 127, 70);
      box-shadow: 0 0 0 1px rgb(199, 127, 70); }
    body.admin-color-ocean .components-button.is-default:focus:enabled {
      color: rgb(122, 139, 122);
      border-color: rgb(155, 176, 154);
      box-shadow: 0 0 0 1px rgb(155, 176, 154); }
    body.admin-color-midnight .components-button.is-default:focus:enabled {
      color: rgb(169, 58, 50);
      border-color: rgb(214, 73, 64);
      box-shadow: 0 0 0 1px rgb(214, 73, 64); }
    body.admin-color-ectoplasm .components-button.is-default:focus:enabled {
      color: rgb(125, 137, 65);
      border-color: rgb(159, 173, 82);
      box-shadow: 0 0 0 1px rgb(159, 173, 82); }
    body.admin-color-coffee .components-button.is-default:focus:enabled {
      color: rgb(146, 125, 105);
      border-color: rgb(184, 158, 133);
      box-shadow: 0 0 0 1px rgb(184, 158, 133); }
    body.admin-color-blue .components-button.is-default:focus:enabled {
      color: rgb(163, 128, 67);
      border-color: rgb(206, 162, 85);
      box-shadow: 0 0 0 1px rgb(206, 162, 85); }
    body.admin-color-light .components-button.is-default:focus:enabled {
      color: rgb(0, 100, 140);
      border-color: rgb(0, 126, 177);
      box-shadow: 0 0 0 1px rgb(0, 126, 177); }
    .components-button.is-default:active:enabled {
      background: #f3f5f6;
      color: rgb(0, 118, 177);
      border-color: #7e8993;
      box-shadow: none; }
    body.admin-color-sunrise .components-button.is-default:active:enabled {
      color: rgb(199, 127, 70); }
    body.admin-color-ocean .components-button.is-default:active:enabled {
      color: rgb(155, 176, 154); }
    body.admin-color-midnight .components-button.is-default:active:enabled {
      color: rgb(214, 73, 64); }
    body.admin-color-ectoplasm .components-button.is-default:active:enabled {
      color: rgb(159, 173, 82); }
    body.admin-color-coffee .components-button.is-default:active:enabled {
      color: rgb(184, 158, 133); }
    body.admin-color-blue .components-button.is-default:active:enabled {
      color: rgb(206, 162, 85); }
    body.admin-color-light .components-button.is-default:active:enabled {
      color: rgb(0, 126, 177); }
    .components-button.is-default:disabled, .components-button.is-default[aria-disabled="true"] {
      color: #a0a5aa;
      border-color: #ddd;
      background: #f7f7f7;
      text-shadow: 0 1px 0 #fff;
      transform: none;
      opacity: 1; }
  .components-button.is-primary {
    background: rgb(0, 124, 186);
    border-color: rgb(0, 124, 186);
    color: #fff;
    text-decoration: none;
    text-shadow: none; }
  body.admin-color-sunrise .components-button.is-primary {
    background: rgb(209, 134, 74);
    border-color: rgb(209, 134, 74); }
  body.admin-color-ocean .components-button.is-primary {
    background: rgb(163, 185, 162);
    border-color: rgb(163, 185, 162); }
  body.admin-color-midnight .components-button.is-primary {
    background: rgb(225, 77, 67);
    border-color: rgb(225, 77, 67); }
  body.admin-color-ectoplasm .components-button.is-primary {
    background: rgb(167, 182, 86);
    border-color: rgb(167, 182, 86); }
  body.admin-color-coffee .components-button.is-primary {
    background: rgb(194, 166, 140);
    border-color: rgb(194, 166, 140); }
  body.admin-color-blue .components-button.is-primary {
    background: rgb(217, 171, 89);
    border-color: rgb(217, 171, 89); }
  body.admin-color-light .components-button.is-primary {
    background: rgb(0, 133, 186);
    border-color: rgb(0, 133, 186); }
    .components-button.is-primary:hover, .components-button.is-primary:focus:enabled {
      background: rgb(0, 112, 167);
      border-color: rgb(0, 112, 167);
      color: #fff; }
    body.admin-color-sunrise .components-button.is-primary:hover, body.admin-color-sunrise .components-button.is-primary:focus:enabled {
      background: rgb(188, 121, 67);
      border-color: rgb(188, 121, 67); }
    body.admin-color-ocean .components-button.is-primary:hover, body.admin-color-ocean .components-button.is-primary:focus:enabled {
      background: rgb(147, 167, 146);
      border-color: rgb(147, 167, 146); }
    body.admin-color-midnight .components-button.is-primary:hover, body.admin-color-midnight .components-button.is-primary:focus:enabled {
      background: rgb(203, 69, 60);
      border-color: rgb(203, 69, 60); }
    body.admin-color-ectoplasm .components-button.is-primary:hover, body.admin-color-ectoplasm .components-button.is-primary:focus:enabled {
      background: rgb(150, 164, 77);
      border-color: rgb(150, 164, 77); }
    body.admin-color-coffee .components-button.is-primary:hover, body.admin-color-coffee .components-button.is-primary:focus:enabled {
      background: rgb(175, 149, 126);
      border-color: rgb(175, 149, 126); }
    body.admin-color-blue .components-button.is-primary:hover, body.admin-color-blue .components-button.is-primary:focus:enabled {
      background: rgb(195, 154, 80);
      border-color: rgb(195, 154, 80); }
    body.admin-color-light .components-button.is-primary:hover, body.admin-color-light .components-button.is-primary:focus:enabled {
      background: rgb(0, 120, 167);
      border-color: rgb(0, 120, 167); }
    .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 124, 186); }
    body.admin-color-sunrise .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(209, 134, 74); }
    body.admin-color-ocean .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(163, 185, 162); }
    body.admin-color-midnight .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(225, 77, 67); }
    body.admin-color-ectoplasm .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(167, 182, 86); }
    body.admin-color-coffee .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(194, 166, 140); }
    body.admin-color-blue .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(217, 171, 89); }
    body.admin-color-light .components-button.is-primary:focus:enabled {
      box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 133, 186); }
    .components-button.is-primary:active:enabled {
      background: rgb(0, 99, 149);
      border-color: rgb(0, 99, 149);
      color: #fff; }
    body.admin-color-sunrise .components-button.is-primary:active:enabled {
      background: rgb(167, 107, 59);
      border-color: rgb(167, 107, 59); }
    body.admin-color-ocean .components-button.is-primary:active:enabled {
      background: rgb(130, 148, 130);
      border-color: rgb(130, 148, 130); }
    body.admin-color-midnight .components-button.is-primary:active:enabled {
      background: rgb(180, 62, 54);
      border-color: rgb(180, 62, 54); }
    body.admin-color-ectoplasm .components-button.is-primary:active:enabled {
      background: rgb(134, 146, 69);
      border-color: rgb(134, 146, 69); }
    body.admin-color-coffee .components-button.is-primary:active:enabled {
      background: rgb(155, 133, 112);
      border-color: rgb(155, 133, 112); }
    body.admin-color-blue .components-button.is-primary:active:enabled {
      background: rgb(174, 137, 71);
      border-color: rgb(174, 137, 71); }
    body.admin-color-light .components-button.is-primary:active:enabled {
      background: rgb(0, 106, 149);
      border-color: rgb(0, 106, 149); }
    .components-button.is-primary:disabled, .components-button.is-primary:disabled:active:enabled, .components-button.is-primary[aria-disabled="true"], .components-button.is-primary[aria-disabled="true"]:enabled, .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(102, 176, 214);
      background: rgb(25, 137, 193);
      border-color: rgb(25, 137, 193);
      opacity: 1; }
    body.admin-color-sunrise .components-button.is-primary:disabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"], body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(227, 182, 146);
      background: rgb(214, 146, 92);
      border-color: rgb(214, 146, 92); }
    body.admin-color-ocean .components-button.is-primary:disabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"], body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(200, 213, 199);
      background: rgb(172, 192, 171);
      border-color: rgb(172, 192, 171); }
    body.admin-color-midnight .components-button.is-primary:disabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"], body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(237, 148, 142);
      background: rgb(228, 95, 86);
      border-color: rgb(228, 95, 86); }
    body.admin-color-ectoplasm .components-button.is-primary:disabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"], body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(202, 211, 154);
      background: rgb(176, 189, 103);
      border-color: rgb(176, 189, 103); }
    body.admin-color-coffee .components-button.is-primary:disabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"], body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(218, 202, 186);
      background: rgb(200, 175, 152);
      border-color: rgb(200, 175, 152); }
    body.admin-color-blue .components-button.is-primary:disabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"], body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(232, 205, 155);
      background: rgb(221, 179, 106);
      border-color: rgb(221, 179, 106); }
    body.admin-color-light .components-button.is-primary:disabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"], body.admin-color-light .components-button.is-primary[aria-disabled="true"]:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:active:enabled {
      color: rgb(102, 182, 214);
      background: rgb(25, 145, 193);
      border-color: rgb(25, 145, 193); }
      .components-button.is-primary:disabled.is-button, .components-button.is-primary:disabled.is-button:hover, .components-button.is-primary:disabled:active:enabled, .components-button.is-primary:disabled:active:enabled.is-button, .components-button.is-primary:disabled:active:enabled.is-button:hover, .components-button.is-primary:disabled:active:enabled:active:enabled, .components-button.is-primary[aria-disabled="true"].is-button, .components-button.is-primary[aria-disabled="true"].is-button:hover, .components-button.is-primary[aria-disabled="true"]:active:enabled, .components-button.is-primary[aria-disabled="true"]:enabled.is-button, .components-button.is-primary[aria-disabled="true"]:enabled.is-button:hover, .components-button.is-primary[aria-disabled="true"]:enabled:active:enabled, .components-button.is-primary[aria-disabled="true"]:active:enabled.is-button, .components-button.is-primary[aria-disabled="true"]:active:enabled.is-button:hover, .components-button.is-primary[aria-disabled="true"]:active:enabled:active:enabled {
        box-shadow: none;
        text-shadow: none; }
      .components-button.is-primary:disabled:focus:enabled, .components-button.is-primary:disabled:active:enabled:focus:enabled, .components-button.is-primary[aria-disabled="true"]:focus:enabled, .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 124, 186); }
      body.admin-color-sunrise .components-button.is-primary:disabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-sunrise .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(209, 134, 74); }
      body.admin-color-ocean .components-button.is-primary:disabled:focus:enabled, body.admin-color-ocean .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-ocean .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(163, 185, 162); }
      body.admin-color-midnight .components-button.is-primary:disabled:focus:enabled, body.admin-color-midnight .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-midnight .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(225, 77, 67); }
      body.admin-color-ectoplasm .components-button.is-primary:disabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-ectoplasm .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(167, 182, 86); }
      body.admin-color-coffee .components-button.is-primary:disabled:focus:enabled, body.admin-color-coffee .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-coffee .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(194, 166, 140); }
      body.admin-color-blue .components-button.is-primary:disabled:focus:enabled, body.admin-color-blue .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-blue .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(217, 171, 89); }
      body.admin-color-light .components-button.is-primary:disabled:focus:enabled, body.admin-color-light .components-button.is-primary:disabled:active:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:enabled:focus:enabled, body.admin-color-light .components-button.is-primary[aria-disabled="true"]:active:enabled:focus:enabled {
        box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgb(0, 133, 186); }
    .components-button.is-primary.is-busy, .components-button.is-primary.is-busy:disabled, .components-button.is-primary.is-busy[aria-disabled="true"] {
      color: #fff;
      background-size: 100px 100%;
      /* stylelint-disable */
      background-image: linear-gradient(-45deg, #007cba 28%, rgb(0, 99, 149) 28%, rgb(0, 99, 149) 72%, #007cba 72%);
      /* stylelint-enable */
      border-color: rgb(0, 124, 186); }
    body.admin-color-sunrise .components-button.is-primary.is-busy, body.admin-color-sunrise .components-button.is-primary.is-busy:disabled, body.admin-color-sunrise .components-button.is-primary.is-busy[aria-disabled="true"] {
      background-image: linear-gradient(-45deg, #d1864a 28%, rgb(167, 107, 59) 28%, rgb(167, 107, 59) 72%, #d1864a 72%);
      border-color: rgb(209, 134, 74); }
    body.admin-color-ocean .components-button.is-primary.is-busy, body.admin-color-ocean .components-button.is-primary.is-busy:disabled, body.admin-color-ocean .components-button.is-primary.is-busy[aria-disabled="true"] {
      background-image: linear-gradient(-45deg, #a3b9a2 28%, rgb(130, 148, 130) 28%, rgb(130, 148, 130) 72%, #a3b9a2 72%);
      border-color: rgb(163, 185, 162); }
    body.admin-color-midnight .components-button.is-primary.is-busy, body.admin-color-midnight .components-button.is-primary.is-busy:disabled, body.admin-color-midnight .components-button.is-primary.is-busy[aria-disabled="true"] {
      background-image: linear-gradient(-45deg, #e14d43 28%, rgb(180, 62, 54) 28%, rgb(180, 62, 54) 72%, #e14d43 72%);
      border-color: rgb(225, 77, 67); }
    body.admin-color-ectoplasm .components-button.is-primary.is-busy, body.admin-color-ectoplasm .components-button.is-primary.is-busy:disabled, body.admin-color-ectoplasm .components-button.is-primary.is-busy[aria-disabled="true"] {
      background-image: linear-gradient(-45deg, #a7b656 28%, rgb(134, 146, 69) 28%, rgb(134, 146, 69) 72%, #a7b656 72%);
      border-color: rgb(167, 182, 86); }
    body.admin-color-coffee .components-button.is-primary.is-busy, body.admin-color-coffee .components-button.is-primary.is-busy:disabled, body.admin-color-coffee .components-button.is-primary.is-busy[aria-disabled="true"] {
      background-image: linear-gradient(-45deg, #c2a68c 28%, rgb(155, 133, 112) 28%, rgb(155, 133, 112) 72%, #c2a68c 72%);
      border-color: rgb(194, 166, 140); }
    body.admin-color-blue .components-button.is-primary.is-busy, body.admin-color-blue .components-button.is-primary.is-busy:disabled, body.admin-color-blue .components-button.is-primary.is-busy[aria-disabled="true"] {
      background-image: linear-gradient(-45deg, #d9ab59 28%, rgb(174, 137, 71) 28%, rgb(174, 137, 71) 72%, #d9ab59 72%);
      border-color: rgb(217, 171, 89); }
    body.admin-color-light .components-button.is-primary.is-busy, body.admin-color-light .components-button.is-primary.is-busy:disabled, body.admin-color-light .components-button.is-primary.is-busy[aria-disabled="true"] {
      background-image: linear-gradient(-45deg, #0085ba 28%, rgb(0, 106, 149) 28%, rgb(0, 106, 149) 72%, #0085ba 72%);
      border-color: rgb(0, 133, 186); }
  .components-button.is-link {
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: none;
    outline: none;
    text-align: left;
    /* Mimics the default link style in common.css */
    color: #0073aa;
    text-decoration: underline;
    transition-property: border, background, color;
    transition-duration: 0.05s;
    transition-timing-function: ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .components-button.is-link {
        transition-duration: 0s; } }
    .components-button.is-link:hover, .components-button.is-link:active {
      color: #00a0d2; }
    .components-button.is-link:focus {
      color: #124964;
      box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8); }
  .components-button.is-link.is-destructive {
    color: #d94f4f; }
  .components-button:active {
    color: inherit; }
  .components-button:disabled, .components-button[aria-disabled="true"] {
    cursor: default;
    opacity: 0.3; }
  .components-button:focus:not(:disabled) {
    background-color: #fff;
    color: #191e23;
    box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
    outline: 2px solid transparent; }
  .components-button.is-busy, .components-button.is-default.is-busy, .components-button.is-default.is-busy:disabled, .components-button.is-default.is-busy[aria-disabled="true"] {
    animation: components-button__busy-animation 2500ms infinite linear;
    background-size: 100px 100%;
    background-image: repeating-linear-gradient(-45deg, #e2e4e7, #fff 11px, #fff 10px, #e2e4e7 20px);
    opacity: 1; }
  .components-button.is-large {
    height: 30px;
    line-height: 28px;
    padding: 0 12px 2px; }
  .components-button.is-small {
    height: 24px;
    line-height: 22px;
    padding: 0 8px 1px;
    font-size: 11px; }
  .components-button.is-tertiary {
    color: #007cba;
    padding: 0 10px;
    line-height: 26px;
    height: 28px; }
  body.admin-color-sunrise .components-button.is-tertiary {
    color: #837425; }
  body.admin-color-ocean .components-button.is-tertiary {
    color: #5e7d5e; }
  body.admin-color-midnight .components-button.is-tertiary {
    color: #497b8d; }
  body.admin-color-ectoplasm .components-button.is-tertiary {
    color: #523f6d; }
  body.admin-color-coffee .components-button.is-tertiary {
    color: #59524c; }
  body.admin-color-blue .components-button.is-tertiary {
    color: #417e9B; }
  body.admin-color-light .components-button.is-tertiary {
    color: #007cba; }
    .components-button.is-tertiary .dashicon {
      display: inline-block;
      flex: 0 0 auto; }
    .components-button.is-tertiary svg {
      fill: currentColor;
      outline: none; }
    .components-button.is-tertiary:active:focus:enabled {
      box-shadow: none; }
    .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(0, 93, 140); }
    body.admin-color-sunrise .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(98, 87, 28); }
    body.admin-color-ocean .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(71, 94, 71); }
    body.admin-color-midnight .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(55, 92, 106); }
    body.admin-color-ectoplasm .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(62, 47, 82); }
    body.admin-color-coffee .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(67, 62, 57); }
    body.admin-color-blue .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(49, 95, 116); }
    body.admin-color-light .components-button.is-tertiary:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: rgb(0, 93, 140); }
  .components-button .screen-reader-text {
    height: auto; }

@keyframes components-button__busy-animation {
  0% {
    background-position: 200px 0; } }

.components-checkbox-control__input[type="checkbox"] {
  border: 1px solid #b4b9be;
  background: #fff;
  color: #555;
  clear: none;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  margin: 0 4px 0 0;
  outline: 0;
  padding: 0 !important;
  text-align: center;
  vertical-align: top;
  width: 25px;
  height: 25px;
  -webkit-appearance: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: 0.05s border-color ease-in-out; }
  @media (min-width: 600px) {
    .components-checkbox-control__input[type="checkbox"] {
      height: 16px;
      width: 16px; } }
  .components-checkbox-control__input[type="checkbox"]:focus {
    border-color: #5b9dd9;
    box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
    outline: 2px solid transparent; }
  .components-checkbox-control__input[type="checkbox"]:checked {
    background: #11a0d2;
    border-color: #11a0d2; }
    .components-checkbox-control__input[type="checkbox"]:checked::-ms-check {
      opacity: 0; }
  .components-checkbox-control__input[type="checkbox"]:focus:checked {
    border: none; }
  .components-checkbox-control__input[type="checkbox"]:checked::before {
    content: none; }

.components-checkbox-control__input-container {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
  width: 25px;
  height: 25px; }
  @media (min-width: 600px) {
    .components-checkbox-control__input-container {
      width: 16px;
      height: 16px; } }

svg.dashicon.components-checkbox-control__checked {
  fill: #fff;
  cursor: pointer;
  position: absolute;
  left: -4px;
  top: -2px;
  width: 31px;
  height: 31px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none; }
  @media (min-width: 600px) {
    svg.dashicon.components-checkbox-control__checked {
      width: 21px;
      height: 21px;
      left: -3px; } }

.components-circular-option-picker {
  display: inline-block;
  margin-top: 0.6rem;
  width: 100%; }
  .components-circular-option-picker .components-circular-option-picker__custom-clear-wrapper {
    display: flex;
    justify-content: flex-end; }

.components-circular-option-picker__option-wrapper {
  display: inline-block;
  height: 28px;
  width: 28px;
  margin-right: 12px;
  margin-bottom: 12px;
  vertical-align: top;
  transform: scale(1);
  transition: 100ms transform ease; }
  @media (prefers-reduced-motion: reduce) {
    .components-circular-option-picker__option-wrapper {
      transition-duration: 0s; } }
  .components-circular-option-picker__option-wrapper:hover {
    transform: scale(1.2); }
  .components-circular-option-picker__option-wrapper > div {
    height: 100%;
    width: 100%; }
  .components-circular-option-picker__option-wrapper:nth-child(6n+6) {
    margin-right: 0; }

.components-circular-option-picker__option-wrapper::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  right: 1px;
  border-radius: 50%;
  z-index: -1;
  /* stylelint-disable-next-line function-url-quotes */
  background: url('data:image/svg+xml,%3Csvg width="28" height="28" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M6 8V6H4v2h2zM8 8V6h2v2H8zM10 16H8v-2h2v2zM12 16v-2h2v2h-2zM12 18v-2h-2v2H8v2h2v-2h2zM14 18v2h-2v-2h2zM16 18h-2v-2h2v2z" fill="%23555D65"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M18 18h2v-2h-2v-2h2v-2h-2v-2h2V8h-2v2h-2V8h-2v2h2v2h-2v2h2v2h2v2zm-2-4v-2h2v2h-2z" fill="%23555D65"/%3E%3Cpath d="M18 18v2h-2v-2h2z" fill="%23555D65"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M8 10V8H6v2H4v2h2v2H4v2h2v2H4v2h2v2H4v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2v2h-2V4h-2v2h-2V4h-2v2h-2V4h-2v2h2v2h-2v2H8zm0 2v-2H6v2h2zm2 0v-2h2v2h-2zm0 2v-2H8v2H6v2h2v2H6v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h-2v2h-2V6h-2v2h-2v2h2v2h-2v2h-2z" fill="%23555D65"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4 0H2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v2H0v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2h-2V0h-2v2H8V0H6v2H4V0zm0 4V2H2v2h2zm2 0V2h2v2H6zm0 2V4H4v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2H2v2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h2v2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2v-2h-2v-2h2V8h-2V6h2V4h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2h-2V2h-2v2H8v2H6z" fill="%23555D65"/%3E%3C/svg%3E'); }

.components-circular-option-picker__option {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 14px;
  transition: 100ms box-shadow ease;
  cursor: pointer; }
  @media (prefers-reduced-motion: reduce) {
    .components-circular-option-picker__option {
      transition-duration: 0s; } }
  .components-circular-option-picker__option.is-active {
    box-shadow: inset 0 0 0 4px;
    position: relative;
    z-index: 1; }
    .components-circular-option-picker__option.is-active + .dashicons-saved {
      position: absolute;
      left: 4px;
      top: 4px;
      border-radius: 50%;
      z-index: 2;
      background: #fff;
      pointer-events: none; }
  .components-circular-option-picker__option::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    border: 1px solid transparent; }
  .components-circular-option-picker__option:focus {
    outline: none; }
    .components-circular-option-picker__option:focus::after {
      content: "";
      border: 2px solid #606a73;
      width: 32px;
      height: 32px;
      position: absolute;
      top: -2px;
      left: -2px;
      border-radius: 50%;
      box-shadow: inset 0 0 0 2px #fff; }

.components-circular-option-picker__button-action .components-circular-option-picker__option {
  color: #fff;
  background: #fff; }

.components-circular-option-picker__dropdown-link-action {
  margin-right: 16px; }
  .components-circular-option-picker__dropdown-link-action .components-button {
    line-height: 22px; }

.component-color-indicator {
  width: 25px;
  height: 16px;
  margin-left: 0.8rem;
  border: 1px solid #dadada;
  display: inline-block; }
  .component-color-indicator + .component-color-indicator {
    margin-left: 0.5rem; }

/**
 * Parts of this source were derived and modified from react-color,
 * released under the MIT license.
 *
 * https://github.com/casesandberg/react-color/
 *
 * Copyright (c) 2015 Case Sandberg
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
.components-color-picker {
  width: 100%;
  overflow: hidden; }
  .components-color-picker * {
    box-sizing: border-box; }
  .components-color-picker .components-icon-button {
    padding: 6px; }

.components-color-picker__saturation {
  width: 100%;
  padding-bottom: 55%;
  position: relative; }

.components-color-picker__body {
  padding: 16px 16px 12px; }

.components-color-picker__controls {
  display: flex; }

.components-color-picker__saturation-pointer,
.components-color-picker__hue-pointer,
.components-color-picker__alpha-pointer {
  padding: 0;
  position: absolute;
  cursor: pointer;
  box-shadow: none;
  border: none; }

/* CURRENT COLOR COMPONENT */
.components-color-picker__swatch {
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ddd 75%), linear-gradient(-45deg, transparent 75%, #ddd 75%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0; }
  .is-alpha-disabled .components-color-picker__swatch {
    width: 12px;
    height: 12px;
    margin-top: 0; }

.components-color-picker__active {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  z-index: 2; }

/* SATURATION COMPONENT */
.components-color-picker__saturation-color,
.components-color-picker__saturation-white,
.components-color-picker__saturation-black {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.components-color-picker__saturation-color {
  overflow: hidden; }

.components-color-picker__saturation-white {
  /*rtl:ignore*/
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); }

.components-color-picker__saturation-black {
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); }

.components-color-picker__saturation-pointer {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  background-color: transparent;
  transform: translate(-4px, -4px); }

/* HUE & ALPHA BARS */
.components-color-picker__toggles {
  flex: 1; }

.components-color-picker__alpha {
  background-image: linear-gradient(45deg, #ddd 25%, transparent 25%), linear-gradient(-45deg, #ddd 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #ddd 75%), linear-gradient(-45deg, transparent 75%, #ddd 75%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0; }

.components-color-picker__hue-gradient,
.components-color-picker__alpha-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.components-color-picker__hue,
.components-color-picker__alpha {
  height: 12px;
  position: relative; }

.is-alpha-enabled .components-color-picker__hue {
  margin-bottom: 8px; }

.components-color-picker__hue-bar,
.components-color-picker__alpha-bar {
  position: relative;
  margin: 0 3px;
  height: 100%;
  padding: 0 2px; }

.components-color-picker__hue-gradient {
  /*rtl:ignore*/
  background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%); }

.components-color-picker__hue-pointer,
.components-color-picker__alpha-pointer {
  /*rtl:ignore*/
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);
  background: #fff;
  transform: translate(-7px, -1px); }

.components-color-picker__hue-pointer,
.components-color-picker__saturation-pointer {
  transition: box-shadow 0.1s linear; }
  @media (prefers-reduced-motion: reduce) {
    .components-color-picker__hue-pointer,
    .components-color-picker__saturation-pointer {
      transition-duration: 0s; } }

.components-color-picker__saturation-pointer:focus {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #00a0d2, 0 0 5px 0 #00a0d2, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4); }

.components-color-picker__hue-pointer:focus,
.components-color-picker__alpha-pointer:focus {
  border-color: #00a0d2;
  box-shadow: 0 0 0 2px #00a0d2, 0 0 3px 0 #00a0d2;
  outline: 2px solid transparent;
  outline-offset: -2px; }

/* INPUTS COMPONENT */
.components-color-picker__inputs-wrapper {
  margin: 0 -4px;
  padding-top: 16px;
  display: flex;
  align-items: flex-end; }
  .components-color-picker__inputs-wrapper fieldset {
    flex: 1;
    border: none;
    margin: 0;
    padding: 0; }
  .components-color-picker__inputs-wrapper .components-color-picker__inputs-fields .components-text-control__input[type="number"] {
    padding: 6px 8px; }

.components-color-picker__inputs-field {
  width: 100%; }

.components-color-picker__inputs-fields {
  display: flex;
  /*rtl:ignore*/
  direction: ltr;
  flex-grow: 1; }
  .components-color-picker__inputs-fields .components-base-control + .components-base-control {
    margin-bottom: 0; }
  .components-color-picker__inputs-fields .components-base-control__field {
    margin: 0 4px; }

.components-custom-gradient-picker:not(.has-gradient) {
  opacity: 0.4; }

.components-custom-gradient-picker {
  width: 100%;
  height: 24px;
  border-radius: 24px;
  margin-bottom: 8px;
  padding-left: 3px;
  padding-right: 21px; }
  .components-custom-gradient-picker .components-custom-gradient-picker__markers-container {
    position: relative; }
  .components-custom-gradient-picker .components-custom-gradient-picker__insert-point {
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    width: 24px;
    height: 24px;
    position: relative; }
  .components-custom-gradient-picker .components-custom-gradient-picker__control-point-button {
    border: 2px solid #fff;
    border-radius: 50%;
    height: 18px;
    position: absolute;
    width: 18px;
    top: 3px; }
    .components-custom-gradient-picker .components-custom-gradient-picker__control-point-button.is-active {
      background: #fafafa;
      color: #23282d;
      border-color: #999;
      box-shadow: inset 0 -1px 0 #999, 0 0 0 1px #fff, 0 0 0 3px #007cba; }

.components-custom-gradient-picker__color-picker-popover .components-custom-gradient-picker__remove-control-point {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 8px; }

.components-custom-gradient-picker__inserter {
  width: 100%; }

.components-custom-select-control {
  color: #555d66;
  position: relative; }

.components-custom-select-control__label {
  display: block;
  margin-bottom: 5px; }

.components-custom-select-control__button {
  border: 1px solid #7e8993;
  border-radius: 4px;
  color: #555d66;
  display: inline;
  min-height: 30px;
  min-width: 130px;
  position: relative;
  text-align: left; }
  .components-custom-select-control__button:focus {
    border-color: #00a0d2; }
  .components-custom-select-control__button-icon {
    height: 100%;
    padding: 0 4px;
    position: absolute;
    right: 0;
    top: 0; }

.components-custom-select-control__menu {
  background: #fff;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 1000000; }

.components-custom-select-control__item {
  align-items: center;
  display: flex;
  list-style-type: none;
  padding: 10px 5px 10px 25px; }
  .components-custom-select-control__item.is-highlighted {
    background: #e2e4e7; }
  .components-custom-select-control__item-icon {
    margin-left: -20px;
    margin-right: 0; }

svg.dashicon {
  fill: currentColor;
  outline: none; }

/*rtl:begin:ignore*/
.PresetDateRangePicker_panel {
  padding: 0 22px 11px; }

.PresetDateRangePicker_button {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  box-sizing: border-box;
  cursor: pointer; }

.PresetDateRangePicker_button:active {
  outline: 0; }

.PresetDateRangePicker_button__selected {
  color: #fff;
  background: #00a699; }

.SingleDatePickerInput {
  display: inline-block;
  background-color: #fff; }

.SingleDatePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb; }

.SingleDatePickerInput__rtl {
  direction: rtl; }

.SingleDatePickerInput__disabled {
  background-color: #f2f2f2; }

.SingleDatePickerInput__block {
  display: block; }

.SingleDatePickerInput__showClearDate {
  padding-right: 30px; }

.SingleDatePickerInput_clearDate {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); }

.SingleDatePickerInput_clearDate__default:focus,
.SingleDatePickerInput_clearDate__default:hover {
  background: #dbdbdb;
  border-radius: 50%; }

.SingleDatePickerInput_clearDate__small {
  padding: 6px; }

.SingleDatePickerInput_clearDate__hide {
  visibility: hidden; }

.SingleDatePickerInput_clearDate_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle; }

.SingleDatePickerInput_clearDate_svg__small {
  height: 9px; }

.SingleDatePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px; }

.SingleDatePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle; }

.SingleDatePicker {
  position: relative;
  display: inline-block; }

.SingleDatePicker__block {
  display: block; }

.SingleDatePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute; }

.SingleDatePicker_picker__rtl {
  direction: rtl; }

.SingleDatePicker_picker__directionLeft {
  left: 0; }

.SingleDatePicker_picker__directionRight {
  right: 0; }

.SingleDatePicker_picker__portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.SingleDatePicker_picker__fullScreenPortal {
  background-color: #fff; }

.SingleDatePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2; }

.SingleDatePicker_closeButton:focus,
.SingleDatePicker_closeButton:hover {
  color: #b0b3b4;
  text-decoration: none; }

.SingleDatePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd; }

.DayPickerKeyboardShortcuts_buttonReset {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px; }

.DayPickerKeyboardShortcuts_buttonReset:active {
  outline: 0; }

.DayPickerKeyboardShortcuts_show {
  width: 22px;
  position: absolute;
  z-index: 2; }

.DayPickerKeyboardShortcuts_show__bottomRight {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0; }

.DayPickerKeyboardShortcuts_show__bottomRight:hover {
  border-right: 33px solid #008489; }

.DayPickerKeyboardShortcuts_show__topRight {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0; }

.DayPickerKeyboardShortcuts_show__topRight:hover {
  border-right: 33px solid #008489; }

.DayPickerKeyboardShortcuts_show__topLeft {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0; }

.DayPickerKeyboardShortcuts_show__topLeft:hover {
  border-left: 33px solid #008489; }

.DayPickerKeyboardShortcuts_showSpan {
  color: #fff;
  position: absolute; }

.DayPickerKeyboardShortcuts_showSpan__bottomRight {
  bottom: 0;
  right: -28px; }

.DayPickerKeyboardShortcuts_showSpan__topRight {
  top: 1px;
  right: -28px; }

.DayPickerKeyboardShortcuts_showSpan__topLeft {
  top: 1px;
  left: -28px; }

.DayPickerKeyboardShortcuts_panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px; }

.DayPickerKeyboardShortcuts_title {
  font-size: 16px;
  font-weight: 700;
  margin: 0; }

.DayPickerKeyboardShortcuts_list {
  list-style: none;
  padding: 0;
  font-size: 14px; }

.DayPickerKeyboardShortcuts_close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2; }

.DayPickerKeyboardShortcuts_close:active {
  outline: 0; }

.DayPickerKeyboardShortcuts_closeSvg {
  height: 15px;
  width: 15px;
  fill: #cacccd; }

.DayPickerKeyboardShortcuts_closeSvg:focus,
.DayPickerKeyboardShortcuts_closeSvg:hover {
  fill: #82888a; }

.CalendarDay {
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center; }

.CalendarDay:active {
  outline: 0; }

.CalendarDay__defaultCursor {
  cursor: default; }

.CalendarDay__default {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff; }

.CalendarDay__default:hover {
  background: #e4e7e7;
  border: 1px double #e4e7e7;
  color: inherit; }

.CalendarDay__hovered_offset {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit; }

.CalendarDay__outside {
  border: 0;
  background: #fff;
  color: #484848; }

.CalendarDay__outside:hover {
  border: 0; }

.CalendarDay__blocked_minimum_nights {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd; }

.CalendarDay__blocked_minimum_nights:active,
.CalendarDay__blocked_minimum_nights:hover {
  background: #fff;
  color: #cacccd; }

.CalendarDay__highlighted_calendar {
  background: #ffe8bc;
  color: #484848; }

.CalendarDay__highlighted_calendar:active,
.CalendarDay__highlighted_calendar:hover {
  background: #ffce71;
  color: #484848; }

.CalendarDay__selected_span {
  background: #66e2da;
  border: 1px solid #33dacd;
  color: #fff; }

.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
  background: #33dacd;
  border: 1px solid #33dacd;
  color: #fff; }

.CalendarDay__last_in_range {
  border-right: #00a699; }

.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover {
  background: #00a699;
  border: 1px solid #00a699;
  color: #fff; }

.CalendarDay__hovered_span,
.CalendarDay__hovered_span:hover {
  background: #b2f1ec;
  border: 1px solid #80e8e0;
  color: #007a87; }

.CalendarDay__hovered_span:active {
  background: #80e8e0;
  border: 1px solid #80e8e0;
  color: #007a87; }

.CalendarDay__blocked_calendar,
.CalendarDay__blocked_calendar:active,
.CalendarDay__blocked_calendar:hover {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a; }

.CalendarDay__blocked_out_of_range,
.CalendarDay__blocked_out_of_range:active,
.CalendarDay__blocked_out_of_range:hover {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd; }

.CalendarMonth {
  background: #fff;
  text-align: center;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.CalendarMonth_table {
  border-collapse: collapse;
  border-spacing: 0; }

.CalendarMonth_verticalSpacing {
  border-collapse: separate; }

.CalendarMonth_caption {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: initial; }

.CalendarMonth_caption__verticalScrollable {
  padding-top: 12px;
  padding-bottom: 7px; }

.CalendarMonthGrid {
  background: #fff;
  text-align: left;
  z-index: 0; }

.CalendarMonthGrid__animating {
  z-index: 1; }

.CalendarMonthGrid__horizontal {
  position: absolute;
  left: 9px; }

.CalendarMonthGrid__vertical {
  margin: 0 auto; }

.CalendarMonthGrid__vertical_scrollable {
  margin: 0 auto;
  overflow-y: scroll; }

.CalendarMonthGrid_month__horizontal {
  display: inline-block;
  vertical-align: top;
  min-height: 100%; }

.CalendarMonthGrid_month__hideForAnimation {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none; }

.CalendarMonthGrid_month__hidden {
  visibility: hidden; }

.DayPickerNavigation {
  position: relative;
  z-index: 2; }

.DayPickerNavigation__horizontal {
  height: 0; }

.DayPickerNavigation__verticalDefault {
  position: absolute;
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0; }

.DayPickerNavigation__verticalScrollableDefault {
  position: relative; }

.DayPickerNavigation_button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0;
  margin: 0; }

.DayPickerNavigation_button__default {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575; }

.DayPickerNavigation_button__default:focus,
.DayPickerNavigation_button__default:hover {
  border: 1px solid #c4c4c4; }

.DayPickerNavigation_button__default:active {
  background: #f2f2f2; }

.DayPickerNavigation_button__horizontalDefault {
  position: absolute;
  top: 18px;
  line-height: .78;
  border-radius: 3px;
  padding: 6px 9px; }

.DayPickerNavigation_leftButton__horizontalDefault {
  left: 22px; }

.DayPickerNavigation_rightButton__horizontalDefault {
  right: 22px; }

.DayPickerNavigation_button__verticalDefault {
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
  height: 100%;
  width: 50%; }

.DayPickerNavigation_nextButton__verticalDefault {
  border-left: 0; }

.DayPickerNavigation_nextButton__verticalScrollableDefault {
  width: 100%; }

.DayPickerNavigation_svg__horizontal {
  height: 19px;
  width: 19px;
  fill: #82888a;
  display: block; }

.DayPickerNavigation_svg__vertical {
  height: 42px;
  width: 42px;
  fill: #484848;
  display: block; }

.DayPicker {
  background: #fff;
  position: relative;
  text-align: left; }

.DayPicker__horizontal {
  background: #fff; }

.DayPicker__verticalScrollable {
  height: 100%; }

.DayPicker__hidden {
  visibility: hidden; }

.DayPicker__withBorder {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.07);
  border-radius: 3px; }

.DayPicker_portal__horizontal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%; }

.DayPicker_portal__vertical {
  position: initial; }

.DayPicker_focusRegion {
  outline: 0; }

.DayPicker_calendarInfo__horizontal,
.DayPicker_wrapper__horizontal {
  display: inline-block;
  vertical-align: top; }

.DayPicker_weekHeaders {
  position: relative; }

.DayPicker_weekHeaders__horizontal {
  margin-left: 9px; }

.DayPicker_weekHeader {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  text-align: left; }

.DayPicker_weekHeader__vertical {
  left: 50%; }

.DayPicker_weekHeader__verticalScrollable {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center; }

.DayPicker_weekHeader_ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px; }

.DayPicker_weekHeader_li {
  display: inline-block;
  text-align: center; }

.DayPicker_transitionContainer {
  position: relative;
  overflow: hidden;
  border-radius: 3px; }

.DayPicker_transitionContainer__horizontal {
  transition: height .2s ease-in-out; }

.DayPicker_transitionContainer__vertical {
  width: 100%; }

.DayPicker_transitionContainer__verticalScrollable {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll; }

.DateInput {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle; }

.DateInput__small {
  width: 97px; }

.DateInput__block {
  width: 100%; }

.DateInput__disabled {
  background: #f2f2f2;
  color: #dbdbdb; }

.DateInput_input {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0; }

.DateInput_input__small {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .2px;
  padding: 7px 7px 5px; }

.DateInput_input__regular {
  font-weight: auto; }

.DateInput_input__readOnly {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.DateInput_input__focused {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0; }

.DateInput_input__disabled {
  background: #f2f2f2;
  font-style: italic; }

.DateInput_screenReaderMessage {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.DateInput_fang {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2; }

.DateInput_fangShape {
  fill: #fff; }

.DateInput_fangStroke {
  stroke: #dbdbdb;
  fill: transparent; }

.DateRangePickerInput {
  background-color: #fff;
  display: inline-block; }

.DateRangePickerInput__disabled {
  background: #f2f2f2; }

.DateRangePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb; }

.DateRangePickerInput__rtl {
  direction: rtl; }

.DateRangePickerInput__block {
  display: block; }

.DateRangePickerInput__showClearDates {
  padding-right: 30px; }

.DateRangePickerInput_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #484848; }

.DateRangePickerInput_arrow_svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px; }

.DateRangePickerInput_clearDates {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); }

.DateRangePickerInput_clearDates__small {
  padding: 6px; }

.DateRangePickerInput_clearDates_default:focus,
.DateRangePickerInput_clearDates_default:hover {
  background: #dbdbdb;
  border-radius: 50%; }

.DateRangePickerInput_clearDates__hide {
  visibility: hidden; }

.DateRangePickerInput_clearDates_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle; }

.DateRangePickerInput_clearDates_svg__small {
  height: 9px; }

.DateRangePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px; }

.DateRangePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle; }

.DateRangePicker {
  position: relative;
  display: inline-block; }

.DateRangePicker__block {
  display: block; }

.DateRangePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute; }

.DateRangePicker_picker__rtl {
  direction: rtl; }

.DateRangePicker_picker__directionLeft {
  left: 0; }

.DateRangePicker_picker__directionRight {
  right: 0; }

.DateRangePicker_picker__portal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.DateRangePicker_picker__fullScreenPortal {
  background-color: #fff; }

.DateRangePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2; }

.DateRangePicker_closeButton:focus,
.DateRangePicker_closeButton:hover {
  color: #b0b3b4;
  text-decoration: none; }

.DateRangePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd; }

/*rtl:end:ignore*/
.components-datetime {
  padding: 16px; }
  .components-datetime .components-datetime__calendar-help {
    padding: 16px; }
    .components-datetime .components-datetime__calendar-help h4 {
      margin: 0; }
  .components-datetime .components-datetime__date-help-button {
    display: block;
    margin-left: auto; }
  .components-datetime fieldset {
    border: 0;
    padding: 0;
    margin: 0; }
  .components-datetime select,
  .components-datetime input {
    box-shadow: 0 0 0 transparent;
    transition: box-shadow 0.1s linear;
    border-radius: 4px;
    border: 1px solid #7e8993; }
    @media (prefers-reduced-motion: reduce) {
      .components-datetime select,
      .components-datetime input {
        transition-duration: 0s; } }
  .components-datetime select,
  .components-datetime input[type="number"],
  .components-datetime .components-button {
    height: 30px;
    margin-top: 0;
    margin-bottom: 0; }

.components-datetime__date {
  min-height: 236px;
  border-top: 1px solid #e2e4e7; }
  .components-datetime__date .CalendarMonthGrid {
    margin-left: -13px; }
  .components-datetime__date .DayPickerNavigation_leftButton__horizontalDefault {
    left: 0; }
  .components-datetime__date .CalendarMonth_caption {
    font-size: 13px; }
  .components-datetime__date .CalendarDay {
    font-size: 13px;
    border: 1px solid transparent;
    border-radius: 50%;
    text-align: center; }
  .components-datetime__date .CalendarDay__selected {
    background: #0085ba; }
  body.admin-color-sunrise .components-datetime__date .CalendarDay__selected {
    background: #d1864a; }
  body.admin-color-ocean .components-datetime__date .CalendarDay__selected {
    background: #a3b9a2; }
  body.admin-color-midnight .components-datetime__date .CalendarDay__selected {
    background: #e14d43; }
  body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected {
    background: #a7b656; }
  body.admin-color-coffee .components-datetime__date .CalendarDay__selected {
    background: #c2a68c; }
  body.admin-color-blue .components-datetime__date .CalendarDay__selected {
    background: #82b4cb; }
  body.admin-color-light .components-datetime__date .CalendarDay__selected {
    background: #0085ba; }
    .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(0, 113, 158); }
    body.admin-color-sunrise .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(178, 114, 63); }
    body.admin-color-ocean .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(139, 157, 138); }
    body.admin-color-midnight .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(191, 65, 57); }
    body.admin-color-ectoplasm .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(142, 155, 73); }
    body.admin-color-coffee .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(165, 141, 119); }
    body.admin-color-blue .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(111, 153, 173); }
    body.admin-color-light .components-datetime__date .CalendarDay__selected:hover {
      background: rgb(0, 113, 158); }
  .components-datetime__date .DayPickerNavigation_button__horizontalDefault {
    padding: 2px 8px;
    top: 20px; }
    .components-datetime__date .DayPickerNavigation_button__horizontalDefault:focus {
      color: #191e23;
      border-color: #007cba;
      box-shadow: 0 0 0 1px #007cba;
      outline: 2px solid transparent; }
  .components-datetime__date .DayPicker_weekHeader {
    top: 50px; }
    .components-datetime__date .DayPicker_weekHeader .DayPicker_weekHeader_ul {
      margin: 1px 0;
      padding-left: 0;
      padding-right: 0; }
  .components-datetime__date.is-description-visible .DayPicker,
  .components-datetime__date.is-description-visible .components-datetime__date-help-button {
    visibility: hidden; }

.components-datetime__time {
  padding-bottom: 16px; }
  .components-datetime__time fieldset {
    position: relative;
    margin-bottom: 0.5em; }
  .components-datetime__time fieldset + fieldset {
    margin-bottom: 0; }
  .components-datetime__time .components-datetime__time-field-am-pm fieldset {
    margin-top: 0; }
  .components-datetime__time .components-datetime__time-wrapper {
    display: flex; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-separator {
      display: inline-block;
      padding: 0 3px 0 0;
      color: #555d66; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button {
      margin-left: 8px;
      margin-right: -1px;
      border-radius: 3px 0 0 3px; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button {
      margin-left: -1px;
      border-radius: 0 3px 3px 0; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button:focus,
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button:focus {
      position: relative;
      z-index: 1; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-toggled,
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-toggled {
      background: #edeff0;
      border-color: #8f98a1;
      box-shadow: inset 0 2px 5px -3px #555d66; }
      .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-am-button.is-toggled:focus,
      .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-pm-button.is-toggled:focus {
        box-shadow: inset 0 2px 5px -3px #555d66, 0 0 0 1px #fff, 0 0 0 3px #007cba; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field-time {
      /*rtl:ignore*/
      direction: ltr; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field.am-pm button {
      font-size: 11px;
      font-weight: 600; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select {
      margin-right: 4px; }
      .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field select:focus {
        position: relative;
        z-index: 1; }
    .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"] {
      padding: 2px;
      margin-right: 4px;
      text-align: center;
      -moz-appearance: textfield; }
      .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]:focus {
        position: relative;
        z-index: 1; }
      .components-datetime__time .components-datetime__time-wrapper .components-datetime__time-field input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0; }
  .components-datetime__time.is-12-hour .components-datetime__time-field-day input {
    margin: 0 -4px 0 0 !important;
    border-radius: 4px 0 0 4px !important; }
  .components-datetime__time.is-12-hour .components-datetime__time-field-year input {
    border-radius: 0 4px 4px 0 !important; }

.components-datetime__time-legend {
  font-weight: 600;
  margin-top: 0.5em; }
  .components-datetime__time-legend.invisible {
    position: absolute;
    top: -999em;
    left: -999em; }

.components-datetime__time-field-hours-input,
.components-datetime__time-field-minutes-input,
.components-datetime__time-field-day-input {
  width: 35px; }

.components-datetime__time-field-year-input {
  width: 55px; }

.components-datetime__time-field-month-select {
  max-width: 145px; }

.components-popover .components-datetime__date {
  padding-left: 4px; }

.block-editor-dimension-control .components-base-control__field {
  display: flex;
  align-items: center; }

.block-editor-dimension-control .components-base-control__label {
  display: flex;
  align-items: center;
  margin-right: 1em;
  margin-bottom: 0; }
  .block-editor-dimension-control .components-base-control__label .dashicon {
    margin-right: 0.5em; }

.block-editor-dimension-control.is-manual .components-base-control__label {
  width: 10em; }

.components-disabled {
  position: relative;
  pointer-events: none; }
  .components-disabled::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .components-disabled * {
    pointer-events: none; }

body.is-dragging-components-draggable {
  cursor: move;
  /* Fallback for IE/Edge < 14 */
  cursor: grabbing !important; }

.components-draggable__invisible-drag-image {
  position: fixed;
  left: -1000px;
  height: 50px;
  width: 50px; }

.components-draggable__clone {
  position: fixed;
  padding: 20px;
  background: transparent;
  pointer-events: none;
  z-index: 1000000000;
  opacity: 0.8; }

.components-drop-zone {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s opacity, 0.3s background-color, 0s visibility 0.3s;
  border: 2px solid #0071a1;
  border-radius: 2px; }
  @media (prefers-reduced-motion: reduce) {
    .components-drop-zone {
      transition-duration: 0s; } }
  .components-drop-zone.is-active {
    opacity: 1;
    visibility: visible;
    transition: 0.3s opacity, 0.3s background-color; }
    @media (prefers-reduced-motion: reduce) {
      .components-drop-zone.is-active {
        transition-duration: 0s; } }
  .components-drop-zone.is-dragging-over-element {
    background-color: rgba(0, 113, 161, 0.8); }

.components-drop-zone__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  transition: transform 0.2s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .components-drop-zone__content {
      transition-duration: 0s; } }

.components-drop-zone.is-dragging-over-element .components-drop-zone__content {
  transform: translateY(-50%) scale(1.05); }

.components-drop-zone__content-icon,
.components-drop-zone__content-text {
  display: block; }

.components-drop-zone__content-icon {
  margin: 0 auto;
  line-height: 0; }

.components-drop-zone__content-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; }

.components-drop-zone__provider {
  height: 100%; }

.components-dropdown {
  display: inline-block; }

.components-dropdown-menu__indicator::after {
  content: "";
  pointer-events: none;
  display: block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid;
  margin-left: 4px;
  margin-right: 2px; }

.components-dropdown-menu__popover .components-popover__content {
  width: 200px; }

.components-dropdown-menu__menu {
  width: 100%;
  padding: 7px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  line-height: 1.4; }
  .components-dropdown-menu__menu .components-dropdown-menu__menu-item,
  .components-dropdown-menu__menu .components-menu-item {
    width: 100%;
    padding: 6px;
    outline: none;
    cursor: pointer;
    margin-bottom: 4px; }
    .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator,
    .components-dropdown-menu__menu .components-menu-item.has-separator {
      margin-top: 6px;
      position: relative;
      overflow: visible; }
    .components-dropdown-menu__menu .components-dropdown-menu__menu-item.has-separator::before,
    .components-dropdown-menu__menu .components-menu-item.has-separator::before {
      display: block;
      content: "";
      box-sizing: content-box;
      background-color: #e2e4e7;
      position: absolute;
      top: -3px;
      left: 0;
      right: 0;
      height: 1px; }
    .components-dropdown-menu__menu .components-dropdown-menu__menu-item:focus:not(:disabled):not([aria-disabled="true"]):not(.is-default),
    .components-dropdown-menu__menu .components-menu-item:focus:not(:disabled):not([aria-disabled="true"]):not(.is-default) {
      color: #191e23;
      border: none;
      box-shadow: none;
      outline-offset: -2px;
      outline: 1px dotted #555d66; }
    .components-dropdown-menu__menu .components-dropdown-menu__menu-item:hover, .components-dropdown-menu__menu .components-dropdown-menu__menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover,
    .components-dropdown-menu__menu .components-menu-item:hover,
    .components-dropdown-menu__menu .components-menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: #191e23;
      border: none;
      box-shadow: none;
      background: #f3f4f5; }
    .components-dropdown-menu__menu .components-dropdown-menu__menu-item > svg,
    .components-dropdown-menu__menu .components-menu-item > svg {
      border-radius: 4px;
      padding: 2px;
      width: 24px;
      height: 24px;
      margin: -1px 8px -1px 0; }
    .components-dropdown-menu__menu .components-dropdown-menu__menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default).is-active > svg,
    .components-dropdown-menu__menu .components-menu-item:not(:disabled):not([aria-disabled="true"]):not(.is-default).is-active > svg {
      outline: none;
      color: #fff;
      box-shadow: none;
      background: #555d66; }
  .components-dropdown-menu__menu .components-menu-group:not(:last-child) {
    border-bottom: 1px solid #e2e4e7; }
  .components-dropdown-menu__menu .components-menu-item__button,
  .components-dropdown-menu__menu .components-menu-item__button.components-icon-button {
    padding-left: 2rem; }
    .components-dropdown-menu__menu .components-menu-item__button.has-icon,
    .components-dropdown-menu__menu .components-menu-item__button.components-icon-button.has-icon {
      padding-left: 0.5rem; }
    .components-dropdown-menu__menu .components-menu-item__button .dashicon,
    .components-dropdown-menu__menu .components-menu-item__button.components-icon-button .dashicon {
      margin-right: 4px; }

.components-external-link__icon {
  width: 1.4em;
  height: 1.4em;
  margin: -0.2em 0.1em 0;
  vertical-align: middle; }

.components-focal-point-picker-wrapper {
  background-color: transparent;
  border: 1px solid #e2e4e7;
  height: 200px;
  width: 100%;
  padding: 14px; }

.components-focal-point-picker {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%; }
  .components-focal-point-picker img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }

.components-focal-point-picker__icon_container {
  background-color: transparent;
  cursor: grab;
  height: 30px;
  opacity: 0.8;
  position: absolute;
  will-change: transform;
  width: 30px;
  z-index: 10000; }
  .components-focal-point-picker__icon_container.is-dragging {
    cursor: grabbing; }

.components-focal-point-picker__icon {
  display: block;
  height: 100%;
  left: -15px;
  position: absolute;
  top: -15px;
  width: 100%; }
  .components-focal-point-picker__icon .components-focal-point-picker__icon-outline {
    fill: #fff; }
  .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #0085ba; }
  body.admin-color-sunrise .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #d1864a; }
  body.admin-color-ocean .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #a3b9a2; }
  body.admin-color-midnight .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #e14d43; }
  body.admin-color-ectoplasm .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #a7b656; }
  body.admin-color-coffee .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #c2a68c; }
  body.admin-color-blue .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #82b4cb; }
  body.admin-color-light .components-focal-point-picker__icon .components-focal-point-picker__icon-fill {
    fill: #0085ba; }

.components-focal-point-picker_position-display-container {
  margin: 1em 0;
  display: flex; }
  .components-focal-point-picker_position-display-container .components-base-control__field {
    margin: 0 1em 0 0; }
  .components-focal-point-picker_position-display-container input[type="number"].components-text-control__input {
    max-width: 4em;
    padding: 6px 4px; }
  .components-focal-point-picker_position-display-container span {
    margin: 0 0 0 0.2em; }

.components-font-size-picker__controls {
  max-width: 248px;
  display: flex;
  align-items: center;
  margin-bottom: 24px; }
  .components-font-size-picker__controls .components-range-control__number {
    height: 30px;
    margin-bottom: 0;
    margin-top: 5px;
    margin-left: 0;
    margin-right: 8px; }
    .components-font-size-picker__controls .components-range-control__number[value=""] + .components-button {
      cursor: default;
      opacity: 0.3;
      pointer-events: none; }
    .components-font-size-picker__controls .components-range-control__number-container {
      display: flex;
      flex-direction: column; }
  .components-font-size-picker__controls .components-font-size-picker__select {
    margin-right: 8px;
    flex-grow: 1; }
  .components-font-size-picker__controls .components-color-palette__clear {
    height: 30px;
    margin-top: 23px; }

.components-font-size-picker__custom-input .components-range-control__slider + .dashicon {
  width: 30px;
  height: 30px; }

.components-font-size-picker {
  border: 0;
  padding: 0;
  margin: 0; }

.components-form-file-upload .components-button.is-large {
  padding-left: 6px; }

.components-form-toggle {
  position: relative;
  display: inline-block; }
  .components-form-toggle .components-form-toggle__on,
  .components-form-toggle .components-form-toggle__off {
    position: absolute;
    top: 6px;
    box-sizing: border-box; }
  .components-form-toggle .components-form-toggle__off {
    color: #6c7781;
    fill: currentColor;
    right: 6px; }
  .components-form-toggle .components-form-toggle__on {
    left: 8px; }
  .components-form-toggle .components-form-toggle__track {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    background-color: #fff;
    border: 2px solid #6c7781;
    width: 36px;
    height: 18px;
    border-radius: 9px;
    transition: 0.2s background ease; }
    @media (prefers-reduced-motion: reduce) {
      .components-form-toggle .components-form-toggle__track {
        transition-duration: 0s; } }
  .components-form-toggle .components-form-toggle__thumb {
    display: block;
    position: absolute;
    box-sizing: border-box;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: 0.1s transform ease;
    background-color: #6c7781;
    border: 5px solid #6c7781; }
    @media (prefers-reduced-motion: reduce) {
      .components-form-toggle .components-form-toggle__thumb {
        transition-duration: 0s; } }
  .components-form-toggle:hover .components-form-toggle__track {
    border: 2px solid #555d66; }
  .components-form-toggle:hover .components-form-toggle__thumb {
    background-color: #555d66;
    border: 5px solid #6c7781; }
  .components-form-toggle:hover .components-form-toggle__off {
    color: #555d66; }
  .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #11a0d2;
    border: 2px solid #11a0d2;
    border: 9px solid transparent; }
  body.admin-color-sunrise .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #c8b03c;
    border: 2px solid #c8b03c; }
  body.admin-color-ocean .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #a3b9a2;
    border: 2px solid #a3b9a2; }
  body.admin-color-midnight .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #77a6b9;
    border: 2px solid #77a6b9; }
  body.admin-color-ectoplasm .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #a7b656;
    border: 2px solid #a7b656; }
  body.admin-color-coffee .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #c2a68c;
    border: 2px solid #c2a68c; }
  body.admin-color-blue .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #82b4cb;
    border: 2px solid #82b4cb; }
  body.admin-color-light .components-form-toggle.is-checked .components-form-toggle__track {
    background-color: #11a0d2;
    border: 2px solid #11a0d2; }
  .components-form-toggle__input:focus + .components-form-toggle__track {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #6c7781;
    outline: 2px solid transparent;
    outline-offset: 2px; }
  .components-form-toggle.is-checked .components-form-toggle__thumb {
    background-color: #fff;
    border-width: 0;
    transform: translateX(18px); }
  .components-form-toggle.is-checked::before {
    background-color: #11a0d2;
    border: 2px solid #11a0d2; }
  body.admin-color-sunrise .components-form-toggle.is-checked::before {
    background-color: #c8b03c;
    border: 2px solid #c8b03c; }
  body.admin-color-ocean .components-form-toggle.is-checked::before {
    background-color: #a3b9a2;
    border: 2px solid #a3b9a2; }
  body.admin-color-midnight .components-form-toggle.is-checked::before {
    background-color: #77a6b9;
    border: 2px solid #77a6b9; }
  body.admin-color-ectoplasm .components-form-toggle.is-checked::before {
    background-color: #a7b656;
    border: 2px solid #a7b656; }
  body.admin-color-coffee .components-form-toggle.is-checked::before {
    background-color: #c2a68c;
    border: 2px solid #c2a68c; }
  body.admin-color-blue .components-form-toggle.is-checked::before {
    background-color: #82b4cb;
    border: 2px solid #82b4cb; }
  body.admin-color-light .components-form-toggle.is-checked::before {
    background-color: #11a0d2;
    border: 2px solid #11a0d2; }
  .components-disabled .components-form-toggle {
    opacity: 0.3; }

.components-form-toggle input.components-form-toggle__input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  padding: 0;
  z-index: 1;
  border: none; }
  .components-form-toggle input.components-form-toggle__input[type="checkbox"]:checked {
    background: none; }
  .components-form-toggle input.components-form-toggle__input[type="checkbox"]::before {
    content: ""; }

.components-form-toggle .components-form-toggle__on {
  outline: 1px solid transparent;
  outline-offset: -1px;
  border: 1px solid #000;
  filter: invert(100%) contrast(500%); }

@supports (-ms-high-contrast-adjust: auto) {
  .components-form-toggle .components-form-toggle__on {
    filter: none;
    border: 1px solid #fff; } }

.components-form-token-field__input-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 8px 0;
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccd0d4;
  color: #32373c;
  cursor: text;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.1s linear;
  border-radius: 4px;
  border: 1px solid #7e8993; }
  @media (prefers-reduced-motion: reduce) {
    .components-form-token-field__input-container {
      transition-duration: 0s; } }
  .components-form-token-field__input-container.is-disabled {
    background: #e2e4e7;
    border-color: #ccd0d4; }
  .components-form-token-field__input-container.is-active {
    color: #191e23;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
    outline: 2px solid transparent; }
  .components-form-token-field__input-container input[type="text"].components-form-token-field__input {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    margin: 2px 0 2px 8px;
    padding: 0;
    min-height: 24px;
    background: inherit;
    border: 0;
    color: #23282d;
    box-shadow: none; }
    .components-form-token-field__input-container input[type="text"].components-form-token-field__input:focus,
    .components-form-token-field.is-active .components-form-token-field__input-container input[type="text"].components-form-token-field__input {
      outline: none;
      box-shadow: none; }
  .components-form-token-field__input-container .components-form-token-field__token + input[type="text"].components-form-token-field__input {
    width: auto; }

.components-form-token-field__label {
  display: inline-block;
  margin-bottom: 4px; }

.components-form-token-field__help {
  font-style: italic; }

.components-form-token-field__token {
  font-size: 13px;
  display: flex;
  margin: 2px 4px 2px 0;
  color: #32373c;
  overflow: hidden; }
  .components-form-token-field__token.is-success .components-form-token-field__token-text,
  .components-form-token-field__token.is-success .components-form-token-field__remove-token {
    background: #4ab866; }
  .components-form-token-field__token.is-error .components-form-token-field__token-text,
  .components-form-token-field__token.is-error .components-form-token-field__remove-token {
    background: #d94f4f; }
  .components-form-token-field__token.is-validating .components-form-token-field__token-text,
  .components-form-token-field__token.is-validating .components-form-token-field__remove-token {
    color: #555d66; }
  .components-form-token-field__token.is-borderless {
    position: relative;
    padding: 0 16px 0 0; }
    .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      background: transparent;
      color: #11a0d2; }
    body.admin-color-sunrise .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      color: #c8b03c; }
    body.admin-color-ocean .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      color: #a89d8a; }
    body.admin-color-midnight .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      color: #77a6b9; }
    body.admin-color-ectoplasm .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      color: #c77430; }
    body.admin-color-coffee .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      color: #9fa47b; }
    body.admin-color-blue .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      color: #d9ab59; }
    body.admin-color-light .components-form-token-field__token.is-borderless .components-form-token-field__token-text {
      color: #c75726; }
    .components-form-token-field__token.is-borderless .components-form-token-field__remove-token {
      background: transparent;
      color: #555d66;
      position: absolute;
      top: 1px;
      right: 0; }
    .components-form-token-field__token.is-borderless.is-success .components-form-token-field__token-text {
      color: #4ab866; }
    .components-form-token-field__token.is-borderless.is-error .components-form-token-field__token-text {
      color: #d94f4f;
      border-radius: 4px 0 0 4px;
      padding: 0 4px 0 6px; }
    .components-form-token-field__token.is-borderless.is-validating .components-form-token-field__token-text {
      color: #23282d; }
  .components-form-token-field__token.is-disabled .components-form-token-field__remove-token {
    cursor: default; }

.components-form-token-field__token-text,
.components-form-token-field__remove-token.components-icon-button {
  display: inline-block;
  line-height: 24px;
  background: #e2e4e7;
  transition: all 0.2s cubic-bezier(0.4, 1, 0.4, 1); }
  @media (prefers-reduced-motion: reduce) {
    .components-form-token-field__token-text,
    .components-form-token-field__remove-token.components-icon-button {
      transition-duration: 0s;
      animation-duration: 1ms; } }

.components-form-token-field__token-text {
  border-radius: 12px 0 0 12px;
  padding: 0 4px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.components-form-token-field__remove-token.components-icon-button {
  cursor: pointer;
  border-radius: 0 12px 12px 0;
  padding: 0 2px;
  color: #555d66;
  line-height: 10px;
  overflow: initial; }
  .components-form-token-field__remove-token.components-icon-button:hover {
    color: #32373c; }

.components-form-token-field__suggestions-list {
  flex: 1 0 100%;
  min-width: 100%;
  max-height: 9em;
  overflow-y: scroll;
  transition: all 0.15s ease-in-out;
  list-style: none;
  border-top: 1px solid #6c7781;
  margin: 4px -4px -4px;
  padding-top: 3px; }
  @media (prefers-reduced-motion: reduce) {
    .components-form-token-field__suggestions-list {
      transition-duration: 0s; } }

.components-form-token-field__suggestion {
  color: #555d66;
  display: block;
  font-size: 13px;
  padding: 4px 8px;
  cursor: pointer; }
  .components-form-token-field__suggestion.is-selected {
    background: #0071a1;
    color: #fff; }

.components-form-token-field__suggestion-match {
  text-decoration: underline; }

.components-guide .components-modal__header {
  background: none;
  border-bottom: none; }
  .components-guide .components-modal__header .components-icon-button {
    align-self: flex-start;
    margin-top: 24px;
    position: static; }

.components-guide__container {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: -56px;
  min-height: 100%; }

.components-guide__footer {
  align-content: center;
  display: flex;
  height: 30px;
  justify-content: center;
  margin: auto 0 24px 0;
  position: relative;
  width: 100%; }
  @media (min-width: 600px) {
    .components-guide__footer {
      margin: 24px 0 0; } }

.components-guide__page-control {
  margin: 0; }
  .components-guide__page-control li {
    display: inline-block;
    margin: 0 2px; }
  .components-guide__page-control .components-icon-button {
    height: 30px; }

@media (max-width: 600px) {
  .components-modal__frame.components-guide {
    bottom: 15%;
    left: 24px;
    right: 24px;
    top: 15%; } }

.components-button.components-guide__back-button, .components-button.components-guide__forward-button, .components-button.components-guide__finish-button {
  height: 30px;
  position: absolute; }

.components-button.components-guide__back-button, .components-button.components-guide__forward-button {
  font-size: 0;
  padding: 4px 2px; }
  .components-button.components-guide__back-button.has-text svg, .components-button.components-guide__forward-button.has-text svg {
    margin: 0; }
  @media (min-width: 600px) {
    .components-button.components-guide__back-button, .components-button.components-guide__forward-button {
      font-size: 13px; } }

.components-button.components-guide__back-button {
  left: 0; }
  @media (min-width: 600px) {
    .components-button.components-guide__back-button {
      padding: 4px 8px 4px 2px; }
      .components-button.components-guide__back-button.has-text svg {
        margin-right: 4px; } }

.components-button.components-guide__forward-button {
  right: 0; }
  @media (min-width: 600px) {
    .components-button.components-guide__forward-button {
      padding: 4px 2px 4px 8px; }
      .components-button.components-guide__forward-button.has-text svg {
        margin-left: 4px;
        order: 1; } }

.components-button.components-guide__finish-button {
  display: none;
  right: 0; }
  @media (min-width: 600px) {
    .components-button.components-guide__finish-button {
      display: unset; } }

@media (min-width: 600px) {
  .components-button.components-guide__inline-finish-button {
    display: none; } }

.components-navigate-regions.is-focusing-regions [role="region"] {
  position: relative; }
  .components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    outline: 4px solid transparent;
    box-shadow: inset 0 0 0 4px #33b3db; }
  @supports (outline-offset: 1px) {
    .components-navigate-regions.is-focusing-regions [role="region"]:focus::after {
      content: none; }
    .components-navigate-regions.is-focusing-regions [role="region"]:focus {
      outline-style: solid;
      outline-color: #33b3db;
      outline-width: 4px;
      outline-offset: -4px; } }

.components-icon-button {
  display: flex;
  align-items: center;
  padding: 8px;
  margin: 0;
  border: none;
  background: none;
  color: #555d66;
  position: relative;
  overflow: hidden;
  border-radius: 4px; }
  .components-icon-button .dashicon {
    display: inline-block;
    flex: 0 0 auto; }
  .components-icon-button svg {
    fill: currentColor;
    outline: none; }
  .components-icon-button.has-text svg {
    margin-right: 4px; }
  .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
    background-color: #fff;
    color: #191e23;
    box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; }
  .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):active {
    outline: none;
    background-color: #fff;
    color: #191e23;
    box-shadow: inset 0 0 0 1px #ccd0d4, inset 0 0 0 2px #fff; }
  .components-icon-button[aria-disabled="true"]:focus, .components-icon-button:disabled:focus {
    box-shadow: none; }

.components-menu-group {
  width: 100%;
  padding: 7px 0; }

.components-menu-group__label {
  margin-bottom: 8px;
  color: #6c7781;
  padding: 0 7px; }

.components-menu-item__button,
.components-menu-item__button.components-icon-button {
  width: 100%;
  padding: 8px 15px;
  text-align: left;
  color: #40464d;
  border: none;
  box-shadow: none; }
  .components-menu-item__button .dashicon,
  .components-menu-item__button .components-menu-items__item-icon,
  .components-menu-item__button > span > svg,
  .components-menu-item__button.components-icon-button .dashicon,
  .components-menu-item__button.components-icon-button .components-menu-items__item-icon,
  .components-menu-item__button.components-icon-button > span > svg {
    margin-right: 5px; }
  .components-menu-item__button .components-menu-items__item-icon,
  .components-menu-item__button.components-icon-button .components-menu-items__item-icon {
    display: inline-block;
    flex: 0 0 auto; }
  .components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]),
  .components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) {
    color: #191e23;
    border: none;
    box-shadow: none;
    background: #f3f4f5; }
    .components-menu-item__button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut,
    .components-menu-item__button.components-icon-button:hover:not(:disabled):not([aria-disabled="true"]) .components-menu-item__shortcut {
      color: #40464d; }
  .components-menu-item__button:focus:not(:disabled):not([aria-disabled="true"]),
  .components-menu-item__button.components-icon-button:focus:not(:disabled):not([aria-disabled="true"]) {
    color: #191e23;
    border: none;
    box-shadow: none;
    outline-offset: -2px;
    outline: 1px dotted #555d66; }

.components-menu-item__info-wrapper {
  display: flex;
  flex-direction: column; }

.components-menu-item__info {
  margin-top: 4px;
  font-size: 12px;
  color: #6c7781; }

.components-menu-item__shortcut {
  -ms-grid-row-align: center;
      align-self: center;
  color: #6c7781;
  margin-right: 0;
  margin-left: auto;
  padding-left: 8px;
  display: none; }
  @media (min-width: 480px) {
    .components-menu-item__shortcut {
      display: inline; } }

.components-menu-items-choice,
.components-menu-items-choice.components-icon-button {
  padding-left: 2rem; }
  .components-menu-items-choice.has-icon,
  .components-menu-items-choice.components-icon-button.has-icon {
    padding-left: 0.5rem; }
  .components-menu-items-choice .dashicon,
  .components-menu-items-choice.components-icon-button .dashicon {
    margin-right: 4px; }

.components-modal__screen-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  animation: edit-post__fade-in-animation 0.2s ease-out 0s;
  animation-fill-mode: forwards; }
  @media (prefers-reduced-motion: reduce) {
    .components-modal__screen-overlay {
      animation-duration: 1ms; } }

.components-modal__frame {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #e2e4e7;
  background: #fff;
  box-shadow: 0 3px 30px rgba(25, 30, 35, 0.2);
  overflow: auto; }
  @media (min-width: 600px) {
    .components-modal__frame {
      top: 50%;
      right: auto;
      bottom: auto;
      left: 50%;
      min-width: 360px;
      max-width: calc(100% - 16px - 16px);
      max-height: calc(100% - 56px - 56px);
      transform: translate(-50%, -50%);
      animation: components-modal__appear-animation 0.1s ease-out;
      animation-fill-mode: forwards; } }
  @media (min-width: 600px) and (prefers-reduced-motion: reduce) {
    .components-modal__frame {
      animation-duration: 1ms; } }

@keyframes components-modal__appear-animation {
  from {
    margin-top: 32px; }
  to {
    margin-top: 0; } }

.components-modal__header {
  box-sizing: border-box;
  border-bottom: 1px solid #e2e4e7;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #fff;
  align-items: center;
  height: 56px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  margin: 0 -24px 24px; }
  @supports (-ms-ime-align: auto) {
    .components-modal__header {
      position: fixed;
      width: 100%; } }
  .components-modal__header .components-modal__header-heading {
    font-size: 1rem;
    font-weight: 600; }
  .components-modal__header h1 {
    line-height: 1;
    margin: 0; }
  .components-modal__header .components-icon-button {
    position: relative;
    left: 8px; }

.components-modal__header-heading-container {
  align-items: center;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: left; }

.components-modal__header-icon-container {
  display: inline-block; }
  .components-modal__header-icon-container svg {
    max-width: 36px;
    max-height: 36px;
    padding: 8px; }

.components-modal__content {
  box-sizing: border-box;
  height: 100%;
  padding: 0 24px 24px; }
  @supports (-ms-ime-align: auto) {
    .components-modal__content {
      padding-top: 56px; } }

.components-notice {
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  background-color: #e5f5fa;
  border-left: 4px solid #00a0d2;
  margin: 5px 15px 2px;
  padding: 8px 12px;
  align-items: center; }
  .components-notice.is-dismissible {
    padding-right: 36px;
    position: relative; }
  .components-notice.is-success {
    border-left-color: #4ab866;
    background-color: #eff9f1; }
  .components-notice.is-warning {
    border-left-color: #f0b849;
    background-color: #fef8ee; }
  .components-notice.is-error {
    border-left-color: #d94f4f;
    background-color: #f9e2e2; }

.components-notice__content {
  flex-grow: 1;
  margin: 4px 25px 4px 0; }

.components-notice__action.components-button, .components-notice__action.components-button.is-link {
  margin-left: 4px; }

.components-notice__action.components-button.is-default {
  vertical-align: initial; }

.components-notice__dismiss {
  color: #6c7781;
  align-self: flex-start;
  flex-shrink: 0; }
  .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover, .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):active, .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):focus {
    color: #191e23;
    background-color: transparent; }
  .components-notice__dismiss:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
    box-shadow: none; }

.components-notice-list {
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 29; }
  .components-notice-list .components-notice__content {
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.6; }
  .components-notice-list .components-notice__action.components-button {
    margin-top: -2px;
    margin-bottom: -2px; }

.components-panel {
  background: #fff;
  border: 1px solid #e2e4e7; }
  .components-panel > .components-panel__header:first-child,
  .components-panel > .components-panel__body:first-child {
    margin-top: -1px; }
  .components-panel > .components-panel__header:last-child,
  .components-panel > .components-panel__body:last-child {
    border-bottom-width: 0; }

.components-panel + .components-panel {
  margin-top: -1px; }

.components-panel__body {
  border-top: 1px solid #e2e4e7;
  border-bottom: 1px solid #e2e4e7; }
  .components-panel__body h3 {
    margin: 0 0 0.5em; }
  .components-panel__body.is-opened {
    padding: 16px; }
  .components-panel__body > .components-icon-button {
    color: #191e23; }

.components-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  height: 50px;
  border-top: 1px solid #e2e4e7;
  border-bottom: 1px solid #e2e4e7; }
  .components-panel__header h2 {
    margin: 0;
    font-size: inherit;
    color: inherit; }

.components-panel__body + .components-panel__body,
.components-panel__body + .components-panel__header,
.components-panel__header + .components-panel__body,
.components-panel__header + .components-panel__header {
  margin-top: -1px; }

.components-panel__body > .components-panel__body-title {
  display: block;
  padding: 0;
  font-size: inherit;
  margin-top: 0;
  margin-bottom: 0;
  transition: 0.1s background ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .components-panel__body > .components-panel__body-title {
      transition-duration: 0s; } }

.components-panel__body.is-opened > .components-panel__body-title {
  margin: -16px;
  margin-bottom: 5px; }

.components-panel__body > .components-panel__body-title:hover,
.edit-post-last-revision__panel > .components-icon-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
  background: #f3f4f5; }

.components-panel__body-toggle.components-button {
  position: relative;
  padding: 15px;
  outline: none;
  width: 100%;
  font-weight: 600;
  text-align: left;
  color: #191e23;
  border: none;
  box-shadow: none;
  transition: 0.1s background ease-in-out;
  /* rtl:begin:ignore */
  /* rtl:end:ignore */ }
  @media (prefers-reduced-motion: reduce) {
    .components-panel__body-toggle.components-button {
      transition-duration: 0s; } }
  .components-panel__body-toggle.components-button:focus:not(:disabled):not([aria-disabled="true"]) {
    color: #191e23;
    border: none;
    box-shadow: none;
    outline-offset: -2px;
    outline: 1px dotted #555d66; }
  .components-panel__body-toggle.components-button .components-panel__arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #191e23;
    fill: currentColor;
    transition: 0.1s color ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .components-panel__body-toggle.components-button .components-panel__arrow {
        transition-duration: 0s; } }
  body.rtl .components-panel__body-toggle.components-button .dashicons-arrow-right {
    transform: scaleX(-1);
    -ms-filter: fliph;
    filter: FlipH;
    margin-top: -10px; }

.components-panel__icon {
  color: #555d66;
  margin: -2px 0 -2px 6px; }

.components-panel__body-toggle-icon {
  margin-right: -5px; }

.components-panel__color-title {
  float: left;
  height: 19px; }

.components-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px; }
  .components-panel__row select {
    min-width: 0; }
  .components-panel__row label {
    margin-right: 10px;
    flex-shrink: 0;
    max-width: 75%; }
  .components-panel__row:empty, .components-panel__row:first-of-type {
    margin-top: 0; }

.components-panel .circle-picker {
  padding-bottom: 20px; }

.components-placeholder {
  margin-bottom: 28px;
  padding: 1em;
  min-height: 200px;
  width: 100%;
  text-align: center;
  background: rgba(139, 139, 150, 0.1); }
  @supports ((position: -webkit-sticky) or (position: sticky)) {
    .components-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; } }
  .is-dark-theme .components-placeholder {
    background: rgba(255, 255, 255, 0.15); }

.components-placeholder__instructions,
.components-placeholder__label,
.components-placeholder__fieldset {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px; }

.components-placeholder__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 1em; }
  .components-placeholder__label .dashicon,
  .components-placeholder__label .block-editor-block-icon {
    fill: currentColor;
    margin-right: 1ch; }

.components-placeholder__fieldset,
.components-placeholder__fieldset form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  flex-wrap: wrap;
  z-index: 1; }
  .components-placeholder__fieldset p,
  .components-placeholder__fieldset form p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px; }

.components-placeholder__fieldset.is-column-layout,
.components-placeholder__fieldset.is-column-layout form {
  flex-direction: column; }

.components-placeholder__input {
  margin-top: 0;
  margin-right: 8px;
  flex: 1 1 auto; }

.components-placeholder__instructions {
  margin-bottom: 1em; }

.components-placeholder__preview img {
  margin: 3%;
  width: 50%; }

.components-placeholder__fieldset .components-button {
  margin-right: 4px;
  margin-bottom: 10px; }
  .components-placeholder__fieldset .components-button:last-child {
    margin-right: 0; }

.components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link {
  margin-left: 10px;
  margin-right: 10px; }
  .components-placeholder__fieldset .components-button:not(.is-link) ~ .components-button.is-link:last-child {
    margin-right: 0; }

/*!rtl:begin:ignore*/
.components-popover {
  position: fixed;
  z-index: 1000000;
  left: 50%;
  opacity: 0; }
  .components-popover.is-expanded, .components-popover[data-x-axis][data-y-axis] {
    opacity: 1; }
  .components-popover.is-expanded {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000 !important; }
  .components-popover:not(.is-without-arrow) {
    margin-left: 2px; }
    .components-popover:not(.is-without-arrow)::before {
      border: 8px solid #e2e4e7; }
    .components-popover:not(.is-without-arrow)::after {
      border: 8px solid #fff; }
    .components-popover:not(.is-without-arrow)::before, .components-popover:not(.is-without-arrow)::after {
      content: "";
      position: absolute;
      height: 0;
      width: 0;
      line-height: 0; }
    .components-popover:not(.is-without-arrow)[data-y-axis="top"] {
      margin-top: -8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="top"]::before {
        bottom: -8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="top"]::after {
        bottom: -6px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="top"]::before, .components-popover:not(.is-without-arrow)[data-y-axis="top"]::after {
        border-bottom: none;
        border-left-color: transparent;
        border-right-color: transparent;
        border-top-style: solid;
        margin-left: -10px; }
    .components-popover:not(.is-without-arrow)[data-y-axis="bottom"] {
      margin-top: 8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="bottom"]::before {
        top: -8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="bottom"]::after {
        top: -6px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="bottom"]::before, .components-popover:not(.is-without-arrow)[data-y-axis="bottom"]::after {
        border-bottom-style: solid;
        border-left-color: transparent;
        border-right-color: transparent;
        border-top: none;
        margin-left: -10px; }
    .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="left"] {
      margin-left: -8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="left"]::before {
        right: -8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="left"]::after {
        right: -6px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="left"]::before, .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="left"]::after {
        border-bottom-color: transparent;
        border-left-style: solid;
        border-right: none;
        border-top-color: transparent; }
    .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="right"] {
      margin-left: 8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="right"]::before {
        left: -8px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="right"]::after {
        left: -6px; }
      .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="right"]::before, .components-popover:not(.is-without-arrow)[data-y-axis="middle"][data-x-axis="right"]::after {
        border-bottom-color: transparent;
        border-left: none;
        border-right-style: solid;
        border-top-color: transparent; }
  .components-popover[data-y-axis="top"] {
    bottom: 100%; }
  .components-popover[data-y-axis="bottom"] {
    top: 100%; }
  .components-popover[data-y-axis="middle"] {
    align-items: center;
    display: flex; }

.components-popover__content {
  box-shadow: 0 3px 30px rgba(25, 30, 35, 0.1);
  border: 1px solid #e2e4e7;
  background: #fff;
  height: 100%; }
  .components-popover .components-popover__content {
    position: absolute;
    height: auto;
    overflow-y: auto;
    min-width: 260px; }
  .components-popover.is-expanded .components-popover__content {
    position: static;
    height: calc(100% - 50px);
    overflow-y: visible;
    min-width: auto;
    border: none;
    border-top: 1px solid #e2e4e7; }
  .components-popover[data-y-axis="top"] .components-popover__content {
    bottom: 100%; }
  .components-popover[data-x-axis="center"] .components-popover__content {
    left: 50%;
    transform: translateX(-50%); }
  .components-popover[data-x-axis="right"] .components-popover__content {
    position: absolute;
    left: 100%; }
  .components-popover:not([data-y-axis="middle"])[data-x-axis="right"] .components-popover__content {
    margin-left: -24px; }
  .components-popover[data-x-axis="left"] .components-popover__content {
    position: absolute;
    right: 100%; }
  .components-popover:not([data-y-axis="middle"])[data-x-axis="left"] .components-popover__content {
    margin-right: -24px; }

.components-popover__content > div {
  height: 100%; }

.components-popover__header {
  align-items: center;
  background: #fff;
  display: flex;
  height: 50px;
  justify-content: space-between;
  padding: 0 8px 0 16px; }

.components-popover__header-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%; }

.components-popover__close.components-icon-button {
  z-index: 5; }

/*!rtl:end:ignore*/
.components-radio-control {
  display: flex;
  flex-direction: column; }
  .components-radio-control .components-base-control__help {
    margin-top: 0; }

.components-radio-control__option:not(:last-child) {
  margin-bottom: 4px; }

.components-radio-control__input[type="radio"] {
  margin-top: 0;
  margin-right: 6px; }

.components-range-control .components-base-control__field {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center; }

.components-range-control .dashicon {
  flex-shrink: 0;
  margin-right: 10px; }

.components-range-control .components-base-control__label {
  width: 100%; }

.components-range-control .components-range-control__slider {
  margin-left: 0;
  flex: 1; }

.components-range-control__reset {
  margin-left: 8px; }

.components-range-control__slider {
  width: 100%;
  margin-left: 8px;
  padding: 0;
  -webkit-appearance: none;
  background: transparent;
  /**
 	 * Thumb
 	 */
  /**
 	 * Track
 	 */ }
  .components-range-control__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    cursor: pointer;
    background: #555d66;
    border: 4px solid transparent;
    background-clip: padding-box;
    box-sizing: border-box;
    margin-top: -7px; }
  .components-range-control__slider::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    cursor: pointer;
    background: #555d66;
    border: 4px solid transparent;
    background-clip: padding-box;
    box-sizing: border-box; }
  .components-range-control__slider::-ms-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    cursor: pointer;
    background: #555d66;
    border: 4px solid transparent;
    background-clip: padding-box;
    box-sizing: border-box;
    margin-top: 0;
    height: 14px;
    width: 14px;
    border: 2px solid transparent; }
  .components-range-control__slider:focus {
    outline: none; }
  .components-range-control__slider:focus::-webkit-slider-thumb {
    background-color: #fff;
    color: #191e23;
    box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
    outline: 2px solid transparent; }
  .components-range-control__slider:focus::-moz-range-thumb {
    background-color: #fff;
    color: #191e23;
    box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
    outline: 2px solid transparent; }
  .components-range-control__slider:focus::-ms-thumb {
    background-color: #fff;
    color: #191e23;
    box-shadow: inset 0 0 0 1px #6c7781, inset 0 0 0 2px #fff;
    outline: 2px solid transparent; }
  .components-range-control__slider::-webkit-slider-runnable-track {
    height: 3px;
    cursor: pointer;
    background: #e2e4e7;
    border-radius: 1.5px;
    margin-top: -4px; }
  .components-range-control__slider::-moz-range-track {
    height: 3px;
    cursor: pointer;
    background: #e2e4e7;
    border-radius: 1.5px; }
  .components-range-control__slider::-ms-track {
    margin-top: -4px;
    background: transparent;
    border-color: transparent;
    color: transparent;
    height: 3px;
    cursor: pointer;
    background: #e2e4e7;
    border-radius: 1.5px; }

.components-range-control__number {
  display: inline-block;
  margin-left: 8px;
  font-weight: 500;
  width: 54px; }

.components-resizable-box__handle {
  display: none;
  width: 23px;
  height: 23px; }
  .components-resizable-box__container.is-selected .components-resizable-box__handle,
  .components-resizable-box__container.has-show-handle .components-resizable-box__handle {
    display: block; }

.components-resizable-box__handle::after {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0085ba;
  cursor: inherit;
  position: absolute;
  top: calc(50% - 8px);
  right: calc(50% - 8px); }

body.admin-color-sunrise .components-resizable-box__handle::after {
  background: #d1864a; }

body.admin-color-ocean .components-resizable-box__handle::after {
  background: #a3b9a2; }

body.admin-color-midnight .components-resizable-box__handle::after {
  background: #e14d43; }

body.admin-color-ectoplasm .components-resizable-box__handle::after {
  background: #a7b656; }

body.admin-color-coffee .components-resizable-box__handle::after {
  background: #c2a68c; }

body.admin-color-blue .components-resizable-box__handle::after {
  background: #82b4cb; }

body.admin-color-light .components-resizable-box__handle::after {
  background: #0085ba; }

.components-resizable-box__side-handle::before {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  background: #0085ba;
  cursor: inherit;
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 4px);
  transition: transform 0.1s ease-in;
  opacity: 0; }

body.admin-color-sunrise .components-resizable-box__side-handle::before {
  background: #d1864a; }

body.admin-color-ocean .components-resizable-box__side-handle::before {
  background: #a3b9a2; }

body.admin-color-midnight .components-resizable-box__side-handle::before {
  background: #e14d43; }

body.admin-color-ectoplasm .components-resizable-box__side-handle::before {
  background: #a7b656; }

body.admin-color-coffee .components-resizable-box__side-handle::before {
  background: #c2a68c; }

body.admin-color-blue .components-resizable-box__side-handle::before {
  background: #82b4cb; }

body.admin-color-light .components-resizable-box__side-handle::before {
  background: #0085ba; }
  @media (prefers-reduced-motion: reduce) {
    .components-resizable-box__side-handle::before {
      transition-duration: 0s; } }

.is-dark-theme .components-resizable-box__side-handle::before,
.is-dark-theme .components-resizable-box__handle::after {
  border-color: #d7dade; }

.components-resizable-box__side-handle {
  z-index: 1; }

.components-resizable-box__corner-handle {
  z-index: 2; }

.components-resizable-box__side-handle.components-resizable-box__handle-top,
.components-resizable-box__side-handle.components-resizable-box__handle-bottom,
.components-resizable-box__side-handle.components-resizable-box__handle-top::before,
.components-resizable-box__side-handle.components-resizable-box__handle-bottom::before {
  width: 100%;
  left: 0;
  border-left: 0;
  border-right: 0; }

.components-resizable-box__side-handle.components-resizable-box__handle-left,
.components-resizable-box__side-handle.components-resizable-box__handle-right,
.components-resizable-box__side-handle.components-resizable-box__handle-left::before,
.components-resizable-box__side-handle.components-resizable-box__handle-right::before {
  height: 100%;
  top: 0;
  border-top: 0;
  border-bottom: 0; }

.components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
.components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
.components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
.components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
  animation: components-resizable-box__top-bottom-animation 0.1s ease-out 0s;
  animation-fill-mode: forwards; }
  @media (prefers-reduced-motion: reduce) {
    .components-resizable-box__side-handle.components-resizable-box__handle-top:hover::before,
    .components-resizable-box__side-handle.components-resizable-box__handle-bottom:hover::before,
    .components-resizable-box__side-handle.components-resizable-box__handle-top:active::before,
    .components-resizable-box__side-handle.components-resizable-box__handle-bottom:active::before {
      animation-duration: 1ms; } }

.components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
.components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
.components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
.components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
  animation: components-resizable-box__left-right-animation 0.1s ease-out 0s;
  animation-fill-mode: forwards; }
  @media (prefers-reduced-motion: reduce) {
    .components-resizable-box__side-handle.components-resizable-box__handle-left:hover::before,
    .components-resizable-box__side-handle.components-resizable-box__handle-right:hover::before,
    .components-resizable-box__side-handle.components-resizable-box__handle-left:active::before,
    .components-resizable-box__side-handle.components-resizable-box__handle-right:active::before {
      animation-duration: 1ms; } }

@keyframes components-resizable-box__top-bottom-animation {
  from {
    transform: scaleX(0);
    opacity: 0; }
  to {
    transform: scaleX(1);
    opacity: 1; } }

@keyframes components-resizable-box__left-right-animation {
  from {
    transform: scaleY(0);
    opacity: 0; }
  to {
    transform: scaleY(1);
    opacity: 1; } }

/*!rtl:begin:ignore*/
.components-resizable-box__handle-right {
  right: calc(11.5px * -1); }

.components-resizable-box__handle-left {
  left: calc(11.5px * -1); }

.components-resizable-box__handle-top {
  top: calc(11.5px * -1); }

.components-resizable-box__handle-bottom {
  bottom: calc(11.5px * -1); }

/*!rtl:end:ignore*/
.components-responsive-wrapper {
  position: relative;
  max-width: 100%; }
  .components-responsive-wrapper,
  .components-responsive-wrapper > span {
    display: block; }

.components-responsive-wrapper__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.components-sandbox {
  overflow: hidden; }

iframe.components-sandbox {
  width: 100%; }

html.lockscroll,
body.lockscroll {
  overflow: hidden; }

.components-select-control__input {
  background: #fff;
  height: 36px;
  line-height: 36px;
  margin: 1px;
  outline: 0;
  width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important; }
  @media (min-width: 782px) {
    .components-select-control__input {
      height: 28px;
      line-height: 28px; } }

@media (max-width: 782px) {
  .components-base-control .components-base-control__field .components-select-control__input {
    font-size: 16px; } }

.components-snackbar {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 13px;
  background-color: #32373c;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 16px 24px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  cursor: pointer; }
  @media (min-width: 600px) {
    .components-snackbar {
      width: -webkit-fit-content;
      width: fit-content; } }
  .components-snackbar:hover {
    background-color: #191e23; }
  .components-snackbar:focus {
    background-color: #191e23;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #007cba; }

.components-snackbar__action.components-button {
  margin-left: 32px;
  color: #fff;
  height: auto;
  flex-shrink: 0;
  line-height: 1.4;
  padding: 0; }
  .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default) {
    text-decoration: underline;
    background-color: transparent; }
    .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):focus {
      color: #fff;
      box-shadow: none;
      outline: 1px dotted #fff; }
    .components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-default):hover {
      color: #33b3db; }

.components-snackbar__content {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  line-height: 1.4; }

.components-snackbar-list {
  position: absolute;
  z-index: 100000;
  width: 100%;
  box-sizing: border-box; }

.components-snackbar-list__notice-container {
  position: relative;
  padding-top: 8px; }

.components-spinner {
  display: inline-block;
  background-color: #7e8993;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  float: right;
  margin: 5px 11px 0;
  border-radius: 100%;
  position: relative; }
  .components-spinner::before {
    /* rtl:begin:ignore */
    content: "";
    position: absolute;
    background-color: #fff;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    transform-origin: 6px 6px;
    animation: components-spinner__animation 1s infinite linear;
    /* rtl:end:ignore */ }

@keyframes components-spinner__animation {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.components-text-control__input {
  width: 100%;
  padding: 6px 8px; }

.components-textarea-control__input {
  width: 100%;
  padding: 6px 8px; }

.components-tip {
  display: flex;
  color: #555d66; }
  .components-tip svg {
    -ms-grid-row-align: center;
        align-self: center;
    fill: #f0b849;
    flex-shrink: 0;
    margin-right: 16px; }
  .components-tip p {
    margin: 0; }

.components-toggle-control .components-base-control__field {
  display: flex;
  margin-bottom: 12px;
  line-height: initial;
  align-items: center; }
  .components-toggle-control .components-base-control__field .components-form-toggle {
    margin-right: 16px; }
  .components-toggle-control .components-base-control__field .components-toggle-control__label {
    display: block; }

.components-accessible-toolbar {
  display: inline-flex;
  flex-shrink: 0; }
  @supports ((position: -webkit-sticky) or (position: sticky)) {
    .components-accessible-toolbar {
      display: flex; } }

.components-toolbar__control.components-button {
  width: 36px;
  height: 36px; }
  .components-toolbar__control.components-button[data-subscript] svg {
    padding: 5px 10px 5px 0; }
  .components-toolbar__control.components-button[data-subscript]::after {
    content: attr(data-subscript);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 12px;
    position: absolute;
    right: 8px;
    bottom: 10px; }
  .components-toolbar__control.components-button:not(:disabled).is-active[data-subscript]::after {
    color: #fff; }
  .components-toolbar__control.components-button.is-active {
    padding: 3px;
    outline: none; }
  .components-toolbar__control.components-button.is-active > svg {
    padding: 5px;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    box-sizing: border-box;
    outline: none;
    color: #fff;
    box-shadow: none;
    background: #555d66; }

.components-toolbar-group {
  border: 1px solid #e2e4e7;
  background-color: #fff;
  display: flex;
  flex-shrink: 0;
  margin-right: -1px;
  line-height: 0; }
  .components-toolbar-group .components-toolbar-group {
    border-width: 0;
    margin: 0; }

.components-toolbar {
  margin: 0;
  border: 1px solid #e2e4e7;
  background-color: #fff;
  display: flex;
  flex-shrink: 0; }

div.components-toolbar > div {
  display: block;
  margin: 0; }
  @supports ((position: -webkit-sticky) or (position: sticky)) {
    div.components-toolbar > div {
      display: flex; } }

div.components-toolbar > div + div {
  margin-left: -3px; }
  div.components-toolbar > div + div.has-left-divider {
    margin-left: 6px;
    position: relative;
    overflow: visible; }
  div.components-toolbar > div + div.has-left-divider::before {
    display: inline-block;
    content: "";
    box-sizing: content-box;
    background-color: #e2e4e7;
    position: absolute;
    top: 8px;
    left: -3px;
    width: 1px;
    height: 20px; }

.components-tooltip.components-popover {
  z-index: 1000002; }
  .components-tooltip.components-popover::before {
    border-color: transparent; }
  .components-tooltip.components-popover[data-y-axis="top"]::after {
    border-top-color: #191e23; }
  .components-tooltip.components-popover[data-y-axis="bottom"]::after {
    border-bottom-color: #191e23; }
  .components-tooltip.components-popover .components-popover__content {
    min-width: 0; }

.components-tooltip .components-popover__content {
  padding: 4px 12px;
  background: #191e23;
  border-width: 0;
  color: #fff;
  white-space: nowrap;
  text-align: center; }

.components-tooltip__shortcut {
  display: block;
  color: #7e8993; }

.components-visually-hidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; }

.components-visually-hidden:focus {
  background-color: #e2e4e7;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; }

.wp-core-ui.wp-admin .wcc-root form ul{margin:0;padding:0;list-style:none}.wp-core-ui.wp-admin .wcc-root input[type='text'],.wp-core-ui.wp-admin .wcc-root input[type='search'],.wp-core-ui.wp-admin .wcc-root input[type='email'],.wp-core-ui.wp-admin .wcc-root input[type='number'],.wp-core-ui.wp-admin .wcc-root input[type='password'],.wp-core-ui.wp-admin .wcc-root input[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input[type='radio'],.wp-core-ui.wp-admin .wcc-root input[type='tel'],.wp-core-ui.wp-admin .wcc-root input[type='url'],.wp-core-ui.wp-admin .wcc-root textarea{margin:0;padding:7px 14px;width:100%;color:#3d4145;font-size:16px;line-height:1.5;border:1px solid #ccced0;background-color:#fff;transition:all 0.15s ease-in-out;box-sizing:border-box}.wp-core-ui.wp-admin .wcc-root input[type='text']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='search']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='email']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='number']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='password']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='checkbox']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='radio']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='tel']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='url']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root textarea:-ms-input-placeholder{color:#636d75}.wp-core-ui.wp-admin .wcc-root input[type='text']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='search']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='email']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='number']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='password']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='checkbox']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='radio']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='tel']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='url']::placeholder,.wp-core-ui.wp-admin .wcc-root textarea::placeholder{color:#636d75}.wp-core-ui.wp-admin .wcc-root input:hover[type='text'],.wp-core-ui.wp-admin .wcc-root input:hover[type='search'],.wp-core-ui.wp-admin .wcc-root input:hover[type='email'],.wp-core-ui.wp-admin .wcc-root input:hover[type='number'],.wp-core-ui.wp-admin .wcc-root input:hover[type='password'],.wp-core-ui.wp-admin .wcc-root input:hover[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:hover[type='radio'],.wp-core-ui.wp-admin .wcc-root input:hover[type='tel'],.wp-core-ui.wp-admin .wcc-root input:hover[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:hover{border-color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root input:focus[type='text'],.wp-core-ui.wp-admin .wcc-root input:focus[type='search'],.wp-core-ui.wp-admin .wcc-root input:focus[type='email'],.wp-core-ui.wp-admin .wcc-root input:focus[type='number'],.wp-core-ui.wp-admin .wcc-root input:focus[type='password'],.wp-core-ui.wp-admin .wcc-root input:focus[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:focus[type='radio'],.wp-core-ui.wp-admin .wcc-root input:focus[type='tel'],.wp-core-ui.wp-admin .wcc-root input:focus[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:focus{border-color:#016087;outline:none;box-shadow:0 0 0 2px #bbc9d5}.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='text'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='search'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='email'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='number'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='password'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='radio'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='tel'],.wp-core-ui.wp-admin .wcc-root input:focus:hover[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:focus:hover{box-shadow:0 0 0 2px #95adc1}.wp-core-ui.wp-admin .wcc-root input[type='text']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='search']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='email']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='number']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='password']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='checkbox']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='radio']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='tel']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root input[type='url']:focus::-ms-clear,.wp-core-ui.wp-admin .wcc-root textarea:focus::-ms-clear{display:none}.wp-core-ui.wp-admin .wcc-root input:disabled[type='text'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='search'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='email'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='number'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='password'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='radio'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='tel'],.wp-core-ui.wp-admin .wcc-root input:disabled[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:disabled{background:#f6f6f6;border-color:#f6f6f6;color:#b0b5b8;opacity:1;-webkit-text-fill-color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='text'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='search'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='email'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='number'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='password'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='radio'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='tel'],.wp-core-ui.wp-admin .wcc-root input:disabled:hover[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:disabled:hover{cursor:default}.wp-core-ui.wp-admin .wcc-root input[type='text']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='search']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='email']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='number']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='password']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='checkbox']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='radio']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='tel']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='url']:disabled:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root textarea:disabled:-ms-input-placeholder{color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root input[type='text']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='search']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='email']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='number']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='password']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='checkbox']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='radio']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='tel']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='url']:disabled::placeholder,.wp-core-ui.wp-admin .wcc-root textarea:disabled::placeholder{color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root input.is-valid[type='text'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='search'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='email'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='number'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='password'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='radio'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='tel'],.wp-core-ui.wp-admin .wcc-root input.is-valid[type='url'],.wp-core-ui.wp-admin .wcc-root textarea.is-valid{border-color:#008a00}.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='text'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='search'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='email'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='number'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='password'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='radio'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='tel'],.wp-core-ui.wp-admin .wcc-root input.is-valid:hover[type='url'],.wp-core-ui.wp-admin .wcc-root textarea.is-valid:hover{border-color:#0d5a10}.wp-core-ui.wp-admin .wcc-root input.is-error[type='text'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='search'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='email'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='number'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='password'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='radio'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='tel'],.wp-core-ui.wp-admin .wcc-root input.is-error[type='url'],.wp-core-ui.wp-admin .wcc-root textarea.is-error{border-color:#eb0001}.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='text'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='search'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='email'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='number'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='password'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='radio'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='tel'],.wp-core-ui.wp-admin .wcc-root input.is-error:hover[type='url'],.wp-core-ui.wp-admin .wcc-root textarea.is-error:hover{border-color:#ac120b}.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='text'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='search'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='email'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='number'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='password'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='radio'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='tel'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:focus.is-valid{box-shadow:0 0 0 2px #c5e6b9}.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='text'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='search'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='email'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='number'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='password'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='radio'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='tel'],.wp-core-ui.wp-admin .wcc-root input:focus.is-valid:hover[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:focus.is-valid:hover{box-shadow:0 0 0 2px #9dcf8d}.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='text'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='search'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='email'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='number'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='password'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='radio'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='tel'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:focus.is-error{box-shadow:0 0 0 2px #ffcfac}.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='text'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='search'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='email'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='number'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='password'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='radio'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='tel'],.wp-core-ui.wp-admin .wcc-root input:focus.is-error:hover[type='url'],.wp-core-ui.wp-admin .wcc-root textarea:focus.is-error:hover{box-shadow:0 0 0 2px #ffab78}.wp-core-ui.wp-admin .wcc-root textarea{min-height:92px}.color-scheme.is-classic-blue{--color-accent: #d7730f;--color-accent-rgb: 215,115,15;--color-accent-dark: #994b1f;--color-accent-dark-rgb: 153,75,31;--color-accent-light: #eda268;--color-accent-light-rgb: 237,162,104;--color-accent-0: #fef7f2;--color-accent-0-rgb: 254,247,242;--color-accent-50: #fce4d5;--color-accent-50-rgb: 252,228,213;--color-accent-100: #fad2b6;--color-accent-100-rgb: 250,210,182;--color-accent-200: #f5ba8f;--color-accent-200-rgb: 245,186,143;--color-accent-300: #eda268;--color-accent-300-rgb: 237,162,104;--color-accent-400: #e38a40;--color-accent-400-rgb: 227,138,64;--color-accent-500: #d7730f;--color-accent-500-rgb: 215,115,15;--color-accent-600: #b95e1b;--color-accent-600-rgb: 185,94,27;--color-accent-700: #994b1f;--color-accent-700-rgb: 153,75,31;--color-accent-800: #79391f;--color-accent-800-rgb: 121,57,31;--color-accent-900: #592a1b;--color-accent-900-rgb: 89,42,27;--color-button-primary-background-hover: #e38a40;--sidebar-background: #e1e2e2;--sidebar-background-gradient: 225,226,226;--sidebar-heading-color: #50575d;--sidebar-border-color: #ccced0;--sidebar-menu-a-first-child-after-background: 225,226,226;--sidebar-menu-selected-background-color: #636d75;--sidebar-menu-selected-a-color: #fff;--sidebar-menu-selected-a-first-child-after-background: 99,109,117;--sidebar-menu-hover-background: #fff;--sidebar-menu-hover-background-gradient: 255,255,255;--sidebar-menu-hover-color: #016087;--profile-gravatar-user-secondary-info-color: #636d75}.color-scheme.is-powder-snow{--color-primary: #1a1a1a;--color-primary-rgb: 26,26,26;--color-primary-light: #969ca1;--color-primary-light-rgb: 150,156,161;--color-primary-dark: #3d4145;--color-primary-dark-rgb: 61,65,69;--color-primary-0: #f3f5f6;--color-primary-0-rgb: 246,246,246;--color-primary-50: #e1e2e2;--color-primary-50-rgb: 225,226,226;--color-primary-100: #ccced0;--color-primary-100-rgb: 204,206,208;--color-primary-200: #b0b5b8;--color-primary-200-rgb: 176,181,184;--color-primary-300: #969ca1;--color-primary-300-rgb: 150,156,161;--color-primary-400: #7c848b;--color-primary-400-rgb: 124,132,139;--color-primary-500: #636d75;--color-primary-500-rgb: 99,109,117;--color-primary-600: #50575d;--color-primary-600-rgb: 80,87,93;--color-primary-700: #3d4145;--color-primary-700-rgb: 61,65,69;--color-primary-800: #2b2d2f;--color-primary-800-rgb: 43,45,47;--color-primary-900: #1a1a1a;--color-primary-900-rgb: 26,26,26;--color-accent: #005fb7;--color-accent-rgb: 0,95,183;--color-accent-dark: #183780;--color-accent-dark-rgb: 24,55,128;--color-accent-light: #6795fe;--color-accent-light-rgb: 103,149,254;--color-accent-0: #f5f9ff;--color-accent-0-rgb: 245,249,255;--color-accent-50: #dbe8ff;--color-accent-50-rgb: 219,232,255;--color-accent-100: #c1d7ff;--color-accent-100-rgb: 193,215,255;--color-accent-200: #93b6ff;--color-accent-200-rgb: 147,182,255;--color-accent-300: #6795fe;--color-accent-300-rgb: 103,149,254;--color-accent-400: #3574f8;--color-accent-400-rgb: 53,116,248;--color-accent-500: #005fb7;--color-accent-500-rgb: 0,95,183;--color-accent-600: #144b9b;--color-accent-600-rgb: 20,75,155;--color-accent-700: #183780;--color-accent-700-rgb: 24,55,128;--color-accent-800: #162566;--color-accent-800-rgb: 22,37,102;--color-accent-900: #10144d;--color-accent-900-rgb: 16,20,77;--color-text: #1a1a1a;--color-text-subtle: #50575d;--color-surface: #fff;--color-surface-backdrop: #f6f6f6;--color-link: #005fb7;--color-link-rgb: 0,95,183;--color-link-dark: #183780;--color-link-dark-rgb: 24,55,128;--color-link-light: #6795fe;--color-link-light-rgb: 103,149,254;--color-link-0: #f5f9ff;--color-link-0-rgb: 245,249,255;--color-link-50: #dbe8ff;--color-link-50-rgb: 219,232,255;--color-link-100: #c1d7ff;--color-link-100-rgb: 193,215,255;--color-link-200: #93b6ff;--color-link-200-rgb: 147,182,255;--color-link-300: #6795fe;--color-link-300-rgb: 103,149,254;--color-link-400: #3574f8;--color-link-400-rgb: 53,116,248;--color-link-500: #005fb7;--color-link-500-rgb: 0,95,183;--color-link-600: #144b9b;--color-link-600-rgb: 20,75,155;--color-link-700: #183780;--color-link-700-rgb: 24,55,128;--color-link-800: #162566;--color-link-800-rgb: 22,37,102;--color-link-900: #10144d;--color-link-900-rgb: 16,20,77;--color-button-primary-background-hover: #3574f8;--color-button-primary-scary-background-hover: #ff4b1c;--masterbar-color: #fff;--masterbar-border-color: #3d4145;--masterbar-item-new-editor-background: #636d75;--masterbar-item-new-editor-hover-background: #7c848b;--masterbar-toggle-drafts-editor-background: #7c848b;--masterbar-toggle-drafts-editor-border-color: #ccced0;--masterbar-toggle-drafts-editor-hover-background: #7c848b;--sidebar-background: #e1e2e2;--sidebar-background-gradient: 225,226,226;--sidebar-secondary-background: #fff;--sidebar-secondary-background-gradient: 255,255,255;--sidebar-border-color: #ccced0;--sidebar-gridicon-fill: #636d75;--sidebar-heading-color: #1a1a1a;--sidebar-footer-button-color: #1a1a1a;--sidebar-menu-link-secondary-text-color: #636d75;--sidebar-menu-a-first-child-after-background: 225,226,226;--sidebar-menu-selected-background-color: #50575d;--sidebar-menu-selected-a-color: #fff;--sidebar-menu-selected-a-first-child-after-background: 80,87,93;--sidebar-menu-hover-background: #c1d7ff;--sidebar-menu-hover-background-gradient: 193,215,255;--sidebar-menu-hover-color: #144b9b;--button-is-borderless-color: #636d75;--count-border-color: #636d75;--count-color: #636d75;--profile-gravatar-user-secondary-info-color: #50575d}.color-scheme.is-nightfall{--color-primary: #1a1a1a;--color-primary-light: #969ca1;--color-primary-dark: #3d4145;--color-primary-rgb: 26,26,26;--color-primary-0: #f6f6f6;--color-primary-0-rgb: 246,246,246;--color-primary-50: #e1e2e2;--color-primary-50-rgb: 225,226,226;--color-primary-100: #ccced0;--color-primary-100-rgb: 204,206,208;--color-primary-200: #b0b5b8;--color-primary-200-rgb: 176,181,184;--color-primary-300: #969ca1;--color-primary-300-rgb: 150,156,161;--color-primary-400: #7c848b;--color-primary-400-rgb: 124,132,139;--color-primary-500: #636d75;--color-primary-500-rgb: 99,109,117;--color-primary-600: #50575d;--color-primary-600-rgb: 80,87,93;--color-primary-700: #3d4145;--color-primary-700-rgb: 61,65,69;--color-primary-800: #2b2d2f;--color-primary-800-rgb: 43,45,47;--color-primary-900: #1a1a1a;--color-primary-900-rgb: 26,26,26;--color-accent: #7c589f;--color-accent-rgb: 124,88,159;--color-accent-dark: #4b3264;--color-accent-dark-rgb: 75,50,100;--color-accent-light: #a88ebe;--color-accent-light-rgb: 168,142,190;--color-accent-0: #f7f5f8;--color-accent-0-rgb: 247,245,248;--color-accent-50: #e5deea;--color-accent-50-rgb: 229,222,234;--color-accent-100: #d4c8de;--color-accent-100-rgb: 212,200,222;--color-accent-200: #beabce;--color-accent-200-rgb: 190,171,206;--color-accent-300: #a88ebe;--color-accent-300-rgb: 168,142,190;--color-accent-400: #9273af;--color-accent-400-rgb: 146,115,175;--color-accent-500: #7c589f;--color-accent-500-rgb: 124,88,159;--color-accent-600: #634581;--color-accent-600-rgb: 99,69,129;--color-accent-700: #4b3264;--color-accent-700-rgb: 75,50,100;--color-accent-800: #342148;--color-accent-800-rgb: 52,33,72;--color-accent-900: #1f112e;--color-accent-900-rgb: 31,17,46;--color-text: #2b2d2f;--color-text-subtle: #636d75;--color-surface: #fff;--color-surface-backdrop: #f6f6f6;--color-link: #7c589f;--color-link-rgb: 124,88,159;--color-link-dark: #4b3264;--color-link-dark-rgb: 75,50,100;--color-link-light: #a88ebe;--color-link-light-rgb: 168,142,190;--color-link-0: #f7f5f8;--color-link-0-rgb: 247,245,248;--color-link-50: #e5deea;--color-link-50-rgb: 229,222,234;--color-link-100: #d4c8de;--color-link-100-rgb: 212,200,222;--color-link-200: #beabce;--color-link-200-rgb: 190,171,206;--color-link-300: #a88ebe;--color-link-300-rgb: 168,142,190;--color-link-400: #9273af;--color-link-400-rgb: 146,115,175;--color-link-500: #7c589f;--color-link-500-rgb: 124,88,159;--color-link-600: #634581;--color-link-600-rgb: 99,69,129;--color-link-700: #4b3264;--color-link-700-rgb: 75,50,100;--color-link-800: #342148;--color-link-800-rgb: 52,33,72;--color-link-900: #1f112e;--color-link-900-rgb: 31,17,46;--color-button-primary-background-hover: #9273af;--color-button-primary-scary-background-hover: #ff4b1c;--masterbar-color: #fff;--masterbar-border-color: #3d4145;--masterbar-item-new-editor-background: #636d75;--masterbar-item-new-editor-hover-background: #7c848b;--masterbar-toggle-drafts-editor-background: #7c848b;--masterbar-toggle-drafts-editor-border-color: #ccced0;--masterbar-toggle-drafts-editor-hover-background: #7c848b;--sidebar-background: #204a69;--sidebar-background-gradient: 32,74,105;--sidebar-secondary-background: #fff;--sidebar-secondary-background-gradient: 255,255,255;--sidebar-border-color: #23354b;--sidebar-text-color: #fff;--sidebar-gridicon-fill: #fff;--sidebar-heading-color: #b0b5b8;--sidebar-footer-button-color: #fff;--sidebar-menu-link-secondary-text-color: #fff;--sidebar-menu-a-first-child-after-background: 32,74,105;--sidebar-menu-selected-background-color: #7e280e;--sidebar-menu-selected-a-color: #e1e2e2;--sidebar-menu-selected-a-first-child-after-background: 126,40,14;--sidebar-menu-hover-background: #23354b;--sidebar-menu-hover-background-gradient: 35,53,75;--sidebar-menu-hover-color: #e1e2e2;--button-is-borderless-color: #3d4145;--count-border-color: #3d4145;--count-color: #3d4145;--profile-gravatar-user-secondary-info-color: #e1e2e2}.color-scheme.is-sakura{--color-primary: #195d52;--color-primary-rgb: 25,93,82;--color-primary-light: #438c7d;--color-primary-light-rgb: 67,140,125;--color-primary-dark: #20473f;--color-primary-dark-rgb: 32,71,63;--color-primary-0: #f3f6f5;--color-primary-0-rgb: 243,246,245;--color-primary-50: #d8e3e0;--color-primary-50-rgb: 216,227,224;--color-primary-100: #bad1cb;--color-primary-100-rgb: 186,209,203;--color-primary-200: #93bab0;--color-primary-200-rgb: 147,186,176;--color-primary-300: #6da296;--color-primary-300-rgb: 109,162,150;--color-primary-400: #438c7d;--color-primary-400-rgb: 67,140,125;--color-primary-500: #007565;--color-primary-500-rgb: 0,117,101;--color-primary-600: #195d52;--color-primary-600-rgb: 25,93,82;--color-primary-700: #20473f;--color-primary-700-rgb: 32,71,63;--color-primary-800: #20312d;--color-primary-800-rgb: 32,49,45;--color-primary-900: #1d1d1d;--color-primary-900-rgb: 29,29,29;--color-accent: #005fb7;--color-accent-rgb: 0,95,183;--color-accent-dark: #183780;--color-accent-dark-rgb: 24,55,128;--color-accent-light: #6795fe;--color-accent-light-rgb: 103,149,254;--color-accent-0: #f5f9ff;--color-accent-0-rgb: 245,249,255;--color-accent-50: #dbe8ff;--color-accent-50-rgb: 219,232,255;--color-accent-100: #c1d7ff;--color-accent-100-rgb: 193,215,255;--color-accent-200: #93b6ff;--color-accent-200-rgb: 147,182,255;--color-accent-300: #6795fe;--color-accent-300-rgb: 103,149,254;--color-accent-400: #3574f8;--color-accent-400-rgb: 53,116,248;--color-accent-500: #005fb7;--color-accent-500-rgb: 0,95,183;--color-accent-600: #144b9b;--color-accent-600-rgb: 20,75,155;--color-accent-700: #183780;--color-accent-700-rgb: 24,55,128;--color-accent-800: #162566;--color-accent-800-rgb: 22,37,102;--color-accent-900: #10144d;--color-accent-900-rgb: 16,20,77;--color-text: #1a1a1a;--color-text-subtle: #50575d;--color-surface: #fff;--color-surface-backdrop: #f6f6f6;--color-link: #007565;--color-link-rgb: 0,117,101;--color-link-dark: #20473f;--color-link-dark-rgb: 32,71,63;--color-link-light: #6da296;--color-link-light-rgb: 109,162,150;--color-link-0: #f3f6f5;--color-link-0-rgb: 243,246,245;--color-link-50: #d8e3e0;--color-link-50-rgb: 216,227,224;--color-link-100: #bad1cb;--color-link-100-rgb: 186,209,203;--color-link-200: #93bab0;--color-link-200-rgb: 147,186,176;--color-link-300: #6da296;--color-link-300-rgb: 109,162,150;--color-link-400: #438c7d;--color-link-400-rgb: 67,140,125;--color-link-500: #007565;--color-link-500-rgb: 0,117,101;--color-link-600: #195d52;--color-link-600-rgb: 25,93,82;--color-link-700: #20473f;--color-link-700-rgb: 32,71,63;--color-link-800: #20312d;--color-link-800-rgb: 32,49,45;--color-link-900: #1d1d1d;--color-link-900-rgb: 29,29,29;--color-button-primary-background-hover: #3574f8;--color-button-primary-scary-background-hover: #ff4b1c;--masterbar-color: #fff;--masterbar-border-color: #20473f;--masterbar-item-new-editor-background: #636d75;--masterbar-item-new-editor-hover-background: #50575d;--masterbar-toggle-drafts-editor-background: #50575d;--masterbar-toggle-drafts-editor-border-color: #ccced0;--masterbar-toggle-drafts-editor-hover-background: #7c848b;--sidebar-background: #ebc6d5;--sidebar-background-gradient: 235,198,213;--sidebar-secondary-background: #fff;--sidebar-secondary-background-gradient: 255,255,255;--sidebar-border-color: #e1a7bf;--sidebar-text-color: #5d283d;--sidebar-gridicon-fill: #9b3c69;--sidebar-heading-color: #7b3252;--sidebar-footer-button-color: #1a1a1a;--sidebar-menu-link-secondary-text-color: #7b3252;--sidebar-menu-a-first-child-after-background: 235,198,213;--sidebar-menu-selected-background-color: #dbe8ff;--sidebar-menu-selected-a-color: #144b9b;--sidebar-menu-selected-a-first-child-after-background: 219,232,255;--sidebar-menu-hover-background: #c96895;--sidebar-menu-hover-background-gradient: 201,104,149;--sidebar-menu-hover-color: #fff;--button-is-borderless-color: #636d75;--count-border-color: #636d75;--count-color: #636d75;--profile-gravatar-user-secondary-info-color: #7b3252}.color-scheme.is-laser-black{--color-primary: #005fb7;--color-primary-light: #3574f8;--color-primary-dark: #183780;--color-accent: #ff3997;--color-accent-light: #ffa2d4;--color-accent-dark: #b7266a;--color-white: #000;--color-white-rgb: 0,0,0;--color-neutral: #636d75;--color-neutral-rgb: 99,109,117;--color-neutral-dark: #3d4145;--color-neutral-dark-rgb: 61,65,69;--color-neutral-light: #969ca1;--color-neutral-light-rgb: 150,156,161;--color-neutral-0: #1a1a1a;--color-neutral-0-rgb: 26,26,26;--color-neutral-50: #2b2d2f;--color-neutral-50-rgb: 43,45,47;--color-neutral-100: #3d4145;--color-neutral-100-rgb: 61,65,69;--color-neutral-200: #50575d;--color-neutral-200-rgb: 80,87,93;--color-neutral-300: #636d75;--color-neutral-300-rgb: 99,109,117;--color-neutral-400: #7c848b;--color-neutral-400-rgb: 124,132,139;--color-neutral-500: #969ca1;--color-neutral-500-rgb: 150,156,161;--color-neutral-600: #b0b5b8;--color-neutral-600-rgb: 176,181,184;--color-neutral-700: #ccced0;--color-neutral-700-rgb: 204,206,208;--color-neutral-800: #e1e2e2;--color-neutral-800-rgb: 225,226,226;--color-neutral-900: #f6f6f6;--color-neutral-900-rgb: 246,246,246;--color-success: #44a234;--color-success-light: #9dcf8d;--color-success-dark: #08720b;--color-warning: #f6c200;--color-warning-light: #fbe697;--color-warning-dark: #daaa12;--color-error: #ff4b1c;--color-error-light: #ffab78;--color-error-dark: #cb0c07;--color-text: #ccced0;--color-text-subtle: #969ca1;--color-surface: #000;--color-surface-backdrop: #1a1a1a;--color-surface-backdrop-rgb: 26,26,26;--masterbar-color: #fff;--masterbar-border-color: #b0b5b8;--masterbar-item-new-editor-background: #636d75;--masterbar-item-new-editor-hover-background: #7c848b;--masterbar-toggle-drafts-editor-background: #7c848b;--masterbar-toggle-drafts-editor-border-color: #ccced0;--masterbar-toggle-drafts-editor-hover-background: #7c848b;--sidebar-background: #1a1a1a;--sidebar-background-gradient: 26,26,26;--sidebar-secondary-background: #1a1a1a;--sidebar-secondary-background-gradient: 26,26,26;--sidebar-text-color: #ccced0;--sidebar-gridicon-fill: #7c848b;--sidebar-heading-color: #7c848b;--sidebar-footer-button-color: #3d4145;--sidebar-menu-link-secondary-text-color: #3d4145;--sidebar-menu-a-first-child-after-background: 26,26,26;--sidebar-menu-selected-background-color: #183780;--sidebar-menu-selected-a-color: #93b6ff;--sidebar-menu-selected-a-first-child-after-background: 24,55,128;--sidebar-menu-hover-background: #3d4145;--sidebar-menu-hover-background-gradient: 61,65,69;--sidebar-menu-hover-color: #ccced0;--profile-gravatar-user-secondary-info-color: #3d4145}.wp-core-ui.wp-admin .wcc-root{/*!rtl:ignore*//*!rtl:ignore*//*!rtl:ignore*/}.wp-core-ui.wp-admin .wcc-root a,.wp-core-ui.wp-admin .wcc-root a:visited{text-decoration:none}.wp-core-ui.wp-admin .wcc-root .button{background:#f6f6f6;box-shadow:none;padding:5px 14px 7px}.wp-core-ui.wp-admin .wcc-root .button .spinner{margin-bottom:-8px}.wp-core-ui.wp-admin .wcc-root .button .spinner .spinner__border{fill:transparent}.wp-core-ui.wp-admin .wcc-root .label-settings__credit-card-description button.is-borderless{color:#016087}.wp-core-ui.wp-admin .wcc-root .button.is-primary{background:#016087;border-color:#23354b}.wp-core-ui.wp-admin .wcc-root .button.is-primary:hover{background:#016087}.wp-core-ui.wp-admin .wcc-root .button.is-primary[disabled],.wp-core-ui.wp-admin .wcc-root .button.is-primary:disabled,.wp-core-ui.wp-admin .wcc-root .button.is-primary.disabled{color:#f6f6f6 !important;background:#fff !important;border-color:#f6f6f6 !important;text-shadow:none !important}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-busy{background-size:120px 100% !important;background-image:linear-gradient(-45deg, #016087 28%, #46799a 28%, #46799a 72%, #016087 72%) !important;border-color:#0081a9 !important}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-borderless{background:none}.wp-core-ui.wp-admin .wcc-root input[type=checkbox]:checked:before{font-family:initial;font-size:16px;font-weight:600;line-height:0px;float:none}.wp-core-ui.wp-admin .wcc-root input[type='text'],.wp-core-ui.wp-admin .wcc-root input[type='search'],.wp-core-ui.wp-admin .wcc-root input[type='email'],.wp-core-ui.wp-admin .wcc-root input[type='number'],.wp-core-ui.wp-admin .wcc-root input[type='password'],.wp-core-ui.wp-admin .wcc-root input[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input[type='radio'],.wp-core-ui.wp-admin .wcc-root input[type='tel'],.wp-core-ui.wp-admin .wcc-root input[type='url'],.wp-core-ui.wp-admin .wcc-root textarea{box-shadow:none;height:auto}.wp-core-ui.wp-admin .wcc-root input[type='text']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='search']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='email']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='number']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='password']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='checkbox']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='radio']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='tel']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root input[type='url']:-ms-input-placeholder,.wp-core-ui.wp-admin .wcc-root textarea:-ms-input-placeholder{color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root input[type='text']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='search']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='email']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='number']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='password']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='checkbox']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='radio']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='tel']::placeholder,.wp-core-ui.wp-admin .wcc-root input[type='url']::placeholder,.wp-core-ui.wp-admin .wcc-root textarea::placeholder{color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root .form-input-validation{padding:4px 0 4px 32px}.wp-core-ui.wp-admin .wcc-root .form-input-validation .gridicon{float:none;vertical-align:middle}.wp-core-ui.wp-admin .wcc-root .form-server-error .gridicon{float:none;vertical-align:middle}.wp-core-ui.wp-admin .wcc-root .settings-steps-summary{display:flex;flex-wrap:wrap;justify-content:space-between}.wp-core-ui.wp-admin .wcc-root .settings-steps-summary .settings-step-summary{background-color:#f6f6f6;border-radius:5px;border:1px #3d4145 solid;padding:12px;margin-bottom:12px;flex-basis:44%}.wp-core-ui.wp-admin .wcc-root .settings-steps-summary .settings-step-summary h4{font-weight:bold}.wp-core-ui.wp-admin .wcc-root .share-package-option{display:inline-block;margin-top:8px;text-align:left;font-size:13px}.wp-core-ui.wp-admin .wcc-root .global-notices{z-index:999999 !important;top:16px;right:16px}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root .global-notices{top:-5px;right:0}}.wp-core-ui.wp-admin .wcc-root .global-notices .notice{max-width:740px}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice{margin-left:0}}.wp-core-ui.wp-admin .wcc-root .global-notices .notice__text{font-size:15px}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice__text{margin-top:1px}}.wp-core-ui.wp-admin .wcc-root:not(.label-purchase-modal){max-width:100%;padding:20px;position:relative}.wp-core-ui.wp-admin .wcc-root.wc-connect-shipping-settings{margin-top:6px}.wp-core-ui.wp-admin .wcc-root .card{min-width:0;max-width:none;border:0}.wp-core-ui.wp-admin .wcc-root p{margin:0;font-size:100%}.wp-core-ui.wp-admin .wcc-root select{height:auto;box-shadow:none;width:100%;line-height:18px;padding:9px 32px 12px 14px}.wp-core-ui.wp-admin .wcc-root .button{height:auto}.wp-core-ui.wp-admin .wcc-root .button:focus{box-shadow:none}.wp-core-ui.wp-admin .wcc-root .spinner{background:none;visibility:visible;float:none;vertical-align:inherit;opacity:1;width:inherit;height:inherit}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.wp-core-ui.wp-admin .wcc-root .form-troubles{opacity:0;animation:fadeIn ease-in 1;animation-fill-mode:forwards;animation-duration:.5s;animation-delay:3s}.wp-core-ui.wp-admin .wcc-root .wc-connect-no-priv-settings{background:#fff;padding:20px}.wp-core-ui.wp-admin .wcc-root .gridicon{fill:currentColor}.wp-core-ui.wp-admin .wcc-root .label-settings__labels-container .label-settings__external{display:block !important}.wp-core-ui.wp-admin .wcc-root .label-settings__labels-container .label-settings__internal{display:none}.wp-core-ui.wp-admin .wcc-root fieldset,.wp-core-ui.wp-admin .wcc-root input[type='text'],.wp-core-ui.wp-admin .wcc-root input[type='search'],.wp-core-ui.wp-admin .wcc-root input[type='email'],.wp-core-ui.wp-admin .wcc-root input[type='number'],.wp-core-ui.wp-admin .wcc-root input[type='password'],.wp-core-ui.wp-admin .wcc-root input[type='tel'],.wp-core-ui.wp-admin .wcc-root input[type='url'],.wp-core-ui.wp-admin .wcc-root textarea,.wp-core-ui.wp-admin .wcc-root select,.wp-core-ui.wp-admin .wcc-root label{box-sizing:border-box}.wp-core-ui.wp-admin .wcc-root input[type='password'],.wp-core-ui.wp-admin .wcc-root input[type='email'],.wp-core-ui.wp-admin .wcc-root input[type='url']{/*!rtl:ignore*/direction:ltr}.wp-core-ui.wp-admin .wcc-root input[type='checkbox'],.wp-core-ui.wp-admin .wcc-root input[type='radio']{clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:2px 0 0;float:left;outline:0;padding:0;text-align:center;vertical-align:middle;width:16px;min-width:16px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.wp-core-ui.wp-admin .wcc-root input[type='checkbox']+span,.wp-core-ui.wp-admin .wcc-root input[type='radio']+span{display:block;margin-left:24px}.wp-core-ui.wp-admin .wcc-root input[type='checkbox']{border-radius:2px}.wp-core-ui.wp-admin .wcc-root input[type='checkbox']:checked::before{content:url("https://wordpress.com//calypso/images/checkbox-icons/checkmark-primary.svg");width:12px;height:12px;margin:1px auto;display:inline-block;speak:none}.wp-core-ui.wp-admin .wcc-root input[type='checkbox']:disabled:checked::before{color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root input[type='radio']{border-radius:50%;margin-right:4px;line-height:10px}.wp-core-ui.wp-admin .wcc-root input[type='radio']:checked::before{float:left;display:inline-block;content:'\2022';margin:3px;width:8px;height:8px;text-indent:-9999px;background:#016087;vertical-align:middle;border-radius:50%;animation:grow 0.2s ease-in-out}.wp-core-ui.wp-admin .wcc-root input[type='radio']:disabled:checked::before{background:#f6f6f6}@keyframes grow{0%{transform:scale(0.3)}60%{transform:scale(1.15)}100%{transform:scale(1)}}@keyframes grow{0%{transform:scale(0.3)}60%{transform:scale(1.15)}100%{transform:scale(1)}}.wp-core-ui.wp-admin .wcc-root select{background:#fff url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjQzhEN0UxIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat right 10px center;border-color:#ccced0;border-style:solid;border-radius:4px;border-width:1px 1px 2px;color:#3d4145;cursor:pointer;display:inline-block;margin:0;outline:0;overflow:hidden;font-size:16px;font-weight:400;line-height:1.4em;text-overflow:ellipsis;text-decoration:none;vertical-align:top;white-space:nowrap;box-sizing:border-box;padding:7px 32px 9px 14px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.wp-core-ui.wp-admin .wcc-root select:hover{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjYThiZWNlIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==)}.wp-core-ui.wp-admin .wcc-root select:focus{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiA8dGl0bGU+YXJyb3ctZG93bjwvdGl0bGU+IDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiA8ZGVmcz48L2RlZnM+IDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHNrZXRjaDp0eXBlPSJNU1BhZ2UiPiA8ZyBpZD0iYXJyb3ctZG93biIgc2tldGNoOnR5cGU9Ik1TQXJ0Ym9hcmRHcm91cCIgZmlsbD0iIzJlNDQ1MyI+IDxwYXRoIGQ9Ik0xNS41LDYgTDE3LDcuNSBMMTAuMjUsMTQuMjUgTDMuNSw3LjUgTDUsNiBMMTAuMjUsMTEuMjUgTDE1LjUsNiBaIiBpZD0iRG93bi1BcnJvdyIgc2tldGNoOnR5cGU9Ik1TU2hhcGVHcm91cCI+PC9wYXRoPiA8L2c+IDwvZz48L3N2Zz4=);border-color:#016087;box-shadow:0 0 0 2px #bbc9d5;outline:0;-moz-outline:none;-moz-user-focus:ignore}.wp-core-ui.wp-admin .wcc-root select:disabled,.wp-core-ui.wp-admin .wcc-root select:hover:disabled{background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPiAgICAgICAgPHRpdGxlPmFycm93LWRvd248L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+PC9kZWZzPiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4gICAgICAgIDxnIGlkPSJhcnJvdy1kb3duIiBza2V0Y2g6dHlwZT0iTVNBcnRib2FyZEdyb3VwIiBmaWxsPSIjZTllZmYzIj4gICAgICAgICAgICA8cGF0aCBkPSJNMTUuNSw2IEwxNyw3LjUgTDEwLjI1LDE0LjI1IEwzLjUsNy41IEw1LDYgTDEwLjI1LDExLjI1IEwxNS41LDYgWiIgaWQ9IkRvd24tQXJyb3ciIHNrZXRjaDp0eXBlPSJNU1NoYXBlR3JvdXAiPjwvcGF0aD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==) no-repeat right 10px center}.wp-core-ui.wp-admin .wcc-root select.is-compact{min-width:0;padding:0 20px 2px 6px;margin:0 4px;background-position:right 5px center;background-size:12px 12px}label .wp-core-ui.wp-admin .wcc-root select,label+.wp-core-ui.wp-admin .wcc-root select{display:block;min-width:200px}label .wp-core-ui.wp-admin .wcc-root select.is-compact,label+.wp-core-ui.wp-admin .wcc-root select.is-compact{display:inline-block;min-width:0}.wp-core-ui.wp-admin .wcc-root select::-ms-expand{display:none}.wp-core-ui.wp-admin .wcc-root select::-ms-value{background:none;color:#3d4145}.wp-core-ui.wp-admin .wcc-root select:-moz-focusring{color:transparent;text-shadow:0 0 0 #3d4145}.wp-core-ui.wp-admin .wcc-root input[type='search']::-webkit-search-decoration{display:none}.wp-core-ui.wp-admin .wcc-root .wpcom-site__logo{fill:#ccced0;position:fixed;top:50%;left:50%;transform:translate(-50%, -50%)}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .wpcom-site__logo{width:100px;height:100px}}.wp-core-ui.wp-admin .wcc-root .wpcom-site__global-noscript{position:fixed;bottom:0;left:0;right:0;padding:6px;color:#fff;background:rgba(61,65,69, 0.8);text-align:center;z-index:300000}@-webkit-viewport{.wp-core-ui.wp-admin .wcc-root{width:device-width}}@-moz-viewport{.wp-core-ui.wp-admin .wcc-root{width:device-width}}@-ms-viewport{.wp-core-ui.wp-admin .wcc-root{width:device-width}}@viewport{.wp-core-ui.wp-admin .wcc-root{width:device-width}}.wp-core-ui.wp-admin .wcc-root html,.wp-core-ui.wp-admin .wcc-root body,.wp-core-ui.wp-admin .wcc-root .wpcom-site{height:100%}.wp-core-ui.wp-admin .wcc-root *{-webkit-tap-highlight-color:rgba(0,0,0,0)}.wp-core-ui.wp-admin .wcc-root body{background:#f6f6f6;color:#2b2d2f;font-size:15px;line-height:1.5;-ms-overflow-style:scrollbar}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root body{cursor:pointer}}.wp-core-ui.wp-admin .wcc-root ::selection{background:rgba(111,147,173, 0.7);color:#2b2d2f}.wp-core-ui.wp-admin .wcc-root body,.wp-core-ui.wp-admin .wcc-root button,.wp-core-ui.wp-admin .wcc-root input,.wp-core-ui.wp-admin .wcc-root select,.wp-core-ui.wp-admin .wcc-root textarea,.wp-core-ui.wp-admin .wcc-root .button,.wp-core-ui.wp-admin .wcc-root #footer,.wp-core-ui.wp-admin .wcc-root #footer a.readmore{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif}.wp-core-ui.wp-admin .wcc-root body.rtl,.wp-core-ui.wp-admin .wcc-root .rtl button,.wp-core-ui.wp-admin .wcc-root .rtl input,.wp-core-ui.wp-admin .wcc-root .rtl select,.wp-core-ui.wp-admin .wcc-root .rtl textarea,.wp-core-ui.wp-admin .wcc-root .rtl .button,.wp-core-ui.wp-admin .wcc-root .rtl #footer,.wp-core-ui.wp-admin .wcc-root .rtl #footer a.readmore{font-family:Tahoma,-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif}.wp-core-ui.wp-admin .wcc-root :lang(he) body.rtl,.wp-core-ui.wp-admin .wcc-root :lang(he) .rtl button,.wp-core-ui.wp-admin .wcc-root :lang(he) .rtl input,.wp-core-ui.wp-admin .wcc-root :lang(he) .rtl select,.wp-core-ui.wp-admin .wcc-root :lang(he) .rtl textarea,.wp-core-ui.wp-admin .wcc-root :lang(he) .rtl .button,.wp-core-ui.wp-admin .wcc-root :lang(he) .rtl #footer,.wp-core-ui.wp-admin .wcc-root :lang(he) .rtl #footer a.readmore{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif}.wp-core-ui.wp-admin .wcc-root .rtl .gridicon.gridicons-chevron-left,.wp-core-ui.wp-admin .wcc-root .rtl .gridicon.gridicons-chevron-right,.wp-core-ui.wp-admin .wcc-root .rtl .gridicon.gridicons-arrow-left,.wp-core-ui.wp-admin .wcc-root .rtl .gridicon.gridicons-arrow-right,.wp-core-ui.wp-admin .wcc-root .rtl .gridicon.gridicons-external,.wp-core-ui.wp-admin .wcc-root .rtl .gridicon.gridicons-cart{transform:scaleX(-1)}.wp-core-ui.wp-admin .wcc-root .notifications{display:inherit}.wp-core-ui.wp-admin .wcc-root noscript{text-align:center;margin-top:3em;display:block}.wp-core-ui.wp-admin .wcc-root h1,.wp-core-ui.wp-admin .wcc-root h2,.wp-core-ui.wp-admin .wcc-root h3,.wp-core-ui.wp-admin .wcc-root h4,.wp-core-ui.wp-admin .wcc-root h5,.wp-core-ui.wp-admin .wcc-root h6{clear:both}.wp-core-ui.wp-admin .wcc-root hr{background:#ccced0;border:0;height:1px;margin-bottom:1.5em}.wp-core-ui.wp-admin .wcc-root p{margin-bottom:1.5em}.wp-core-ui.wp-admin .wcc-root ul,.wp-core-ui.wp-admin .wcc-root ol{margin:0 0 1.5em 3em}.wp-core-ui.wp-admin .wcc-root ul{list-style:disc}.wp-core-ui.wp-admin .wcc-root ol{list-style:decimal}.wp-core-ui.wp-admin .wcc-root ul ul,.wp-core-ui.wp-admin .wcc-root ol ol,.wp-core-ui.wp-admin .wcc-root ul ol,.wp-core-ui.wp-admin .wcc-root ol ul{margin-bottom:0;margin-left:1.5em}.wp-core-ui.wp-admin .wcc-root dt{font-weight:600}.wp-core-ui.wp-admin .wcc-root dd{margin:0 1.5em 1.5em}.wp-core-ui.wp-admin .wcc-root b,.wp-core-ui.wp-admin .wcc-root strong{font-weight:600}.wp-core-ui.wp-admin .wcc-root dfn,.wp-core-ui.wp-admin .wcc-root cite,.wp-core-ui.wp-admin .wcc-root em,.wp-core-ui.wp-admin .wcc-root i{font-style:italic}.wp-core-ui.wp-admin .wcc-root blockquote{margin:10px 0 0;background:#f6f6f6;padding:10px 10px 1px;border-radius:2px}.wp-core-ui.wp-admin .wcc-root address{margin:0 0 1.5em}.wp-core-ui.wp-admin .wcc-root pre{background:#f6f6f6;font-family:"Courier 10 Pitch",Courier,monospace;font-size:15px;line-height:1.6;margin-bottom:1.6em;padding:1.6em;overflow:auto;max-width:100%}.wp-core-ui.wp-admin .wcc-root code,.wp-core-ui.wp-admin .wcc-root kbd,.wp-core-ui.wp-admin .wcc-root tt,.wp-core-ui.wp-admin .wcc-root var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono","Courier 10 Pitch",Courier,monospace}.wp-core-ui.wp-admin .wcc-root abbr,.wp-core-ui.wp-admin .wcc-root acronym{border-bottom:1px dotted #ccced0;cursor:help;text-decoration:none}.wp-core-ui.wp-admin .wcc-root mark,.wp-core-ui.wp-admin .wcc-root ins{background:#fbda70;text-decoration:none}.wp-core-ui.wp-admin .wcc-root small{font-size:75%}.wp-core-ui.wp-admin .wcc-root big{font-size:125%}.wp-core-ui.wp-admin .wcc-root figure{margin:0}.wp-core-ui.wp-admin .wcc-root table{margin:0 0 1.5em;width:100%}.wp-core-ui.wp-admin .wcc-root th{font-weight:600}.wp-core-ui.wp-admin .wcc-root .hide,.wp-core-ui.wp-admin .wcc-root .hidden{display:none}.wp-core-ui.wp-admin .wcc-root a,.wp-core-ui.wp-admin .wcc-root a:visited{color:#016087}.wp-core-ui.wp-admin .wcc-root a:hover,.wp-core-ui.wp-admin .wcc-root a:focus,.wp-core-ui.wp-admin .wcc-root a:active{color:#23354b}.wp-core-ui.wp-admin .wcc-root .link--caution,.wp-core-ui.wp-admin .wcc-root .link--caution:hover,.wp-core-ui.wp-admin .wcc-root .link--caution:focus,.wp-core-ui.wp-admin .wcc-root .link--caution:active,.wp-core-ui.wp-admin .wcc-root .link--caution:visited,.wp-core-ui.wp-admin .wcc-root .link--caution:visited:hover,.wp-core-ui.wp-admin .wcc-root .link--caution:visited:focus,.wp-core-ui.wp-admin .wcc-root .link--caution:visited:active,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution:hover,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution:focus,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution:active,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution:visited,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution:visited:hover,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution:visited:focus,.wp-core-ui.wp-admin .wcc-root .is-link.link--caution:visited:active{color:#eb0001}.wp-core-ui.wp-admin .wcc-root html.iframed{overflow:hidden}.wp-core-ui.wp-admin .wcc-root img.emoji,.wp-core-ui.wp-admin .wcc-root img.wp-smiley{height:1em;max-height:1em;display:inline;margin:0;padding:0 0.2em;vertical-align:-0.1em;width:1em}.wp-core-ui.wp-admin .wcc-root img{max-width:100%;height:auto}.wp-core-ui.wp-admin .wcc-root embed,.wp-core-ui.wp-admin .wcc-root iframe,.wp-core-ui.wp-admin .wcc-root object{max-width:100%}.wp-core-ui.wp-admin .wcc-root .wpcom-soundcloud-player,.wp-core-ui.wp-admin .wcc-root .embed-soundcloud iframe{min-height:150px}.wp-core-ui.wp-admin .wcc-root html.no-scroll{overflow:hidden}.wp-core-ui.wp-admin .wcc-root button{background:transparent;border:none;outline:0;padding:0;font-size:14px;-webkit-appearance:none;-moz-appearance:none;appearance:none;vertical-align:baseline}.wp-core-ui.wp-admin .wcc-root .button{border-style:solid;border-width:1px 1px 2px;cursor:pointer;display:inline-block;margin:0;outline:0;overflow:hidden;font-weight:500;text-overflow:ellipsis;text-decoration:none;vertical-align:top;box-sizing:border-box;font-size:14px;line-height:21px;border-radius:4px;padding:7px 14px 9px;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;color:#3d4145;border-color:#ccced0}.wp-core-ui.wp-admin .wcc-root .button.hidden{display:none}.wp-core-ui.wp-admin .wcc-root .button .gridicon{position:relative;top:4px;margin-top:-2px;width:18px;height:18px}.wp-core-ui.wp-admin .wcc-root .button .gridicon:not(:last-child){margin-right:4px}.wp-core-ui.wp-admin .wcc-root .button:active,.wp-core-ui.wp-admin .wcc-root .button.is-active{border-width:2px 1px 1px}.wp-core-ui.wp-admin .wcc-root .button:hover{border-color:#b0b5b8;color:#3d4145}.wp-core-ui.wp-admin .wcc-root .button:visited{color:#3d4145}.wp-core-ui.wp-admin .wcc-root .button[disabled],.wp-core-ui.wp-admin .wcc-root .button:disabled,.wp-core-ui.wp-admin .wcc-root .button.disabled{color:#e1e2e2;background-color:#fff;border-color:#e1e2e2;cursor:default}.wp-core-ui.wp-admin .wcc-root .button[disabled]:active,.wp-core-ui.wp-admin .wcc-root .button[disabled].is-active,.wp-core-ui.wp-admin .wcc-root .button:disabled:active,.wp-core-ui.wp-admin .wcc-root .button:disabled.is-active,.wp-core-ui.wp-admin .wcc-root .button.disabled:active,.wp-core-ui.wp-admin .wcc-root .button.disabled.is-active{border-width:1px 1px 2px}.accessible-focus .wp-core-ui.wp-admin .wcc-root .button:focus{border-color:#016087;box-shadow:0 0 0 2px #6f93ad}.wp-core-ui.wp-admin .wcc-root .button.is-compact{padding:7px;color:#636d75;font-size:12px;line-height:1}.wp-core-ui.wp-admin .wcc-root .button.is-compact:disabled{color:#e1e2e2}.wp-core-ui.wp-admin .wcc-root .button.is-compact .gridicon{top:5px;margin-top:-8px}.wp-core-ui.wp-admin .wcc-root .button.is-compact .gridicons-plus-small{margin-left:-4px}.wp-core-ui.wp-admin .wcc-root .button.is-compact .gridicons-plus-small:last-of-type{margin-left:0}.wp-core-ui.wp-admin .wcc-root .button.is-compact .gridicons-plus-small+.gridicon{margin-left:-4px}.wp-core-ui.wp-admin .wcc-root .button.is-busy{animation:button__busy-animation 3000ms infinite linear;background-size:120px 100%;background-image:linear-gradient(-45deg, #f6f6f6 28%, #fff 28%, #fff 72%, #f6f6f6 72%)}.wp-core-ui.wp-admin .wcc-root .button.is-primary{background-color:#d52c82;border-color:#992053;color:#fff}.wp-core-ui.wp-admin .wcc-root .button.is-primary:hover,.wp-core-ui.wp-admin .wcc-root .button.is-primary:focus{background-color:#ff3997;border-color:#992053;color:#fff}.accessible-focus .wp-core-ui.wp-admin .wcc-root .button.is-primary:focus{box-shadow:0 0 0 2px #ff76b8}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-compact{color:#fff}.wp-core-ui.wp-admin .wcc-root .button.is-primary[disabled],.wp-core-ui.wp-admin .wcc-root .button.is-primary:disabled,.wp-core-ui.wp-admin .wcc-root .button.is-primary.disabled{color:#e1e2e2;background-color:#fff;border-color:#e1e2e2}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-busy{background-image:linear-gradient(-45deg, #d52c82 28%, #b7266a 28%, #b7266a 72%, #d52c82 72%)}.wp-core-ui.wp-admin .wcc-root .button.is-scary{color:#eb0001}.wp-core-ui.wp-admin .wcc-root .button.is-scary:hover,.wp-core-ui.wp-admin .wcc-root .button.is-scary:focus{border-color:#eb0001}.accessible-focus .wp-core-ui.wp-admin .wcc-root .button.is-scary:focus{box-shadow:0 0 0 2px #ff8248}.wp-core-ui.wp-admin .wcc-root .button.is-scary[disabled],.wp-core-ui.wp-admin .wcc-root .button.is-scary:disabled{color:#e1e2e2;background-color:#fff;border-color:#e1e2e2}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-scary{background-color:#eb0001;border-color:#ac120b;color:#fff}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-scary:hover,.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-scary:focus{background-color:#ff4b1c}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-scary[disabled],.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-scary:disabled{color:#e1e2e2;background-color:#fff;border-color:#e1e2e2}.wp-core-ui.wp-admin .wcc-root .button.is-primary.is-scary.is-busy{background-image:linear-gradient(-45deg, #eb0001 28%, #cb0c07 28%, #cb0c07 72%, #eb0001 72%)}.wp-core-ui.wp-admin .wcc-root .button.is-borderless{border:none;background:none;color:#636d75;padding-left:0;padding-right:0}.wp-core-ui.wp-admin .wcc-root .button.is-borderless:hover,.wp-core-ui.wp-admin .wcc-root .button.is-borderless:focus{background:none;color:#3d4145}.wp-core-ui.wp-admin .wcc-root .button.is-borderless .gridicon{width:24px;height:24px;top:6px}.wp-core-ui.wp-admin .wcc-root .button.is-borderless[disabled],.wp-core-ui.wp-admin .wcc-root .button.is-borderless:disabled{color:#e1e2e2;cursor:default}.wp-core-ui.wp-admin .wcc-root .button.is-borderless[disabled]:active,.wp-core-ui.wp-admin .wcc-root .button.is-borderless[disabled].is-active,.wp-core-ui.wp-admin .wcc-root .button.is-borderless:disabled:active,.wp-core-ui.wp-admin .wcc-root .button.is-borderless:disabled.is-active{border-width:0}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-scary{color:#eb0001}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-scary:hover,.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-scary:focus{color:#cb0c07}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-scary[disabled]{color:#ffe2cd}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-primary{color:#d52c82}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-primary:focus,.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-primary:hover,.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-primary:active,.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-primary.is-active{color:#992053}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-primary:focus{box-shadow:0 0 0 2px #ff76b8}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-primary[disabled]{color:#e1e2e2}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-compact .gridicon{width:18px;height:18px;top:5px}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-compact .gridicons-arrow-left{top:4px;margin-right:4px}.wp-core-ui.wp-admin .wcc-root .button.is-borderless.is-compact .gridicons-arrow-right{top:4px;margin-left:4px}.wp-core-ui.wp-admin .wcc-root .layout__content input[type='reset'],.wp-core-ui.wp-admin .wcc-root .layout__content input[type='reset']:hover,.wp-core-ui.wp-admin .wcc-root .layout__content input[type='reset']:active,.wp-core-ui.wp-admin .wcc-root .layout__content input[type='reset']:focus,.wp-core-ui.wp-admin .wcc-root .dialog__content input[type='reset'],.wp-core-ui.wp-admin .wcc-root .dialog__content input[type='reset']:hover,.wp-core-ui.wp-admin .wcc-root .dialog__content input[type='reset']:active,.wp-core-ui.wp-admin .wcc-root .dialog__content input[type='reset']:focus{background:0 0;border:0;padding:0 2px 1px;width:auto;box-shadow:none}.wp-core-ui.wp-admin .wcc-root .layout__content p .button,.wp-core-ui.wp-admin .wcc-root .dialog__content p .button{vertical-align:baseline}.wp-core-ui.wp-admin .wcc-root .layout__content button::-moz-focus-inner,.wp-core-ui.wp-admin .wcc-root .layout__content input[type='reset']::-moz-focus-inner,.wp-core-ui.wp-admin .wcc-root .layout__content input[type='button']::-moz-focus-inner,.wp-core-ui.wp-admin .wcc-root .layout__content input[type='submit']::-moz-focus-inner,.wp-core-ui.wp-admin .wcc-root .dialog__content button::-moz-focus-inner,.wp-core-ui.wp-admin .wcc-root .dialog__content input[type='reset']::-moz-focus-inner,.wp-core-ui.wp-admin .wcc-root .dialog__content input[type='button']::-moz-focus-inner,.wp-core-ui.wp-admin .wcc-root .dialog__content input[type='submit']::-moz-focus-inner{border:0;padding:0}.wp-core-ui.wp-admin .wcc-root .button.is-link{background:transparent;border:none;border-radius:0;padding:0;color:#016087;font-weight:400;font-size:inherit;line-height:1.65}.wp-core-ui.wp-admin .wcc-root .button.is-link:hover,.wp-core-ui.wp-admin .wcc-root .button.is-link:focus,.wp-core-ui.wp-admin .wcc-root .button.is-link:active,.wp-core-ui.wp-admin .wcc-root .button.is-link.is-active{color:#23354b;box-shadow:none}@keyframes button__busy-animation{0%{background-position:240px 0}}.wp-core-ui.wp-admin .wcc-root .button-group .button{border-left-width:0;border-radius:0}.wp-core-ui.wp-admin .wcc-root .button-group .button:focus{position:relative;z-index:1}.wp-core-ui.wp-admin .wcc-root .button-group .button:first-child{border-left-width:1px;border-top-left-radius:4px;border-bottom-left-radius:4px}.wp-core-ui.wp-admin .wcc-root .button-group .button:first-child:active{border-right-width:0}.wp-core-ui.wp-admin .wcc-root .button-group .button:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.wp-core-ui.wp-admin .wcc-root .button-group .button:last-child:active{border-left-width:0}.section-header .wp-core-ui.wp-admin .wcc-root .button-group .button{margin-right:0}.wp-core-ui.wp-admin .wcc-root .button-group.is-primary.is-busy{background-size:120px 100%;background-image:linear-gradient(-45deg, #d52c82 28%, #b7266a 28%, #b7266a 72%, #d52c82 72%)}.wp-core-ui.wp-admin .wcc-root .button-group.is-busy{animation:button__busy-animation 3000ms infinite linear;background-size:120px 100%;background-image:linear-gradient(-45deg, #f6f6f6 28%, #fff 28%, #fff 72%, #f6f6f6 72%);display:inline-block;border-radius:4px}.wp-core-ui.wp-admin .wcc-root .button-group.is-busy .button{background-color:transparent}@keyframes button__busy-animation{0%{background-position:240px 0}}.wp-core-ui.wp-admin .wcc-root .card{display:block;position:relative;margin:0 auto 10px;padding:16px;box-sizing:border-box;background:#fff;box-shadow:0 0 0 1px #e1e2e2}.wp-core-ui.wp-admin .wcc-root .card::after{content:'.';display:block;height:0;width:0;clear:both;visibility:hidden;overflow:hidden}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .card{margin-bottom:16px;padding:24px}}.wp-core-ui.wp-admin .wcc-root .card.is-compact{margin-bottom:1px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .card.is-compact{margin-bottom:1px;padding:16px 24px}}.wp-core-ui.wp-admin .wcc-root .card.is-card-link{padding-right:48px}.wp-core-ui.wp-admin .wcc-root .card.is-card-link:not(a){color:#016087;font-size:100%;line-height:1.5;text-align:left;width:100%}.wp-core-ui.wp-admin .wcc-root .card.is-card-link:not(a):active,.wp-core-ui.wp-admin .wcc-root .card.is-card-link:not(a):focus,.wp-core-ui.wp-admin .wcc-root .card.is-card-link:not(a):hover{color:#23354b}.wp-core-ui.wp-admin .wcc-root .card.is-clickable{cursor:pointer}.wp-core-ui.wp-admin .wcc-root .card.is-highlight{padding-left:21px}.wp-core-ui.wp-admin .wcc-root .card.is-error{border-left:3px solid #eb0001}.wp-core-ui.wp-admin .wcc-root .card.is-info{border-left:3px solid #016087}.wp-core-ui.wp-admin .wcc-root .card.is-success{border-left:3px solid #008a00}.wp-core-ui.wp-admin .wcc-root .card.is-warning{border-left:3px solid #f6c200}.wp-core-ui.wp-admin .wcc-root .card__link-indicator{color:#636d75;display:block;height:100%;position:absolute;top:0;right:16px}html[dir='rtl'] .wp-core-ui.wp-admin .wcc-root .card__link-indicator.gridicons-chevron-right{transform:scaleX(-1)}.wp-core-ui.wp-admin .wcc-root a.card:hover .card__link-indicator,.wp-core-ui.wp-admin .wcc-root .is-card-link.card:hover .card__link-indicator{color:#2b2d2f}.wp-core-ui.wp-admin .wcc-root a.card:focus,.wp-core-ui.wp-admin .wcc-root .is-card-link.card:focus{outline:0}.wp-core-ui.wp-admin .wcc-root a.card:focus .card__link-indicator,.wp-core-ui.wp-admin .wcc-root .is-card-link.card:focus .card__link-indicator{color:#23354b}.wp-core-ui.wp-admin .wcc-root .dialog__backdrop{align-items:center;bottom:0;left:0;display:flex;justify-content:center;position:fixed;right:0;top:46px;transition:background-color 0.2s ease-in;z-index:100200}.wp-core-ui.wp-admin .wcc-root .dialog__backdrop.dialog-enter,.wp-core-ui.wp-admin .wcc-root .dialog__backdrop.dialog-leave.dialog-leave-active{background-color:rgba(246,246,246, 0)}.wp-core-ui.wp-admin .wcc-root .dialog__backdrop,.wp-core-ui.wp-admin .wcc-root .dialog__backdrop.dialog-enter.dialog-enter-active,.wp-core-ui.wp-admin .wcc-root .dialog__backdrop.dialog-leave{background-color:rgba(246,246,246, 0.8)}.wp-core-ui.wp-admin .wcc-root .dialog__backdrop.is-full-screen{top:0}.wp-core-ui.wp-admin .wcc-root .dialog__backdrop.is-hidden{background-color:transparent}.wp-core-ui.wp-admin .wcc-root .dialog.card{position:relative;display:flex;flex-direction:column;max-width:90%;max-height:90%;margin:auto 0;padding:0;opacity:1;transition:opacity 0.2s ease-in}.dialog-enter .wp-core-ui.wp-admin .wcc-root .dialog.card,.dialog-leave.dialog-leave-active .wp-core-ui.wp-admin .wcc-root .dialog.card{opacity:0}.wp-core-ui.wp-admin .wcc-root .dialog.card,.dialog-enter.dialog-enter-active .wp-core-ui.wp-admin .wcc-root .dialog.card,.dialog-leave .wp-core-ui.wp-admin .wcc-root .dialog.card{opacity:1}.wp-core-ui.wp-admin .wcc-root .dialog__content{padding:16px;overflow-y:auto}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .dialog__content{padding:24px}}.wp-core-ui.wp-admin .wcc-root .dialog__content:last-child{bottom:0}.wp-core-ui.wp-admin .wcc-root .dialog__content h1{color:#3d4145;font-size:1.375em;font-weight:600;line-height:2em;margin-bottom:0.5em}.wp-core-ui.wp-admin .wcc-root .dialog__content p:last-child{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons{position:relative;border-top:1px solid #f6f6f6;padding:16px;margin:0;text-align:right;flex-shrink:0;background-color:#fff}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons{padding-left:24px;padding-right:24px}}@media (max-width: 480px){.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons{display:flex;flex-direction:column-reverse}}.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons::before{content:'';display:block;position:absolute;bottom:100%;left:16px;right:16px;height:24px;background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);margin-bottom:1px}.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons .button{margin-left:10px;min-width:80px;text-align:center}.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons .button .is-left-aligned{margin-left:0;margin-right:10px}@media (max-width: 480px){.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons .button{margin:2px 0}}.wp-core-ui.wp-admin .wcc-root .dialog__action-buttons .is-left-aligned{float:left}.wp-core-ui.wp-admin .wcc-root .ReactModal__Body--open{overflow:hidden}.wp-core-ui.wp-admin .wcc-root .ReactModal__Html--open{overflow:visible}.wp-core-ui.wp-admin .wcc-root .gridicon.ellipsis-menu__toggle-icon{transition:transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275)}.wp-core-ui.wp-admin .wcc-root .ellipsis-menu.is-menu-visible .gridicon.ellipsis-menu__toggle-icon{transform:rotate(90deg)}.wp-core-ui.wp-admin .wcc-root .external-link .gridicons-external{color:currentColor;margin-left:3px;margin-right:0;top:2px;position:relative}.wp-core-ui.wp-admin .wcc-root .external-link:hover{cursor:pointer}.wp-core-ui.wp-admin .wcc-root .icon-first .gridicons-external{margin-left:0;margin-right:3px}.wp-core-ui.wp-admin .wcc-root .foldable-card.card{position:relative;transition:margin 0.15s linear;padding:0}.wp-core-ui.wp-admin .wcc-root .foldable-card.card::after{content:'.';display:block;height:0;width:0;clear:both;visibility:hidden;overflow:hidden}.wp-core-ui.wp-admin .wcc-root .foldable-card.card.is-expanded{margin:8px 0}.wp-core-ui.wp-admin .wcc-root .foldable-card__header{min-height:64px;width:100%;padding:16px;box-sizing:border-box;display:flex;align-items:center;justify-content:space-between;position:relative}.wp-core-ui.wp-admin .wcc-root .foldable-card__header.is-clickable{cursor:pointer}.wp-core-ui.wp-admin .wcc-root .foldable-card__header.has-border .foldable-card__summary,.wp-core-ui.wp-admin .wcc-root .foldable-card__header.has-border .foldable-card__summary-expanded{margin-right:48px}.wp-core-ui.wp-admin .wcc-root .foldable-card__header.has-border .foldable-card__expand{border-left:1px #f6f6f6 solid}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-compact .foldable-card__header{padding:8px 16px;min-height:40px}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-expanded .foldable-card__header{margin-bottom:0;height:inherit;min-height:64px}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-expanded.is-compact .foldable-card__header{min-height:40px}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-disabled .foldable-card__header{opacity:0.2}.wp-core-ui.wp-admin .wcc-root .foldable-card__action{position:absolute;top:0;right:0;height:100%}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-expanded .foldable-card__action{height:100%}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-disabled .foldable-card__action{cursor:default}.wp-core-ui.wp-admin .wcc-root .accessible-focus .foldable-card__action:focus{outline:thin dotted}.wp-core-ui.wp-admin .wcc-root button.foldable-card__action{cursor:pointer}.wp-core-ui.wp-admin .wcc-root .foldable-card__main{max-width:calc( 100% - 36px);display:flex;align-items:center;flex:2 1;margin-right:5px}@media (max-width: 480px){.wp-core-ui.wp-admin .wcc-root .foldable-card__main{flex:1 1}}.wp-core-ui.wp-admin .wcc-root .foldable-card__secondary{display:flex;align-items:center;flex:1 1;justify-content:flex-end}@media (max-width: 480px){.wp-core-ui.wp-admin .wcc-root .foldable-card__secondary{flex:0 1}}.wp-core-ui.wp-admin .wcc-root .foldable-card__expand{width:48px}.wp-core-ui.wp-admin .wcc-root .foldable-card__expand .gridicon{fill:#969ca1;display:flex;align-items:center;width:100%;vertical-align:middle;transition:transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275),color 0.2s ease-in}.wp-core-ui.wp-admin .wcc-root .foldable-card__expand .gridicon:hover{fill:#969ca1}.wp-core-ui.wp-admin .wcc-root .foldable-card__expand:hover .gridicon{fill:#636d75}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-expanded .foldable-card__expand .gridicon{transform:rotate(180deg)}.wp-core-ui.wp-admin .wcc-root .foldable-card__content{display:none}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-expanded .foldable-card__content{display:block;padding:16px;border-top:1px solid #f6f6f6}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-compact .foldable-card.is-expanded .foldable-card__content{padding:8px}.wp-core-ui.wp-admin .wcc-root .foldable-card__summary,.wp-core-ui.wp-admin .wcc-root .foldable-card__summary-expanded{margin-right:40px;color:#636d75;font-size:12px;transition:opacity 0.2s linear;display:inline-block}@media (max-width: 480px){.wp-core-ui.wp-admin .wcc-root .foldable-card__summary,.wp-core-ui.wp-admin .wcc-root .foldable-card__summary-expanded{display:none}}.wp-core-ui.wp-admin .wcc-root .foldable-card.has-expanded-summary .foldable-card__summary,.wp-core-ui.wp-admin .wcc-root .foldable-card.has-expanded-summary .foldable-card__summary-expanded{transition:none;flex:2;text-align:right}.wp-core-ui.wp-admin .wcc-root .foldable-card__summary{opacity:1;display:inline-block}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-expanded .foldable-card__summary{display:none}.wp-core-ui.wp-admin .wcc-root .has-expanded-summary .foldable-card.is-expanded .foldable-card__summary{display:none}.wp-core-ui.wp-admin .wcc-root .foldable-card__summary-expanded{display:none}.wp-core-ui.wp-admin .wcc-root .foldable-card.is-expanded .foldable-card__summary-expanded{display:inline-block}.wp-core-ui.wp-admin .wcc-root .form-button{float:right;margin-left:10px}.wp-core-ui.wp-admin .wcc-root .form-currency-input{-webkit-appearance:none}.wp-core-ui.wp-admin .wcc-root .form-currency-input__affix{display:flex;align-items:center}.wp-core-ui.wp-admin .wcc-root .form-currency-input__select-icon{color:#969ca1;margin-left:6px;-ms-grid-row-align:center;align-self:center}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix:hover .form-currency-input__select-icon,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__suffix:hover .form-currency-input__select-icon{color:#636d75}.wp-core-ui.wp-admin .wcc-root .form-currency-input__select{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;padding:0;border:0;background-image:none;opacity:0}.wp-core-ui.wp-admin .wcc-root .form-fieldset{clear:both;margin-bottom:20px}.wp-core-ui.wp-admin .wcc-root .form-input-validation{color:#008a00;position:relative;padding:6px 24px 11px 34px;border-radius:1px;box-sizing:border-box;font-size:14px;animation:appear 0.3s ease-in-out}.wp-core-ui.wp-admin .wcc-root .form-input-validation.is-error{color:#eb0001}.wp-core-ui.wp-admin .wcc-root .form-input-validation.is-warning{color:#f6c200}.wp-core-ui.wp-admin .wcc-root .form-input-validation.is-hidden{animation:none;visibility:hidden}.wp-core-ui.wp-admin .wcc-root .form-input-validation .gridicon{float:left;margin-left:-34px}.wp-core-ui.wp-admin .wcc-root .form-label{display:block;font-size:14px;font-weight:600;margin-bottom:5px}.wp-core-ui.wp-admin .wcc-root .form-label .form-label__required{color:#eb0001;font-weight:normal;margin-left:6px}.wp-core-ui.wp-admin .wcc-root .form-label .form-label__optional{color:#636d75;font-weight:normal;margin-left:6px}.wp-core-ui.wp-admin .wcc-root .form-label input[type='checkbox']+span,.wp-core-ui.wp-admin .wcc-root .form-label input[type='radio']+span{font-weight:normal}.wp-core-ui.wp-admin .wcc-root .form-legend{font-size:14px;font-weight:600;margin-bottom:5px}.wp-core-ui.wp-admin .wcc-root li .form-legend{margin-top:4px}.wp-core-ui.wp-admin .wcc-root .form-section-heading{font-size:24px;font-weight:300;margin:30px 0 20px}.wp-core-ui.wp-admin .wcc-root .form-section-heading:first-child{margin-top:0}.wp-core-ui.wp-admin .wcc-root .form-select{margin-bottom:1em}.wp-core-ui.wp-admin .wcc-root .form-select.is-error{border-color:#eb0001}.wp-core-ui.wp-admin .wcc-root .form-select.is-error:hover{border-color:#ac120b}.wp-core-ui.wp-admin .wcc-root .form-select:disabled{color:#ccced0}.wp-core-ui.wp-admin .wcc-root .form-select:focus.is-error{box-shadow:0 0 0 2px #ffcfac}.wp-core-ui.wp-admin .wcc-root .form-select:focus.is-error:hover{box-shadow:0 0 0 2px #ffab78}.wp-core-ui.wp-admin .wcc-root .form-select:only-of-type,.wp-core-ui.wp-admin .wcc-root .form-select:last-of-type{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .form-setting-explanation{color:#636d75;display:block;font-size:13px;font-style:italic;font-weight:400;margin:5px 0 0}.wp-core-ui.wp-admin .wcc-root .form-setting-explanation.is-indented{margin-left:24px}.wp-core-ui.wp-admin .wcc-root .form-setting-explanation button.is-borderless{color:#016087;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;padding:0}.wp-core-ui.wp-admin .wcc-root .form-setting-explanation button.is-borderless:hover{color:#23354b}.wp-core-ui.wp-admin .wcc-root input[type='email'].form-text-input,.wp-core-ui.wp-admin .wcc-root input[type='password'].form-text-input,.wp-core-ui.wp-admin .wcc-root input[type='url'].form-text-input,.wp-core-ui.wp-admin .wcc-root input[type='text'].form-text-input{-webkit-appearance:none}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes{display:inline-flex;flex-direction:column;width:100%}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes.no-wrap{flex-direction:row}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes{flex-direction:row}}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='email'],.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='password'],.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='url'],.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='text'],.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='number']{flex-grow:1}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='email']:focus,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='password']:focus,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='url']:focus,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='text']:focus,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='number']:focus{transform:scale(1)}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='email']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='password']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='url']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='text']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='number']:disabled{border-right-width:0}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='email']:disabled+.form-text-input-with-affixes__suffix,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='password']:disabled+.form-text-input-with-affixes__suffix,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='url']:disabled+.form-text-input-with-affixes__suffix,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='text']:disabled+.form-text-input-with-affixes__suffix,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes input[type='number']:disabled+.form-text-input-with-affixes__suffix{border-left:1px solid #ccced0}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__suffix{position:relative;background:transparent;border:1px solid #ccced0;color:#636d75;padding:8px 14px;white-space:nowrap;flex:1 0 auto;font-size:16px;line-height:1.5}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix{border-top-left-radius:2px;border-top-right-radius:2px}@media (max-width: 480px){:not(.no-wrap)>.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix{border-bottom:none}}.no-wrap>.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix{border-bottom-left-radius:2px;border-right:none;border-top-right-radius:0}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix{border-bottom-left-radius:2px;border-right:none;border-top-right-radius:0}}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix+input[type='email']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix+input[type='password']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix+input[type='url']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix+input[type='text']:disabled,.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__prefix+input[type='number']:disabled{border-left-color:#ccced0;border-right-width:1px}.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__suffix{border-bottom-left-radius:2px;border-bottom-right-radius:2px}@media (max-width: 480px){:not(.no-wrap)>.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__suffix{border-top:none}}.no-wrap>.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__suffix{border-bottom-left-radius:0;border-left:none;border-top-right-radius:2px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .form-text-input-with-affixes__suffix{border-bottom-left-radius:0;border-left:none;border-top-right-radius:2px}}.wp-core-ui.wp-admin .wcc-root .form-toggle[type='checkbox']{display:none}.wp-core-ui.wp-admin .wcc-root .form-toggle__switch{position:relative;display:inline-block;border-radius:12px;box-sizing:border-box;padding:2px;width:40px;height:24px;vertical-align:middle;align-self:flex-start;outline:0;cursor:pointer;transition:all 0.4s ease, box-shadow 0s}.wp-core-ui.wp-admin .wcc-root .form-toggle__switch::before,.wp-core-ui.wp-admin .wcc-root .form-toggle__switch::after{position:relative;display:block;content:'';width:20px;height:20px}.wp-core-ui.wp-admin .wcc-root .form-toggle__switch::after{left:0;border-radius:50%;background:#fff;transition:all 0.2s ease}.wp-core-ui.wp-admin .wcc-root .form-toggle__switch::before{display:none}.accessible-focus .wp-core-ui.wp-admin .wcc-root .form-toggle__switch:focus{box-shadow:0 0 0 2px #016087}.wp-core-ui.wp-admin .wcc-root .form-toggle__label{cursor:pointer}.is-disabled .wp-core-ui.wp-admin .wcc-root .form-toggle__label{cursor:default}.wp-core-ui.wp-admin .wcc-root .form-toggle__label .form-toggle__label-content{flex:0 1 100%;margin-left:12px}.accessible-focus .wp-core-ui.wp-admin .wcc-root .form-toggle:focus+.form-toggle__label .form-toggle__switch{box-shadow:0 0 0 2px #016087}.accessible-focus .wp-core-ui.wp-admin .wcc-root .form-toggle:focus:checked+.form-toggle__label .form-toggle__switch{box-shadow:0 0 0 2px #6f93ad}.wp-core-ui.wp-admin .wcc-root .form-toggle+.form-toggle__label .form-toggle__switch{background:#b0b5b8}.wp-core-ui.wp-admin .wcc-root .form-toggle:not(:disabled)+.form-toggle__label:hover .form-toggle__switch{background:#ccced0}.wp-core-ui.wp-admin .wcc-root .form-toggle:checked+.form-toggle__label .form-toggle__switch{background:#016087}.wp-core-ui.wp-admin .wcc-root .form-toggle:checked+.form-toggle__label .form-toggle__switch::after{left:16px}.wp-core-ui.wp-admin .wcc-root .form-toggle:checked:not(:disabled)+.form-toggle__label:hover .form-toggle__switch{background:#6f93ad}.wp-core-ui.wp-admin .wcc-root .form-toggle:disabled+label.form-toggle__label span.form-toggle__switch{opacity:0.25;cursor:default}.wp-core-ui.wp-admin .wcc-root .form-toggle.is-toggling+.form-toggle__label .form-toggle__switch{background:#016087}.wp-core-ui.wp-admin .wcc-root .form-toggle.is-toggling:checked+.form-toggle__label .form-toggle__switch{background:#ccced0}.wp-core-ui.wp-admin .wcc-root .form-toggle.is-compact+.form-toggle__label .form-toggle__switch{border-radius:8px;width:24px;height:16px}.wp-core-ui.wp-admin .wcc-root .form-toggle.is-compact+.form-toggle__label .form-toggle__switch::before,.wp-core-ui.wp-admin .wcc-root .form-toggle.is-compact+.form-toggle__label .form-toggle__switch::after{width:12px;height:12px}.wp-core-ui.wp-admin .wcc-root .form-toggle.is-compact:checked+.form-toggle__label .form-toggle__switch::after{left:8px}.wp-core-ui.wp-admin .wcc-root .global-notices{text-align:right;pointer-events:none;z-index:179;position:fixed;top:auto;right:0;bottom:0;left:0}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices{top:63px;right:16px;bottom:auto;left:auto;max-width:calc( 100% - 32px)}}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .global-notices{top:71px;right:24px;max-width:calc( 100% - 48px)}}@media (min-width: 1041px){.wp-core-ui.wp-admin .wcc-root .global-notices{right:32px;max-width:calc( 100% - 64px)}}.wp-core-ui.wp-admin .wcc-root .global-notices .notice{flex-wrap:nowrap;margin-bottom:0;text-align:left;pointer-events:auto;border-radius:0;box-shadow:0 2px 5px rgba(0,0,0,0.2),0 0 56px rgba(0,0,0,0.15)}.wp-core-ui.wp-admin .wcc-root .global-notices .notice .notice__icon-wrapper{border-radius:0}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice{display:flex;overflow:hidden;margin-bottom:24px;border-radius:3px}.wp-core-ui.wp-admin .wcc-root .global-notices .notice .notice__icon-wrapper{border-radius:3px 0 0 3px}}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice a.notice__action{font-size:14px;padding:13px 16px}}.wp-core-ui.wp-admin .wcc-root .global-notices .notice__dismiss{flex-shrink:0}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice__dismiss{padding:13px 16px 0}}.wp-core-ui.wp-admin .wcc-root .image.is-error{display:none}.wp-core-ui.wp-admin .wcc-root .info-popover .gridicon{cursor:pointer;color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root .info-popover .gridicon:hover{color:#3d4145}.wp-core-ui.wp-admin .wcc-root .info-popover.is_active .gridicon{color:#3d4145}.wp-core-ui.wp-admin .wcc-root .popover.info-popover__tooltip .popover__inner{color:#636d75;font-size:13px;max-width:220px;padding:16px;text-align:left}@keyframes notice-loading-pulse{0%{opacity:0}50%{opacity:0.5}100%{opacity:0}}.wp-core-ui.wp-admin .wcc-root .notice{display:flex;position:relative;width:100%;margin-bottom:24px;box-sizing:border-box;animation:appear 0.3s ease-in-out;background:#3d4145;color:#fff;border-radius:3px;line-height:1.5}.wp-core-ui.wp-admin .wcc-root .notice.is-success .notice__icon-wrapper{background:#008a00}.wp-core-ui.wp-admin .wcc-root .notice.is-warning .notice__icon-wrapper{background:#f6c200}.wp-core-ui.wp-admin .wcc-root .notice.is-error .notice__icon-wrapper{background:#eb0001}.wp-core-ui.wp-admin .wcc-root .notice.is-info .notice__icon-wrapper{background:#d52c82}.wp-core-ui.wp-admin .wcc-root .notice.is-loading .notice__icon-wrapper::after{content:'';background-color:#fff;animation:notice-loading-pulse 0.8s ease-in-out infinite;position:absolute;top:0;bottom:0;left:0;right:0}.wp-core-ui.wp-admin .wcc-root .notice .notice__dismiss{overflow:hidden}.wp-core-ui.wp-admin .wcc-root .notice.is-success .notice__dismiss,.wp-core-ui.wp-admin .wcc-root .notice.is-error .notice__dismiss,.wp-core-ui.wp-admin .wcc-root .notice.is-warning .notice__dismiss,.wp-core-ui.wp-admin .wcc-root .notice.is-info .notice__dismiss{overflow:hidden}.wp-core-ui.wp-admin .wcc-root .notice__icon-wrapper{position:relative;background:#636d75;color:#fff;display:flex;align-items:baseline;width:47px;justify-content:center;border-radius:3px 0 0 3px;flex-shrink:0;align-self:stretch}.wp-core-ui.wp-admin .wcc-root .notice__icon-wrapper .gridicon{margin-top:10px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .notice__icon-wrapper .gridicon{margin-top:12px}}.wp-core-ui.wp-admin .wcc-root .notice__content{padding:13px;font-size:12px;flex-grow:1}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .notice__content{font-size:14px}}.wp-core-ui.wp-admin .wcc-root .notice__text a,.wp-core-ui.wp-admin .wcc-root .notice__text a:visited,.wp-core-ui.wp-admin .wcc-root .notice__text button.is-link{text-decoration:underline;color:#fff}.wp-core-ui.wp-admin .wcc-root .notice__text a:hover,.wp-core-ui.wp-admin .wcc-root .notice__text a:visited:hover,.wp-core-ui.wp-admin .wcc-root .notice__text button.is-link:hover{color:#fff;text-decoration:none}.wp-core-ui.wp-admin .wcc-root .notice__text ul{margin-bottom:0;margin-left:0}.wp-core-ui.wp-admin .wcc-root .notice__text li{margin-left:2em;margin-top:0.5em}.wp-core-ui.wp-admin .wcc-root .notice__text p{margin-bottom:0;margin-top:0.5em}.wp-core-ui.wp-admin .wcc-root .notice__text p:first-child{margin-top:0}.wp-core-ui.wp-admin .wcc-root .notice__button{cursor:pointer;margin-left:0.428em}.wp-core-ui.wp-admin .wcc-root .notice__dismiss{flex-shrink:0;padding:12px;cursor:pointer;padding-bottom:0}.wp-core-ui.wp-admin .wcc-root .notice__dismiss .gridicon{width:18px;height:18px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .notice__dismiss{padding:11px;padding-bottom:0}.wp-core-ui.wp-admin .wcc-root .notice__dismiss .gridicon{width:24px;height:24px}}.notice .wp-core-ui.wp-admin .wcc-root .notice__dismiss{color:#b0b5b8}.notice .wp-core-ui.wp-admin .wcc-root .notice__dismiss:hover,.notice .wp-core-ui.wp-admin .wcc-root .notice__dismiss:focus{color:#fff}.wp-core-ui.wp-admin .wcc-root a.notice__action{cursor:pointer;font-size:12px;font-weight:400;text-decoration:none;white-space:nowrap;color:#b0b5b8;padding:13px;display:flex;align-items:center}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root a.notice__action{flex-shrink:1;flex-grow:0;align-items:center;border-radius:0;font-size:14px;margin:0 0 0 auto;padding:13px 16px}.wp-core-ui.wp-admin .wcc-root a.notice__action .gridicon{width:24px;height:24px}}.wp-core-ui.wp-admin .wcc-root a.notice__action:visited{color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root a.notice__action:hover{color:#fff}.wp-core-ui.wp-admin .wcc-root a.notice__action .gridicon{margin-left:8px;opacity:0.7;width:18px;height:18px}.wp-core-ui.wp-admin .wcc-root .notice.is-compact{display:inline-flex;flex-wrap:nowrap;flex-direction:row;width:auto;border-radius:3px;min-height:20px;margin:0;padding:0;text-decoration:none;text-transform:none;vertical-align:middle;line-height:1.5}.wp-core-ui.wp-admin .wcc-root .notice.is-compact .notice__content{font-size:12px;padding:6px 10px}.wp-core-ui.wp-admin .wcc-root .notice.is-compact .notice__icon-wrapper{width:28px}.wp-core-ui.wp-admin .wcc-root .notice.is-compact .notice__icon-wrapper .notice__icon{width:18px;height:18px;margin:0}.wp-core-ui.wp-admin .wcc-root .notice.is-compact .notice__icon-wrapper .gridicon{margin-top:6px}.wp-core-ui.wp-admin .wcc-root .notice.is-compact .notice__dismiss{position:relative;-ms-grid-row-align:center;align-self:center;flex:none;margin:0 8px 0 0;padding:0}.wp-core-ui.wp-admin .wcc-root .notice.is-compact .notice__dismiss .gridicon{width:18px;height:18px}.wp-core-ui.wp-admin .wcc-root .notice.is-compact a.notice__action{background:transparent;display:inline-block;margin:0;font-size:12px;-ms-grid-row-align:center;align-self:center;margin-left:16px;padding:0 10px}.wp-core-ui.wp-admin .wcc-root .notice.is-compact a.notice__action:hover,.wp-core-ui.wp-admin .wcc-root .notice.is-compact a.notice__action:active,.wp-core-ui.wp-admin .wcc-root .notice.is-compact a.notice__action:focus{background:transparent}.wp-core-ui.wp-admin .wcc-root .notice.is-compact a.notice__action .gridicon{margin-left:8px;width:14px;height:14px;vertical-align:sub;opacity:1}.wp-core-ui.wp-admin .wcc-root .payment-logo{background-position:0 center;background-repeat:no-repeat;background-size:35px auto;display:inline-block;height:20px;vertical-align:middle;width:35px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-amex{background-image:url("https://wordpress.com//calypso/images/upgrades/cc-amex.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-diners{background-image:url("https://wordpress.com//calypso/images/upgrades/cc-diners.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-discover{background-image:url("https://wordpress.com//calypso/images/upgrades/cc-discover.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-jcb{background-image:url("https://wordpress.com//calypso/images/upgrades/cc-jcb.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-mastercard{background-image:url("https://wordpress.com//calypso/images/upgrades/cc-mastercard.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-unionpay{background-image:url("https://wordpress.com//calypso/images/upgrades/cc-unionpay.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-visa{background-image:url("https://wordpress.com//calypso/images/upgrades/cc-visa.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-alipay{background-image:url("https://wordpress.com//calypso/images/upgrades/alipay.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-bancontact{background-image:url("https://wordpress.com//calypso/images/upgrades/bancontact.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-giropay{background-image:url("https://wordpress.com//calypso/images/upgrades/giropay.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-eps{background-image:url("https://wordpress.com//calypso/images/upgrades/eps.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-ideal{background-image:url("https://wordpress.com//calypso/images/upgrades/ideal.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-paypal{background-image:url("https://wordpress.com//calypso/images/upgrades/paypal.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-p24{background-image:url("https://wordpress.com//calypso/images/upgrades/p24.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-brazil-tef{background-image:url("https://wordpress.com//calypso/images/upgrades/brazil-tef.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-wechat{background-image:url("https://wordpress.com//calypso/images/upgrades/wechat.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-sofort{background-image:url("https://wordpress.com//calypso/images/upgrades/sofort.svg")}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-paypal{background-size:70px;width:70px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-paypal.is-compact{width:16px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-ideal{height:30px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-giropay{background-size:60px auto;width:60px;height:20px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-bancontact{height:20px;background-size:100px auto;width:100px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-p24{height:20px;background-size:70px auto;width:70px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-alipay{height:20px;background-size:70px auto;width:70px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-brazil-tef{background-size:100px auto;width:100px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-sofort{background-size:60px auto;width:80px;height:20px}.wp-core-ui.wp-admin .wcc-root .payment-logo.is-sofort.is-compact{width:16px}.wp-core-ui.wp-admin .wcc-root .screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important}.wp-core-ui.wp-admin .wcc-root .screen-reader-text:hover,.wp-core-ui.wp-admin .wcc-root .screen-reader-text:active,.wp-core-ui.wp-admin .wcc-root .screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.wp-core-ui.wp-admin .wcc-root .segmented-control{display:flex;margin:0;border-radius:4px;background-color:#fff;list-style:none}.wp-core-ui.wp-admin .wcc-root .segmented-control__item{flex:1 1 auto;cursor:pointer}.wp-core-ui.wp-admin .wcc-root .segmented-control__item:first-of-type .segmented-control__link{border-top-left-radius:4px;border-bottom-left-radius:4px}.wp-core-ui.wp-admin .wcc-root .segmented-control__item:last-of-type .segmented-control__link{border-right:solid 1px #ccced0;border-top-right-radius:4px;border-bottom-right-radius:4px}.wp-core-ui.wp-admin .wcc-root .segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-left-color:#3d4145}.wp-core-ui.wp-admin .wcc-root .segmented-control__link{display:block;padding:8px 12px;border:solid 1px #ccced0;border-right:none;font-size:14px;line-height:18px;color:#636d75;text-align:center;transition:color 0.1s linear, background-color 0.1s linear}.wp-core-ui.wp-admin .wcc-root .segmented-control__link:focus{color:#3d4145;outline:none;background-color:#f6f6f6}.wp-core-ui.wp-admin .wcc-root .segmented-control__item.is-selected .segmented-control__link{border-color:#3d4145;color:#3d4145}.wp-core-ui.wp-admin .wcc-root .notouch .segmented-control__link:hover{color:#3d4145;background-color:#f6f6f6}.wp-core-ui.wp-admin .wcc-root .segmented-control__text{display:block;max-width:100%;color:inherit;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.wp-core-ui.wp-admin .wcc-root .segmented-control.is-compact .segmented-control__link{font-size:13px;padding:4px 8px}.wp-core-ui.wp-admin .wcc-root .segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link{border-color:#016087;background-color:#016087;color:#fff}.wp-core-ui.wp-admin .wcc-root .segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:focus{background-color:#6f93ad}.wp-core-ui.wp-admin .wcc-root .segmented-control.is-primary .segmented-control__item.is-selected+.segmented-control__item .segmented-control__link{border-left-color:#016087}.wp-core-ui.wp-admin .wcc-root .segmented-control.is-primary .segmented-control__link:focus{background-color:#f6f6f6}.wp-core-ui.wp-admin .wcc-root .notouch .segmented-control.is-primary .segmented-control__link:hover{background-color:#f6f6f6}.wp-core-ui.wp-admin .wcc-root .notouch .segmented-control.is-primary .segmented-control__item.is-selected .segmented-control__link:hover{background-color:#6f93ad}@keyframes rotate-spinner{100%{transform:rotate(360deg)}}.wp-core-ui.wp-admin .wcc-root .spinner{display:flex;align-items:center}.wp-core-ui.wp-admin .wcc-root .spinner__outer,.wp-core-ui.wp-admin .wcc-root .spinner__inner{margin:auto;box-sizing:border-box;border:0.1em solid transparent;border-radius:50%;animation:3s linear infinite;animation-name:rotate-spinner}.wp-core-ui.wp-admin .wcc-root .spinner__outer{border-top-color:#d52c82}.wp-core-ui.wp-admin .wcc-root .spinner__inner{width:100%;height:100%;border-top-color:#d52c82;border-right-color:#d52c82;opacity:0.4}.wp-core-ui.wp-admin .wcc-root.woocommerce .bulk-select{display:inline-block}.wp-core-ui.wp-admin .wcc-root.woocommerce .bulk-select__container{cursor:pointer;display:flex;align-items:center;position:relative}.wp-core-ui.wp-admin .wcc-root.woocommerce .bulk-select__container .gridicon{color:#016087;height:16px;position:absolute;left:0;top:0;width:16px}.wp-core-ui.wp-admin .wcc-root.woocommerce .bulk-select__container .gridicon.is-disabled{color:#969ca1}.wp-core-ui.wp-admin .wcc-root.woocommerce input[type='checkbox'].bulk-select__box{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:16px;margin:0;min-width:16px;padding:0;width:16px}.wp-core-ui.wp-admin .wcc-root.woocommerce .extended-header .section-header__label::before{display:none}.wp-core-ui.wp-admin .wcc-root.woocommerce .extended-header .extended-header__header{font-size:18px;margin-bottom:0;padding-top:8px}.wp-core-ui.wp-admin .wcc-root.woocommerce .extended-header .extended-header__header-description{color:#636d75;font-size:12px;line-height:18px;padding-bottom:8px}.wp-core-ui.wp-admin .wcc-root.woocommerce .extended-header .section-header__actions{flex-shrink:0}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input{display:flex;justify-content:flex-start;flex-wrap:wrap}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input.no-wrap{flex-wrap:nowrap}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input.no-wrap .form-dimensions-input__length,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input.no-wrap .form-dimensions-input__width{border-bottom-width:1px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input{flex-wrap:nowrap}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-text-input-with-affixes{flex-grow:2;flex-direction:row}}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__length,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width{border-bottom-width:0}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__length,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width{border-bottom-width:1px}}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__height{margin-left:-1px}}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__length,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__height{width:75px;flex-grow:0}}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__length:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__length:focus,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width:focus,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__height:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__height:focus{transform:scale(1)}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__length:focus+.form-dimensions-input__width:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__length:focus+.form-text-input-with-affixes .form-dimensions-input__height:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width:focus+.form-dimensions-input__width:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__width:focus+.form-text-input-with-affixes .form-dimensions-input__height:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__height:focus+.form-dimensions-input__width:hover,.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-dimensions-input__height:focus+.form-text-input-with-affixes .form-dimensions-input__height:hover{transform:none}.wp-core-ui.wp-admin .wcc-root.woocommerce .form-dimensions-input .form-text-input-with-affixes__suffix{flex-grow:0;background:inherit}.wp-core-ui.wp-admin .wcc-root .form-checkbox{margin-right:8px;cursor:pointer;display:inline-flex;align-items:center;position:relative;vertical-align:text-bottom}.wp-core-ui.wp-admin .wcc-root .form-checkbox input{margin:0}.wp-core-ui.wp-admin .wcc-root .form-checkbox input::before{display:none !important}.wp-core-ui.wp-admin .wcc-root .form-checkbox .gridicon{color:#016087;pointer-events:none;position:absolute}.wp-core-ui.wp-admin .wcc-root .form-checkbox .gridicon.gridicons-checkmark{left:1px;top:1px}.wp-core-ui.wp-admin .wcc-root .form-checkbox.is-disabled .gridicon{color:#b0b5b8}.wp-core-ui.wp-admin .wcc-root .field-error{color:#eb0001}.wp-core-ui.wp-admin .wcc-root .field-error__input-validation{padding:4px 0}.wp-core-ui.wp-admin .wcc-root .field-error__input-validation .gridicon{float:none;vertical-align:middle}.wp-core-ui.wp-admin .wcc-root .components-popover__content{font-size:12px;font-weight:normal}.wp-core-ui.wp-admin .wcc-root .card.is-compact.settings-group-card{margin-left:0;margin-right:0;max-width:100%;display:flex;padding-top:24px;padding-bottom:24px}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root .card.is-compact.settings-group-card{flex-wrap:wrap}}.wp-core-ui.wp-admin .wcc-root .settings-group-card__heading{font-size:16px;font-weight:600;color:#636d75;width:22%;padding-right:10px;box-sizing:border-box}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root .settings-group-card__heading{width:100%}}.wp-core-ui.wp-admin .wcc-root .settings-group-card__content{width:78%}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root .settings-group-card__content{width:100%}}.wp-core-ui.wp-admin .wcc-root .settings-group-card__content .is-full-width{width:100%}.wp-core-ui.wp-admin .wcc-root .form-text-body-copy{font-size:14px;font-weight:400;line-height:1.5}.wp-core-ui.wp-admin .wcc-root .label-settings__credit-card-description{margin-bottom:4px;color:#636d75;padding-bottom:8px}.wp-core-ui.wp-admin .wcc-root .label-settings__credit-card-description button{color:#016087}.wp-core-ui.wp-admin .wcc-root .card.label-settings__card{margin-bottom:14px;display:flex;flex-direction:row;align-items:center;cursor:pointer}.wp-core-ui.wp-admin .wcc-root .label-settings__card .payment-logo{margin-top:0}.wp-core-ui.wp-admin .wcc-root .form-checkbox.label-settings__card-checkbox{margin-right:20px;float:left}.wp-core-ui.wp-admin .wcc-root .payment-logo{float:left;margin-top:10px;margin-right:14px}.wp-core-ui.wp-admin .wcc-root .label-settings__card-details{float:left;flex-grow:1}.wp-core-ui.wp-admin .wcc-root .label-settings__card-number{margin-bottom:0;font-weight:bold}.wp-core-ui.wp-admin .wcc-root .label-settings__card-name{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .label-settings__card-date{float:right;font-style:italic}.wp-core-ui.wp-admin .wcc-root .label-settings__labels-container.hidden{visibility:hidden;height:0;padding:0;overflow:hidden}.wp-core-ui.wp-admin .wcc-root .label-settings__labels-container .form-fieldset:last-child{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .label-settings__labels-container .label-settings__external{display:none}.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent;pointer-events:none;background:#fff}.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder::after{content:none}.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder .gridicon,.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder span,.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder p,.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder a,.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder button{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e1e2e2;color:transparent;cursor:default}.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder p,.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder span{display:block;width:100px;height:14px}.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder button{width:200px;height:14px}.wp-core-ui.wp-admin .wcc-root .label-settings__placeholder .gridicon{fill:transparent;stroke:transparent}.wp-core-ui.wp-admin .wcc-root.dialog.card.add-credit-card-modal .dialog__content{max-width:720px;padding:0}.wp-core-ui.wp-admin .wcc-root .packages__add-package-weight{margin-bottom:8px}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .packages__add-package-weight{float:left}}.wp-core-ui.wp-admin .wcc-root .packages__add-package-weight:nth-child(1){width:100%}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .packages__add-package-weight:nth-child(1){width:50%}}.wp-core-ui.wp-admin .wcc-root .packages__add-package-weight:nth-child(2){width:100%}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .packages__add-package-weight:nth-child(2){width:50%}}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .packages__add-package-weight-group .form-setting-explanation{clear:both}}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog{height:90%;width:90%}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .form-setting-explanation{display:inline-block}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog{width:610px;height:auto;padding:0}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .dialog__content{padding:0}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .dialog__content .packages__add-edit-title{padding:22px;margin:0;border-bottom:1px solid #EDEFF0;font-size:20px}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .dialog__content .packages__mode-select .segmented-control__link{border-radius:0;border:0 none;padding:15px 0}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .dialog__content .packages__mode-select .segmented-control__link:focus{box-shadow:none}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .dialog__content .packages__mode-select .is-selected .segmented-control__link,.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .dialog__content .packages__mode-select .is-selected .segmented-control__link:focus{background-color:inherit;color:black;font-weight:bold;border-bottom:3px solid #96588A;outline:0}.wp-core-ui.wp-admin .wcc-root.packages__add-edit-dialog .dialog__content .packages__properties-group{margin:24px}}.wp-core-ui.wp-admin .wcc-root .packages__group-header-checkbox{margin-right:12px;vertical-align:text-bottom}.wp-core-ui.wp-admin .wcc-root .packages__packages-row{display:flex;flex-direction:row;padding:8px 0;align-items:center}.wp-core-ui.wp-admin .wcc-root .packages__packages-row:not(:last-child){border-bottom:1px solid #f6f6f6}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.packages__packages-header{border-bottom-color:#ccced0}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.prefixed:first-child{border-top:1px solid #f6f6f6}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.prefixed .form-checkbox{margin-left:16px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .packages__packages-row.prefixed .form-checkbox{margin-left:24px}}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.prefixed .packages__packages-row-icon{padding-left:0;text-align:center;color:#636d75}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.prefixed .packages__packages-row-actions{width:38px;padding-right:8px}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.prefixed .packages__packages-row-details{width:50%}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.error{color:#eb0001}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.error a{color:#eb0001}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.error .packages__packages-row-icon .gridicon{background-color:unset;border-radius:unset;fill:#eb0001;padding:unset;margin-left:-1px}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent;pointer-events:none;background:#fff}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder .gridicon,.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder span,.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder p,.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder a,.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder button{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e1e2e2;color:transparent;cursor:default}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder p,.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder span{display:block;width:100px;height:14px}.wp-core-ui.wp-admin .wcc-root .packages__packages-row.placeholder .gridicon{fill:transparent;stroke:transparent}.wp-core-ui.wp-admin .wcc-root .packages__packages-header{font-weight:600;padding:12px 0;font-size:14px;border-top:0;background:#f6f6f6}.wp-core-ui.wp-admin .wcc-root .packages__packages-row-icon{width:48px;text-align:left;padding-left:16px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .packages__packages-row-icon{padding-left:24px}}.wp-core-ui.wp-admin .wcc-root .packages__packages-row-icon svg{margin-top:6px;width:24px}.wp-core-ui.wp-admin .wcc-root .packages__packages-row-details-name{margin-bottom:0;font-size:14px}.wp-core-ui.wp-admin .wcc-root .packages__packages-row-actions{width:25%;text-align:right;padding-right:16px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .packages__packages-row-actions{padding-right:24px}}.wp-core-ui.wp-admin .wcc-root .packages__packages{padding:0}.wp-core-ui.wp-admin .wcc-root .packages__predefined-packages{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .packages__predefined-packages .packages__packages-header{border-top:1px solid #ccced0}.wp-core-ui.wp-admin .wcc-root .packages__predefined-packages .foldable-card__header .foldable-card__main{flex-grow:3}.wp-core-ui.wp-admin .wcc-root .packages__predefined-packages .foldable-card__header .foldable-card__secondary{flex-grow:2}.wp-core-ui.wp-admin .wcc-root .packages__predefined-packages .foldable-card__header .packages__group-header{display:flex;align-items:center}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .packages__predefined-packages .foldable-card__header{padding-left:24px}}.wp-core-ui.wp-admin .wcc-root .packages__predefined-packages .foldable-card__content{padding:0;border-top:0}.wp-core-ui.wp-admin .wcc-root .packages__packages-row-details{width:35%}.wp-core-ui.wp-admin .wcc-root .packages__packages-row-dimensions{width:30%;font-size:14px}.wp-core-ui.wp-admin .wcc-root .packages__setting-explanation{display:block;font-size:13px;font-style:italic;font-weight:400;margin:5px 0 0;color:#016087;text-decoration:underline}.wp-core-ui.wp-admin .wcc-root .packages__delete{float:left}.wp-core-ui.wp-admin .wcc-root .packages__mode-select{margin-bottom:12px}.wp-core-ui.wp-admin .wcc-root .settings-form__row{display:flex}.wp-core-ui.wp-admin .wcc-root .settings-form__row>*{flex-grow:1;margin-right:16px}.wp-core-ui.wp-admin .wcc-root .settings-form__row>*:last-child{margin-right:0}.wp-core-ui.wp-admin .wcc-root .shipping-services{margin-bottom:24px}.wp-core-ui.wp-admin .wcc-root .shipping-services .foldable-card{margin-left:0;margin-right:0;max-width:100%}.wp-core-ui.wp-admin .wcc-root .shipping-services__inner{margin-top:16px}.wp-core-ui.wp-admin .wcc-root .shipping-services__inner.is-error .card,.wp-core-ui.wp-admin .wcc-root .shipping-services__inner>.is-error .card:not(.is-expanded){border-top:1px;border-right:1px;border-left:1px;border-color:#eb0001;border-style:solid}.wp-core-ui.wp-admin .wcc-root .shipping-services__inner.is-error .card:last-child,.wp-core-ui.wp-admin .wcc-root .shipping-services__inner>.is-error .card:not(.is-expanded):last-child{border-bottom:1px solid #eb0001}.wp-core-ui.wp-admin .wcc-root .shipping-services__inner.is-error .card.is-expanded,.wp-core-ui.wp-admin .wcc-root .shipping-services__inner>.is-error .card:not(.is-expanded).is-expanded{border:1px solid #eb0001}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry{align-items:center;display:flex;width:100%}@media (max-width: 480px){.wp-core-ui.wp-admin .wcc-root .shipping-services__entry{padding:4px 0;border-bottom:1px solid #f6f6f6}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry:last-child{border-bottom:0}}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry.shipping-services__entry-header-container{display:inline-block;box-sizing:border-box;border-bottom:1px solid #f6f6f6;padding-bottom:8px;margin-bottom:4px}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry.shipping-services__entry-header-container .shipping-services__entry-header{display:inline-block;margin-left:0;font-weight:bold}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry.shipping-services__entry-header-container .shipping-services__entry-price-adjustment{float:right}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .shipping-services__entry.shipping-services__entry-header-container .shipping-services__entry-price-adjustment{padding-right:8px}}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry.shipping-services__entry-header-container .shipping-services__entry-price-adjustment svg{vertical-align:top;margin:0 2px}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry .form-checkbox{margin-right:8px}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry .form-checkbox .gridicon{top:0}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry .shipping-services__entry-title{flex-basis:70%;font-size:13px}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry .form-text-input{flex-basis:10%;margin:8px;padding:6px 12px;font-size:13px;min-width:42px}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry .form-select{flex-basis:20%;padding:6px 32px 5px 14px;line-height:22px;font-size:13px;box-shadow:none}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry .form-select:disabled{color:#b0b5b8;background-color:#f6f6f6;border-color:#f6f6f6}.wp-core-ui.wp-admin .wcc-root .shipping-services__entry.wcc-error input[type=text],.wp-core-ui.wp-admin .wcc-root .shipping-services__entry.wcc-error .gridicon{color:red}.wp-core-ui.wp-admin .wcc-root .shipping-services__delivery-estimate{color:#7c848b;margin-left:3px}.wp-core-ui.wp-admin .wcc-root .step-confirmation-button,.wp-core-ui.wp-admin .wcc-root .address-step__actions{padding:16px 24px;margin:0 -24px -24px;background:#f6f6f6;border-top:1px solid #f6f6f6}.wp-core-ui.wp-admin .wcc-root .step-confirmation-button .form-button,.wp-core-ui.wp-admin .wcc-root .address-step__actions .form-button{float:none;margin:0}.wp-core-ui.wp-admin .wcc-root .address-step__city-state-postal-code,.wp-core-ui.wp-admin .wcc-root .address-step__company-phone{display:flex;flex-direction:column}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .address-step__city-state-postal-code,.wp-core-ui.wp-admin .wcc-root .address-step__company-phone{flex-direction:row}}.wp-core-ui.wp-admin .wcc-root .notice.is-error{margin:6px 0 16px}.wp-core-ui.wp-admin .wcc-root .address-step__address-1.form-fieldset{margin-bottom:8px}.wp-core-ui.wp-admin .wcc-root .address-step__city,.wp-core-ui.wp-admin .wcc-root .address-step__state,.wp-core-ui.wp-admin .wcc-root .address-step__postal-code,.wp-core-ui.wp-admin .wcc-root .address-step__company,.wp-core-ui.wp-admin .wcc-root .address-step__phone{width:100%}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .address-step__city,.wp-core-ui.wp-admin .wcc-root .address-step__state,.wp-core-ui.wp-admin .wcc-root .address-step__postal-code,.wp-core-ui.wp-admin .wcc-root .address-step__company,.wp-core-ui.wp-admin .wcc-root .address-step__phone{margin-left:24px}}.wp-core-ui.wp-admin .wcc-root .address-step__city,.wp-core-ui.wp-admin .wcc-root .address-step__company{margin-left:0}.wp-core-ui.wp-admin .wcc-root .address-step__suggestion-container,.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-container{display:flex;align-items:flex-start;margin-top:24px;flex-direction:column}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .address-step__suggestion-container,.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-container{flex-direction:row}}.wp-core-ui.wp-admin .wcc-root .address-step__suggestion-title,.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-title{font-weight:bold}.wp-core-ui.wp-admin .wcc-root .address-step__suggestion,.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-info{padding:16px;flex-grow:1}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .address-step__suggestion,.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-info{flex-direction:row;width:50%}.wp-core-ui.wp-admin .wcc-root .address-step__suggestion:first-child,.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-info:first-child{margin-right:16px;margin-bottom:24px}}.wp-core-ui.wp-admin .wcc-root .address-step__suggestion{border:1px solid transparent;border-radius:4px;cursor:pointer;width:100%}.wp-core-ui.wp-admin .wcc-root .address-step__suggestion.is-selected{border-color:#016087}.wp-core-ui.wp-admin .wcc-root .address-step__suggestion-edit{margin-left:24px;color:#016087;font-weight:bold}.wp-core-ui.wp-admin .wcc-root .address-step__summary{margin:8px 0 8px 24px;font-weight:normal}.wp-core-ui.wp-admin .wcc-root .address-step__summary p{margin-bottom:2px}.wp-core-ui.wp-admin .wcc-root .address-step__summary .highlight{background-color:#f3f5f6}.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-info .external-link{float:left;clear:both}.wp-core-ui.wp-admin .wcc-root .address-step__unverifiable-info .address-step__summary{margin-left:0}.wp-core-ui.wp-admin .wcc-root .address-step__actions .form-button{margin-left:10px}.wp-core-ui.wp-admin .wcc-root .address-step__actions .form-button:first-child{margin-left:0}.wp-core-ui.wp-admin .wcc-root .packages-step__dialog-package-option{font-weight:normal;margin-bottom:10px}.wp-core-ui.wp-admin .wcc-root .packages-step__dialog-package-name{font-weight:bold}.wp-core-ui.wp-admin .wcc-root .packages-step__contents{display:flex;padding-bottom:24px;flex-direction:column}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .packages-step__contents{flex-direction:row}}.wp-core-ui.wp-admin .wcc-root .packages-step__list{width:auto;padding:0 0 24px;flex-shrink:0}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .packages-step__list{flex-direction:row;width:35%;padding:0 24px 0 0}}.wp-core-ui.wp-admin .wcc-root .packages-step__list-header{font-weight:600;margin-bottom:5px}.wp-core-ui.wp-admin .wcc-root .packages-step__list-package{display:flex;padding:6px 12px;cursor:pointer;align-items:center;width:100%}.wp-core-ui.wp-admin .wcc-root .packages-step__list-package.is-selected{background-color:#f6f6f6}.wp-core-ui.wp-admin .wcc-root .packages-step__list-package .gridicon{top:0}.wp-core-ui.wp-admin .wcc-root .packages-step__list-package-name{flex-grow:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-right:2px;text-align:left;color:#2b2d2f}.wp-core-ui.wp-admin .wcc-root .packages-step__list-package-count{display:inline-block;padding:1px 6px;border:solid 1px #b0b5b8;border-radius:12px;font-size:11px;font-weight:600;line-height:14px;color:#2b2d2f;text-align:center}.wp-core-ui.wp-admin .wcc-root .packages-step__package{flex-grow:1}.wp-core-ui.wp-admin .wcc-root .packages-step__package>div{margin-bottom:24px}.wp-core-ui.wp-admin .wcc-root .packages-step__package>div:last-child{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .packages-step__add-item-row{padding:8px 0;display:flex}.wp-core-ui.wp-admin .wcc-root .packages-step__no-items-message{padding:8px 0;font-style:italic;flex-grow:1}.wp-core-ui.wp-admin .wcc-root .packages-step__no-items-message .packages-step__add-item-btn{vertical-align:middle;margin-left:8px}.wp-core-ui.wp-admin .wcc-root .packages-step__package-item-description{font-weight:bold}.wp-core-ui.wp-admin .wcc-root .packages-step__package-items-header-name{width:60%;display:inline-block}.wp-core-ui.wp-admin .wcc-root .packages-step__package-items-header-weight{width:15%;display:inline-block;text-align:center}.wp-core-ui.wp-admin .wcc-root .packages-step__package-items-header-qty{width:15%;display:inline-block;text-align:center}.wp-core-ui.wp-admin .wcc-root .packages-step__package-items-header-move{width:10%;display:inline-block}.wp-core-ui.wp-admin .wcc-root .packages-step__item{display:flex;padding:0 0 8px}.wp-core-ui.wp-admin .wcc-root .packages-step__item:last-child{padding-bottom:0}.wp-core-ui.wp-admin .wcc-root .packages-step__item p{line-height:1.4em}.wp-core-ui.wp-admin .wcc-root .packages-step__item-name{padding:8px 0;width:70%}.wp-core-ui.wp-admin .wcc-root .packages-step__item-weight{padding:8px 0;width:15%;text-align:center}.wp-core-ui.wp-admin .wcc-root .packages-step__item-qty{padding:8px 0;width:15%;text-align:center}.wp-core-ui.wp-admin .wcc-root .packages-step__item-move{width:10%;margin:4px 0 4px 16px}.wp-core-ui.wp-admin .wcc-root .packages-step__package-weight{width:100%;margin-bottom:10px;float:left;margin-right:15px}@-moz-document url-prefix(){.wp-core-ui.wp-admin .wcc-root .packages-step__package-weight{width:135px;margin-right:65px}}.wp-core-ui.wp-admin .wcc-root .packages-step__package-weight-unit{margin-left:8px}.wp-core-ui.wp-admin .wcc-root .packages-step__package-signature{width:180px;float:left}.wp-core-ui.wp-admin .wcc-root .packages-step__no-packages{background:#f6f6f6;width:100%;text-align:center;padding:20px 0;display:flex;align-items:center;justify-content:center}.wp-core-ui.wp-admin .wcc-root .packages-step__no-packages>a{margin-left:8px}.wp-core-ui.wp-admin .wcc-root .packages-step__with-packages{margin-top:5px}.wp-core-ui.wp-admin .wcc-root .packages-step__package-details-header{display:flex;justify-content:space-between}.wp-core-ui.wp-admin .wcc-root .customs-step__package-container{margin-bottom:16px}.wp-core-ui.wp-admin .wcc-root .customs-step__package-container:last-child{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .customs-step__package-name{font-size:16px;font-weight:600;margin-bottom:8px}.wp-core-ui.wp-admin .wcc-root .customs-step__restrictions-row{margin-top:16px;display:flex;flex-wrap:wrap}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .customs-step__restrictions-row{flex-wrap:nowrap}}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .customs-step__contents-type{margin-right:24px}}.wp-core-ui.wp-admin .wcc-root .customs-step__contents-type,.wp-core-ui.wp-admin .wcc-root .customs-step__restriction-type{width:100%}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .customs-step__contents-type,.wp-core-ui.wp-admin .wcc-root .customs-step__restriction-type{width:50%}}.wp-core-ui.wp-admin .wcc-root .customs-step__item-rows-header{display:none}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .customs-step__item-rows-header{display:flex}}.wp-core-ui.wp-admin .wcc-root .customs-step__item-rows-header span{font-size:14px;font-weight:600;margin-bottom:8px}.wp-core-ui.wp-admin .wcc-root .customs-step__item-rows-header span svg{margin:0 2px;vertical-align:top}.wp-core-ui.wp-admin .wcc-root .customs-step__item-row{display:flex;flex-direction:column}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .customs-step__item-row{flex-direction:row}.wp-core-ui.wp-admin .wcc-root .customs-step__item-row .form-legend,.wp-core-ui.wp-admin .wcc-root .customs-step__item-row .form-label{display:none}.wp-core-ui.wp-admin .wcc-root .customs-step__item-row .form-text-input-with-affixes__suffix{display:none}.wp-core-ui.wp-admin .wcc-root .customs-step__item-row .form-text-input-with-affixes__prefix{display:none}}.wp-core-ui.wp-admin .wcc-root .customs-step__item-description-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-country-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-weight-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-value-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-code-column{width:100%}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .customs-step__item-description-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-country-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-weight-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-value-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-code-column{margin-left:4px}}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .customs-step__item-weight-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-value-column,.wp-core-ui.wp-admin .wcc-root .customs-step__item-code-column{max-width:130px}}.wp-core-ui.wp-admin .wcc-root .customs-step__item-description-column{margin-left:0}.wp-core-ui.wp-admin .wcc-root .customs-step__abandon-on-non-delivery{font-weight:400}.wp-core-ui.wp-admin .wcc-root .rates-step__package-container{margin-bottom:20px}.wp-core-ui.wp-admin .wcc-root .rates-step__package-container .form-fieldset:last-child{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .rates-step__package-container .form-server-error{margin-left:-2px}.wp-core-ui.wp-admin .wcc-root .rates-step__package-container .form-fieldset ~ .form-server-error{margin-top:-1em}.wp-core-ui.wp-admin .wcc-root .rates-step__package-container-rates-header{font-weight:bold;margin-bottom:20px}.wp-core-ui.wp-admin .wcc-root .notice.rates-step__notice{margin:-24px -24px 24px;width:inherit}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-info-cost{font-weight:600}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-container{display:flex;align-items:stretch;padding-top:15px}.wp-core-ui.wp-admin .wcc-root .rates-step__carier-logo-image-usps{width:40px;height:40px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-information{display:flex;flex-grow:1;padding-left:8px;border-bottom:1px solid #EDEFF0;padding-bottom:15px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-radio-control{padding:8px 8px 0 0}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-radio-control input[type='radio']{border:2px solid gray}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-radio-control input[type='radio']:checked{border-color:#d52c82}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-radio-control input[type='radio']:checked::before{margin:2px;background-color:#d52c82}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-description{display:flex;flex-direction:column}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-description-title{font-size:15px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-description-details{color:#646970;font-size:12px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-description-details * label{margin-left:5px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-description-details .components-base-control{margin-bottom:0px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-description-signature-select * select{color:#646970;font-size:12px;min-width:250px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-details{display:flex;flex-direction:column;margin-left:auto}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-delivery-date{color:#646970;font-size:12px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-rate-rate{text-align:right}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-info{display:flex;justify-content:center;align-items:center;height:56px;background:#EBF7F1;border:1px solid #008A20;box-sizing:border-box;border-radius:3px;margin-bottom:36px}.wp-core-ui.wp-admin .wcc-root .rates-step__shipping-info .gridicon{padding-right:8px;color:#008A20}.wp-core-ui.wp-admin .wcc-root.label-purchase-modal{height:calc(100% - 10vmin);width:calc(100% - 10vmin);max-height:1080px;max-width:1920px;background:#f6f7f7;box-shadow:rgba(151,150,150,0.5) 2px 2px 7px}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root.label-purchase-modal{background:linear-gradient(to right, #f6f7f7 0%, #f6f7f7 calc(60% - 32px), #fff calc(60% - 32px), #fff 100%)}}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root.label-purchase-modal{background:linear-gradient(to right, #f6f7f7 0%, #f6f7f7 calc(70% - 48px), #fff calc(70% - 48px), #fff 100%)}}.wp-core-ui.wp-admin .wcc-root.label-purchase-modal .dialog__content{flex-grow:1;display:flex;flex-direction:column}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root.label-purchase-modal .dialog__content{padding:inherit;overflow-y:scroll}}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root.label-purchase-modal.dialog.card{height:100%;max-height:100%;width:100%;max-width:100%}}.wp-core-ui.wp-admin .wcc-root.tracking-modal{height:60%;width:40%}.wp-core-ui.wp-admin .wcc-root.tracking-modal .dialog__content{flex-grow:1;display:flex;flex-direction:column}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root.tracking-modal .dialog__content{padding:inherit;overflow-y:scroll}}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root.tracking-modal.dialog.card{height:100%;max-height:100%;width:100%;max-width:100%}}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__sidebar{flex-basis:100%;padding:32px}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__sidebar{flex-basis:40%;padding:0 24px 24px;margin-top:-20px;margin-left:24px;background:#fff}}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__sidebar{flex-basis:30%}}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content{display:flex;flex-direction:column;height:100%;flex-grow:1}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .gridicon.is-success{color:#008a00}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .gridicon.is-warning{color:#f6c200}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .is-error:not(.notice){color:#eb0001}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .is-error .notice__icon,.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .is-warning .notice__icon,.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .is-success .notice__icon{display:block}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content select{width:100%}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .foldable-card__header{padding:12px 16px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .foldable-card__secondary{white-space:nowrap}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .foldable-card.is-expanded .foldable-card__content{padding:24px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .foldable-card__summary>span:first-child,.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .foldable-card__summary-expanded>span:first-child{display:flex;align-items:center;justify-content:flex-end}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .foldable-card__summary svg:empty,.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .foldable-card__summary-expanded svg:empty{display:none}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__content .form-section-heading{padding-top:20px;padding-left:20px}}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__body{display:flex;flex-grow:1}@media (max-width: 660px){.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__body{flex-direction:column}}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__main-section{flex-basis:100%}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__main-section{flex-basis:60%}}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__main-section{flex-basis:70%}}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__step-title,.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__step-status{float:left}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__step-status{margin:3px 0 0 5px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__step-title{margin:0 0 0 8px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__price-item{display:flex;margin-bottom:8px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__price-item.label-purchase-modal__price-item-total{font-weight:bold;margin-bottom:0;margin-top:24px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__price-item-addons{margin-left:20px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__price-item-help{color:#b0b5b8;cursor:help;text-align:center}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__price-item-amount{flex-grow:1;text-align:right}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__discount{background-color:#f6f6f6;color:#7c848b;padding:3px;margin:20px 0;font-size:12px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__discount svg{display:inline-block;vertical-align:top;margin-left:2px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__header,.wp-core-ui.wp-admin .wcc-root .tracking-modal__header{display:flex;flex-direction:row}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__header .form-section-heading,.wp-core-ui.wp-admin .wcc-root .tracking-modal__header .form-section-heading{flex:1;margin:0 0 45px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__header .label-purchase-modal__close-button,.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__header .tracking-modal__close-button,.wp-core-ui.wp-admin .wcc-root .tracking-modal__header .label-purchase-modal__close-button,.wp-core-ui.wp-admin .wcc-root .tracking-modal__header .tracking-modal__close-button{border:none;padding:0;align-self:flex-start;margin-top:-7px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__shipping-summary-header{font-size:16px;font-weight:bold}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__shipping-summary-street{color:#636d75;margin-top:18px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__shipping-summary-street a{margin-left:7px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__shipping-summarry-labels{margin-top:18px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__shipping-summary-section{padding-bottom:15px}.wp-core-ui.wp-admin .wcc-root .shipping-label__payment .gridicon.notice__icon{align-self:flex-start;margin-top:8px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item p{margin-bottom:3px;text-align:left}.wp-core-ui.wp-admin .wcc-root .shipping-label__item p.shipping-label__item-tracking{font-size:12px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item p.shipping-label__item-tracking a:focus{outline:none;box-shadow:none}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__new-label-button{width:100%;margin-top:16px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .ellipsis-menu__toggle{padding:0}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-detail,.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-actions{display:flex;justify-content:space-between}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-detail a,.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-actions a{display:inline-block;font-size:12px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-detail span svg,.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-detail a svg,.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-actions span svg,.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-actions a svg{position:relative;top:2px;margin-right:2px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-detail{margin-bottom:6px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-detail a{vertical-align:text-top}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-actions{margin-bottom:0}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__item-actions a{margin-top:10px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__purchase-error{color:#eb0001;cursor:help;text-decoration:underline;-webkit-text-decoration-color:#eb0001;text-decoration-color:#eb0001;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.wp-core-ui.wp-admin .wcc-root.dialog.card.label-reprint-modal .shipping-label__reprint-modal-notice{color:#7c848b;font-style:italic}.wp-core-ui.wp-admin .wcc-root.dialog.card.label-refund-modal dd{margin-left:0}.wp-core-ui.wp-admin .wcc-root.dialog.card.label-details-modal{width:460px}.wp-core-ui.wp-admin .wcc-root.dialog.card.label-details-modal dd{margin-left:0}.wp-core-ui.wp-admin .wcc-root.dialog.card.label-details-modal dd ul{margin-left:1.2em}.wp-core-ui.wp-admin .wcc-root .error-notice{width:inherit}.wp-core-ui.wp-admin .wcc-root .shipping-label__loading-spinner{margin:8px auto;text-align:center}.wp-core-ui.wp-admin .wcc-root .shipping-label__label-details-modal-heading{display:flex}.wp-core-ui.wp-admin .wcc-root .shipping-label__label-details-modal-heading-title{flex-grow:1}.wp-core-ui.wp-admin .wcc-root .foldable-card.card.order-activity-log__day-header,.wp-core-ui.wp-admin .wcc-root .foldable-card.card.order-activity-log__day-header.is-expanded{margin:0 0 16px}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .foldable-card.card.order-activity-log__day-header,.wp-core-ui.wp-admin .wcc-root .foldable-card.card.order-activity-log__day-header.is-expanded{margin:0 0 24px}}.wp-core-ui.wp-admin .wcc-root .order-activity-log__day .foldable-card__content{position:relative;z-index:0}.wp-core-ui.wp-admin .wcc-root .order-activity-log__day .foldable-card__content::before{content:'';z-index:-1;position:absolute;top:0;left:45px;bottom:0;width:1px;background:rgba(204,206,208, 0.5)}.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .foldable-card__main h3,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .foldable-card__main small,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-time,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-type,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-content,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-meta .gridicon{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent}.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .foldable-card__main h3::after,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .foldable-card__main small::after,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-time::after,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-type::after,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-content::after,.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-meta .gridicon::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-time{height:1.3em}.wp-core-ui.wp-admin .wcc-root .order-activity-log .is-placeholder .order-activity-log__note-meta .gridicon{fill:transparent}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note{display:flex}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note+.order-activity-log__note{margin-top:16px}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note .order-activity-log__note-meta{flex:1 0 60px;width:60px;text-align:center}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note .order-activity-log__note-meta .gridicon{display:inline-block;padding:4px;background:#016087;fill:#fff;border-radius:50%;border:4px solid white}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note .order-activity-log__note-time{display:block;font-size:12px;background:white}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note .order-activity-log__note-body{flex:1 0 calc( 100% - 76px);width:calc( 100% - 76px);box-sizing:border-box;margin-left:16px;padding:12px 16px 16px;box-shadow:0 0 0 1px rgba(204,206,208, 0.5)}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note .order-activity-log__note-type{font-size:12px;color:#636d75;text-transform:uppercase}.wp-core-ui.wp-admin .wcc-root .order-activity-log__note .order-activity-log__note-content{margin:8px 8px 0 0}.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content{margin:0 -15px 16px;border:1px solid #e1e2e2;border-width:1px 0}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content{margin:0 -24px 24px}}.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content .form-label{padding:0 24px;margin-bottom:8px}.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content .form-textarea{padding:16px;border-color:#fff;resize:vertical;display:block;font-size:14px}.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content .form-textarea:-ms-input-placeholder{color:#636d75}.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content .form-textarea::placeholder{color:#636d75}.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content .form-textarea:focus{border-color:#016087}@media (min-width: 481px){.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-content .form-textarea{padding:16px 24px}}.wp-core-ui.wp-admin .wcc-root .order-activity-log__new-note-type .button{float:right}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-heading,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-heading{font-size:14px;font-weight:600;margin-bottom:8px}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body{background:#f6f6f6;display:flex;margin-bottom:16px;padding:12px}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-logo-container,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-logo-container,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-logo-container{align-items:center;background:#fff;border:1px solid #ccced0;display:flex;height:46px;justify-content:center;margin-right:12px;width:46px}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-logo-container .stripe__connect-account-logo,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-logo-container .stripe__connect-account-logo,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-logo-container .stripe__connect-account-logo{max-height:36px;max-width:36px}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-details,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-details,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-details{display:flex;flex-direction:column}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-name,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-name,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-details .stripe__connect-account-name{font-size:14px;font-weight:400;margin-bottom:1px;margin-right:4px}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-email,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-email,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-details .stripe__connect-account-email{color:#636d75}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-status,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-status,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-details .stripe__connect-account-status{border-radius:3px;color:#fff;font-size:12px;margin-right:8px;padding:3px 8px}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-status.account-activated,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-status.account-activated,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-details .stripe__connect-account-status.account-activated{background-color:#008a00}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-status.account-not-activated,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-status.account-not-activated,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-details .stripe__connect-account-status.account-not-activated{background-color:#f6c200}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-disconnect,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body .stripe__connect-account-details .stripe__connect-account-disconnect,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body .stripe__connect-account-details .stripe__connect-account-disconnect{font-size:12px;padding-top:3px;padding-bottom:0}.wp-core-ui.wp-admin .wcc-root .stripe__connect-prompt ul{margin-bottom:16px}.wp-core-ui.wp-admin .wcc-root .stripe__method-edit-header{font-size:18px;justify-content:space-between;padding:0 0 16px}.wp-core-ui.wp-admin .wcc-root .stripe__method-edit-header.placeholder{margin-bottom:16px;width:30%;animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent}.wp-core-ui.wp-admin .wcc-root .stripe__method-edit-header.placeholder::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .stripe__method-edit-body{padding:0 0 16px}.wp-core-ui.wp-admin .wcc-root .stripe__method-edit-body.placeholder{height:60px;animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent}.wp-core-ui.wp-admin .wcc-root .stripe__method-edit-body.placeholder::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator{margin-top:4px;margin-bottom:4px}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator .form-setting-explanation{margin-top:0}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator .form-setting-explanation a{font-style:normal}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator .plugin-status__indicator-message{margin:0 0 4px 4px}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator.is-success .plugin-status__indicator-icon-and-message{fill:#008a00}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator.is-success .plugin-status__indicator-icon-and-message .gridicon{fill:#008a00}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator.is-warning .plugin-status__indicator-icon-and-message{color:#f6c200}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator.is-warning .plugin-status__indicator-icon-and-message .gridicon{fill:#f6c200}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator.is-error .plugin-status__indicator-icon-and-message{color:#eb0001}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator.is-error .plugin-status__indicator-icon-and-message .gridicon{fill:#eb0001}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator-icon-and-message{display:flex;align-items:center}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator-icon-and-message .indicator__icon{margin-right:6px}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator-icon-and-message .indicator__message{margin-top:-4px}.wp-core-ui.wp-admin .wcc-root .plugin-status__indicator-subtitle{background:#f6f6f6;border-radius:2px;color:#3d4145;font-size:11px;font-weight:400;margin-left:8px;padding:2px 8px}.wp-core-ui.wp-admin .wcc-root .plugin-status__help-description{font-size:14px;font-weight:400;line-height:1.5}.wp-core-ui.wp-admin .wcc-root .plugin-status__log-explanation{display:flex}.wp-core-ui.wp-admin .wcc-root .plugin-status__log-explanation-span{flex-grow:1}.wp-core-ui.wp-admin .wcc-root .form-textarea{font-size:12px;height:195px;resize:none;white-space:pre}.wp-core-ui.wp-admin .wcc-root .form-textarea#wcc_debug_log_tail{font-family:Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", Monaco, "Courier New", Courier, monospace}.wp-core-ui.wp-admin .wcc-root .shipping-label__container{margin-bottom:0;text-align:center;display:flex;justify-content:space-between}.wp-core-ui.wp-admin .wcc-root .shipping-label__container em{font-size:15px;display:inline-block;vertical-align:text-bottom;margin-left:10px;padding-bottom:11px;position:relative;font-style:normal;font-weight:bold}.wp-core-ui.wp-admin .wcc-root .shipping-label__container .shipping-label__banner-fulfilled-date{font-weight:normal}.wp-core-ui.wp-admin .wcc-root .shipping-label__container .shipping-label__payment .gridicon.notice__icon{align-self:flex-start;margin-top:8px}.wp-core-ui.wp-admin .wcc-root .shipping-label__container .shipping-label__new{padding:16px;border-bottom:1px solid #eee}.wp-core-ui.wp-admin .wcc-root .shipping-label__container .shipping-label__new .shipping-label__new-label-button{width:100%;margin-top:16px}.wp-core-ui.wp-admin .wcc-root .shipping-label__container .shipping-label__new .shipping-label__new-label-button.is-placeholder{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent}.wp-core-ui.wp-admin .wcc-root .shipping-label__container .shipping-label__new .shipping-label__new-label-button.is-placeholder::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .shipping-label__container .shipping-label__new p{margin-bottom:3px;text-align:left}.wp-core-ui.wp-admin .wcc-root .shipping-label__multiple-buttons-container button{margin-left:10px}.wp-core-ui.wp-admin .wcc-root .shipping-label__redo-shipping-button .button.is-borderless{margin-right:8px;color:#777}.wp-core-ui.wp-admin .wcc-root.label-purchase-modal,.wp-core-ui.wp-admin .wcc-root.packages-step__dialog{font-size:15px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__option-mark-order-fulfilled{margin:27px 0 0}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__option-mark-order-fulfilled .components-checkbox-control__input{margin:2px 15px 10px 3px;float:left}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__purchase-container{display:flex;align-items:flex-end;justify-content:center}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__purchase-container .form-fieldset{margin:0 5px 0 0;width:50%}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__purchase-container .purchase-section{width:50%;margin-left:5px}.wp-core-ui.wp-admin .wcc-root .label-purchase-modal__purchase-container .purchase-section .button{width:100%}.wp-core-ui.wp-admin .wcc-root .order-activity-log .foldable-card .foldable-card__content{padding-left:0;padding-right:8px}.wp-core-ui.wp-admin .wcc-root .order-activity-log .foldable-card .foldable-card__content:before{left:30px}.wp-core-ui.wp-admin .wcc-root .order-activity-log .foldable-card.card.order-activity-log__day-header{margin:0}.wp-core-ui.wp-admin .wcc-root .order-activity-log .order-activity-log__note-body{margin-left:0;padding-left:8px;padding-right:8px}.wp-core-ui.wp-admin .wcc-root .order-activity-log .order-activity-log__note-body .order-activity-log__note-content{margin:0}.wp-core-ui.wp-admin .wcc-root .order-activity-log .order-activity-log__note-meta{flex-basis:48px}.wp-core-ui.wp-admin .wcc-root .shipping-label__item .shipping-label__button{padding:0;font-weight:normal;font-size:13px;line-height:19px}.wp-core-ui.wp-admin .wcc-root .shipping-label__button-loading{height:40px;min-width:162px}@media (max-width: 1080px){.wp-core-ui.wp-admin .wcc-root .shipping-label__container{display:block}}.wp-core-ui.wp-admin .wcc-root .print-test-label__form-container{display:flex}.wp-core-ui.wp-admin .wcc-root .print-test-label__form-container .print-test-label__paper-size{width:auto}.wp-core-ui.wp-admin .wcc-root .settings__placeholder .form-label,.wp-core-ui.wp-admin .wcc-root .settings__placeholder .form-text-input{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent;pointer-events:none}.wp-core-ui.wp-admin .wcc-root .settings__placeholder .form-label::after,.wp-core-ui.wp-admin .wcc-root .settings__placeholder .form-text-input::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .settings__button-row{background:#f6f6f6;padding:16px 24px;margin-right:0;margin-left:0;max-width:100%}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-heading,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-heading{display:none}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-body,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-body,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body{max-width:545px;border:1px solid #ccc;line-height:1.5}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-status,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-status{vertical-align:sub}.wp-core-ui.wp-admin .wcc-root .stripe__connect-account .stripe__connect-account-disconnect,.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe__connect-account-disconnect{line-height:21px;display:inline-block;vertical-align:bottom}.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body{animation:loading-fade 1.6s ease-in-out infinite;background-color:#e7e8e9;color:transparent}.wp-core-ui.wp-admin .wcc-root .stripe-connect-account__placeholder-container .stripe-connect-account__placeholder-body::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .toggle__text{color:#969ca1;font-size:11px;line-height:16px;margin-left:8px;vertical-align:middle;text-transform:uppercase}.wp-core-ui.wp-admin .wcc-root input[type='checkbox']+svg.components-checkbox-control__checked{display:none}.dialog__backdrop{align-items:center;bottom:0;left:0;display:flex;justify-content:center;position:fixed;right:0;top:46px;transition:background-color 0.2s ease-in;z-index:100200}.dialog__backdrop.dialog-enter,.dialog__backdrop.dialog-leave.dialog-leave-active{background-color:rgba(246,246,246, 0)}.dialog__backdrop,.dialog__backdrop.dialog-enter.dialog-enter-active,.dialog__backdrop.dialog-leave{background-color:rgba(246,246,246, 0.8)}.dialog__backdrop.is-full-screen{top:0}.dialog__backdrop.is-hidden{background-color:transparent}.dialog.card{position:relative;display:flex;flex-direction:column;max-width:90%;max-height:90%;margin:auto 0;padding:0;opacity:1;transition:opacity 0.2s ease-in}.dialog-enter .dialog.card,.dialog-leave.dialog-leave-active .dialog.card{opacity:0}.dialog.card,.dialog-enter.dialog-enter-active .dialog.card,.dialog-leave .dialog.card{opacity:1}.dialog__content{padding:16px;overflow-y:auto}@media (min-width: 481px){.dialog__content{padding:24px}}.dialog__content:last-child{bottom:0}.dialog__content h1{color:#3d4145;font-size:1.375em;font-weight:600;line-height:2em;margin-bottom:0.5em}.dialog__content p:last-child{margin-bottom:0}.dialog__action-buttons{position:relative;border-top:1px solid #f6f6f6;padding:16px;margin:0;text-align:right;flex-shrink:0;background-color:#fff}@media (min-width: 481px){.dialog__action-buttons{padding-left:24px;padding-right:24px}}@media (max-width: 480px){.dialog__action-buttons{display:flex;flex-direction:column-reverse}}.dialog__action-buttons::before{content:'';display:block;position:absolute;bottom:100%;left:16px;right:16px;height:24px;background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);margin-bottom:1px}.dialog__action-buttons .button{margin-left:10px;min-width:80px;text-align:center}.dialog__action-buttons .button .is-left-aligned{margin-left:0;margin-right:10px}@media (max-width: 480px){.dialog__action-buttons .button{margin:2px 0}}.dialog__action-buttons .is-left-aligned{float:left}.ReactModal__Body--open{overflow:hidden}.ReactModal__Html--open{overflow:visible}.popover{font-size:11px;z-index:1000;position:absolute;top:0;left:0 /*rtl:ignore*/;right:auto /*rtl:ignore*/}.popover .popover__inner{background-color:#fff;border:1px solid #ccced0;border-radius:4px;box-shadow:0 2px 5px rgba(0,0,0,0.1),0 0 56px rgba(0,0,0,0.075);text-align:center;position:relative}.popover .popover__arrow{border:10px dashed #ccced0;height:0;line-height:0;position:absolute;width:0;z-index:1}.popover.fade{transition:opacity 100ms}.popover.is-top .popover__arrow,.popover.is-top-left .popover__arrow,.popover.is-top-right .popover__arrow{bottom:0 /*rtl:ignore*/;left:50% /*rtl:ignore*/;margin-left:-10px/*rtl:ignore*/;border-top-style:solid/*rtl:ignore*/;border-bottom:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-top .popover__arrow::before,.popover.is-top-left .popover__arrow::before,.popover.is-top-right .popover__arrow::before{bottom:2px /*rtl:ignore*/;border:10px solid #fff;content:' ';position:absolute;left:50% /*rtl:ignore*/;margin-left:-10px/*rtl:ignore*/;border-top-style:solid/*rtl:ignore*/;border-bottom:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-bottom .popover__arrow,.popover.is-bottom-left .popover__arrow,.popover.is-bottom-right .popover__arrow{top:0 /*rtl:ignore*/;left:50% /*rtl:ignore*/;margin-left:-10px/*rtl:ignore*/;border-bottom-style:solid/*rtl:ignore*/;border-top:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-bottom .popover__arrow::before,.popover.is-bottom-left .popover__arrow::before,.popover.is-bottom-right .popover__arrow::before{top:2px /*rtl:ignore*/;border:10px solid #fff;content:' ';position:absolute;left:50% /*rtl:ignore*/;margin-left:-10px/*rtl:ignore*/;border-bottom-style:solid/*rtl:ignore*/;border-top:none/*rtl:ignore*/;border-left-color:transparent/*rtl:ignore*/;border-right-color:transparent/*rtl:ignore*/}.popover.is-left .popover__arrow,.popover.is-left-top .popover__arrow,.popover.is-left-bottom .popover__arrow{right:0 /*rtl:ignore*/;top:50% /*rtl:ignore*/;margin-top:-10px/*rtl:ignore*/;border-left-style:solid/*rtl:ignore*/;border-right:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-left .popover__arrow::before,.popover.is-left-top .popover__arrow::before,.popover.is-left-bottom .popover__arrow::before{right:2px /*rtl:ignore*/;border:10px solid #fff;content:' ';position:absolute;top:50% /*rtl:ignore*/;margin-top:-10px/*rtl:ignore*/;border-left-style:solid/*rtl:ignore*/;border-right:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-right .popover__arrow,.popover.is-right-top .popover__arrow,.popover.is-right-bottom .popover__arrow{left:0 /*rtl:ignore*/;top:50% /*rtl:ignore*/;margin-top:-10px/*rtl:ignore*/;border-right-style:solid/*rtl:ignore*/;border-left:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-right .popover__arrow::before,.popover.is-right-top .popover__arrow::before,.popover.is-right-bottom .popover__arrow::before{left:2px /*rtl:ignore*/;border:10px solid #fff;content:' ';position:absolute;top:50% /*rtl:ignore*/;margin-top:-10px/*rtl:ignore*/;border-right-style:solid/*rtl:ignore*/;border-left:none/*rtl:ignore*/;border-top-color:transparent/*rtl:ignore*/;border-bottom-color:transparent/*rtl:ignore*/}.popover.is-top-left,.popover.is-bottom-left,.popover.is-top-right,.popover.is-bottom-right{padding-right:0;padding-left:0}.popover.is-top-left .popover__arrow,.popover.is-bottom-left .popover__arrow{left:auto /*rtl:ignore*/;right:5px /*rtl:ignore*/}.popover.is-top-right .popover__arrow,.popover.is-bottom-right .popover__arrow{left:15px /*rtl:ignore*/}.popover.is-top .popover__inner,.popover.is-top-left .popover__inner,.popover.is-top-right .popover__inner{top:-10px /*rtl:ignore*/}.popover.is-left .popover__inner,.popover.is-top-right .popover__inner,.popover.is-bottom-right .popover__inner{left:-10px /*rtl:ignore*/}.popover.is-bottom .popover__inner,.popover.is-bottom-left .popover__inner,.popover.is-bottom-right .popover__inner{top:10px /*rtl:ignore*/}.popover.is-right .popover__inner,.popover.is-top-left .popover__inner,.popover.is-bottom-left .popover__inner{left:10px /*rtl:ignore*/}.popover.is-dialog-visible{z-index:100300}.popover__menu{display:flex;flex-direction:column;min-width:200px}.popover__menu-item{position:relative;background:inherit;border:none;border-radius:0;cursor:pointer;display:block;font-size:14px;font-weight:400;margin:0;padding:8px 16px;text-align:left;text-decoration:none;line-height:normal;transition:all 0.05s ease-in-out}.popover__menu-item:first-child{margin-top:5px}.popover__menu-item,.popover__menu-item:visited{color:#3d4145}.popover__menu-item.is-selected,.popover__menu-item:hover,.popover__menu-item:focus{background-color:#016087;border:0;box-shadow:none;color:white}.popover__menu-item.is-selected .gridicon,.popover__menu-item:hover .gridicon,.popover__menu-item:focus .gridicon{color:#fff}.popover__menu-item[disabled]{color:#f6f6f6}.popover__menu-item[disabled] .gridicon{color:#f6f6f6}.popover__menu-item[disabled]:hover,.popover__menu-item[disabled]:focus{background:transparent;cursor:default}.popover__menu-item:last-child{margin-bottom:5px}.popover__menu-item::-moz-focus-inner{border:0}.popover__menu-item .gridicon{color:#b0b5b8;vertical-align:bottom;margin-right:8px}.popover__menu-item .gridicons-cloud-download{position:relative;top:2px}.popover__menu-item .gridicons-external{top:0}.popover__menu-separator,.popover__hr{margin:4px 0;background:#f6f6f6}.tooltip.popover .popover__arrow{border-width:6px}.tooltip.popover.is-bottom-right .popover__arrow,.tooltip.popover.is-bottom-left .popover__arrow,.tooltip.popover.is-bottom .popover__arrow{border-bottom-color:#50575d;top:4px;right:10px}.tooltip.popover.is-bottom-right .popover__arrow::before,.tooltip.popover.is-bottom-left .popover__arrow::before,.tooltip.popover.is-bottom .popover__arrow::before{display:none}.tooltip.popover.is-bottom-right.is-error .popover__arrow,.tooltip.popover.is-bottom-left.is-error .popover__arrow,.tooltip.popover.is-bottom.is-error .popover__arrow{border-bottom-color:#eb0001}.tooltip.popover.is-bottom-right.is-warning .popover__arrow,.tooltip.popover.is-bottom-left.is-warning .popover__arrow,.tooltip.popover.is-bottom.is-warning .popover__arrow{border-bottom-color:#f6c200}.tooltip.popover.is-bottom-right.is-success .popover__arrow,.tooltip.popover.is-bottom-left.is-success .popover__arrow,.tooltip.popover.is-bottom.is-success .popover__arrow{border-bottom-color:#008a00}.tooltip.popover.is-top .popover__arrow,.tooltip.popover.is-top-left .popover__arrow,.tooltip.popover.is-top-right .popover__arrow{border-top-color:#50575d;bottom:4px;right:10px}.tooltip.popover.is-top .popover__arrow::before,.tooltip.popover.is-top-left .popover__arrow::before,.tooltip.popover.is-top-right .popover__arrow::before{display:none}.tooltip.popover.is-top.is-error .popover__arrow,.tooltip.popover.is-top-left.is-error .popover__arrow,.tooltip.popover.is-top-right.is-error .popover__arrow{border-top-color:#eb0001}.tooltip.popover.is-top.is-warning .popover__arrow,.tooltip.popover.is-top-left.is-warning .popover__arrow,.tooltip.popover.is-top-right.is-warning .popover__arrow{border-top-color:#f6c200}.tooltip.popover.is-top.is-success .popover__arrow,.tooltip.popover.is-top-left.is-success .popover__arrow,.tooltip.popover.is-top-right.is-success .popover__arrow{border-top-color:#008a00}.tooltip.popover.is-top .popover__arrow,.tooltip.popover.is-bottom .popover__arrow{margin-left:-6px}.tooltip.popover.is-left,.tooltip.popover.is-right{padding-top:0}.tooltip.popover.is-left .popover__arrow,.tooltip.popover.is-right .popover__arrow{margin-top:-6px}.tooltip.popover.is-left .popover__arrow::before,.tooltip.popover.is-right .popover__arrow::before{display:none}.tooltip.popover.is-left.is-error .popover__arrow,.tooltip.popover.is-right.is-error .popover__arrow{border-right-color:#eb0001}.tooltip.popover.is-left.is-warning .popover__arrow,.tooltip.popover.is-right.is-warning .popover__arrow{border-right-color:#f6c200}.tooltip.popover.is-left.is-success .popover__arrow,.tooltip.popover.is-right.is-success .popover__arrow{border-right-color:#008a00}.tooltip.popover.is-left .popover__arrow{margin-right:4px;border-left-color:#50575d}.tooltip.popover.is-right .popover__arrow{margin-left:4px;border-right-color:#50575d}.tooltip.popover .popover__inner{border:0;box-shadow:none;border-radius:2px;color:#fff;background:#50575d;font-size:12px;padding:6px 10px;text-align:left}.tooltip.popover.is-error .popover__inner{background:#eb0001}.tooltip.popover.is-warning .popover__inner{background:#f6c200}.tooltip.popover.is-success .popover__inner{background:#008a00}.tooltip.popover ul{list-style:none;margin:0;padding:0}.tooltip.popover ul li{font-size:11px;font-weight:100;border:0;padding:2px 0}.tooltip__hr{margin:8px 0;background:#969ca1}#woocommerce-order-label .inside{margin:0;padding:0}.wc-connect-admin-dev-notice{width:700px}.wc-connect-admin-dev-notice p{font-style:italic;color:#969ca1}.wcs-pointer-page-dimmer{display:none;position:fixed;background-color:black;top:0;bottom:0;left:0;right:0;z-index:9998;opacity:0.5}.gridicon{fill:currentColor}#woocommerce-services-shipping-debug .packing-log{white-space:pre-wrap}.wp-core-ui.wp-admin #side-sortables .wcc-root .shipping-label__container{display:block}.wp-core-ui.wp-admin #woocommerce-order-shipment-tracking .wcc-root.wc-connect-create-shipping-label{padding:0}.wp-core-ui.wp-admin #woocommerce-order-shipment-tracking .wcc-root.wc-connect-create-shipping-label .shipping-label__container .button.is-placeholder,.wp-core-ui.wp-admin #woocommerce-order-shipment-tracking .wcc-root.wc-connect-create-shipping-label .shipping-label__container .button.is-primary{border-width:1px;border-style:solid;border-radius:3px;background:#0085ba;border-color:#0073aa #006799 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799}.shipping-label__item-menu-reprint-expired.popover__menu-item{cursor:pointer;background:transparent;color:#ccced0}.shipping-label__item-menu-reprint-expired.popover__menu-item .gridicon{color:#ccced0}

.wp-core-ui.wp-admin .wcc-root .screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important}.wp-core-ui.wp-admin .wcc-root .screen-reader-text:hover,.wp-core-ui.wp-admin .wcc-root .screen-reader-text:active,.wp-core-ui.wp-admin .wcc-root .screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}

.wp-core-ui.wp-admin .wcc-root .global-notices{text-align:right;pointer-events:none;z-index:179;position:fixed;top:auto;right:0;bottom:0;left:0}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices{top:63px;right:16px;bottom:auto;left:auto;max-width:calc( 100% - 32px)}}@media (min-width: 961px){.wp-core-ui.wp-admin .wcc-root .global-notices{top:71px;right:24px;max-width:calc( 100% - 48px)}}@media (min-width: 1041px){.wp-core-ui.wp-admin .wcc-root .global-notices{right:32px;max-width:calc( 100% - 64px)}}.wp-core-ui.wp-admin .wcc-root .global-notices .notice{flex-wrap:nowrap;margin-bottom:0;text-align:left;pointer-events:auto;border-radius:0;box-shadow:0 2px 5px rgba(0,0,0,0.2),0 0 56px rgba(0,0,0,0.15)}.wp-core-ui.wp-admin .wcc-root .global-notices .notice .notice__icon-wrapper{border-radius:0}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice{display:flex;overflow:hidden;margin-bottom:24px;border-radius:3px}.wp-core-ui.wp-admin .wcc-root .global-notices .notice .notice__icon-wrapper{border-radius:3px 0 0 3px}}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice a.notice__action{font-size:14px;padding:13px 16px}}.wp-core-ui.wp-admin .wcc-root .global-notices .notice__dismiss{flex-shrink:0}@media (min-width: 661px){.wp-core-ui.wp-admin .wcc-root .global-notices .notice__dismiss{padding:13px 16px 0}}

.wp-core-ui.wp-admin .wcc-root .token-field{margin:0;padding:7px 14px;width:100%;color:var(--color-neutral-700);font-size:16px;line-height:1.5;border:1px solid var(--color-neutral-100);background-color:var(--color-white);transition:all 0.15s ease-in-out;box-sizing:border-box}.wp-core-ui.wp-admin .wcc-root .token-field:-ms-input-placeholder{color:var(--color-neutral-500)}.wp-core-ui.wp-admin .wcc-root .token-field::placeholder{color:var(--color-neutral-500)}.wp-core-ui.wp-admin .wcc-root .token-field:hover{border-color:var(--color-neutral-200)}.wp-core-ui.wp-admin .wcc-root .token-field:focus{border-color:var(--color-primary);outline:none;box-shadow:0 0 0 2px var(--color-primary-100)}.wp-core-ui.wp-admin .wcc-root .token-field:focus:hover{box-shadow:0 0 0 2px var(--color-primary-200)}.wp-core-ui.wp-admin .wcc-root .token-field:focus::-ms-clear{display:none}.wp-core-ui.wp-admin .wcc-root .token-field:disabled{background:var(--color-neutral-0);border-color:var(--color-neutral-0);color:var(--color-neutral-200);opacity:1;-webkit-text-fill-color:var(--color-neutral-200)}.wp-core-ui.wp-admin .wcc-root .token-field:disabled:hover{cursor:default}.wp-core-ui.wp-admin .wcc-root .token-field:disabled:-ms-input-placeholder{color:var(--color-neutral-200)}.wp-core-ui.wp-admin .wcc-root .token-field:disabled::placeholder{color:var(--color-neutral-200)}.wp-core-ui.wp-admin .wcc-root .is-valid.token-field{border-color:var(--color-success)}.wp-core-ui.wp-admin .wcc-root .is-valid.token-field:hover{border-color:var(--color-success-dark)}.wp-core-ui.wp-admin .wcc-root .is-error.token-field{border-color:var(--color-error)}.wp-core-ui.wp-admin .wcc-root .is-error.token-field:hover{border-color:var(--color-error-dark)}.wp-core-ui.wp-admin .wcc-root .token-field:focus.is-valid{box-shadow:0 0 0 2px var(--color-success-100)}.wp-core-ui.wp-admin .wcc-root .token-field:focus.is-valid:hover{box-shadow:0 0 0 2px var(--color-success-200)}.wp-core-ui.wp-admin .wcc-root .token-field:focus.is-error{box-shadow:0 0 0 2px var(--color-error-100)}.wp-core-ui.wp-admin .wcc-root .token-field:focus.is-error:hover{box-shadow:0 0 0 2px var(--color-error-200)}.wp-core-ui.wp-admin .wcc-root .token-field{box-sizing:border-box;width:100%;margin:0;padding:0;background-color:var(--color-white);border:1px solid var(--color-neutral-100);color:var(--color-neutral-700);cursor:text;transition:all 0.15s ease-in-out}.wp-core-ui.wp-admin .wcc-root .token-field:hover{border-color:var(--color-neutral-200)}.wp-core-ui.wp-admin .wcc-root .token-field.is-disabled{background:var(--color-neutral-0);border-color:var(--color-neutral-0)}.wp-core-ui.wp-admin .wcc-root .token-field.is-active{border-color:var(--color-primary);box-shadow:0 0 0 2px var(--color-primary-light)}.wp-core-ui.wp-admin .wcc-root .token-field__input-container{display:flex;flex-wrap:wrap;align-items:flex-start;padding:5px 14px 5px 0}.wp-core-ui.wp-admin .wcc-root input[type='text'].token-field__input{display:inline-block;width:auto;max-width:100%;margin:2px 0 2px 8px;padding:0 0 0 6px;line-height:24px;background:inherit;border:0;outline:none;font-family:inherit;font-size:14px;color:var(--color-neutral-700)}.wp-core-ui.wp-admin .wcc-root input[type='text'].token-field__input:focus{box-shadow:none}.wp-core-ui.wp-admin .wcc-root .token-field__token{font-size:14px;display:flex;margin:2px 0 2px 8px;color:var(--color-white);overflow:hidden}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-success .token-field__token-text,.wp-core-ui.wp-admin .wcc-root .token-field__token.is-success .token-field__remove-token{background:var(--color-success)}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-error .token-field__token-text,.wp-core-ui.wp-admin .wcc-root .token-field__token.is-error .token-field__remove-token{background:var(--color-error)}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-validating .token-field__token-text,.wp-core-ui.wp-admin .wcc-root .token-field__token.is-validating .token-field__remove-token{background:var(--color-neutral-light)}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-borderless{position:relative;padding:0 16px 0 0}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-borderless .token-field__token-text{background:transparent;color:var(--color-primary)}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-borderless .token-field__remove-token{background:transparent;color:var(--color-neutral-light);position:absolute;top:1px;right:0}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-borderless.is-success .token-field__token-text{color:var(--color-success)}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-borderless.is-error .token-field__token-text{color:var(--color-error);border-radius:4px 0 0 4px;padding:0 4px 0 6px}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-borderless.is-validating .token-field__token-text{color:var(--color-neutral-700)}.wp-core-ui.wp-admin .wcc-root .token-field__token.is-disabled .token-field__remove-token{cursor:default}.wp-core-ui.wp-admin .wcc-root .token-field__token-text,.wp-core-ui.wp-admin .wcc-root .token-field__remove-token{display:inline-block;line-height:24px;background:var(--color-neutral-500);transition:all 0.2s cubic-bezier(0.4, 1, 0.4, 1)}.wp-core-ui.wp-admin .wcc-root .token-field__token-text{border-radius:4px 0 0 4px;padding:0 4px 0 6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wp-core-ui.wp-admin .wcc-root .token-field__remove-token{cursor:pointer;border-radius:0 4px 4px 0;color:var(--color-neutral-100)}.wp-core-ui.wp-admin .wcc-root .token-field__remove-token:hover{color:white;background:var(--color-neutral-400)}.wp-core-ui.wp-admin .wcc-root .token-field__suggestions-list{background:var(--color-white);max-height:0;overflow-y:scroll;transition:all 0.15s ease-in-out;list-style:none;margin:0}.wp-core-ui.wp-admin .wcc-root .token-field__suggestions-list.is-expanded{background:var(--color-white);border-top:1px solid var(--color-neutral-100);max-height:9em;padding-top:3px}.wp-core-ui.wp-admin .wcc-root .token-field__suggestion{color:var(--color-neutral-light);display:block;font-size:13px;padding:4px 8px;cursor:pointer}.wp-core-ui.wp-admin .wcc-root .token-field__suggestion.is-selected{background:var(--color-accent);color:var(--color-white)}.wp-core-ui.wp-admin .wcc-root .token-field__suggestion-match{color:var(--color-neutral-700)}

.wp-core-ui.wp-admin .wcc-root .external-link .gridicons-external{color:currentColor;margin-left:3px;margin-right:0;top:2px;position:relative}.wp-core-ui.wp-admin .wcc-root .external-link:hover{cursor:pointer}.wp-core-ui.wp-admin .wcc-root .icon-first .gridicons-external{margin-left:0;margin-right:3px}

@keyframes rotate-spinner{100%{transform:rotate(360deg)}}.wp-core-ui.wp-admin .wcc-root .spinner{display:flex;align-items:center}.wp-core-ui.wp-admin .wcc-root .spinner__outer,.wp-core-ui.wp-admin .wcc-root .spinner__inner{margin:auto;box-sizing:border-box;border:0.1em solid transparent;border-radius:50%;animation:3s linear infinite;animation-name:rotate-spinner}.wp-core-ui.wp-admin .wcc-root .spinner__outer{border-top-color:var(--color-accent)}.wp-core-ui.wp-admin .wcc-root .spinner__inner{width:100%;height:100%;border-top-color:var(--color-accent);border-right-color:var(--color-accent);opacity:0.4}

.wp-core-ui.wp-admin .wcc-root .purchase-section{text-align:center}.wp-core-ui.wp-admin .wcc-root .purchase-section__explanation{padding-top:15px;font-size:12px;color:gray}

.wp-core-ui.wp-admin .wcc-root .gridicon.ellipsis-menu__toggle-icon{transition:transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275)}.wp-core-ui.wp-admin .wcc-root .ellipsis-menu.is-menu-visible .gridicon.ellipsis-menu__toggle-icon{transform:rotate(90deg)}

.wp-core-ui.wp-admin .wcc-root .count{display:inline-block;padding:1px 6px;border:solid 1px var(--color-border);border-radius:12px;font-size:11px;font-weight:600;line-height:14px;color:var(--color-text);text-align:center}.wp-core-ui.wp-admin .wcc-root .count.is-primary{color:var(--color-white);border-color:var(--color-accent);background-color:var(--color-accent)}

.wp-core-ui.wp-admin .wcc-root .section-header.card{display:flex;align-items:center;padding-top:11px;padding-bottom:11px;position:relative;line-height:28px}.wp-core-ui.wp-admin .wcc-root .section-header.card::after{content:''}.wp-core-ui.wp-admin .wcc-root .section-header.card.is-empty .section-header__label::after{content:'\A0'}.wp-core-ui.wp-admin .wcc-root .section-header__label{display:flex;align-items:center;flex-grow:1;position:relative;overflow:hidden}.wp-core-ui.wp-admin .wcc-root .section-header__label::before{content:'';display:block;position:absolute;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;background:linear-gradient(to right, rgba( 255,255,255 , 0 ), rgba( 255,255,255 , 1 ) 90%);top:0;bottom:0;right:0;left:auto;width:20%;height:auto}.wp-core-ui.wp-admin .wcc-root .section-header__label .count{margin-left:8px}.wp-core-ui.wp-admin .wcc-root .section-header__actions{flex-grow:0;position:relative}.wp-core-ui.wp-admin .wcc-root .section-header__actions::after{content:'.';display:block;height:0;width:0;clear:both;visibility:hidden;overflow:hidden}.wp-core-ui.wp-admin .wcc-root .section-header__label{color:var(--color-neutral-700);font-size:14px}.wp-core-ui.wp-admin .wcc-root .section-header__actions .button{float:left;margin-right:8px}.wp-core-ui.wp-admin .wcc-root .section-header__actions>.button:last-child{margin-right:0}

