*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root {
  --color-white: #fff;
  --color-main-back: #f8f8f8;
  --color-logo: #3e4096;
  --color-primary: #fe3838;
  --color-primary-hover: #E72A2A;
  --color-primary-rgb: 254, 56, 56;
  --color-secondary-rgb: 26, 50, 62;
  --color-secondary: #1a323e;
  --color-accent: #b07f09;
  --color-menu-active: #b07f09;
  --color-icons: #171717;
  --color-muted: #efe7ec;
  --color-bg-disable: #e0e0e0;
  --color-disable: #757575;
  --color-success: #0d792b;
  --color-success-rgb: 13,121,43;
  --color-border: #d9d9d9;
  --color-menu: #9e9e9e;
  --color-heading: #171717;
  --color-text: #474749;
  --color-text-disable: #969696;
  --color-text-card: #666666;
  --color-error: #CF0A0A;
  --color-campaign-bg: #1a323e;
  --color-campaign-progress: #fe3838;
  --color-campaign-icons: #f8f8f8;
  --alpha-15: .15;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 63.8em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
  background-color: var(--color-main-back);
}
body a:link, body a:visited {
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}

@keyframes error {
  0% {
    transform: translateX(-5px);
  }
  10% {
    transform: translateX(5px);
  }
  20% {
    transform: translateX(-4px);
  }
  30% {
    transform: translateX(4px);
  }
  40% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-2px);
  }
  70% {
    transform: translateX(2px);
  }
  80% {
    transform: translateX(-1px);
  }
  90% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes message-in {
  0% {
    transform: translateY(-10rem);
    opacity: 0;
  }
  90% {
    transform: translateY(0.5rem);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  /* color: $color-grey; */
}

p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--color-text);
  margin-top: 2.4rem;
}

.accent {
  color: var(--color-accent);
  font-size: 3.6rem;
  line-height: 4.4rem;
  margin: 2.4rem 0;
}

.heading-h2 {
  font-size: 3.6rem;
  line-height: 4.4rem;
  font-weight: 600;
  color: var(--color-heading);
  padding-bottom: 1.6rem;
}

.divider {
  border-bottom: 1px solid var(--color-muted);
}

.heading-h3 {
  color: var(--color-heading);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 3.2rem;
}

.heading-h4 {
  color: var(--color-heading);
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  line-height: 4.4rem;
}

.f-white {
  color: var(--color-white);
}

.f-secondary {
  color: var(--color-secondary);
}

.btn__donate {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: normal;
  height: 6.4rem;
  width: 18rem;
  text-align: center;
  border-radius: 50px;
  color: var(--color-white);
  padding: 1.6rem 3.6rem;
  transition: all 0.1s;
}
.btn__donate:link, .btn__donate:visited {
  background-color: var(--color-primary);
  text-decoration: none;
}
.btn__donate:hover {
  background-color: var(--color-primary-hover);
  text-decoration: none;
}
.btn__donate:active {
  background-color: var(--color-primary-hover);
  transform: translateY(2px);
}
@media only screen and (max-width: 75em) {
  .btn__donate {
    width: 15rem;
    padding: 1.6rem 1.6rem;
  }
}

.btn__secondary {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: normal;
  height: 6rem;
  min-width: 18rem;
  text-align: center;
  border-radius: 50px;
  color: var(--color-white);
  padding: 1.6rem 3.6rem;
  transition: all 0.1s;
  border: none;
  background-color: var(--color-secondary);
}
.btn__secondary:link, .btn__secondary:visited {
  background-color: var(--color-secondary);
  text-decoration: none;
}
.btn__secondary:hover {
  background-color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
}
.btn__secondary:active {
  background-color: var(--color-primary);
  transform: translateY(2px);
}

.btn__light-primary {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: normal;
  height: 6rem;
  min-width: 18rem;
  text-align: center;
  border-radius: 50px;
  padding: 1.6rem 3.6rem;
  transition: all 0.1s;
}
.btn__light-primary:link, .btn__light-primary:visited {
  color: var(--color-primary);
  background-color: var(--color-white);
  text-decoration: none;
}
.btn__light-primary:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  text-decoration: none;
}
.btn__light-primary:active {
  color: var(--color-white);
  background-color: var(--color-primary);
  transform: translateY(2px);
}

.btn__light-secondary {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: normal;
  height: 6rem;
  min-width: 18rem;
  text-align: center;
  border-radius: 50px;
  padding: 1.6rem 3.6rem;
  transition: all 0.1s;
}
.btn__light-secondary:link, .btn__light-secondary:visited {
  color: var(--color-secondary);
  background-color: var(--color-white);
  text-decoration: none;
}
.btn__light-secondary:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  text-decoration: none;
}
.btn__light-secondary:active {
  color: var(--color-white);
  background-color: var(--color-primary);
  transform: translateY(2px);
}

.btn__currency {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: normal;
  height: 5.6rem;
  min-width: 24rem;
  text-align: center;
  border-radius: 50px;
  border: none;
  padding: 1.6rem 3.6rem;
  transition: all 0.1s;
  margin: 0.8rem;
  cursor: pointer;
  color: var(--color-disable);
  background-color: var(--color-bg-disable);
}
.btn__currency:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  text-decoration: none;
}
.btn__currency:active {
  color: var(--color-white);
  background-color: var(--color-secondary);
  transform: translateY(2px);
}
.btn__currency--active {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.btn__outline {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: normal;
  height: 5.6rem;
  min-width: 12rem;
  border-radius: 50px;
  border: 1px solid var(--color-secondary);
  padding: 1.6rem 2rem;
  transition: all 0.1s;
  margin: 0.4rem;
  cursor: pointer;
  color: var(--color-secondary);
  background-color: transparent;
  text-decoration: none;
}
@media only screen and (max-width: 37.5em) {
  .btn__outline {
    min-width: 20rem;
  }
}
.btn__outline .text {
  padding-top: 0.2rem;
}
.btn__outline:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  text-decoration: none;
}
.btn__outline:active {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  text-decoration: none;
  transform: translateY(2px);
}
.btn__outline .icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: var(--color-secondary);
}
.btn__outline .icon__left {
  margin-right: 0.8rem;
}
.btn__outline .icon__right {
  margin-left: 0.8rem;
}
.btn__outline:hover .icon {
  fill: var(--color-white);
}
.btn__outline--active, .btn__outline--active:hover {
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  background-color: var(--color-primary);
  cursor: auto;
}
.btn__outline--card {
  width: 23rem;
  height: 4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  justify-content: center;
}
.btn__outline span {
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.btn__back {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: normal;
  height: 4.6rem;
  min-width: 10rem;
  border-radius: 0.8rem;
  border: none;
  transition: all 0.1s;
  margin-right: 2.4rem;
  cursor: pointer;
  color: var(--color-text);
  background-color: var(--color-white);
}
.btn__back .text {
  padding-top: 0.2rem;
  padding-right: 0.2rem;
}
.btn__back:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  text-decoration: none;
}
.btn__back:active {
  color: var(--color-white);
  background-color: var(--color-secondary);
  text-decoration: none;
  transform: translateY(2px);
}
.btn__back .icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: var(--color-text);
  margin-right: 0.6rem;
}
.btn__back:hover .icon {
  fill: var(--color-white);
}

.btn-map__group {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .btn-map__group {
    flex-direction: column;
    width: 50vw;
    margin: 0 auto 2rem auto;
  }
}
.btn-map__label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: normal;
  height: 5.6rem;
  min-width: 24rem;
  border-radius: 50px;
  border: none;
  padding: 1.6rem 3.6rem;
  margin: 0.8rem;
  cursor: pointer;
  color: var(--color-disable);
  background-color: var(--color-bg-disable);
  transition: all 0.1s;
}
.btn-map__label:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  text-decoration: none;
}
.btn-map__label:active {
  color: var(--color-white);
  background-color: var(--color-secondary);
  transform: translateY(2px);
}
.btn-map__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.btn-map__radio:checked + .btn-map__label {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.btn__cancel {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--color-secondary);
}
.btn__cancel:link, .btn__cancel:visited {
  color: var(--color-secondary);
}
.btn__cancel:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.btn__cancel:active {
  color: var(--color-primary);
  text-decoration: underline;
}

.btn__pagination {
  background-color: var(--color-secondary);
  height: 2.4rem;
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 63.8em) {
  .btn__pagination {
    height: 3.2rem;
    width: 6.5rem;
  }
}
.btn__pagination--left {
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  margin-right: 1px;
}
.btn__pagination--right {
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
}
.btn__pagination--icon {
  fill: var(--color-white);
  width: 0.8rem;
  height: 0.8rem;
}
@media only screen and (max-width: 63.8em) {
  .btn__pagination--icon {
    height: 1.6rem;
    width: 1.6rem;
  }
}
.btn__pagination:hover {
  background-color: var(--color-primary);
}
.btn__pagination:active {
  background-color: var(--color-primary);
  transform: translateY(1px);
}
.btn__pagination--disable {
  background-color: var(--color-bg-disable);
  cursor: default;
}
.btn__pagination--disable:hover {
  background-color: var(--color-bg-disable);
}
.btn__pagination--disable:active {
  background-color: var(--color-bg-disable);
}

.category-container {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 1.8rem;
  container-type: inline-size;
}

.category__list {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}
@media only screen and (max-width: 63.8em) {
  .category__list {
    width: 95%;
  }
}
@media only screen and (max-width: 37.5em) {
  .category__list {
    width: 90%;
  }
}
@container (width >= calc(12.5rem * 2 + 1.8rem)) {
  .category__list .category__card {
    grid-column-end: span 2;
  }
}
@container (calc(12.5rem * 4 + 5.4rem) < width <= calc(12.5rem * 6 + 9rem)) {
  .category__list .category__card:last-child:nth-child(3) {
    grid-column: 2/span 2;
  }
}
@container (calc(12.5rem * 6 + 9rem) < width <= calc(12.5rem * 8 + 12.6rem)) {
  .category__list .category__card:last-child:nth-child(4) {
    grid-column: 3/5;
  }
}
.category__card {
  padding: 1.8rem;
  border: 1px solid var(--color-border);
  border-radius: 0.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.category__card:hover {
  border: 1px solid var(--color-secondary);
}
.category__card--preselected {
  width: 100%;
  margin: 0;
}
.category__card--preselected:hover {
  border: 1px solid var(--color-border);
}
@media only screen and (max-width: 63.8em) {
  .category__card--preselected {
    min-height: 12rem;
    margin: 0;
  }
  .category__card--preselected:last-child {
    margin: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .category__card--preselected {
    width: 95%;
    min-height: 12rem;
    margin-bottom: 0;
    margin-right: 0;
  }
}
.category__card--error {
  border-color: var(--color-error);
}
.category__card--selected {
  border: 1px solid var(--color-secondary);
}
.category__card--selected .btn__outline--active {
  cursor: default;
  border: 1px solid var(--color-secondary);
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.category__card--selected .btn__outline--active:active {
  transform: translateY(0);
}
.category__button {
  flex-grow: 1;
  align-content: flex-end;
}
.category__button .btn__outline--card {
  width: fit-content;
}
.category__type {
  font-size: 1.9rem;
  line-height: 1.5;
}
.category__type--selected {
  font-size: 1.4rem;
  line-height: 1.2;
  position: relative;
  margin-bottom: 1rem;
  margin-left: -1.8rem;
}
.category__type--selected::before {
  content: "+";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  top: -0.1rem;
  left: -1.8rem;
  background-color: var(--color-text);
  mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNSAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuMSwxMy45bDUtNi43bDAsMGMwLjQtMC42LDEuMy0wLjcsMS45LTAuM3MwLjcsMS4zLDAuMywxLjlsLTYuMSw4Yy0wLjMsMC4zLTAuNiwwLjUtMS4xLDAuNQoJYy0wLjQsMC0wLjgtMC4yLTEuMS0wLjVsLTMuMi00LjFjLTAuNS0wLjYtMC4zLTEuNCwwLjItMS45YzAuNi0wLjUsMS40LTAuMywxLjksMC4yTDExLjEsMTMuOXoiLz4KPC9zdmc+");
  -webkit-mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNSAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuMSwxMy45bDUtNi43bDAsMGMwLjQtMC42LDEuMy0wLjcsMS45LTAuM3MwLjcsMS4zLDAuMywxLjlsLTYuMSw4Yy0wLjMsMC4zLTAuNiwwLjUtMS4xLDAuNQoJYy0wLjQsMC0wLjgtMC4yLTEuMS0wLjVsLTMuMi00LjFjLTAuNS0wLjYtMC4zLTEuNCwwLjItMS45YzAuNi0wLjUsMS40LTAuMywxLjksMC4yTDExLjEsMTMuOXoiLz4KPC9zdmc+");
}
.category__subcategory {
  font-size: 1.9rem;
}
.category__description {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--color-text-card);
  margin: 1rem 0 1rem 0;
}
.category__error {
  color: var(--color-error);
  margin-top: 0;
  margin-bottom: 1.8rem;
  text-align: center;
  animation-name: error;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

.membership__type {
  color: var(--color-text-card);
  font-size: 1.9rem;
  line-height: 1.5;
}
.membership__description {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 1rem 0 1rem 0;
}

.donations {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.donations__currency {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.donations__currency-select {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: normal;
  height: 5.6rem;
  min-width: 26rem;
  text-align: center;
  border-radius: 50px;
  border: none;
  padding: 1.6rem 4.2rem 1.6rem 3.6rem;
  transition: all 0.1s;
  margin: 0.8rem;
  cursor: pointer;
  color: var(--color-white);
  background-color: var(--color-secondary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-size: 2.4rem 2.4rem;
  background-image: url(/../assets/dropdown-white.svg);
  background-position: right 1.75rem center;
}
.donations__currency-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-secondary-rgb), 0.25);
}
.donations__currency-select:focus-visible {
  outline: none;
}

.donations__variants, .btn__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.8rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.73);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circle-loader {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.circle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 30px;
  background-color: var(--color-secondary);
  border-radius: 10px;
  transform-origin: center -30px;
  animation: fade 1.2s infinite ease-in-out;
}

.circle-line:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.circle-line:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.circle-line:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.circle-line:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.circle-line:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.circle-line:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.circle-line:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.circle-line:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.circle-line:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.circle-line:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.circle-line:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.circle-line:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes fade {
  0%, 39%, 100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}
.overlay p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}

.hide {
  display: none;
}

#payer-account-number::placeholder, #payer-bank-code::placeholder {
  color: lightgrey;
}

.campaign__card .donations {
  gap: 1.6rem;
  background-color: var(--color-campaign-bg);
}
.campaign__card .donations .donations__currency {
  margin-bottom: 0;
}
.campaign__card .donations .donations__currency-select {
  border: 1px solid var(--color-main-back);
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
  min-width: 18rem;
  height: 3.6rem;
  margin: 0;
}
.campaign__card .donations .btn__outline {
  border-color: var(--color-main-back);
  color: var(--color-main-back);
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.8rem;
  min-width: 8rem;
  height: 3.6rem;
}
.campaign__card .donations .btn__outline:hover {
  background-color: var(--color-main-back);
  color: var(--color-secondary);
}
.campaign__card .donations .btn__outline--active, .campaign__card .donations .btn__outline--active:hover {
  border: 1px solid var(--color-campaign-progress);
  color: var(--color-white);
  background-color: var(--color-campaign-progress);
  cursor: auto;
}
.campaign__card .donations .donations__variants {
  margin-top: 0;
}

.crowdfundings {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.crowdfundings__currency {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.crowdfundings__currency-select {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: normal;
  height: 5.6rem;
  min-width: 26rem;
  text-align: center;
  border-radius: 50px;
  border: none;
  padding: 1.6rem 4.2rem 1.6rem 3.6rem;
  transition: all 0.1s;
  margin: 0.8rem;
  cursor: pointer;
  color: var(--color-white);
  background-color: var(--color-secondary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-size: 2.4rem 2.4rem;
  background-image: url(/../assets/dropdown-white.svg);
  background-position: right 1.75rem center;
}
.crowdfundings__currency-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-secondary-rgb), 0.25);
}
.crowdfundings__currency-select:focus-visible {
  outline: none;
}

.dcrowdfundings__variants, .btn__group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.8rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.73);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circle-loader {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.circle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 30px;
  background-color: var(--color-secondary);
  border-radius: 10px;
  transform-origin: center -30px;
  animation: fade 1.2s infinite ease-in-out;
}

.circle-line:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.circle-line:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.circle-line:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.circle-line:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.circle-line:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.circle-line:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.circle-line:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.circle-line:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.circle-line:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.circle-line:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.circle-line:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.circle-line:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes fade {
  0%, 39%, 100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}
.overlay p {
  color: #fff;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}

.hide {
  display: none;
}

#payer-account-number::placeholder, #payer-bank-code::placeholder {
  color: lightgrey;
}

