@charset "utf-8";

.components-custom-select-control { position: relative; }

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

.components-custom-select-control__button { border: 1px solid rgb(117, 117, 117); border-radius: 2px; min-height: 30px; min-width: 130px; position: relative; text-align: left; }

.components-custom-select-control__button.components-custom-select-control__button { padding-right: 24px; }

.components-custom-select-control__button:focus:not(:disabled) { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 .5px var(--wp-admin-theme-color); }

.components-custom-select-control__button .components-custom-select-control__button-icon { height: 100%; padding: 0px; position: absolute; right: 0px; top: 0px; }

.components-custom-select-control__menu { background-color: rgb(255, 255, 255); max-height: 400px; min-width: 100%; overflow: auto; padding: 0px; position: absolute; z-index: 1000000; }

.components-custom-select-control__menu:focus { border: 1px solid rgb(30, 30, 30); border-radius: 2px; outline: none; transition: none; }

.components-custom-select-control__item { align-items: center; display: flex; list-style-type: none; padding: 10px 5px 10px 25px; cursor: default; }

.components-custom-select-control__item.is-highlighted { background: rgb(221, 221, 221); }

.components-custom-select-control__item-icon { margin-left: -20px; margin-right: 0px; }

.components-spinner { display: inline-block; background-color: rgb(148, 148, 148); width: 18px; height: 18px; opacity: 0.7; margin: 5px 11px 0px; border-radius: 100%; position: relative; }

.components-spinner::before { content: ""; position: absolute; background-color: rgb(255, 255, 255); top: 3px; left: 3px; width: 4px; height: 4px; border-radius: 100%; transform-origin: 6px 6px; animation: 1s linear 0s infinite normal none running components-spinner__animation; }

@-webkit-keyframes components-spinner__animation { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1turn); }
}

@keyframes components-spinner__animation { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1turn); }
}

.components-snackbar { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; background-color: rgb(30, 30, 30); border-radius: 2px; box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px; color: rgb(255, 255, 255); padding: 16px 24px; width: 100%; max-width: 600px; box-sizing: border-box; cursor: pointer; }

@media (min-width: 600px) {
  .components-snackbar { width: fit-content; }
}

.components-snackbar:focus { box-shadow: 0 0 0 1px #fff,0 0 0 3px var(--wp-admin-theme-color); }

.components-snackbar__action.components-button { margin-left: 32px; color: rgb(255, 255, 255); height: auto; flex-shrink: 0; line-height: 1.4; padding: 0px; }

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-secondary) { text-decoration: underline; background-color: transparent; }

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):focus { color: rgb(255, 255, 255); box-shadow: none; outline: rgb(255, 255, 255) dotted 1px; }

.components-snackbar__action.components-button:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):hover { color: var(--wp-admin-theme-color); }

.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-combobox-control { width: 100%; }

input.components-combobox-control__input[type="text"] { width: 100%; border: none; box-shadow: none; padding: 2px; margin: 0px; line-height: inherit; min-height: auto; }

input.components-combobox-control__input[type="text"]:focus { outline: none; box-shadow: none; }

.components-combobox-control__suggestions-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; box-shadow: transparent 0px 0px 0px; transition: box-shadow 0.1s linear; border-radius: 2px; border: 1px solid rgb(117, 117, 117); font-size: 16px; line-height: normal; display: flex; flex-wrap: wrap; align-items: flex-start; width: 100%; margin: 0px 0px 8px; padding: 4px; }

@media (prefers-reduced-motion: reduce) {
  .components-combobox-control__suggestions-container { transition-duration: 0s; }
}

@media (min-width: 600px) {
  .components-combobox-control__suggestions-container { font-size: 13px; line-height: normal; }
}

.components-combobox-control__suggestions-container:focus { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 .5px var(--wp-admin-theme-color); outline: transparent solid 2px; }

.components-combobox-control__suggestions-container::-webkit-input-placeholder { color: rgba(30, 30, 30, 0.62); }

.is-dark-theme .components-combobox-control__suggestions-container::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.65); }

.components-combobox-control__suggestions-container:focus-within { border-color: var(--wp-admin-theme-color); box-shadow: 0 0 0 .5px var(--wp-admin-theme-color); outline: transparent solid 2px; }

.components-combobox-control__reset.components-button { display: flex; height: 24px; min-width: 24px; padding: 0px; }