:root {
  --color-scheme: #FF5A1F;
  --app-color-scheme: #FF5A1F;
  --border-radius: 4px;
  --z-index-low: 1;
  --z-index-medium: 10;
  --z-index-high: 20;
  --z-index-max: 30;
  --red: #DA3737;
  --green: #39A728;
  --orange: #F08B4A;
  --blue: #29ABF5;
  --icons-font: "Font Awesome 6 Pro";
  --font-family: "Open Sans", sans-serif;
  --font-size: 14px;
  --font-weight: 500;
  --line-height: normal;
  --letter-spacing: normal;
  --text-transform: none;
}

.flex-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-1 {
  flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
}

.flex-2 {
  flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
}

.flex-3 {
  flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
}

.flex-4 {
  flex: 4;
  -webkit-flex: 4;
  -ms-flex: 4;
}

.flex-5 {
  flex: 5;
  -webkit-flex: 5;
  -ms-flex: 5;
}

.flex-6 {
  flex: 6;
  -ms-flex: 6;
  -webkit-flex: 6;
}

.flex-7 {
  flex: 7;
  -ms-flex: 7;
  -webkit-flex: 7;
}

.flex-8 {
  flex: 8;
  -ms-flex: 8;
  -webkit-flex: 8;
}

.flex-9 {
  flex: 9;
  -ms-flex: 9;
  -webkit-flex: 9;
}

.flex-10 {
  flex: 10;
  -ms-flex: 10;
  -webkit-flex: 10;
}

.flex-11 {
  flex: 11;
  -ms-flex: 11;
  -webkit-flex: 11;
}

.flex-12 {
  flex: 12;
  -ms-flex: 12;
  -webkit-flex: 12;
}

.items-center {
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
}

.items-start {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
}

.items-end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
}

.content-center {
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
}

.content-start {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
}

.content-end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
}

.content-space-around {
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
}

.content-space-between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
}

.content-space-evenly {
  justify-content: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  -o-justify-content: space-evenly;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.flex-row {
  -o-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.flex-column {
  -o-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-row-wrap {
  -o-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.flex-column-reverse {
  -o-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.flex-row-reverse {
  -o-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.color-scheme {
  color: var(--color-scheme);
}

.background-color-scheme {
  background: var(--color-scheme);
}

.background-color-scheme-50 {
  background: rgb(from var(--color-scheme) r g b/0.5);
}

.background-color-scheme-45 {
  background: rgb(from var(--color-scheme) r g b/0.45);
}

.background-color-scheme-40 {
  background: rgb(from var(--color-scheme) r g b/0.4);
}

.background-color-scheme-35 {
  background: rgb(from var(--color-scheme) r g b/0.35);
}

.background-color-scheme-30 {
  background: rgb(from var(--color-scheme) r g b/0.3);
}

.background-color-scheme-25 {
  background: rgb(from var(--color-scheme) r g b/0.25);
}

.background-color-scheme-20 {
  background: rgb(from var(--color-scheme) r g b/0.2);
}

.background-color-scheme-15 {
  background: rgb(from var(--color-scheme) r g b/0.15);
}

.background-color-scheme-10 {
  background: rgb(from var(--color-scheme) r g b/0.1);
}

.border-color-scheme {
  border-color: var(--color-scheme);
}

#app {
  overflow: hidden;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  text-transform: var(--text-transform);
  color: var(--text-color);
  background: var(--background-color);
  overflow-x: hidden;
  position: relative;
  margin: 0;
  scrollbar-color: var(--disabled-color) var(--raw-background-color);
}

a {
  color: var(--text-color);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus {
  outline: none;
}

a::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

::placeholder {
  color: var(--secondary-text-color);
}

.hoverable {
  cursor: pointer;
}

.hoverable:hover {
  color: var(--color-scheme);
}

div .hoverable {
  cursor: pointer;
}
div .hoverable:hover {
  color: var(--color-scheme);
}
div .hoverable:hover i {
  color: var(--color-scheme);
}

.hoverable-background {
  cursor: pointer;
}

.hoverable-background:hover {
  background-color: rgb(from var(--color-scheme) r g b/0.1);
}

.pointer {
  cursor: pointer;
}

.box-shadow {
  -webkit-box-shadow: 0px 0px 1px 7px rgba(219, 219, 219, 0.09);
  box-shadow: 0px 0px 1px 7px rgba(219, 219, 219, 0.09);
  -ms-box-shadow: 0px 0px 1px 7px rgba(219, 219, 219, 0.09);
}

.box-shadow-two {
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.9);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.9);
}

.divider {
  height: 1px;
  background-color: var(--border-color);
}

.label {
  color: var(--secondary-text-color);
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}

.text {
  color: var(--text-color);
}

.global-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-max);
  width: 100%;
  height: 100%;
  background: rgb(from var(--raw-background-color) r g b/0.7);
}

.dots-loader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dots-loader .dot {
  border-radius: 100%;
}
.dots-loader .dot:nth-child(1) {
  animation: dots-animation 0.6s ease-in-out alternate infinite;
}
.dots-loader .dot:nth-child(2) {
  animation: dots-animation 0.6s ease-in-out alternate 0.2s infinite;
}
.dots-loader .dot:nth-child(3) {
  animation: dots-animation 0.6s ease-in-out alternate 0.4s infinite;
}

@keyframes dots-animation {
  100% {
    transform: scale(1.5);
  }
}
.pulse-animation {
  width: 20px;
  box-shadow: 0 0 0 0 var(--color-scheme);
  animation: pulse 1.5s infinite linear;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

@keyframes pulse {
  100% {
    box-shadow: 0 0 0 10px rgb(from var(--color-scheme) r g b/0.1);
  }
}
.dots-circle-loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
}

.dots-circle-loader::before, .dots-circle-loader::after {
  content: "";
  grid-area: 1/1;
  --c: no-repeat radial-gradient(farthest-side, var(--color-scheme) 92%, #0000);
  background: var(--c) 50% 0, var(--c) 50% 100%, var(--c) 100% 50%, var(--c) 0 50%;
  background-size: 12px 12px;
  animation: initial-loader-animation 1s infinite;
}

.dots-circle-loader::before {
  margin: 4px;
  background-size: 8px 8px;
  animation-timing-function: linear;
}

@keyframes initial-loader-animation {
  100% {
    transform: rotate(0.5turn);
  }
}
.bar-loader {
  width: 100%;
  height: 16px;
  border-radius: 40px;
  color: var(--color-scheme);
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.bar-loader::before {
  content: "";
  position: absolute;
  margin: 1px;
  width: 10px;
  top: 0;
  bottom: 0;
  left: -20px;
  border-radius: inherit;
  background: currentColor;
  box-shadow: -10px 0 12px 3px currentColor;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%, -30px 50%);
  animation: l14 1s infinite linear;
}

@keyframes l14 {
  100% {
    left: calc(100% + 20px);
  }
}
.grid-circle-loader {
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, var(--color-scheme)) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg 20deg, rgba(0, 0, 0, 0) 21deg 36deg), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: grid-circle-loader-animation 1s infinite steps(10);
}

@keyframes grid-circle-loader-animation {
  to {
    transform: rotate(1turn);
  }
}
.p0 {
  padding: 0px;
}

.p5 {
  padding: 5px;
}

.p10 {
  padding: 10px;
}

.p15 {
  padding: 15px;
}

.p20 {
  padding: 20px;
}

.p25 {
  padding: 25px;
}

.p30 {
  padding: 30px;
}

.p35 {
  padding: 35px;
}

.p40 {
  padding: 40px;
}

.p45 {
  padding: 45px;
}

.p50 {
  padding: 50px;
}

.pt0 {
  padding-top: 0px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pb0 {
  padding-bottom: 0px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pl0 {
  padding-left: 0px;
}

.pl5 {
  padding-left: 5px;
}

.pl10 {
  padding-left: 10px;
}

.pl15 {
  padding-left: 15px;
}

.pl20 {
  padding-left: 20px;
}

.pl25 {
  padding-left: 25px;
}

.pl30 {
  padding-left: 30px;
}

.pl35 {
  padding-left: 35px;
}

.pl40 {
  padding-left: 40px;
}

.pl45 {
  padding-left: 45px;
}

.pl50 {
  padding-left: 50px;
}

.pr0 {
  padding-right: 0px;
}

.pr5 {
  padding-right: 5px;
}

.pr10 {
  padding-right: 10px;
}

.pr15 {
  padding-right: 15px;
}

.pr20 {
  padding-right: 20px;
}

.pr25 {
  padding-right: 25px;
}

.pr30 {
  padding-right: 30px;
}

.pr35 {
  padding-right: 35px;
}

.pr40 {
  padding-right: 40px;
}

.pr45 {
  padding-right: 45px;
}

.pr50 {
  padding-right: 50px;
}

.ph0 {
  padding-left: 0px;
  padding-right: 0px;
}

.ph5 {
  padding-left: 5px;
  padding-right: 5px;
}

.ph10 {
  padding-left: 10px;
  padding-right: 10px;
}

.ph15 {
  padding-left: 15px;
  padding-right: 15px;
}

.ph20 {
  padding-left: 20px;
  padding-right: 20px;
}

.ph25 {
  padding-left: 25px;
  padding-right: 25px;
}

.ph30 {
  padding-left: 30px;
  padding-right: 30px;
}

.ph35 {
  padding-left: 35px;
  padding-right: 35px;
}

.ph40 {
  padding-left: 40px;
  padding-right: 40px;
}

.ph45 {
  padding-left: 45px;
  padding-right: 45px;
}

.ph50 {
  padding-left: 50px;
  padding-right: 50px;
}

.pv0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.pv5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.pv10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.pv15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.pv20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.pv25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.pv30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.pv35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.pv40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pv45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.pv50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.m0 {
  margin: 0px;
}

.m5 {
  margin: 5px;
}

.m10 {
  margin: 10px;
}

.m15 {
  margin: 15px;
}

.m20 {
  margin: 20px;
}

.m25 {
  margin: 25px;
}

.m30 {
  margin: 30px;
}

.m35 {
  margin: 35px;
}

.m40 {
  margin: 40px;
}

.m45 {
  margin: 45px;
}

.m50 {
  margin: 50px;
}

.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml0 {
  margin-left: 0px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.ml45 {
  margin-left: 45px;
}

.ml50 {
  margin-left: 50px;
}

.mr0 {
  margin-right: 0px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mr45 {
  margin-right: 45px;
}

.mr50 {
  margin-right: 50px;
}

.mh0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mh5 {
  margin-left: 5px;
  margin-right: 5px;
}

.mh10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mh15 {
  margin-left: 15px;
  margin-right: 15px;
}

.mh20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mh25 {
  margin-left: 25px;
  margin-right: 25px;
}

.mh30 {
  margin-left: 30px;
  margin-right: 30px;
}

.mh35 {
  margin-left: 35px;
  margin-right: 35px;
}

.mh40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mh45 {
  margin-left: 45px;
  margin-right: 45px;
}

.mh50 {
  margin-left: 50px;
  margin-right: 50px;
}

.mv0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mv5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mv10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mv15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mv20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mv25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mv30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mv35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.mv40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mv45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.mv50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.main-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index-high);
}
.main-modal .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: var(--z-index-high);
}
.main-modal .modal-content {
  z-index: var(--z-index-high);
  position: relative;
  background: var(--background-color);
  border-radius: var(--border-radius);
}
.main-modal .modal-content.small {
  width: 25%;
  height: 25vh;
}
.main-modal .modal-content.normal {
  width: 33%;
  height: 33vh;
}
.main-modal .modal-content.medium {
  width: 50%;
  height: 50vh;
}
.main-modal .modal-content.large {
  width: 70%;
  height: 70vh;
}
.main-modal .modal-content.xlarge {
  width: 90%;
  height: 80vh;
}
.main-modal .modal-content.fullscreen {
  width: 100%;
  height: 100vh;
}
.main-modal .modal-content .modal-body {
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow: auto;
}
.main-modal .modal-content .modal-body.full-size {
  padding: 0;
}
.main-modal .modal-content .modal-body.no-scroll {
  overflow: hidden;
}
.main-modal .modal-content .modal-body.with-title {
  padding-top: 0;
}
.main-modal .modal-content .modal-body .modal-title {
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  color: var(--text-color);
}
.main-modal .modal-content .modal-body .modal-title.large {
  font-size: 24px;
  font-weight: var(--font-weight);
}
.main-modal .modal-content .modal-body .modal-subtitle {
  font-size: 12px;
  padding: 0 10px 10px 10px;
  color: var(--secondary-text-color);
}
.main-modal .modal-content .modal-body .modal-subtitle.large {
  font-size: 16px;
}
.main-modal .modal-content .modal-body .close-modal {
  position: absolute;
  font-size: 20px;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  z-index: var(--z-index-low);
  border-radius: var(--border-radius);
  color: var(--text-color);
}
.main-modal .modal-content .modal-body .tab-content {
  width: 100%;
}
.main-modal .modal-content .modal-footer {
  padding: 0 20px 20px 20px;
  background: var(--background-color);
  border-radius: var(--border-radius);
}
.main-modal .modal-content .modal-loader {
  position: absolute;
  inset: 0;
  background: rgb(from var(--background-color) r g b/0.7);
  z-index: var(--z-index-medium);
}

@media only screen and (max-width: 768px) {
  .main-modal .modal-content.small {
    width: 40%;
  }
  .main-modal .modal-content.medium, .main-modal .modal-content.large, .main-modal .modal-content.xlarge {
    width: 90%;
  }
}
.drop-menu {
  position: fixed;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--raw-background-color);
  animation: drop-menu-animation 0.3s ease-in;
  z-index: var(--z-index-max);
}
.drop-menu .drop-menu-item {
  cursor: pointer;
  padding: 5px;
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-size: 12px;
}
.drop-menu .drop-menu-item.selected {
  background: var(--secondary-background-color);
}
.drop-menu .drop-menu-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}
.drop-menu .drop-menu-item .drop-menu-item-icon {
  width: 12px;
  margin-right: 10px;
}
.drop-menu .drop-menu-item .drop-menu-item-icon.large {
  width: 16px;
  font-size: 16px;
}
.drop-menu .drop-menu-item .drop-menu-item-title.large {
  font-size: 16px;
}
.drop-menu .drop-menu-item .drop-menu-item-sub-options {
  margin-left: 10px;
}
.drop-menu .drop-menu-divider {
  height: 1px;
  width: 100%;
  background-color: var(--secondary-text-color);
}
.drop-menu .sub-menu {
  position: fixed;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--raw-background-color);
  animation: drop-menu-animation 0.3s ease-in;
}