.campaign__card .crowdfundings {
  gap: 1.6rem;
  margin-block: auto;
}
.campaign__card .crowdfundings .crowdfundings__currency {
  margin-bottom: 0;
}
.campaign__card .crowdfundings .crowdfundings__currency-select {
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
  min-width: 18rem;
  height: 3.6rem;
  margin: 0;
}
.campaign__card .crowdfundings .btn__outline {
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0.8rem;
  min-width: 10rem;
  height: 3.6rem;
}
.campaign__card .crowdfundings .btn__outline--active, .campaign__card .crowdfundings .btn__outline--active:hover {
  cursor: auto;
}
.campaign__card .crowdfundings .donations__variants {
  margin-top: 0;
}
.events {
  position: relative;
  padding-top: 4rem;
  height: 55rem;
  text-align: center;
}
@media only screen and (max-width: 63.8em) {
  .events {
    height: 65rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .events {
    height: 93rem;
    padding-bottom: 3rem;
  }
}
.events .event {
  min-height: 30rem;
  width: 80vw;
  border-radius: 4rem;
  background-color: var(--color-secondary);
  overflow: hidden;
  position: absolute;
  top: 13rem;
  left: 10vw;
  display: grid;
  color: var(--color-white);
  text-align: left;
  grid-template-rows: [header-start] 1fr [header-end description-start] minmax(min-content, 1fr) [description-end date-start] min-content [date-end place-start] min-content [place-end];
  grid-template-columns: [full-start] 1fr [img-end info-start] 1fr [info-end-end button-start] 1fr [full-end];
}
@media only screen and (max-width: 63.8em) {
  .events .event {
    width: 90vw;
    left: 5vw;
    grid-template-rows: [header-start] 1fr [header-end description-start] 1fr [description-end date-start] min-content [date-end place-start] min-content [place-end button-start] 1fr [button-end];
    grid-template-columns: [full-start] 1fr [img-end info-start] 1fr [full-end];
  }
}
@media only screen and (max-width: 37.5em) {
  .events .event {
    width: 90vw;
    left: 5vw;
    grid-template-rows: [img-start] 30rem [img-end header-start] 1fr [header-end description-start] 1fr [description-end date-start] min-content [date-end place-start] min-content [place-end button-start] 1fr [button-end];
    grid-template-columns: [full-start] 1fr [full-end];
  }
}
.events .event__image {
  grid-column: full-start/img-end;
  grid-row: header-start/button-end;
  background-image: url(/../assets/event1.jpg);
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 37.5em) {
  .events .event__image {
    grid-column: full-start/full-end;
    grid-row: img-start/img-end;
  }
}
.events .event__title {
  grid-column: info-start/info-end;
  grid-row: header-start/header-end;
  margin-top: 5rem;
  margin-left: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .events .event__title {
    grid-column: full-start/full-end;
    grid-row: header-start/header-end;
  }
}
.events .event__description {
  grid-column: info-start/info-end;
  grid-row: description-start/description-end;
  overflow: hidden;
  margin: auto 0 auto 4rem;
  font-size: 1.9rem;
  line-height: 2.8rem;
}
@media only screen and (max-width: 63.8em) {
  .events .event__description {
    margin: auto 4rem auto 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .events .event__description {
    grid-column: full-start/full-end;
    grid-row: description-start/description-end;
    margin: auto 4rem auto 4rem;
  }
}
.events .event__date {
  grid-column: info-start/info-end;
  grid-row: date-start/date-end;
  margin-left: 4rem;
  font-size: 1.6rem;
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .events .event__date {
    grid-column: full-start/full-end;
    grid-row: date-start/date-end;
  }
}
.events .event__place {
  grid-column: info-start/info-end;
  grid-row: place-start/place-end;
  margin-bottom: 5rem;
  margin-left: 4rem;
  font-size: 1.6rem;
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .events .event__place {
    grid-column: full-start/full-end;
    grid-row: place-start/place-end;
    margin-bottom: 2rem;
  }
}
.events .event__button {
  grid-column: button-start/button-end;
  grid-row: header-start/place-end;
  margin: auto;
}
@media only screen and (max-width: 63.8em) {
  .events .event__button {
    grid-column: info-start/full-end;
    grid-row: button-start/button-end;
    margin-left: 4rem;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .events .event__button {
    grid-column: full-start/full-end;
    grid-row: button-start/button-end;
    margin: auto;
  }
}
.events .dots__dot {
  border: 1px solid var(--color-secondary);
}
.events .dots__dot--active {
  background-color: var(--color-secondary);
}

.message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  width: 100vw;
  min-height: 5rem;
  z-index: 20000;
}
@media only screen and (max-width: 63.8em) {
  .message {
    top: 0.5rem;
    padding: 1rem;
  }
}
.message__box {
  width: 100%;
  padding: 1rem;
  border-radius: 3px;
  background-color: rgba(136, 136, 136, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0.4rem 0.8rem rgba(13, 13, 13, 0.1);
  margin-bottom: 0.5rem;
  animation-name: message-in;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}
@media only screen and (max-width: 63.8em) {
  .message__box {
    height: 9rem;
  }
}
.message__box--error {
  background-color: rgba(207, 10, 10, 0.9);
}
.message__box--success {
  background-color: rgba(13, 121, 43, 0.9);
}
.message__icon {
  width: 2rem;
  height: 2rem;
  fill: #fff;
  margin: 0 1rem;
}
@media only screen and (max-width: 63.8em) {
  .message__icon {
    width: 3rem;
    height: 3rem;
  }
}
.message__text {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  margin: 0.5rem 1rem;
  max-width: 80%;
}
@media only screen and (max-width: 63.8em) {
  .message__text {
    font-size: 2rem;
  }
}
.message__close-btn {
  height: 2rem;
  transition: all 0.2s;
}
@media only screen and (max-width: 63.8em) {
  .message__close-btn {
    height: 3rem;
  }
}
.message__close-btn:hover {
  transform: scale(1.1);
}
.message__close-btn:active {
  transform: scale(0.9);
}

.header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  padding: 3rem 5rem;
  background-color: #fff;
  box-shadow: 0 0.4rem 0.8rem rgba(13, 13, 13, 0.05);
  z-index: 10;
  position: relative;
}
.header .header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 63.8em) {
  .header .menu {
    flex-grow: 0;
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 63.8em) {
  .header .menu__list {
    position: fixed;
    top: 0;
    height: 0;
    background: var(--color-secondary);
    opacity: 0;
    align-items: center;
    flex-direction: column;
    margin: 0;
    overflow: scroll;
    z-index: 1500;
    transition: all 0.2s;
  }
}
@media only screen and (max-width: 63.8em) {
  .header .menu__list--item {
    margin: none;
    font-size: 4rem;
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 63.8em) {
  .header .menu__list--link:link, .header .menu__list--link:visited {
    color: var(--color-white);
  }
}
@media only screen and (max-width: 63.8em) {
  .header .menu__list--link:hover {
    color: var(--color-white);
  }
}
@media only screen and (max-width: 63.8em) {
  .header .menu__list--active:link, .header .menu__list--active:visited {
    color: var(--color-accent);
  }
}
@media only screen and (max-width: 63.8em) {
  .header .menu__list--active:hover {
    color: var(--color-accent);
  }
}
.header .menu__actions {
  align-self: center;
  display: flex;
  transition: all 0.2s;
}
.header .menu__mobile--label {
  display: none;
  width: 6.4rem;
  height: 6.4rem;
  margin-left: 1rem;
  z-index: 10000;
  position: relative;
  cursor: pointer;
}
.header .menu__mobile--label:hover > ::before {
  transform: translateY(-2px);
}
.header .menu__mobile--label:hover > ::after {
  transform: translateY(2px);
}
@media only screen and (max-width: 63.8em) {
  .header .menu__mobile--label {
    display: inline-block;
  }
}
.header .menu__mobile--icon {
  position: absolute;
  display: inline-block;
  width: 4rem;
  height: 2px;
  border-radius: 1px;
  background-color: var(--color-secondary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .menu__mobile--icon::after, .header .menu__mobile--icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 4rem;
  height: 2px;
  border-radius: 1px;
  background-color: var(--color-secondary);
  top: 1rem;
  transition: all 0.2s;
}
.header .menu__mobile--icon::before {
  top: -1rem;
}
.header .menu__mobile--icon::after {
  top: 1rem;
}
.header .menu__mobile--toggle {
  display: none;
}
.header .menu__mobile--toggle:checked ~ .menu__list {
  display: flex;
  opacity: 1;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 25rem;
}
.header .menu__mobile--toggle:checked ~ .menu__mobile--label .menu__mobile--icon {
  background-color: transparent;
}
.header .menu__mobile--toggle:checked ~ .menu__mobile--label {
  position: fixed;
  top: 3rem;
  right: 5rem;
}
.header .menu__mobile--toggle:checked ~ .menu__mobile--label .menu__mobile--icon::before {
  top: 0;
  transform: rotate(135deg);
  background-color: var(--color-white);
}
.header .menu__mobile--toggle:checked ~ .menu__mobile--label .menu__mobile--icon::after {
  top: 0;
  transform: rotate(-135deg);
  background-color: var(--color-white);
}
.header .menu__mobile--toggle:checked ~ .menu__actions {
  position: fixed;
  z-index: 10000;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 37.5em) {
  .header .menu__mobile--toggle:checked ~ .menu__actions {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .header .menu__actions {
    display: none;
  }
}

.menu {
  display: flex;
  flex-grow: 3;
}
.menu__list {
  margin-left: 2.4rem;
  flex-grow: 3;
  align-self: center;
  display: flex;
  list-style: none;
}
@media only screen and (max-width: 75em) {
  .menu__list {
    margin-left: 1.6rem;
  }
}
.menu__list--item {
  font-size: 1.6rem;
  margin-right: 1.8rem;
  font-weight: bold;
  color: var(--color-menu-active);
}
@media only screen and (max-width: 75em) {
  .menu__list--item {
    margin-right: 1.4rem;
  }
}
.menu__list--link {
  font-weight: normal;
}
.menu__list--link:link, .menu__list--link:visited {
  text-decoration: none;
  color: var(--color-menu);
}
.menu__list--link:hover {
  text-decoration: underline;
  color: var(--color-accent);
}
.menu__list--active:link, .menu__list--active:visited {
  color: var(--color-accent);
}
.menu__list--active:hover {
  text-decoration: underline;
  color: var(--color-accent);
}
.menu__actions {
  align-self: center;
  display: flex;
  transition: all 0.2s;
}
.menu__mobile--label {
  display: none;
  width: 6.4rem;
  height: 6.4rem;
  margin-left: 1rem;
  z-index: 10000;
  position: relative;
  cursor: pointer;
}
.menu__mobile--label:hover > ::before {
  transform: translateY(-2px);
}
.menu__mobile--label:hover > ::after {
  transform: translateY(2px);
}
@media only screen and (max-width: 63.8em) {
  .menu__mobile--label {
    display: inline-block;
  }
}
.menu__mobile--icon {
  position: absolute;
  display: inline-block;
  width: 4rem;
  height: 2px;
  border-radius: 1px;
  background-color: var(--color-secondary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu__mobile--icon::after, .menu__mobile--icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 4rem;
  height: 2px;
  border-radius: 1px;
  background-color: var(--color-secondary);
  top: 1rem;
  transition: all 0.2s;
}
.menu__mobile--icon::before {
  top: -1rem;
}
.menu__mobile--icon::after {
  top: 1rem;
}
.menu__mobile--toggle {
  display: none;
}
.menu__mobile--toggle:checked ~ .menu__list {
  display: flex;
  opacity: 1;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 25rem;
}
.menu__mobile--toggle:checked ~ .menu__mobile--label .menu__mobile--icon {
  background-color: transparent;
}
.menu__mobile--toggle:checked ~ .menu__mobile--label {
  position: fixed;
  top: 3rem;
  right: 5rem;
}
.menu__mobile--toggle:checked ~ .menu__mobile--label .menu__mobile--icon::before {
  top: 0;
  transform: rotate(135deg);
  background-color: var(--color-white);
}
.menu__mobile--toggle:checked ~ .menu__mobile--label .menu__mobile--icon::after {
  top: 0;
  transform: rotate(-135deg);
  background-color: var(--color-white);
}
.menu__mobile--toggle:checked ~ .menu__actions {
  position: fixed;
  z-index: 10000;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 37.5em) {
  .menu__mobile--toggle:checked ~ .menu__actions {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .menu__actions {
    display: none;
  }
}

.logo {
  flex-grow: 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 63.8em) {
  .logo {
    flex-grow: 3;
  }
}
.logo__image {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: scale-down;
  margin-right: 2rem;
}
.logo__text {
  align-self: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-logo);
  line-height: 2.4rem;
  max-width: 25rem;
}
@media only screen and (min-width: 112.5em) {
  .logo__text {
    max-width: 45rem;
  }
}
@media only screen and (max-width: 75em) {
  .logo__text {
    font-size: 2.2rem;
    max-width: 20rem;
  }
}
@media only screen and (max-width: 63.8em) {
  .logo__text {
    max-width: 45rem;
  }
}
.logo:link, .logo:visited {
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
}

footer {
  padding: 9rem 5rem;
  background-color: #fff;
  display: grid;
  grid-template-rows: [menu-start] minmax(3.2rem, min-content) [menu-end divider-start] calc(2.4rem + 1px + 2.4rem) [divider-end copy-start] 2.4rem [copy-end];
  grid-template-columns: [full-start] 30.5rem [logo-end menu-start] 1fr [menu-end social-start] 24.8rem [full-end];
}
@media only screen and (max-width: 63.8em) {
  footer {
    grid-template-rows: [logo-start] minmax(3.2rem, min-content) [logo-end menu-start] min-content [menu-end divider-start] calc(3.2rem + 1px + 3.2rem) [divider-end social-start] min-content [social-end copy-start] min-content [copy-end];
    grid-template-columns: [full-start] 1fr [full-end];
  }
}
footer .logo {
  grid-column: full-start/logo-end;
  grid-row: menu-start/menu-end;
}
@media only screen and (max-width: 63.8em) {
  footer .logo {
    grid-column: full-start/full-end;
    grid-row: logo-start/logo-end;
    justify-content: center;
  }
}
footer .menu__list {
  grid-column: menu-start/full-end;
  grid-row: menu-start/menu-end;
}
@media only screen and (max-width: 63.8em) {
  footer .menu__list {
    grid-column: full-start/full-end;
    grid-row: menu-start/menu-end;
    justify-content: center;
    margin-top: 3.2rem;
    margin-left: 0;
  }
  footer .menu__list--item:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  footer .menu__list {
    flex-direction: column;
    align-items: center;
  }
  footer .menu__list--item {
    margin-right: 0;
    margin-bottom: 1.6rem;
  }
}
footer .divider {
  grid-column: full-start/full-end;
  grid-row: divider-start/divider-end;
  background-color: black;
  margin: 2.4rem 0;
  height: 1px;
}
@media only screen and (max-width: 63.8em) {
  footer .divider {
    grid-column: full-start/full-end;
    grid-row: divider-start/divider-end;
    margin: 3.2rem 0;
  }
}
footer .copyright {
  grid-column: full-start/menu-end;
  grid-row: copy-start/copy-end;
  font-size: 1.6rem;
}
@media only screen and (max-width: 63.8em) {
  footer .copyright {
    grid-column: full-start/full-end;
    grid-row: copy-start/copy-end;
    margin: 3.2rem auto;
    text-align: center;
  }
}
footer .social {
  grid-column: social-start/full-end;
  grid-row: copy-start/copy-end;
  justify-content: flex-end;
  display: flex;
  list-style: none;
}
footer .social__item:not(:last-child) {
  margin-right: 3.2rem;
}
footer .social__icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: var(--color-icons);
  transition: all 0.1s;
}
footer .social__icon:hover {
  fill: var(--color-accent);
  transform: translateY(-1px);
}
@media only screen and (max-width: 63.8em) {
  footer .social {
    grid-column: full-start/full-end;
    grid-row: social-start/social-end;
    justify-content: center;
  }
}

.social--header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.social--header .social__item {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.social--header .social__link {
  display: inline-block;
}
.social--header .social__icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: var(--color-icons);
  transition: all 0.1s;
}
.social--header .social__icon:hover {
  fill: var(--color-accent);
  transform: translateY(-1px);
}

.menu__list--item--social {
  margin-left: auto;
}

@media (max-width: 768px) {
  .menu__mobile--toggle:checked ~ .menu__list .social--header {
    justify-content: center;
    gap: 1.2rem;
  }

  .menu__list--item--social {
    margin-left: 0;
    width: 100%;
  }

  .menu__mobile--toggle:checked ~ .menu__list .social--header .social__item {
    margin: 0;
  }

  .menu__mobile--toggle:checked ~ .menu__list .social--header .social__icon {
    height: 3rem;
    width: 3rem;
  }
}
.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--color-success-rgb), 0.5);
  overflow-y: scroll;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.popup__main {
  background-color: var(--color-white);
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 1.5rem;
  width: 70rem;
  padding: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .popup__main {
    width: 80%;
  }
}
.popup__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.popup__icon {
  height: 9.8rem;
  width: 9.8rem;
  fill: var(--color-success);
  margin: 2rem;
}
.popup__buttons {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.donate-popup {
  display: none;
}
.donate-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow-y: scroll;
  backdrop-filter: blur(4px);
  z-index: 1000;
}
.donate-popup__main {
  background-color: var(--color-white);
  margin: 4rem auto 2rem auto;
  border-radius: 1.5rem;
  width: 46rem;
  padding: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .donate-popup__main {
    width: 80%;
  }
}
.donate-popup__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.donate-popup__icon {
  height: 9.8rem;
  width: 9.8rem;
  fill: var(--color-success);
  margin: 2rem;
}
.donate-popup__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 2rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--color-muted);
}

.progress {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 63.8em) {
  .progress {
    min-height: 30rem;
  }
}
.progress__header {
  text-align: center;
  align-self: center;
  margin-bottom: 5rem;
  font-size: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .progress__header {
    width: 70vw;
  }
}
.progress__info {
  align-self: center;
  width: 40vw;
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}
@media only screen and (max-width: 63.8em) {
  .progress__info {
    width: 60vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .progress__info {
    width: 80vw;
  }
}
.progress__bar {
  width: 50vw;
  max-width: 70rem;
  height: 1rem;
  align-self: center;
  background-color: var(--color-bg-disable);
  border-radius: 0.8rem;
  overflow: hidden;
}
@media only screen and (max-width: 63.8em) {
  .progress__bar {
    width: 70vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .progress__bar {
    width: 80vw;
  }
}
.progress__bar--now {
  background-color: var(--color-secondary);
  height: 1rem;
}

.sections {
  margin: 4rem auto;
  display: flex;
  max-width: 130rem;
}
@media only screen and (max-width: 37.5em) {
  .sections {
    flex-direction: column;
  }
}
.sections__donate {
  margin-top: 0;
}

.row {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 37.5em) {
  .row {
    flex-direction: column;
    align-items: center;
  }
}

.section {
  margin: 3.2rem auto;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  height: fit-content;
}
.section__one-of-two {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .section__one-of-two {
    width: 90%;
    margin-top: 3.2rem;
    padding: 0;
  }
}
.section__one-of-three {
  width: 33%;
  padding: 0 3.2rem;
}
@media only screen and (max-width: 37.5em) {
  .section__one-of-three {
    width: 90%;
    margin-top: 3.2rem;
    padding: 0;
  }
}
.section__two-of-three {
  width: 66%;
  padding: 0 3.2rem;
}
@media only screen and (max-width: 37.5em) {
  .section__two-of-three {
    width: 95%;
    margin: 3.2rem auto;
    padding: 0;
  }
}
.section__three-of-three {
  width: 95%;
  margin: 3.2rem auto;
}
@media only screen and (max-width: 37.5em) {
  .section {
    width: 90%;
  }
}
.section__header {
  font-size: 2.4rem;
  padding-bottom: 1.6rem;
  text-align: center;
}
.section--top {
  border-radius: 1.5rem 1.5rem 0 0;
}
.section--bottom {
  border-radius: 0 0 1.5rem 1.5rem;
}

.navigation {
  margin: 0 auto;
  border-right: 1px solid var(--color-border);
}
@media only screen and (max-width: 37.5em) {
  .navigation {
    height: fit-content;
    margin-bottom: 3.2rem;
    padding-bottom: 3.2rem;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
}

.sub-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.row.gap {
  gap: 3.2rem;
}
.row.gap > .section__one-of-three {
  padding: 0;
}
.row.gap > .section__two-of-three {
  padding: 0;
}

.slider {
  width: 100vw;
  height: 76rem;
  position: relative;
  overflow: hidden;
}
.slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(3deg, rgba(27, 61, 74, 0.64), rgba(56, 95, 108, 0.64)), linear-gradient(to right bottom, rgba(0, 0, 0, 0), rgba(0, 12, 21, 0.56)), url(/../assets/main.jpg);
  background-position: center;
  background-size: cover;
}
.slider .slide__text {
  font-size: 5.2rem;
  line-height: 6.4rem;
  font-weight: bold;
  width: 64%;
  text-align: center;
  color: var(--color-white);
  margin: 23rem auto 2.4rem auto;
}
@media only screen and (max-width: 37.5em) {
  .slider .slide__text {
    width: 80%;
    font-size: 4.2rem;
    line-height: 5.4rem;
    margin: 22rem auto 2.4rem auto;
  }
}
.slider .slide__button {
  display: flex;
  justify-content: center;
}

.dots {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots__dot {
  border: 1px solid var(--color-white);
  background-color: transparent;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  margin-right: 0.8rem;
  cursor: pointer;
  transition: all 0.1s;
}
.dots__dot--active {
  background-color: var(--color-white);
}
.dots__dot:last-child {
  margin: 0;
}
.dots__dot:hover {
  transform: scale(1.1);
}

.subscribe {
  height: 32rem;
  background-color: var(--color-secondary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.subscribe__subtitle {
  font-size: 1.6;
  color: var(--color-white);
  margin-bottom: 1.6rem;
}
.subscribe__form {
  width: 40vw;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 63.8em) {
  .subscribe__form {
    width: 60vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .subscribe__form {
    width: 90vw;
  }
}
.subscribe__input {
  font-family: inherit;
  font-size: inherit;
  color: var(--color-text);
  background-color: var(--color-white);
  border: none;
  padding: 1.3rem 2rem;
  border-radius: 0.8rem 0 0 0.8rem;
  width: 60%;
  transition: all 0.2s;
}
.subscribe__input:focus {
  outline: none;
  width: 65%;
  background-color: var(--color-white);
}
.subscribe__input::-webkit-input-placeholder {
  font-weight: 100;
  color: var(--color-disable);
}
.subscribe__button {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: var(--color-white);
  background-color: var(--color-primary);
  width: 30%;
  padding: 1.3rem 2rem;
  border-radius: 0 0.8rem 0.8rem 0;
  cursor: pointer;
}
.subscribe__button:hover {
  background-color: var(--color-primary-hover);
}
.subscribe__button:focus {
  outline: none;
}

.top {
  margin: 4rem auto;
  display: flex;
  justify-content: center;
  max-width: 130rem;
  flex-wrap: wrap;
}
.top__block {
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 5rem;
}
.top__block--donate {
  width: 90%;
}
.top__header {
  font-size: 2.8rem;
  line-height: 3.6rem;
}
.top__subheader {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 0;
}

.center {
  text-align: center;
}

.campaign > .row {
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
  border-bottom: 1px solid var(--color-muted);
}
.campaign__header {
  padding-inline: 3.2rem;
  font-size: 1.8rem;
  overflow-wrap: anywhere;
  hyphens: auto;
  height: 2lh;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 2) {
  .campaign__header {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.campaign__promo {
  width: 100%;
  height: 100%;
}
.campaign__promo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.campaign__card {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  gap: 1.6rem;
}
.campaign__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 63.8em) {
  .campaign__top {
    min-height: min-content;
  }
}
.campaign__info {
  display: flex;
  flex-direction: column;
}
.campaign__info--summary {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .campaign__info--summary {
    flex-direction: column;
    align-items: center;
  }
}
.campaign__label--raised {
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  font-style: italic;
  position: relative;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.campaign__amount--raised {
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.campaign__amount {
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.campaign__label--amount {
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.campaign__donors {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.campaign__label--donors {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.campaign__money {
  display: flex;
  justify-content: space-between;
}
.campaign__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  height: 2lh;
}
.campaign__description {
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
  overflow-wrap: anywhere;
  hyphens: auto;
  max-height: 4lh;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
}
@supports (-webkit-line-clamp: 4) {
  .campaign__description {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}
.campaign__description-full {
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 7.2rem;
}
.campaign__collected, .campaign__goal {
  font-size: 1.6rem;
  font-weight: 600;
}
.campaign__supporters, .campaign__end-date {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0.4rem 0;
  min-height: 1lh;
}
.campaign__progress {
  width: 100%;
}
.campaign__progress-bar {
  width: 100%;
  height: 3.2rem;
  align-self: center;
  background-color: var(--color-bg-disable);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  margin: 0.8rem 0;
}
.campaign__progress-bar-now {
  top: 0;
  left: 0;
  position: absolute;
  background-color: #305CDE;
  height: 3.2rem;
}
.campaign__progress-bar-amount {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: var(--color-white);
}
.campaign__share {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.campaign__share-list {
  justify-content: center;
  display: flex;
  list-style: none;
  gap: 4.8rem;
}
.campaign__share-icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: var(--color-campaign-icons);
  transition: all 0.1s;
}
.campaign__share-icon:hover {
  fill: var(--color-accent);
  transform: translateY(-1px);
}
.campaign__share h3 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1.6rem;
}

h4.campaign__collected {
  margin: 0.8rem 0;
}

.section__one-of-two .campaign__card {
  padding: 0;
}

.campaigns-container {
  width: min(130rem, 90%);
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  container-type: inline-size;
  margin-inline: auto;
  margin-bottom: 1.8rem;
}

.campaigns {
  display: grid;
  gap: 3.2rem;
}
@container (width >= calc(15rem * 2 + 3.2rem)) {
  .campaigns {
    grid-template-columns: repeat(2, minmax(15rem, 1fr));
  }
  .campaigns .campaign__summary {
    grid-column: span 2;
  }
  .campaigns:has(.campaign__summary:nth-child(1):last-child) > .campaign__summary:first-child {
    grid-column: span 2;
  }
  .campaigns:has(.campaign__summary:nth-child(2):last-child) > .campaign__summary:first-child {
    grid-column: span 2;
  }
}
@container (calc(15rem * 4 + 10.4rem) < width <= calc(15rem * 6 + 15.6rem)) {
  .campaigns {
    grid-template-columns: repeat(4, minmax(15rem, 1fr));
  }
  .campaigns .campaign__summary:last-child:nth-child(odd) {
    grid-column: 2/span 2;
  }
  .campaigns:has(.campaign__summary:nth-child(1):last-child) > .campaign__summary:first-child {
    grid-column: 2/span 2;
  }
  .campaigns:has(.campaign__summary:nth-child(2):last-child) > .campaign__summary:first-child {
    grid-column: 1/span 2;
  }
  .campaigns:has(.campaign__summary:nth-child(2):last-child) > .campaign__summary:last-child {
    grid-column: 3/span 2;
  }
}
@container (calc(15rem * 6 + 15.6rem) < width <= calc(15rem * 8 + 20.8rem)) {
  .campaigns {
    grid-template-columns: repeat(6, minmax(15rem, 1fr));
  }
  .campaigns .campaign__summary:last-child:nth-child(4) {
    grid-column: 3/5;
  }
  .campaigns:has(:nth-child(3n+5):last-child) > :nth-last-child(2) {
    grid-column: 2/4;
  }
  .campaigns:has(.campaign__summary:nth-child(1):last-child) > .campaign__summary:first-child {
    grid-column: 3/5;
  }
  .campaigns:has(.campaign__summary:nth-child(2):last-child) > .campaign__summary:first-child {
    grid-column: 2/span 2;
  }
}
.campaigns .campaign__promo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.campaigns-home {
  display: grid;
  width: 90vw;
  max-width: 127rem;
  margin-inline: auto;
  grid-template-columns: repeat(6, minmax(15rem, 1fr));
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  gap: 3.2rem;
}
.campaigns-home .campaign__summary {
  grid-column: span 2;
}
.campaigns-home:has(.campaign__summary:nth-child(1):last-child) > .campaign__summary:first-child {
  grid-column: 3/5;
}
.campaigns-home:has(.campaign__summary:nth-child(2):last-child) > .campaign__summary:first-child {
  grid-column: 2/span 2;
}
.campaigns-home:has(.campaign__summary:nth-child(3):last-child) > .campaign__summary:first-child {
  grid-column: span 2;
}
@media only screen and (max-width: 63.8em) {
  .campaigns-home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .campaigns-home:has(.campaign__summary:nth-child(1):last-child) > .campaign__summary:first-child {
    grid-column: 2/span 2;
  }
  .campaigns-home:has(.campaign__summary:nth-child(2):last-child) > .campaign__summary:first-child {
    grid-column: span 2;
  }
  .campaigns-home:has(.campaign__summary:nth-child(3):last-child) > .campaign__summary:last-child {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .campaigns-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .campaigns-home:has(.campaign__summary:nth-child(1):last-child) > .campaign__summary:first-child {
    grid-column: 1/span 2;
  }
  .campaigns-home:has(.campaign__summary:nth-child(2):last-child) > .campaign__summary:first-child {
    grid-column: 1/span 2;
  }
  .campaigns-home:has(.campaign__summary:nth-child(3):last-child) > .campaign__summary:last-child {
    display: flex;
    grid-column: 1/span 2;
  }
}
.campaigns-home .campaign__promo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.campaign__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  text-align: center;
  background-color: var(--color-white);
  border-radius: 1.6rem;
  overflow: clip;
}
.campaign__summary--completed {
  filter: grayscale(100%);
  opacity: 0.8;
}

.steps {
  margin: 0 auto;
  display: flex;
  justify-content: left;
  max-width: 130rem;
  padding-left: 3.2rem;
}
.steps .step {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50rem;
  position: relative;
}
.steps .step:not(:first-child) {
  margin-left: 6rem;
}
.steps .step:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 6rem;
  height: 1px;
  left: -6rem;
  background-image: linear-gradient(to right, transparent 25%, var(--color-bg-disable) 25%, var(--color-bg-disable) 75%, transparent 75%);
  background-size: 1.2rem 1px;
  background-repeat: repeat-x;
}
.steps .step__active {
  background-color: var(--color-icons);
  color: var(--color-white);
}
.steps .step__not-active {
  background-color: var(--color-bg-disable);
  color: var(color-text-disable);
}

.form__group {
  margin-top: 1.6rem;
}
.form__group-2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .form__group-2 {
    flex-direction: column;
  }
}
.form__group-center {
  align-self: center;
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .form__group-center {
    width: 90%;
  }
}
.form__input-group {
  display: flex;
  flex-direction: column;
}
.form__input-group .large {
  font-size: 2.4rem;
}
.form__input {
  font-size: 1.6rem;
  padding: 1.6rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.6rem;
}
.form__input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-secondary-rgb), 0.25);
}
.form__input:focus-visible {
  outline: none;
}
.form__input--error {
  border: 1px solid var(--color-error);
}
.form__error {
  font-size: 1.3rem;
  color: var(--color-error);
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  animation-name: error;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}
.form__input-label {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}
.form__input-label-error {
  color: var(--color-error);
}
.form__select-group {
  display: flex;
  flex-direction: column;
}
.form__select {
  font-size: 1.3rem;
  padding: 1.6rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.6rem;
}
.form__select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-secondary-rgb), 0.25);
}
.form__select:focus-visible {
  outline: none;
}
.form__textarea-group {
  display: flex;
  flex-direction: column;
}
.form__textarea {
  resize: none;
  width: 100%;
  font-size: 1.6rem;
  padding: 1.6rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.6rem;
}
.form__textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-secondary-rgb), 0.25);
}
.form__textarea:focus-visible {
  outline: none;
}
.form__textarea-label {
  font-size: 1.3rem;
  color: var(--color-text);
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.form__radio-group:not(:last-child) {
  margin-bottom: 1.5rem;
}
.form__button {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.form__radio-label {
  font-size: 1.6rem;
  position: relative;
  padding-left: 2.8rem;
  color: var(--color-text);
}
.form__radio-button {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-icons);
  border-radius: 50%;
}
.form__radio-button::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-icons);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.form__radio-input {
  display: none;
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}
.form__radio-button {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-icons);
  border-radius: 50%;
}
.form__radio-button::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-icons);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.form__radio-input {
  display: none;
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}
.form__card-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form__radio-card-group {
  width: 49%;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 0.8rem;
  padding: 8rem 2.4rem;
  border: 1px solid var(--color-border);
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 37.5em) {
  .form__radio-card-group {
    width: 100%;
    padding: 2.4rem 2.4rem;
  }
}
.form__radio-card {
  text-align: center;
  font-size: 1.3rem;
  margin: 1.2rem 0;
}
.form__radio-card-label {
  width: 13rem;
  display: flex;
  align-items: center;
  padding: 1.2rem 2.4rem 1.2rem 5.2rem;
  font-size: 1.6rem;
  position: relative;
  color: var(--color-secondary);
  background-color: var(--color-white);
  border-radius: 50rem;
  border: 1px solid var(--color-secondary);
  cursor: pointer;
}
.form__radio-card-button {
  display: inline-block;
  position: absolute;
  left: 2.4rem;
  top: 1.6rem;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-secondary);
  border-radius: 0.3rem;
}
.form__radio-card-button::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-white);
  mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNSAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuMSwxMy45bDUtNi43bDAsMGMwLjQtMC42LDEuMy0wLjcsMS45LTAuM3MwLjcsMS4zLDAuMywxLjlsLTYuMSw4Yy0wLjMsMC4zLTAuNiwwLjUtMS4xLDAuNQoJYy0wLjQsMC0wLjgtMC4yLTEuMS0wLjVsLTMuMi00LjFjLTAuNS0wLjYtMC4zLTEuNCwwLjItMS45YzAuNi0wLjUsMS40LTAuMywxLjksMC4yTDExLjEsMTMuOXoiLz4KPC9zdmc+");
  -webkit-mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNSAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuMSwxMy45bDUtNi43bDAsMGMwLjQtMC42LDEuMy0wLjcsMS45LTAuM3MwLjcsMS4zLDAuMywxLjlsLTYuMSw4Yy0wLjMsMC4zLTAuNiwwLjUtMS4xLDAuNQoJYy0wLjQsMC0wLjgtMC4yLTEuMS0wLjVsLTMuMi00LjFjLTAuNS0wLjYtMC4zLTEuNCwwLjItMS45YzAuNi0wLjUsMS40LTAuMywxLjksMC4yTDExLjEsMTMuOXoiLz4KPC9zdmc+");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.form__radio-input {
  display: none;
}
.form__radio-input:checked ~ .form__radio-card-label {
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.form__radio-input:checked ~ .form__radio-card-label .form__radio-card-button {
  border: 2px solid var(--color-white);
}
.form__radio-input:checked ~ .form__radio-card-label .form__radio-card-button::after {
  opacity: 1;
}
.form__radio-input:checked ~ .more-options {
  display: block;
}
.form__check-group:not(:last-child) {
  margin-bottom: 1.5rem;
}
.form__button {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .form__button {
    margin-top: 0;
  }
}
.form__check-label {
  font-size: 1.6rem;
  position: relative;
  padding-left: 2.8rem;
  color: var(--color-text);
}
.form__check-button {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--color-icons);
  border-radius: 0.3rem;
}
.form__check-button::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-icons);
  mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNSAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuMSwxMy45bDUtNi43bDAsMGMwLjQtMC42LDEuMy0wLjcsMS45LTAuM3MwLjcsMS4zLDAuMywxLjlsLTYuMSw4Yy0wLjMsMC4zLTAuNiwwLjUtMS4xLDAuNQoJYy0wLjQsMC0wLjgtMC4yLTEuMS0wLjVsLTMuMi00LjFjLTAuNS0wLjYtMC4zLTEuNCwwLjItMS45YzAuNi0wLjUsMS40LTAuMywxLjksMC4yTDExLjEsMTMuOXoiLz4KPC9zdmc+");
  -webkit-mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjAuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyNSAyNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUgMjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTEuMSwxMy45bDUtNi43bDAsMGMwLjQtMC42LDEuMy0wLjcsMS45LTAuM3MwLjcsMS4zLDAuMywxLjlsLTYuMSw4Yy0wLjMsMC4zLTAuNiwwLjUtMS4xLDAuNQoJYy0wLjQsMC0wLjgtMC4yLTEuMS0wLjVsLTMuMi00LjFjLTAuNS0wLjYtMC4zLTEuNCwwLjItMS45YzAuNi0wLjUsMS40LTAuMywxLjksMC4yTDExLjEsMTMuOXoiLz4KPC9zdmc+");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.form__check-input {
  display: none;
}
.form__check-input:checked ~ .form__check-label .form__check-button::after {
  opacity: 1;
}
.form__check-input:checked ~ .more-options {
  display: block;
}
.form__info {
  margin-top: 0.2rem;
  margin-left: 2.8rem;
  font-size: 1.3rem;
  line-height: 2rem;
}
.form:first-child {
  margin-top: 2rem;
}
.form__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  padding: 1.6rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.6rem;
  background-repeat: no-repeat;
  background-size: 2.4rem 2.4rem;
  background-image: url(/../assets/dropdown.svg);
  background-position: right 0.75rem center;
}
.form__select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.25rem rgba(var(--color-secondary-rgb), 0.25);
}
.form__select:focus-visible {
  outline: none;
}

