@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap");
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.eot");
  src: url("../fonts/Lato-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Black.woff2") format("woff2"), url("../fonts/Lato-Black.woff") format("woff"), url("../fonts/Lato-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  text-rendering: optimizeLegibility;
}
html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #F8F9FB;
}

body {
  font: normal 16px/24px Nunito, sans-serif;
  color: #333;
}

input, textarea {
  font: normal 14px/18px Nunito, sans-serif;
  color: #333;
}

h1, h2, h3 {
  font-weight: 900;
  color: #333;
}

h1 {
  font: 900 48px/80px Lato, sans-serif;
}
.mobile-ui h1 {
  font: 900 32px/48px Lato, sans-serif;
}

h2 {
  font: 900 32px/48px Lato, sans-serif;
}
.mobile-ui h2 {
  font: 900 28px/42px Lato, sans-serif;
}

h3 {
  font: 900 24px/32px Lato, sans-serif;
}
.mobile-ui h3 {
  font: 900 22px/26px Lato, sans-serif;
}

x-comp {
  display: block;
}

* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-thumb {
  background-color: #B5BEC5;
}

/* Button */
a.button {
  display: inline-flex;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: 700;
  text-align: center;
  color: #333;
  cursor: pointer;
  user-select: none;
  position: relative;
  --button-spinner-size: 22px;
}
a.button .text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
a.button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
a.button .icon svg {
  display: block;
  --color: #F37530;
}
a.button.disabled {
  opacity: 0.5;
}
a.button.standard, a.button.primary, a.button.critical, a.button.light {
  padding: 10px 40px;
  border-radius: 48px;
  border: 2px solid transparent;
}
a.button.standard:not(.disabled):hover, a.button.primary:not(.disabled):hover, a.button.critical:not(.disabled):hover, a.button.light:not(.disabled):hover {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
}
a.button.standard.small, a.button.primary.small, a.button.critical.small, a.button.light.small {
  padding: 6px 16px;
}
a.button.standard {
  background: linear-gradient(#F8F9FB, #F8F9FB) padding-box, linear-gradient(135deg, #FF5964 0%, #F37530 100%) border-box;
}
a.button.primary {
  background: linear-gradient(135deg, #FF5964 0%, #F37530 100%) border-box;
}
a.button.critical {
  background: #B51F1F border-box;
}
a.button.light {
  background: #EBEFF2;
}
a.button.light .icon svg {
  --color: #767A7D;
}
a.button.primary, a.button.critical {
  color: white;
  --button-spinner-color: white;
}
a.button.primary .icon svg, a.button.critical .icon svg {
  --color: white;
}
a.button.transparent {
  font: normal 14px/18px Nunito, sans-serif;
  color: #F37530;
  padding: 8px 0;
  --button-spinner-width: 2px;
  --button-spinner-color: #767A7D;
}
a.button.transparent:hover {
  color: #CD6831;
}
a.button.transparent:hover svg {
  --color: #CD6831;
}
a.button.rectangular {
  padding: 8px 16px;
  border-radius: 8px;
  background: white;
  border: 1px solid #EBEFF2;
  column-gap: 8px;
}
a.button.rectangular:not(.disabled):hover {
  border-color: #dce3e8;
}
a.button.rectangular .text {
  font: normal 14px/18px Nunito, sans-serif;
}
a.button.rectangular .icon {
  width: 24px;
  height: 24px;
}
a.button.circular {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  --button-spinner-color: #F37530;
}
a.button.circular .icon {
  width: 20px;
  height: 20px;
}
a.button.circular.small, a.button.circular.tiny {
  border: 1px solid #B5BEC5;
  box-shadow: none;
}
a.button.circular.small svg, a.button.circular.tiny svg {
  --color: #767A7D;
}
a.button.circular.small:not(.disabled):hover svg, a.button.circular.tiny:not(.disabled):hover svg {
  --color: #F37530;
}
a.button.circular.small {
  width: 38px;
  height: 38px;
}
a.button.circular.tiny {
  width: 32px;
  height: 32px;
}
a.button.square {
  flex-direction: column;
  gap: 8px;
  border-radius: 8px;
  padding: 16px;
  border: none;
  background: #EBEFF2;
}
a.button.square:not(.disabled):hover {
  background: #dce3e8;
}
a.button.square.small {
  width: 36px;
  height: 36px;
}
a.button.square .text {
  color: #767A7D;
}
a.button.square .icon {
  width: 24px;
  height: 24px;
}
a.button.square .icon svg {
  --color: #767A7D;
}
a.button.error {
  background: #B51F1F !important;
  color: white !important;
}
a.button.success {
  background: #008A00 !important;
  border-color: #008A00 !important;
  color: white !important;
}
@keyframes button-spinner-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
a.button.working > * {
  visibility: hidden;
}
a.button.working:after {
  content: "";
  position: absolute;
  left: calc(50% - var(--button-spinner-size) / 2);
  top: calc(50% - var(--button-spinner-size) / 2);
  border: var(--button-spinner-width, 3px) solid var(--button-spinner-color, #333);
  border-top-color: transparent;
  border-left-color: transparent;
  box-sizing: border-box;
  width: var(--button-spinner-size);
  height: var(--button-spinner-size);
  border-radius: 50%;
  animation: button-spinner-rotation 0.6s infinite linear;
}

/* ActionButton */
a.action-button {
  display: grid;
  grid-template-areas: "text right" "bottom bottom";
  grid-template-columns: auto min-content;
  grid-template-rows: auto min-content;
  justify-content: stretch;
  text-align: left;
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  min-height: 64px;
}
a.action-button.with-icon {
  grid-template-areas: "icon text right" "bottom bottom bottom";
  grid-template-columns: 32px auto min-content;
}
a.action-button.style-compact {
  grid-template-areas: "text right" "bottom right";
}
a.action-button.style-compact.with-icon {
  grid-template-areas: "icon text right" "icon bottom right";
}
a.action-button.style-compact .bottom-content {
  font: normal 14px/18px Nunito, sans-serif;
  margin-top: 4px;
}
a.action-button + a.action-button {
  margin-top: 16px;
}
a.action-button .icon {
  grid-area: icon;
}
a.action-button .right-icon {
  grid-area: right;
}
a.action-button .right-icon > * {
  display: block;
}
a.action-button .right-text {
  grid-area: right;
}
a.action-button .text {
  grid-area: text;
}
a.action-button .text .badge {
  display: inline;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #F37530;
  background: #FCF3EE;
  border-radius: 40px;
  margin-left: 10px;
}
a.action-button .right-text {
  font-weight: 400;
  white-space: nowrap;
}
a.action-button .right-text.style-gray {
  color: #B5BEC5;
}
a.action-button .right-text.style-green {
  color: #008A00;
}
a.action-button .bottom-content {
  flex-basis: 100%;
  margin-top: 16px;
  font-weight: normal;
  grid-area: bottom;
}
a.action-button:hover {
  --arrow-color: #F37530;
}
a.action-button.disabled {
  box-shadow: unset;
  background: #EBEFF2;
  opacity: 1;
  pointer-events: none;
}
a.action-button.disabled .icon:not(.right-icon) {
  opacity: 0.5;
}

/* ActionButtonsGroup */
x-comp.action-buttons-group + x-comp.action-buttons-group {
  margin-top: 16px;
}
x-comp.action-buttons-group .headline {
  color: #767A7D;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
x-comp.action-buttons-group .headline:before, x-comp.action-buttons-group .headline:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #B5BEC5;
}

/* ButtonsGroup */
x-comp.buttons-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
x-comp.buttons-group .button {
  width: 320px;
  max-width: 320px;
  min-width: 0;
}

.desktop-ui x-comp.buttons-group.layout-auto {
  flex-direction: row-reverse;
}

/* Label */
x-comp.label {
  display: flex;
  column-gap: 4px;
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
x-comp.label.headline {
  font-size: 18px;
  color: #F37530;
}

/* FloatingContainer */
x-comp.floating-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  z-index: 200;
  overscroll-behavior: none;
}
x-comp.floating-container .content {
  position: absolute;
}
x-comp.floating-container.hidden {
  display: none;
}

/* FloatingList */
x-comp.floating-list {
  padding: 8px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #EBEFF2;
  z-index: 5;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto !important;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.05);
}
x-comp.floating-list .option, x-comp.floating-list .empty-options-text {
  padding: 8px;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.floating-list .option {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  border-radius: 4px;
}
x-comp.floating-list .option .text {
  padding: 4px 0;
}
x-comp.floating-list .option .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.floating-list .option .icon svg {
  width: inherit;
  height: inherit;
}
x-comp.floating-list .option .text, x-comp.floating-list .option .icon {
  pointer-events: none;
}
x-comp.floating-list .option:hover, x-comp.floating-list .option.focused {
  background: #F8F9FB;
}
x-comp.floating-list .option.selected .icon svg {
  --bg-color: #F37530;
}
x-comp.floating-list .option.hidden {
  display: none;
}
x-comp.floating-list .empty-options-text, x-comp.floating-list .no-results-text {
  color: #767A7D;
}
x-comp.floating-list .no-results-text {
  font: normal 14px/18px Nunito, sans-serif;
  color: #B5BEC5;
  margin-top: 8px;
  padding: 8px;
  display: none;
}
x-comp.floating-list .no-results-text.visible {
  display: block;
}
x-comp.floating-list .group + .group {
  border-top: 1px solid #EBEFF2;
}
x-comp.floating-list .group > .label {
  padding: 8px;
  font: normal 14px/18px Nunito, sans-serif;
  color: #B5BEC5;
  position: sticky;
  top: -8px;
  background: white;
}
x-comp.floating-list .bottom-bar {
  margin-top: 8px;
  padding: 16px 8px 8px;
  text-align: center;
  position: relative;
}
x-comp.floating-list .bottom-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 1px;
  background: #EBEFF2;
}
x-comp.floating-list .bottom-bar > .text {
  text-align: center;
  color: #767A7D;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.floating-list .bottom-bar > .text + .button {
  margin-top: 8px;
}
x-comp.floating-list .search {
  position: sticky;
  top: -8px;
  background: white;
}
x-comp.floating-list .search .search-bar {
  border: none;
  padding: 4px 6px 4px 13px;
  column-gap: 20px;
}
x-comp.floating-list .search .search-bar input {
  font: normal 14px/18px Nunito, sans-serif;
}

.desktop-ui x-comp.floating-list {
  max-height: 270px;
}

.mobile-ui x-comp.floating-list {
  max-height: 186px;
}
.mobile-ui x-comp.floating-list .bottom-bar .button {
  width: 100%;
}

/* FloatingMenu */
x-comp.floating-menu {
  padding: 8px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #EBEFF2;
  z-index: 5;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.05);
  min-width: 100px;
}
x-comp.floating-menu > .option {
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  align-items: center;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.floating-menu > .option .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.floating-menu > .option .icon svg {
  max-width: 16px;
  max-height: 16px;
  --color: #B5BEC5;
}
x-comp.floating-menu > .option:hover {
  background: #F8F9FB;
}

/* TextField */
x-comp.text-field.read-only > .box {
  background-color: #EBEFF2;
}
x-comp.text-field.invalid > .box:not(.focused) {
  border-color: #B51F1F;
  background-color: #FEE;
}
x-comp.text-field[data-length-indication=max] {
  --length-indication-color: #E03838;
}
x-comp.text-field[data-length-indication=long] {
  --length-indication-color: #F37530;
}
x-comp.text-field[data-length-indication=ok] {
  --length-indication-color: #008A00;
}
x-comp.text-field.disabled > .box {
  cursor: default;
  background: #EBEFF2;
}
x-comp.text-field > .box {
  border: 1px solid #B5BEC5;
  border-radius: 8px;
  background-color: white;
  padding: 16px;
  position: relative;
  transition: background-color 0.15s, border-color 0.1s;
  cursor: text;
  display: flex;
  column-gap: 8px;
}
x-comp.text-field > .box input, x-comp.text-field > .box textarea {
  border: none;
  outline: none;
  flex: 1;
  padding: 0;
  margin: 0;
  background: transparent;
  resize: none;
  font: normal 14px/18px Nunito, sans-serif;
  color: #333;
}
x-comp.text-field > .box input[type=password], x-comp.text-field > .box textarea[type=password] {
  letter-spacing: 0.26em;
}
x-comp.text-field > .box input:-webkit-autofill, x-comp.text-field > .box textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
x-comp.text-field > .box input::placeholder, x-comp.text-field > .box textarea::placeholder {
  color: #B5BEC5;
  opacity: 1;
}
x-comp.text-field > .box label {
  position: absolute;
  top: 25px;
  left: 16px;
  font: normal 14px/18px Nunito, sans-serif;
  color: #B5BEC5;
  pointer-events: none;
  user-select: none;
  transform-origin: left top;
  transform: translateY(-93%) scale(0.72);
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.12s, color 0.1s;
}
x-comp.text-field > .box .password-toggle {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
x-comp.text-field > .box .password-toggle.active svg:first-child {
  display: none;
}
x-comp.text-field > .box .password-toggle:not(.active) svg:last-child {
  display: none;
}
x-comp.text-field > .box .password-toggle:hover {
  --color: #333;
}
x-comp.text-field > .box .suffix {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.text-field > .box .counter {
  font: normal 14px/18px Nunito, sans-serif;
  color: var(--length-indication-color, #B5BEC5);
}
x-comp.text-field > .box .required-mark {
  font: normal 14px/18px Nunito, sans-serif;
  color: #F37530;
}
x-comp.text-field > .box .icon {
  display: flex;
  flex-shrink: 0;
  pointer-events: none;
  width: 18px;
  height: 18px;
}
x-comp.text-field > .box .icon svg {
  width: 100%;
  height: auto;
  --color: #767A7D;
}
x-comp.text-field > .box.multiline {
  padding-right: 5px;
}
x-comp.text-field > .box.multiline > textarea {
  padding-right: 10px;
}
x-comp.text-field > .box.multiline > textarea::-webkit-scrollbar {
  width: 4px;
}
x-comp.text-field > .box.multiline > textarea::-webkit-scrollbar-track {
  background-color: #EBEFF2;
}
x-comp.text-field > .box.multiline > textarea::-webkit-scrollbar-thumb {
  background-color: #767A7D;
}
x-comp.text-field > .box.multiline .counter {
  position: absolute;
  top: 16px;
  right: 16px;
}
x-comp.text-field > .box.with-label > input, x-comp.text-field > .box.with-label > textarea {
  position: relative;
  top: 7px;
}
x-comp.text-field > .box.with-counter > textarea {
  padding-right: 46px;
}
x-comp.text-field > .box.focused {
  border-color: #F37530;
}
x-comp.text-field > .box.focused > label {
  color: #F37530;
}
x-comp.text-field > .box:not(.focused):not(.filled):not(.with-placeholder) > label {
  transform: translateY(-50%);
}
x-comp.text-field > .length-bar {
  margin: 8px 8px 0;
  height: 3px;
  background: #EBEFF2;
  border-radius: 4px;
}
x-comp.text-field > .length-bar .progress {
  height: 100%;
  width: 0;
  background: var(--length-indication-color, #B5BEC5);
  border-radius: 4px;
  transition: width 0.2s;
}

/* PhoneField */
x-comp.phone-field {
  display: flex;
}
x-comp.phone-field.dropdown-visible .box {
  border-color: #F37530;
}
x-comp.phone-field.dropdown-visible .country-box {
  border-color: #F37530;
}
x-comp.phone-field.dropdown-visible .country-box .expander {
  transform: rotate(180deg);
}
x-comp.phone-field:focus-within .country-box {
  border-color: #F37530;
}
x-comp.phone-field .country-box {
  border: 1px solid #B5BEC5;
  border-right: none;
  border-radius: 8px 0 0 8px;
  background-color: white;
  padding: 4px 12px;
  position: relative;
  transition: border-color 0.1s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-align: center;
}
x-comp.phone-field .country-box .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
x-comp.phone-field .country-box .country-icon {
  grid-area: flag;
}
x-comp.phone-field .country-box .code {
  grid-area: code;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.phone-field .country-box .expander {
  grid-area: expander;
  display: flex;
  width: 12px;
  height: 8px;
}
x-comp.phone-field .country-box .expander svg {
  width: 100%;
  height: auto;
}
x-comp.phone-field > .box {
  flex-grow: 1;
  border-radius: 0 8px 8px 0;
}
x-comp.phone-field.invalid > .country-box {
  border-color: #B51F1F;
  background-color: #FEE;
}

/* CountryIcon */
x-comp.country-icon {
  width: 24px;
  height: 16px;
  box-shadow: 0 0 0 1px #EBEFF2;
}
x-comp.country-icon .flag {
  background-size: 24px auto;
  background-repeat: no-repeat;
  height: 100%;
}

/* DropDown */
x-comp.drop-down {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #B5BEC5;
  border-radius: 8px;
  background-color: white;
  padding: 12px 50px 12px 16px;
  position: relative;
  transition: background-color 0.15s, border-color 0.1s;
}
x-comp.drop-down > .icon {
  display: none;
  width: 32px;
  height: 26px;
  position: relative;
}
x-comp.drop-down > .icon svg {
  max-width: 32px;
  max-height: 32px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
x-comp.drop-down > input {
  border: none;
  outline: none;
  width: 100%;
  height: 26px;
  padding: 0;
  margin: 0;
  box-sizing: content-box;
  background: transparent;
  pointer-events: none;
}
x-comp.drop-down > input::placeholder {
  color: #B5BEC5;
}
x-comp.drop-down > .expander {
  position: absolute;
  top: calc(50% - 9px);
  right: 16px;
  width: 18px;
  height: 18px;
  transition: transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.drop-down > .expander svg {
  width: 12px;
}
x-comp.drop-down > .spinner-mask {
  position: absolute;
  background: white;
  left: 4px;
  top: 4px;
  right: 42px;
  bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 12px;
}
x-comp.drop-down > .tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  height: 26px;
  border-radius: 40px;
  background: #EBEFF2;
  max-width: 100%;
  cursor: auto;
}
x-comp.drop-down > .tag .title {
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
x-comp.drop-down > .tag .close {
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.drop-down > .tag .close svg {
  width: 10px;
  height: 10px;
  --color: #767A7D;
}
x-comp.drop-down > .tag .close:hover svg {
  --color: #F37530;
}
x-comp.drop-down.multi-select {
  gap: 8px;
  flex-wrap: wrap;
}
x-comp.drop-down.multi-select > input {
  width: 0;
  min-width: 30px;
  flex-grow: 1;
}
x-comp.drop-down.multi-select:not(.active) input.hidden {
  display: none;
}
x-comp.drop-down:not(.read-only) {
  cursor: pointer;
}
x-comp.drop-down:not(.read-only) > input {
  cursor: pointer;
}
x-comp.drop-down.with-icon {
  padding-left: 8px;
}
x-comp.drop-down.with-icon .icon {
  display: flex;
}
x-comp.drop-down.read-only {
  background-color: #EBEFF2;
}
x-comp.drop-down.read-only > .tag {
  background: #F8F9FB;
  pointer-events: none;
}
x-comp.drop-down.active {
  border-color: #F37530;
}
x-comp.drop-down.active > input {
  pointer-events: auto;
}
x-comp.drop-down.active > .expander {
  transform: rotate(180deg);
}
x-comp.drop-down.invalid {
  border-color: #B51F1F;
  background-color: #FEE;
}
x-comp.drop-down.invalid > .tag {
  background: white;
}
x-comp.drop-down.disabled {
  cursor: default;
  background: #EBEFF2;
  pointer-events: none;
}
x-comp.drop-down.disabled > input {
  cursor: default;
}
x-comp.drop-down.disabled > .expander {
  --color: #B5BEC5;
}
x-comp.drop-down.disabled > .tag {
  background: #F8F9FB;
  pointer-events: none;
}

/* CountryField */
x-comp.country-field .icon {
  width: auto;
  height: auto;
}

/* BoxSelect */
x-comp.box-select .category .separator {
  font: normal 12px/24px Nunito, sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
x-comp.box-select .category .separator:before, x-comp.box-select .category .separator:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #EBEFF2;
}
x-comp.box-select .category.highlighted .separator:before, x-comp.box-select .category.highlighted .separator:after {
  background: #F37530;
}
x-comp.box-select .category + .category {
  margin-top: 32px;
}
x-comp.box-select .options .option {
  position: relative;
  display: flex;
  justify-content: space-between;
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  min-height: 120px;
  overflow: hidden;
  cursor: pointer;
}
x-comp.box-select .options .option:after {
  content: "";
  border: 2px solid #F37530;
  opacity: 0;
  border-radius: inherit;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
x-comp.box-select .options .option .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 150px;
}
x-comp.box-select .options .option .box img {
  user-select: none;
  overflow: hidden;
  width: 100%;
}
x-comp.box-select .options .option .box img.contain {
  position: absolute;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
x-comp.box-select .options .option .box img.cover {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
x-comp.box-select .options .option .box img.center {
  max-width: 70px;
  max-height: 70px;
}
x-comp.box-select .options .option .box .img-text {
  font-family: Lato, sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}
x-comp.box-select .options .option .text-content {
  padding: 16px 8px 16px 16px;
}
x-comp.box-select .options .option .label {
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
}
x-comp.box-select .options .option .description {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.box-select .options .option.selected {
  background: #FCF3EE;
  box-shadow: unset;
}
x-comp.box-select .options .option.selected:after {
  opacity: 1;
}
x-comp.box-select .options .option.disabled {
  opacity: 0.5;
  cursor: default;
  background: #EBEFF2;
  box-shadow: unset;
}
x-comp.box-select.read-only .options .option {
  box-shadow: unset;
}
x-comp.box-select.read-only .options:hover .box:after {
  opacity: 0;
}
x-comp.box-select.compact .options .option {
  min-height: unset;
}
x-comp.box-select.compact .options .option .label {
  margin-bottom: 4px;
}

.desktop-ui x-comp.box-select.read-only {
  pointer-events: none;
}

/* Slider */
x-comp.slider {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
x-comp.slider .labels {
  display: flex;
  justify-content: space-between;
}
x-comp.slider .track {
  margin: 12px 19.5px;
  height: 13px;
  cursor: pointer;
  position: relative;
}
x-comp.slider .bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  left: -10px;
  right: -10px;
  height: 13px;
  background: #EBEFF2;
  border-radius: 40px;
}
x-comp.slider .active {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  left: -10px;
  right: -10px;
  background-color: #F59159;
  border-radius: 40px;
  transition: right 0.1s;
}
x-comp.slider .steps {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  left: -3.5px;
  right: -3.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
x-comp.slider .steps .step {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 7px;
}
x-comp.slider .thumb {
  position: absolute;
  height: 39px;
  width: 39px;
  top: calc(50% - 39px / 2);
  border: 2px solid white;
  background: #F59159;
  border-radius: 39px;
  transition: border-color 0.1s, left 0.1s, box-shadow 0.1s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.slider .thumb:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: #F59159;
  border-radius: 13px;
  border: 3px solid #F8F9FB;
  box-shadow: 0 0 0 2px white;
}
x-comp.slider .thumb.dragging {
  background: #F37530;
  box-shadow: 0 0 0 4px #FBCFB7;
}
x-comp.slider .thumb.dragging:after {
  background: #F37530;
}
x-comp.slider .left-text, x-comp.slider .right-text {
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: bold;
}
x-comp.slider.read-only {
  pointer-events: none;
}
x-comp.slider.read-only .active {
  background-color: #B5BEC5;
}
x-comp.slider.read-only .thumb {
  background-color: #B5BEC5;
}
x-comp.slider.read-only .thumb:after {
  background-color: #B5BEC5;
}
.desktop-ui x-comp.slider .track {
  width: min(100% - 39px, 280px);
  align-self: center;
}

/* CheckboxGroup */
x-comp.checkbox-group {
  display: flex;
  gap: 16px 32px;
}
x-comp.checkbox-group.read-only {
  pointer-events: none;
}
x-comp.checkbox-group.layout-flow {
  flex-wrap: wrap;
}
x-comp.checkbox-group.layout-one-per-line {
  flex-direction: column;
  align-items: flex-start;
}
x-comp.checkbox-group.layout-controls-right {
  flex-direction: column;
}
x-comp.checkbox-group.layout-controls-right .option {
  justify-content: space-between;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.checkbox-group.layout-controls-right .option .icon {
  position: static;
  order: 1;
}
x-comp.checkbox-group.layout-controls-right .option.with-icon {
  justify-content: flex-start;
}
x-comp.checkbox-group.layout-controls-right .option.with-icon .icon {
  margin-left: auto;
  flex-shrink: 0;
}
x-comp.checkbox-group.layout-controls-right .option.with-icon svg:not(.icon) {
  order: -1;
  margin-right: 8px;
  flex-shrink: 0;
}
x-comp.checkbox-group.layout-panels {
  flex-direction: column;
}
x-comp.checkbox-group.layout-panels .option {
  flex-flow: row-reverse;
  justify-content: space-between;
  padding: 16px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  border: 2px solid transparent;
  background: white;
}
x-comp.checkbox-group.layout-panels .option .label {
  margin-right: auto;
  padding-right: 18px;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.checkbox-group.layout-panels .option.selected {
  background: #FCF3EE;
  border-color: #F37530;
  box-shadow: unset;
}
x-comp.checkbox-group.layout-panels .option.disabled {
  background: #EBEFF2;
  box-shadow: unset;
  --fg-color: transparent;
}
x-comp.checkbox-group.layout-panels .option.with-icon {
  column-gap: 16px;
}
x-comp.checkbox-group.layout-panels .option.with-icon .label {
  font-weight: bold;
  font: normal 16px/24px Nunito, sans-serif;
}
x-comp.checkbox-group.layout-panels .option.with-icon svg:not(.icon) {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
x-comp.checkbox-group.layout-panels .option.with-image {
  column-gap: 16px;
}
x-comp.checkbox-group.layout-panels .option.with-image .image {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #F8F9FB;
}
x-comp.checkbox-group.layout-panels .option.with-image .image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
x-comp.checkbox-group.layout-panels.read-only .option {
  box-shadow: unset;
}
x-comp.checkbox-group.layout-panels.read-only .option .icon {
  display: none;
}
x-comp.checkbox-group .group {
  width: 100%;
}
x-comp.checkbox-group .group > .head {
  display: flex;
  align-items: center;
}
x-comp.checkbox-group .group > .head .expander {
  width: 32px;
  height: 32px;
  margin-left: auto;
  cursor: pointer;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.checkbox-group .group > .head .expander svg {
  --color: #B5BEC5;
}
x-comp.checkbox-group .group > .children {
  overflow: hidden;
}
x-comp.checkbox-group .group > .children .wrap {
  padding: 16px 0 4px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
x-comp.checkbox-group .group + .group {
  border-top: 1px solid #EBEFF2;
  margin-top: -8px;
  padding-top: 8px;
}
x-comp.checkbox-group .group.collapsed .children {
  max-height: 0;
}
x-comp.checkbox-group .group.collapsed .expander, x-comp.checkbox-group .group.collapsing .expander {
  transform: rotate(0);
  transition: all 0.15s;
}
x-comp.checkbox-group .option {
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
  --fg-color: transparent;
}
x-comp.checkbox-group .option .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  user-select: none;
}
x-comp.checkbox-group .option .icon > * {
  transition: all 0.1s;
}
x-comp.checkbox-group .option .label {
  text-align: left;
  line-height: 24px;
  padding: 4px 0;
}
x-comp.checkbox-group .option:hover {
  --bg-color: #B5BEC5;
}
x-comp.checkbox-group .option.missing {
  --bg-color: #FEE;
  --frame-color: #B51F1F;
}
x-comp.checkbox-group .option.selected {
  --bg-color: #F37530;
  --fg-color: white;
}
x-comp.checkbox-group .option.selected:hover {
  --bg-color: #CD6831;
}
x-comp.checkbox-group .option.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Switch */
x-comp.switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
x-comp.switch.read-only, x-comp.switch.disabled {
  pointer-events: none;
}
x-comp.switch.disabled {
  color: #B5BEC5;
}
x-comp.switch.disabled .track {
  opacity: 0.4;
}
x-comp.switch.disabled .thumb {
  background: #F8F9FB;
}
x-comp.switch.style-small .track {
  transform: scale(0.8);
  transform-origin: center;
}
x-comp.switch.style-small .off-label, x-comp.switch.style-small .on-label {
  font: normal 14px/18px Nunito, sans-serif;
  padding-left: 0;
  padding-right: 0;
}
x-comp.switch > * {
  line-height: 32px;
}
x-comp.switch .off-label {
  padding-right: 8px;
}
x-comp.switch .on-label {
  padding-left: 8px;
}
x-comp.switch .track {
  width: 64px;
  min-width: 64px;
  height: 32px;
  border-radius: 32px;
  background: #EBEFF2;
  position: relative;
  transition: background-color 0.12s;
}
x-comp.switch .thumb {
  position: absolute;
  width: 28px;
  height: 28px;
  left: 2px;
  top: 2px;
  background: white;
  border-radius: 28px;
  transition: left 0.2s;
}
x-comp.switch:hover .track {
  background-color: #B5BEC5;
}
x-comp.switch.on .track {
  background-color: #F37530;
}
x-comp.switch.on .track .thumb {
  left: 34px;
  background: #F8F9FB;
}
x-comp.switch.on:hover .track {
  background-color: #CD6831;
}
x-comp.switch.symmetric .track {
  background-color: #F37530;
}
x-comp.switch.symmetric:hover .track {
  background-color: #CD6831;
}
x-comp.switch.symmetric.on .off-label {
  color: #767A7D;
}
x-comp.switch.symmetric.on .thumb {
  background: white;
}
x-comp.switch.symmetric:not(.on) .on-label {
  color: #767A7D;
}

/* SwitchGroup */
x-comp.switch-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
x-comp.switch-group.layout-controls-right {
  align-items: stretch;
  gap: 16px 32px;
}
x-comp.switch-group.layout-controls-right .switch {
  display: flex;
  justify-content: space-between;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.switch-group.layout-controls-right .switch .on-label {
  padding-left: 0;
}
x-comp.switch-group.layout-controls-right .switch .track {
  order: 1;
}

/* SearchBar */
x-comp.search-bar {
  display: flex;
  align-items: center;
  column-gap: 16px;
  padding: 8px 6px 8px 16px;
  border: 1px solid #B5BEC5;
  border-radius: 8px;
  background-color: white;
  transition: background-color 0.25s, border-color 0.12s;
}
x-comp.search-bar input {
  font: normal 16px/24px Nunito, sans-serif;
  border: 0 !important;
  outline: none !important;
  flex: 1;
  background-color: transparent;
  width: 100%;
}
x-comp.search-bar input::placeholder {
  color: #B5BEC5;
}
x-comp.search-bar .search-icon {
  --color: #B5BEC5;
}
x-comp.search-bar .clear {
  visibility: hidden;
  width: 32px;
  height: 32px;
  transition: background-color 0.1s;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.search-bar .clear svg {
  --color: #B5BEC5;
  width: 10px;
  height: 10px;
}
x-comp.search-bar .clear:hover svg {
  --color: #F37530;
}
x-comp.search-bar.active .clear {
  visibility: visible;
}

/* TagSelect */
x-comp.tag-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
x-comp.tag-select .tag {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 0 16px;
  height: 40px;
  min-width: max-content;
}
x-comp.tag-select .tag .caption {
  font: normal 12px/24px Nunito, sans-serif;
  margin-left: 8px;
}
x-comp.tag-select.actionable .tag {
  cursor: pointer;
}
x-comp.tag-select.selectable .tag {
  cursor: pointer;
}
x-comp.tag-select.selectable .tag.selected {
  background: #FCF3EE;
  border-color: #F37530;
  font-weight: bold;
}
x-comp.tag-select.selectable .tag .label {
  text-align: center;
}
x-comp.tag-select.selectable .tag .label::before {
  display: block;
  content: attr(data-text);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
x-comp.tag-select.removable .tag {
  padding-right: 4px;
}
x-comp.tag-select.removable .remove {
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.tag-select.removable .remove svg {
  width: 12px;
}
x-comp.tag-select.removable .remove:hover svg {
  --color: #F37530;
}
x-comp.tag-select.layout-single-line {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 24px 0;
  margin: -24px -20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
x-comp.tag-select.layout-single-line::-webkit-scrollbar {
  display: none;
}
x-comp.tag-select.layout-single-line::before, x-comp.tag-select.layout-single-line::after {
  min-width: 12px;
  content: "";
}
x-comp.tag-select.layout-single-line.style-pill {
  padding: 0;
  margin: 0 -16px;
}
x-comp.tag-select.layout-single-line.style-pill::before, x-comp.tag-select.layout-single-line.style-pill::after {
  min-width: 8px;
}
x-comp.tag-select.style-raised .tag {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border: 2px solid transparent;
}
x-comp.tag-select.style-flat .tag {
  border: 1px solid #EBEFF2;
}
x-comp.tag-select.style-pill .tag {
  padding: 0 10px;
  border: 1px solid #B5BEC5;
  height: 30px;
  border-radius: 38px;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.tag-select.style-pill .tag.selected {
  background: #EBEFF2;
  border: 1px solid #B5BEC5;
  font-weight: normal;
}

/* Ribbon */
x-comp.ribbon {
  position: absolute;
  padding: 5px 0;
  width: 140px;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.1em;
  background-color: #B5BEC5;
  color: white;
  text-align: center;
}
x-comp.ribbon.color-red {
  background: #B51F1F;
}
x-comp.ribbon.color-green {
  background: #008A00;
}
x-comp.ribbon.position-top-left {
  transform: rotate(-45deg);
  top: 17px;
  left: -35px;
}
x-comp.ribbon.position-top-right {
  transform: rotate(45deg);
  top: 17px;
  right: -35px;
}

/* Spinner */
x-comp.spinner {
  --line-color: #B5BEC5;
  --line-width: 3px;
  --diameter: 32px;
  border: var(--line-width) solid var(--line-color);
  border-top-color: transparent;
  border-left-color: transparent;
  box-sizing: border-box;
  width: var(--diameter);
  height: var(--diameter);
  border-radius: 50%;
  animation: spinner-rotation 0.6s infinite linear;
}
@keyframes spinner-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
x-comp.spinner.large {
  --line-width: 4px;
  --diameter: 48px;
}
x-comp.spinner.small {
  --line-width: 2px;
  --diameter: 20px;
}
x-comp.spinner.emphasized {
  --line-color: #F37530;
}

/* ProgressPanel */
x-comp.progress-panel {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 32px 24px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
x-comp.progress-panel.abs-fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
x-comp.progress-panel > .progress-bar {
  max-width: 360px;
}
x-comp.progress-panel > .headline {
  font: 900 22px/26px Lato, sans-serif;
}

/* Expander */
x-comp.expander > .head-area {
  position: relative;
  padding: 20px 16px;
}
x-comp.expander > .head-area > .title.style-bold {
  font-weight: bold;
}
x-comp.expander > .head-area > .title.style-smaller {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.expander > .head-area > .expander-button {
  position: absolute;
  top: calc(50% - 12px);
  right: 16px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  transition: all 0.15s;
}
x-comp.expander[data-collapsible] > .head-area {
  padding-right: 56px;
  cursor: pointer;
}
x-comp.expander[data-collapsible] > .head-area:hover > .expander-button {
  --expander-color: #F37530;
}
x-comp.expander > .body {
  overflow: hidden;
  padding: 0 16px;
}
x-comp.expander.style-solid {
  border-radius: 8px;
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
}
x-comp.expander.style-solid > .body > .inner {
  padding-bottom: 16px;
}
x-comp.expander.style-separated > .head-area {
  border-radius: 8px;
  background-color: #EBEFF2;
  transition: background-color 0.15s;
}
x-comp.expander.style-separated > .body {
  margin-left: -16px;
  margin-right: -16px;
}
x-comp.expander.style-separated > .body > .inner {
  padding-top: 16px;
}
x-comp.expander.style-separated.collapsed > .head-area {
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
}
x-comp.expander.style-bar > .head-area {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  background: #EBEFF2;
  border-radius: 40px;
  padding: 12px 16px;
}
x-comp.expander.style-bar > .head-area > .title {
  text-align: center;
}
x-comp.expander.style-bar > .body {
  padding: 20px 0 0;
}
x-comp.expander.style-bar[data-collapsible]:hover > .head-area {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
}
x-comp.expander.collapsed > .body {
  padding-top: 0;
  padding-bottom: 0;
  max-height: 0;
}
x-comp.expander.collapsed > .head-area > .expander-button, x-comp.expander.collapsing > .head-area > .expander-button {
  transform: rotate(180deg);
}
x-comp.expander.expanded > .body {
  overflow: visible;
}

/* TabbedView */
x-comp.tabbed-view {
  display: flex;
  flex-direction: column;
}
x-comp.tabbed-view > .head {
  position: relative;
  user-select: none;
  flex-shrink: 0;
}
x-comp.tabbed-view > .head .tabs {
  display: flex;
}
x-comp.tabbed-view > .head .tab {
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
}
x-comp.tabbed-view > .head .tab.selected .label, x-comp.tabbed-view > .head .tab:hover .label {
  color: #F37530;
}
x-comp.tabbed-view > .head .tab.selected .icon svg, x-comp.tabbed-view > .head .tab:hover .icon svg {
  --color: #F37530;
}
x-comp.tabbed-view > .head .icon {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.tabbed-view > .head .text {
  flex: 1;
}
x-comp.tabbed-view > .head .icon + .text {
  margin-left: 14px;
}
x-comp.tabbed-view > .head .label {
  font-weight: bold;
  color: #B5BEC5;
  transition: color 0.12s;
}
x-comp.tabbed-view > .head .subtext {
  font: normal 12px/24px Nunito, sans-serif;
  letter-spacing: 0.1em;
  color: #767A7D;
}
x-comp.tabbed-view > .head .bar {
  position: absolute;
  background-color: #F37530;
  transition: 300ms cubic-bezier(0.35, 0, 0.25, 1);
}

.mobile-ui x-comp.tabbed-view > .tag-select {
  margin-bottom: 0;
}

.desktop-ui x-comp.tabbed-view > .tag-select {
  margin-bottom: 24px;
}

/* Overlay */
x-comp.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background-color: #8B8B8B;
  display: flex;
  flex-direction: column;
  align-items: center;
}
x-comp.overlay.layout-centered {
  overflow: auto;
  padding: 16px;
}
x-comp.overlay.layout-centered > *:first-child {
  margin-top: auto;
}
x-comp.overlay.layout-centered > *:last-child {
  margin-bottom: auto;
}
x-comp.overlay.layout-top {
  justify-content: flex-start;
  overflow: hidden;
}
x-comp.overlay.layout-bottom {
  justify-content: flex-end;
  overflow: hidden;
}

/* Dialog */
x-comp.dialog {
  position: relative;
  background: #F8F9FB;
  padding: 56px 16px 36px;
  border-radius: 32px;
  text-align: center;
}
x-comp.dialog.transparent {
  background: transparent;
}
x-comp.dialog > .close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
x-comp.dialog > .close svg path {
  transition: all 0.12s;
}
x-comp.dialog > .close:hover svg {
  --color: #F37530;
}
x-comp.dialog > .image {
  height: 200px;
  margin: 32px 0 16px;
}
x-comp.dialog > .title {
  font: 900 24px/32px Lato, sans-serif;
  font-weight: 900;
  text-align: center;
}
x-comp.dialog > .title + .body, x-comp.dialog > .instructions + .body {
  margin-top: 32px;
}
x-comp.dialog > .instructions {
  margin-top: 24px;
}
x-comp.dialog > .buttons-group {
  margin-top: 32px;
}

.desktop-ui x-comp.dialog {
  width: 600px;
  max-width: 600px;
  padding-left: 32px;
  padding-right: 32px;
}

.mobile-ui x-comp.dialog {
  width: 100%;
}

/* ActionsDialog */
x-comp.actions-dialog > .buttons {
  margin-top: 50px;
}

/* ConfirmDialog */
x-comp.confirm-dialog > .body .texts {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

/* DecoratedField */
x-comp.decorated-field > .label-area {
  display: flex;
  column-gap: 20px;
  align-items: end;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.decorated-field > .label-area .note {
  color: #B5BEC5;
  margin-left: auto;
  margin-bottom: 8px;
}
x-comp.decorated-field > .label-area .note.hidden {
  display: none;
}
x-comp.decorated-field > .label-area .right-button {
  margin-left: auto;
}
x-comp.decorated-field > .label-area .right-button .button {
  padding: 0 0 8px 0;
}
x-comp.decorated-field > .label-area .right-button .button .text {
  font-weight: bold;
}
x-comp.decorated-field > .label-area .history {
  display: none;
  margin-left: auto;
  gap: 22px;
  margin-bottom: 8px;
}
x-comp.decorated-field > .label-area .history.visible {
  display: flex;
}
x-comp.decorated-field > .label-area .history .button {
  padding: 0;
  width: 18px;
  height: 18px;
}
x-comp.decorated-field > .label-area .history .button svg {
  --color: #767A7D;
}
x-comp.decorated-field > .label-area .history .button .disabled svg {
  --color: #B5BEC5;
}
x-comp.decorated-field > .label-area .history .button:not(.disabled):hover svg {
  --color: #F37530;
}
x-comp.decorated-field > .instructions {
  font: normal 14px/18px Nunito, sans-serif;
  color: #767A7D;
  margin-bottom: 8px;
}
x-comp.decorated-field > .instructions p {
  margin: 0 0 4px;
}
x-comp.decorated-field > .field-wrap {
  text-align: center;
  padding: 16px;
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
}
x-comp.decorated-field > .buttons-area {
  margin: 4px 0 8px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
x-comp.decorated-field > .invalid-message {
  font: normal 12px/24px Nunito, sans-serif;
  line-height: 16px;
  padding: 4px 0;
  color: #B51F1F;
  white-space: pre-line;
  text-align: right;
}
x-comp.decorated-field > .invalid-message.hidden {
  display: none;
}
x-comp.decorated-field.hidden {
  display: none;
}

/* FormContainer */
x-comp.form-container > .items {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
x-comp.form-container > .actions {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
}
x-comp.form-container > .buttons-group:not(:empty) {
  margin-top: 36px;
}
x-comp.form-container.spaced .items {
  row-gap: 32px;
}

/* FieldsGroup */
x-comp.fields-group {
  display: flex;
}
x-comp.fields-group.base-layout-column {
  flex-direction: column;
  row-gap: 16px;
}
x-comp.fields-group.base-layout-row {
  flex-grow: 1;
  flex-direction: row;
  column-gap: 16px;
}
x-comp.fields-group.base-layout-row > x-comp.decorated-field {
  flex-grow: 1;
}
x-comp.fields-group [data-fields-group-mod=centered] {
  align-self: center;
}
x-comp.fields-group [data-fields-group-layout=hbox] {
  display: flex;
  column-gap: 16px;
}

/* PropertyList */
x-comp.property-list {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 6px;
}
x-comp.property-list .name {
  grid-column: 1;
  text-align: right;
  padding-right: 8px;
}
x-comp.property-list .name:after {
  content: ":";
}
x-comp.property-list .value {
  grid-column: 2;
  text-align: left;
  font-weight: bold;
  white-space: pre-line;
}
x-comp.property-list .value.empty {
  color: #B5BEC5;
}

/* ProgressBar */
x-comp.progress-bar {
  height: 16px;
  width: 100%;
  background-color: #EBEFF2;
  border-radius: 16px;
  position: relative;
}
x-comp.progress-bar .completed-bar {
  position: absolute;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  right: unset;
  border-radius: 16px;
  background-color: var(--color, #F37530);
  transition: right 0.2s;
}

/* ScreenSwitcher */
x-comp.screen-switcher {
  position: relative;
}
x-comp.screen-switcher > .screen-hidden {
  display: none;
}
x-comp.screen-switcher.fill-content > * {
  width: 100%;
  height: 100%;
}

/* PagingBar */
x-comp.paging-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
}
x-comp.paging-bar.hidden {
  display: none;
}
x-comp.paging-bar .button .icon {
  padding-top: 2px;
}
x-comp.paging-bar .button.prev .icon {
  transform: rotate(90deg);
}
x-comp.paging-bar .button.next .icon {
  transform: rotate(-90deg);
}

/* NavigationBar */
x-comp.navigation-bar {
  border-top: 1px solid #EBEFF2;
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.05);
  z-index: 5;
}
x-comp.navigation-bar .holder {
  display: flex;
  align-items: center;
  max-width: 676px;
  padding: 16px 20px;
  margin: auto;
}
x-comp.navigation-bar.with-progress .back, x-comp.navigation-bar.with-progress .tool-action {
  margin-top: -4px;
}
x-comp.navigation-bar .back, x-comp.navigation-bar .tool-action {
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
  cursor: pointer;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.navigation-bar .back.show, x-comp.navigation-bar .tool-action.show {
  visibility: visible;
}
x-comp.navigation-bar .back:hover, x-comp.navigation-bar .tool-action:hover {
  --color: #F37530;
}
x-comp.navigation-bar .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
x-comp.navigation-bar .title {
  color: #767A7D;
  font-weight: bold;
  text-align: center;
}
x-comp.navigation-bar .progress-bar {
  max-width: 165px;
  margin-top: 8px;
  height: 6px;
  background-color: #EBEFF2;
}
.mobile-ui x-comp.navigation-bar {
  border-radius: 0 0 16px 16px;
}
.mobile-ui x-comp.navigation-bar .holder {
  padding: 16px 12px;
}

/* ToggleTabs */
x-comp.toggle-tabs .head {
  background: #EBEFF2;
  border-radius: 8px;
  padding: 4px;
}
x-comp.toggle-tabs .head .tabs {
  display: flex;
  column-gap: 2px;
}
x-comp.toggle-tabs .head .tabs .tab {
  flex: 1 1 0;
  border-radius: 8px;
  padding: 7px 0;
  background: transparent;
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: bold;
  text-align: center;
  color: #767A7D;
  cursor: pointer;
}
x-comp.toggle-tabs .head .tabs .tab.selected {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.05);
  background: white;
  color: #333;
}
x-comp.toggle-tabs .head .tabs .tab .count-bullet {
  display: inline-block;
  font-size: 10px;
  padding: 0 4px;
  border-radius: 64px;
  margin-left: 6px;
  border: 1px solid #CCC;
  min-width: 18px;
  height: 18px;
  vertical-align: top;
}

/* ActionSheet */
x-comp.action-sheet {
  background: #F8F9FB;
  margin-bottom: 0 !important;
  border-radius: 32px 32px 0 0;
  position: relative;
  padding-top: 36px;
  width: 100%;
  max-width: 480px;
  max-height: calc(100% - 64px);
  display: flex;
  flex-direction: column;
}
x-comp.action-sheet::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  height: 5px;
  width: 45px;
  border-radius: 10px;
  margin: 0 auto;
  background: #8B8B8B;
}
x-comp.action-sheet .tagline {
  text-align: center;
  font-weight: bold;
  padding: 0 16px;
}
x-comp.action-sheet .title {
  text-align: center;
  margin-bottom: 16px;
  font-weight: bold;
  color: #767A7D;
  padding: 0 16px;
}
x-comp.action-sheet .buttons {
  padding: 0 16px 32px;
  overflow-y: auto;
}
x-comp.action-sheet .body {
  padding: 16px;
  margin-bottom: 32px;
}
x-comp.action-sheet .body.decorate {
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  margin-left: 16px;
  margin-right: 16px;
  color: #767A7D;
  border-radius: 8px;
}
x-comp.action-sheet .footer {
  padding: 16px 16px 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Countdown */
x-comp.countdown {
  display: flex;
  justify-content: center;
}
x-comp.countdown > div:not(.separator) {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 102px;
}
x-comp.countdown .digits {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
x-comp.countdown .digits > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  aspect-ratio: 0.75;
  font: 900 22px/26px Lato, sans-serif;
  background-color: #EBEFF2;
  border-radius: 8px;
}
x-comp.countdown .caption {
  font: normal 14px/18px Nunito, sans-serif;
  color: #B5BEC5;
  text-align: center;
}
x-comp.countdown .separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 26px;
}

/* InfoPanel */
x-comp.info-panel {
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  border: 2px solid #F37530;
  padding: 20px 16px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "texts" "highlight" "actions";
}
x-comp.info-panel.with-icon {
  column-gap: 16px;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon texts" "highlight highlight" "actions actions";
}
x-comp.info-panel.style-borderless {
  border: none;
}
x-comp.info-panel.style-subtle {
  border: 1px solid #EBEFF2;
  box-shadow: unset;
  padding: 16px;
}
x-comp.info-panel.style-subtle .title {
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: bold;
}
x-comp.info-panel.style-subtle .comment {
  font: normal 16px/24px Nunito, sans-serif;
  color: #767A7D;
}
x-comp.info-panel.style-subtle .title + .comment {
  margin-top: 8px;
}
x-comp.info-panel.style-subtle .actions {
  margin: 16px 0 0;
}
x-comp.info-panel.alignment-center {
  text-align: center;
}
x-comp.info-panel .icon {
  display: flex;
  justify-content: center;
  grid-area: icon;
  margin-top: 1px;
}
x-comp.info-panel .icon svg {
  --color: #F37530;
}
x-comp.info-panel .icon svg.success {
  --color: #008A00;
}
x-comp.info-panel .icon svg.info {
  --color: #767A7D;
}
x-comp.info-panel .title {
  font-weight: bold;
  grid-area: texts;
}
x-comp.info-panel .comment {
  font: normal 14px/18px Nunito, sans-serif;
  grid-area: texts;
}
x-comp.info-panel .title + .comment {
  margin-top: 12px;
}
x-comp.info-panel .comment + .comment {
  margin-top: 4px;
}
x-comp.info-panel .highlight {
  margin-top: 16px;
  padding: 8px 0;
  background: #FCF3EE;
  border-radius: 8px;
  text-align: center;
  color: #464646;
  font-weight: 700;
  grid-area: highlight;
}
x-comp.info-panel .actions {
  margin: 24px 0 8px;
  text-align: center;
  grid-area: actions;
}

.mobile-ui x-comp.info-panel.style-subtle .actions .button {
  width: 100%;
}

/* RatingStars */
x-comp.rating-stars .stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
x-comp.rating-stars .stars .star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 40px;
  cursor: pointer;
}
x-comp.rating-stars .stars .star:hover, x-comp.rating-stars .stars .star:hover ~ .star, x-comp.rating-stars .stars .star.checked, x-comp.rating-stars .stars .star.checked ~ .star {
  --color: #F37530;
}
x-comp.rating-stars.readonly {
  pointer-events: none;
}

/* SwipePicker */
x-comp.swipe-picker {
  --option-height: 40px;
  position: relative;
}
x-comp.swipe-picker::before {
  content: "";
  height: var(--option-height);
  width: 100%;
  background: #EBEFF2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 8px;
}
x-comp.swipe-picker .list {
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
  height: 200px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}
x-comp.swipe-picker .list::-webkit-scrollbar {
  display: none;
}
x-comp.swipe-picker .list::after, x-comp.swipe-picker .list::before {
  content: "";
  display: block;
  height: calc(var(--option-height) * 2);
}
x-comp.swipe-picker .list .option {
  font: normal 18px/24px Nunito, sans-serif;
  height: var(--option-height);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 8px 24px;
  text-align: center;
  scroll-snap-align: center;
  cursor: pointer;
  color: #333;
  mix-blend-mode: color-burn;
  filter: brightness(0.3);
}

/* YouTubePlayer */
x-comp.you-tube-player {
  width: 100%;
  max-width: 960px;
}
x-comp.you-tube-player .video {
  position: relative;
  max-height: calc(100vh - 136px);
  margin: auto;
}
x-comp.you-tube-player .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
x-comp.you-tube-player .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #EBEFF2;
  border-radius: 50%;
  cursor: pointer;
}
x-comp.you-tube-player .close:hover {
  --color: #F37530;
}

/* InstructionsBox */
x-comp.instructions-box {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px;
  background: #E5EBF4;
  border-radius: 8px;
  text-align: left;
}
x-comp.instructions-box > .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
x-comp.instructions-box > .head .title {
  flex-grow: 1;
  font-weight: bold;
}
x-comp.instructions-box > .head .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
x-comp.instructions-box > .head .close:hover {
  --color: #F37530;
}
x-comp.instructions-box > .body {
  display: flex;
  flex-direction: row;
  column-gap: 12px;
}
x-comp.instructions-box > .head .icon, x-comp.instructions-box > .body .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  --color: #333;
}
x-comp.instructions-box > .separator {
  height: 1px;
  margin-top: 8px;
  background: #B5BEC5;
}
x-comp.instructions-box > .buttons {
  text-align: center;
}
x-comp.instructions-box > .buttons .button {
  color: #333;
}
x-comp.instructions-box > .buttons .button .text {
  font-weight: bold;
  font-size: 16px;
}
x-comp.instructions-box > .buttons .button .icon svg {
  --color: #D23833;
}

/* Swiper */
x-comp.swiper .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
x-comp.swiper .head .headings {
  flex-grow: 1;
  overflow: hidden;
}
x-comp.swiper .head .headings .item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
}
x-comp.swiper .head .headings .item .icon {
  display: flex;
  flex-shrink: 0;
}
x-comp.swiper .head .headings .item .icon svg {
  width: 24px;
  height: 24px;
}
x-comp.swiper .head .headings .item .text {
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
x-comp.swiper .head .headings .item .label {
  border-radius: 6px;
  background: #EBEFF2;
  padding: 0 8px;
  white-space: nowrap;
}
x-comp.swiper .head .headings .item:not(.active) {
  display: none;
}
x-comp.swiper .head .pagination {
  display: flex;
}
x-comp.swiper .head .pagination .bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
x-comp.swiper .head .pagination .bullet::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #B5BEC5;
  transition: background 0.2s;
}
x-comp.swiper .head .pagination .bullet:hover::before {
  background: #F59159;
}
x-comp.swiper .head .pagination .bullet.active::before {
  background: #F37530;
}
x-comp.swiper .body {
  display: flex;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-right: -16px;
  margin-left: -16px;
}
x-comp.swiper .body .slide {
  flex-shrink: 0;
  flex-basis: 100%;
  scroll-snap-align: start start;
  padding: 16px;
}

/* ListCard */
x-comp.list-card {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  background-color: #fff;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  padding: 16px 24px;
}
x-comp.list-card > .top-controls {
  display: flex;
  column-gap: 8px;
  align-items: center;
}
x-comp.list-card > .top-controls > .status-tag {
  flex-shrink: 0;
}
x-comp.list-card > .top-controls > .time-past {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  margin-left: 4px;
  color: #767A7D;
}
x-comp.list-card > .top-controls > .menu {
  flex-shrink: 0;
  width: 26px;
  height: 24px;
  cursor: pointer;
}
x-comp.list-card > .photo-header {
  display: grid;
  column-gap: 12px;
  row-gap: 2px;
  grid-template-areas: "photo title menu" "photo status menu";
  grid-template-columns: max-content 1fr max-content;
  margin-bottom: 4px;
}
x-comp.list-card > .photo-header > .photo {
  grid-area: photo;
}
x-comp.list-card > .photo-header > .title {
  font-weight: 700;
  grid-area: title;
}
x-comp.list-card > .photo-header > .status-tag {
  grid-area: status;
  justify-self: left;
}
x-comp.list-card > .photo-header > .menu {
  grid-area: menu;
  width: 26px;
  height: 24px;
  cursor: pointer;
}
x-comp.list-card > .cover-image {
  aspect-ratio: 1.5;
  margin-bottom: 4px;
}
x-comp.list-card > .cover-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
x-comp.list-card > .title {
  font-weight: 700;
}
x-comp.list-card > .excerpt {
  font: normal 14px/18px Nunito, sans-serif;
  color: #767A7D;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: -8px;
}
x-comp.list-card > .statistics {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 4px;
}
x-comp.list-card > .statistics .item {
  display: flex;
  flex-direction: row;
  column-gap: 6px;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.list-card > .statistics .item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
x-comp.list-card > .statistics .item .label {
  color: #767A7D;
  margin-right: 6px;
}
x-comp.list-card > .statistics .item .value {
  margin-left: auto;
  flex-shrink: 0;
}
x-comp.list-card > .property-list2 + .statistics {
  border-top: 1px solid #EBEFF2;
  padding-top: 12px;
}
x-comp.list-card > .notification {
  margin-top: auto;
}
x-comp.list-card > .footer {
  margin-top: auto;
  padding-top: 4px;
}
x-comp.list-card > .footer .button {
  width: 100%;
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.list-card > .notification + .footer {
  margin-top: unset;
}
x-comp.list-card .photo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
x-comp.list-card .photo > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* StatusTag */
x-comp.status-tag {
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  padding: 2px 8px;
  border-radius: 17px;
}
x-comp.status-tag .icon svg {
  display: block;
  max-width: 16px;
  max-height: 16px;
}
x-comp.status-tag .text {
  font: normal 14px/18px Nunito, sans-serif;
  line-height: 18px;
  white-space: nowrap;
}
x-comp.status-tag.medium {
  padding-top: 4px;
  padding-bottom: 4px;
}
x-comp.status-tag.active {
  background-color: #E2F2D5;
}
x-comp.status-tag.active svg {
  --color: #3DAB3D;
}
x-comp.status-tag.attention {
  background-color: #FFE1F2;
}
x-comp.status-tag.attention svg {
  --color: #E85A9E;
}
x-comp.status-tag.completed {
  color: #FFF;
  background-color: #3DAA3D;
}
x-comp.status-tag.completed svg {
  --color: #FFF;
}
x-comp.status-tag.inactive {
  background-color: #EBEFF2;
}
x-comp.status-tag.inactive svg {
  --color: #767A7D;
}
x-comp.status-tag.rejected {
  color: #FFF;
  background-color: #B51F1F;
}
x-comp.status-tag.rejected svg {
  --color: #FFF;
}

/* PropertyList2 */
x-comp.property-list2 .value {
  font-weight: 700;
}
x-comp.property-list2 svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  --color: #767A7D;
}
x-comp.property-list2.size-standard svg {
  margin-bottom: 1px;
}
x-comp.property-list2.size-smaller {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.property-list2.layout-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
x-comp.property-list2.layout-rows .label {
  flex-shrink: 0;
}
x-comp.property-list2.layout-rows .value {
  overflow: hidden;
}
x-comp.property-list2.layout-rows .item {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
x-comp.property-list2.layout-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
x-comp.property-list2.layout-blocks .label {
  font: normal 14px/18px Nunito, sans-serif;
  color: #767A7D;
}
x-comp.property-list2.layout-blocks .line2 {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 4px;
}
x-comp.property-list2.layout-blocks .own-line {
  grid-column: 1/-1;
}

/* Notification */
x-comp.notification {
  display: flex;
  column-gap: 8px;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.333;
}
x-comp.notification .icon {
  flex-shrink: 0;
}
x-comp.notification .text {
  flex-grow: 1;
}
x-comp.notification ul {
  padding-left: 16px;
  margin: 0;
}
x-comp.notification svg {
  display: block;
  width: 16px;
  height: 16px;
}
x-comp.notification.info {
  background-color: #F8F9FB;
}
x-comp.notification.info svg {
  --color: #3DAB3D;
}
x-comp.notification.attention {
  background-color: #FFEFF8;
}
x-comp.notification.attention svg {
  --color: #E85A9E;
}

/* NumberField */
x-comp.number-field {
  display: flex;
  align-items: center;
  column-gap: 8px;
  min-height: 52px;
  border: 1px solid #EBEFF2;
  border-radius: 8px;
  background-color: #fff;
  padding: 7px;
}
x-comp.number-field .button {
  flex-shrink: 0;
}
x-comp.number-field .button .icon svg {
  --color: #333;
}
x-comp.number-field .value {
  flex-grow: 1;
  min-width: 32px;
  text-align: center;
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.number-field.read-only {
  background-color: #EBEFF2;
  border-color: #B5BEC5;
}

/* HorizontalLine */
x-comp.horizontal-line {
  height: 1px;
  border-bottom: 1px solid #EBEFF2;
}

/* EmptyPlaceholder */
x-comp.empty-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  padding: 16px;
}
x-comp.empty-placeholder > * {
  text-align: center;
}
x-comp.empty-placeholder .title {
  font-size: 18px;
  font-weight: 700;
}
x-comp.empty-placeholder img {
  margin: 16px 0;
}
x-comp.empty-placeholder a.button {
  margin: 16px 0 32px;
}

/* StaticText */
x-comp.static-text {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.static-text .label {
  font-weight: 700;
  margin-bottom: 8px;
}
x-comp.static-text .text {
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #EBEFF2;
  border-radius: 8px;
}

/* InfoPanelFlat */
x-comp.info-panel-flat {
  display: flex;
  column-gap: 16px;
  background-color: #FFF;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #EBEFF2;
}
x-comp.info-panel-flat .content {
  overflow: hidden;
}
x-comp.info-panel-flat .icon {
  display: block;
  width: 24px;
  height: 24px;
}
x-comp.info-panel-flat .title {
  font-weight: 700;
}
x-comp.info-panel-flat .title:not(:last-child) {
  margin-bottom: 8px;
}
x-comp.info-panel-flat .text {
  font-size: 14px;
  line-height: 18px;
  white-space: pre-wrap;
}

/* RichTextEditor */
x-comp.rich-text-editor {
  position: relative;
}
x-comp.rich-text-editor .ql-container {
  background-color: white;
  border-radius: 0 0 8px 8px;
  border-color: #B5BEC5;
  padding: 12px 5px 12px 15px;
}
x-comp.rich-text-editor .ql-toolbar {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  border-radius: 8px 8px 0 0;
  border-color: #B5BEC5;
  user-select: none;
  text-align: left;
}
x-comp.rich-text-editor .ql-toolbar .ql-formats:not(:last-child) {
  margin-right: 5px;
  border-right: 1px solid #EBEFF2;
  padding-right: 5px;
}
x-comp.rich-text-editor .ql-editor {
  min-height: 125px;
  overscroll-behavior: none;
  font: normal 14px/18px Nunito, sans-serif;
  line-height: 20px;
  padding: 0 8px 0 0;
}
.desktop-ui x-comp.rich-text-editor .ql-editor {
  max-height: 350px;
}
.mobile-ui x-comp.rich-text-editor .ql-editor {
  max-height: 275px;
}
x-comp.rich-text-editor .ql-editor::-webkit-scrollbar {
  width: 4px;
}
x-comp.rich-text-editor .ql-editor::-webkit-scrollbar-track {
  background-color: #EBEFF2;
}
x-comp.rich-text-editor .ql-editor::-webkit-scrollbar-thumb {
  background-color: #767A7D;
}
x-comp.rich-text-editor .ql-editor.ql-blank::before {
  content: none;
}
x-comp.rich-text-editor .ql-editor.ql-blank::after {
  content: attr(data-placeholder);
  color: #B5BEC5;
  position: relative;
  top: -20px;
}
x-comp.rich-text-editor .ql-editor p, x-comp.rich-text-editor .ql-editor ol, x-comp.rich-text-editor .ql-editor ul {
  margin: 10px 0;
}
x-comp.rich-text-editor .ql-editor li {
  padding-left: 0.75em;
}
x-comp.rich-text-editor .ql-editor a {
  color: #F37530;
}
x-comp.rich-text-editor .ql-editor > *:first-child {
  margin-top: 0;
}
x-comp.rich-text-editor .ql-editor > *:last-child {
  margin-bottom: 0;
}
x-comp.rich-text-editor.read-only .ql-toolbar {
  background-color: #EBEFF2;
}
x-comp.rich-text-editor.read-only .ql-toolbar button, x-comp.rich-text-editor.read-only .ql-toolbar .ql-picker-label {
  opacity: 0.75;
  filter: grayscale(1);
  pointer-events: none;
}
x-comp.rich-text-editor.read-only .ql-container {
  background-color: #EBEFF2;
}
x-comp.rich-text-editor .ql-emoji-picker {
  position: absolute;
  top: -5px;
  left: 30px;
  right: 30px;
  background: white;
  border: 1px solid #ccc;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1000;
}
x-comp.rich-text-editor .ql-emoji-picker-tabs {
  display: flex;
  justify-content: stretch;
  border-bottom: 1px solid #ccc;
}
x-comp.rich-text-editor .ql-emoji-picker-tab {
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-size: 19px;
  height: 54px;
  min-width: 46px;
  flex-grow: 1;
  cursor: pointer;
}
x-comp.rich-text-editor .ql-emoji-picker-tab.active {
  border-bottom-color: #000;
}
x-comp.rich-text-editor .ql-emoji-picker-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(38px, 100%), 1fr));
  max-height: 174px;
  padding: 6px;
  overflow-y: auto;
  overscroll-behavior: none;
}
x-comp.rich-text-editor .ql-emoji-picker-item {
  font-size: 18px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
}
x-comp.rich-text-editor .ql-emoji-picker-item:hover {
  background: #f0f0f0;
  border-radius: 5px;
}
x-comp.rich-text-editor .ql-emoji-toolbar-button {
  --color: #444;
}
x-comp.rich-text-editor .ql-emoji-toolbar-button:hover {
  --color: #06c;
}
x-comp.rich-text-editor .ql-emoji-toolbar-button svg {
  width: 17px;
}

/* RichTextView */
x-comp.rich-text-view {
  overflow: hidden;
  overflow-wrap: break-word;
}
x-comp.rich-text-view p, x-comp.rich-text-view ol, x-comp.rich-text-view ul {
  margin: 10px 0;
}
x-comp.rich-text-view li {
  padding-left: 0.75em;
}
x-comp.rich-text-view a {
  color: #F37530;
}
x-comp.rich-text-view > *:first-child {
  margin-top: 0;
}
x-comp.rich-text-view > *:last-child {
  margin-bottom: 0;
}

/* Grid */
x-comp.grid table {
  width: auto;
  display: grid;
  border-collapse: collapse;
  row-gap: 4px;
}
x-comp.grid table.rows-clickable tbody > tr {
  cursor: pointer;
}
x-comp.grid thead, x-comp.grid tbody, x-comp.grid tr {
  display: contents;
}
x-comp.grid th, x-comp.grid td {
  padding: 8px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
x-comp.grid th {
  text-align: left;
  color: #B5BEC5;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
x-comp.grid td {
  font-size: 14px;
  background-color: #EBEFF2;
}
x-comp.grid td:first-child {
  border-radius: 4px 0 0 4px;
}
x-comp.grid td:last-child {
  border-radius: 0 4px 4px 0;
}
x-comp.grid td > svg {
  display: block;
}
x-comp.grid td.menu {
  cursor: pointer;
}
x-comp.grid td.menu svg {
  margin: 0 auto;
}
x-comp.grid td.menu:hover svg {
  --color: #F37530;
}
x-comp.grid tbody > tr:hover td {
  background-color: #FCF3EE;
}

/* AppScreen */
x-comp.app-screen {
  overflow: auto;
  position: relative;
}
x-comp.app-screen > .app-screen-content > .app-screen-head:not(:empty) {
  margin-bottom: 24px;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .main-image {
  height: 200px;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .label {
  font-weight: 700;
  color: #F37530;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap h3 {
  margin: 0;
  flex: 1;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap .tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  display: flex;
  flex-direction: row;
  column-gap: 8px;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap .tools > * {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap .tools > * svg {
  --color: gray;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap .tools .info {
  transform: rotate(0.01deg);
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap .tools .menu svg {
  --color: #333;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap .tools > .button.circular {
  width: 36px;
  height: 36px;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .headline-wrap .tools [data-hidden=true] {
  display: none;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .instructions {
  margin-top: 24px;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .instructions-box {
  margin-top: 24px;
}
x-comp.app-screen > .app-screen-content > .app-screen-head > .instructions-box[data-hidden=true] {
  display: none;
}
.desktop-ui x-comp.app-screen > .app-screen-content {
  width: 732px;
  padding: 32px 46px;
  margin: 0 auto;
}
.desktop-ui x-comp.app-screen > .app-screen-content > .app-screen-head > .label {
  margin-bottom: 4px;
}
.desktop-ui x-comp.app-screen.desktop-wide > .app-screen-content {
  width: unset;
  min-width: 732px;
  max-width: 1420px;
}
.mobile-ui x-comp.app-screen > .app-screen-content {
  padding: 24px 20px 32px;
}
.mobile-ui x-comp.app-screen > .app-screen-content > .app-screen-head > .label {
  margin-bottom: 8px;
}
x-comp.app-screen.centered > .app-screen-content {
  text-align: center;
}

/* ListScreenHead */
x-comp.list-screen-head {
  display: grid;
  row-gap: 16px;
  align-items: center;
}
x-comp.list-screen-head > .title {
  grid-area: 1/1;
  margin: 0;
}
x-comp.list-screen-head > .controls {
  display: flex;
  flex-direction: row;
  row-gap: 16px;
  justify-content: flex-end;
}
x-comp.list-screen-head > .controls > .menu {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.list-screen-head > .controls > .menu svg {
  --color: #333;
}
x-comp.list-screen-head > .search {
  grid-column: 1/-1;
  display: flex;
  flex-direction: row;
  column-gap: 8px;
}
x-comp.list-screen-head > .search > .search-bar {
  flex: 1;
}
x-comp.list-screen-head > .search > .button {
  padding: 0;
  width: 56px;
  border-radius: 8px;
}
x-comp.list-screen-head > .search > .button .icon svg {
  --color: #333;
}
x-comp.list-screen-head > .filter-tags {
  grid-column: 1/-1;
}
x-comp.list-screen-head > .filter-tags:empty {
  display: none;
}
.desktop-ui x-comp.list-screen-head {
  grid-template-columns: 1fr 1.25fr 1fr;
}
.desktop-ui x-comp.list-screen-head > .toggle-tabs {
  grid-area: 1/2;
}
.desktop-ui x-comp.list-screen-head > .controls {
  grid-area: 1/3;
}
.mobile-ui x-comp.list-screen-head {
  grid-template-columns: 1fr auto;
}
.mobile-ui x-comp.list-screen-head > .controls {
  grid-area: 1/2;
}
.mobile-ui x-comp.list-screen-head > .toggle-tabs {
  grid-row: 2;
  grid-column: 1/-1;
}
.mobile-ui x-comp.list-screen-head > .controls > .button.primary.small {
  max-width: 40px;
  aspect-ratio: 1;
}

/* AppBanner */
x-comp.app-banner {
  background: orange;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 8px 16px;
  position: relative;
}
x-comp.app-banner .close {
  position: absolute;
  top: calc(50% - 14px);
  right: 14px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.app-banner .close svg {
  width: 16px;
  height: 16px;
  --color: white;
}

/* SupportContactBox */
x-comp.support-contact-box {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  background-color: white;
  text-align: center;
}
x-comp.support-contact-box a {
  display: inline-block;
  padding: 8px 0 4px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* SubscriptionRequiredPanel */
x-comp.subscription-required-panel {
  text-align: center;
}
x-comp.subscription-required-panel.style-full > .image {
  margin: 32px 0 16px;
  height: 200px;
}
x-comp.subscription-required-panel.style-full > .headline {
  font: 900 24px/32px Lato, sans-serif;
}
x-comp.subscription-required-panel.style-full > .text {
  margin-top: 24px;
}
x-comp.subscription-required-panel.style-full > .action-button {
  margin-top: 32px;
}
x-comp.subscription-required-panel.style-compact {
  padding: 16px 0;
}
x-comp.subscription-required-panel.style-compact > .image {
  margin: 8px 0;
  height: 120px;
}
x-comp.subscription-required-panel.style-compact > .headline {
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: bold;
}
x-comp.subscription-required-panel.style-compact > .text {
  margin-top: 16px;
}
x-comp.subscription-required-panel.style-compact > .action-button {
  margin-top: 24px;
}

/* AsyncResultPoller */
x-comp.async-result-poller {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 35px 0;
}
x-comp.async-result-poller .poller-text.size-large {
  font-size: 18px;
}

/* ErrorScreen */
x-comp.error-screen .app-screen-content .app-screen-head .main-image {
  margin-bottom: 26px;
}
x-comp.error-screen .app-screen-content .app-screen-head .instructions {
  margin-top: 36px;
}
x-comp.error-screen .app-screen-content .app-screen-body {
  padding: 16px 0 32px 0;
}

.desktop-ui x-comp.error-screen .app-screen-body {
  display: flex;
  justify-content: center;
}

/* FileList */
x-comp.file-field {
  transition: background-color 0.25s;
}
x-comp.file-field.highlighted {
  background-color: #FCF3EE;
}
x-comp.file-field > .files {
  display: grid;
  justify-content: center;
  gap: 16px;
}
x-comp.file-field > .files .file {
  color: #333;
  text-decoration: none !important;
  position: relative;
}
x-comp.file-field > .files .file .menu {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  --color: #B5BEC5;
}
x-comp.file-field > .files .file .menu:hover {
  --color: #333;
}
x-comp.file-field > .files .file .box {
  height: 80px;
  position: relative;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
x-comp.file-field > .files .file .name {
  font: normal 14px/18px Nunito, sans-serif;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
  margin-bottom: 8px;
}
x-comp.file-field > .files .file .size {
  font: normal 14px/18px Nunito, sans-serif;
  text-align: center;
  color: #767A7D;
}
x-comp.file-field > .files .file .image-view {
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.file-field > .files .file .image-view img {
  width: 100%;
}
x-comp.file-field > .files .file .progress-bar {
  height: 6px;
  width: 65%;
  background: #EBEFF2;
  border-radius: 16px;
  margin: 0 auto;
  position: relative;
}
x-comp.file-field > .files .file .progress-bar .completed-bar {
  position: absolute;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  right: unset;
  border-radius: 16px;
  background-color: #F37530;
  transition: right 0.1s;
}
x-comp.file-field > .files .file .file-type-icon {
  height: 50px;
}
x-comp.file-field > .files .file .file-type-icon text.ext {
  font-size: 12px;
  font-family: Nunito, sans-serif;
  font-weight: bold;
}
x-comp.file-field > .files .file.selected .box:after {
  opacity: 1;
}
x-comp.file-field > .files .file.selected.hidden {
  display: none;
}
x-comp.file-field > .files .file.uploading .file-type-icon {
  display: none;
}
x-comp.file-field > .files .file.uploading .menu {
  display: none;
}
x-comp.file-field > .files .file.uploading .name {
  opacity: 0.5;
}
x-comp.file-field > .files .file.uploading:hover .box:before {
  display: none;
}
x-comp.file-field > .placeholder {
  text-align: center;
  border-radius: 16px;
  cursor: pointer;
}
x-comp.file-field > .placeholder .title {
  font-weight: bold;
  margin-bottom: 16px;
}
x-comp.file-field > .placeholder .instructions {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.file-field > .upload-button {
  text-align: center;
  margin-top: 32px;
  padding-bottom: 32px;
}
x-comp.file-field > .upload-button .button .icon svg {
  --color: #333;
}
x-comp.file-field > .upload-button input {
  display: none;
}
x-comp.file-field > .placeholder.hidden, x-comp.file-field > .upload-button.hidden {
  display: none;
}
x-comp.file-field.mode-boxes > .files .file {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  padding: 8px;
  background: white;
  cursor: pointer;
}
x-comp.file-field.mode-image-view.select-single {
  width: 100%;
}
x-comp.file-field.mode-image-view > .files {
  grid-template-columns: 1fr;
}
x-comp.file-field.mode-image-view > .files .file .menu {
  border-radius: 32px;
  background-color: white;
}
x-comp.file-field:not(.readonly) {
  min-height: 50px;
}

.mobile-ui x-comp.file-field.mode-boxes > .files {
  grid-template-columns: minmax(0, 1fr);
}

.desktop-ui x-comp.file-field.mode-boxes > .files {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.desktop-ui x-comp.file-field.mode-boxes.select-single > .files {
  grid-template-columns: minmax(auto, 275px);
}

/* ImageEditor */
x-comp.image-editor {
  display: flex;
}
x-comp.image-editor > .toolbar .toolbar-buttons {
  display: flex;
  flex-direction: column;
}
x-comp.image-editor > .body {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  flex-grow: 1;
  background: white;
  overflow: hidden;
  padding: 16px 0;
}
x-comp.image-editor > .toolbar .toolbar-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
x-comp.image-editor > .toolbar .toolbar-buttons .button {
  background: white;
  padding: 0;
  height: 64px;
  gap: 4px;
}
x-comp.image-editor > .toolbar .toolbar-buttons .button.hidden {
  display: none;
}
x-comp.image-editor > .toolbar .toolbar-buttons .button .text {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.image-editor > .toolbar .toolbar-buttons .button.selected .text, x-comp.image-editor > .toolbar .toolbar-buttons .button:hover .text {
  color: #F37530;
}
x-comp.image-editor > .toolbar .toolbar-buttons .button.selected .icon svg, x-comp.image-editor > .toolbar .toolbar-buttons .button:hover .icon svg {
  --color: #F37530;
}
x-comp.image-editor > .toolbar .toolbar-buttons .button.selected {
  border: 1px solid #F37530;
}
x-comp.image-editor > .toolbar .toolbar-buttons .button.selected .text {
  font-weight: bold;
}
x-comp.image-editor .header {
  display: flex;
  background: white;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
x-comp.image-editor .header > .right, x-comp.image-editor .header > .left {
  flex-basis: 0;
  flex-grow: 1;
}
x-comp.image-editor .header > .center {
  margin: auto;
}
x-comp.image-editor .header > .right {
  display: flex;
  justify-content: flex-end;
}
x-comp.image-editor .header > .right .button {
  padding: 2px 16px;
}
x-comp.image-editor .header .button.editor-standard .icon svg {
  --color: #333;
}
x-comp.image-editor .header .button.editor-standard:hover .icon svg {
  --color: #F37530;
}
x-comp.image-editor .header .history .button.editor-standard {
  border: 1px solid #B5BEC5;
  border-radius: 0;
  padding: 6px 12px;
}
x-comp.image-editor .header .history .button.editor-standard .icon svg {
  --color: #333;
}
x-comp.image-editor .header .history .button.editor-standard:first-child {
  border-radius: 26px 0 0 26px;
  border-right: none;
}
x-comp.image-editor .header .history .button.editor-standard:last-child {
  border-radius: 0 26px 26px 0;
}
x-comp.image-editor .header .history .button.editor-standard:hover .icon svg {
  --color: #F37530;
}
x-comp.image-editor .header .history .button.editor-standard.disabled {
  opacity: 1;
}
x-comp.image-editor .header .history .button.editor-standard.disabled .icon svg {
  --color: #B5BEC5;
}

.desktop-ui x-comp.image-editor {
  align-items: stretch;
  column-gap: 16px;
  min-height: 400px;
}
.desktop-ui x-comp.image-editor > .body, .desktop-ui x-comp.image-editor > .stickers-area {
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
}
.desktop-ui x-comp.image-editor > .body {
  display: flex;
}
.desktop-ui x-comp.image-editor > .body .editor {
  flex: 1;
}
.desktop-ui x-comp.image-editor > .stickers-area {
  display: flex;
  flex-direction: column;
  width: 30%;
  min-width: 300px;
  padding: 16px;
  background: white;
  overflow-y: auto;
}
.desktop-ui x-comp.image-editor > .stickers-area .headline {
  font-weight: bold;
  padding: 8px 0;
  margin-bottom: 8px;
}
.desktop-ui x-comp.image-editor > .stickers-area .image-editor-stickers-list {
  overflow-y: auto;
}
.desktop-ui x-comp.image-editor > .toolbar .button {
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  width: 64px;
}
.desktop-ui x-comp.image-editor > .toolbar .button.selected, .desktop-ui x-comp.image-editor > .toolbar .button:hover {
  background: #FCF3EE;
}
.desktop-ui x-comp.image-editor > .progress-panel {
  flex: 1;
  margin-top: 24px;
}

.mobile-ui x-comp.image-editor {
  position: fixed;
  flex-direction: column;
  width: 100%;
  top: 0;
  height: 100dvh;
  background: white;
}
.mobile-ui x-comp.image-editor > .header {
  height: 60px;
  border-bottom: 1px solid #EBEFF2;
}
.mobile-ui x-comp.image-editor > .body {
  width: 100%;
  padding: 0;
}
.mobile-ui x-comp.image-editor > .body > .editor {
  flex-grow: 1;
}
.mobile-ui x-comp.image-editor > .body > .editor x-comp.stickers-list {
  padding: 0 16px;
}
.mobile-ui x-comp.image-editor > .toolbar {
  border-top: 1px solid #EBEFF2;
  margin-top: 8px;
  background: white;
}
.mobile-ui x-comp.image-editor > .toolbar .toolbar-buttons {
  flex-direction: row;
  padding: 6px 24px;
}
.mobile-ui x-comp.image-editor > .toolbar .toolbar-buttons .button {
  flex-basis: 0;
  flex-grow: 1;
  width: auto;
  border: none;
}
.mobile-ui x-comp.image-editor > .progress-panel {
  padding-top: 30vh;
}

/* ImageEditorImageControls */
x-comp.image-editor-image-controls {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin: 8px auto;
  width: max-content;
  align-items: stretch;
}

/* PremiumStickersAccessDialog */
x-comp.premium-stickers-access-dialog > .image {
  height: 64px;
  width: 64px;
  margin: 0;
}
x-comp.premium-stickers-access-dialog .feature-list {
  max-width: 480px;
  margin: auto;
}

.desktop-ui x-comp.premium-stickers-access-dialog .buttons-group .button {
  width: auto;
  max-width: unset;
}

/* LoginMethodsSeparator */
x-comp.login-methods-separator {
  display: flex;
  margin: 24px 0;
  column-gap: 16px;
  text-transform: uppercase;
  color: #767A7D;
  align-items: center;
}
x-comp.login-methods-separator .sep {
  border-top: 1px solid #B5BEC5;
  height: 1px;
  flex: 1;
}

/* FacebookLoginButton */
a.facebook-login-button.button {
  background: #1877F2;
  border-color: #1877F2;
  padding-left: 14px;
  padding-right: 16px;
  color: white;
  --button-spinner-color: white;
}
a.facebook-login-button.button img {
  width: 24px;
  height: 24px;
}

/* AccountLinksPanel */
x-comp.account-links-panel {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}
x-comp.account-links-panel .item {
  display: flex;
  column-gap: 5px;
}
x-comp.account-links-panel .item .question {
  color: #767A7D;
}
x-comp.account-links-panel .item .link {
  font-weight: bold;
  cursor: pointer;
}
x-comp.account-links-panel .item .link:hover {
  text-decoration: underline;
}

/* AccountTermsCheckPanel */
x-comp.account-terms-check-panel {
  row-gap: 8px;
}

/* LoginScreen */
x-comp.login-screen > .app-screen-content {
  padding-top: 40px !important;
}
x-comp.login-screen > .app-screen-content > .app-screen-head .instructions {
  margin: 0 0 36px;
}

/* CreateAccountScreen */
x-comp.create-account-screen > .app-screen-content {
  padding-top: 40px !important;
}
x-comp.create-account-screen .checkbox-group[data-field-name=terms] {
  margin-top: 12px;
}

/* RegisterVideoCreatorScreen */
x-comp.register-video-creator-screen > .app-screen-content {
  padding-top: 40px !important;
}
x-comp.register-video-creator-screen > .app-screen-content x-comp.instructions-box {
  margin-bottom: 32px;
}

/* CompleteResetPasswordScreen */
x-comp.complete-reset-password-screen .info-text {
  margin-top: 24px;
  text-align: center;
}

/* AccountScreen */
x-comp.account-screen > .screen-with-nav {
  display: flex;
  flex-direction: column;
}
x-comp.account-screen > .screen-with-nav > .app-screen {
  overflow: auto;
  padding-top: 12px;
}

/* AccountMenu */
x-comp.account-menu .buttons-group {
  border-top: 1px solid #F1F1F1;
  padding: 16px 0 32px 0;
  margin-top: 64px;
}

/* AccountCreditsScreen */
x-comp.account-credits-screen {
  text-align: center;
}
x-comp.account-credits-screen img.image {
  height: 235px;
}
x-comp.account-credits-screen h3.balance-label {
  font: 900 22px/26px Lato, sans-serif;
  padding: 16px 0;
  margin: 0;
}
x-comp.account-credits-screen h2.balance {
  font: 900 22px/26px Lato, sans-serif;
  font-weight: 900;
  color: #F37530;
  margin: 0 0 16px;
}
x-comp.account-credits-screen .bonuses-label {
  font-size: 18px;
  font-weight: bold;
  margin: 28px 0 8px;
}
x-comp.account-credits-screen .bonus-row .credits {
  background: #EBEFF2;
  padding: 4px 8px;
  border-radius: 6px;
  margin-right: 6px;
}
x-comp.account-credits-screen .bonus-row .expiration {
  color: #B5BEC5;
  margin-left: 6px;
}
x-comp.account-credits-screen .after-purchase-controls {
  margin-top: 32px;
}
x-comp.account-credits-screen .packages-label {
  padding: 8px 0;
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.account-credits-screen .packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 16px;
  color: #333;
  padding: 16px 0 32px;
}
x-comp.account-credits-screen .package {
  display: flex;
  flex-direction: column;
  flex-basis: 25%;
  padding: 16px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  background: white;
}
x-comp.account-credits-screen .package .box {
  background: #FCF3EE;
  border-radius: 8px;
  padding: 8px 0 0;
}
x-comp.account-credits-screen .package .box .credits {
  display: flex;
  color: #F37530;
  font: 900 24px/32px Lato, sans-serif;
  align-items: flex-end;
  line-height: normal;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px 0;
  margin-bottom: 8px;
}
x-comp.account-credits-screen .package .box .credits .amount {
  font: 900 48px/80px Lato, sans-serif;
  line-height: 1;
}
x-comp.account-credits-screen .package .box .image {
  padding: 0;
  height: 150px;
}
x-comp.account-credits-screen .package .box .saving {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  background: #464646;
  border-radius: 0 0 4px 4px;
  font: normal 16px/24px Nunito, sans-serif;
  color: white;
  font-weight: 700;
  padding: 8px 0;
}
x-comp.account-credits-screen .package .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.account-credits-screen .package .price > div {
  flex-grow: 1;
  line-height: normal;
}
x-comp.account-credits-screen .package .price .full-price {
  color: #B5BEC5;
  font: 900 22px/26px Lato, sans-serif;
  font-weight: 900;
  text-decoration: line-through;
}
x-comp.account-credits-screen .package .button {
  align-self: center;
  margin: 8px 0 16px 0;
}
x-comp.account-credits-screen .package .credit-price {
  font: normal 18px/24px Nunito, sans-serif;
  color: #767A7D;
}

.mobile-ui x-comp.account-credits-screen .packages {
  grid-template-columns: minmax(auto, 400px);
}

/* AccountTermsCheckPanel */
x-comp.account-terms-check-panel a.terms-link {
  color: #333333;
  font-weight: bold;
  text-decoration: none;
}
x-comp.account-terms-check-panel a.terms-link:hover {
  text-decoration: underline;
}

/* AccountChannels */
x-comp.account-channels .app-screen-body .toggle-tabs {
  margin-bottom: 16px;
}

/* FacebookConnection */
x-comp.facebook-connection .instructions-box {
  margin-bottom: 32px;
}

/* AccountSubscriptionScreen */
x-comp.account-subscription-screen x-comp.info-panel {
  margin-bottom: 16px;
}
x-comp.account-subscription-screen .new-subscription-credits {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: white;
  padding: 16px;
}
x-comp.account-subscription-screen .new-subscription-credits .main-line {
  font-weight: bold;
}
x-comp.account-subscription-screen .new-subscription-credits .main-line .credit {
  color: #F37530;
  margin-right: 4px;
}
x-comp.account-subscription-screen .new-subscription-credits .explanation-line {
  margin-top: 8px;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.account-subscription-screen .subscriptions-top-actions {
  margin-bottom: 32px;
}
x-comp.account-subscription-screen .subscription-plans {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

/* AccountPostLimits */
x-comp.account-post-limits .limit-gauge {
  margin-bottom: 32px;
}
x-comp.account-post-limits p + p {
  margin-top: 16px;
}
x-comp.account-post-limits .support-contact-box {
  margin-top: 32px;
}

/* LimitGauge */
x-comp.limit-gauge {
  display: grid;
  column-gap: 16px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 32px;
  background-color: white;
  grid-template-columns: 1fr 1fr;
}
x-comp.limit-gauge > .numbers {
  display: flex;
  column-gap: 4px;
  justify-content: center;
  align-items: center;
  font: 900 24px/32px Lato, sans-serif;
  color: #B5BEC5;
  background-color: #F8F9FB;
}
x-comp.limit-gauge > .numbers .used {
  color: #333;
}
x-comp.limit-gauge > .bar {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  justify-content: center;
}
x-comp.limit-gauge > .bar .text {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.limit-gauge > .bar .progress-bar {
  height: 6px;
  --color: #008A00;
}
x-comp.limit-gauge.exhausted > .numbers .used {
  color: #F37530;
}
x-comp.limit-gauge.exhausted > .bar .progress-bar {
  --color: #F37530;
}

/* SubscriptionPlanOffering */
x-comp.subscription-plan-offering {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  padding: 24px 16px;
  position: relative;
}
x-comp.subscription-plan-offering .active-indication {
  position: absolute;
  top: 24px;
  right: 16px;
  display: flex;
  column-gap: 8px;
  color: #008A00;
  --color: #008A00;
}
x-comp.subscription-plan-offering .name {
  font-weight: 700;
  margin-bottom: 24px;
}
x-comp.subscription-plan-offering .price {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #EAF9DE;
  border-radius: 8px;
  margin-bottom: 16px;
}
x-comp.subscription-plan-offering .price .periodical {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
x-comp.subscription-plan-offering .price .periodical .value {
  font: 900 32px/48px Lato, sans-serif;
  color: #344054;
}
x-comp.subscription-plan-offering .price .periodical .interval {
  font-weight: 700;
  color: #464646;
}
x-comp.subscription-plan-offering .actions {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}
x-comp.subscription-plan-offering .actions:not(:empty) {
  margin: 32px 0 16px;
}

/* EmailConfirmationStartedScreen */
x-comp.email-confirmation-started-screen .app-screen-content .app-screen-head {
  margin-bottom: 90px;
}
x-comp.email-confirmation-started-screen .app-screen-content .app-screen-body .note {
  font: normal 14px/18px Nunito, sans-serif;
  margin-top: 16px;
  color: #767A7D;
}

/* EmailConfirmationRequiredScreen */
x-comp.email-confirmation-required-screen .app-screen-body .email-block {
  margin: 16px 0 32px;
}
x-comp.email-confirmation-required-screen .app-screen-body .email-block .label {
  font: normal 12px/24px Nunito, sans-serif;
}

/* FacebookDisconnectDialog */
x-comp.facebook-disconnect-dialog > .image {
  width: 64px;
  height: 64px;
  margin: 16px 0;
}

/* ConnectionStatusPanel */
x-comp.connection-status-panel {
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  background: white;
  margin-bottom: 16px;
}
x-comp.connection-status-panel > .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
x-comp.connection-status-panel > .head .title {
  margin-bottom: 4px;
  color: #767A7D;
}
x-comp.connection-status-panel > .head .name {
  font-weight: bold;
}
x-comp.connection-status-panel > .head .status {
  display: flex;
  gap: 8px;
  color: #72B772;
}
x-comp.connection-status-panel > .head .status .icon {
  display: flex;
  --color: #72B772;
}
x-comp.connection-status-panel > .body {
  margin-top: 12px;
}
x-comp.connection-status-panel > .body .button {
  width: 100%;
}

/* ConnectedAssetsList */
x-comp.connected-assets-list {
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  background: white;
  margin-bottom: 16px;
}
x-comp.connected-assets-list > .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
x-comp.connected-assets-list > .head .icon {
  display: flex;
}
x-comp.connected-assets-list > .head .title {
  font-weight: bold;
}
x-comp.connected-assets-list > .items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
x-comp.connected-assets-list > .items .item:not(:last-child) {
  border-bottom: 1px solid #EBEFF2;
}
x-comp.connected-assets-list > .items .item .name {
  font-weight: bold;
  margin-bottom: 2px;
}
x-comp.connected-assets-list > .items .item .value {
  color: #767A7D;
}
x-comp.connected-assets-list > .items .item .icon {
  display: flex;
  --color: #B5BEC5;
}

/* FeatureList */
x-comp.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
x-comp.feature-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
x-comp.feature-list > div .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 32px;
  flex-shrink: 0;
}

/* CampaignsBoard */
x-comp.campaigns-board .app-screen-body {
  display: flex;
  flex-direction: column;
}
x-comp.campaigns-board .body-area {
  padding-bottom: 32px;
}
x-comp.campaigns-board .body-area h3 {
  margin-top: 0;
}
x-comp.campaigns-board .body-area .spinner {
  margin: 32px auto;
}
x-comp.campaigns-board .body-area .paging-bar {
  margin-top: 25px;
}
x-comp.campaigns-board .empty-placeholder {
  margin-top: 32px;
  text-align: center;
}
x-comp.campaigns-board .empty-placeholder .placeholder-image {
  margin-bottom: 16px;
}
x-comp.campaigns-board .create-first-campaign {
  margin-top: 24px;
}
x-comp.campaigns-board .campaigns-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

.mobile-ui x-comp.campaigns-board .header-area .search {
  gap: 8px;
}
.mobile-ui x-comp.campaigns-board .header-area .dashboard {
  margin-top: -4px;
  gap: 18px;
}
.mobile-ui x-comp.campaigns-board .header-area .dashboard .toggle-tabs {
  max-width: unset;
  flex-basis: 100%;
  order: 1;
}
.mobile-ui x-comp.campaigns-board .header-area .dashboard .buttons .button {
  padding: 10px;
}
.mobile-ui x-comp.campaigns-board .header-area .dashboard .buttons .button .text {
  display: none;
}

.desktop-ui x-comp.campaigns-board > .app-screen-content {
  min-width: 920px;
}

/* CampaignTitleIcons */
x-comp.campaign-title-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  font: normal 14px/18px Nunito, sans-serif;
  color: #767A7D;
}
x-comp.campaign-title-icons .channels, x-comp.campaign-title-icons .mode {
  display: flex;
}
x-comp.campaign-title-icons .channels {
  gap: 8px;
}
x-comp.campaign-title-icons .channels svg {
  width: 24px;
  height: 24px;
}
x-comp.campaign-title-icons .time {
  margin-left: 2px;
}

/* CampaignBox */
x-comp.campaign-box {
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  position: relative;
}
x-comp.campaign-box .wrap {
  display: flex;
  gap: 32px;
}
x-comp.campaign-box .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 295px;
  align-self: center;
  flex-shrink: 0;
}
x-comp.campaign-box .image img {
  width: 100%;
  height: 100%;
}
x-comp.campaign-box .content {
  flex-grow: 1;
}
x-comp.campaign-box .content .header {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
  margin-bottom: 16px;
}
x-comp.campaign-box .content .header .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  row-gap: 8px;
}
x-comp.campaign-box .content .header .actions {
  display: flex;
  align-items: center;
  align-self: start;
  justify-content: flex-end;
  gap: 24px;
}
x-comp.campaign-box .content .campaign-status-box {
  margin-bottom: 16px;
}
x-comp.campaign-box .content .campaign-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
x-comp.campaign-box.preview-illustration .image {
  height: 195px;
  padding: 8px;
}
x-comp.campaign-box.preview-illustration .image img {
  object-fit: contain;
}
x-comp.campaign-box.preview-image .image {
  height: 295px;
}
x-comp.campaign-box.preview-image .image img {
  object-fit: cover;
}
x-comp.campaign-box .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  z-index: 2;
  transition: opacity 0.12s;
}
x-comp.campaign-box .menu svg {
  width: 24px;
  height: 24px;
}
x-comp.campaign-box .menu:hover svg {
  --color: #F37530;
}
x-comp.campaign-box .campaign-name {
  font-weight: 700;
}
x-comp.campaign-box .team-area {
  display: flex;
  border-bottom: 1px solid #EBEFF2;
  padding-bottom: 16px;
}
x-comp.campaign-box .team-area .date {
  font: normal 18px/24px Nunito, sans-serif;
  color: #767A7D;
}
x-comp.campaign-box .member {
  display: grid;
  column-gap: 16px;
  font: normal 18px/24px Nunito, sans-serif;
}
x-comp.campaign-box .member + .member {
  margin-top: 8px;
}
x-comp.campaign-box .member .caption {
  color: #767A7D;
  grid-area: caption;
}
x-comp.campaign-box .member .name {
  font-weight: 700;
  color: #F37530;
  grid-area: name;
  display: flex;
  column-gap: 6px;
}
x-comp.campaign-box .member .name .icon {
  display: flex;
}
x-comp.campaign-box .member .name .text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
x-comp.campaign-box .member .name .text.empty {
  color: #B5BEC5;
}
x-comp.campaign-box .member .email {
  grid-area: email;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-ui x-comp.campaign-box .team-area {
  column-gap: 32px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.desktop-ui x-comp.campaign-box .team-area .member {
  grid-template-columns: auto auto 1fr;
  grid-template-areas: "caption name email";
}
.desktop-ui x-comp.campaign-box .team-area .member .email {
  margin-left: -8px;
}
.desktop-ui x-comp.campaign-box .team-area .date {
  flex-shrink: 0;
}

.mobile-ui x-comp.campaign-box .menu {
  position: relative;
  right: -4px;
  top: -4px;
}
.mobile-ui x-comp.campaign-box .content .header {
  align-items: flex-start;
}
.mobile-ui x-comp.campaign-box .content .campaign-text {
  -webkit-line-clamp: 5;
}
.mobile-ui x-comp.campaign-box .image {
  width: 100%;
  margin-bottom: 16px;
}
.mobile-ui x-comp.campaign-box.preview-image .image {
  aspect-ratio: 1/1;
  height: auto;
}
.mobile-ui x-comp.campaign-box .team-area {
  order: 2;
  flex-direction: column;
  border-top: 1px solid #EBEFF2;
  margin-top: 16px;
}
.mobile-ui x-comp.campaign-box .team-area .members {
  padding: 16px 0;
}
.mobile-ui x-comp.campaign-box .team-area .member {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "caption name" "email email";
}
.mobile-ui x-comp.campaign-box .team-area .member .name {
  justify-content: end;
}
.mobile-ui x-comp.campaign-box .team-area .member .email {
  text-align: right;
}
.mobile-ui x-comp.campaign-box .team-area .date {
  padding-top: 16px;
  border-top: 1px solid #EBEFF2;
  text-align: center;
}
.mobile-ui x-comp.campaign-box .box-buttons {
  order: 3;
  margin: 32px 0 16px;
  text-align: center;
}

/* CampaignStatusBox */
x-comp.campaign-status-box {
  display: grid;
  grid-template-areas: "icon body";
  grid-template-columns: 24px auto;
  align-items: flex-start;
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  background: white;
  border: 1px solid #EBEFF2;
}
x-comp.campaign-status-box > .icon {
  width: 24px;
  height: 24px;
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.campaign-status-box > .body {
  grid-area: body;
}
x-comp.campaign-status-box > .body > .title {
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.campaign-status-box > .body > .text {
  color: #767A7D;
  margin-top: 4px;
}
x-comp.campaign-status-box > .body > .button {
  margin-top: 16px;
}
x-comp.campaign-status-box > .button {
  grid-area: button;
}
x-comp.campaign-status-box.success .icon {
  --color: #81A730;
}
x-comp.campaign-status-box.colored.success {
  background-color: #F6FCEE;
  border-color: #F6FCEE;
}
x-comp.campaign-status-box.colored.attention {
  background-color: #FCF3EE;
  border-color: #FCF3EE;
}
x-comp.campaign-status-box.colored.in-progress {
  background-color: #F8F9FB;
  border-color: #F8F9FB;
}
.desktop-ui x-comp.campaign-status-box.with-button {
  grid-template-areas: "icon body button";
  grid-template-columns: 24px auto min-content;
}
.mobile-ui x-comp.campaign-status-box.with-button {
  grid-template-areas: "icon body" "button button";
}

/* CampaignDetail */
x-comp.campaign-detail {
  padding-bottom: 32px;
}
x-comp.campaign-detail .app-screen-body .campaign-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
x-comp.campaign-detail .app-screen-body .campaign-header .campaign-name {
  margin: 0 0 12px;
}
x-comp.campaign-detail .app-screen-body .campaign-header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
x-comp.campaign-detail .app-screen-body .campaign-header .menu svg {
  width: 24px;
  height: 24px;
  --color: #333;
}
x-comp.campaign-detail .app-screen-body .campaign-header .menu:hover svg {
  --color: #F37530;
}
x-comp.campaign-detail .app-screen-body .campaign-overall-block {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
x-comp.campaign-detail .app-screen-body .campaign-countdown {
  background: #FFFFFF;
  border: 1px solid #EBEFF2;
  border-radius: 8px;
  padding: 16px 24px;
}
x-comp.campaign-detail .app-screen-body .campaign-countdown .title {
  font-weight: 700;
  padding: 8px 0 24px;
  text-align: center;
}
x-comp.campaign-detail .app-screen-body .campaign-creative-buttons, x-comp.campaign-detail .app-screen-body .campaign-main-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}
x-comp.campaign-detail .app-screen-body .campaign-main-buttons .action-button {
  width: 100%;
}
x-comp.campaign-detail .app-screen-body .campaign-post-placeholder {
  background: #FFFFFF;
  border: 1px solid #EBEFF2;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.campaign-detail .app-screen-body .campaign-overall-actions:empty, x-comp.campaign-detail .app-screen-body .campaign-creative-actions:empty, x-comp.campaign-detail .app-screen-body .campaign-creative-buttons:empty, x-comp.campaign-detail .app-screen-body .campaign-main-buttons:empty {
  display: none;
}
.mobile-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.mobile-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-overall-block {
  margin: 16px 0;
}
.mobile-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .tag-select {
  margin-bottom: -8px;
}
.mobile-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-creative-buttons, .mobile-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-main-buttons {
  margin-top: 24px;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content {
  min-width: 920px;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body {
  display: grid;
  grid-template-areas: "top top" "left right";
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 54px;
  row-gap: 32px;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body > .top {
  grid-area: top;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body > .left {
  grid-area: left;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body > .right {
  grid-area: right;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .tag-select {
  margin: 6px 0;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-creative-actions, .desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-main-buttons {
  margin-top: 16px;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-creative-buttons {
  margin: 16px 0;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-versions-block {
  padding: 16px;
  background: rgba(112, 112, 112, 0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: 16px;
}
.desktop-ui x-comp.campaign-detail > .app-screen-content > .app-screen-body .campaign-versions-block .campaign-creative-actions {
  margin-top: 0;
}

/* CampaignPublishingFailDialog */
x-comp.campaign-publishing-fail-dialog .error-detail {
  margin-top: 18px;
}
x-comp.campaign-publishing-fail-dialog .error-detail .label {
  color: #767A7D;
  text-align: right;
  font-size: 14px;
}
x-comp.campaign-publishing-fail-dialog .error-detail .texts {
  background: #EBEFF2;
  padding: 15px 25px;
  border-radius: 6px;
}
x-comp.campaign-publishing-fail-dialog .error-detail .title {
  font-weight: bold;
  margin-bottom: 8px;
}

/* CampaignContentInfo */
x-comp.campaign-content-info {
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  display: flex;
}
x-comp.campaign-content-info.empty {
  display: none;
}
x-comp.campaign-content-info.grayed {
  color: #B5BEC5;
}
x-comp.campaign-content-info.grayed .icon {
  --color: #B5BEC5;
}
x-comp.campaign-content-info .icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.campaign-content-info .texts {
  flex: 1;
  white-space: pre-wrap;
}
x-comp.campaign-content-info .texts .title {
  font-weight: bold;
}
x-comp.campaign-content-info .texts .comment {
  margin-top: 8px;
  font: normal 14px/18px Nunito, sans-serif;
}

/* CampaignTextsEditor */
x-comp.campaign-texts-editor .top-actions {
  margin-bottom: 32px;
}

/* CampaignPublishingScreen */
x-comp.campaign-publishing-screen .headline-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
x-comp.campaign-publishing-screen .headline-area .icon svg {
  width: 64px;
  height: 64px;
}
x-comp.campaign-publishing-screen .headline-area .campaign-name {
  font-weight: bold;
  color: #F37530;
}
x-comp.campaign-publishing-screen .headline-area .headline {
  font-weight: bold;
}
x-comp.campaign-publishing-screen .form-container {
  padding-top: 16px;
}
x-comp.campaign-publishing-screen .form-container .form-wrap {
  padding: 16px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  background: white;
}
x-comp.campaign-publishing-screen .form-container .form-wrap .decorated-field .label-area .label {
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: bold;
  margin-bottom: 16px;
}
x-comp.campaign-publishing-screen .form-container .form-wrap .checkbox-group {
  gap: 0;
}
x-comp.campaign-publishing-screen .form-container .form-wrap .checkbox-group .option {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #EBEFF2;
}
x-comp.campaign-publishing-screen .form-container .delivery-options {
  margin-top: 8px;
}
x-comp.campaign-publishing-screen .form-container .delivery-note {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 8px;
  margin-top: 8px;
  font: normal 14px/18px Nunito, sans-serif;
  --color: #333;
}
x-comp.campaign-publishing-screen .form-container .delivery-note.grayed {
  color: #767A7D;
  --color: #767A7D;
}
x-comp.campaign-publishing-screen .form-container .delivery-note svg {
  flex-shrink: 0;
  max-height: 18px;
  max-width: 18px;
}
x-comp.campaign-publishing-screen .form-container .delivery-note .button {
  padding: 0;
  font-weight: bold;
}
x-comp.campaign-publishing-screen .manage-connections {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px;
}
x-comp.campaign-publishing-screen .manage-connections .text {
  font: normal 14px/18px Nunito, sans-serif;
  color: #767A7D;
}
x-comp.campaign-publishing-screen .subscription-required-panel {
  margin: 24px 0 32px;
}

.desktop-ui x-comp.campaign-publishing-screen .headline-area .headline {
  font: 900 24px/32px Lato, sans-serif;
}

.mobile-ui x-comp.campaign-publishing-screen .headline-area .headline {
  font: 900 22px/26px Lato, sans-serif;
}

/* CampaignExternalPreview */
x-comp.campaign-external-preview {
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  position: relative;
}

/* CampaignExternalRendering */
x-comp.campaign-external-rendering {
  padding: 8px 16px;
  display: flex;
  align-items: start;
  justify-content: center;
  background: white;
  height: 100vh;
  border-top: 1px solid #6af66a;
}
x-comp.campaign-external-rendering .post-mockup {
  max-width: 450px;
}

/* CampaignImageGallery */
x-comp.campaign-image-gallery .not-available {
  text-align: center;
}
x-comp.campaign-image-gallery .not-available img {
  height: 150px;
}
x-comp.campaign-image-gallery .image-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
x-comp.campaign-image-gallery .image-gallery .item {
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background-color: #EBEFF2;
}
x-comp.campaign-image-gallery .image-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
x-comp.campaign-image-gallery .buttons-group {
  margin: 32px 0;
}

.mobile-ui x-comp.campaign-image-gallery {
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.desktop-ui x-comp.campaign-image-gallery > .app-screen-content {
  width: unset;
  max-width: 1140px;
}
.desktop-ui x-comp.campaign-image-gallery .image-gallery {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* AiGenerationProgress */
x-comp.ai-generation-progress {
  gap: 32px;
  max-width: 716px;
  padding: 32px;
  margin: 0 auto;
}
x-comp.ai-generation-progress .lottie-player {
  margin: 16px 0 8px;
  width: 190px;
  aspect-ratio: 1;
}
x-comp.ai-generation-progress .slide-area {
  max-width: 420px;
}
x-comp.ai-generation-progress .slide-area .title {
  font: 900 22px/26px Lato, sans-serif;
  font-weight: bold;
  margin-bottom: 16px;
}

/* CreateAscCampaignScreen */
x-comp.create-asc-campaign-screen .form-container .delivery-options {
  margin-top: 8px;
}

/* CampaignPublishedScreen */
x-comp.campaign-published-screen > .app-screen-content > .app-screen-head:not(:empty) {
  margin-bottom: 32px;
}
x-comp.campaign-published-screen > .app-screen-content > .app-screen-head > .main-image {
  height: 194px;
  margin-bottom: 64px;
}
x-comp.campaign-published-screen > .app-screen-content > .app-screen-body .actions {
  margin-bottom: 48px;
}

/* CampaignGraphicsEditor */
x-comp.campaign-graphics-editor .header-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
x-comp.campaign-graphics-editor .header-area .label {
  font-weight: 700;
  color: #F37530;
  margin-bottom: 10px;
}
x-comp.campaign-graphics-editor .header-area .headline {
  margin: 0;
}

.desktop-ui x-comp.campaign-graphics-editor .app-screen-content {
  width: auto;
  height: 100%;
  max-width: 1360px;
}
.desktop-ui x-comp.campaign-graphics-editor .app-screen-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.desktop-ui x-comp.campaign-graphics-editor .app-screen-body .image-editor {
  flex: 1;
}

.mobile-ui x-comp.campaign-graphics-editor:not(.app-screen-nested) > .app-screen-content {
  padding: 0;
}

/* PostMockupVariants */
x-comp.post-mockup-variants > .drop-down {
  margin-bottom: 16px;
}

/* PostMockup */
x-comp.post-mockup {
  min-width: 275px;
  min-height: 150px;
  border-radius: 8px;
  background: white;
  color: #333;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(55, 64, 71, 0.1);
}
x-comp.post-mockup > .text {
  white-space: pre-wrap;
}
x-comp.post-mockup > .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  line-height: 24px;
}
x-comp.post-mockup > .image img {
  max-width: 100%;
  max-height: 100%;
}
x-comp.post-mockup > .image .text-version {
  flex: 1;
  font: normal 16px/24px Nunito, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.post-mockup > .image.empty {
  aspect-ratio: 1/1;
}
x-comp.post-mockup > .image.empty:not(.editable) {
  padding: 15px;
  background: linear-gradient(135deg, #FF5964 0%, #F37530 100%);
  text-align: center;
}
x-comp.post-mockup > .image.empty:not(.editable) h3 {
  color: white;
}
x-comp.post-mockup > .image.editable {
  background-color: #F3F3F3;
}
x-comp.post-mockup > .image .crop-hint {
  position: absolute;
  border-radius: 8px;
  background: rgba(51, 51, 51, 0.8);
  left: 8px;
  bottom: 14px;
  width: calc(100% - 16px);
  text-align: center;
  color: white;
  padding: 24px;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.post-mockup > .image .crop-hint .title {
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}
x-comp.post-mockup > .image .crop-hint .button {
  margin-top: 16px;
  width: 100%;
}
x-comp.post-mockup.format-facebook-post, x-comp.post-mockup.format-facebook-ad {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, Nunito, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 20px;
  color: rgb(5, 5, 5);
}
x-comp.post-mockup.format-facebook-post > .head, x-comp.post-mockup.format-facebook-ad > .head {
  display: flex;
  padding: 16px 16px 8px;
  align-items: center;
  flex-direction: row;
}
x-comp.post-mockup.format-facebook-post > .head .icon, x-comp.post-mockup.format-facebook-ad > .head .icon {
  background-color: #F37530;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.post-mockup.format-facebook-post > .head .icon svg, x-comp.post-mockup.format-facebook-ad > .head .icon svg {
  width: 22px;
  height: 22px;
  --color: white;
}
x-comp.post-mockup.format-facebook-post > .head .main, x-comp.post-mockup.format-facebook-ad > .head .main {
  padding-bottom: 3px;
}
x-comp.post-mockup.format-facebook-post > .head .author, x-comp.post-mockup.format-facebook-ad > .head .author {
  font-weight: 600;
}
x-comp.post-mockup.format-facebook-post > .head .subtitle, x-comp.post-mockup.format-facebook-ad > .head .subtitle {
  font-size: 13px;
  line-height: 16px;
  color: #65676B;
}
x-comp.post-mockup.format-facebook-post > .head .subtitle > *, x-comp.post-mockup.format-facebook-ad > .head .subtitle > * {
  vertical-align: middle;
}
x-comp.post-mockup.format-facebook-post > .text, x-comp.post-mockup.format-facebook-ad > .text {
  padding: 0 16px 10px;
}
x-comp.post-mockup.format-facebook-post > .text:empty, x-comp.post-mockup.format-facebook-ad > .text:empty {
  display: none;
}
x-comp.post-mockup.format-facebook-post > .text p, x-comp.post-mockup.format-facebook-ad > .text p {
  margin: 0;
}
x-comp.post-mockup.format-facebook-post > .text p + p, x-comp.post-mockup.format-facebook-ad > .text p + p {
  margin-top: 0.5em;
}
x-comp.post-mockup.format-facebook-post > .text a, x-comp.post-mockup.format-facebook-ad > .text a {
  color: #0064d1;
}
x-comp.post-mockup.format-facebook-ad > .ad-block {
  background-color: #F0F2F5;
  padding: 10px 16px 12px;
  display: flex;
  gap: 15px;
  align-items: center;
}
x-comp.post-mockup.format-facebook-ad > .ad-block .texts {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  min-width: 0;
  flex-shrink: 1;
  flex-grow: 1;
}
x-comp.post-mockup.format-facebook-ad > .ad-block .texts .link {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 16px;
  color: #65676B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
x-comp.post-mockup.format-facebook-ad > .ad-block .texts .headline {
  font-weight: 600;
  font-size: 17px;
  margin-top: 2px;
}
x-comp.post-mockup.format-facebook-ad > .ad-block .texts .description {
  color: #65676B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
x-comp.post-mockup.format-facebook-ad > .ad-block .call-to-action {
  padding: 6px 12px;
  background-color: #E4E6EB;
  font-weight: 600;
  border-radius: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
x-comp.post-mockup.format-instagram-post {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, Nunito, sans-serif;
  font-size: 14px;
  line-height: 18px;
}
x-comp.post-mockup.format-instagram-post > .head {
  display: flex;
  padding: 16px 16px 12px;
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
}
x-comp.post-mockup.format-instagram-post > .head .icon {
  background-color: #F37530;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.post-mockup.format-instagram-post > .head .icon svg {
  width: 18px;
  height: 18px;
  --color: white;
}
x-comp.post-mockup.format-instagram-post > .head .author {
  font-weight: 600;
  padding-bottom: 3px;
}
x-comp.post-mockup.format-instagram-post > .icon-bar {
  display: flex;
  column-gap: 16px;
  padding: 12px 16px 0 12px;
  align-items: center;
}
x-comp.post-mockup.format-instagram-post > .icon-bar .icon {
  display: flex;
}
x-comp.post-mockup.format-instagram-post > .icon-bar .icon:last-child {
  margin-left: auto;
}
x-comp.post-mockup.format-instagram-post > .text {
  padding: 10px 16px 16px;
}
x-comp.post-mockup.format-instagram-post > .text .account-name {
  margin-right: 4px;
  font-weight: 600;
}

/* CampaignBrief */
x-comp.campaign-brief {
  display: flex;
  flex-direction: column;
}
x-comp.campaign-brief > .screen-switcher {
  flex: 1;
  overflow: auto;
}

/* CampaignTopicStep */
x-comp.campaign-topic-step {
  padding-bottom: 60px;
}

/* CampaignInformationBriefingStep */
x-comp.campaign-information-briefing-step .app-screen-body .tab-content {
  margin-top: 24px;
}
x-comp.campaign-information-briefing-step .app-screen-body .tab-content .hidden {
  display: none;
}
x-comp.campaign-information-briefing-step .progress-panel {
  margin-top: 48px;
}

/* CampaignAiGenerationStep */
x-comp.campaign-ai-generation-step .app-screen-head > .loader {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CampaignOrderConfirmStep */
x-comp.campaign-order-confirm-step .order-label {
  margin-top: 24px;
  margin-bottom: 0;
}
x-comp.campaign-order-confirm-step .order-price {
  margin: 0;
}
x-comp.campaign-order-confirm-step .insufficient-credits-warning {
  color: #B51F1F;
  font-weight: bold;
  margin-top: 16px;
}

/* CampaignSummarySection */
x-comp.campaign-summary-section > .title {
  font-weight: bold;
  margin: 16px 0;
}
x-comp.campaign-summary-section + .campaign-summary-section {
  margin-top: 24px;
}
x-comp.campaign-summary-section > .text-field {
  border: none;
}

/* CampaignSummaryHeadline */
x-comp.campaign-summary-headline {
  background: white;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  padding: 8px 16px;
  margin-bottom: 16px;
}

/* CampaignSummaryList */
x-comp.campaign-summary-list {
  background: white;
  padding: 0 16px;
  border-radius: 8px;
}
x-comp.campaign-summary-list > .item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EBEFF2;
}
x-comp.campaign-summary-list > .item:last-child {
  border-bottom: none;
}

/* CampaignSummaryProperty */
x-comp.campaign-summary-property {
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.campaign-summary-property .label {
  font-weight: bold;
  margin-bottom: 6px;
}
x-comp.campaign-summary-property .value {
  white-space: pre-wrap;
}

/* AiStyleOptions */
x-comp.ai-style-options .app-screen-body > .blocks {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
x-comp.ai-style-options .app-screen-body > .buttons {
  margin: 32px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CampaignAiLog */
x-comp.campaign-ai-log .item {
  padding-bottom: 24px;
}
x-comp.campaign-ai-log .item:first-child {
  padding-top: 16px;
}
x-comp.campaign-ai-log .item:not(:last-child) {
  margin-bottom: 24px;
}
x-comp.campaign-ai-log .item .expander > .head-area .title {
  color: #464646;
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.campaign-ai-log .item .expander > .head-area .status-line {
  margin-top: 4px;
  color: #767A7D;
  font: normal 14px/18px Nunito, sans-serif;
  display: flex;
  flex-direction: row;
  column-gap: 6px;
}
x-comp.campaign-ai-log .item .expander > .head-area .status-line.status-error {
  color: #B51F1F;
}
x-comp.campaign-ai-log .item .expander > .head-area .status-line.status-error svg {
  width: 16px;
  --color: #B51F1F;
}
x-comp.campaign-ai-log .item .expander > .expander-button {
  top: 18px;
}
x-comp.campaign-ai-log .item .expander > .body .inner {
  padding: 16px 0 24px 0;
}
x-comp.campaign-ai-log .item .expander:not(:last-child) {
  margin-bottom: 16px;
}
x-comp.campaign-ai-log .item > .title {
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
x-comp.campaign-ai-log .block {
  background: white;
  padding: 16px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  position: relative;
}
x-comp.campaign-ai-log .block > .text {
  background: white;
  padding: 16px;
  border-radius: 8px;
  font: normal 14px/18px Nunito, sans-serif;
  margin-top: 8px;
  white-space: pre-wrap;
}
x-comp.campaign-ai-log .block > .text.output {
  background: #EAF9DE;
}
x-comp.campaign-ai-log .block > .text .message + .message {
  margin-top: 16px;
}
x-comp.campaign-ai-log .block > .text .message .message-role {
  display: inline-block;
  background: #eee;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
x-comp.campaign-ai-log .block + .block {
  margin-top: 32px;
}
x-comp.campaign-ai-log .ai-review {
  margin-top: 16px;
}
x-comp.campaign-ai-log .heading {
  font: normal 14px/18px Nunito, sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  padding: 0 24px;
  color: #767A7D;
}
x-comp.campaign-ai-log .rating-stars {
  margin-bottom: 16px;
}
x-comp.campaign-ai-log .info {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  touch-action: manipulation;
}
x-comp.campaign-ai-log .info:hover {
  --color: #CD6831;
}

/* AiReview */
x-comp.ai-review .wrap {
  background: #FCF3EE;
  padding: 0 16px;
  border-radius: 8px;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.ai-review .wrap > .text {
  padding: 16px 0;
}
x-comp.ai-review .buttons {
  margin-top: 16px;
  text-align: center;
}
x-comp.ai-review .buttons:empty {
  display: none;
}
x-comp.ai-review .add-review {
  font: normal 14px/18px Nunito, sans-serif;
  text-align: center;
  padding: 8px 0;
  color: #F37530;
  cursor: pointer;
}
x-comp.ai-review .actions {
  padding: 8px 0;
  border-top: 1px solid rgba(112, 112, 112, 0.05);
  display: flex;
}
x-comp.ai-review .actions .button {
  flex: 1 1 0;
}
x-comp.ai-review .actions .button .icon > svg {
  width: 20px;
  height: 20px;
}

/* IntegrationsBoard */
x-comp.integrations-board .toggle-tabs {
  margin-bottom: 16px;
}
x-comp.integrations-board .instructions-box {
  margin-bottom: 32px;
}
x-comp.integrations-board .instructions-box.collapsed {
  margin-bottom: 0;
}

/* ConnectionErrorBox */
x-comp.connection-error-box {
  display: flex;
  justify-content: center;
  column-gap: 8px;
  font: normal 14px/18px Nunito, sans-serif;
  color: #B51F1F;
  background-color: #FCF3EE;
  padding: 8px;
  border-radius: 8px;
}
x-comp.connection-error-box .icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.connection-error-box .icon svg {
  --color: #B51F1F;
}

/* WooCommerceConnection */
x-comp.woo-commerce-connection .info-panel {
  margin-bottom: 32px;
}
x-comp.woo-commerce-connection .instructions-box {
  margin-bottom: 32px;
}
x-comp.woo-commerce-connection .progress-mask {
  margin: 50px 0;
}

/* ShopifyConnection */
x-comp.shopify-connection .info-panel {
  margin-bottom: 32px;
}
x-comp.shopify-connection .form-container .instructions-box {
  margin-bottom: 8px;
}

/* EcommerceProductSearch */
x-comp.ecommerce-product-search .progress-mask {
  margin-top: 32px;
}
x-comp.ecommerce-product-search .progress-mask .headline {
  margin-top: 32px;
}
x-comp.ecommerce-product-search .filter-area {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-bottom: 24px;
}
x-comp.ecommerce-product-search .filter-area .presets {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 12px;
}
x-comp.ecommerce-product-search .filter-area .presets .thresholds-settings {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}
x-comp.ecommerce-product-search .filter-area .presets .thresholds-settings:hover {
  --color: #333;
}
x-comp.ecommerce-product-search .filter-area .search {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
x-comp.ecommerce-product-search .filter-area .search .search-bar {
  flex: 1;
}
x-comp.ecommerce-product-search .filter-area .search .button {
  padding: 0;
  width: 56px;
  border-radius: 8px;
}
x-comp.ecommerce-product-search .filter-area .search .button .icon svg {
  --color: #333;
}
x-comp.ecommerce-product-search .products-list {
  gap: 16px;
}
.desktop-ui x-comp.ecommerce-product-search .products-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}
.desktop-ui x-comp.ecommerce-product-search .products-list .empty-placeholder, .desktop-ui x-comp.ecommerce-product-search .products-list .progress-panel {
  grid-column: 1/-1;
}
.mobile-ui x-comp.ecommerce-product-search .products-list {
  display: flex;
  flex-direction: column;
}
x-comp.ecommerce-product-search .product {
  display: flex;
  flex-direction: row;
  font: normal 14px/18px Nunito, sans-serif;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 8px;
  padding: 14px;
  min-height: 100px;
  column-gap: 12px;
  background-color: white;
  align-items: center;
}
x-comp.ecommerce-product-search .product .image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.ecommerce-product-search .product .image img {
  max-width: 100%;
  max-height: 100%;
}
x-comp.ecommerce-product-search .product .product-name {
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
x-comp.ecommerce-product-search .product .product-info {
  color: #B5BEC5;
  margin-top: 8px;
}
x-comp.ecommerce-product-search .product .recent-campaigns {
  margin-top: 2px;
}
x-comp.ecommerce-product-search .product .recent-campaigns .button {
  padding: 4px 0;
}
x-comp.ecommerce-product-search .product .texts {
  flex-shrink: 1;
  flex-grow: 1;
}
x-comp.ecommerce-product-search .product .button {
  flex-shrink: 0;
}
x-comp.ecommerce-product-search .product .arrow {
  flex-shrink: 0;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.ecommerce-product-search .product .arrow svg {
  transform: scaleX(-1);
  --color: #B5BEC5;
}
x-comp.ecommerce-product-search .product .regular-price {
  text-decoration: line-through;
  margin: 0 2px;
}
x-comp.ecommerce-product-search .product .separator {
  margin: 0 6px;
  font-weight: bold;
}
x-comp.ecommerce-product-search .product .separator::before {
  content: "·";
}
x-comp.ecommerce-product-search .product.clickable {
  cursor: pointer;
}
x-comp.ecommerce-product-search .product.clickable:hover .arrow svg {
  --color: #F37530;
}
x-comp.ecommerce-product-search .empty-placeholder {
  margin-top: 32px;
  text-align: center;
}
x-comp.ecommerce-product-search .empty-placeholder .placeholder-image {
  margin-bottom: 16px;
}
x-comp.ecommerce-product-search .sync-status {
  margin-top: 42px;
  padding-top: 12px;
  border-top: 1px solid #EBEFF2;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  color: #767A7D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
x-comp.ecommerce-product-search .sync-status .error-text {
  color: #B51F1F;
  background-color: #FEE;
  padding: 4px 8px;
  border-radius: 4px;
}
x-comp.ecommerce-product-search .sync-status .controls {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
x-comp.ecommerce-product-search .error-content {
  margin-top: 32px;
  text-align: center;
}
x-comp.ecommerce-product-search .error-content .message {
  margin-bottom: 16px;
}
x-comp.ecommerce-product-search .paging-bar {
  margin-top: 24px;
}
x-comp.ecommerce-product-search .checkbox-group .option .label .name {
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: bold;
}
x-comp.ecommerce-product-search .checkbox-group .option .label .price {
  color: #B5BEC5;
}

/* EcommerceProductThresholds */
x-comp.ecommerce-product-thresholds > .body > .form-container .expander .head-area {
  padding-bottom: 8px;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .option-description {
  font: normal 14px/18px Nunito, sans-serif;
  color: #8B8B8B;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .setting-option {
  display: flex;
  align-items: center;
  column-gap: 8px;
  justify-content: space-between;
  text-align: left;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .setting-option > .option-label {
  font: normal 14px/18px Nunito, sans-serif;
  flex-grow: 1;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .setting-option > .text-field {
  min-width: 85px;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .setting-option > .text-field:not(.focused) {
  border-color: #EBEFF2;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .setting-option > .text-field .box {
  border-radius: 0;
  padding: 8px 8px;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .setting-option > .text-field input {
  font-weight: bold;
  text-align: center;
  width: 32px;
}
x-comp.ecommerce-product-thresholds > .body > .form-container .setting-option > .text-field.read-only > .box {
  background-color: unset;
}
x-comp.ecommerce-product-thresholds > .body > .buttons-group {
  margin-top: 32px;
}

/* EcommerceRecentCampaigns */
x-comp.ecommerce-recent-campaigns .campaign {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #B5BEC5;
}
x-comp.ecommerce-recent-campaigns .campaign:last-child {
  border-bottom: 1px solid #B5BEC5;
}
x-comp.ecommerce-recent-campaigns .campaign .description {
  text-align: left;
}
x-comp.ecommerce-recent-campaigns .campaign .topic {
  font-weight: bold;
}
x-comp.ecommerce-recent-campaigns .campaign .stats {
  font: normal 14px/18px Nunito, sans-serif;
  color: #B5BEC5;
}
x-comp.ecommerce-recent-campaigns .campaign .separator {
  margin: 0 6px;
  font-weight: bold;
}
x-comp.ecommerce-recent-campaigns .campaign .separator::before {
  content: "·";
}

/* EcommerceProductFiltersDialog */
x-comp.ecommerce-product-filters-dialog > .body .price-limits {
  display: flex;
  gap: 16px;
}
.desktop-ui x-comp.ecommerce-product-filters-dialog > .body .price-limits {
  flex-direction: row;
}
.mobile-ui x-comp.ecommerce-product-filters-dialog > .body .price-limits {
  flex-direction: column;
}
x-comp.ecommerce-product-filters-dialog > .body .price-limits > * {
  flex-grow: 1;
}

/* AccountsMgmt */
x-comp.accounts-mgmt > .app-screen-content .search-controls-area {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  margin-bottom: 24px;
}
x-comp.accounts-mgmt > .app-screen-content .search-bar {
  max-width: 600px;
  flex: 1;
}
x-comp.accounts-mgmt > .app-screen-content .paging-bar {
  margin-top: 24px;
}
x-comp.accounts-mgmt > .app-screen-content x-comp.grid .cell-icons {
  display: flex;
  column-gap: 8px;
  position: relative;
}
x-comp.accounts-mgmt > .app-screen-content x-comp.grid .cell-icons .cell-icon {
  position: relative;
}
x-comp.accounts-mgmt > .app-screen-content x-comp.grid .cell-icons .cell-icon svg {
  display: block;
  max-height: 24px;
  max-width: 24px;
}
x-comp.accounts-mgmt > .app-screen-content x-comp.grid .cell-icons .cell-icon.inactive svg {
  opacity: 0.35;
  filter: grayscale(1);
}
x-comp.accounts-mgmt > .app-screen-content x-comp.grid .cell-icons .cell-icon.inactive::after {
  content: "•";
  color: #B51F1F;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  top: -10px;
  right: -2px;
}
.desktop-ui x-comp.accounts-mgmt > .app-screen-content {
  width: unset !important;
  max-width: 1600px !important;
}

/* TopicsMgmt */
.desktop-ui x-comp.topics-mgmt .app-screen-content {
  width: auto;
  max-width: 1165px;
}
x-comp.topics-mgmt .app-screen-body .expander + .expander {
  margin-top: 32px;
}
x-comp.topics-mgmt .app-screen-body .property-list + .property-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #B5BEC5;
}

/* StickersList */
x-comp.stickers-list .stickers {
  display: grid;
  overflow-y: auto;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
}
x-comp.stickers-list .stickers .sticker {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  cursor: pointer;
  padding: 8px;
  transition: background-color 50ms;
}
x-comp.stickers-list .stickers .sticker:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
x-comp.stickers-list .stickers .sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
x-comp.stickers-list .stickers .sticker .premium-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  top: 10px;
  pointer-events: none;
  background: rgba(51, 51, 51, 0.5);
  border-radius: 4px;
  width: 20px;
  height: 20px;
}
x-comp.stickers-list .stickers .sticker .premium-icon svg {
  --color: #FCF3EE;
}
x-comp.stickers-list .stickers .sticker.hidden {
  display: none;
}
x-comp.stickers-list .stickers .sticker-hidden img {
  opacity: 0.35;
  filter: grayscale(1);
}

.desktop-ui x-comp.stickers-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.desktop-ui x-comp.stickers-list.layout-large {
  row-gap: 16px;
}
.desktop-ui x-comp.stickers-list.layout-large .stickers {
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
}
.desktop-ui x-comp.stickers-list.layout-large .stickers .sticker {
  padding: 16px;
}
.desktop-ui x-comp.stickers-list.layout-large .stickers .sticker .premium-icon {
  right: 18px;
  top: 18px;
}

.mobile-ui x-comp.stickers-list {
  width: 100%;
  box-sizing: border-box;
}
.mobile-ui x-comp.stickers-list.layout-compact .stickers {
  grid-auto-columns: clamp(64px, 18.5%, 84px);
  grid-auto-flow: column;
  grid-template-columns: unset;
  grid-template-rows: repeat(var(--sticker-rows, 1), 1fr);
  overflow-x: scroll;
  margin: 8px -16px 0;
  padding: 0 8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-ui x-comp.stickers-list.layout-compact .stickers::-webkit-scrollbar {
  display: none;
}
.mobile-ui x-comp.stickers-list.layout-large .stickers {
  margin: 8px -8px;
}

/* StickerBoard */
.desktop-ui x-comp.sticker-board > .app-screen-content {
  width: auto;
  max-width: 1165px;
}
x-comp.sticker-board .header-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
x-comp.sticker-board .header-area h3 {
  margin: 0;
}
x-comp.sticker-board .empty-content {
  text-align: center;
  font: normal 18px/24px Nunito, sans-serif;
}
x-comp.sticker-board x-comp.stickers-list .tag-select .tag.sticker-category-hidden {
  color: #B5BEC5;
}
x-comp.sticker-board .categories-area {
  margin-bottom: 64px;
}
x-comp.sticker-board .categories-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 32px;
}
x-comp.sticker-board .categories-list .sortable-ghost {
  opacity: 0.5;
}
x-comp.sticker-board .categories-list .category-item {
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.05);
  cursor: pointer;
}
x-comp.sticker-board .categories-list .category-item .category-name {
  padding: 12px 16px;
}
x-comp.sticker-board .categories-list .category-item.hidden .category-name {
  color: #B5BEC5;
}
x-comp.sticker-board .categories-list .category-item .category-handle {
  width: 48px;
  cursor: move;
  align-self: stretch;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.sticker-board .categories-list .category-item .category-handle svg {
  --color: #767A7D;
}

/* StickerDetail */
.desktop-ui x-comp.sticker-detail > .app-screen-content {
  width: auto;
  min-width: 950px;
  max-width: 1165px;
}
x-comp.sticker-detail > .app-screen-content > .app-screen-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 16px 0 48px;
}
x-comp.sticker-detail > .app-screen-content .left .sticker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
x-comp.sticker-detail > .app-screen-content .left .sticker .sticker-preview {
  border: 1px solid #B5BEC5;
}
x-comp.sticker-detail > .app-screen-content .left .sticker .sticker-preview img {
  display: block;
  max-height: 450px;
  max-width: 100%;
}
x-comp.sticker-detail > .app-screen-content .left .sticker .sticker-preview img.unavailable {
  opacity: 0.15;
  filter: grayscale(1);
}
x-comp.sticker-detail > .app-screen-content .left .sticker .info-panel {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
}
x-comp.sticker-detail > .app-screen-content .left .sticker .info-panel .comment {
  white-space: pre-line;
}
x-comp.sticker-detail > .app-screen-content .left .thumbnail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
x-comp.sticker-detail > .app-screen-content .left .thumbnail .thumbnail-preview {
  margin-top: 8px;
}
x-comp.sticker-detail > .app-screen-content .left .thumbnail .thumbnail-preview img {
  display: block;
  border: 1px solid #B5BEC5;
  width: 64px;
  height: auto;
}
x-comp.sticker-detail > .app-screen-content .left .editor-preview {
  margin-top: 24px;
  text-align: center;
}
x-comp.sticker-detail > .app-screen-content .left .box-label {
  font: normal 12px/24px Nunito, sans-serif;
  color: #767A7D;
}
x-comp.sticker-detail > .app-screen-content .left .form-container {
  margin-top: 24px;
}
x-comp.sticker-detail > .app-screen-content .left .form-container .switch {
  align-self: center;
}
x-comp.sticker-detail > .app-screen-content .left .form-container .form-group {
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
x-comp.sticker-detail > .app-screen-content .left .form-container.no-sample-data .form-group.sample-data {
  visibility: collapse;
  height: 0;
  opacity: 0;
}
x-comp.sticker-detail > .app-screen-content .right > .status-area .info-panel {
  margin-bottom: 32px;
}
x-comp.sticker-detail > .app-screen-content .right .sticker-file-size {
  display: flex;
  flex-direction: row;
  column-gap: 6px;
  padding: 2px 0 6px;
}
x-comp.sticker-detail > .app-screen-content .right .sticker-file-size .ok, x-comp.sticker-detail > .app-screen-content .right .sticker-file-size .warn, x-comp.sticker-detail > .app-screen-content .right .sticker-file-size .problem {
  font-weight: bold;
  padding: 0 6px;
}
x-comp.sticker-detail > .app-screen-content .right .sticker-file-size .ok {
  color: #008A00;
  background-color: #EAF9DE;
}
x-comp.sticker-detail > .app-screen-content .right .sticker-file-size .warn {
  color: #F37530;
  background-color: #FEF2EC;
}
x-comp.sticker-detail > .app-screen-content .right .sticker-file-size .problem {
  color: #B51F1F;
  background-color: #FEE;
}
x-comp.sticker-detail > .app-screen-content .right .sticker-file-size .small {
  font: normal 12px/24px Nunito, sans-serif;
}
x-comp.sticker-detail > .app-screen-content .form-group {
  display: flex;
  gap: 16px;
}
x-comp.sticker-detail > .app-screen-content .form-group.centered {
  justify-content: center;
}
x-comp.sticker-detail > .app-screen-content .form-group > .decorated-field {
  flex-grow: 1;
}
x-comp.sticker-detail > .app-screen-content .form-group + .form-group {
  margin-top: 16px;
}
x-comp.sticker-detail > .app-screen-content .form-group.hidden {
  display: none;
}

/* EditorPreviewDialog */
x-comp.editor-preview-dialog .image-editor .toolbar, x-comp.editor-preview-dialog .image-editor .stickers-area, x-comp.editor-preview-dialog .image-editor .header, x-comp.editor-preview-dialog .image-editor .PinturaShapeControls {
  display: none;
}
x-comp.editor-preview-dialog .image-editor .body {
  aspect-ratio: 1;
  padding: 0;
}

/* CloudflareVideoPlayer */
x-comp.cloudflare-video-player {
  min-height: 300px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
x-comp.cloudflare-video-player:has(> iframe) {
  min-height: unset;
}
x-comp.cloudflare-video-player input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
x-comp.cloudflare-video-player iframe {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
  max-height: 600px;
  background: black;
}
x-comp.cloudflare-video-player > .player-sub-buttons {
  margin-top: 4px;
  display: flex;
  flex-direction: row;
  column-gap: 16px;
  justify-content: flex-end;
  align-items: center;
}
x-comp.cloudflare-video-player > .spinner {
  margin: 0 auto;
  position: relative;
  top: 32px;
}
x-comp.cloudflare-video-player > .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}
x-comp.cloudflare-video-player > .placeholder.clickable {
  cursor: pointer;
}
x-comp.cloudflare-video-player > .placeholder > img {
  height: 140px;
}
x-comp.cloudflare-video-player > .placeholder > .title {
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.cloudflare-video-player > .placeholder > .video-upload-button {
  margin-top: 16px;
}
x-comp.cloudflare-video-player > .progress {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}
x-comp.cloudflare-video-player > .progress img {
  height: 140px;
}
x-comp.cloudflare-video-player > .progress .percents {
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
  color: #F37530;
}

/* UploadProfilePhotoScreen */
x-comp.upload-profile-photo-screen .app-screen-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 32px;
}
x-comp.upload-profile-photo-screen .app-screen-body > input.file-input {
  visibility: hidden;
  position: absolute;
}
x-comp.upload-profile-photo-screen .app-screen-body > .photo-wrap > .image {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 16px;
}
x-comp.upload-profile-photo-screen .app-screen-body > .photo-wrap > .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
x-comp.upload-profile-photo-screen .app-screen-body > .photo-wrap > .image .button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 14px;
  box-shadow: none;
  background-color: #EBEFF2;
}
x-comp.upload-profile-photo-screen .app-screen-body > .photo-wrap > .image .button svg {
  --color: #767A7D;
}
x-comp.upload-profile-photo-screen .app-screen-body > .photo-wrap > .image .button:hover svg {
  --color: #F37530;
}
x-comp.upload-profile-photo-screen .app-screen-body > .photo-wrap > .image.placeholder {
  cursor: pointer;
}
x-comp.upload-profile-photo-screen .app-screen-body > .photo-wrap > .image.placeholder:hover .button svg {
  --color: #F37530;
}
x-comp.upload-profile-photo-screen .app-screen-body > .instructions {
  font: normal 14px/18px Nunito, sans-serif;
}

/* ManageLanguagesScreen */
x-comp.manage-languages-screen .language-groups {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
x-comp.manage-languages-screen .language-group {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EBEFF2;
}
x-comp.manage-languages-screen .language-group:first-child .button.delete {
  display: none;
}
x-comp.manage-languages-screen .language-group .button.transparent svg {
  width: 13px;
  height: 13px;
}
x-comp.manage-languages-screen .add {
  text-align: left;
}
x-comp.manage-languages-screen .add .button {
  padding: 0;
}
x-comp.manage-languages-screen .add .button svg {
  width: 18px;
  height: 18px;
}
x-comp.manage-languages-screen .add .button .text {
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: 700;
}

/* VideoCreatorProfileScreen */
x-comp.video-creator-profile-screen .app-screen-body > .info-panel {
  margin-bottom: 24px;
}
x-comp.video-creator-profile-screen .profile {
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  padding: 16px;
}
x-comp.video-creator-profile-screen .profile x-comp.profile-content-box {
  border-top: 1px solid #EBEFF2;
  padding: 12px 0 11px;
}
x-comp.video-creator-profile-screen .profile > .head {
  display: flex;
  column-gap: 16px;
  align-items: flex-start;
  padding-bottom: 15px;
}
x-comp.video-creator-profile-screen .profile > .head > svg {
  flex-shrink: 0;
}
x-comp.video-creator-profile-screen .profile > .head > .avatar {
  position: relative;
  width: 64px;
  height: 64px;
}
x-comp.video-creator-profile-screen .profile > .head > .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
x-comp.video-creator-profile-screen .profile > .head > .avatar .button {
  position: absolute;
  bottom: -4px;
  right: -4px;
}
x-comp.video-creator-profile-screen .profile > .head > .info {
  flex-grow: 1;
}
x-comp.video-creator-profile-screen .profile > .head > .info .name {
  font: 900 22px/26px Lato, sans-serif;
  line-height: 1.363;
  font-weight: 900;
  margin-bottom: 6px;
}
x-comp.video-creator-profile-screen .profile > .control-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
x-comp.video-creator-profile-screen .profile .level-wrap .notification {
  margin: 0 0 12px;
}
x-comp.video-creator-profile-screen .profile .level {
  position: relative;
  width: 100%;
  padding-left: 28px;
}
x-comp.video-creator-profile-screen .profile .level svg {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  --color: #767A7D;
}
x-comp.video-creator-profile-screen .profile .level .label {
  display: inline;
  font-size: 18px;
  line-height: 1.444;
  font-weight: 700;
}
x-comp.video-creator-profile-screen .profile .level .value {
  display: inline;
  margin-left: 4px;
}
x-comp.video-creator-profile-screen .profile .level.not-specified svg {
  top: 0;
  width: 24px;
  height: 24px;
  --color: #B5BEC5;
}
x-comp.video-creator-profile-screen .profile .socials {
  display: flex;
  gap: 6px 12px;
}
x-comp.video-creator-profile-screen .profile .socials a {
  display: block;
}
x-comp.video-creator-profile-screen .profile .socials svg {
  width: 32px;
  height: 32px;
}
x-comp.video-creator-profile-screen .profile .interests {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
x-comp.video-creator-profile-screen .profile .interests .interest {
  background: #EBEFF2;
  border-radius: 50px;
  padding: 4px 8px;
}
x-comp.video-creator-profile-screen .profile .not-specified {
  color: #767A7D;
}
x-comp.video-creator-profile-screen .portfolio {
  margin-top: 32px;
}
x-comp.video-creator-profile-screen .portfolio .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
x-comp.video-creator-profile-screen .portfolio .head .label {
  font-weight: 700;
}
x-comp.video-creator-profile-screen .portfolio .head .label.lg {
  font-size: 18px;
  line-height: 26px;
}
x-comp.video-creator-profile-screen .portfolio .items {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 12px;
}
x-comp.video-creator-profile-screen .portfolio .item {
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  padding: 16px;
}
x-comp.video-creator-profile-screen .portfolio .item x-comp.cloudflare-video-player {
  margin-bottom: 16px;
}
x-comp.video-creator-profile-screen .portfolio .item .title {
  font-weight: 700;
  margin-bottom: 8px;
}
x-comp.video-creator-profile-screen .portfolio .item .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  white-space: pre-wrap;
}
x-comp.video-creator-profile-screen .portfolio .item a.button.transparent {
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: 700;
  padding: 0;
}

/* Rating */
x-comp.rating {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  column-gap: 2px;
  background-color: #FCF3EE;
  border-radius: 30px;
  padding: 2px 8px;
}
x-comp.rating svg {
  width: 20px;
  height: 20px;
  --color: #F37530;
}
x-comp.rating .number {
  font-weight: 700;
}

/* ProfileContentBox */
x-comp.profile-content-box {
  display: flex;
  align-items: flex-start;
  column-gap: 16px;
}
x-comp.profile-content-box > .body {
  flex-grow: 1;
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
}
x-comp.profile-content-box > .body > .title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
x-comp.profile-content-box > .body > .title-wrap > .title {
  font-weight: 700;
}
x-comp.profile-content-box > .body .multiline {
  white-space: pre-wrap;
}
x-comp.profile-content-box > .body .multiline a {
  color: #F37530;
  text-decoration: none;
}
x-comp.profile-content-box > .body .multiline a:hover {
  text-decoration: underline;
}
x-comp.profile-content-box > .button {
  flex-shrink: 0;
}

x-comp.video-creators-screen .app-screen-body > .view-area {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
}
x-comp.video-creators-screen .app-screen-body > .view-area > x-comp.empty-placeholder {
  margin: 0 auto;
  grid-column: 1/-1;
}
x-comp.video-creators-screen .app-screen-body > .paging-bar {
  margin-top: 24px;
}

/* VideoJobDetailScreen */
x-comp.video-job-detail-screen .app-screen-head > .job-header {
  margin-top: 8px;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
x-comp.video-job-detail-screen .app-screen-head > .job-header .published {
  font: normal 14px/18px Nunito, sans-serif;
  color: #767A7D;
}
x-comp.video-job-detail-screen .app-screen-body > .toggle-tabs {
  margin-bottom: 16px;
}
x-comp.video-job-detail-screen .app-screen-body > .tab-videos {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
x-comp.video-job-detail-screen .app-screen-body > .tab-videos > .proposed-videos-count {
  font-weight: 700;
}
x-comp.video-job-detail-screen .app-screen-body > .tab-videos > .proposed-videos-count span {
  margin-left: 8px;
  color: #F37530;
}
x-comp.video-job-detail-screen .app-screen-body > .tab-videos > .video-job-budget-box {
  margin: 16px 0 8px;
}
x-comp.video-job-detail-screen .app-screen-body > .tab-videos .expander.style-separated:not(.collapsed) .video-creator-avatar .status-tag {
  filter: brightness(0.95) saturate(1.2);
}
x-comp.video-job-detail-screen .app-screen-body > .tab-videos > .buttons-group {
  margin-top: 16px;
}
x-comp.video-job-detail-screen .video-job-detail-screen--delivery {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
x-comp.video-job-detail-screen .video-job-detail-screen--delivery > .video-boxes {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
x-comp.video-job-detail-screen .video-job-detail-screen--delivery > .video-boxes .action-button {
  margin-top: 4px;
}
x-comp.video-job-detail-screen x-comp.expander .video-job-detail-screen--delivery {
  padding-bottom: 24px;
}

/* VideoCreatorAvatar */
x-comp.video-creator-avatar {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
x-comp.video-creator-avatar > .photo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
x-comp.video-creator-avatar > .photo img, x-comp.video-creator-avatar > .photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
x-comp.video-creator-avatar > .info {
  flex-grow: 1;
}
x-comp.video-creator-avatar > .info .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  margin-bottom: 4px;
}
x-comp.video-creator-avatar > .info .name a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: underline;
  color: #333;
}
x-comp.video-creator-avatar > .info .name a:hover {
  text-decoration: none;
}
x-comp.video-creator-avatar > .info .location {
  display: flex;
  align-items: center;
  column-gap: 6px;
  font-size: 14px;
  line-height: 18px;
}
x-comp.video-creator-avatar > .info .location svg {
  display: block;
  width: 16px;
  height: 16px;
  --color: #767A7D;
}

/* VideoJobOrderForm */
x-comp.video-job-order-form x-comp.video-job-budget-box {
  margin-bottom: 4px;
}

/* VideoJobBudgetBox */
x-comp.video-job-budget-box {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
}
x-comp.video-job-budget-box .head {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EBEFF2;
}
x-comp.video-job-budget-box .head .icon {
  flex-shrink: 0;
}
x-comp.video-job-budget-box .head .icon svg {
  display: block;
}
x-comp.video-job-budget-box .head .title {
  flex-grow: 1;
  font: normal 18px/24px Nunito, sans-serif;
  font-weight: 700;
  text-align: left;
}
x-comp.video-job-budget-box .rows {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-top: 8px;
}
x-comp.video-job-budget-box .row {
  display: flex;
  column-gap: 16px;
  font: normal 14px/18px Nunito, sans-serif;
  text-align: left;
}
x-comp.video-job-budget-box .row .title {
  font-weight: 700;
}
x-comp.video-job-budget-box .row .title:not(:last-child) {
  margin-bottom: 4px;
}
x-comp.video-job-budget-box .row .value {
  font-weight: 700;
  text-align: right;
}
x-comp.video-job-budget-box .row.highlighted {
  font-weight: 700;
}
x-comp.video-job-budget-box .row.highlighted .value {
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: 700;
}
x-comp.video-job-budget-box .row * {
  flex-grow: 1;
}
x-comp.video-job-budget-box.underline .rows {
  row-gap: 12px;
  padding-top: 12px;
}
x-comp.video-job-budget-box.underline .row:not(:last-child) {
  border-bottom: 1px solid #EBEFF2;
  padding-bottom: 11px;
}
x-comp.video-job-budget-box.underline .row .value {
  font: normal 16px/24px Nunito, sans-serif;
  font-weight: 700;
}

/* ProductShippingInfo */
x-comp.product-shipping-info {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: flex-start;
  font: normal 14px/18px Nunito, sans-serif;
}
x-comp.product-shipping-info > .multiline {
  white-space: pre-line;
}
x-comp.product-shipping-info > a {
  color: #F37530;
}

/* VideoJobBriefingView */
x-comp.video-job-briefing-view {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
x-comp.video-job-briefing-view > .panel {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  padding: 16px;
}
x-comp.video-job-briefing-view > .panel > .cover-image {
  aspect-ratio: 1.5;
  margin-bottom: 4px;
}
x-comp.video-job-briefing-view > .panel > .cover-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
x-comp.video-job-briefing-view > .panel > .shipping-fee-notice {
  font: normal 14px/18px Nunito, sans-serif;
  margin-top: 6px;
}

/* VideoJobApplicationForm */
x-comp.video-job-application-form {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

/* VideoJobItemScreen */
x-comp.video-job-item-screen .app-screen-head > .item-header {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 8px;
}
x-comp.video-job-item-screen .app-screen-head > .item-header .date {
  font-size: 14px;
  line-height: 18px;
  color: #767A7D;
}
x-comp.video-job-item-screen .app-screen-head > .video-creator-avatar {
  margin-top: 20px;
}
x-comp.video-job-item-screen .app-screen-body {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
x-comp.video-job-item-screen .app-screen-body > .expandable-video-item-info {
  margin-bottom: 8px;
}
x-comp.video-job-item-screen .app-screen-body > .info-panel-flat {
  margin-bottom: 8px;
}
x-comp.video-job-item-screen .app-screen-body > .action-buttons-group {
  margin-top: 8px;
}
x-comp.video-job-item-screen .app-screen-body > .buttons-group {
  margin-top: 16px;
}
x-comp.video-job-item-screen x-comp.action-buttons-group .accept-item-button {
  width: 28px;
  height: 28px;
  --color: #008A00;
}

/* VideoJobDownloadsScreen */
x-comp.video-job-downloads-screen .app-screen-body {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
x-comp.video-job-downloads-screen .app-screen-body .video-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

/* VideoJobMgmtScreen */
x-comp.video-job-mgmt-screen .app-screen-body > .info-panel {
  margin-bottom: 32px;
}

/* VideoBox */
a.video-box.button {
  justify-content: flex-start;
  column-gap: 12px;
  background: #FFF;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border: none;
  text-align: left;
}
a.video-box.button:hover .right-icon svg {
  --color: #F37530;
}
a.video-box.button .type {
  flex-shrink: 0;
}
a.video-box.button .type .icon svg {
  display: block;
  width: 40px;
  height: 40px;
}
a.video-box.button .type .label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: #767A7D;
  text-align: center;
}
a.video-box.button .content {
  flex-grow: 1;
  padding-right: 9px;
}
a.video-box.button .info {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 4px;
}
a.video-box.button .title {
  flex-grow: 1;
  font-weight: 700;
}
a.video-box.button .duration {
  flex-shrink: 0;
  display: flex;
  column-gap: 4px;
  align-items: center;
}
a.video-box.button .duration svg {
  display: block;
  width: 12px;
  height: 12px;
  --color: #767A7D;
}
a.video-box.button .time {
  font-size: 12px;
  line-height: 16px;
  color: #767A7D;
}
a.video-box.button .right-icon {
  flex-shrink: 0;
}
a.video-box.button .right-icon svg {
  display: block;
  --color: #B5BEC5;
}

x-comp.video-jobs-screen .app-screen-body > .view-area {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
}
x-comp.video-jobs-screen .app-screen-body > .view-area > x-comp.empty-placeholder {
  margin: 0 auto;
  grid-column: 1/-1;
}
x-comp.video-jobs-screen .app-screen-body > .paging-bar {
  margin-top: 24px;
}

/* GroostApp */
x-comp.groost-app {
  width: 100%;
  height: 100%;
}
.mobile-ui x-comp.groost-app {
  display: flex;
  flex-direction: column;
}
.mobile-ui x-comp.groost-app > .screen-switcher {
  overflow: auto;
  flex: 1;
}
.desktop-ui x-comp.groost-app {
  display: grid;
  grid-template-areas: "banner banner" "side-bar app-bar" "side-bar body";
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content max-content 1fr;
}
.desktop-ui x-comp.groost-app > .banner-area {
  grid-area: banner;
}
.desktop-ui x-comp.groost-app > .desktop-side-bar {
  grid-area: side-bar;
  width: 240px;
}
.desktop-ui x-comp.groost-app > .desktop-app-bar {
  grid-area: app-bar;
}
.desktop-ui x-comp.groost-app > .screen-switcher {
  grid-area: body;
  overflow: auto;
}

/* LanguageSelector */
x-comp.language-selector {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
x-comp.language-selector svg {
  --color: #F37530;
  width: 26px;
  height: 26px;
}

/* DesktopAppBar */
x-comp.desktop-app-bar {
  padding: 0 24px 0 16px;
  height: 64px;
  display: flex;
  column-gap: 24px;
  align-items: center;
  background: white;
  border-bottom: 1px solid #EBEFF2;
  justify-content: center;
  position: relative;
}
x-comp.desktop-app-bar > * {
  display: none;
}
x-comp.desktop-app-bar .logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.desktop-app-bar .language-selector {
  position: absolute;
  right: 24px;
  top: 16px;
}
x-comp.desktop-app-bar.show-app-bars {
  justify-content: space-between;
}
x-comp.desktop-app-bar.show-app-bars .back {
  visibility: hidden;
  display: flex;
  align-items: center;
  padding: 8px;
  column-gap: 12px;
  cursor: pointer;
}
x-comp.desktop-app-bar.show-app-bars .logo {
  display: none;
}
x-comp.desktop-app-bar.show-app-bars .account {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.desktop-app-bar.show-app-bars .account svg {
  width: 40px;
  height: 40px;
}
x-comp.desktop-app-bar.show-app-bars .quick-search {
  max-width: 520px;
  display: block;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
x-comp.desktop-app-bar.show-app-bars .quick-search .results {
  margin-top: 11px;
}
x-comp.desktop-app-bar:not(.show-app-bars) .language-selector {
  display: flex;
}
x-comp.desktop-app-bar.allow-back .back {
  visibility: visible;
}

/* MobileAppBar */
x-comp.mobile-app-bar {
  display: flex;
  height: 60px;
  align-items: center;
  background: white;
  justify-content: center;
  position: relative;
}
x-comp.mobile-app-bar > * {
  display: none;
}
x-comp.mobile-app-bar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
x-comp.mobile-app-bar .language-selector {
  position: absolute;
  right: 16px;
  top: 14px;
}
x-comp.mobile-app-bar.show-app-bars {
  justify-content: space-between;
}
x-comp.mobile-app-bar.show-app-bars .back {
  visibility: hidden;
  height: 60px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.mobile-app-bar.show-app-bars .back svg {
  width: 10px;
  height: 16px;
}
x-comp.mobile-app-bar.show-app-bars .menu {
  display: block;
  height: 60px;
  width: 56px;
  position: relative;
}
x-comp.mobile-app-bar.show-app-bars .menu > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 200ms;
}
x-comp.mobile-app-bar.show-app-bars .menu svg.open {
  width: 24px;
  height: 24px;
  opacity: 1;
}
x-comp.mobile-app-bar.show-app-bars .menu svg.close {
  width: 16px;
  height: 16px;
  opacity: 0;
}
x-comp.mobile-app-bar:not(.show-app-bars) .language-selector {
  display: flex;
}
x-comp.mobile-app-bar.allow-back .back {
  visibility: visible;
}
x-comp.mobile-app-bar.menu-shown .back {
  visibility: hidden;
}
x-comp.mobile-app-bar.menu-shown .menu svg.open {
  opacity: 0;
}
x-comp.mobile-app-bar.menu-shown .menu svg.close {
  opacity: 1;
}

/* DesktopSideBar */
x-comp.desktop-side-bar {
  background-color: #2E2E35;
  padding-bottom: 16px;
  overflow: auto;
}
x-comp.desktop-side-bar:not(.show-app-bars) {
  display: none;
}
x-comp.desktop-side-bar > .logo-area {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
x-comp.desktop-side-bar > .logo-area .logo {
  padding: 8px 16px;
  cursor: pointer;
}
x-comp.desktop-side-bar > .logo-area svg {
  display: block;
  --studio-text-color: #FFFFFF;
}
x-comp.desktop-side-bar > .items {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
x-comp.desktop-side-bar > .items > .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 12px;
  height: 52px;
  padding: 12px 16px;
  cursor: pointer;
  background-color: #2E2E35;
  color: #E0E6EB;
  transition: background-color 75ms;
}
x-comp.desktop-side-bar > .items > .item:hover {
  color: white;
  background-color: #3B3B42;
}

/* MobileAppMenu */
x-comp.mobile-app-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 16px 16px 32px;
  background: #F8F9FB;
  overflow: auto;
  z-index: 100;
}
x-comp.mobile-app-menu .delimiter {
  margin-left: 16px;
  margin-right: 16px;
  height: 1px;
  background: #EBEFF2;
}
x-comp.mobile-app-menu x-comp.info-panel {
  margin-top: 32px;
}

/* QuickSearch */
x-comp.quick-search {
  position: relative;
  z-index: 6;
}
x-comp.quick-search .search-bar {
  background: #F8F9FB;
  padding: 4px 6px 4px 16px;
  border: 1px solid #EBEFF2;
  border-radius: 60px;
}
x-comp.quick-search .search-bar:focus-within {
  border-color: #B5BEC5;
}
x-comp.quick-search .results {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  width: 100%;
  background: white;
  padding: 16px;
  min-height: 54px;
  max-height: 306px;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0px 10px 20px rgba(55, 64, 71, 0.1);
  border-radius: 0 0 8px 8px;
}
x-comp.quick-search .results:not(.active) {
  display: none;
}
x-comp.quick-search .results .progress-panel {
  padding: 0;
}
x-comp.quick-search .results .empty {
  font: normal 14px/18px Nunito, sans-serif;
  color: #B5BEC5;
}
x-comp.quick-search .results .item {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid #EBEFF2;
}
x-comp.quick-search .results .item:last-child {
  padding-bottom: 8px;
  border-bottom: none;
}
x-comp.quick-search .results .item:first-child {
  padding-top: 8px;
}
x-comp.quick-search .results .item .image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
x-comp.quick-search .results .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
x-comp.quick-search .results .item .image.preview-illustration img {
  object-fit: contain;
}
x-comp.quick-search .results .item .title {
  flex-grow: 1;
}
x-comp.quick-search .results .item .title .campaign-name {
  font-weight: bold;
  line-height: normal;
}
x-comp.quick-search .results .item .title .time {
  font: normal 14px/18px Nunito, sans-serif;
  color: #B5BEC5;
}
x-comp.quick-search .results .item:hover .campaign-name {
  color: #F37530;
}