.selected-drop-menu {
  background-color: var(--secondary-background-color);
}

@keyframes drop-menu-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.help-menu {
  position: fixed;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--raw-background-color);
  animation: help-menu-animation 0.3s ease-in;
  z-index: var(--z-index-high);
}
.help-menu .drop-menu-item {
  padding: 5px;
  border-radius: var(--border-radius);
}
.help-menu .drop-menu-item .drop-menu-item-icon {
  font-size: 12px;
  color: var(--text-color);
  margin-right: 10px;
}
.help-menu .drop-menu-item .drop-menu-item-title {
  font-size: 12px;
  color: var(--text-color);
}
.help-menu .drop-menu-divider {
  height: 1px;
  width: 100%;
  background-color: var(--secondary-text-color);
}

@keyframes help-menu-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.flash-message {
  position: fixed;
  top: 0;
  right: 5px;
  padding: 10px 20px;
  color: #FFFFFF;
  text-align: right;
  font-size: 14px;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  z-index: var(--z-index-max);
  max-width: 500px;
}
.flash-message.success {
  background: #39A728;
}
.flash-message.error {
  background: #DA3737;
}
.flash-message.warning {
  background: #F08B4A;
}
.flash-message.plain {
  background: var(--raw-background-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}
.flash-message.fade-in {
  opacity: 1;
  animation: fade-in-animation 0.3s ease-in;
}
.flash-message.fade-out {
  opacity: 0;
  animation: fade-out-animation 0.3s ease-out;
}

@keyframes fade-in-animation {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out-animation {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(100px);
  }
}
.input-field {
  position: relative;
}
.input-field input[type=text], .input-field .select-input-field, .input-field .dropdown, .input-field textarea {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 10px;
  width: 100%;
  outline: none;
  font-size: 12px;
  background: var(--raw-background-color);
  color: var(--text-color);
}
.input-field input[type=text]:active, .input-field input[type=text]:focus, .input-field input[type=text]:focus-within, .input-field .select-input-field:active, .input-field .select-input-field:focus, .input-field .select-input-field:focus-within, .input-field .dropdown:active, .input-field .dropdown:focus, .input-field .dropdown:focus-within, .input-field textarea:active, .input-field textarea:focus, .input-field textarea:focus-within {
  outline: none;
}
.input-field input[type=text].disabled, .input-field input[type=text]:disabled, .input-field .select-input-field.disabled, .input-field .select-input-field:disabled, .input-field .dropdown.disabled, .input-field .dropdown:disabled, .input-field textarea.disabled, .input-field textarea:disabled {
  pointer-events: none;
  background-color: var(--disabled-color);
}
.input-field input[type=text].disabled:active, .input-field input[type=text].disabled:focus, .input-field input[type=text].disabled:focus-within, .input-field input[type=text]:disabled:active, .input-field input[type=text]:disabled:focus, .input-field input[type=text]:disabled:focus-within, .input-field .select-input-field.disabled:active, .input-field .select-input-field.disabled:focus, .input-field .select-input-field.disabled:focus-within, .input-field .select-input-field:disabled:active, .input-field .select-input-field:disabled:focus, .input-field .select-input-field:disabled:focus-within, .input-field .dropdown.disabled:active, .input-field .dropdown.disabled:focus, .input-field .dropdown.disabled:focus-within, .input-field .dropdown:disabled:active, .input-field .dropdown:disabled:focus, .input-field .dropdown:disabled:focus-within, .input-field textarea.disabled:active, .input-field textarea.disabled:focus, .input-field textarea.disabled:focus-within, .input-field textarea:disabled:active, .input-field textarea:disabled:focus, .input-field textarea:disabled:focus-within {
  border: 1px solid var(--border-color);
}
.input-field input[type=text].clickable, .input-field .select-input-field.clickable, .input-field .dropdown.clickable, .input-field textarea.clickable {
  cursor: pointer;
  pointer-events: all;
}
.input-field input[type=text].small, .input-field .select-input-field.small, .input-field .dropdown.small, .input-field textarea.small {
  padding: 7px 5px;
}
.input-field label {
  color: var(--secondary-text-color);
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}
.input-field .help-icon {
  margin: 0 0 5px 5px;
  color: var(--secondary-text-color);
}

.number-input {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--raw-background-color);
}
.number-input input[type=text] {
  border: 0;
}
.number-input.small input[type=text] {
  padding: 7px 5px;
}
.number-input.disabled {
  background: var(--disabled-color);
}
.number-input .number-input-options {
  padding: 5px;
  align-self: center;
  margin-right: 1px;
  border-radius: var(--border-radius);
  margin-right: 5px;
  color: var(--text-color);
}
.number-input .actions {
  height: 100%;
  border-left: 1px solid var(--border-color);
}
.number-input .actions .action {
  flex: 1;
  color: var(--secondary-text-color);
}
.number-input .actions .action.up {
  padding: 0 5px;
  border-bottom: 1px solid var(--border-color);
  border-top-right-radius: var(--border-radius);
}
.number-input .actions .action.down {
  padding: 0 5px;
  border-bottom-right-radius: var(--border-radius);
}
.number-input .actions .action.disabled {
  background: var(--disabled-color);
}

.radio-input {
  cursor: pointer;
  margin-bottom: 5px;
}
.radio-input.disabled {
  cursor: default;
}
.radio-input .radio {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 1px solid black;
}
.radio-input .radio.selected {
  border: none;
  background-color: var(--color-scheme);
}
.radio-input .radio .radio-filler {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--raw-background-color);
}
.radio-input .radio-option {
  margin-left: 5px;
  padding: 0 5px;
  border-radius: var(--border-radius);
}
.radio-input .radio-option.selected {
  color: var(--color-scheme);
}

.btn,
button, .link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--border-radius);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  outline: 0;
  border: 1px solid var(--color-scheme);
  color: #FFFFFF;
  background-color: var(--color-scheme);
}
.btn:hover,
button:hover, .link-button:hover {
  border: 1px solid var(--color-scheme);
  color: var(--color-scheme);
  background-color: #FFFFFF;
}
.btn.reverted,
button.reverted, .link-button.reverted {
  border: 1px solid var(--color-scheme);
  color: var(--color-scheme);
  background-color: #FFFFFF;
}
.btn.reverted:hover,
button.reverted:hover, .link-button.reverted:hover {
  border: 1px solid var(--color-scheme);
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.btn:disabled, .btn.disabled,
button:disabled,
button.disabled, .link-button:disabled, .link-button.disabled {
  border: 1px solid transparent;
  color: var(--text-color);
  background-color: var(--disabled-color);
}
.btn:disabled:hover, .btn.disabled:hover,
button:disabled:hover,
button.disabled:hover, .link-button:disabled:hover, .link-button.disabled:hover {
  border: 1px solid transparent;
  color: var(--text-color);
  background-color: var(--disabled-color);
  cursor: default;
}

.switch-wrapper .switch-title {
  margin-right: 10px;
  color: var(--secondary-text-color);
  font-size: 13px;
  font-weight: 700;
}
.switch-wrapper .switch-icon-wrapper {
  min-width: 30px;
}
.switch-wrapper .switch-icon-wrapper .switch-icon {
  font-size: 16px;
  color: var(--secondary-text-color);
}
.switch-wrapper .react-toggle {
  touch-action: pan-x;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.switch-wrapper .react-toggle.react-toggle--disabled {
  cursor: default;
}
.switch-wrapper .react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.switch-wrapper .react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.switch-wrapper .react-toggle-track {
  width: 38px;
  height: 19px;
  padding: 0;
  border-radius: 30px;
  background-color: #4D4D4D;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.switch-wrapper .react-toggle--checked .react-toggle-track {
  background-color: var(--color-scheme);
}
.switch-wrapper .react-toggle-track-check {
  position: absolute;
  width: 14px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.switch-wrapper .react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.switch-wrapper .react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.switch-wrapper .react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}
.switch-wrapper .react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 17px;
  height: 17px;
  border: 1px solid #4D4D4D;
  border-radius: 50%;
  background-color: #FAFAFA;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.switch-wrapper .react-toggle--checked .react-toggle-thumb {
  left: 20px;
  border-color: var(--color-scheme);
}

.color-picker {
  animation: picker-animation 0.3s ease-in;
  position: absolute;
  border-radius: var(--border-radius);
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  width: 252px;
  z-index: var(--z-index-max);
}

.color-picker-box {
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius);
  border: 2px solid var(--border-color);
  cursor: pointer;
  position: relative;
}

.color-picker-divider {
  height: 1px;
  width: 100%;
  background-color: var(--border-color);
}

.color-picker-list {
  padding: 10px;
  gap: 5px;
}

.color-picker-actions {
  padding: 5px;
}
.color-picker-actions .color-picker-action {
  padding: 5px;
  border-radius: var(--border-radius);
  color: var(--text-color);
}

.color-picker-inputs-wrapper {
  padding: 10px;
  gap: 5px;
}
.color-picker-inputs-wrapper .color-picker-input-label {
  text-align: center;
}

.react-colorful {
  width: 250px !important;
  height: 200px !important;
}
.react-colorful .react-colorful__saturation {
  border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
}
.react-colorful .react-colorful__hue .react-colorful__interactive .react-colorful__pointer, .react-colorful .react-colorful__alpha .react-colorful__interactive .react-colorful__pointer {
  height: 24px !important;
  width: 8px !important;
  border-radius: var(--border-radius) !important;
  border: 2px solid #FFFFFF !important;
}

.react-colorful__last-control {
  border-radius: 0 !important;
}

@keyframes picker-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ratio-wrapper {
  width: 100%;
  height: 10px;
  background-color: var(--color-scheme);
  border-radius: var(--border-radius);
}
.ratio-wrapper .ratio-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-scheme);
  background: #FFFFFF;
  cursor: grab;
}

.dropdown {
  cursor: pointer;
}
.dropdown i {
  margin-left: 10px;
  color: var(--secondary-text-color);
  transform: rotate(0deg);
  transition: 0.25s transform ease;
}
.dropdown.selected-drop-menu i {
  transform: rotate(-180deg);
  transition: 0.25s transform ease;
}
.dropdown img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
}