.more-options {
  display: none;
}

.one-of-two {
  width: calc(50% - 0.9rem);
}
@media only screen and (max-width: 37.5em) {
  .one-of-two {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.more {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.more__link {
  font-size: 1.4rem;
  color: var(--color-primary);
}
.more__link:hover {
  color: var(--color-primary-hover);
}

.welcome {
  background-color: var(--color-white);
  border-radius: 1.5rem;
  width: 90vw;
  max-width: 127rem;
  padding: 4rem;
  margin: 4rem auto;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 81, 75, 0.1);
}

.impact__top {
  width: 100vw;
  height: 52.4rem;
  background-image: linear-gradient(3deg, rgba(27, 61, 74, 0.64), rgba(56, 95, 108, 0.64)), linear-gradient(to right bottom, rgba(0, 0, 0, 0), rgba(0, 12, 21, 0.56)), url(/../assets/main.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.impact__top--text {
  width: 64%;
  text-align: center;
  font-size: 5.2rem;
  line-height: 6.4rem;
  color: var(--color-white);
}
@media only screen and (max-width: 37.5em) {
  .impact__top--text {
    width: 80%;
    font-size: 4.2rem;
    line-height: 5.4rem;
  }
}

.stories {
  display: flex;
  flex-direction: column;
  max-width: 130rem;
  align-content: center;
  margin: 7rem auto;
}
@media only screen and (max-width: 63.8em) {
  .stories {
    max-width: 90vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .stories {
    width: 100vw;
    justify-content: center;
  }
}
.stories__heading {
  margin: 0 2rem;
}
@media only screen and (max-width: 63.8em) {
  .stories__heading {
    align-self: center;
  }
}
.stories__more {
  font-size: 1.9rem;
  margin: 0 2rem 0.6rem 2rem;
}
@media only screen and (max-width: 63.8em) {
  .stories__more {
    align-self: center;
  }
}
.stories__main {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 63.8em) {
  .stories__main {
    justify-content: center;
  }
}
.stories__main .story {
  width: 30%;
  margin: 1.8rem;
}
@media only screen and (max-width: 63.8em) {
  .stories__main .story {
    width: 44%;
    justify-content: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .stories__main .story {
    width: 80%;
    justify-content: center;
  }
}
.stories__main .story__image {
  border-radius: 0.5rem;
  height: 28rem;
  background-image: url(/../assets/blog.jpg);
  background-position: center;
  background-size: cover;
}
.stories__main .story__date {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-top: 1.2rem;
}
.stories__main .story__header {
  margin: 0.8rem 0;
}
.stories__main .story__preview {
  margin: 0;
  font-size: 1.3rem;
  line-height: 2rem;
  overflow: hidden;
}
.stories__main .story__more {
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-top: 0.8rem;
}

.profile__container {
  background-color: var(--color-white);
  border-radius: 1.5rem;
  width: 90vw;
  max-width: 127rem;
  padding: 4rem;
  margin: 4rem auto;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 81, 75, 0.1);
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 63.8em) {
  .profile__container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 63.8em) {
  .profile__container .heading-h2 {
    text-align: center;
    margin-top: 5rem;
  }
}
.profile__container__info {
  width: 100%;
}
.profile__card {
  margin-right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile__photo {
  background-image: url(/../assets/photo.jpg);
  background-position: center;
  background-size: cover;
  width: 27rem;
  height: 27rem;
  border-radius: 1000px;
}
.profile__name {
  font-size: 1.9rem;
  color: var(--color-secondary);
  font-weight: bold;
  margin-top: 1.6rem;
}
.profile__category {
  margin-top: 0;
  color: var(--color-primary);
}

.donors {
  margin: 4rem auto;
  display: flex;
  justify-content: center;
  max-width: 130rem;
  flex-wrap: wrap;
}
.donors__top {
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 5rem;
}
.donors__header {
  font-size: 2.8rem;
  line-height: 3.6rem;
}
.donors__subheader {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 0;
}

.header-divider {
  background-color: var(--color-secondary);
  height: 5rem;
}

.donor {
  width: 28.2rem;
  border-radius: 1.6rem;
  display: flex;
  text-align: center;
  background-color: var(--color-white);
  flex-direction: column;
  align-items: center;
  margin: 1.6rem;
}
.donor__top {
  display: flex;
  align-items: center;
}
.donor__photo {
  background-image: url(/../assets/photo.jpg);
  background-position: center;
  background-size: cover;
  width: 28.2rem;
  height: 21.6rem;
  border-radius: 1.6rem;
}
.donor__name {
  font-size: 1.9rem;
  margin: 1.6rem 1.6rem 1.2rem 1.6rem;
}
.donor__info-short {
  font-size: 1.6rem;
  line-height: 2.4rem;
  height: 7.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 1.6rem;
  text-align: center;
}
.donor__more {
  font-size: 1.6rem;
  margin-top: 1.6rem;
  margin-bottom: 3.2rem;
}
.donor__more:link, .donor__more:visited {
  color: var(--color-primary);
  text-decoration: none;
}
.donor__more:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
}

.story__top {
  width: 100vw;
  height: 52.4rem;
  background-image: linear-gradient(3deg, rgba(27, 61, 74, 0.64), rgba(56, 95, 108, 0.64)), linear-gradient(to right bottom, rgba(0, 0, 0, 0), rgba(0, 12, 21, 0.56)), url(/../assets/blog.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.story__top--header {
  width: 64%;
  text-align: center;
  font-size: 5.2rem;
  line-height: 6.4rem;
  color: var(--color-white);
}
@media only screen and (max-width: 37.5em) {
  .story__top--header {
    width: 80%;
    font-size: 4.2rem;
    line-height: 5.4rem;
  }
}
.story__top--subheader {
  width: 64%;
  font-size: 1.9rem;
  line-height: 2.8rem;
  color: var(--color-white);
  margin-top: 1.3rem;
  text-align: center;
}
.story__back {
  position: absolute;
  top: 2rem;
  left: 11.5rem;
}
@media only screen and (max-width: 63.8em) {
  .story__back {
    left: 5rem;
  }
}
.story__main {
  display: flex;
  margin-bottom: 4rem;
  margin-top: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .story__main {
    flex-direction: column;
    width: 80%;
    margin: 1.6rem auto 4rem auto;
  }
}
.story__main--date {
  width: 20%;
  font-size: 1.3rem;
  text-align: center;
  padding-right: 1.5rem;
  margin-top: 2.4rem;
}
@media only screen and (max-width: 63.8em) {
  .story__main--date {
    width: 15%;
  }
}
@media only screen and (max-width: 37.5em) {
  .story__main--date {
    width: 100%;
    text-align: left;
  }
}
.story__main--text {
  width: 60%;
}
@media only screen and (max-width: 63.8em) {
  .story__main--text {
    width: 70%;
  }
}
@media only screen and (max-width: 37.5em) {
  .story__main--text {
    width: 100%;
    text-align: left;
  }
}

.unsubscribe__top {
  margin: 4rem auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.unsubscribe__message {
  width: 70%;
  margin-bottom: 4rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .unsubscribe__message {
    width: 95%;
  }
}
.unsubscribe__copyright {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-text);
}
.unsubscribe .social {
  justify-content: center;
  display: flex;
  list-style: none;
}
.unsubscribe .social__item:not(:last-child) {
  margin-right: 3.2rem;
}
.unsubscribe .social__icon {
  height: 2.4rem;
  width: 2.4rem;
  fill: var(--color-icons);
  transition: all 0.1s;
}
.unsubscribe .social__icon:hover {
  fill: var(--color-accent);
  transform: translateY(-1px);
}

.confirmation {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.wall {
  background-color: var(--color-secondary);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 37.5em) {
  .wall {
    align-items: center;
  }
}
.wall-donors__heading {
  font-size: 1.9rem;
  padding-bottom: 0.8rem;
}
.wall-donors__subheading {
  font-size: 1.3rem;
  margin-top: 0;
}
.wall-donors__results {
  font-size: 1.6rem;
  margin-top: 1.6rem;
}
.wall-donors__donor {
  display: flex;
  align-items: flex-start;
  margin-top: 1.1rem;
  gap: 2rem;
}
.wall-donors__donor:hover {
  text-decoration: none;
}
.wall-donors__donor:last-of-type {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--color-muted);
}
.wall-donors__donor--photo {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 100rem;
  border: 1px solid var(--color-muted);
  background: url(/../assets/photo.jpg);
  background-position: center;
  background-size: cover;
}
.wall-donors__donor--name {
  flex-grow: 3;
  font-size: 1.3rem;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
}
.wall-donors__donor--cathegory {
  display: block;
  font-size: 1.1rem;
  color: var(--color-menu);
}
.wall-donors__donor:hover .wall-donors__donor--cathegory {
  text-decoration: none;
}
.wall-donors__donor--amount {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-text);
}

.map {
  width: 60%;
  height: 40rem;
  margin: 5rem auto 1rem auto;
}
@media only screen and (max-width: 63.8em) {
  .map {
    width: 90%;
    height: 40rem;
    margin: 3rem auto 1rem auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .map {
    width: 90%;
    height: 30rem;
    margin: 3rem auto 0 auto;
  }
}

.hide {
  display: none;
}

.visible-of {
  transform: scaleY(0);
  transform-origin: top;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.my-0 {
  margin-block: 0;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

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

.pb-1 {
  padding-bottom: 0.8rem;
}

.p-2 {
  padding: 3.2rem;
}
@media only screen and (max-width: 37.5em) {
  .p-2 {
    padding: 1.8rem;
  }
}

.pb-2 {
  padding-bottom: 1.8rem;
}

.py-4 {
  padding: 3.2rem 0;
}

.pt-4 {
  padding-top: 3.2rem;
}

.pb-4 {
  padding-bottom: 3.2rem;
}

.border-left {
  border-left: 1px solid var(--color-border);
}
@media only screen and (max-width: 37.5em) {
  .border-left {
    margin-top: 3.2rem;
    padding-top: 3.2rem;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
}

.min-height {
  min-height: calc(100vh - 49.2rem);
}
@media only screen and (max-width: 63.8em) {
  .min-height {
    min-height: calc(100vh - 66.2rem);
  }
}

svg {
  touch-action: none;
}

image, text, .jvm-zoomin, .jvm-zoomout {
  user-select: none;
}

.jvm-tooltip {
  border-radius: 3px;
  background-color: white;
  font-family: sans-serif, Verdana;
  font-size: smaller;
  box-shadow: 1px 2px 12px rgba(248, 239, 239, 0.2);
  padding: 3px 5px;
  white-space: nowrap;
  position: absolute;
  display: none;
  color: black;
}
.jvm-tooltip.active {
  display: block;
}

.jvm-zoom-btn {
  border-radius: 3px;
  background-color: #292929;
  padding: 3px;
  box-sizing: border-box;
  position: absolute;
  line-height: 10px;
  cursor: pointer;
  color: #FFF;
  height: 15px;
  width: 15px;
  left: 10px;
}
.jvm-zoom-btn.jvm-zoomout {
  top: 30px;
}
.jvm-zoom-btn.jvm-zoomin {
  top: 10px;
}

.jvm-series-container {
  right: 15px;
  position: absolute;
}
.jvm-series-container.jvm-series-h {
  bottom: 15px;
}
.jvm-series-container.jvm-series-v {
  top: 15px;
}
.jvm-series-container .jvm-legend {
  background-color: #FFF;
  border: 1px solid #e5e7eb;
  margin-left: 0.75rem;
  border-radius: 0.25rem;
  border-color: #e5e7eb;
  padding: 0.6rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  float: left;
}
.jvm-series-container .jvm-legend .jvm-legend-title {
  line-height: 1;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
  margin-bottom: 0.575rem;
  text-align: left;
}
.jvm-series-container .jvm-legend .jvm-legend-inner {
  overflow: hidden;
}
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick {
  overflow: hidden;
  min-width: 40px;
}
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick:not(:first-child) {
  margin-top: 0.575rem;
}
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-sample {
  border-radius: 4px;
  margin-right: 0.65rem;
  height: 16px;
  width: 16px;
  float: left;
}
.jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-text {
  font-size: 12px;
  text-align: center;
  float: left;
}

.jvm-line[animation=true] {
  -webkit-animation: jvm-line-animation 10s linear forwards infinite;
  animation: jvm-line-animation 10s linear forwards infinite;
}
@keyframes jvm-line-animation {
  from {
    stroke-dashoffset: 250;
  }
}

.CodeMirror {
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

.CodeMirror-lines {
  padding: 4px 0;
}

.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px;
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white;
}

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker {
  color: black;
}

.CodeMirror-guttermarker-subtle {
  color: #999;
}

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}

.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}

.cm-animate-fat-cursor {
  width: auto;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}

@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}

.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  overflow: hidden;
}

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}

.cm-s-default .cm-header {
  color: blue;
}

.cm-s-default .cm-quote {
  color: #090;
}

.cm-negative {
  color: #d44;
}

.cm-positive {
  color: #292;
}

.cm-header, .cm-strong {
  font-weight: bold;
}

.cm-em {
  font-style: italic;
}

.cm-link {
  text-decoration: underline;
}

.cm-strikethrough {
  text-decoration: line-through;
}

.cm-s-default .cm-keyword {
  color: #708;
}

.cm-s-default .cm-atom {
  color: #219;
}

.cm-s-default .cm-number {
  color: #164;
}

.cm-s-default .cm-def {
  color: blue;
}

.cm-s-default .cm-variable-2 {
  color: #05a;
}

.cm-s-default .cm-variable-3, .cm-s-default .cm-type {
  color: #085;
}

.cm-s-default .cm-comment {
  color: #a50;
}

.cm-s-default .cm-string {
  color: #a11;
}

.cm-s-default .cm-string-2 {
  color: #f50;
}

.cm-s-default .cm-meta {
  color: #555;
}

.cm-s-default .cm-qualifier {
  color: #555;
}

.cm-s-default .cm-builtin {
  color: #30a;
}

.cm-s-default .cm-bracket {
  color: #997;
}

.cm-s-default .cm-tag {
  color: #170;
}

.cm-s-default .cm-attribute {
  color: #00c;
}

.cm-s-default .cm-hr {
  color: #999;
}

.cm-s-default .cm-link {
  color: #00c;
}

.cm-s-default .cm-error {
  color: red;
}

.cm-invalidchar {
  color: red;
}

.CodeMirror-composing {
  border-bottom: 2px solid;
}

div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0b0;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #a22;
}

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}

.CodeMirror-activeline-background {
  background: #e8f2ff;
}

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important;
  margin-bottom: -50px;
  margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none;
  position: relative;
}

.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}

.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent;
}