.text-input {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--raw-background-color);
}
.text-input.disabled {
  background-color: var(--disabled-color);
}
.text-input input[type=text] {
  border: 0;
}
.text-input .action {
  padding: 5px 10px;
  color: var(--secondary-text-color);
  cursor: pointer;
}
.text-input .action.close-action {
  color: var(--red);
}
.text-input .loader {
  margin: 5px 10px;
}

.checkbox-input {
  cursor: pointer;
  color: var(--secondary-text-color);
  font-size: 13px;
  font-weight: 700;
}
.checkbox-input.disabled {
  cursor: default;
}
.checkbox-input .checkbox-icon {
  width: 25px;
}
.checkbox-input .box {
  height: 25px;
  width: 25px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  background-color: var(--raw-background-color);
  font-size: 20px;
}
.checkbox-input .box.checked {
  background-color: var(--color-scheme);
  border: 1px solid var(--color-scheme);
  color: #FFFFFF;
}
.checkbox-input .box.disabled {
  background-color: var(--disabled-color);
  border: 1px solid var(--disabled-color);
  color: #FFFFFF;
}

.text-area-input {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--raw-background-color);
  height: 100px;
  width: 100%;
  resize: none;
}

.media-gallery .single-media {
  width: 100%;
}
.media-gallery .media-preview {
  height: 150px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}
.media-gallery .media-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media-gallery .media-preview .file-preview-wrapper i {
  font-size: 50px;
  margin-bottom: 10px;
}
.media-gallery .multiple-media {
  gap: 10px;
  margin-bottom: 10px;
}
.media-gallery .multiple-media .media-preview {
  width: 150px;
  margin-bottom: 0;
}
.media-gallery .no-media-wrapper {
  width: 100%;
  height: 150px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 10px;
}
.media-gallery .no-media-wrapper .no-media-icon {
  font-size: 50px;
  color: var(--border-color);
}