.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
}

.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}

.CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px;
}

.CodeMirror-rtl pre {
  direction: rtl;
}

.CodeMirror-code {
  outline: none;
}

.CodeMirror-scroll, .CodeMirror-sizer, .CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}

.CodeMirror-measure pre {
  position: static;
}

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}

div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected {
  background: #d9d9d9;
}

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}

.CodeMirror-crosshair {
  cursor: crosshair;
}

.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, 0.4);
}

.cm-force-border {
  padding-right: 0.1px;
}

@media print {
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
.cm-tab-wrap-hack:after {
  content: "";
}

span.CodeMirror-selectedtext {
  background: none;
}

.cm-s-hopscotch.CodeMirror {
  background: #322931;
  color: #d5d3d5;
}

.cm-s-hopscotch div.CodeMirror-selected {
  background: #433b42 !important;
}

.cm-s-hopscotch .CodeMirror-gutters {
  background: #322931;
  border-right: 0px;
}

.cm-s-hopscotch .CodeMirror-linenumber {
  color: #797379;
}

.cm-s-hopscotch .CodeMirror-cursor {
  border-left: 1px solid #989498 !important;
}

.cm-s-hopscotch span.cm-comment {
  color: #b33508;
}

.cm-s-hopscotch span.cm-atom {
  color: #c85e7c;
}

.cm-s-hopscotch span.cm-number {
  color: #c85e7c;
}

.cm-s-hopscotch span.cm-property, .cm-s-hopscotch span.cm-attribute {
  color: #8fc13e;
}

.cm-s-hopscotch span.cm-keyword {
  color: #dd464c;
}

.cm-s-hopscotch span.cm-string {
  color: #fdcc59;
}

.cm-s-hopscotch span.cm-variable {
  color: #8fc13e;
}

.cm-s-hopscotch span.cm-variable-2 {
  color: #1290bf;
}

.cm-s-hopscotch span.cm-def {
  color: #fd8b19;
}

.cm-s-hopscotch span.cm-error {
  background: #dd464c;
  color: #989498;
}

.cm-s-hopscotch span.cm-bracket {
  color: #d5d3d5;
}

.cm-s-hopscotch span.cm-tag {
  color: #dd464c;
}

.cm-s-hopscotch span.cm-link {
  color: #c85e7c;
}

.cm-s-hopscotch .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important;
}