.media-gallery-modal {
  height: 100%;
}
.media-gallery-modal .media-gallery-modal-wrapper {
  height: 100%;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel {
  width: 20%;
  height: 100%;
  border-right: 1px solid var(--border-color);
  padding: 20px;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .mode {
  padding: 10px;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  color: var(--text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .mode .mode-icon {
  margin-right: 10px;
  font-size: 18px;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .mode .mode-title {
  font-size: 14px;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .mode.current {
  background: var(--color-scheme);
  color: #FFFFFF;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .mode.close-mode {
  border: 1px solid var(--color-scheme);
  background-color: #FFFFFF;
  color: var(--color-scheme);
  margin-bottom: 0;
  cursor: pointer;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .mode.close-mode:hover {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .media-uploader-wrapper {
  border-radius: var(--border-radius);
  width: 100%;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .media-uploader-wrapper .media-uploader-header {
  border-radius: var(--border-radius);
  padding: 5px;
  color: var(--text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .media-uploader-wrapper .media-uploader-header i {
  font-size: 18px;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .media-uploader-wrapper .media-uploader-file-info {
  height: 20px;
  font-size: 12px;
  margin: 0 5px 5px 5px;
  color: var(--secondary-text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .media-uploader-wrapper .media-uploader-file-info .completed {
  color: #39A728;
}
.media-gallery-modal .media-gallery-modal-wrapper .modes-panel .media-uploader-wrapper .media-uploader-file-info .error {
  color: #DA3737;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel {
  height: 100%;
  width: 80%;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-panel-header {
  height: 61px;
  border-bottom: 1px solid var(--border-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-panel-header .media-panel-search-input {
  height: 40px;
  width: 400px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-panel-header .media-panel-search-result {
  color: var(--secondary-text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list {
  padding: 20px 20px 40px 20px;
  gap: 40px 1.2%;
  max-height: calc(100% - 51px);
  overflow: auto;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .dropzone-wrapper {
  width: 24%;
  height: 200px;
  border: 2px dashed var(--color-scheme);
  border-radius: var(--border-radius);
  font-size: 14px;
  color: var(--text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .dropzone-wrapper .dropzone-button {
  padding: 10px;
  background-color: var(--color-scheme);
  font-weight: 500;
  border-radius: var(--border-radius);
  color: #FFFFFF;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .dropzone-wrapper .dropzone-button i {
  font-size: 20px;
  margin-left: 5px;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper {
  width: 24%;
  height: 200px;
  border-radius: var(--border-radius);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper.selected {
  border: 2px solid var(--color-scheme);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper.flipped {
  transform: rotateY(180deg);
  background-color: var(--raw-background-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper img.flipped {
  opacity: 0.1;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .file-preview-wrapper .file-preview-type {
  font-size: 60px;
  margin-bottom: 40px;
  color: var(--text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .file-preview-wrapper .file-preview-name {
  font-size: 14px;
  color: var(--secondary-text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .media-wrapper-info {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 10px;
  background-color: var(--raw-background-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .media-wrapper-info.image-media {
  background-color: rgb(from var(--raw-background-color) r g b/0.1);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .media-wrapper-info .media-wrapper-info-icon {
  font-size: 50px;
  margin-bottom: 10px;
  color: var(--text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .media-wrapper-info .media-wrapper-info-text-key {
  padding: 2px 0;
  font-size: 12px;
  color: var(--text-color);
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .media-wrapper-info .media-wrapper-info-text-value {
  font-size: 12px;
  color: var(--secondary-text-color);
  padding: 2px 5px;
  border-radius: var(--border-radius);
  font-weight: 600;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .media-wrapper-actions {
  position: absolute;
  top: 5px;
  right: 5px;
}
.media-gallery-modal .media-gallery-modal-wrapper .media-panel .media-list .media-wrapper .media-wrapper-actions .media-wrapper-action {
  height: 35px;
  width: 35px;
  border-radius: var(--border-radius);
  background-color: var(--raw-background-color);
  font-size: 18px;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}
.media-gallery-modal .close-alert-text {
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
  color: var(--text-color);
}

.card {
  width: 90%;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--raw-background-color);
  box-shadow: rgb(from var(--border-color) r g b/0.2) 1px 3px 3px 0px;
}
.card .card-heading-wrapper {
  padding: 0 20px;
  height: 80px;
}
.card .card-heading-wrapper .card-heading-icon {
  font-size: 24px;
  color: var(--text-color);
  margin-right: 10px;
}
.card .card-heading-wrapper .card-heading-title {
  font-size: 20px;
  color: var(--text-color);
}
.card .empty-card {
  padding: 10px 20px;
  font-size: 16px;
  color: var(--secondary-text-color);
}
.card .card-item {
  padding: 10px 20px;
}
.card .card-item .card-icon {
  font-size: 20px;
  color: var(--text-color);
  min-width: 35px;
}
.card .card-item .card-info-wrapper .card-title {
  font-size: 14px;
  color: var(--text-color);
}
.card .card-item .card-info-wrapper .card-title.highlight {
  color: var(--color-scheme);
}
.card .card-item .card-info-wrapper .card-subtitle {
  font-size: 12px;
  color: var(--secondary-text-color);
}
.card .card-item .card-action-help-icon {
  font-size: 20px;
  color: var(--text-color);
}
.card .card-item .card-action-wrapper {
  padding: 5px 10px;
}
.card .card-item .card-action-wrapper .card-action-icon {
  font-size: 16px;
  margin-right: 5px;
}
.card .card-item .card-action-wrapper .card-action-title {
  font-size: 14px;
}
.card .card-item-divider {
  width: calc(100% - 40px);
  height: 1px;
  background: var(--border-color);
  margin: 0 20px;
}
.card .card-divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
}
.card .card-table-wrapper {
  overflow-x: auto;
  display: grid;
}
.card .card-table-wrapper .card-table-heading {
  padding: 0 20px;
  gap: 0 15px;
}
.card .card-table-wrapper .card-table-heading .card-table-heading-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--tertiary-text-color);
  text-align: center;
  padding: 10px 0;
  min-width: 150px;
}
.card .card-table-wrapper .card-table-heading .card-table-heading-item.expanded {
  text-align: left;
  min-width: 300px;
}
.card .card-table-wrapper .card-table-heading .card-table-heading-item.last {
  text-align: right;
}
.card .card-table-wrapper .card-table-row {
  padding: 0 20px;
  gap: 0 15px;
}
.card .card-table-wrapper .card-table-row .card-table-row-item {
  font-size: 12px;
  color: var(--text-color);
  text-align: center;
  padding: 10px 0;
  min-width: 150px;
}
.card .card-table-wrapper .card-table-row .card-table-row-item.expanded {
  text-align: left;
  min-width: 300px;
}
.card .card-table-wrapper .card-table-row .card-table-row-item.last {
  text-align: right;
}
.card .input-field {
  padding: 0 20px;
  margin-bottom: 15px;
}

.tags .tag-input-wrapper {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--raw-background-color);
}
.tags .tag-input-wrapper .tag-input {
  border: 0;
}
.tags .tag-add-button-wrapper {
  color: var(--color-scheme);
  border-radius: var(--border-radius);
  padding: 0 6px;
}
.tags .tag-add-button-wrapper .tag-add-button {
  font-size: 20px;
}

.tag-tiles-wrapper {
  gap: 10px;
}
.tag-tiles-wrapper .tag-tile {
  padding: 5px 10px;
  background-color: var(--secondary-background-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
}
.tag-tiles-wrapper .tag-tile .tag-tile-icon {
  font-size: 16px;
  margin-left: 5px;
}

.header {
  height: var(--header-height);
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.header .left-content {
  height: 100%;
}
.header .left-content .back-button {
  font-size: 25px;
  color: var(--text-color);
  padding: 0 10px;
}
.header .left-content .back-button-text {
  font-size: 16px;
  color: var(--text-color);
}
.header .left-content .image-wrapper {
  height: 100%;
  padding: 5px;
}
.header .left-content .image-wrapper .image {
  height: 100%;
  object-fit: contain;
}
.header .left-content .header-breadcrumb-icon {
  font-size: 20px;
  color: var(--secondary-text-color);
  padding: 5px;
}
.header .left-content .header-breadcrumb-title {
  font-size: 16px;
  color: var(--text-color);
  padding: 0 5px;
}
.header .left-content .header-breadcrumb-separator {
  font-size: 16px;
  color: var(--secondary-text-color);
  padding: 0 5px;
}
.header .middle-content .device-type {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-right: 10px;
}
.header .middle-content .device-type.selected {
  border-color: var(--color-scheme);
}
.header .middle-content .device-type .device-type-icon {
  font-size: 15px;
  color: var(--text-color);
}
.header .middle-content .device-type .device-type-icon.selected {
  color: var(--color-scheme);
}
.header .right-content {
  margin-right: 10px;
}
.header .right-content .actions {
  margin-right: 15px;
}
.header .right-content .actions .action {
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-color);
}
.header .right-content .actions .action.disabled {
  color: var(--disabled-color);
  cursor: default;
}
.header .right-content .save-button-wrapper {
  min-width: 100px;
  height: 35px;
  cursor: pointer;
  border-radius: calc(var(--border-radius) + 2px);
  background-color: var(--color-scheme);
}
.header .right-content .save-button-wrapper.saveable {
  color: var(--color-scheme);
  animation: spin 5s infinite linear;
  background: linear-gradient(to bottom, #FFFFFF, #FFFFFF) padding-box, conic-gradient(from var(--bg-angle), var(--color-scheme) 0 5deg, rgb(from var(--color-scheme) r g b/0.1) 10deg 180deg, var(--color-scheme) 180deg 185deg, rgb(from var(--color-scheme) r g b/0.1) 190deg 360deg) border-box;
  border: 2px solid transparent;
}
.header .right-content .save-button-wrapper.disabled {
  color: var(--text-color);
  background-color: var(--disabled-color);
}
.header .right-content .save-button-wrapper.error {
  background: var(--red);
  border-color: var(--red);
}
.header .right-content .save-button-wrapper .save-button-content {
  position: relative;
  height: 31px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: var(--border-radius);
  width: 100%;
}
.header .right-content .save-button-wrapper .save-button-content.saveable {
  background: rgb(from var(--color-scheme) r g b/0.1);
  color: var(--color-scheme);
}
.header .right-content .save-button-wrapper .save-button-content .button-error-icon {
  font-size: 20px;
  margin-left: 5px;
  color: #FFFFFF;
}
.header .right-content .save-button-wrapper .save-button-content .button-error-title {
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
}
.header .right-content .save-button-wrapper .save-button-content .button-error-subtitle {
  font-size: 10px;
  line-height: 12px;
  color: #FFFFFF;
}
.header .right-content .save-button-wrapper .save-button-content .button-save-mode-icon {
  font-size: 16px;
  margin: 0 5px;
  color: #000000;
}
.header .right-content .published-locales-wrapper {
  height: 35px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 0 5px;
}
.header .right-content .published-locales-wrapper .published-locales-text {
  font-size: 12px;
  color: var(--text-color);
}
.header .right-content .published-locales-wrapper .published-locales-icon {
  font-size: 16px;
  color: var(--text-color);
  margin-left: 5px;
}
.header .right-content .published-locales-wrapper .published-locales-icon.published {
  color: var(--green);
}
.header .right-content .language-picker {
  height: 35px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 0 10px;
  color: var(--text-color);
}
.header .right-content .language .language-title {
  border-radius: var(--border-radius);
  padding: 5px;
  margin-left: 5px;
  color: var(--text-color);
}
.header .right-content .language .language-title.disabled {
  color: var(--disabled-color);
}
.header .right-content .language .language-title.selected {
  color: var(--color-scheme);
}
.header .right-content .language .action-icon {
  font-size: 20px;
  cursor: pointer;
  color: var(--text-color);
}
.header .right-content .more-actions {
  width: 35px;
  height: 35px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin-left: 10px;
  font-size: 24px;
}
.header .right-content .more-actions i {
  color: var(--text-color);
}
.header .flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.header .import-language {
  margin-bottom: 10px;
  align-self: flex-start;
}
.header .import-language .import-language-title {
  border-radius: var(--border-radius);
  padding: 5px;
  margin-left: 5px;
  color: var(--text-color);
}
.header .migration-modal {
  height: 90%;
}
.header .migration-modal .migration-text-area textarea {
  height: 300px;
}
.header .migration-modal .invalid-message {
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
  text-align: right;
}
.header .migration-title {
  font-size: 24px;
  color: var(--color-scheme);
}
.header .migration-subtitle {
  font-size: 18px;
  color: var(--secondary-text-color);
  margin: 20px;
  margin-bottom: 30px;
}

.migration-progress-bar {
  width: 50%;
  height: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}
.migration-progress-bar .migration-progress-bar-inner {
  height: 14px;
  background: var(--color-scheme);
  border-radius: 7px;
}

@property --bg-angle {
  inherits: false;
  initial-value: 0deg;
  syntax: "<angle>";
}
@keyframes spin {
  to {
    --bg-angle: 360deg;
  }
}
.blocks-panel .right-panel .panel-content.layout .layout-item-wrapper {
  margin-bottom: 10px;
  align-self: flex-start;
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-content.layout .layout-item-wrapper .toggle {
  min-width: 20px;
  min-height: 20px;
  border-radius: var(--border-radius);
  font-size: 16px;
}
.blocks-panel .right-panel .panel-content.layout .layout-item-wrapper .layout-item {
  padding: 5px 10px;
  border-radius: var(--border-radius);
  cursor: pointer;
}
.blocks-panel .right-panel .panel-content.layout .layout-item-wrapper .layout-item.selected {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.blocks-panel .right-panel .panel-content.layout .layout-item-wrapper .layout-item .layout-item-icon {
  font-size: 14px;
  margin-right: 10px;
}

.blocks-panel .right-panel .panel-content.library .filter-wrapper {
  position: relative;
  height: 35px;
  width: 35px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--raw-background-color);
  color: var(--text-color);
  margin-left: 5px;
}
.blocks-panel .right-panel .panel-content.library .filter-wrapper .filter-icon {
  font-size: 20px;
}
.blocks-panel .right-panel .panel-content.library .filter-wrapper .filter-count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-scheme);
  color: #FFFFFF;
  font-size: 12px;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper {
  gap: 20px;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-group-wrapper-header {
  background: var(--raw-background-color);
  border: 1px solid;
  border-radius: var(--border-radius);
  border-color: var(--border-color);
  padding: 10px;
  cursor: pointer;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-group-wrapper-header .group-title {
  font-size: 16px;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-group-wrapper-header .group-selected-count {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-scheme);
  margin-right: 10px;
  font-size: 14px;
  color: #FFFFFF;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-group-wrapper-header i {
  font-size: 16px;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-blocks-wrapper {
  gap: 10px;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-blocks-wrapper .filter-modal-block {
  width: calc(25% - 7.5px);
  padding: 20px;
  border: 1px solid;
  border-radius: var(--border-radius);
  border-color: var(--border-color);
  background: var(--raw-background-color);
  position: relative;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-blocks-wrapper .filter-modal-block .filter-modal-block-icon {
  font-size: 25px;
  color: var(--color-scheme);
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-blocks-wrapper .filter-modal-block .filter-modal-block-title {
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
  line-height: 12px;
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-blocks-wrapper .filter-modal-block .selected-block {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-scheme);
}
.blocks-panel .right-panel .panel-content.library .filter-modal-groups-wrapper .filter-modal-blocks-wrapper .filter-modal-block .selected-block i {
  font-size: 14px;
  color: #FFFFFF;
}
.blocks-panel .right-panel .panel-content.library .library-blocks-wrapper {
  gap: 10px;
}
.blocks-panel .right-panel .panel-content.library .library-blocks-wrapper .library-block {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--raw-background-color);
  padding: 10px;
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-content.library .library-blocks-wrapper .library-block.disabled {
  background-color: var(--disabled-color);
}
.blocks-panel .right-panel .panel-content.library .library-blocks-wrapper .library-block .library-block-icon {
  font-size: 25px;
  color: var(--color-scheme);
}
.blocks-panel .right-panel .panel-content.library .library-blocks-wrapper .library-block .library-block-title {
  font-size: 12px;
  margin-top: 5px;
  line-height: 12px;
  text-align: center;
  overflow-wrap: break-word;
  inline-size: 90%;
}

.blocks-panel .right-panel .panel-content .theme-wrapper {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  position: relative;
  margin-bottom: 20px;
}
.blocks-panel .right-panel .panel-content .theme-wrapper .theme-image-wrapper {
  height: 170px;
  background-color: var(--raw-background-color);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.blocks-panel .right-panel .panel-content .theme-wrapper .theme-image-wrapper .theme-image {
  height: 100%;
  width: 100%;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  object-fit: cover;
}
.blocks-panel .right-panel .panel-content .theme-wrapper .theme-footer-title {
  font-size: 14px;
  padding: 10px;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  text-align: center;
  background-color: var(--raw-background-color);
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-content .theme-wrapper .theme-footer-title.no-image {
  border-radius: var(--border-radius);
}
.blocks-panel .right-panel .panel-content .theme-wrapper .theme-import-button {
  position: absolute;
  top: 13px;
  right: 13px;
  height: 40px;
  width: 40px;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  color: var(--color-scheme);
}
.blocks-panel .right-panel .panel-content .theme-wrapper .theme-import-button.no-image {
  top: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-modal-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--color-scheme);
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-modal-image-wrapper {
  height: 300px;
  width: 50%;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-modal-image-wrapper .theme-modal-image {
  height: 100%;
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: contain;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper {
  padding: 20px;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper .theme-modal-languages {
  gap: 10px 15px;
  margin-bottom: 10px;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper .theme-modal-languages .theme-modal-language .theme-modal-language-flag {
  width: 24px;
  height: 16px;
  margin-right: 5px;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper .theme-modal-languages .theme-modal-language .theme-modal-language-title {
  font-size: 14px;
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper .theme-modal-description {
  font-size: 14px;
  text-align: center;
  color: var(--text-color);
  white-space: pre-wrap;
  margin-bottom: 20px;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper .theme-modal-dropdown-label {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper .theme-modal-dropdown .dropdown {
  min-width: 200px;
}
.blocks-panel .right-panel .panel-content .theme-modal .theme-info-wrapper .theme-modal-alert {
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
  color: var(--secondary-text-color);
}

.blocks-panel .left-panel {
  padding: 5px 0;
  width: var(--panel-options-width);
  border-right: 1px solid var(--border-color);
}
.blocks-panel .left-panel .action {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  font-size: 20px;
  color: var(--text-color);
  cursor: pointer;
}
.blocks-panel .left-panel .action.selected {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.blocks-panel .left-panel .action.large {
  font-size: 25px;
}
.blocks-panel .right-panel {
  overflow-y: auto;
  width: var(--panel-width);
  border-right: 1px solid var(--border-color);
}
.blocks-panel .right-panel .panel-header {
  border-bottom: 1px solid var(--border-color);
  padding: 10px;
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-header .close-action {
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
  font-size: 20px;
}
.blocks-panel .right-panel .panel-content {
  padding: 10px;
}
.blocks-panel .right-panel .panel-content .input-box {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  width: 100%;
  height: 35px;
  padding: 0 10px;
  outline: none;
  background: var(--raw-background-color);
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-content .panel-content-header {
  cursor: pointer;
  color: var(--text-color);
}
.blocks-panel .right-panel .panel-content .panel-content-header .toggle-icon {
  min-width: 15px;
  margin-right: 5px;
}
.blocks-panel .right-panel .panel-content .panel-content-divider {
  height: 1px;
  background-color: var(--border-color);
}
.blocks-panel .right-panel .panel-content .text-area-box {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  width: 100%;
  height: 60px;
  padding: 5px;
  outline: none;
  resize: none;
}
.blocks-panel .right-panel .panel-content .input-box:focus, .blocks-panel .right-panel .panel-content .text-area-box:focus {
  border-color: var(--color-scheme);
}
.blocks-panel .right-panel .panel-content .block-group {
  margin-bottom: 10px;
}
.blocks-panel .right-panel .panel-content .block-group .blocks-wrapper {
  display: grid;
  grid-template-columns: calc(50% - 2.5px) calc(50% - 2.5px);
  grid-gap: 5px;
  margin-top: 10px;
}
.blocks-panel .right-panel .panel-content .block-group .blocks-wrapper .block-wrapper .block {
  height: 100%;
}

.settings-panel .tabs .tab-wrapper {
  cursor: pointer;
}
.settings-panel .tabs .tab-wrapper .tab {
  padding: 5px 10px 2px 10px;
  color: var(--text-color);
  background-color: var(--secondary-background-color);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  font-size: 12px;
  margin: 0 5px;
}
.settings-panel .tabs .tab-wrapper .tab.selected {
  color: #FFFFFF;
  background-color: var(--color-scheme);
}
.settings-panel .tabs .tab-wrapper .tab.selected:hover {
  color: #FFFFFF;
}
.settings-panel .tabs .tab-wrapper .tab:hover {
  color: var(--color-scheme);
}
.settings-panel .tabs .tab-wrapper .divider {
  height: 3px;
  background-color: var(--secondary-background-color);
  width: 100%;
}
.settings-panel .tabs .tab-wrapper .divider.selected {
  background-color: var(--color-scheme);
}

.items-selector-button i {
  font-size: 18px;
}

.items-selector-modal {
  height: 100%;
}
.items-selector-modal .items-selector-modal-wrapper {
  height: 100%;
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel {
  width: 20%;
  height: 100%;
  border-right: 1px solid var(--border-color);
  padding: 20px;
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode {
  padding: 10px;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  position: relative;
  color: var(--text-color);
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode .mode-icon {
  margin-right: 10px;
  font-size: 18px;
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode .mode-title {
  font-size: 14px;
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode .mode-count-indicator {
  position: absolute;
  right: 10px;
  width: 25px;
  height: 25px;
  border: 2px solid var(--color-scheme);
  border-radius: 50%;
  color: var(--color-scheme);
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode .mode-count-indicator.current {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode.current {
  background: var(--color-scheme);
  color: #FFFFFF;
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode.close-mode {
  border: 1px solid var(--color-scheme);
  background-color: #FFFFFF;
  color: var(--color-scheme);
  margin-bottom: 0;
  cursor: pointer;
}
.items-selector-modal .items-selector-modal-wrapper .modes-panel .mode.close-mode:hover {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.items-selector-modal .items-selector-modal-wrapper .items-panel {
  height: 100%;
  width: 80%;
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-panel-header {
  height: 61px;
  border-bottom: 1px solid var(--border-color);
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-panel-header .items-panel-search-input {
  height: 40px;
  width: 400px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-panel-header .items-panel-search-result {
  color: var(--secondary-text-color);
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-list {
  padding: 20px 20px 40px 20px;
  gap: 10px 0px;
  max-height: calc(100% - 51px);
  overflow: auto;
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-list .item-wrapper {
  width: 25%;
  padding: 10px;
  border-radius: var(--border-radius);
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-list .item-wrapper img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-list .item-wrapper .item-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 5px;
}
.items-selector-modal .items-selector-modal-wrapper .items-panel .items-list .item-wrapper .item-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-text-color);
}

.settings-panel .spacing-wrapper .spacing-header {
  margin-bottom: 20px;
}
.settings-panel .spacing-wrapper .spacing-header .spacing-header-actions {
  border-radius: var(--border-radius);
  padding: 5px;
  font-size: 15px;
  position: relative;
  color: var(--text-color);
}
.settings-panel .spacing-wrapper .spacing-header .spacing-header-actions .spacing-header-action-notice {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-scheme);
}
.settings-panel .spacing-wrapper .boxes-wrapper {
  position: relative;
}
.settings-panel .spacing-wrapper .boxes-wrapper .outer-box {
  width: 80%;
  height: 100px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}
.settings-panel .spacing-wrapper .boxes-wrapper .outer-box.current {
  border: 3px solid var(--border-color);
}
.settings-panel .spacing-wrapper .boxes-wrapper .outer-box .inner-box {
  width: 90%;
  height: 80px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}
.settings-panel .spacing-wrapper .boxes-wrapper .outer-box .inner-box.current {
  border: 3px solid var(--border-color);
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input {
  width: 100px;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.top {
  position: absolute;
  top: -20px;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.bottom {
  position: absolute;
  bottom: -20px;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.top-left {
  position: absolute;
  top: -20px;
  left: 0;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.top-right {
  position: absolute;
  top: -20px;
  right: 0;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.bottom-left {
  position: absolute;
  bottom: -20px;
  left: 0;
}
.settings-panel .spacing-wrapper .boxes-wrapper .spacing-input.bottom-right {
  position: absolute;
  bottom: -20px;
  right: 0;
}

.settings-panel .options-wrapper {
  gap: 5px;
}
.settings-panel .options-wrapper .option {
  padding: 5px 10px;
  border-radius: var(--border-radius);
  cursor: pointer;
  color: var(--text-color);
  background-color: var(--secondary-background-color);
}
.settings-panel .options-wrapper .option.selected {
  color: #FFFFFF;
  background-color: var(--color-scheme);
}
.settings-panel .options-wrapper .option.selected:hover {
  color: #FFFFFF;
}
.settings-panel .options-wrapper .option:hover {
  color: var(--color-scheme);
}

.settings-panel .icons-wrapper .icons-header-wrapper {
  color: var(--text-color);
}
.settings-panel .icons-wrapper .icons-header-wrapper i {
  font-size: 25px;
  padding: 5px;
  border-radius: var(--border-radius);
}
.settings-panel .icons-wrapper .icons-header-wrapper .icons-header-action {
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
}
.settings-panel .icons-wrapper .icons-header-wrapper .icons-header-action i {
  font-size: 15px;
}
.settings-panel .icons-wrapper .icon-options-wrapper {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-top: 20px;
  overflow: hidden;
  background: var(--raw-background-color);
}
.settings-panel .icons-wrapper .icon-options-wrapper .icon-types-wrapper {
  border-bottom: 1px solid var(--border-color);
}
.settings-panel .icons-wrapper .icon-options-wrapper .icon-types-wrapper .icon-type {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-color);
}
.settings-panel .icons-wrapper .icon-options-wrapper .icon-types-wrapper .icon-type.selected {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.settings-panel .icons-wrapper .icon-options-wrapper input {
  outline: none;
  font-size: 12px;
  border-style: none;
}
.settings-panel .icons-wrapper .icon-options-wrapper input:active, .settings-panel .icons-wrapper .icon-options-wrapper input:focus, .settings-panel .icons-wrapper .icon-options-wrapper input:focus-within {
  outline: none;
}
.settings-panel .icons-wrapper .icon-options-wrapper .icon-options-clean-search {
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
  font-size: 16px;
  margin-right: 5px;
  color: var(--text-color);
}
.settings-panel .icons-wrapper .icon-options-wrapper .icons-options-content-wrapper {
  border-top: 1px solid var(--border-color);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
  gap: 5px 10px;
}
.settings-panel .icons-wrapper .icon-options-wrapper .icons-options-content-wrapper .icon-option {
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
  font-size: 16px;
  color: var(--text-color);
}
.settings-panel .icons-wrapper .icon-options-wrapper .icons-options-content-wrapper .results-text {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--secondary-text-color);
  margin: 5px 0;
}

.settings-panel .theme-options-wrapper {
  gap: 10px;
}
.settings-panel .theme-options-wrapper .theme-option {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  background: var(--raw-background-color);
  font-size: 20px;
}
.settings-panel .theme-options-wrapper .theme-option.selected {
  background: var(--color-scheme);
  color: #FFFFFF;
}
.settings-panel .code-mirror {
  height: 100%;
}
.settings-panel .code-mirror .code-mirror-script-warning {
  margin-bottom: 10px;
  color: var(--orange);
}
.settings-panel .code-mirror .react-codemirror2 {
  height: 100%;
  padding-bottom: 20px;
}
.settings-panel .code-mirror .react-codemirror2 .CodeMirror {
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.settings-panel .nested-items-wrapper {
  gap: 10px;
}
.settings-panel .nested-items-wrapper .nested-item-wrapper {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--raw-background-color);
  color: var(--text-color);
  padding: 10px;
}
.settings-panel .nested-items-wrapper .nested-item-wrapper.dragging {
  background: var(--disabled-color);
}
.settings-panel .nested-items-wrapper .nested-item-wrapper i {
  font-size: 16px;
}
.settings-panel .nested-items-wrapper .nested-item-wrapper .grip-icon {
  cursor: grab;
  padding-right: 5px;
}

.settings-panel {
  overflow-y: auto;
  width: var(--panel-width);
  border-left: 1px solid var(--border-color);
  padding: 10px 0;
}
.settings-panel .help-text {
  align-self: center;
  text-align: center;
  padding: 15px;
  color: var(--text-color);
}
.settings-panel .panel-header {
  padding: 0 10px;
  margin-bottom: 20px;
  color: var(--text-color);
}
.settings-panel .panel-header .panel-header-title {
  font-size: 18px;
  font-weight: 600;
}
.settings-panel .panel-header .delete-action {
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
  font-size: 15px;
}
.settings-panel .setting-group-wrapper .setting-group-header {
  padding: 10px;
  cursor: pointer;
}
.settings-panel .setting-group-wrapper .setting-group-header .setting-group-toggle {
  font-size: 14px;
  margin-right: 10px;
  color: var(--secondary-text-color);
  transform: rotate(0deg);
  transition: 0.25s transform ease;
}
.settings-panel .setting-group-wrapper .setting-group-header .setting-group-toggle.toggled {
  color: var(--tertiary-text-color);
  transform: rotate(90deg);
  transition: 0.25s transform ease;
}
.settings-panel .setting-group-wrapper .setting-group-header .setting-group-header-title {
  color: var(--secondary-text-color);
  font-size: 14px;
  font-weight: 700;
}
.settings-panel .setting-group-wrapper .setting-group-header .setting-group-header-title.toggled {
  color: var(--tertiary-text-color);
}
.settings-panel .setting-group-wrapper .setting-group-header-actions {
  position: relative;
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
  font-size: 15px;
  margin-right: 10px;
  color: var(--text-color);
}
.settings-panel .setting-group-wrapper .setting-group-header-actions .setting-group-header-actions-notice {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-scheme);
}
.settings-panel .setting-group-wrapper .setting-group-actions {
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 0 10px;
  color: var(--text-color);
}
.settings-panel .setting-group-wrapper .setting-group-actions .setting-group-action {
  margin-left: 5px;
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
  position: relative;
  font-size: 15px;
  cursor: pointer;
}
.settings-panel .setting-group-wrapper .setting-group-actions .setting-group-action.selected {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.settings-panel .setting-group-wrapper .setting-group-actions .setting-group-action .setting-group-action-notice {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-scheme);
}
.settings-panel .setting-group-wrapper .setting-group-actions .setting-group-action .setting-group-action-notice.selected {
  background-color: #FFFFFF;
}
.settings-panel .settings-wrapper {
  padding: 0 10px;
  /* transform: scaleY(0.5); */
  /* transform-origin: top; */
  /* transition: .25s ease-out; */
}
.settings-panel .settings-wrapper.toggled {
  /* transform: scaleY(1); */
  /* transform-origin: top; */
  /* transition: .25s ease-in; */
  /* animation: fade-in-animation 0.125s ease-in-out; */
}
.settings-panel label {
  color: var(--secondary-text-color);
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}
.settings-panel .aspect-ratio-divider {
  font-size: 24px;
  font-weight: 200;
  margin: 0 5px;
  color: var(--text-color);
}

@keyframes fade-in-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.content-block.container-wrapper {
  position: relative;
  width: 100%;
}
.content-block.container-wrapper.empty {
  border: 2px dashed #D9D9D9;
}

.content-block.columns {
  position: relative;
  width: 100%;
}

.content-block.column {
  position: relative;
  width: 100%;
}
.content-block.column.border {
  border: 2px dashed #D9D9D9;
  border-radius: var(--border-radius);
}
.content-block.column.stack {
  width: 100% !important;
}

.content-block.slider {
  position: relative;
  width: 100%;
}

.content-block.slide {
  position: relative;
  width: 100%;
}
.content-block.slide.border {
  border: 2px dashed #D9D9D9;
  border-radius: var(--border-radius);
}

.content-block.tabs .tabs-panel-row {
  overflow-x: auto;
}
.content-block.tabs .tab-title-editor {
  text-align: center;
  font-family: inherit;
}
.content-block.tabs .tab-panel-icon.left {
  margin-right: 5px;
}
.content-block.tabs .tab-panel-icon.right {
  margin-left: 5px;
}
.content-block.tabs .tab-panel-icon.top {
  margin-bottom: 5px;
}
.content-block.tabs .tab-panel-icon.bottom {
  margin-top: 5px;
}

.content-block.tab {
  position: relative;
}
.content-block.tab.empty {
  border: 2px dashed #D9D9D9;
}

.content-block.flip-card {
  position: relative;
}
.content-block.flip-card.border {
  border: 2px dashed #D9D9D9;
  border-radius: var(--border-radius);
}
.content-block.flip-card .flip-card-lock-icons {
  position: absolute;
  top: 5px;
  right: 5px;
}
.content-block.flip-card .flip-card-lock-icons .flip-card-lock-icon-wrapper {
  height: 30px;
  width: 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--app-color-scheme);
  background: var(--background-color);
  color: var(--text-color);
}
.content-block.flip-card .flip-card-lock-icons .flip-card-lock-icon-wrapper i {
  font-size: 16px;
}
.content-block.flip-card .flip-card-lock-icons .flip-card-lock-icon-wrapper.locked {
  background: var(--app-color-scheme);
}
.content-block.flip-card .flip-card-lock-icons .flip-card-lock-icon-wrapper.locked i {
  color: #FFFFFF;
}
.content-block.flip-card .flip-card-content-wrapper {
  position: relative;
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  width: 100%;
  height: 100%;
}
.content-block.flip-card .flip-card-content-wrapper .flip-card-front-card {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.content-block.flip-card .flip-card-content-wrapper .flip-card-front-card .flip-card-icon {
  margin-bottom: 10px;
}
.content-block.flip-card .flip-card-content-wrapper .flip-card-back-card {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.content-block.flip-card .flip-right {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.content-block.flip-card .flip-left {
  transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
}
.content-block.flip-card .flip-up {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}
.content-block.flip-card .flip-down {
  transform: rotateX(-180deg);
  -webkit-transform: rotateX(-180deg);
}
.content-block.flip-card .flip-diagonal-right {
  transform: rotate3d(-1, 1, 0, 180deg);
  -webkit-transform: rotate3d(-1, 1, 0, 180deg);
}
.content-block.flip-card .flip-diagonal-left {
  transform: rotate3d(1, 1, 0, -180deg);
  -webkit-transform: rotate3d(1, 1, 0, -180deg);
}
.content-block.flip-card .flip-inverted-diagonal-right {
  transform: rotate3d(1, 1, 0, 180deg);
  -webkit-transform: rotate3d(1, 1, 0, 180deg);
}
.content-block.flip-card .flip-inverted-diagonal-left {
  transform: rotate3d(1, -1, 0, 180deg);
  -webkit-transform: rotate3d(1, -1, 0, 180deg);
}

.content-block.accordion-item .accordion-item-heading .accordion-item-icon.left {
  margin-right: 10px;
}
.content-block.accordion-item .accordion-item-heading .accordion-item-icon.right {
  margin-left: 10px;
}
.content-block.accordion-item .accordion-item-heading .accordion-item-heading-title-wrapper {
  font-family: inherit;
}
.content-block.accordion-item .accordion-item-heading .accordion-item-heading-title-wrapper .accordion-item-heading-title {
  font-family: inherit;
}
.content-block.accordion-item .accordion-item-content-wrapper {
  position: relative;
}
.content-block.accordion-item .accordion-item-content-wrapper .block-content {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.content-block.image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.content-block.text {
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
.content-block.text ::-webkit-scrollbar {
  height: 0px;
  width: 0px;
  background: transparent;
}

.text-editor-content p {
  margin: 0;
}
.text-editor-content .ProseMirror {
  width: 100%;
}
.text-editor-content .ProseMirror.ProseMirror-focused {
  border: none !important;
  outline: none;
}
.text-editor-content .ProseMirror ul {
  margin: 0px 0px 0px 40px;
}
.text-editor-content .ProseMirror ul li {
  list-style: disc;
}
.text-editor-content .ProseMirror code {
  font-family: Courier;
  background-color: #eeeeee;
}
.text-editor-content .ProseMirror a {
  font-weight: 700;
}
.text-editor-content .ProseMirror blockquote {
  margin: 0 0 0 0.3em;
  padding: 0 0 0 0.6em;
  border-left: 0.3em solid #cccccc;
}

.text-editor-menu {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow-x: auto;
  position: fixed;
  z-index: var(--z-index-medium);
}
.text-editor-menu .text-editor-group {
  border-bottom: 1px solid var(--border-color);
  background: var(--raw-background-color);
}
.text-editor-menu .text-editor-group.last {
  border-bottom: 0;
}
.text-editor-menu .text-editor-group .text-editor-subgroup-divider {
  height: 35px;
  width: 1px;
  background-color: var(--border-color);
}
.text-editor-menu .text-editor-group .editor-button {
  background: var(--raw-background-color);
  min-width: 30px;
  height: 35px;
  color: var(--text-color);
  cursor: pointer;
}
.text-editor-menu .text-editor-group .editor-button.is-active {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.text-editor-menu .text-editor-group .editor-button.space {
  cursor: default;
}
.text-editor-menu .text-editor-group .editor-button.disabled {
  background-color: var(--disabled-color);
  cursor: default;
}
.text-editor-menu .text-editor-group .editor-button:hover {
  color: var(--color-scheme);
}
.text-editor-menu .text-editor-group .editor-button:hover.is-active {
  color: #FFFFFF;
}
.text-editor-menu .text-editor-group .editor-button:hover.disabled {
  color: var(--text-color);
}

.content-block.button {
  text-align: center;
  cursor: pointer;
}
.content-block.button .button-text {
  align-self: center;
  font-family: inherit;
}
.content-block.button input {
  cursor: text !important;
}

.content-block.youtube {
  position: relative;
}
.content-block.youtube .video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.content-block.blockquote .blockquote-text {
  padding: 0 10px;
}

.content-block.audio audio {
  width: 100%;
}

.content-block.testimonials {
  position: relative;
  width: 100%;
}

.content-block.testimonial {
  position: relative;
  width: 100%;
}
.content-block.testimonial .testimonial-title {
  padding: 10px 0;
}
.content-block.testimonial .testimonial-content {
  padding: 5px 0;
}
.content-block.testimonial.border {
  border: 2px dashed #D9D9D9;
  border-radius: var(--border-radius);
}

.content-block.skill-bars {
  width: 100%;
}

.content-block.skill-bar .bar {
  width: 100%;
  border-radius: 4px;
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.1);
}
.content-block.skill-bar .bar .filled-bar {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 4px;
  animation: progress 1.5s ease-in-out forwards;
  -webkit-animation: progress 1.5s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
  opacity: 0;
}
.content-block.skill-bar .bar .filled-bar .tooltip {
  font-weight: 600;
  color: #FFFFFF;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: -25px;
  padding: 0 5px;
  border-radius: 4px;
  z-index: var(--z-index-low);
  height: 20px;
}
@keyframes progress {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.content-block.checklist {
  width: 100%;
}
.content-block.checklist-item .checklist-item-title {
  font-family: inherit;
}

.content-block.code {
  width: 100%;
}

.content-block.form {
  position: relative;
  width: 100%;
}
.content-block.form.empty {
  border: 2px dashed #D9D9D9;
}
.content-block.form label {
  cursor: text;
  font-weight: 700 !important;
  margin-bottom: 5px;
}
.content-block.form label .form-label {
  font-family: inherit;
}
.content-block.form input, .content-block.form textarea, .content-block.form .form-dropdown-input {
  border: 2px solid;
  outline: none;
  -webkit-appearance: none;
}
.content-block.form textarea {
  resize: none;
}

.content-block.form-dropdown {
  position: relative;
}
.content-block.form-dropdown .form-dropdown-input {
  max-width: 300px;
  cursor: pointer;
}
.content-block.form-dropdown .form-dropdown-menu-wrapper {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  border: 2px solid;
  max-width: 300px;
  z-index: 1;
  text-align: start;
}
.content-block.form-dropdown .form-dropdown-menu-wrapper .form-dropdown-divider {
  width: 100%;
  height: 2px;
  margin: 5px 0;
}

.content-block.form-checkbox-item .form-checkbox-item-box-wrapper {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid;
  cursor: pointer;
  margin-right: 5px;
}
.content-block.form-checkbox-item .form-checkbox-item-box-wrapper i {
  font-size: 15px;
}

.content-block.form-radio-item .form-radio-item-outer-box {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid;
  cursor: pointer;
  margin-right: 5px;
}
.content-block.form-radio-item .form-radio-item-outer-box .form-radio-item-inner-box {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.content-block.form-submit-wrapper {
  width: 100%;
}
.content-block.form-submit-wrapper .form-submit {
  text-align: center;
  cursor: pointer;
}
.content-block.form-submit-wrapper .form-submit .button-text {
  align-self: center;
  font-family: inherit;
}
.content-block.form-submit-wrapper .form-submit input {
  cursor: text !important;
}

/* SVG ICON STYLES */
.image-gallery-icon {
  color: #fff;
  transition: all 0.2s ease-out;
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.9));
}
@media (min-width: 768px) {
  .image-gallery-icon {
    /* Don't hover on screens smaller than small */
  }
  .image-gallery-icon:hover .image-gallery-svg {
    transform: scale(1.1);
  }
}

.image-gallery-using-mouse .image-gallery-icon:focus {
  outline: none;
}

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  bottom: 0;
  padding: 20px;
}
.image-gallery-fullscreen-button .image-gallery-svg,
.image-gallery-play-button .image-gallery-svg {
  height: 36px;
  width: 36px;
}
@media (max-width: 768px) {
  .image-gallery-fullscreen-button,
  .image-gallery-play-button {
    padding: 15px;
  }
  .image-gallery-fullscreen-button .image-gallery-svg,
  .image-gallery-play-button .image-gallery-svg {
    height: 24px;
    width: 24px;
  }
}
@media (max-width: 480px) {
  .image-gallery-fullscreen-button,
  .image-gallery-play-button {
    padding: 10px;
  }
  .image-gallery-fullscreen-button .image-gallery-svg,
  .image-gallery-play-button .image-gallery-svg {
    height: 16px;
    width: 16px;
  }
}

.image-gallery-fullscreen-button {
  right: 0;
}

.image-gallery-play-button {
  left: 0;
}

.image-gallery-left-nav,
.image-gallery-right-nav {
  padding: 0px 20px;
  top: 50%;
}
.image-gallery-left-nav:before,
.image-gallery-right-nav:before {
  font-size: 30px;
}
.image-gallery-left-nav .image-gallery-svg,
.image-gallery-right-nav .image-gallery-svg {
  display: none;
}
.image-gallery-left-nav[disabled],
.image-gallery-right-nav[disabled] {
  cursor: disabled;
  opacity: 0.6;
  pointer-events: none;
}

.image-gallery-left-nav {
  left: 0;
}

.image-gallery-right-nav {
  right: 0;
}

/* End of Icon styles */
.image-gallery {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
}
.image-gallery.fullscreen-modal {
  background: #000;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}
.image-gallery.fullscreen-modal .image-gallery-content {
  top: 50%;
  transform: translateY(-50%);
}

.image-gallery-content {
  position: relative;
  line-height: 0;
  top: 0;
}
.image-gallery-content.fullscreen {
  background: #000;
}
.image-gallery-content .image-gallery-slide .image-gallery-image {
  max-height: calc(100vh - 80px); /* 80 px for the thumbnail space */
}
.image-gallery-content.left .image-gallery-slide .image-gallery-image, .image-gallery-content.right .image-gallery-slide .image-gallery-image {
  max-height: 100vh;
}

.image-gallery-slide-wrapper {
  position: relative;
}
.image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
  display: inline-block;
  width: calc(100% - 110px); /* 100px + 10px for margin */
}
@media (max-width: 768px) {
  .image-gallery-slide-wrapper.left, .image-gallery-slide-wrapper.right {
    width: calc(100% - 87px); /* 81px + 6px for margin */
  }
}
.image-gallery-slide-wrapper.image-gallery-rtl {
  direction: rtl;
}

.image-gallery:focus,
.image-gallery-content:focus,
.image-gallery-slide-wrapper:focus,
.image-gallery-slides:focus,
.image-gallery-slide:focus,
.image-gallery-slide > div:focus,
.image-gallery-slide img:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.image-gallery-slides {
  line-height: 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-align: center;
}

.image-gallery-slide {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.image-gallery-slide.center {
  position: relative;
}
.image-gallery-slide .image-gallery-image {
  width: 100%;
}
.image-gallery-slide .image-gallery-description {
  background: rgba(0, 0, 0, 0.4);
  bottom: 70px;
  color: #fff;
  left: 0;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  white-space: normal;
}
@media (max-width: 768px) {
  .image-gallery-slide .image-gallery-description {
    bottom: 45px;
    font-size: 0.8em;
    padding: 8px 15px;
  }
}

.image-gallery-bullets {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 80%;
  z-index: 4;
}
.image-gallery-bullets .image-gallery-bullets-container {
  margin: 0;
  padding: 0;
  text-align: center;
}
.image-gallery-bullets .image-gallery-bullet {
  appearance: none;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.9);
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  outline: none;
  padding: 5px;
  transition: background 0.2s ease-out;
}
@media (max-width: 768px) {
  .image-gallery-bullets .image-gallery-bullet {
    margin: 0 3px;
    padding: 3px;
  }
}
@media (max-width: 480px) {
  .image-gallery-bullets .image-gallery-bullet {
    padding: 2.7px;
  }
}
.image-gallery-bullets .image-gallery-bullet.active {
  background: #fff;
}

.image-gallery-thumbnails-wrapper {
  position: relative;
}
.image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
  direction: rtl;
}
.image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
  display: inline-block;
  vertical-align: top;
  width: 100px;
}
@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
    width: 81px; /* 75px + 6px for border */
  }
}
.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails {
  height: 100%;
  width: 100%;
  left: 0;
  padding: 0;
  position: absolute;
  top: 0;
}
.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail {
  display: block;
  margin-right: 0;
  padding: 0;
}
.image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail {
  margin-left: 0;
  margin-top: 2px;
}
.image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
  margin: 0 5px;
}
@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.left, .image-gallery-thumbnails-wrapper.right {
    margin: 0 3px;
  }
}

.image-gallery-thumbnails {
  overflow: hidden;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .image-gallery-thumbnails {
    padding: 3px 0;
  }
}
.image-gallery-thumbnails .image-gallery-thumbnails-container {
  cursor: pointer;
  text-align: center;
  transition: transform 0.45s ease-out;
  white-space: nowrap;
}

.image-gallery-thumbnail {
  display: inline-block;
  border: 4px solid transparent;
  transition: border 0.3s ease-out;
  width: 100px;
  background: transparent;
  padding: 0;
}
@media (max-width: 768px) {
  .image-gallery-thumbnail {
    border: 3px solid transparent;
    width: 81px;
  }
}
.image-gallery-thumbnail + .image-gallery-thumbnail {
  margin-left: 2px;
}
.image-gallery-thumbnail .image-gallery-thumbnail-inner {
  position: relative;
}
.image-gallery-thumbnail .image-gallery-thumbnail-image {
  vertical-align: middle;
  width: 100%;
  line-height: 0;
}
.image-gallery-thumbnail.active, .image-gallery-thumbnail:hover, .image-gallery-thumbnail:focus {
  outline: none;
}

.image-gallery-thumbnail-label {
  box-sizing: border-box;
  color: white;
  font-size: 1em;
  left: 0;
  line-height: 1em;
  padding: 5%;
  position: absolute;
  top: 50%;
  text-shadow: 1px 1px 0 black;
  transform: translateY(-50%);
  white-space: normal;
  width: 100%;
}
@media (max-width: 768px) {
  .image-gallery-thumbnail-label {
    font-size: 0.8em;
    line-height: 0.8em;
  }
}

.image-gallery-index {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
@media (max-width: 768px) {
  .image-gallery-index {
    font-size: 0.8em;
    padding: 5px 10px;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}
.button h1, .button h2, .button h3, .button h4, .button h5, .button h6 {
  font-weight: 600;
}
.button.plain {
  background-color: transparent;
  border: none;
}
.button.plain:hover {
  background: transparent;
  border: none;
}
.button.delete-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.button.close {
  background-color: transparent;
  border: none;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
  line-height: 0;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
}
.button.close:hover {
  border: none;
}
.button.place-order {
  background-color: transparent;
}
.button.disabled {
  cursor: default;
  background: #eeeeee;
  border: 1px solid transparent;
  color: #888888;
}
.button.disabled:hover {
  background: #eeeeee;
  border: 1px solid transparent;
  color: #888888;
}

.no-product-wrapper {
  padding: 15px 0;
  color: #000000;
}
.no-product-wrapper i {
  font-size: 30px;
}
.no-product-wrapper .no-product {
  font-size: 14px;
  margin-top: 10px;
}

.product, .product-list {
  width: 100%;
}
.product.list .one_item, .product-list.list .one_item {
  flex-direction: column;
}
@media screen and (min-width: 850px) {
  .product.list .one_item .product-image, .product-list.list .one_item .product-image {
    width: 50%;
  }
}
.product.list .one_item .product-details, .product-list.list .one_item .product-details {
  flex: 1;
}
@media screen and (min-width: 500px) {
  .product.list .one_item, .product-list.list .one_item {
    flex-direction: row;
  }
}
.product .two_items,
.product .three_items,
.product .four_items,
.product .five_items,
.product .six_items, .product-list .two_items,
.product-list .three_items,
.product-list .four_items,
.product-list .five_items,
.product-list .six_items {
  width: 100%;
}
.product .slider-images, .product-list .slider-images {
  position: relative;
}
.product .slider-images .button, .product .slider-images .button:hover, .product .slider-images .button:active, .product .slider-images .button:focus,
.product .slider-images button, .product .slider-images button:hover, .product .slider-images button:active, .product .slider-images button:focus, .product-list .slider-images .button, .product-list .slider-images .button:hover, .product-list .slider-images .button:active, .product-list .slider-images .button:focus,
.product-list .slider-images button, .product-list .slider-images button:hover, .product-list .slider-images button:active, .product-list .slider-images button:focus {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.product .slider-images .image-gallery-content .image-gallery-slide, .product-list .slider-images .image-gallery-content .image-gallery-slide {
  outline: none;
}
.product .slider-images .image-gallery-content .image-gallery-swipe, .product .slider-images .image-gallery-content .image-gallery-slides,
.product .slider-images .image-gallery-content .image-gallery-slide, .product-list .slider-images .image-gallery-content .image-gallery-swipe, .product-list .slider-images .image-gallery-content .image-gallery-slides,
.product-list .slider-images .image-gallery-content .image-gallery-slide {
  height: 100%;
}
.product .slider-images .product-show-wrapper.image_top .slider-images, .product .slider-images .product-show-wrapper.image_top .image-gallery,
.product .slider-images .product-show-wrapper.image_top .image-gallery-content, .product .slider-images .product-show-wrapper.image_top .image-gallery-slide-wrapper, .product-list .slider-images .product-show-wrapper.image_top .slider-images, .product-list .slider-images .product-show-wrapper.image_top .image-gallery,
.product-list .slider-images .product-show-wrapper.image_top .image-gallery-content, .product-list .slider-images .product-show-wrapper.image_top .image-gallery-slide-wrapper {
  height: 100%;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails-container,
.product .slider-images .product-show-wrapper.image_top .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails-container, .product-list .slider-images .product-show-wrapper.image_top .image-gallery-thumbnails-wrapper.left .image-gallery-thumbnails-container,
.product-list .slider-images .product-show-wrapper.image_top .image-gallery-thumbnails-wrapper.right .image-gallery-thumbnails-container {
  display: flex;
  flex-direction: column;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-slide-wrapper.right, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-slide-wrapper.right {
  width: 100%;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-slide-wrapper.left, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-slide-wrapper.left {
  width: 100%;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-slide-wrapper.left .image-gallery-thumbnails-container, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-slide-wrapper.left .image-gallery-thumbnails-container {
  display: flex;
  flex-direction: column;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper {
  position: absolute !important;
  z-index: 2;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.top, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.top {
  width: 100%;
  top: 10px;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.right, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.right {
  right: 100px;
  top: 10px;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.bottom, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.bottom {
  width: 100%;
  bottom: 10px;
}
.product .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.left, .product-list .slider-images .product-show-wrapper.image_top .image-gallery .image-gallery-content .image-gallery-thumbnails-wrapper.left {
  left: 100px;
  top: 10px;
}
.product .product-badges-wrapper, .product-list .product-badges-wrapper {
  position: absolute;
  bottom: 0px;
}
.product .product-badges-wrapper .product-badge, .product-list .product-badges-wrapper .product-badge {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 5px;
}
.product .swiper-wrapper .swiper-slide, .product-list .swiper-wrapper .swiper-slide {
  height: auto;
}
.product .swiper-wrapper .swiper-slide .slider-product-item, .product-list .swiper-wrapper .swiper-slide .slider-product-item {
  height: 100%;
}
.product .product-item,
.product .slider-product-item, .product-list .product-item,
.product-list .slider-product-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
  background: #FFFFFF;
  overflow-x: hidden;
}
.product .product-item.centered,
.product .slider-product-item.centered, .product-list .product-item.centered,
.product-list .slider-product-item.centered {
  text-align: center;
}
.product .product-item.right,
.product .slider-product-item.right, .product-list .product-item.right,
.product-list .slider-product-item.right {
  text-align: right;
}
.product .product-item .product-details,
.product .slider-product-item .product-details, .product-list .product-item .product-details,
.product-list .slider-product-item .product-details {
  height: 100%;
  padding: 20px;
  font-size: 12px;
}
.product .product-item .product-details .product-info .product-name,
.product .slider-product-item .product-details .product-info .product-name, .product-list .product-item .product-details .product-info .product-name,
.product-list .slider-product-item .product-details .product-info .product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product .product-item .product-details .product-info .product-name a,
.product .slider-product-item .product-details .product-info .product-name a, .product-list .product-item .product-details .product-info .product-name a,
.product-list .slider-product-item .product-details .product-info .product-name a {
  color: #000000;
}
.product .product-item .product-details .product-info .product-code,
.product .slider-product-item .product-details .product-info .product-code, .product-list .product-item .product-details .product-info .product-code,
.product-list .slider-product-item .product-details .product-info .product-code {
  font-weight: 400;
}
.product .product-item .product-details .product-info .product-code .label,
.product .slider-product-item .product-details .product-info .product-code .label, .product-list .product-item .product-details .product-info .product-code .label,
.product-list .slider-product-item .product-details .product-info .product-code .label {
  margin-right: 10px;
}
.product .product-item .product-details .product-info .product-code .value,
.product .slider-product-item .product-details .product-info .product-code .value, .product-list .product-item .product-details .product-info .product-code .value,
.product-list .slider-product-item .product-details .product-info .product-code .value {
  font-weight: 700;
}
.product .product-item .product-details .product-info .product-webshorts,
.product .slider-product-item .product-details .product-info .product-webshorts, .product-list .product-item .product-details .product-info .product-webshorts,
.product-list .slider-product-item .product-details .product-info .product-webshorts {
  margin-top: 4px;
}
.product .product-item .product-details .product-action,
.product .slider-product-item .product-details .product-action, .product-list .product-item .product-details .product-action,
.product-list .slider-product-item .product-details .product-action {
  height: 100%;
}
.product .product-item .product-details .product-action .button,
.product .slider-product-item .product-details .product-action .button, .product-list .product-item .product-details .product-action .button,
.product-list .slider-product-item .product-details .product-action .button {
  width: 100%;
}
.product .product-item .display-price-wrapper,
.product .slider-product-item .display-price-wrapper, .product-list .product-item .display-price-wrapper,
.product-list .slider-product-item .display-price-wrapper {
  margin: 10px 0px;
}
.product .product-item .display-price-wrapper .display-price,
.product .slider-product-item .display-price-wrapper .display-price, .product-list .product-item .display-price-wrapper .display-price,
.product-list .slider-product-item .display-price-wrapper .display-price {
  font-weight: 700;
  font-size: 18px;
}
.product .product-item .display-price-wrapper .compare-to-price,
.product .slider-product-item .display-price-wrapper .compare-to-price, .product-list .product-item .display-price-wrapper .compare-to-price,
.product-list .slider-product-item .display-price-wrapper .compare-to-price {
  margin-left: 10px;
  text-decoration: line-through;
}
.product .product-item .display-price-wrapper .compare-to-price-text,
.product .slider-product-item .display-price-wrapper .compare-to-price-text, .product-list .product-item .display-price-wrapper .compare-to-price-text,
.product-list .slider-product-item .display-price-wrapper .compare-to-price-text {
  margin-left: 10px;
}
.product .product-item .on-sale-badge,
.product .slider-product-item .on-sale-badge, .product-list .product-item .on-sale-badge,
.product-list .slider-product-item .on-sale-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 3px;
  background: #FFFFFF;
  padding: 3px 7px;
}
.product .tiles-box-shadow, .product-list .tiles-box-shadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 420px) {
  .product-list .two_items,
  .product-list .three_items,
  .product-list .four_items,
  .product-list .five_items,
  .product-list .six_items {
    width: 47.5% !important;
    margin-right: 2.5% !important;
  }
}
@media screen and (min-width: 580px) {
  .product-list .three_items {
    width: 47.5% !important;
    margin-right: 2.5% !important;
  }
  .product-list .four_items {
    width: 47.5% !important;
    margin-right: 2.5% !important;
  }
}
@media screen and (min-width: 600px) {
  .product-list .four_items {
    width: 31.6666666667% !important;
    margin-right: 1.6666666667% !important;
  }
  .product-list .five_items {
    width: 31.6666666667% !important;
    margin-right: 1.6666666667% !important;
  }
  .product-list .six_items {
    width: 31.6666666667% !important;
    margin-right: 1.6666666667% !important;
  }
}
@media screen and (min-width: 650px) {
  .product-list .three_items {
    width: 31.6666666667% !important;
    margin-right: 1.6666666667% !important;
  }
}
@media screen and (min-width: 720px) {
  .product-list .four_items {
    width: 23.75% !important;
    margin-right: 1.25% !important;
  }
  .product-list .five_items {
    width: 23.75% !important;
    margin-right: 1.25% !important;
  }
  .product-list .six_items {
    width: 23.75% !important;
    margin-right: 1.25% !important;
  }
}
@media screen and (min-width: 880px) {
  .product-list .five_items {
    width: 19% !important;
    margin-right: 1% !important;
  }
  .product-list .six_items {
    width: 19% !important;
    margin-right: 1% !important;
  }
}
@media screen and (min-width: 920px) {
  .product-list .six_items {
    width: 15.8333333333% !important;
    margin-right: 0.8333333333% !important;
  }
}
@media screen and (min-width: 768px) {
  /* Items per row specific styles */
  .product-list .product-item.list {
    -o-flex-direction: row;
    -ms-flex-direction: row;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  .product-list .product-item.list .button-wrapper a {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  /* Items per row specific styles */
  .product-list .product-item.list .product-image, .product-list .product-item.list .product-details {
    width: 100%;
  }
}
.content-wrapper {
  height: 100%;
  width: calc(100% - var(--panel-options-width) - var(--panel-width) * 2);
}
.content-wrapper.no-panel {
  width: calc(100% - var(--panel-options-width) - var(--panel-width));
}
.content-wrapper .content {
  height: 100%;
  overflow: auto;
  background: #FFFFFF;
  max-width: calc(100vw - var(--panel-options-width) - var(--panel-width) * 2);
}
.content-wrapper .content.no-panel {
  max-width: calc(100vw - var(--panel-options-width) - var(--panel-width));
}
.content-wrapper .content.desktop {
  width: var(--desktop-width);
}
.content-wrapper .content.laptop {
  width: var(--laptop-width);
}
.content-wrapper .content.tablet {
  width: var(--tablet-width);
}
.content-wrapper .content.mobile {
  width: var(--mobile-width);
}
.content-wrapper .content .root-content {
  width: inherit;
  height: inherit;
}
.content-wrapper .content .root-droppable {
  width: 100%;
  height: 100%;
}
.content-wrapper .content .position-indicator-wrapper {
  position: relative;
}
.content-wrapper .content .position-indicator-wrapper.horizontal {
  width: 100%;
  height: 0;
}
.content-wrapper .content .position-indicator-wrapper.vertical {
  width: 0;
  height: inherit;
}
.content-wrapper .content .position-indicator-wrapper .position-indicator {
  border: 2px dashed var(--app-color-scheme);
  position: absolute;
  z-index: var(--z-index-medium);
}
.content-wrapper .content .position-indicator-wrapper .position-indicator.horizontal {
  width: 100%;
  height: 0;
  top: -1px;
  left: 0;
}
.content-wrapper .content .position-indicator-wrapper .position-indicator.vertical {
  width: 0;
  height: 100%;
  top: 0;
  left: -1px;
}
.content-wrapper .content-block {
  border: 1px solid transparent;
}
.content-wrapper .content-block.hovered {
  border: 2px solid rgb(from var(--app-color-scheme) r g b/0.7);
  position: relative;
}
.content-wrapper .content-block.selected {
  border: 2px solid var(--app-color-scheme);
  position: relative;
}
.content-wrapper .content-block.over-block {
  background: rgb(from var(--app-color-scheme) r g b/0.2) !important;
}
.content-wrapper .content-block .block-placeholder-wrapper {
  position: absolute;
  inset: 0;
  background-color: transparent !important;
  z-index: var(--z-index-medium);
}
.content-wrapper .content-block .image-placeholder-wrapper {
  padding: 15px 0;
  color: #000000;
}
.content-wrapper .content-block .block-placeholder-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.content-wrapper .content-block .block-placeholder {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
  text-transform: var(--text-transform);
  color: var(--text-color);
  background: var(--background-color);
  padding: 5px 10px;
  border-radius: var(--border-radius);
}
.content-wrapper .content-block .block-overlay {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.content-wrapper .content-block .block-content-wrapper {
  min-height: inherit;
  max-width: 100%;
  height: 100%;
}
.content-wrapper .content-block .block-content-wrapper.no-items {
  width: 100%;
}
.content-wrapper .content-block .block-content-wrapper .block-content {
  min-height: inherit;
  max-width: inherit;
  position: relative;
  height: 100%;
}
.content-wrapper .content-block .swiper .swiper-button-prev, .content-wrapper .content-block .swiper .swiper-button-next {
  color: var(--color-scheme);
  font-weight: 300;
}
.content-wrapper .content-block .swiper .swiper-button-prev:after {
  font-size: 44px;
  font-family: var(--icons-font);
  content: "\f104";
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.content-wrapper .content-block .swiper .swiper-button-next:after {
  font-size: 44px;
  font-family: var(--icons-font);
  content: "\f105";
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.content-wrapper .content-block .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-scheme);
}
.content-wrapper .content-block .swiper .swiper-scrollbar {
  background: rgb(from var(--color-scheme) r g b/0.3);
}
.content-wrapper .content-block .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-scheme);
  cursor: grab;
}
.content-wrapper .content-block .swiper .swiper-wrapper .swiper-slide {
  box-sizing: border-box;
}
.content-wrapper .content-block .text-editor-content {
  font-family: inherit;
  text-decoration-color: inherit;
}
.content-wrapper .content-block .text-editor-content .tiptap {
  font-family: inherit;
  text-decoration-color: inherit;
}
.content-wrapper .content-block .text-editor-content .tiptap * {
  font-family: inherit;
  text-decoration-color: inherit;
}
.content-wrapper .text-input-editor {
  outline: none;
}
.content-wrapper .text-input-editor * {
  display: inline;
}
.content-wrapper .content-footer-wrapper {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding: 0 5px;
  overflow-x: auto;
  overflow-y: hidden;
}
.content-wrapper .content-footer-wrapper .content-footer {
  width: 100%;
  height: 40px;
}
.content-wrapper .content-footer-wrapper .content-footer .breadcrumb-wrapper {
  margin-right: 5px;
  font-size: 12px;
  color: var(--text-color);
}
.content-wrapper .content-footer-wrapper .content-footer .breadcrumb-wrapper .breadcrumb {
  margin-right: 5px;
  padding: 5px;
  border-radius: var(--border-radius);
  cursor: pointer;
}
.content-wrapper .content-footer-wrapper .content-footer .breadcrumb-wrapper .breadcrumb.selected {
  background-color: var(--color-scheme);
  color: #FFFFFF;
}
.content-wrapper .tooltip-overlay {
  position: fixed;
  height: 55px;
  z-index: var(--z-index-medium);
  padding: 10px 0;
}
.content-wrapper .tooltip-overlay .tooltip-wrapper {
  border: 1px solid var(--color-scheme);
  background-color: var(--raw-background-color);
  position: relative;
}
.content-wrapper .tooltip-overlay .tooltip-wrapper.top {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-top: 0;
}
.content-wrapper .tooltip-overlay .tooltip-wrapper.bottom {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  border-bottom: 0;
}
.content-wrapper .tooltip-overlay .tooltip-wrapper .tooltip {
  border-radius: var(--border-radius);
  cursor: grab;
  padding: 0px 10px;
}
.content-wrapper .tooltip-overlay .tooltip-wrapper .tooltip.not-draggable {
  cursor: default;
}
.content-wrapper .tooltip-overlay .tooltip-wrapper .tooltip .tooltip-handle {
  font-size: 20px;
  cursor: grab;
  margin-right: 5px;
  color: var(--text-color);
}
.content-wrapper .tooltip-overlay .tooltip-wrapper .tooltip .tooltip-title {
  height: 30px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}
.content-wrapper .tooltip-overlay .tooltip-wrapper .tooltip-vertical-divider {
  width: 1px;
  height: 70%;
  background-color: var(--secondary-text-color);
}
.content-wrapper .tooltip-overlay .tooltip-wrapper .tooltip-actions {
  height: 30px;
  border-radius: var(--border-radius);
  margin: 0 5px;
}
.content-wrapper .tooltip-overlay .tooltip-wrapper .tooltip-actions .tooltip-action {
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius);
  font-size: 16px;
  color: var(--text-color);
}

.block-library-modal .block-library-modal-block {
  width: 25%;
  padding: 20px;
  border: 1px solid;
  border-radius: var(--border-radius);
  border-color: var(--border-color);
  background: var(--raw-background-color);
}
.block-library-modal .block-library-modal-block .block-library-modal-block-icon {
  font-size: 25px;
  color: var(--color-scheme);
}
.block-library-modal .block-library-modal-block .block-library-modal-block-title {
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
  line-height: 12px;
}

.builder-wrapper {
  --header-height: 45px;
  --panel-width: 250px;
  --panel-options-width: 51px;
  --desktop-width: 100%;
  --laptop-width: 990px;
  --tablet-width: 768px;
  --mobile-width: 480px;
  height: 100vh;
}
.builder-wrapper .body-wrapper {
  height: calc(100% - var(--header-height));
  width: 100%;
}

.block {
  max-width: 150px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: var(--raw-background-color);
  padding: 10px;
  color: var(--text-color);
  cursor: pointer;
}
.block.disabled {
  background-color: var(--disabled-color);
}
.block .block-icon {
  font-size: 25px;
  color: var(--color-scheme);
}
.block .block-title {
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
  line-height: 12px;
}

.initial-loader-wrapper {
  width: 100%;
  height: 100vh;
  background-color: var(--background-color);
}
.initial-loader-wrapper .initial-loader-content-wrapper {
  padding-top: 40vh;
}
.initial-loader-wrapper .initial-loader-content-wrapper .loading-logo {
  margin-bottom: 30px;
}
.initial-loader-wrapper .initial-loader-content-wrapper .loader-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--text-color);
}

.home-content {
  padding: 50px;
}
.home-content .input-box.error {
  border-color: var(--red);
}
.home-content .input-box:focus {
  border-color: var(--color-scheme);
}

.director-content-wrapper {
  height: calc(100vh - var(--header-height));
  overflow-y: scroll;
}
.director-content-wrapper .director-content {
  padding: 50px;
}
.director-content-wrapper .director-content .tiles-wrapper {
  gap: 10px;
}

.migration-wrapper {
  height: 100vh;
  width: 100%;
  background: #F7F7F7;
}
.migration-wrapper .migration-header {
  height: 100px;
  width: 100%;
  background: #FFFFFF;
}
.migration-wrapper .migration-header .migration-logo {
  height: 25px;
}
.migration-wrapper .migration-header .migration-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.migration-wrapper .migration-content-wrapper {
  width: 100%;
  height: calc(100vh - 100px);
  padding: 50px 0;
}
.migration-wrapper .migration-content-wrapper .migration-content {
  width: 80%;
  height: 100%;
  background: #FFFFFF;
  padding: 30px 40px;
  overflow-y: auto;
  border-radius: var(--border-radius);
}
.migration-wrapper .migration-content-wrapper .migration-content .migration-content-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}
.migration-wrapper .migration-content-wrapper .migration-content .migration-content-subtitle {
  font-size: 14px;
  color: var(--secondary-text-color);
}
.migration-wrapper .migration-content-wrapper .migration-content .entity-group-title {
  font-size: 14px;
  color: var(--secondary-text-color);
}
.migration-wrapper .migration-content-wrapper .migration-content .entity-group-title.migrated {
  color: var(--green);
}
.migration-wrapper .migration-content-wrapper .migration-content .entity-group-success-icon {
  font-size: 18px;
  color: var(--green);
  margin-left: 5px;
}
.migration-wrapper .migration-content-wrapper .migration-content .migrating-entity-title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0;
  color: var(--text-color);
}
.migration-wrapper .migration-content-wrapper .migration-content .migrating-entity-step {
  font-size: 14px;
  color: var(--text-color);
}
.migration-wrapper .migration-content-wrapper .migration-content .migration-success-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
}
.migration-wrapper .migration-content-wrapper .migration-content .migration-error-entity {
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  text-align: center;
}
.migration-wrapper .migration-content-wrapper .migration-content .migration-error-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  text-align: center;
}

.page-404 {
  min-height: 100vh;
  background: #F7F7F7;
}
.page-404 .frame {
  width: 80%;
  background: #FFFFFF;
  padding: 40px;
  color: #555555;
  font-optical-sizing: auto;
  text-align: center;
}
.page-404 .frame .logo img {
  height: 100px;
  object-fit: contain;
}
.page-404 .frame .image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.page-404 .frame .headline {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 30px;
}
.page-404 .frame .subtitle {
  font-size: 19px;
  font-weight: 300;
  line-height: 25px;
  color: #861A64;
  margin-bottom: 10px;
}