.cm-s-hopscotch .CodeMirror-activeline-background {
  background: #302020;
}

.gjs-is__grab, .gjs-is__grab * {
  cursor: grab !important;
}

.gjs-is__grabbing, .gjs-is__grabbing * {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: grabbing !important;
}

:root {
  --gjs-main-color: #444;
  --gjs-primary-color: #444;
  --gjs-secondary-color: #ddd;
  --gjs-tertiary-color: #804f7b;
  --gjs-quaternary-color: #d278c9;
  --gjs-font-color: #ddd;
  --gjs-font-color-active: #f8f8f8;
  --gjs-main-dark-color: rgba(0, 0, 0, 0.2);
  --gjs-secondary-dark-color: rgba(0, 0, 0, 0.1);
  --gjs-main-light-color: rgba(255, 255, 255, 0.1);
  --gjs-secondary-light-color: rgba(255, 255, 255, 0.7);
  --gjs-soft-light-color: rgba(255, 255, 255, 0.015);
  --gjs-color-blue: #3b97e3;
  --gjs-color-red: #dd3636;
  --gjs-color-yellow: #ffca6f;
  --gjs-color-green: #62c462;
  --gjs-left-width: 15%;
  --gjs-color-highlight: #71b7f1;
  --gjs-color-warn: #ffca6f;
  --gjs-handle-margin: -5px;
  --gjs-light-border: rgba(255, 255, 255, 0.05);
  --gjs-arrow-color: rgba(255, 255, 255, 0.7);
  --gjs-dark-text-shadow: rgba(0, 0, 0, 0.2);
  --gjs-color-input-padding: 22px;
  --gjs-input-padding: 5px;
  --gjs-padding-elem-classmanager: 5px 6px;
  --gjs-upload-padding: 150px 10px;
  --gjs-animation-duration: 0.2s;
  --gjs-main-font: Helvetica, sans-serif;
  --gjs-font-size: 0.75rem;
  --gjs-placeholder-background-color: var(--gjs-color-green);
  --gjs-canvas-top: 40px;
  --gjs-flex-item-gap: 5px;
}

.gjs-bg-main, .gjs-off-prv, .gjs-sm-colorp-c {
  background-color: var(--gjs-main-color);
}

.gjs-color-main, .gjs-off-prv, .gjs-sm-stack #gjs-sm-add {
  color: var(--gjs-font-color);
  fill: var(--gjs-font-color);
}

.gjs-color-active {
  color: var(--gjs-font-color-active);
  fill: var(--gjs-font-color-active);
}

.gjs-color-warn {
  color: var(--gjs-color-warn);
  fill: var(--gjs-color-warn);
}

.gjs-color-hl {
  color: var(--gjs-color-highlight);
  fill: var(--gjs-color-highlight);
}

.gjs-invis-invis, .gjs-clm-tags #gjs-clm-new, .gjs-no-app {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  color: inherit;
}

.gjs-no-app {
  height: 10px;
}

.opac50 {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.gjs-checker-bg, .gjs-field-colorp-c, .checker-bg, .gjs-sm-layer-preview {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==");
}

.gjs-no-user-select, .gjs-grabbing, .gjs-grabbing *, .gjs-rte-toolbar, .gjs-layer-name {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.gjs-no-pointer-events, .gjs-resizer-c, .gjs-margin-v-el, .gjs-padding-v-el, .gjs-fixedmargin-v-el, .gjs-fixedpadding-v-el {
  pointer-events: none;
}

.no-select, .gjs-clm-tags #gjs-clm-close, .gjs-com-no-select, .gjs-com-no-select img, .gjs-category-title, .gjs-layer-title, .gjs-block-category .gjs-title, .gjs-sm-sector-title, .gjs-trait-category .gjs-title {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.clear {
  clear: both;
}

.gjs-category-open, .gjs-block-category.gjs-open, .gjs-sm-sector.gjs-sm-open, .gjs-trait-category.gjs-open {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.gjs-category-title, .gjs-layer-title, .gjs-block-category .gjs-title, .gjs-sm-sector-title, .gjs-trait-category .gjs-title {
  font-weight: lighter;
  background-color: var(--gjs-secondary-dark-color);
  letter-spacing: 1px;
  padding: 9px 10px 9px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  text-align: left;
  position: relative;
  cursor: pointer;
}

.btn-cl, .gjs-am-close, .gjs-mdl-btn-close {
  opacity: 0.3;
  filter: alpha(opacity=30);
  font-size: 25px;
  cursor: pointer;
}

.btn-cl:hover, .gjs-am-close:hover, .gjs-mdl-btn-close:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.gjs-traits-label {
  border-bottom: 1px solid var(--gjs-main-dark-color);
  font-weight: lighter;
  margin-bottom: 5px;
  padding: 10px;
  text-align: left;
}

.gjs-label-wrp {
  width: 30%;
  min-width: 30%;
}

.gjs-field-wrp {
  flex-grow: 1;
}

.gjs-traits-c, .gjs-traits-cs {
  display: flex;
  flex-direction: column;
}

.gjs-trait-categories {
  display: flex;
  flex-direction: column;
}

.gjs-trait-category {
  width: 100%;
}

.gjs-trait-category .gjs-caret-icon {
  margin-right: 5px;
}

.gjs-trt-header {
  font-weight: lighter;
  padding: 10px;
}

.gjs-trt-trait {
  display: flex;
  justify-content: flex-start;
  padding: 5px 10px;
  font-weight: lighter;
  align-items: center;
  text-align: left;
  gap: 5px;
}

.gjs-trt-traits {
  font-size: var(--gjs-font-size);
}

.gjs-trt-trait .gjs-label {
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
}

.gjs-guide-info {
  position: absolute;
}

.gjs-guide-info__content {
  position: absolute;
  height: 100%;
  display: flex;
  width: 100%;
  padding: 5px;
}

.gjs-guide-info__line {
  position: relative;
  margin: auto;
}

.gjs-guide-info__line::before, .gjs-guide-info__line::after {
  content: "";
  display: block;
  position: absolute;
  background-color: inherit;
}

.gjs-guide-info__y {
  padding: 0 5px;
}

.gjs-guide-info__y .gjs-guide-info__content {
  justify-content: center;
}

.gjs-guide-info__y .gjs-guide-info__line {
  width: 100%;
  height: 1px;
}

.gjs-guide-info__y .gjs-guide-info__line::before, .gjs-guide-info__y .gjs-guide-info__line::after {
  width: 1px;
  height: 10px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.gjs-guide-info__y .gjs-guide-info__line::after {
  left: auto;
  right: 0;
}

.gjs-guide-info__x {
  padding: 5px 0;
}

.gjs-guide-info__x .gjs-guide-info__content {
  align-items: center;
}

.gjs-guide-info__x .gjs-guide-info__line {
  height: 100%;
  width: 1px;
}

.gjs-guide-info__x .gjs-guide-info__line::before, .gjs-guide-info__x .gjs-guide-info__line::after {
  width: 10px;
  height: 1px;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  transform: translateX(-50%);
}

.gjs-guide-info__x .gjs-guide-info__line::after {
  top: auto;
  bottom: 0;
}

.gjs-badge {
  white-space: nowrap;
}

.gjs-badge__icon {
  vertical-align: middle;
  display: inline-block;
  width: 15px;
  height: 15px;
}

.gjs-badge__icon svg {
  fill: currentColor;
}

.gjs-badge__name {
  display: inline-block;
  vertical-align: middle;
}

.gjs-frame-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

.gjs-frame-wrapper--anim {
  transition: width 0.35s ease, height 0.35s ease;
}

.gjs-frame-wrapper__top {
  transform: translateY(-100%) translateX(-50%);
  display: flex;
  padding: 5px 0;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 0;
}

.gjs-frame-wrapper__top-r {
  margin-left: auto;
}

.gjs-frame-wrapper__left {
  position: absolute;
  left: 0;
  transform: translateX(-100%) translateY(-50%);
  height: 100%;
  top: 50%;
}

.gjs-frame-wrapper__bottom {
  position: absolute;
  bottom: 0;
  transform: translateY(100%) translateX(-50%);
  width: 100%;
  left: 50%;
}

.gjs-frame-wrapper__right {
  position: absolute;
  right: 0;
  transform: translateX(100%) translateY(-50%);
  height: 100%;
  top: 50%;
}

.gjs-frame-wrapper__icon {
  width: 24px;
  cursor: pointer;
}

.gjs-frame-wrapper__icon > svg {
  fill: currentColor;
}

.gjs-padding-v-top, .gjs-fixedpadding-v-top {
  width: 100%;
  top: 0;
  left: 0;
}

.gjs-padding-v-right, .gjs-fixedpadding-v-right {
  right: 0;
}

.gjs-padding-v-bottom, .gjs-fixedpadding-v-bottom {
  width: 100%;
  left: 0;
  bottom: 0;
}

.gjs-padding-v-left, .gjs-fixedpadding-v-left {
  left: 0;
}

.gjs-cv-canvas {
  box-sizing: border-box;
  width: calc(100% - var(--gjs-left-width));
  height: calc(100% - var(--gjs-canvas-top));
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  position: absolute;
  left: 0;
  top: var(--gjs-canvas-top);
}

.gjs-cv-canvas-bg {
  background-color: rgba(0, 0, 0, 0.15);
}

.gjs-cv-canvas.gjs-cui {
  width: 100%;
  height: 100%;
  top: 0;
}

.gjs-cv-canvas.gjs-is__grab .gjs-cv-canvas__frames, .gjs-cv-canvas.gjs-is__grabbing .gjs-cv-canvas__frames {
  pointer-events: none;
}

.gjs-cv-canvas__frames {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-cv-canvas__spots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.gjs-cv-canvas .gjs-ghost {
  display: none;
  pointer-events: none;
  background-color: #5b5b5b;
  border: 2px dashed #ccc;
  position: absolute;
  z-index: 10;
  opacity: 0.55;
  filter: alpha(opacity=55);
}

.gjs-cv-canvas .gjs-highlighter, .gjs-cv-canvas .gjs-highlighter-sel {
  position: absolute;
  outline: 1px solid var(--gjs-color-blue);
  outline-offset: -1px;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.gjs-cv-canvas .gjs-highlighter-warning {
  outline: 3px solid var(--gjs-color-yellow);
}

.gjs-cv-canvas .gjs-highlighter-sel {
  outline: 2px solid var(--gjs-color-blue);
  outline-offset: -2px;
}

.gjs-cv-canvas #gjs-tools, .gjs-cv-canvas .gjs-tools {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  outline: none;
  z-index: 1;
}

.gjs-cv-canvas #gjs-tools {
  z-index: 2;
}

.gjs-cv-canvas * {
  box-sizing: border-box;
}

.gjs-frame {
  outline: medium none;
  height: 100%;
  width: 100%;
  border: none;
  margin: auto;
  display: block;
  transition: width 0.35s ease, height 0.35s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.gjs-toolbar {
  position: absolute;
  background-color: var(--gjs-color-blue);
  white-space: nowrap;
  color: #fff;
  z-index: 10;
  top: 0;
  left: 0;
}

.gjs-toolbar-item {
  width: 26px;
  padding: 5px;
  cursor: pointer;
  display: inline-block;
}

.gjs-toolbar-item svg {
  fill: currentColor;
  vertical-align: middle;
}

.gjs-resizer-c {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.gjs-margin-v-el, .gjs-padding-v-el, .gjs-fixedmargin-v-el, .gjs-fixedpadding-v-el {
  opacity: 0.1;
  filter: alpha(opacity=10);
  position: absolute;
  background-color: #ff0;
}

.gjs-fixedmargin-v-el, .gjs-fixedpadding-v-el {
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.gjs-padding-v-el, .gjs-fixedpadding-v-el {
  background-color: navy;
}

.gjs-resizer-h {
  pointer-events: all;
  position: absolute;
  border: 3px solid var(--gjs-color-blue);
  width: 10px;
  height: 10px;
  background-color: #fff;
  margin: var(--gjs-handle-margin);
}

.gjs-resizer-h-tl {
  top: 0;
  left: 0;
  cursor: nwse-resize;
}

.gjs-resizer-h-tr {
  top: 0;
  right: 0;
  cursor: nesw-resize;
}

.gjs-resizer-h-tc {
  top: 0;
  margin: var(--gjs-handle-margin) auto;
  left: 0;
  right: 0;
  cursor: ns-resize;
}

.gjs-resizer-h-cl {
  left: 0;
  margin: auto var(--gjs-handle-margin);
  top: 0;
  bottom: 0;
  cursor: ew-resize;
}

.gjs-resizer-h-cr {
  margin: auto var(--gjs-handle-margin);
  top: 0;
  bottom: 0;
  right: 0;
  cursor: ew-resize;
}

.gjs-resizer-h-bl {
  bottom: 0;
  left: 0;
  cursor: nesw-resize;
}

.gjs-resizer-h-bc {
  bottom: 0;
  margin: var(--gjs-handle-margin) auto;
  left: 0;
  right: 0;
  cursor: ns-resize;
}

.gjs-resizer-h-br {
  bottom: 0;
  right: 0;
  cursor: nwse-resize;
}

.gjs-pn-panel .gjs-resizer-h {
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.gjs-pn-panel .gjs-resizer-h:hover {
  opacity: 1;
}

.gjs-pn-panel .gjs-resizer-h-tc, .gjs-pn-panel .gjs-resizer-h-bc {
  margin: 0 auto;
  width: 100%;
}

.gjs-pn-panel .gjs-resizer-h-cr, .gjs-pn-panel .gjs-resizer-h-cl {
  margin: auto 0;
  height: 100%;
}

.gjs-resizing .gjs-highlighter, .gjs-resizing .gjs-badge {
  display: none !important;
}

.gjs-resizing-tl * {
  cursor: nwse-resize !important;
}

.gjs-resizing-tr * {
  cursor: nesw-resize !important;
}

.gjs-resizing-tc * {
  cursor: ns-resize !important;
}

.gjs-resizing-cl * {
  cursor: ew-resize !important;
}

.gjs-resizing-cr * {
  cursor: ew-resize !important;
}

.gjs-resizing-bl * {
  cursor: nesw-resize !important;
}

.gjs-resizing-bc * {
  cursor: ns-resize !important;
}

.gjs-resizing-br * {
  cursor: nwse-resize !important;
}

.no-dots, .ui-resizable-handle {
  border: none !important;
  margin: 0 !important;
  outline: none !important;
}

.gjs-com-dashed * {
  outline: 1px dashed #888;
  outline-offset: -2px;
  box-sizing: border-box;
}

.gjs-com-badge, .gjs-badge {
  pointer-events: none;
  background-color: var(--gjs-color-blue);
  color: #fff;
  padding: 2px 5px;
  position: absolute;
  z-index: 1;
  font-size: 12px;
  outline: none;
  display: none;
}

.gjs-badge-warning {
  background-color: var(--gjs-color-yellow);
}

.gjs-placeholder, .gjs-com-placeholder, .gjs-placeholder {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  display: none;
}

.gjs-placeholder, .gjs-placeholder {
  border-style: solid !important;
  outline: none;
  box-sizing: border-box;
  transition: top var(--gjs-animation-duration), left var(--gjs-animation-duration), width var(--gjs-animation-duration), height var(--gjs-animation-duration);
}

.gjs-placeholder.horizontal, .gjs-com-placeholder.horizontal, .gjs-placeholder.horizontal {
  border-color: rgba(0, 0, 0, 0) var(--gjs-placeholder-background-color);
  border-width: 3px 5px;
  margin: -3px 0 0;
}

.gjs-placeholder.vertical, .gjs-com-placeholder.vertical, .gjs-placeholder.vertical {
  border-color: var(--gjs-placeholder-background-color) rgba(0, 0, 0, 0);
  border-width: 5px 3px;
  margin: 0 0 0 -3px;
}

.gjs-placeholder-int, .gjs-com-placeholder-int, .gjs-placeholder-int {
  background-color: var(--gjs-placeholder-background-color);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  pointer-events: none;
  padding: 1.5px;
  outline: none;
}

.gjs-pn-panel {
  display: inline-block;
  position: absolute;
  box-sizing: border-box;
  text-align: center;
  padding: 5px;
  z-index: 3;
}

.gjs-pn-panel .icon-undo, .gjs-pn-panel .icon-redo {
  font-size: 20px;
  height: 30px;
  width: 25px;
}

.gjs-pn-commands {
  width: calc(100% - var(--gjs-left-width));
  left: 0;
  top: 0;
  box-shadow: 0 0 5px var(--gjs-main-dark-color);
}

.gjs-pn-options {
  right: var(--gjs-left-width);
  top: 0;
}

.gjs-pn-views {
  border-bottom: 2px solid var(--gjs-main-dark-color);
  right: 0;
  width: var(--gjs-left-width);
  z-index: 4;
}

.gjs-pn-views-container {
  height: 100%;
  padding: 42px 0 0;
  right: 0;
  width: var(--gjs-left-width);
  overflow: auto;
  box-shadow: 0 0 5px var(--gjs-main-dark-color);
}

.gjs-pn-buttons {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.gjs-pn-btn {
  box-sizing: border-box;
  min-height: 30px;
  min-width: 30px;
  line-height: 21px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  font-size: 18px;
  margin-right: 5px;
  border-radius: 2px;
  padding: 4px;
  position: relative;
  cursor: pointer;
}

.gjs-pn-btn.gjs-pn-active {
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25) inset;
}

.gjs-pn-btn svg {
  fill: currentColor;
}

.gjs-label {
  line-height: 18px;
}

.gjs-fields {
  display: flex;
}

.gjs-select {
  padding: 0;
  width: 100%;
}

.gjs-select select {
  padding-right: 10px;
}

.gjs-select:-moz-focusring, .gjs-select select:-moz-focusring {
  color: rgba(0, 0, 0, 0);
  text-shadow: 0 0 0 var(--gjs-secondary-light-color);
}

.gjs-input:focus, .gjs-button:focus, .gjs-btn-prim:focus, .gjs-select:focus, .gjs-select select:focus {
  outline: none;
}

.gjs-field input, .gjs-field select, .gjs-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  width: 100%;
  position: relative;
  padding: var(--gjs-input-padding);
  z-index: 1;
}

.gjs-field input:focus, .gjs-field select:focus, .gjs-field textarea:focus {
  outline: none;
}

.gjs-field input[type=number] {
  -moz-appearance: textfield;
}

.gjs-field input[type=number]::-webkit-outer-spin-button, .gjs-field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gjs-field-range {
  flex: 9 1 auto;
}

.gjs-field-integer input {
  padding-right: 30px;
}

.gjs-select option, .gjs-field-select option, .gjs-clm-select option, .gjs-sm-select option, .gjs-fields option, .gjs-sm-unit option {
  background-color: var(--gjs-main-color);
  color: var(--gjs-font-color);
}

.gjs-field {
  background-color: var(--gjs-main-dark-color);
  border: none;
  box-shadow: none;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 0;
  position: relative;
}

.gjs-field textarea {
  resize: vertical;
}

.gjs-field .gjs-sel-arrow {
  height: 100%;
  width: 9px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.gjs-field .gjs-d-s-arrow {
  bottom: 0;
  top: 0;
  margin: auto;
  right: var(--gjs-input-padding);
  border-top: 4px solid var(--gjs-arrow-color);
  position: absolute;
  height: 0;
  width: 0;
  border-left: 3px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.gjs-field-arrows {
  position: absolute;
  cursor: ns-resize;
  margin: auto;
  height: 20px;
  width: 9px;
  z-index: 10;
  bottom: 0;
  right: calc(var(--gjs-input-padding) - 2px);
  top: 0;
}

.gjs-field-color, .gjs-field-radio {
  width: 100%;
}

.gjs-field-color input {
  padding-right: var(--gjs-color-input-padding);
  box-sizing: border-box;
}

.gjs-field-colorp {
  border-left: 1px solid var(--gjs-main-dark-color);
  box-sizing: border-box;
  height: 100%;
  padding: 2px;
  position: absolute;
  right: 0;
  top: 0;
  width: var(--gjs-color-input-padding);
  z-index: 10;
}

.gjs-field-colorp .gjs-checker-bg, .gjs-field-colorp .gjs-field-colorp-c {
  height: 100%;
  width: 100%;
  border-radius: 1px;
}

.gjs-field-colorp-c {
  height: 100%;
  position: relative;
  width: 100%;
}

.gjs-field-color-picker {
  background-color: var(--gjs-font-color);
  cursor: pointer;
  height: 100%;
  width: 100%;
  box-shadow: 0 0 1px var(--gjs-main-dark-color);
  border-radius: 1px;
  position: absolute;
  top: 0;
}

.gjs-field-checkbox {
  padding: 0;
  width: 17px;
  height: 17px;
  display: block;
  cursor: pointer;
}

.gjs-field-checkbox input {
  display: none;
}

.gjs-field-checkbox input:checked + .gjs-chk-icon {
  border-color: hsla(0, 0%, 100%, 0.5);
  border-width: 0 2px 2px 0;
  border-style: solid;
}

.gjs-radio-item {
  flex: 1 1 auto;
  text-align: center;
  border-left: 1px solid var(--gjs-dark-text-shadow);
}

.gjs-radio-item:first-child {
  border: none;
}

.gjs-radio-item:hover {
  background: var(--gjs-main-dark-color);
}

.gjs-radio-item input {
  display: none;
}

.gjs-radio-item input:checked + .gjs-radio-item-label {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.gjs-radio-items {
  display: flex;
}

.gjs-radio-item-label {
  cursor: pointer;
  display: block;
  padding: var(--gjs-input-padding);
}

.gjs-field-units {
  position: absolute;
  margin: auto;
  right: 10px;
  bottom: 0;
  top: 0;
}

.gjs-field-unit {
  position: absolute;
  right: 10px;
  top: 3px;
  font-size: 10px;
  color: var(--gjs-arrow-color);
  cursor: pointer;
}

.gjs-input-unit {
  text-align: center;
}

.gjs-field-arrow-u, .gjs-field-arrow-d {
  position: absolute;
  height: 0;
  width: 0;
  border-left: 3px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-top: 4px solid var(--gjs-arrow-color);
  bottom: 4px;
  cursor: pointer;
}

.gjs-field-arrow-u {
  border-bottom: 4px solid var(--gjs-arrow-color);
  border-top: none;
  top: 4px;
}

.gjs-field-select {
  padding: 0;
}

.gjs-field-range {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  box-shadow: none;
  padding: 0;
}

.gjs-field-range input {
  margin: 0;
  height: 100%;
}

.gjs-field-range input:focus {
  outline: none;
}

.gjs-field-range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  margin-top: -4px;
  height: 10px;
  width: 10px;
  border: 1px solid var(--gjs-main-dark-color);
  border-radius: 100%;
  background-color: var(--gjs-font-color);
  cursor: pointer;
}

.gjs-field-range input::-moz-range-thumb {
  height: 10px;
  width: 10px;
  border: 1px solid var(--gjs-main-dark-color);
  border-radius: 100%;
  background-color: var(--gjs-font-color);
  cursor: pointer;
}

.gjs-field-range input::-ms-thumb {
  height: 10px;
  width: 10px;
  border: 1px solid var(--gjs-main-dark-color);
  border-radius: 100%;
  background-color: var(--gjs-font-color);
  cursor: pointer;
}

.gjs-field-range input::-moz-range-track {
  background-color: var(--gjs-main-dark-color);
  border-radius: 1px;
  margin-top: 3px;
  height: 3px;
}

.gjs-field-range input::-webkit-slider-runnable-track {
  background-color: var(--gjs-main-dark-color);
  border-radius: 1px;
  margin-top: 3px;
  height: 3px;
}

.gjs-field-range input::-ms-track {
  background-color: var(--gjs-main-dark-color);
  border-radius: 1px;
  margin-top: 3px;
  height: 3px;
}

.gjs-btn-prim {
  color: inherit;
  background-color: var(--gjs-main-light-color);
  border-radius: 2px;
  padding: 3px 6px;
  padding: var(--gjs-input-padding);
  cursor: pointer;
  border: none;
}

.gjs-btn-prim:active {
  background-color: var(--gjs-main-light-color);
}

.gjs-btn--full {
  width: 100%;
}

.gjs-chk-icon {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  box-sizing: border-box;
  display: block;
  height: 14px;
  margin: 0 5px;
  width: 6px;
}

.gjs-add-trasp {
  background: none;
  border: none;
  color: var(--gjs-font-color);
  cursor: pointer;
  font-size: 1em;
  border-radius: 2px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.gjs-add-trasp:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.gjs-add-trasp:active {
  background-color: rgba(0, 0, 0, 0.2);
}

.gjs-devices-c {
  display: flex;
  align-items: center;
  padding: 2px 3px 3px 3px;
}

.gjs-devices-c .gjs-device-label {
  flex-grow: 2;
  text-align: left;
  margin-right: 10px;
}

.gjs-devices-c .gjs-select {
  flex-grow: 20;
}

.gjs-devices-c .gjs-add-trasp {
  flex-grow: 1;
  margin-left: 5px;
}

.gjs-sm-clear {
  cursor: pointer;
  width: 14px;
  min-width: 14px;
  height: 14px;
  margin-left: 3px;
}

.gjs-sm-header {
  font-weight: lighter;
  padding: 10px;
}

.gjs-sm-sector {
  clear: both;
  font-weight: lighter;
  text-align: left;
}

.gjs-sm-sector-title {
  display: flex;
  align-items: center;
}

.gjs-sm-sector-caret {
  width: 17px;
  height: 17px;
  min-width: 17px;
  transform: rotate(-90deg);
}

.gjs-sm-sector-label {
  margin-left: 5px;
}

.gjs-sm-sector.gjs-sm-open .gjs-sm-sector-caret {
  transform: none;
}

.gjs-sm-properties {
  font-size: var(--gjs-font-size);
  padding: 10px 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  box-sizing: border-box;
  width: 100%;
}

.gjs-sm-label {
  margin: 5px 5px 3px 0;
  display: flex;
  align-items: center;
}

.gjs-sm-close-btn, .gjs-sm-preview-file-close {
  display: block;
  font-size: 23px;
  position: absolute;
  cursor: pointer;
  right: 5px;
  top: 0;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.gjs-sm-close-btn:hover, .gjs-sm-preview-file-close:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.gjs-sm-field, .gjs-clm-field, .gjs-clm-select {
  width: 100%;
  position: relative;
}

.gjs-sm-field input, .gjs-clm-field input, .gjs-clm-select input, .gjs-sm-field select, .gjs-clm-field select, .gjs-clm-select select {
  background-color: rgba(0, 0, 0, 0);
  color: hsla(0, 0%, 100%, 0.7);
  border: none;
  width: 100%;
}

.gjs-sm-field input, .gjs-clm-field input, .gjs-clm-select input {
  box-sizing: border-box;
}

.gjs-sm-field select, .gjs-clm-field select, .gjs-clm-select select {
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gjs-sm-field select::-ms-expand, .gjs-clm-field select::-ms-expand, .gjs-clm-select select::-ms-expand {
  display: none;
}

.gjs-sm-field select:-moz-focusring, .gjs-clm-field select:-moz-focusring, .gjs-clm-select select:-moz-focusring {
  color: rgba(0, 0, 0, 0);
  text-shadow: 0 0 0 var(--gjs-secondary-light-color);
}

.gjs-sm-field input:focus, .gjs-clm-field input:focus, .gjs-clm-select input:focus, .gjs-sm-field select:focus, .gjs-clm-field select:focus, .gjs-clm-select select:focus {
  outline: none;
}

.gjs-sm-field .gjs-sm-unit, .gjs-clm-field .gjs-sm-unit, .gjs-clm-select .gjs-sm-unit {
  position: absolute;
  right: 10px;
  top: 3px;
  font-size: 10px;
  color: var(--gjs-secondary-light-color);
  cursor: pointer;
}

.gjs-sm-field .gjs-clm-sel-arrow, .gjs-clm-field .gjs-clm-sel-arrow, .gjs-clm-select .gjs-clm-sel-arrow, .gjs-sm-field .gjs-sm-int-arrows, .gjs-clm-field .gjs-sm-int-arrows, .gjs-clm-select .gjs-sm-int-arrows, .gjs-sm-field .gjs-sm-sel-arrow, .gjs-clm-field .gjs-sm-sel-arrow, .gjs-clm-select .gjs-sm-sel-arrow {
  height: 100%;
  width: 9px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: ns-resize;
}

.gjs-sm-field .gjs-sm-sel-arrow, .gjs-clm-field .gjs-sm-sel-arrow, .gjs-clm-select .gjs-sm-sel-arrow {
  cursor: pointer;
}

.gjs-sm-field .gjs-clm-d-s-arrow, .gjs-clm-field .gjs-clm-d-s-arrow, .gjs-clm-select .gjs-clm-d-s-arrow, .gjs-sm-field .gjs-sm-d-arrow, .gjs-clm-field .gjs-sm-d-arrow, .gjs-clm-select .gjs-sm-d-arrow, .gjs-sm-field .gjs-sm-d-s-arrow, .gjs-clm-field .gjs-sm-d-s-arrow, .gjs-clm-select .gjs-sm-d-s-arrow, .gjs-sm-field .gjs-sm-u-arrow, .gjs-clm-field .gjs-sm-u-arrow, .gjs-clm-select .gjs-sm-u-arrow {
  position: absolute;
  height: 0;
  width: 0;
  border-left: 3px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.gjs-sm-field .gjs-sm-u-arrow, .gjs-clm-field .gjs-sm-u-arrow, .gjs-clm-select .gjs-sm-u-arrow {
  border-bottom: 4px solid var(--gjs-secondary-light-color);
  top: 4px;
}

.gjs-sm-field .gjs-clm-d-s-arrow, .gjs-clm-field .gjs-clm-d-s-arrow, .gjs-clm-select .gjs-clm-d-s-arrow, .gjs-sm-field .gjs-sm-d-arrow, .gjs-clm-field .gjs-sm-d-arrow, .gjs-clm-select .gjs-sm-d-arrow, .gjs-sm-field .gjs-sm-d-s-arrow, .gjs-clm-field .gjs-sm-d-s-arrow, .gjs-clm-select .gjs-sm-d-s-arrow {
  border-top: 4px solid var(--gjs-secondary-light-color);
  bottom: 4px;
}

.gjs-sm-field .gjs-clm-d-s-arrow, .gjs-clm-field .gjs-clm-d-s-arrow, .gjs-clm-select .gjs-clm-d-s-arrow, .gjs-sm-field .gjs-sm-d-s-arrow, .gjs-clm-field .gjs-sm-d-s-arrow, .gjs-clm-select .gjs-sm-d-s-arrow {
  bottom: 7px;
}

.gjs-sm-field.gjs-sm-color, .gjs-sm-color.gjs-clm-field, .gjs-sm-field.gjs-sm-input, .gjs-sm-input.gjs-clm-field, .gjs-sm-field.gjs-sm-integer, .gjs-sm-integer.gjs-clm-field, .gjs-sm-field.gjs-sm-list, .gjs-sm-list.gjs-clm-field, .gjs-sm-field.gjs-sm-select, .gjs-sm-select.gjs-clm-field, .gjs-clm-select {
  background-color: var(--gjs-main-dark-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 0 var(--gjs-main-light-color);
  color: var(--gjs-secondary-light-color);
  border-radius: 2px;
  box-sizing: border-box;
  padding: 0 5px;
}

.gjs-sm-field.gjs-sm-composite, .gjs-sm-composite.gjs-clm-field, .gjs-sm-composite.gjs-clm-select {
  border-radius: 2px;
}

.gjs-sm-field.gjs-sm-select, .gjs-sm-select.gjs-clm-field, .gjs-clm-select {
  padding: 0;
}

.gjs-sm-field.gjs-sm-select select, .gjs-sm-select.gjs-clm-field select, .gjs-clm-select select {
  height: 20px;
}

.gjs-sm-field.gjs-sm-select option, .gjs-sm-select.gjs-clm-field option, .gjs-clm-select option {
  padding: 3px 0;
}

.gjs-sm-field.gjs-sm-composite, .gjs-sm-composite.gjs-clm-field, .gjs-sm-composite.gjs-clm-select {
  background-color: var(--gjs-secondary-dark-color);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.gjs-sm-field.gjs-sm-list, .gjs-sm-list.gjs-clm-field, .gjs-sm-list.gjs-clm-select {
  width: auto;
  padding: 0;
  overflow: hidden;
  float: left;
}

.gjs-sm-field.gjs-sm-list input, .gjs-sm-list.gjs-clm-field input, .gjs-sm-list.gjs-clm-select input {
  display: none;
}

.gjs-sm-field.gjs-sm-list label, .gjs-sm-list.gjs-clm-field label, .gjs-sm-list.gjs-clm-select label {
  cursor: pointer;
  padding: 5px;
  display: block;
}

.gjs-sm-field.gjs-sm-list .gjs-sm-radio:checked + label, .gjs-sm-list.gjs-clm-field .gjs-sm-radio:checked + label, .gjs-sm-list.gjs-clm-select .gjs-sm-radio:checked + label {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.gjs-sm-field.gjs-sm-list .gjs-sm-icon, .gjs-sm-list.gjs-clm-field .gjs-sm-icon, .gjs-sm-list.gjs-clm-select .gjs-sm-icon {
  background-repeat: no-repeat;
  background-position: center;
  text-shadow: none;
  line-height: normal;
}

.gjs-sm-field.gjs-sm-integer select, .gjs-sm-integer.gjs-clm-field select, .gjs-sm-integer.gjs-clm-select select {
  width: auto;
  padding: 0;
}

.gjs-sm-list .gjs-sm-el {
  float: left;
  border-left: 1px solid var(--gjs-main-dark-color);
}

.gjs-sm-list .gjs-sm-el:first-child {
  border: none;
}

.gjs-sm-list .gjs-sm-el:hover {
  background: var(--gjs-main-dark-color);
}

.gjs-sm-slider .gjs-field-integer {
  flex: 1 1 65px;
}

.gjs-sm-property {
  box-sizing: border-box;
  float: left;
  width: 50%;
  margin-bottom: 5px;
  padding: 0 5px;
}

.gjs-sm-property--full, .gjs-sm-property.gjs-sm-composite, .gjs-sm-property.gjs-sm-file, .gjs-sm-property.gjs-sm-list, .gjs-sm-property.gjs-sm-stack, .gjs-sm-property.gjs-sm-slider, .gjs-sm-property.gjs-sm-color {
  width: 100%;
}

.gjs-sm-property .gjs-sm-btn {
  background-color: color-mix(in srgb, var(--gjs-main-dark-color), white 13%);
  border-radius: 2px;
  box-shadow: 1px 1px 0 color-mix(in srgb, var(--gjs-main-dark-color), white 2%), 1px 1px 0 color-mix(in srgb, var(--gjs-main-dark-color), white 17%) inset;
  padding: 5px;
  position: relative;
  text-align: center;
  height: auto;
  width: 100%;
  cursor: pointer;
  color: var(--gjs-font-color);
  box-sizing: border-box;
  text-shadow: -1px -1px 0 var(--gjs-main-dark-color);
  border: none;
  opacity: 0.85;
  filter: alpha(opacity=85);
}

.gjs-sm-property .gjs-sm-btn-c {
  box-sizing: border-box;
  float: left;
  width: 100%;
}

.gjs-sm-property__text-shadow .gjs-sm-layer-preview-cnt::after {
  color: #000;
  content: "T";
  font-weight: 900;
  line-height: 17px;
  padding: 0 4px;
}

.gjs-sm-preview-file {
  background-color: var(--gjs-light-border);
  border-radius: 2px;
  margin-top: 5px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gjs-light-border), black 1%);
  padding: 3px 20px;
}

.gjs-sm-preview-file-cnt {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  height: 50px;
}

.gjs-sm-preview-file-close {
  top: -5px;
  width: 14px;
  height: 14px;
}

.gjs-sm-layers {
  margin-top: 5px;
  padding: 1px 3px;
  min-height: 30px;
}

.gjs-sm-layer {
  background-color: hsla(0, 0%, 100%, 0.055);
  border-radius: 2px;
  margin: 2px 0;
  padding: 7px;
  position: relative;
}

.gjs-sm-layer.gjs-sm-active {
  background-color: hsla(0, 0%, 100%, 0.12);
}

.gjs-sm-layer .gjs-sm-label-wrp {
  display: flex;
  align-items: center;
}

.gjs-sm-layer #gjs-sm-move {
  height: 14px;
  width: 14px;
  min-width: 14px;
  cursor: grab;
}

.gjs-sm-layer #gjs-sm-label {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 5px;
}

.gjs-sm-layer-preview {
  height: 15px;
  width: 15px;
  min-width: 15px;
  margin-right: 5px;
  border-radius: 2px;
}

.gjs-sm-layer-preview-cnt {
  border-radius: 2px;
  background-color: #fff;
  height: 100%;
  width: 100%;
  background-size: cover !important;
}

.gjs-sm-layer #gjs-sm-close-layer {
  display: block;
  cursor: pointer;
  height: 14px;
  width: 14px;
  min-width: 14px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.gjs-sm-layer #gjs-sm-close-layer:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.gjs-sm-stack .gjs-sm-properties {
  padding: 5px 0 0;
}

.gjs-sm-stack #gjs-sm-add {
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 0;
  top: -17px;
  opacity: 0.75;
  padding: 0;
  width: 18px;
  height: 18px;
}

.gjs-sm-stack #gjs-sm-add:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.gjs-sm-colorp-c {
  height: 100%;
  width: 20px;
  position: absolute;
  right: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 2px;
}

.gjs-sm-colorp-c .gjs-field-colorp-c, .gjs-sm-colorp-c .gjs-checker-bg {
  height: 100%;
  width: 100%;
  border-radius: 1px;
}

.gjs-sm-color-picker {
  background-color: var(--gjs-font-color);
  cursor: pointer;
  height: 16px;
  width: 100%;
  margin-top: -16px;
  box-shadow: 0 0 1px var(--gjs-main-dark-color);
  border-radius: 1px;
}

.gjs-sm-btn-upload #gjs-sm-upload {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.gjs-sm-btn-upload #gjs-sm-label {
  padding: 2px 0;
}

.gjs-sm-layer > #gjs-sm-move {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: move;
  font-size: 12px;
  float: left;
  margin: 0 5px 0 0;
}

.gjs-sm-layer > #gjs-sm-move:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.gjs-blocks-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.gjs-block-categories {
  display: flex;
  flex-direction: column;
}

.gjs-block-category {
  width: 100%;
}

.gjs-block-category .gjs-caret-icon {
  margin-right: 5px;
}

.gjs-block {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 45%;
  min-width: 45px;
  padding: 1em;
  box-sizing: border-box;
  min-height: 90px;
  cursor: all-scroll;
  font-size: 11px;
  font-weight: lighter;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  margin: 10px 2.5% 5px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease 0s;
  transition-property: box-shadow, color;
}

.gjs-block:hover {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.15);
}

.gjs-block svg {
  fill: currentColor;
}

.gjs-block__media {
  margin-bottom: 10px;
  pointer-events: none;
}

.gjs-block-svg {
  width: 54px;
  fill: currentColor;
}

.gjs-block-svg-path {
  fill: currentColor;
}

.gjs-block.fa {
  font-size: 2em;
  line-height: 2em;
  padding: 11px;
}

.gjs-block-label {
  line-height: normal;
  font-size: 0.65rem;
  font-weight: normal;
  font-family: Helvetica, sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

.gjs-block.gjs-bdrag {
  width: auto;
  padding: 0;
}

.gjs-selected-parent {
  border: 1px solid var(--gjs-color-yellow);
}

.gjs-opac50 {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.gjs-layer {
  font-weight: lighter;
  text-align: left;
  position: relative;
  font-size: var(--gjs-font-size);
  display: grid;
}

.gjs-layer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  border-bottom: 1px solid var(--gjs-main-dark-color);
  background-color: var(--gjs-secondary-dark-color);
  gap: var(--gjs-flex-item-gap);
  cursor: pointer;
}

.gjs-layer-item-left, .gjs-layer-item-right {
  display: flex;
  align-items: center;
  gap: var(--gjs-flex-item-gap);
}

.gjs-layer-item-left {
  width: 100%;
}

.gjs-layer-hidden {
  opacity: 0.55;
  filter: alpha(opacity=55);
}

.gjs-layer-vis {
  box-sizing: content-box;
  cursor: pointer;
  z-index: 1;
}

.gjs-layer-vis-on, .gjs-layer-vis-off {
  display: flex;
  width: 13px;
  height: 13px;
}

.gjs-layer-vis-off {
  display: none;
}

.gjs-layer-vis.gjs-layer-off .gjs-layer-vis-on {
  display: none;
}

.gjs-layer-vis.gjs-layer-off .gjs-layer-vis-off {
  display: flex;
}

.gjs-layer-caret {
  width: 15px;
  height: 15px;
  cursor: pointer;
  box-sizing: content-box;
  transform: rotate(90deg);
  display: flex;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.gjs-layer-caret:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.gjs-layer.open > .gjs-layer-item .gjs-layer-caret {
  transform: rotate(180deg);
}

.gjs-layer-title {
  padding: 0;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0) !important;
  border-bottom: none;
}

.gjs-layer-title-inn {
  align-items: center;
  position: relative;
  display: flex;
  gap: var(--gjs-flex-item-gap);
}

.gjs-layer-title-c {
  width: 100%;
}

.gjs-layer__icon {
  display: block;
  width: 100%;
  max-width: 15px;
  max-height: 15px;
  padding-left: 5px;
}

.gjs-layer__icon svg {
  fill: currentColor;
}

.gjs-layer-name {
  display: inline-block;
  box-sizing: content-box;
  overflow: hidden;
  white-space: nowrap;
  max-width: 170px;
  height: auto;
}

.gjs-layer-name--no-edit {
  text-overflow: ellipsis;
}

.gjs-layer > .gjs-layer-children {
  display: none;
}

.gjs-layer.open > .gjs-layer-children {
  display: block;
}

.gjs-layer-no-chld > .gjs-layer-title-inn > .gjs-layer-caret {
  visibility: hidden;
}

.gjs-layer-move {
  display: flex;
  width: 13px;
  height: 13px;
  box-sizing: content-box;
  cursor: move;
}

.gjs-layer.gjs-hovered .gjs-layer-item {
  background-color: var(--gjs-soft-light-color);
}

.gjs-layer.gjs-selected .gjs-layer-item {
  background-color: var(--gjs-main-light-color);
}

.gjs-layers {
  position: relative;
  height: 100%;
}

.gjs-layers #gjs-placeholder {
  width: 100%;
  position: absolute;
}

.gjs-layers #gjs-placeholder #gjs-plh-int {
  height: 100%;
  padding: 1px;
}

.gjs-layers #gjs-placeholder #gjs-plh-int.gjs-insert {
  background-color: var(--gjs-color-green);
}

#gjs-clm-add-tag, .gjs-clm-tags-btn {
  background-color: hsla(0, 0%, 100%, 0.15);
  border-radius: 2px;
  padding: 3px;
  margin-right: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  cursor: pointer;
}

.gjs-clm-tags-btn svg {
  fill: currentColor;
  display: block;
}

.gjs-clm-header {
  display: flex;
  align-items: center;
  margin: 7px 0;
}

.gjs-clm-header-status {
  flex-shrink: 1;
  margin-left: auto;
}

.gjs-clm-tag {
  display: flex;
  overflow: hidden;
  align-items: center;
  border-radius: 3px;
  margin: 0 3px 3px 0;
  padding: 5px;
  cursor: default;
}

.gjs-clm-tag-status, .gjs-clm-tag-close {
  width: 12px;
  height: 12px;
  flex-shrink: 1;
}

.gjs-clm-tag-status svg, .gjs-clm-tag-close svg {
  vertical-align: middle;
  fill: currentColor;
}

.gjs-clm-sels-info {
  margin: 7px 0;
  text-align: left;
}

.gjs-clm-sel-id {
  font-size: 0.9em;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.gjs-clm-label-sel {
  float: left;
  padding-right: 5px;
}

.gjs-clm-tags {
  font-size: var(--gjs-font-size);
  padding: 10px 5px;
}

.gjs-clm-tags #gjs-clm-sel {
  padding: 7px 0;
  float: left;
}

.gjs-clm-tags #gjs-clm-sel {
  font-style: italic;
  margin-left: 5px;
}

.gjs-clm-tags #gjs-clm-tags-field {
  clear: both;
  padding: 5px;
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
}

.gjs-clm-tags #gjs-clm-tags-c {
  display: flex;
  flex-wrap: wrap;
  vertical-align: top;
  overflow: hidden;
}

.gjs-clm-tags #gjs-clm-new {
  color: var(--gjs-font-color);
  padding: var(--gjs-padding-elem-classmanager);
  display: none;
}

.gjs-clm-tags #gjs-clm-close {
  opacity: 0.85;
  filter: alpha(opacity=85);
  font-size: 20px;
  line-height: 0;
  cursor: pointer;
  color: hsla(0, 0%, 100%, 0.9);
}

.gjs-clm-tags #gjs-clm-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.gjs-clm-tags #gjs-clm-checkbox {
  color: hsla(0, 0%, 100%, 0.9);
  vertical-align: middle;
  cursor: pointer;
  font-size: 9px;
}

.gjs-clm-tags #gjs-clm-tag-label {
  flex-grow: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 0 3px;
  cursor: text;
}

.gjs-mdl-container {
  font-family: var(--gjs-main-font);
  overflow-y: auto;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
}

.gjs-mdl-dialog {
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.05);
  animation: gjs-slide-down 0.215s;
  margin: auto;
  max-width: 850px;
  width: 90%;
  border-radius: 3px;
  font-weight: lighter;
  position: relative;
  z-index: 2;
}

.gjs-mdl-title {
  font-size: 1rem;
}

.gjs-mdl-btn-close {
  position: absolute;
  right: 15px;
  top: 5px;
}

.gjs-mdl-active .gjs-mdl-dialog {
  animation: gjs-mdl-slide-down 0.216s;
}

.gjs-mdl-header, .gjs-mdl-content {
  padding: 10px 15px;
  clear: both;
}

.gjs-mdl-header {
  position: relative;
  border-bottom: 1px solid var(--gjs-main-dark-color);
  padding: 15px 15px 7px;
}

.gjs-export-dl::after {
  content: "";
  clear: both;
  display: block;
  margin-bottom: 10px;
}

.gjs-dropzone {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.25s;
  pointer-events: none;
}

.gjs-dropzone-active .gjs-dropzone {
  display: block;
  opacity: 1;
}

.gjs-am-assets {
  height: 290px;
  overflow: auto;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.gjs-am-assets-header {
  padding: 5px;
}

.gjs-am-add-asset .gjs-am-add-field {
  width: 70%;
  float: left;
}

.gjs-am-add-asset button {
  width: 25%;
  float: right;
}

.gjs-am-preview-cont {
  position: relative;
  height: 70px;
  width: 30%;
  background-color: var(--gjs-main-color);
  border-radius: 2px;
  float: left;
  overflow: hidden;
}

.gjs-am-preview {
  position: absolute;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.gjs-am-preview-bg {
  opacity: 0.5;
  filter: alpha(opacity=50);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.gjs-am-dimensions {
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 10px;
}

.gjs-am-meta {
  width: 70%;
  float: left;
  font-size: 12px;
  padding: 5px 0 0 5px;
  box-sizing: border-box;
}

.gjs-am-meta > div {
  margin-bottom: 5px;
}

.gjs-am-close {
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: 0;
  display: none;
}

.gjs-am-asset {
  border-bottom: 1px solid color-mix(in srgb, var(--gjs-main-dark-color), black 3%);
  padding: 5px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.gjs-am-asset:hover .gjs-am-close {
  display: block;
}

.gjs-am-highlight {
  background-color: var(--gjs-main-light-color);
}

.gjs-am-assets-cont {
  background-color: var(--gjs-secondary-dark-color);
  border-radius: 3px;
  box-sizing: border-box;
  padding: 10px;
  width: 45%;
  float: right;
  height: 325px;
  overflow: hidden;
}

.gjs-am-file-uploader {
  width: 55%;
  float: left;
}

.gjs-am-file-uploader > form {
  background-color: var(--gjs-secondary-dark-color);
  border: 2px dashed;
  border-radius: 3px;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}

.gjs-am-file-uploader > form.gjs-am-hover {
  border: 2px solid var(--gjs-color-green);
  color: color-mix(in srgb, var(--gjs-color-green), white 5%);
}

.gjs-am-file-uploader > form.gjs-am-disabled {
  border-color: red;
}

.gjs-am-file-uploader > form #gjs-am-uploadFile {
  opacity: 0;
  filter: alpha(opacity=0);
  padding: var(--gjs-upload-padding);
  width: 100%;
  box-sizing: border-box;
}

.gjs-am-file-uploader #gjs-am-title {
  position: absolute;
  padding: var(--gjs-upload-padding);
  width: 100%;
}

.gjs-cm-editor-c {
  float: left;
  box-sizing: border-box;
  width: 50%;
}

.gjs-cm-editor-c .CodeMirror {
  height: 450px;
}

.gjs-cm-editor {
  font-size: 12px;
}

.gjs-cm-editor#gjs-cm-htmlmixed {
  padding-right: 10px;
  border-right: 1px solid var(--gjs-main-dark-color);
}

.gjs-cm-editor#gjs-cm-htmlmixed #gjs-cm-title {
  color: #a97d44;
}

.gjs-cm-editor#gjs-cm-css {
  padding-left: 10px;
}

.gjs-cm-editor#gjs-cm-css #gjs-cm-title {
  color: #ddca7e;
}

.gjs-cm-editor #gjs-cm-title {
  background-color: var(--gjs-main-dark-color);
  font-size: 12px;
  padding: 5px 10px 3px;
  text-align: right;
}

.gjs-rte-toolbar {
  position: absolute;
  z-index: 10;
}

.gjs-rte-toolbar-ui {
  border: 1px solid var(--gjs-main-dark-color);
  border-radius: 3px;
}

.gjs-rte-actionbar {
  display: flex;
}

.gjs-rte-action {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 25px;
  border-right: 1px solid var(--gjs-main-dark-color);
  text-align: center;
  cursor: pointer;
  outline: none;
}

.gjs-rte-action:last-child {
  border-right: none;
}

.gjs-rte-action:hover {
  background-color: var(--gjs-main-light-color);
}

.gjs-rte-active {
  background-color: var(--gjs-main-light-color);
}

.gjs-rte-disabled {
  color: var(--gjs-main-light-color);
  cursor: not-allowed;
}

.gjs-rte-disabled:hover {
  background-color: unset;
}

.sp-container {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  z-index: 9999994;
  overflow: hidden;
}

.sp-container.sp-flat {
  position: relative;
}

.sp-container, .sp-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.sp-top {
  position: relative;
  width: 100%;
  display: inline-block;
}

.sp-top-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-color {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 20%;
}

.sp-hue {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 100%;
}

.sp-clear-enabled .sp-hue {
  top: 33px;
  height: 77.5%;
}

.sp-fill {
  padding-top: 80%;
}

.sp-sat, .sp-val {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sp-alpha-enabled .sp-top {
  margin-bottom: 18px;
}

.sp-alpha-enabled .sp-alpha {
  display: block;
}

.sp-alpha-handle {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 6px;
  left: 50%;
  cursor: pointer;
  border: 1px solid #000;
  background: #fff;
  opacity: 0.8;
}

.sp-alpha {
  display: none;
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  height: 8px;
}

.sp-alpha-inner {
  border: solid 1px #333;
}

.sp-clear {
  display: none;
}

.sp-clear.sp-clear-display {
  background-position: center;
}

.sp-clear-enabled .sp-clear {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 28px;
}

.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
  display: none;
}

.sp-container.sp-buttons-disabled .sp-button-container {
  display: none;
}

.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
  display: none;
}

.sp-palette-only .sp-picker-container {
  display: none;
}

.sp-palette-disabled .sp-palette-container {
  display: none;
}

.sp-initial-disabled .sp-initial {
  display: none;
}

.sp-sat {
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#fff), to(rgba(204, 154, 129, 0)));
  background-image: -webkit-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr="#FFFFFFFF", endColorstr="#00CC9A81");
}

.sp-val {
  background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
  background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
  background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00CC9A81", endColorstr="#FF000000");
}

.sp-hue {
  background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
  background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

.sp-1 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000", endColorstr="#ffff00");
}

.sp-2 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffff00", endColorstr="#00ff00");
}

.sp-3 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ff00", endColorstr="#00ffff");
}

.sp-4 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffff", endColorstr="#0000ff");
}

.sp-5 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0000ff", endColorstr="#ff00ff");
}

.sp-6 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff00ff", endColorstr="#ff0000");
}

.sp-hidden {
  display: none !important;
}

.sp-cf:before, .sp-cf:after {
  content: "";
  display: table;
}

.sp-cf:after {
  clear: both;
}

@media (max-device-width: 480px) {
  .sp-color {
    right: 40%;
  }

  .sp-hue {
    left: 63%;
  }

  .sp-fill {
    padding-top: 60%;
  }
}
.sp-dragger {
  border-radius: 5px;
  height: 5px;
  width: 5px;
  border: 1px solid #fff;
  background: #000;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.sp-slider {
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 3px;
  left: -1px;
  right: -1px;
  border: 1px solid #000;
  background: #fff;
  opacity: 0.8;
}

.sp-container {
  border-radius: 0;
  background-color: #ececec;
  border: solid 1px #f0c49b;
  padding: 0;
}

.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
  font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-top {
  margin-bottom: 3px;
}

.sp-color, .sp-hue, .sp-clear {
  border: solid 1px #666;
}

.sp-input-container {
  float: right;
  width: 100px;
  margin-bottom: 4px;
}

.sp-initial-disabled .sp-input-container {
  width: 100%;
}

.sp-input {
  font-size: 12px !important;
  border: 1px inset;
  padding: 4px 5px;
  margin: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  border-radius: 3px;
  color: #222;
}

.sp-input:focus {
  border: 1px solid orange;
}

.sp-input.sp-validation-error {
  border: 1px solid red;
  background: #fdd;
}

.sp-picker-container, .sp-palette-container {
  float: left;
  position: relative;
  padding: 10px;
  padding-bottom: 300px;
  margin-bottom: -290px;
}

.sp-picker-container {
  width: 172px;
  border-left: solid 1px #fff;
}

.sp-palette-container {
  border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
  border: 0;
}

.sp-palette .sp-thumb-el {
  display: block;
  position: relative;
  float: left;
  width: 24px;
  height: 15px;
  margin: 3px;
  cursor: pointer;
  border: solid 2px rgba(0, 0, 0, 0);
}

.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
  border-color: orange;
}

.sp-thumb-el {
  position: relative;
}

.sp-initial {
  float: left;
  border: solid 1px #333;
}

.sp-initial span {
  width: 30px;
  height: 25px;
  border: none;
  display: block;
  float: left;
  margin: 0;
}

.sp-initial .sp-clear-display {
  background-position: center;
}

.sp-palette-button-container, .sp-button-container {
  float: right;
}

.sp-replacer {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  display: inline-block;
  border: solid 1px #91765d;
  background: #eee;
  color: #333;
  vertical-align: middle;
}

.sp-replacer:hover, .sp-replacer.sp-active {
  border-color: #f0c49b;
  color: #111;
}

.sp-replacer.sp-disabled {
  cursor: default;
  border-color: silver;
  color: silver;
}

.sp-dd {
  padding: 2px 0;
  height: 16px;
  line-height: 16px;
  float: left;
  font-size: 10px;
}

.sp-preview {
  position: relative;
  width: 25px;
  height: 20px;
  border: solid 1px #222;
  margin-right: 5px;
  float: left;
  z-index: 0;
}

.sp-palette {
  max-width: 220px;
}

.sp-palette .sp-thumb-el {
  width: 16px;
  height: 16px;
  margin: 2px 1px;
  border: solid 1px #d0d0d0;
}

.sp-container {
  padding-bottom: 0;
}

.sp-container button {
  background-color: #eee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}

.sp-container button:hover {
  background-color: #ddd;
  background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
  border: 1px solid #bbb;
  border-bottom: 1px solid #999;
  cursor: pointer;
  text-shadow: 0 1px 0 #ddd;
}

.sp-container button:active {
  border: 1px solid #aaa;
  border-bottom: 1px solid #888;
  -webkit-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
  -moz-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
  -ms-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
  -o-box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
  box-shadow: inset 0 0 5px 2px #aaa, 0 1px 0 0 #eee;
}

.sp-cancel {
  font-size: 11px;
  color: #d93f3f !important;
  margin: 0;
  padding: 2px;
  margin-right: 5px;
  vertical-align: middle;
  text-decoration: none;
}

.sp-cancel:hover {
  color: #d93f3f !important;
  text-decoration: underline;
}

.sp-palette span:hover, .sp-palette span.sp-thumb-active {
  border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
  position: relative;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-palette .sp-thumb-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

.gjs-editor-sp {
  border: 1px solid var(--gjs-main-dark-color);
  box-shadow: 0 0 7px var(--gjs-main-dark-color);
  border-radius: 3px;
}

.gjs-editor-sp .sp-hue, .gjs-editor-sp .sp-slider {
  cursor: row-resize;
}

.gjs-editor-sp .sp-color, .gjs-editor-sp .sp-dragger {
  cursor: crosshair;
}

.gjs-editor-sp .sp-alpha-inner, .gjs-editor-sp .sp-alpha-handle {
  cursor: col-resize;
}

.gjs-editor-sp .sp-hue {
  left: 90%;
}

.gjs-editor-sp .sp-color {
  right: 15%;
}

.gjs-editor-sp .sp-picker-container {
  border: none;
}

.gjs-editor-sp .colpick_dark .colpick_color {
  outline: 1px solid var(--gjs-main-dark-color);
}

.gjs-editor-sp .sp-cancel, .gjs-editor-sp .sp-cancel:hover {
  bottom: -8px;
  color: #777 !important;
  font-size: 25px;
  left: 0;
  position: absolute;
  text-decoration: none;
}

.gjs-editor-sp .sp-alpha-handle {
  background-color: #ccc;
  border: 1px solid #555;
  width: 4px;
}

.gjs-editor-sp .sp-color, .gjs-editor-sp .sp-hue {
  border: 1px solid #333;
}

.gjs-editor-sp .sp-slider {
  background-color: #ccc;
  border: 1px solid #555;
  height: 3px;
  left: -4px;
  width: 22px;
}

.gjs-editor-sp .sp-dragger {
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 1px #111;
}

.gjs-editor-sp .sp-button-container {
  float: none;
  width: 100%;
  position: relative;
  text-align: right;
}

.gjs-editor-sp .sp-button-container .sp-choose, .gjs-editor-sp .sp-button-container .sp-choose:hover, .gjs-editor-sp .sp-button-container .sp-choose:active {
  background: var(--gjs-main-dark-color);
  border-color: var(--gjs-main-dark-color);
  color: var(--gjs-font-color);
  text-shadow: none;
  box-shadow: none;
  padding: 3px 5px;
}

.gjs-editor-sp .sp-palette-container {
  border: none;
  float: none;
  margin: 0;
  padding: 5px 10px 0;
}

.gjs-editor-sp .sp-palette .sp-thumb-el, .gjs-editor-sp .sp-palette .sp-thumb-el:hover {
  border: 1px solid rgba(0, 0, 0, 0.9);
}

.gjs-editor-sp .sp-palette .sp-thumb-el:hover, .gjs-editor-sp .sp-palette .sp-thumb-el.sp-thumb-active {
  border-color: rgba(0, 0, 0, 0.9);
}

.gjs-one-bg {
  background-color: var(--gjs-primary-color);
}

.gjs-one-color {
  color: var(--gjs-primary-color);
}

.gjs-one-color-h:hover {
  color: var(--gjs-primary-color);
}

.gjs-two-bg {
  background-color: var(--gjs-secondary-color);
}

.gjs-two-color {
  color: var(--gjs-secondary-color);
}

.gjs-two-color-h:hover {
  color: var(--gjs-secondary-color);
}

.gjs-three-bg {
  background-color: var(--gjs-tertiary-color);
}

.gjs-three-color {
  color: var(--gjs-tertiary-color);
}

.gjs-three-color-h:hover {
  color: var(--gjs-tertiary-color);
}

.gjs-four-bg {
  background-color: var(--gjs-quaternary-color);
}

.gjs-four-color {
  color: var(--gjs-quaternary-color);
}

.gjs-four-color-h:hover {
  color: var(--gjs-quaternary-color);
}

.gjs-danger-bg {
  background-color: var(--gjs-color-red);
}

.gjs-danger-color {
  color: var(--gjs-color-red);
}

.gjs-danger-color-h:hover {
  color: var(--gjs-color-red);
}

.gjs-bdrag {
  pointer-events: none !important;
  position: absolute !important;
  z-index: 10 !important;
  width: auto;
}

.gjs-drag-helper {
  background-color: var(--gjs-color-blue) !important;
  pointer-events: none !important;
  position: absolute !important;
  z-index: 10 !important;
  transform: scale(0.3) !important;
  transform-origin: top left !important;
  -webkit-transform-origin: top left !important;
  margin: 15px !important;
  transition: none !important;
  outline: none !important;
}

.gjs-grabbing, .gjs-grabbing * {
  cursor: grabbing !important;
  cursor: -webkit-grabbing !important;
}

.gjs-grabbing {
  overflow: hidden;
}

.gjs-off-prv {
  position: relative;
  z-index: 10;
  padding: 5px;
  cursor: pointer;
}

.gjs-editor-cont ::-webkit-scrollbar-track {
  background: var(--gjs-secondary-dark-color);
}

.gjs-editor-cont ::-webkit-scrollbar-thumb {
  background-color: hsla(0, 0%, 100%, 0.2);
}

.gjs-editor-cont ::-webkit-scrollbar {
  width: 8px;
}

.gjs-no-touch-actions {
  touch-action: none;
}

.gjs-disabled {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.gjs-editor {
  font-family: var(--gjs-main-font);
  font-size: var(--gjs-font-size);
  position: relative;
  box-sizing: border-box;
  height: 100%;
}

.gjs-freezed, .gjs-freezed {
  opacity: 0.5;
  filter: alpha(opacity=50);
  pointer-events: none;
}

.gjs-hidden {
  display: none;
}

@keyframes gjs-slide-down {
  0% {
    transform: translate(0, -3rem);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes gjs-slide-up {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, -3rem);
    opacity: 0;
  }
}
.cm-s-hopscotch span.cm-error {
  color: #fff;
}
