
/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600&display=swap");
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/*------------------------------------*\
              $RESET
\*------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
}

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

html,
body {
  min-height: 100%;
}

code {
  font-family: monospace;
}

html, body,
nav, header, main, footer,
section, aside, article, div,
img, caption, figure, figcaption, video, audio, progress,
h1, h2, h3, h4, h5, h6,
p, span, small, strong ol,
ul, li,
dl, dt, dd,
blockquote,
form, fieldset, legend, label,
table, tbody, tfoot, thead, tr, th, td,
pre, abbr, address, cite, summary, code,
del, dfn, em, ins, kbd, q, samp, sub, sup, var, time, mark {
  background: transparent;
  border: 0;
  direction: ltr;
  margin: 0;
  padding: 0;
}

form {
  position: relative;
}

body {
  font-size: 16px;
  font-size: 1rem;
  background-color: #FFF;
  color: #1F2532;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

p,
span,
small,
strong {
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

a {
  background-color: transparent;
}
a:active, a:hover {
  outline: 0;
}

li {
  list-style-type: none;
}

img {
  height: auto;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: rgba(31, 37, 50, 0.4);
  position: relative;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
a:hover {
  text-decoration: underline;
  color: #1F2532;
}
a:focus {
  color: #4BD5B6;
}
a:hover, a:focus, a:active {
  outline: 0;
}

button {
  background: transparent;
  border: 0;
  cursor: pointer;
}
button, button:focus, button:active {
  outline: 0;
}

/*------------------------------------*\
    $FIGURE
\*------------------------------------*/
figure {
  margin-bottom: 0;
}
figure figcaption {
  color: rgb(89.5555555556, 106.8888888889, 144.4444444444);
  display: block;
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
}

@-webkit-keyframes autofill {
  to {
    color: #1F2532;
    background: transparent;
  }
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

textarea, textarea:active, textarea:focus, textarea:hover {
  outline: 0;
}

label, label > span {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 14px;
  line-height: 0.875rem;
  align-items: center;
  color: rgba(31, 37, 50, 0.4);
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  margin-left: 0;
  text-align: left;
}

input {
  border: 0;
  cursor: pointer;
}
input::-webkit-caps-lock-indicator, input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
}
input::-ms-clear, input::-ms-reveal {
  display: none;
}
input, input:active, input:focus, input:hover {
  outline: 0;
}
input:-webkit-autofill {
  content: "﻿";
}

@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-Black.eot);
  src: url(/assets/Suisse/SuisseInt-Black.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-Black.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-Black.woff) format("woff"), url(/assets/Suisse/SuisseInt-Black.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-Black.svg#SuisseIntl-Black) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l Book";
  src: url(/assets/Suisse/SuisseInt-BookItalic.eot);
  src: url(/assets/Suisse/SuisseInt-BookItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-BookItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-BookItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-BookItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-BookItalic.svg#SuisseIntl-BookItalic) format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l Semi";
  src: url(/assets/Suisse/SuisseInt-SemiBoldItalic.eot);
  src: url(/assets/Suisse/SuisseInt-SemiBoldItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-SemiBoldItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-SemiBoldItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-SemiBoldItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-SemiBoldItalic.svg#SuisseIntl-SemiBoldItalic) format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l Semi";
  src: url(/assets/Suisse/SuisseInt-SemiBold.eot);
  src: url(/assets/Suisse/SuisseInt-SemiBold.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-SemiBold.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-SemiBold.woff) format("woff"), url(/assets/Suisse/SuisseInt-SemiBold.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-SemiBold.svg#SuisseIntl-SemiBold) format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-UltraLightItalic.eot);
  src: url(/assets/Suisse/SuisseInt-UltraLightItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-UltraLightItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-UltraLightItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-UltraLightItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-UltraLightItalic.svg#SuisseIntl-UltraLightItalic) format("svg");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-Bold.eot);
  src: url(/assets/Suisse/SuisseInt-Bold.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-Bold.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-Bold.woff) format("woff"), url(/assets/Suisse/SuisseInt-Bold.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-Bold.svg#SuisseIntl-Bold) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-Medium.eot);
  src: url(/assets/Suisse/SuisseInt-Medium.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-Medium.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-Medium.woff) format("woff"), url(/assets/Suisse/SuisseInt-Medium.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-Medium.svg#SuisseIntl-Medium) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-BoldItalic.eot);
  src: url(/assets/Suisse/SuisseInt-BoldItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-BoldItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-BoldItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-BoldItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-BoldItalic.svg#SuisseIntl-BoldItalic) format("svg");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-ThinItalic.eot);
  src: url(/assets/Suisse/SuisseInt-ThinItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-ThinItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-ThinItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-ThinItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-ThinItalic.svg#SuisseIntl-ThinItalic) format("svg");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-Light.eot);
  src: url(/assets/Suisse/SuisseInt-Light.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-Light.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-Light.woff) format("woff"), url(/assets/Suisse/SuisseInt-Light.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-Light.svg#SuisseIntl-Light) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-MediumItalic.eot);
  src: url(/assets/Suisse/SuisseInt-MediumItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-MediumItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-MediumItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-MediumItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-MediumItalic.svg#SuisseIntl-MediumItalic) format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-BlackItalic.eot);
  src: url(/assets/Suisse/SuisseInt-BlackItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-BlackItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-BlackItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-BlackItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-BlackItalic.svg#SuisseIntl-BlackItalic) format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-Italic.eot);
  src: url(/assets/Suisse/SuisseInt-Italic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-Italic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-Italic.woff) format("woff"), url(/assets/Suisse/SuisseInt-Italic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-Italic.svg#SuisseIntl-Italic) format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-LightItalic.eot);
  src: url(/assets/Suisse/SuisseInt-LightItalic.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-LightItalic.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-LightItalic.woff) format("woff"), url(/assets/Suisse/SuisseInt-LightItalic.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-LightItalic.svg#SuisseIntl-LightItalic) format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-Thin.eot);
  src: url(/assets/Suisse/SuisseInt-Thin.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-Thin.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-Thin.woff) format("woff"), url(/assets/Suisse/SuisseInt-Thin.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-Thin.svg#SuisseIntl-Thin) format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseIntl.eot);
  src: url(/assets/Suisse/SuisseIntl.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseIntl.woff2) format("woff2"), url(/assets/Suisse/SuisseIntl.woff) format("woff"), url(/assets/Suisse/SuisseIntl.ttf) format("truetype"), url(/assets/Suisse/SuisseIntl.svg#SuisseIntl) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url(/assets/Suisse/SuisseInt-UltraLight.eot);
  src: url(/assets/Suisse/SuisseInt-UltraLight.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-UltraLight.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-UltraLight.woff) format("woff"), url(/assets/Suisse/SuisseInt-UltraLight.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-UltraLight.svg#SuisseIntl-UltraLight) format("svg");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l Book";
  src: url(/assets/Suisse/SuisseInt-Book.eot);
  src: url(/assets/Suisse/SuisseInt-Book.eot?#iefix) format("embedded-opentype"), url(/assets/Suisse/SuisseInt-Book.woff2) format("woff2"), url(/assets/Suisse/SuisseInt-Book.woff) format("woff"), url(/assets/Suisse/SuisseInt-Book.ttf) format("truetype"), url(/assets/Suisse/SuisseInt-Book.svg#SuisseIntl-Book) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*------------------------------------*\
    $TIPOGRAPHY
\*------------------------------------*/
h1,
h2, dt h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizelegibility;
  font-weight: 400;
}

h1, .heading-h1 {
  font-size: 32px;
  font-size: 2rem;
  margin-bottom: 0.75em;
  line-height: 48px;
  line-height: 1.5em;
}

h2, .heading-h2 {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 1em;
  line-height: 24px;
  line-height: 1em;
}

h3, .heading-h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 1.2em;
  line-height: 24px;
  line-height: 1.2em;
}

h4, .heading-h4 {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 1.5em;
  line-height: 24px;
  line-height: 1.5em;
}

h5, .heading-h5 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 1.7142857143em;
  line-height: 24px;
  line-height: 1.7142857143em;
}

h6, .heading-h6 {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 2em;
  line-height: 24px;
  line-height: 2em;
}

p {
  font-size: 16px;
  font-size: 1rem;
  color: inherit;
  font-weight: 300;
  line-height: 1.5;
}

small {
  font-size: 12px;
  font-size: 0.75rem;
}

ol,
ul,
dl,
dd,
address {
  margin-bottom: 15px;
}

dt {
  font-weight: bold;
}

blockquote {
  border-left: 10px solid #1F2532;
  font-family: "Open Sans" sans-serif;
  font-style: normal;
  margin: 0 0 1.5px 0;
  padding-left: 0.9375em;
  padding-right: 0.9375em;
}
blockquote p {
  font-size: 18px;
  font-size: 1.125rem;
  color: rgb(60.2777777778, 71.9444444444, 97.2222222222);
  font-style: italic;
}
blockquote .quote-info {
  text-align: right;
}

q {
  font-style: italic;
  quotes: none;
}

blockquote p::before,
blockquote p::after,
q:before,
q:after {
  content: "";
}

cite {
  font-style: normal;
}

hr {
  border: 0;
  border-top: 1px solid #1F2532;
  clear: both;
  display: block;
  height: 1px;
  margin: 3 0;
  padding: 0;
}

abbr[title] {
  cursor: help;
  border-bottom: 1px dotted rgb(60.2777777778, 71.9444444444, 97.2222222222);
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

ins {
  background-color: rgb(226.2962962963, 229.7407407407, 237.2037037037);
  color: black;
  text-decoration: none;
}

mark {
  background-color: #ff0;
  color: black;
}

pre,
code,
kbd,
samp {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Courier New", monospace;
  line-height: 1.5;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

sub,
sup {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 0;
  position: relative;
  vertical-align: 1.5;
}

sup {
  right: 0.2em;
  top: 0.2em;
}

sub {
  bottom: -0.25em;
}

.list--tree {
  display: block;
  padding: 15px 0 0;
  position: relative;
}
.list--tree[data-level="1"] {
  z-index: 1;
}
.list--tree[data-level="2"] {
  z-index: 2;
}
.list--tree[data-level="3"] {
  z-index: 3;
}
.list--tree[data-level="4"] {
  z-index: 4;
}
.list--tree[data-level="5"] {
  z-index: 5;
}
.list--tree[data-level="6"] {
  z-index: 6;
}
.list--tree[data-level="7"] {
  z-index: 7;
}
.list--tree[data-level="8"] {
  z-index: 8;
}
.list--tree[data-level="9"] {
  z-index: 9;
}
.list--tree[data-level="10"] {
  z-index: 10;
}
.list--tree .item {
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
}
.list--tree .item .item {
  margin-right: 30px;
}
.list--tree .item h4, .list--tree .item h5 {
  font-size: 14px;
  user-select: none;
}
.list--tree .item.not-published article .text-wrapper {
  opacity: 0.3;
}
.list--tree .item .accordion-trigger {
  transition: background-color 300ms ease-out, opacity 300ms ease-out;
}
.list--tree .item.empty > article .accordion-trigger {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}
.list--tree .item.draggable--original {
  background: grey;
  opacity: 1;
  position: relative;
  visibility: visible;
}
.list--tree .item.draggable-source--is-dragging {
  background-color: rgba(157, 255, 0, 0.12);
  border: 1px dashed rgba(33, 111, 39, 0.6);
  color: rgba(33, 111, 39, 0.4);
  opacity: 0;
}
.list--tree .item.draggable-source--is-dragging > * {
  opacity: 0;
}
.list--tree .item.draggable-mirror {
  background-color: rgba(239, 239, 239, 0.7);
  display: block;
  z-index: 500;
}
.list--tree .item article {
  position: relative;
}
.list--tree .item article .text-wrapper {
  padding: 10px 15px 0;
}
.list--tree .item article .actions {
  display: flex;
  position: absolute;
  right: 15px;
  top: 10px;
}
.list--tree .item ul {
  margin-left: 30px;
}

.dropzone-wrapper .breadcrumb {
  margin-bottom: 0;
}
.dropzone-wrapper > .list--tree {
  padding: 35px 0 50px;
}

.accordion__content-wrapper {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: height 600ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
}
.accordion__content-wrapper .accordion-trigger:hover {
  background-color: rgba(153, 153, 153, 0.2);
}
.accordion__content-wrapper .accordion-trigger .material-icons {
  transition: transform 300ms ease-out;
  transform: rotate(0);
}
.accordion__content-wrapper .accordion-trigger.opened .material-icons {
  transform: rotate(-90deg);
}
.accordion__content-wrapper.visible {
  height: 100%;
  opacity: 1;
  pointer-events: auto;
}
.accordion__content-wrapper.visible.disabled {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1) rotateX(-60deg);
  user-select: none;
}

.alerts-wrapper {
  height: calc(100vh - 20px);
  max-width: 400px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  user-select: none;
  z-index: 7000;
  width: 100%;
}
.alerts-wrapper #list--alerts {
  display: block;
  height: 100%;
  pointer-events: none;
  position: relative;
  transform: translate(0, 0);
  user-select: none;
  width: 100%;
}
.alerts-wrapper .alert {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  min-width: 300px;
  max-width: none;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateX(100%);
  transition: all 1000ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
  width: auto;
  z-index: 9999;
}
.alerts-wrapper .alert.is-visible, .alerts-wrapper .alert.on {
  opacity: 1;
  transform: translateX(0);
}
.alerts-wrapper .alert strong {
  color: white;
}
.alerts-wrapper .alert.left, .alerts-wrapper .alert.toastify-left {
  left: 0;
}
.alerts-wrapper .alert.right, .alerts-wrapper .alert.toastify-right {
  right: 0;
}
.alerts-wrapper .alert[data-stack=top],
.alerts-wrapper .alert .toastify-top {
  top: -150px;
}
.alerts-wrapper .alert[data-stack=bottom],
.alerts-wrapper .alert .toastify-bottom {
  bottom: 0;
}
.alerts-wrapper .alert > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px;
}
.alerts-wrapper .alert > div,
.alerts-wrapper .alert > div span {
  text-align: left;
}
.alerts-wrapper .alert .actions {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.alerts-wrapper .alert .actions li {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  flex-grow: 2;
}
.alerts-wrapper .alert .actions li:first-child(1) {
  border-top: 0;
}
.alerts-wrapper .alert .actions a,
.alerts-wrapper .alert .actions button {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19px;
  line-height: 1.1875rem;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  display: flex;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  padding: 15px;
  pointer-events: auto;
  text-align: center;
  width: 100%;
}
.alerts-wrapper .alert .actions a:hover,
.alerts-wrapper .alert .actions button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
.alerts-wrapper .alert .actions button {
  transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

html[data-device=mobile] .alerts-wrapper, html[data-device=tablet] .alerts-wrapper {
  height: calc(100vh - 50px);
}
html[data-os=ios][data-device=mobile] .alerts-wrapper, html[data-os=ios][data-device=tablet] .alerts-wrapper {
  height: calc(100vh - 100px);
}

.section--breadcrumbs .list--breadcrumbs {
  padding-left: 0;
}

.list--breadcrumbs {
  align-items: center;
  background-color: transparent;
  border-radius: 2px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 0;
  padding: 8px 15px;
}
.list--breadcrumbs > li {
  display: inline-block;
  user-select: none;
}
.list--breadcrumbs > li:first-child a {
  align-items: center;
  display: flex;
  user-select: none;
}
.list--breadcrumbs > li:first-child a:hover {
  text-decoration: none;
}
.list--breadcrumbs > li + li:before {
  color: rgba(143, 146, 153, 0.4);
  content: "/ ";
  padding: 0 5px;
  user-select: none;
}
.list--breadcrumbs > li.active {
  color: #8F9299;
  cursor: auto;
}
.list--breadcrumbs > li a {
  color: #1F2532;
  text-decoration: none;
  transition: color 300ms linear;
}
.list--breadcrumbs > li a:hover {
  color: #8F9299;
  text-decoration: underline;
}

.burger {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  height: 100%;
  margin: 0;
  outline: 0;
  overflow: visible;
  padding: 0 15px;
  text-transform: none;
  transition-duration: 150ms;
  transition-property: opacity, filter;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
.burger .burger-inner {
  top: 1px;
  transition-duration: 275ms;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.burger .burger-inner::before {
  top: 9px;
  transition: opacity 125ms 275ms ease;
}
.burger .burger-inner::after {
  top: 18px;
  transition: transform 275ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.burger.is-active .burger-inner {
  transform: translate3d(0, 9px, 0) rotate(135deg);
  transition-delay: 75ms;
}
.burger.is-active .burger-inner::before {
  opacity: 0;
  transition-delay: 0ms;
}
.burger.is-active .burger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-270deg);
  transition-delay: 75ms;
}
.burger:hover .burger-inner, .burger:hover .burger-inner::before, .burger:hover .burger-inner::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.burger-box {
  display: inline-block;
  height: 20px;
  position: relative;
  vertical-align: middle;
  width: 35px;
}

.burger-inner {
  background-color: transparent;
  display: block;
  margin-top: -1px;
  top: 50%;
}
.burger-inner, .burger-inner::before, .burger-inner::after {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  height: 2px;
  position: absolute;
  transition-duration: 150ms;
  transition-property: all;
  transition-timing-function: ease;
  width: 35px;
}
.burger-inner::before, .burger-inner::after {
  content: "";
  display: block;
}
.burger-inner::before {
  top: -9px;
}
.burger-inner::after {
  bottom: -9px;
}

.btn, .btn:active, .btn:focus, .btn:hover {
  text-decoration: none;
}

a.btn,
button.btn,
input.btn {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  align-content: center;
  align-self: flex-start;
  border-radius: 30px;
  display: inline-flex;
  font-weight: 600;
  height: 60px;
  justify-content: center;
  letter-spacing: 0;
  margin: 10px 1px;
  padding: 8px 30px;
  position: relative;
  transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
a.btn i:first-child,
button.btn i:first-child,
input.btn i:first-child {
  margin-right: 10px;
}
a.btn i:last-child,
button.btn i:last-child,
input.btn i:last-child {
  margin-left: 10px;
}
a.btn:hover,
button.btn:hover,
input.btn:hover {
  box-shadow: 0 24px 24px 0 rgba(0, 0, 0, 0.1);
}
a[type=submit],
button[type=submit],
input[type=submit] {
  min-width: 137px;
}
a[type=submit], a.btn--primary,
button[type=submit],
button.btn--primary,
input[type=submit],
input.btn--primary {
  background-color: #4BD5B6;
  color: white;
  position: relative;
}
a[type=submit]:before, a[type=submit]:after, a.btn--primary:before, a.btn--primary:after,
button[type=submit]:before,
button[type=submit]:after,
button.btn--primary:before,
button.btn--primary:after,
input[type=submit]:before,
input[type=submit]:after,
input.btn--primary:before,
input.btn--primary:after {
  background-color: white;
  border-radius: 50%;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 32px;
  left: 50%;
  margin: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: 300ms opacity cubic-bezier(0.25, 0.1, 0.25, 1);
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  width: 32px;
  z-index: 9998;
}
a[type=submit]:hover, a.btn--primary:hover,
button[type=submit]:hover,
button.btn--primary:hover,
input[type=submit]:hover,
input.btn--primary:hover {
  background-color: rgba(75, 213, 182, 0.9);
}
@keyframes loader-dual-ring {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
}
a[type=submit][disabled], a[type=submit][data-disabled], a.btn--primary[disabled], a.btn--primary[data-disabled],
button[type=submit][disabled],
button[type=submit][data-disabled],
button.btn--primary[disabled],
button.btn--primary[data-disabled],
input[type=submit][disabled],
input[type=submit][data-disabled],
input.btn--primary[disabled],
input.btn--primary[data-disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
  user-select: none;
}
a[type=submit][disabled], a.btn--primary[disabled],
button[type=submit][disabled],
button.btn--primary[disabled],
input[type=submit][disabled],
input.btn--primary[disabled] {
  cursor: wait;
  color: rgba(255, 255, 255, 0);
}
a[type=submit][disabled]:before, a[type=submit][disabled]:after, a.btn--primary[disabled]:before, a.btn--primary[disabled]:after,
button[type=submit][disabled]:before,
button[type=submit][disabled]:after,
button.btn--primary[disabled]:before,
button.btn--primary[disabled]:after,
input[type=submit][disabled]:before,
input[type=submit][disabled]:after,
input.btn--primary[disabled]:before,
input.btn--primary[disabled]:after {
  animation: sk-bounce 2000ms ease-in-out infinite;
  opacity: 0.4;
}
a[type=submit][disabled]:after, a.btn--primary[disabled]:after,
button[type=submit][disabled]:after,
button.btn--primary[disabled]:after,
input[type=submit][disabled]:after,
input.btn--primary[disabled]:after {
  animation-delay: -1000ms;
}
a.btn--secondary, a.btn--warning,
button.btn--secondary,
button.btn--warning,
input.btn--secondary,
input.btn--warning {
  background-color: transparent;
  box-shadow: none;
}
a.btn--secondary:hover, a.btn--warning:hover,
button.btn--secondary:hover,
button.btn--warning:hover,
input.btn--secondary:hover,
input.btn--warning:hover {
  box-shadow: none;
  opacity: 0.5;
}
a.btn--secondary, a.btn--warning,
button.btn--secondary,
button.btn--warning,
input.btn--secondary,
input.btn--warning {
  color: #7F7F7F;
}

.form a.btn,
.form button.btn,
.form input.btn {
  align-items: center;
  margin: 20px 10px 10px;
}
.form > .actions-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 34px;
}
.form > .actions-wrapper a.btn,
.form > .actions-wrapper button.btn,
.form > .actions-wrapper input.btn {
  min-width: 160px;
}
@media (min-width: 48em) {
  .form > .actions-wrapper a.btn,
  .form > .actions-wrapper button.btn,
  .form > .actions-wrapper input.btn {
    min-width: 230px;
  }
}

.modal-dialog[data-size=s] .actions-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 34px;
}
.modal-dialog[data-size=s] .actions-wrapper a.btn,
.modal-dialog[data-size=s] .actions-wrapper button.btn,
.modal-dialog[data-size=s] .actions-wrapper input.btn {
  min-width: 160px;
}

.btn--download {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin: 50px 0;
  min-height: 215px;
  padding: 0;
  position: relative;
  transition: box-shadow 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 175px;
  will-change: box-shadow;
}
.btn--download img {
  display: block;
  height: 74px;
  margin: 0 auto;
  width: 57px;
}
@media (min-width: 62em) {
  .btn--download img {
    height: 93px;
    width: 71px;
  }
}
@media (min-width: 62em) {
  .btn--download {
    min-height: 284px;
    width: 262px;
  }
}
.btn--download .file-wrapper {
  padding-top: 30px;
  text-align: center;
}
@media (min-width: 62em) {
  .btn--download .file-wrapper {
    padding-top: 55px;
  }
}
.btn--download .filename {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  margin: 0 auto;
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 0 12px;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
}
@media (min-width: 62em) {
  .btn--download .filename {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.btn--download .filesize {
  bottom: 0;
  padding: 13px 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.btn--download .filesize span {
  color: #1F2532;
  font-size: 16px;
  line-height: 18px;
}
.btn--download .download {
  background-color: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid rgba(31, 37, 50, 0.25);
  bottom: 0;
  opacity: 1;
  padding: 13px 0;
  position: absolute;
  text-align: center;
  transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
  width: 100%;
}
.btn--download .download span {
  color: rgba(31, 37, 50, 0.6);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.btn--download:hover {
  box-shadow: 1px 25px 25px 0 rgba(0, 0, 0, 0.1);
}
.btn--download:hover .download {
  background-color: #2E5FDD;
}
.btn--download:hover .download span {
  color: #fff;
}

.input-wrapper.clipboard-wrapper > button {
  background: transparent;
  bottom: 3px;
  color: rgba(31, 37, 50, 0.3);
  left: 15px;
  padding: 7px 10px;
  pointer-events: auto;
  position: absolute;
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 2;
}
.input-wrapper.clipboard-wrapper > button i {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
}
.input-wrapper.clipboard-wrapper > button:hover {
  color: #1f2532;
}
.input-wrapper.clipboard-wrapper .input {
  padding-left: 45px;
}

.dropdown {
  position: relative;
}
.dropdown .list--dropdown {
  background-color: #1F2532;
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -8px);
  transition: 250ms transform cubic-bezier(0.25, 0.1, 0.25, 1), 250ms opacity cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 5;
}
.dropdown button[aria-expanded=true] + .list--dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-actions-wrapper .dropdown {
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  width: fit-content;
}
.main-actions-wrapper .dropdown .list--dropdown {
  background-color: #fff;
  left: auto;
  min-width: 180px;
  right: 0;
  top: 100%;
  transform: translate(0, -4px);
  width: auto;
  z-index: 10;
}
.main-actions-wrapper .dropdown .list--dropdown a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: rgba(31, 37, 50, 0.5);
  display: inline-block;
  letter-spacing: 0.44px;
  padding: 15px;
  white-space: nowrap;
}
.main-actions-wrapper .dropdown .list--dropdown a:hover {
  color: #1f2532;
  text-decoration: none;
}
.main-actions-wrapper .dropdown button[aria-expanded=true] + .list--dropdown {
  transform: translate(0, 10px);
}

.form .form__error-message {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #FE135B;
  color: #fff;
  font-weight: 400;
  padding: 8px 16px;
}

input {
  border-radius: 0;
  filter: none;
}
input[type=search] {
  -webkit-appearance: none;
}

.form {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.form .section--grid .content-wrapper {
  padding: 15px 15px 0;
}
.form .section--grid .content-wrapper .list--grid-items {
  margin-bottom: 0;
}
.form .section--grid .content-wrapper .list--grid-items .img-wrapper {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.form[data-id=content_multi_columns] legend {
  padding-left: 10px;
}
.form[data-id=content_multi_columns] .input-wrapper {
  padding: 0 10px;
}
.form[data-id=content_multi_columns] .input-wrapper.input-radio-wrapper {
  height: 45px;
  padding: 0 10px;
}
.form[data-id=content_multi_columns] .input-wrapper.input-radio-wrapper .radio__label.with-icon {
  min-width: 40px;
  margin-right: 5px;
}
.form[data-id=content_multi_columns] .input[type=radio] ~ .select-box-wrapper i {
  width: 40px;
}
.form[data-id=content_multi_columns] .textarea-wrapper {
  padding: 15px 5px;
}
.form fieldset {
  width: 100%;
}
.form fieldset,
.form .toggle,
.form .previews-wrapper {
  width: 100%;
}
@media (min-width: 48em) {
  .form fieldset[data-col="1"],
  .form .toggle[data-col="1"],
  .form .previews-wrapper[data-col="1"] {
    width: 8.3333333333%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="2"],
  .form .toggle[data-col="2"],
  .form .previews-wrapper[data-col="2"] {
    width: 16.6666666667%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="2-4"],
  .form .toggle[data-col="2-4"],
  .form .previews-wrapper[data-col="2-4"] {
    width: 50%;
  }
}
@media (min-width: 62em) {
  .form fieldset[data-col="2-4"],
  .form .toggle[data-col="2-4"],
  .form .previews-wrapper[data-col="2-4"] {
    width: 33.3333333333%;
  }
}
@media (min-width: 75em) {
  .form fieldset[data-col="2-4"],
  .form .toggle[data-col="2-4"],
  .form .previews-wrapper[data-col="2-4"] {
    width: 20%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="3"],
  .form .toggle[data-col="3"],
  .form .previews-wrapper[data-col="3"] {
    width: 25%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="4"],
  .form .toggle[data-col="4"],
  .form .previews-wrapper[data-col="4"] {
    width: 33.3333333333%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="5"],
  .form .toggle[data-col="5"],
  .form .previews-wrapper[data-col="5"] {
    width: 41.65%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="6"],
  .form .toggle[data-col="6"],
  .form .previews-wrapper[data-col="6"] {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="7"],
  .form .toggle[data-col="7"],
  .form .previews-wrapper[data-col="7"] {
    width: 58.32%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="8"],
  .form .toggle[data-col="8"],
  .form .previews-wrapper[data-col="8"] {
    width: 66.65%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="9"],
  .form .toggle[data-col="9"],
  .form .previews-wrapper[data-col="9"] {
    width: 75%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="10"],
  .form .toggle[data-col="10"],
  .form .previews-wrapper[data-col="10"] {
    width: 83.32%;
  }
}
@media (min-width: 48em) {
  .form fieldset[data-col="11"],
  .form .toggle[data-col="11"],
  .form .previews-wrapper[data-col="11"] {
    width: 91.74%;
  }
}
.form .toggle fieldset {
  margin-bottom: 0;
}

fieldset {
  transition: height 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  margin-bottom: 60px;
}
fieldset .fieldset-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

legend {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 30px;
  line-height: 1.875rem;
  border: 0;
  color: rgba(31, 37, 50, 0.4);
  display: block;
  font-weight: 300;
  margin-bottom: 5px;
  padding: 0;
  padding-left: 15px;
  text-align: left;
  width: 100%;
}

input[type=email], input[type=password], input[type=tel], input[type=text] {
  font-size: 14px;
  font-size: 0.875rem;
  appearance: none;
  background-color: transparent;
  color: #1F2532;
  margin: 0;
  outline: 0;
  padding: 12px 0;
  transition: border-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}
input[type=email][disabled], input[type=email][disabled=disabled], input[type=password][disabled], input[type=password][disabled=disabled], input[type=tel][disabled], input[type=tel][disabled=disabled], input[type=text][disabled], input[type=text][disabled=disabled] {
  border: 1px solid transparent;
  margin-bottom: 8px;
}
input.amount {
  box-shadow: none;
  outline: 0;
}
input.amount:invalid, input.amount:-moz-invalid {
  border: 1px solid transparent !important;
  box-shadow: none !important;
  outline: 0 !important;
}
input[type=search] {
  font-weight: 300;
}
input[type=search]:-webkit-autofill, input[type=search]:-webkit-autofill:focus {
  -webkit-text-fill-color: #1F2532;
  color: #1F2532;
}
input.active, input:focus {
  border-bottom: 1px solid #4BD5B6;
}
input[data-disabled=true] {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.input-wrapper {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  height: 56px;
  justify-content: flex-end;
  margin: 15px 0;
  min-width: 160px;
  padding: 0 15px;
  position: relative;
  width: 100%;
}
.input-wrapper.staggered {
  flex-direction: row;
  flex-wrap: nowrap;
}
.input-wrapper.staggered .input {
  order: 2;
}
.input-wrapper.staggered .input--text {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 22px !important;
  line-height: 1.375rem !important;
  left: 0;
  padding-bottom: 10px;
  padding-right: 4px;
  position: relative;
  top: auto;
  transform: translateY(0) !important;
}
.input-wrapper[data-height=auto] {
  height: min-content;
}
.input-wrapper[data-height=auto] .input--select--fake.input--select__input--cloned {
  min-width: 100%;
}
.input-wrapper[data-height=auto] .input--select {
  height: auto;
  margin-top: 5px;
}
.input-wrapper[data-height=auto] .input--select + .input--select__list--dropdown {
  transform: translateY(2px);
}
.input-wrapper[data-col=auto] {
  width: auto;
}
@media (min-width: 48em) {
  .input-wrapper[data-col="1"] {
    width: 8.33%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="2"] {
    width: 16.65%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="3"] {
    width: 25%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="4"] {
    width: 33.3333333333%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="5"] {
    width: 41.65%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="6"] {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="7"] {
    width: 58.32%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="8"] {
    width: 66.65%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="9"] {
    width: 75%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="10"] {
    width: 83.32%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="11"] {
    width: 91.74%;
  }
}
@media (min-width: 48em) {
  .input-wrapper[data-col="12"] {
    width: 100%;
  }
}
.input-wrapper.input--search-wrapper {
  min-width: 290px;
}
.input-wrapper.input--search-wrapper .input {
  padding-left: 30px;
}
.input-wrapper.input--search-wrapper .input:focus + .lupa, .input-wrapper.input--search-wrapper .input.has-content + .lupa {
  opacity: 1;
}
.input-wrapper.input--search-wrapper .input:focus ~ .input--text, .input-wrapper.input--search-wrapper .input.has-content ~ .input--text {
  left: 15px;
}
.input-wrapper.input--search-wrapper .lupa {
  bottom: 10px;
  left: 15px;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
  user-select: none;
  transition: opacity 160ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms;
}
.input-wrapper.input--search-wrapper .input--text {
  left: 45px;
}
.input-wrapper.input--search-wrapper .btn--clear-search {
  cursor: pointer;
  display: none;
  position: absolute;
  user-select: none;
}
.input-wrapper .input {
  border-bottom: 1px solid #D2D2D2;
  box-shadow: none;
  transition: border-color 300ms ease-out, box-shadow 300ms ease-out;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  background-color: transparent;
  border-radius: 0;
  color: rgba(31, 37, 50, 0.4);
  cursor: text;
  font-weight: 400;
  height: 38px;
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
  text-overflow: ellipsis;
  width: 100%;
}
.input-wrapper .input[type=email], .input-wrapper .input[type=password], .input-wrapper .input[type=number], .input-wrapper .input[type=search], .input-wrapper .input[type=tel], .input-wrapper .input[type=text] {
  color: #1F2532;
}
.input-wrapper .input:focus:not([readonly]), .input-wrapper .input.active:not([readonly]), .input-wrapper .input.is-focused:not([readonly]) {
  border-color: #4BD5B6;
  box-shadow: 0 1px 0 0 #4BD5B6;
}
.input-wrapper .input:focus:not([readonly]) ~ .input--text, .input-wrapper .input.active:not([readonly]) ~ .input--text, .input-wrapper .input.is-focused:not([readonly]) ~ .input--text {
  color: #4BD5B6;
  letter-spacing: 0.36px;
}
.input-wrapper .input:focus ~ .input--text, .input-wrapper .input.active ~ .input--text, .input-wrapper .input.has-content ~ .input--text {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 14px;
  line-height: 0.875rem;
  letter-spacing: 0.36px;
  transform: translateY(0);
}
.input-wrapper .input:read-only, .input-wrapper .input[readonly] {
  cursor: auto !important;
  pointer-events: none;
}
.input-wrapper .input--text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: rgba(31, 37, 50, 0.4);
  display: inline-block;
  font-weight: 400;
  height: auto;
  left: 15px;
  margin-left: 0;
  padding-bottom: 5px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateY(23px);
  transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.login .input-wrapper .input {
  color: rgba(255, 255, 255, 0.7);
}
.login .input-wrapper .input:focus ~ .input--text {
  color: rgba(255, 255, 255, 0.7);
}
.login .input-wrapper .input--text {
  color: #fff;
}
.login input:-webkit-autofill,
.login input:-webkit-autofill:hover,
.login input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  color: rgba(255, 255, 255, 0.7);
}

label .select-box {
  margin-right: 7px;
}

.form-msg {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 14px;
  line-height: 0.875rem;
  color: #172B6D;
  font-weight: 500;
  left: 0;
  letter-spacing: 0.4px;
  margin: 2px 0 10px 5px;
  padding: 0;
  position: absolute;
  text-align: left;
  top: 50px;
  transform: translate(10px, 8px);
  width: calc(100% - 30px);
}
.form-msg.light-grey {
  color: rgba(143, 146, 153, 0.5);
}
.form-msg.alert {
  color: #FE9813;
}
.form-msg .msg-wrapper {
  height: 42px;
  position: relative;
  width: 100%;
}
.form-msg p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
  color: #FE135B;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.input-msg {
  margin-bottom: 15px;
}
.input-msg p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
}
.input-msg.msg-type-error p {
  color: #FE135B;
}
.input-msg.msg-type-info {
  padding: 0 12px;
}
.input-msg.msg-type-info p {
  color: rgba(31, 37, 50, 0.4);
}
.input-msg.msg-type-info p a {
  text-decoration: underline;
}

.field {
  margin-bottom: 27px;
}
.field.has-error input {
  border: 2px solid #FE135B;
}
.field.has-error ~ .actions {
  margin-bottom: 0;
}

.has-error ~ .actions {
  margin-bottom: 0;
}

.hidden {
  display: none;
  pointer-events: none;
}

.input-wrapper.input-checkbox-wrapper {
  align-items: flex-start;
  flex-direction: row;
  height: 22px;
  justify-content: flex-start;
  min-width: 120px;
}
.input-wrapper.input-checkbox-wrapper.shared-row {
  align-items: center;
  height: 40px;
}
.input-wrapper.input-checkbox-wrapper.shared-row .input--text {
  padding-bottom: 5px;
}
.input-wrapper.input-checkbox-wrapper .input--text {
  align-items: center;
  cursor: pointer;
  display: flex;
  left: auto;
  padding-bottom: 0;
  padding-left: 35px;
  pointer-events: auto;
  position: relative;
  top: auto;
  transform: translate(0, 0);
  user-select: none;
}
.input-wrapper.input-checkbox-wrapper .input--text i {
  opacity: 0.4;
  margin-right: 10px;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.input-wrapper.input-checkbox-wrapper .input--text i img {
  height: 100%;
  max-height: 22px;
  max-width: 22px;
  width: 100%;
}
.input-wrapper.input-checkbox-wrapper .input--text:before, .input-wrapper.input-checkbox-wrapper .input--text:after {
  content: "";
  position: absolute;
  z-index: 1;
}
.input-wrapper.input-checkbox-wrapper .input--text:before {
  border: 2px solid transparent;
  border-radius: 2px;
  height: 13px;
  left: 2px;
  top: 4px;
  transform: rotateZ(37deg) skew(10deg, 10deg);
  transform-origin: 100% 100%;
  transition: border-color 0.25s, height 0.2s 0.1s, width 0.2s 0.1s;
  width: 5px;
}
.input-wrapper.input-checkbox-wrapper .input--text:after {
  border: 2px solid #D2D2D2;
  border-radius: 5px;
  height: 20px;
  left: 0;
  top: 1px;
  transition: border-color 0.2s, background-color 0.2s;
  width: 20px;
  z-index: 0;
}
.input-wrapper.input-checkbox-wrapper:hover .input--text {
  color: #1F2532;
}
.input-wrapper.input-checkbox-wrapper:hover .input--text i {
  opacity: 1;
}
.input-wrapper.input-checkbox-wrapper .input {
  display: none;
  opacity: 0;
  user-select: none;
}
.input-wrapper.input-checkbox-wrapper .input:checked + .input--text {
  color: #1F2532;
}
.input-wrapper.input-checkbox-wrapper .input:checked + .input--text i {
  opacity: 1;
}
.input-wrapper.input-checkbox-wrapper .input:checked + .input--text:before {
  border-bottom-color: white;
  border-right-color: white;
  width: 8px;
}
.input-wrapper.input-checkbox-wrapper .input:checked + .input--text:after {
  background-color: #4BD5B6;
  border-color: #4BD5B6;
}
.input-wrapper.input-checkbox-wrapper .input:focus {
  border: 0;
  box-shadow: none;
}
.input-wrapper.input-checkbox-wrapper .tooltip-trigger .icon {
  display: flex;
}

.pcr-app .pcr-swatches {
  display: flex;
  justify-content: flex-start;
}
.pcr-app .pcr-interaction input:focus {
  border: 0;
  box-shadow: none;
  outline: 0;
}

.input-wrapper.color-wrapper {
  min-width: auto;
  width: 170px !important;
}
.input-wrapper .color-preview-wrapper {
  bottom: 10px;
  left: 20px;
  pointer-events: none;
  position: absolute;
  user-select: none;
}
.input-wrapper .color-preview-wrapper + .input {
  padding-left: 40px;
}

.input-wrapper.input--datepicker-wrapper {
  min-width: 150px;
}
.input-wrapper.input--datepicker-wrapper .clear-input {
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 15px;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
  width: 28px;
  z-index: 1;
}
.input-wrapper.input--datepicker-wrapper .clear-input:hover {
  opacity: 0.6;
}
.input-wrapper.input--datepicker-wrapper .input.has-content ~ .clear-input {
  opacity: 0.3;
  pointer-events: auto;
}

.flatpickr-calendar {
  box-shadow: 0 0 14px 14px rgba(0, 0, 0, 0.05);
}
.flatpickr-calendar .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-next-month {
  color: rgba(31, 37, 50, 0.5);
}
.flatpickr-calendar .flatpickr-prev-month svg,
.flatpickr-calendar .flatpickr-next-month svg {
  fill: rgba(31, 37, 50, 0.5);
  transition: fill 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.flatpickr-calendar .flatpickr-prev-month:hover,
.flatpickr-calendar .flatpickr-next-month:hover {
  color: #1F2532;
}
.flatpickr-calendar .flatpickr-prev-month:hover svg,
.flatpickr-calendar .flatpickr-next-month:hover svg {
  fill: #1F2532;
}
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: white;
}
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: none;
  padding: 4px 0 4px 0.5ch;
}
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months:hover  {
  background: white;
  color: #4BD5B6;
}
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months {
  /* For IE10 */
}
.flatpickr-calendar .flatpickr-current-month .flatpickr-monthDropdown-months::-ms-expand {
  display: none;
}
.flatpickr-calendar .numInputWrapper:focus, .flatpickr-calendar .numInputWrapper:hover {
  background: #fff;
}
.flatpickr-calendar .numInputWrapper span {
  border: none;
}
.flatpickr-calendar .numInputWrapper span.arrowUp:after, .flatpickr-calendar .numInputWrapper span.arrowDown:after {
  transition: border-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.flatpickr-calendar .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(31, 37, 50, 0.4);
}
.flatpickr-calendar .numInputWrapper span.arrowUp:hover:after {
  border-bottom-color: #1F2532;
}
.flatpickr-calendar .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(31, 37, 50, 0.4);
}
.flatpickr-calendar .numInputWrapper span.arrowDown:hover:after {
  border-top-color: #1F2532;
}
.flatpickr-calendar .numInputWrapper span.arrowUp, .flatpickr-calendar .numInputWrapper span.arrowDown {
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.flatpickr-calendar .numInputWrapper span.arrowUp:hover, .flatpickr-calendar .numInputWrapper span.arrowDown:hover {
  background: #fff;
}
.flatpickr-calendar .numInputWrapper:hover .arrowUp,
.flatpickr-calendar .numInputWrapper:hover .arrowDown {
  opacity: 1;
}
.flatpickr-calendar .flatpickr-time input:focus, .flatpickr-calendar .flatpickr-time input:hover,
.flatpickr-calendar .flatpickr-time .flatpickr-am-pm:focus,
.flatpickr-calendar .flatpickr-time .flatpickr-am-pm:hover {
  background: #fff;
}
.flatpickr-calendar .flatpickr-day {
  margin: 0;
}
.flatpickr-calendar .flatpickr-day:hover {
  background: #fff;
  border-left-color: #e9e9e9;
  border-bottom-color: #4BD5B6;
  color: #4BD5B6;
}
.flatpickr-calendar .flatpickr-day.selected, .flatpickr-calendar .flatpickr-day.selected.startRange, .flatpickr-calendar .flatpickr-day.selected.endRange {
  border-color: rgba(75, 213, 182, 0.4);
  background-color: #4BD5B6;
  color: #fff;
}
.flatpickr-calendar .flatpickr-day.selected:focus, .flatpickr-calendar .flatpickr-day.selected:hover {
  background-color: #4BD5B6;
  color: #fff;
}
.flatpickr-calendar .flatpickr-day.selected.prevMonthDay, .flatpickr-calendar .flatpickr-day.selected.prevMonthDay.startRange, .flatpickr-calendar .flatpickr-day.selected.prevMonthDay.endRange, .flatpickr-calendar .flatpickr-day.selected.nextMonthDay, .flatpickr-calendar .flatpickr-day.selected.nextMonthDay.startRange, .flatpickr-calendar .flatpickr-day.selected.nextMonthDay.endRange {
  background-color: rgba(75, 213, 182, 0.4);
  color: rgba(31, 37, 50, 0.3);
}
.flatpickr-calendar .flatpickr-day.selected.week {
  box-shadow: none;
}
.flatpickr-calendar .flatpickr-day.inRange {
  background-color: rgba(75, 213, 182, 0.2);
  border-color: rgba(75, 213, 182, 0.2);
  box-shadow: none;
}
.flatpickr-calendar .flatpickr-day.startRange + .endRange:not(:nth-child(7n+1)) {
  border-left-color: rgba(75, 213, 182, 0.2);
  box-shadow: -5px 0 0 rgba(255, 255, 255, 0.5), inset 5px 0 0 rgba(255, 255, 255, 0.5);
}
.flatpickr-calendar .flatpickr-day.startRange, .flatpickr-calendar .flatpickr-day.endRange {
  border-color: #4BD5B6;
}
.flatpickr-calendar .flatpickr-day.startRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.startRange.nextMonthDay, .flatpickr-calendar .flatpickr-day.endRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.endRange.nextMonthDay {
  border-color: rgba(75, 213, 182, 0.4);
}
.flatpickr-calendar .flatpickr-day.startRange, .flatpickr-calendar .flatpickr-day.startRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.startRange.nextMonthDay, .flatpickr-calendar .flatpickr-day.endRange, .flatpickr-calendar .flatpickr-day.endRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.endRange.nextMonthDay {
  background: #fff;
  border-bottom-color: #4BD5B6;
  color: #4BD5B6;
}
.flatpickr-calendar .flatpickr-day.today {
  font-weight: 600;
}
.flatpickr-calendar .flatpickr-day.today:not(.selected), .flatpickr-calendar .flatpickr-day.today.prevMonthDay:not(.selected), .flatpickr-calendar .flatpickr-day.today.nextMonthDay:not(.selected) {
  border-bottom-color: #1F2532;
}
.flatpickr-calendar .flatpickr-day.today:not(.selected):hover, .flatpickr-calendar .flatpickr-day.today.prevMonthDay:not(.selected):hover, .flatpickr-calendar .flatpickr-day.today.nextMonthDay:not(.selected):hover {
  background: white;
  border: 1px solid #e9e9e9;
  border-bottom-color: #4BD5B6;
}
.flatpickr-calendar .flatpickr-day.flatpickr-disabled {
  pointer-events: none;
  user-select: none;
}

.input-wrapper.input-file-wrapper {
  height: auto;
}
.input-wrapper.input-file-wrapper .form-msg {
  top: auto;
  bottom: -10px;
}
.input-wrapper.input-file-wrapper .input {
  display: flex;
  margin: 32px 0 16px;
  padding: 12px;
}
.input-wrapper.input-file-wrapper .input.name {
  display: none;
}
.input-wrapper.input-file-wrapper [type=file] {
  opacity: 0;
  position: absolute;
  user-select: none;
}
.input-wrapper.input-file-wrapper .input--text {
  align-self: flex-start;
  left: 0;
  padding-bottom: 0;
  position: relative;
  top: auto;
  text-align: left;
  transform: translateY(0);
}
.input-wrapper.input-file-wrapper .dropzone {
  align-items: center;
  background-color: rgba(31, 37, 50, 0.05);
  border-radius: 15px;
  display: flex;
  margin: 15px 0;
  min-height: 260px;
  min-width: 135px;
  position: relative;
  transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  z-index: 2;
}
.input-wrapper.input-file-wrapper .dropzone:after {
  background-color: rgba(31, 37, 50, 0);
  border-radius: 15px;
  content: "";
  height: 100%;
  position: absolute;
  pointer-events: none;
  position: absolute;
  user-select: none;
  width: 100%;
  z-index: 2;
}
.input-wrapper.input-file-wrapper .dropzone ~ .actions-wrapper {
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 15px;
  user-select: none;
  z-index: 2;
}
.input-wrapper.input-file-wrapper .dropzone ~ .actions-wrapper a {
  display: inline-block;
  opacity: 0;
  padding: 15px;
}
.input-wrapper.input-file-wrapper .dropzone.has-content:after {
  background-color: rgba(31, 37, 50, 0.7);
}
.input-wrapper.input-file-wrapper .dropzone.has-content ~ .message {
  color: white;
}
.input-wrapper.input-file-wrapper .dropzone.has-content ~ .message .icon {
  opacity: 1;
}
.input-wrapper.input-file-wrapper .dropzone.has-content ~ .message .icon svg #dragndrop {
  stroke: #ffffff;
}
.input-wrapper.input-file-wrapper .dropzone.has-content ~ .actions-wrapper {
  padding: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 15px;
  z-index: 2;
}
.input-wrapper.input-file-wrapper .dropzone.has-content ~ .actions-wrapper a {
  opacity: 0.6;
}
.input-wrapper.input-file-wrapper .dropzone.has-content ~ .actions-wrapper a:hover {
  opacity: 1;
}
.input-wrapper.input-file-wrapper .dropzone.has-content .preview-type {
  left: 50%;
  opacity: 0.15;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  width: 144px;
  z-index: 5;
}
.input-wrapper.input-file-wrapper .dropzone.has-content .preview-type img {
  width: 100%;
}
.input-wrapper.input-file-wrapper .dropzone:hover, .input-wrapper.input-file-wrapper .dropzone.dragging {
  background-color: rgba(31, 37, 50, 0.2);
}
.input-wrapper.input-file-wrapper .icon {
  margin-bottom: 10px;
  opacity: 0.4;
}
.input-wrapper.input-file-wrapper .icon svg #dragndrop {
  transition: stroke 300ms ease-out;
}
.input-wrapper.input-file-wrapper .message {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: rgba(31, 37, 50, 0.4);
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.44px;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  user-select: none;
  z-index: 2;
}
.input-wrapper.input-file-wrapper .message span {
  display: block;
  text-align: center;
  width: 100%;
}
.input-wrapper.input-file-wrapper .message.message--uploading {
  display: none;
}
.input-wrapper.input-file-wrapper .previews-wrapper {
  align-self: flex-start;
  margin: 0;
  position: relative;
  width: 100%;
}
.input-wrapper.input-file-wrapper .previews-wrapper .preview img {
  border-radius: 15px;
  width: 100%;
}
.input-wrapper.input-file-wrapper .previews-wrapper .item {
  pointer-events: none;
}
.input-wrapper.input-file-wrapper .previews-wrapper[data-col=auto] {
  max-width: 370px;
}

.input-wrapper.input--number-wrapper {
  min-width: 85px;
}
.input-wrapper.input--number-wrapper .input {
  appearance: none;
  -moz-appearance: textfield;
}
.input-wrapper.input--number-wrapper .input::-webkit-inner-spin-button, .input-wrapper.input--number-wrapper .input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-wrapper.input--number-wrapper .input::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.input-wrapper.input--number-wrapper .input.prefix {
  padding-left: 25px;
}
.input-wrapper.input--number-wrapper .input:active ~ .symbol, .input-wrapper.input--number-wrapper .input:focus ~ .symbol, .input-wrapper.input--number-wrapper .input.has-content ~ .symbol {
  opacity: 1;
}
.input-wrapper.input--number-wrapper .symbol {
  opacity: 0;
  padding: 8px;
  padding-left: 19px;
  pointer-events: none;
  position: absolute;
  top: 14px;
  transition: opacity 310ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
}
.input-wrapper.input--number-wrapper .symbol.prefix {
  left: 0;
}
.input-wrapper.input--number-wrapper .symbol.suffix {
  right: 8px;
}
.input-wrapper.input--number-wrapper .symbol span {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: rgba(31, 37, 50, 0.4);
}

.input-wrapper.password-wrapper + .forgot-password-wrapper {
  padding: 0 16px;
  text-align: right;
  transform: translateY(-70px);
}
.input-wrapper.password-wrapper + .forgot-password-wrapper .form-msg {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 12px;
  line-height: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  position: relative;
  text-decoration: underline;
  top: auto;
  transform: none;
  transition: color 400ms;
}
.input-wrapper.password-wrapper + .forgot-password-wrapper .form-msg:hover {
  color: white;
}
.input-wrapper.password-wrapper .input {
  display: block;
  left: 50%;
  line-height: 30px;
  margin: 0;
  opacity: 0;
  padding: 0;
  padding-right: 12px;
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  user-select: none;
  visibility: hidden;
  width: calc(100% - 32px);
}
.input-wrapper.password-wrapper .input.visible {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
  visibility: visible;
}
.input-wrapper.password-wrapper .input.hidden {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
}
.input-wrapper.password-wrapper .input.has-content ~ .ic {
  opacity: 0.4;
  pointer-events: auto;
}
.input-wrapper.password-wrapper .ic {
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: auto;
  opacity: 0;
  outline: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 60%;
  transform: translateY(-50%);
  transition: opacity 300ms ease-in;
  user-select: none;
  width: 24px;
}
.input-wrapper.password-wrapper .ic .ic-wrapper {
  position: relative;
}
.input-wrapper.password-wrapper .ic .ic-wrapper:after {
  content: "";
  height: 26px;
  background-color: #1F2532;
  width: 2px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: opacity 300ms ease-in;
  user-select: none;
}
.input-wrapper.password-wrapper .ic.visible .ic-wrapper:after {
  opacity: 1;
}
.input-wrapper.password-wrapper .ic:hover {
  opacity: 1 !important;
}

.login .input-wrapper.password-wrapper .ic .ic-wrapper:after {
  background-color: #fff;
}
.login .input-wrapper.password-wrapper .ic svg #eye {
  fill: #fff;
}
.login .input-wrapper.password-wrapper .ic svg #lashes {
  stroke: #fff;
}

.form .input-wrapper.input-radio-wrapper {
  flex-direction: row;
  justify-content: flex-start;
}
.form .input-wrapper.input-radio-wrapper .radio__label {
  display: flex;
  margin-left: 0;
  margin-right: 22px;
  min-width: 140px;
  position: relative;
}
.form .input-wrapper.input-radio-wrapper .radio__label.with-icon {
  min-width: 50px;
}
.form .input-wrapper.input-radio-wrapper .radio__label.with-icon i {
  border-radius: 8px;
  opacity: 1;
  transition: box-shadow 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  padding: 10px 0;
}
.form .input-wrapper.input-radio-wrapper .radio__label.with-icon i img {
  opacity: 0.2;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.form .input-wrapper.input-radio-wrapper .radio__label.with-icon:hover i {
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
}
.form .input-wrapper.input-radio-wrapper .radio__label.with-icon .input:checked ~ .select-box-wrapper i {
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
}
.form .input-wrapper.input-radio-wrapper .radio__label.with-icon .input:checked ~ .select-box-wrapper i img {
  opacity: 1;
}
.form .input-wrapper.input-radio-wrapper .radio__label:last-child {
  margin-right: 0;
}
.form .input-wrapper.input-radio-wrapper .radio__label .input[type=radio] {
  opacity: 0;
  position: absolute;
  user-select: none;
  visibility: hidden;
}
.form .input-wrapper.input-radio-wrapper .radio__label .input--text {
  left: auto;
  margin-left: 0;
  padding-bottom: 0;
  position: relative;
  transform: translate(0, 0);
}

.input[type=radio] ~ .select-box-wrapper {
  margin-right: 13px;
  width: 20px;
}
@media (min-width: 48em) {
  .input[type=radio] ~ .select-box-wrapper {
    margin-right: 13px;
  }
}
.input[type=radio] ~ .select-box-wrapper i {
  display: inline-block;
  opacity: 0.2;
  text-align: center;
  transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 56px;
}
.input[type=radio] ~ .select-box-wrapper .select-box {
  border: 1px solid rgba(31, 37, 50, 0.4);
  background-color: rgba(75, 213, 182, 0);
  border-radius: 50%;
  height: 20px;
  position: relative;
  transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), border-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 20px;
}
.input[type=radio] ~ .select-box-wrapper .select-box .inner-circle {
  background-color: #fff;
  border-radius: 50%;
  height: 8px;
  opacity: 1;
  position: relative;
  transform: scale(0);
  transform-origin: center center;
  transform-style: preserve-3D;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 8px;
  z-index: 2;
}
.input[type=radio] ~ .select-box-wrapper .select-box .inner-circle-wrapper {
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center center;
  transform-style: preserve-3D;
  transform: translate(-50%, -50%);
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), transform 400ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 8px;
}
.input[type=radio] ~ .select-box-wrapper + .input--text {
  color: rgba(31, 37, 50, 0.4);
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.input[type=radio]:checked ~ .select-box-wrapper .select-box {
  border-color: #4BD5B6;
  background-color: #4BD5B6;
}
.input[type=radio]:checked ~ .select-box-wrapper .select-box .inner-circle {
  opacity: 1;
  transform: scale(1);
}
.input[type=radio]:checked ~ .select-box-wrapper i {
  opacity: 0.6;
}
.input[type=radio]:checked ~ .select-box-wrapper + .input--text {
  color: #4BD5B6;
}

.input-wrapper.input--range-wrapper .input {
  display: none;
  opacity: 0;
  user-select: none;
}
.input-wrapper.input--range-wrapper .range {
  background-color: rgba(31, 37, 50, 0.1);
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  margin: 0;
  transform: translateY(-20px);
  width: calc(100% - 15px);
}
.input-wrapper.input--range-wrapper .range .noUi-connect {
  background-color: #CAF2E9;
}
.input-wrapper.input--range-wrapper .range .noUi-handle {
  background-color: #4BD5B6;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
  cursor: grab;
  height: 20px;
  outline: 0;
  top: -8px;
  width: 20px;
}
.input-wrapper.input--range-wrapper .range .noUi-handle:before, .input-wrapper.input--range-wrapper .range .noUi-handle:after {
  content: none;
  display: none;
}
.input-wrapper.input--range-wrapper .range .noUi-handle:active, .input-wrapper.input--range-wrapper .range .noUi-handle:focus {
  outline: 0;
}
.input-wrapper.input--range-wrapper .range .noUi-tooltip {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 15px;
  line-height: 0.9375rem;
  bottom: -115%;
  border: 0;
  color: rgba(31, 37, 50, 0.4);
  padding: 3px 4px;
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: translate(-50%, 0);
}
.input-wrapper.input--range-wrapper:hover .range .noUi-tooltip {
  color: #1F2532;
}

.input--select-container.input-wrapper {
  min-width: 130px;
}
.input--select-container .option--media {
  position: absolute;
  transform: translateY(-50%) scale(0.6);
  left: 9px;
  top: 50%;
  opacity: 0.8;
}
.input--select-container .option--media + figure {
  background-color: #1F2532;
}
.input--select-container .option--media + figure img {
  opacity: 0.5;
}
.input--select-container .input--select__list--single .option--media {
  left: 1px;
}
.input--select-container[data-search-enabled=false] .input--select__list--dropdown {
  transform: translateY(1px);
}
.input--select-container .icon {
  display: flex;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 32px;
  transform: rotate(0);
  transform-origin: center center;
  transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
  z-index: 5;
}
@media (min-width: 23.4375em) {
  .input--select-container {
    min-width: 290px;
  }
}
.input--select-container select {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.input--select-container .thumbnail {
  height: 60px;
  margin-right: 10px;
  width: 60px;
}
.input--select-container .thumbnail img {
  object-fit: cover;
}
.input--select-container .input--select-wrapper {
  border-bottom: 1px solid #D2D2D2;
  box-shadow: none;
  transition: border-color 300ms ease-out, box-shadow 300ms ease-out;
}
.input--select-container .input--select-wrapper, .input--select-container .input--select-wrapper:focus, .input--select-container .input--select-wrapper:active {
  cursor: pointer;
  outline: 0;
}
.input--select-container .input--label {
  font-size: 12px;
  font-size: 0.75rem;
  color: #BDBDBD;
  margin-left: 1px;
  transition: color 300ms ease-out;
}
.input--select-container.is-focused .icon {
  transform: rotate(180deg);
}
.input--select-container.is-focused .input--select-wrapper {
  border-color: #4BD5B6;
  box-shadow: 0 1px 0 0 #4BD5B6;
}
.input--select-container.is-focused .input--label {
  color: #4BD5B6;
}
.input--select-container.has-thumbnail .input--select__list--dropdown {
  transform: translateY(-78px);
}
.input--select-container.has-thumbnail .input--select__list--dropdown .input--select__input--cloned {
  height: 75px;
  padding-bottom: 0;
}

.input--select {
  font-size: 14px;
  font-size: 0.875rem;
  height: 38px;
  margin-bottom: 0;
  position: relative;
}
.input--select:focus {
  outline: none;
}
.input--select:last-child {
  margin-bottom: 0;
}
.input--select.is-disabled .input--select__inner, .input--select.is-disabled .input--select__input {
  background-color: #EAEAEA;
  cursor: not-allowed;
  user-select: none;
}
.input--select.is-disabled .input--select__item {
  cursor: not-allowed;
}

.input--select__list.input--select__list--multiple .input--select__item {
  background-color: rgba(31, 37, 50, 0.6392156863) !important;
  border: none !important;
  transition: 300ms background-color ease-out;
}
.input--select__list.input--select__list--multiple .input--select__item:hover {
  background-color: #1f2532 !important;
}
.input--select__list.input--select__list--multiple .input--select__item > .input--select__button {
  border-radius: 7.5px;
  background-color: white;
  height: 3px;
  width: 10px;
  margin-left: 10px;
  transform: translateY(7px);
  margin-right: 5px;
}

.input--select[data-type*=select-one] {
  cursor: pointer;
}
.input--select[data-type*=select-one] .input--select__inner {
  padding-bottom: 7.5px;
}
.input--select[data-type*=select-one] .input--select__input {
  background-color: #fff;
  border-bottom: 1px solid #DDD;
  display: block;
  margin: 30px;
  padding: 10px;
  width: 20%;
}
.input--select[data-type*=select-one] .input--select__button {
  background-image: url(/assets/cmscross-inverse.svg);
  background-size: 8px;
  border-radius: 10em;
  height: 20px;
  margin-right: 25px;
  margin-top: -10px;
  opacity: 0.5;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
}
.input--select[data-type*=select-one] .input--select__button:hover, .input--select[data-type*=select-one] .input--select__button:focus {
  opacity: 1;
}
.input--select[data-type*=select-one] .input--select__button:focus {
  box-shadow: 0 0 0 2px #00BCD4;
}
.input--select[data-type*=select-one]:after {
  border-color: rgba(75, 213, 182, 0.3) transparent transparent;
  border-style: solid;
  border-width: 5px;
  content: "";
  height: 0;
  margin-top: -2.5px;
  pointer-events: none;
  position: absolute;
  right: 25px;
  top: 50%;
  width: 0;
}
.input--select[data-type*=select-one].is-open:after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7);
  margin-top: -7.5px;
}
.input--select[data-type*=select-one][dir=rtl]:after {
  left: 11.5px;
  right: auto;
}
.input--select[data-type*=select-one][dir=rtl] .input--select__button {
  left: 0;
  margin-left: 25px;
  margin-right: 0;
  right: auto;
}

.input--select[data-type*=select-multiple] .input--select__inner,
.input--select[data-type*=text] .input--select__inner {
  cursor: text;
}
.input--select[data-type*=select-multiple] .input--select__button,
.input--select[data-type*=text] .input--select__button {
  background-image: url(/assets/cmscross.svg);
  background-size: 8px;
  border-left: 1px solid rgb(0, 142.7735849057, 161);
  display: inline-block;
  line-height: 1;
  margin-bottom: 0;
  margin-left: 8px;
  margin-right: calc(-1 * 8px / 2);
  margin-top: 0;
  opacity: 0.75;
  padding-left: 16px;
  position: relative;
  width: 8px;
}
.input--select[data-type*=select-multiple] .input--select__button:hover, .input--select[data-type*=select-multiple] .input--select__button:focus,
.input--select[data-type*=text] .input--select__button:hover,
.input--select[data-type*=text] .input--select__button:focus {
  opacity: 1;
}

.input--select__inner {
  background-color: #FFF;
  border: 1px solid #DDD;
  border-radius: 2.5px;
  display: inline-block;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
  padding: 7.5px 7.5px 3.75px;
  vertical-align: top;
  width: 100%;
}
.is-focused .input--select__inner, .is-open .input--select__inner {
  border-color: rgb(182.75, 182.75, 182.75);
}
.is-open .input--select__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .input--select__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.input--select__list {
  font-size: 16px;
  font-size: 1rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
  padding-top: 0;
}
.input--select__list.input--select__list--single, .input--select__list.input--select__list--multiple {
  display: inline-block;
  height: 38px;
  padding: 0;
  padding-top: 4px;
  width: 100%;
}
[dir=rtl] .input--select__list.input--select__list--single {
  padding-left: 16px;
  padding-right: 4px;
}
.input--select__list.input--select__list--single .input--select__item {
  width: 100%;
}
.input--select__list.input--select__list--multiple {
  display: inline;
}
.input--select__list.input--select__list--multiple .input--select__item {
  background-color: #00BCD4;
  border: 1px solid rgb(0, 165.3867924528, 186.5);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 3.75px;
  margin-right: 3.75px;
  padding: 4px 10px;
  vertical-align: middle;
  word-break: break-all;
}
.input--select__list.input--select__list--multiple .input--select__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .input--select__list.input--select__list--multiple .input--select__item {
  margin-left: 3.75px;
  margin-right: 0;
}
.input--select__list.input--select__list--multiple .input--select__item.is-highlighted {
  background-color: rgb(0, 165.3867924528, 186.5);
  border: 1px solid rgb(0, 142.7735849057, 161);
}
.is-disabled .input--select__list.input--select__list--multiple .input--select__item {
  background-color: rgb(170.25, 170.25, 170.25);
  border: 1px solid rgb(144.75, 144.75, 144.75);
}

.input--select__list--dropdown {
  background-color: #FFF;
  border-top: 0;
  display: none;
  left: 0;
  margin-top: 0;
  overflow: hidden;
  padding: 4px;
  position: absolute;
  top: 100%;
  transform: translateY(-38px);
  width: 100%;
  word-break: break-all;
  z-index: 4;
}
.input--select__list--dropdown .input--select__input--cloned {
  padding-left: 0;
  padding-top: 0;
}
.input--select__list--dropdown.is-active {
  display: block;
}
.input--select__list--dropdown .is-open {
  border-color: rgb(182.75, 182.75, 182.75);
}
.input--select__list--dropdown .is-flipped {
  border-radius: 0.25rem 0.25rem 0 0;
  bottom: 100%;
  margin-bottom: -1px;
  margin-top: 0;
  top: auto;
}
.input--select__list--dropdown .input--select__list {
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 24px 0 rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow: auto;
  position: relative;
  will-change: scroll-position;
}
.input--select__list--dropdown .input--select__item {
  font-size: 14px;
  padding: 10px;
  position: relative;
}
[dir=rtl] .input--select__list--dropdown .input--select__item {
  text-align: right;
}
@media (min-width: 640px) {
  .input--select__list--dropdown .input--select__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .input--select__list--dropdown .input--select__item--selectable {
    padding-left: 100px;
    padding-right: 10px;
    text-align: right;
  }
  [dir=rtl] .input--select__list--dropdown .input--select__item--selectable:after {
    left: 10px;
    right: auto;
  }
}
.input--select__list--dropdown .input--select__item--selectable.is-highlighted {
  background-color: rgb(242.25, 242.25, 242.25);
}
.input--select__list--dropdown .input--select__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.input--select__item {
  cursor: default;
}
.input--select__item--selectable {
  cursor: pointer;
}
.input--select__item--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  user-select: none;
}

.input--select__heading {
  border-bottom: 1px solid rgb(246.5, 246.5, 246.5);
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
}

.input--select__button {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  cursor: pointer;
  text-indent: -9999px;
}
.input--select__button:focus {
  outline: none;
}

.input--select__input {
  background-color: rgb(248.625, 248.625, 248.625);
  border: 0;
  border-radius: 0;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 5px;
  max-width: 100%;
  padding: 4px 0 4px 2px;
  vertical-align: baseline;
}
.input--select__input:focus {
  outline: 0;
}
[dir=rtl] .input--select__input {
  padding-left: 0;
  padding-right: 2px;
}

.input--select__placeholder {
  opacity: 0.5;
}

.input-wrapper.input--select-container.has-thumbnail {
  height: 90px;
}
.input-wrapper.input--select-container.has-thumbnail .input--select {
  height: 76px;
}
.input-wrapper.input--select-container.has-thumbnail .input--select__list.input--select__list--single, .input-wrapper.input--select-container.has-thumbnail .input--select__list.input--select__list--multiple {
  align-items: center;
  display: flex;
  height: 76px;
}
.input-wrapper.input--select-container .option {
  align-items: center;
  display: flex;
}
.input-wrapper.input--select-container .option__thumbnail {
  margin-right: 10px;
  overflow: hidden;
}
.input-wrapper.input--select-container .option__thumbnail,
.input-wrapper.input--select-container .option__thumbnail img {
  height: 60px;
  width: 60px;
}
.input-wrapper.input--select-container .option__thumbnail img {
  object-fit: contain;
}
.input-wrapper.input--select-container .option__thumbnail img.svg {
  object-fit: contain;
}
.input-wrapper.input--select-container .option__thumbnail.empty {
  border: 1px dashed rgba(31, 37, 50, 0.4);
}

.input-wrapper.input-checkbox--switch-wrapper {
  flex-direction: row;
  height: 40px;
  justify-content: flex-start;
}
.input-wrapper.input-checkbox--switch-wrapper .input--text {
  left: auto;
  position: relative;
  transform: none;
  user-select: none;
}
.input-wrapper.input-checkbox--switch-wrapper .lever {
  background-color: rgba(31, 37, 50, 0.1);
  border-radius: 15px;
  display: inline-block;
  height: 14px;
  margin: 0 16px;
  min-width: 36px;
  position: relative;
  transition: background-color 300ms ease;
  vertical-align: middle;
  width: 36px;
}
.input-wrapper.input-checkbox--switch-wrapper .lever:after, .input-wrapper.input-checkbox--switch-wrapper .lever:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0;
  top: -3px;
  transition: transform 300ms ease, background-color 300ms ease, box-shadow 100ms ease, transform 0.1s ease;
}
.input-wrapper.input-checkbox--switch-wrapper .lever:before {
  background-color: rgba(38, 166, 154, 0.15);
}
.input-wrapper.input-checkbox--switch-wrapper .lever:after {
  background: #fff;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
}
.input-wrapper.input-checkbox--switch-wrapper .input {
  display: none;
  opacity: 0;
  user-select: none;
}
.input-wrapper.input-checkbox--switch-wrapper .input + .input--text {
  color: #1F2532;
}
.input-wrapper.input-checkbox--switch-wrapper .input:checked + .input--text {
  color: rgba(31, 37, 50, 0.4);
}
.input-wrapper.input-checkbox--switch-wrapper .input:checked ~ .lever {
  background-color: rgba(75, 213, 182, 0.3);
}
.input-wrapper.input-checkbox--switch-wrapper .input:checked ~ .lever:after, .input-wrapper.input-checkbox--switch-wrapper .input:checked ~ .lever:before {
  transform: translateX(18px);
}
.input-wrapper.input-checkbox--switch-wrapper .input:checked ~ .lever::after {
  background-color: #4BD5B6;
}
.input-wrapper.input-checkbox--switch-wrapper .input:checked ~ .lever + .input--text {
  color: #1F2532;
}

button[type=submit][hidden=hidden], button[type=submit][hidden=true], button[type=submit].hidden,
.btn[type=submit][hidden=hidden],
.btn[type=submit][hidden=true],
.btn[type=submit].hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  user-select: none;
  visibility: hidden;
}

.textarea-wrapper {
  align-self: flex-start;
  border-radius: 0;
  box-sizing: border-box;
  height: auto;
  margin: 0 auto;
  margin-bottom: 40px;
  min-height: 150px;
  padding: 15px;
  position: relative;
}
@media (min-width: 48em) {
  .textarea-wrapper {
    min-height: 120px;
  }
}
.textarea-wrapper.align-left {
  text-align: left;
}
.textarea-wrapper.align-center {
  text-align: center;
}
.textarea-wrapper.align-right {
  text-align: right;
}
.textarea-wrapper.readonly {
  cursor: auto;
  pointer-events: none;
}
.textarea-wrapper > .input {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  font-family: inherit;
  resize: none;
}
.textarea-wrapper > .input[readonly] {
  cursor: auto;
}
.textarea-wrapper > .input[readonly] ~ .editor-toolbar {
  display: none;
}

.input-wrapper.textarea-wrapper {
  height: auto;
  margin: 0;
  min-height: 124px;
  padding-top: 40px;
}
.input-wrapper.textarea-wrapper.no-md {
  min-height: 80px;
}
.input-wrapper.textarea-wrapper .current-text-type {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
  color: #1F2532;
  left: 15px;
  pointer-events: none;
  position: absolute;
  top: 43px;
  padding: 0 32px 8px 0;
}
.input-wrapper.textarea-wrapper .EasyMDEContainer {
  display: block;
  width: 100%;
}
.input-wrapper.textarea-wrapper .CodeMirror {
  line-height: 18px;
  line-height: 1.125rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  padding: 10px 0;
  width: 100%;
}
.input-wrapper.textarea-wrapper .editor-toolbar {
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: -5px;
  opacity: 1;
  padding: 0;
  text-align: left;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a,
.input-wrapper.textarea-wrapper .editor-toolbar > button {
  align-items: center;
  border: 0;
  color: rgba(31, 37, 50, 0.25) !important;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  height: 30px;
  justify-content: center;
  margin: 0;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  width: 30px;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a > i,
.input-wrapper.textarea-wrapper .editor-toolbar > button > i {
  display: inline-block;
  width: 100%;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.heading-smaller, .input-wrapper.textarea-wrapper .editor-toolbar > a.heading-bigger, .input-wrapper.textarea-wrapper .editor-toolbar > a.fa-header-smaller, .input-wrapper.textarea-wrapper .editor-toolbar > a.fa-header-bigger,
.input-wrapper.textarea-wrapper .editor-toolbar > button.heading-smaller,
.input-wrapper.textarea-wrapper .editor-toolbar > button.heading-bigger,
.input-wrapper.textarea-wrapper .editor-toolbar > button.fa-header-smaller,
.input-wrapper.textarea-wrapper .editor-toolbar > button.fa-header-bigger {
  position: absolute;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.heading-smaller, .input-wrapper.textarea-wrapper .editor-toolbar > a.fa-header-smaller,
.input-wrapper.textarea-wrapper .editor-toolbar > button.heading-smaller,
.input-wrapper.textarea-wrapper .editor-toolbar > button.fa-header-smaller {
  left: 0;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.heading-bigger, .input-wrapper.textarea-wrapper .editor-toolbar > a.fa-header-bigger,
.input-wrapper.textarea-wrapper .editor-toolbar > button.heading-bigger,
.input-wrapper.textarea-wrapper .editor-toolbar > button.fa-header-bigger {
  left: 30px;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a:hover, .input-wrapper.textarea-wrapper .editor-toolbar > a:focus, .input-wrapper.textarea-wrapper .editor-toolbar > a:active, .input-wrapper.textarea-wrapper .editor-toolbar > a.visible, .input-wrapper.textarea-wrapper .editor-toolbar > a.active,
.input-wrapper.textarea-wrapper .editor-toolbar > button:hover,
.input-wrapper.textarea-wrapper .editor-toolbar > button:focus,
.input-wrapper.textarea-wrapper .editor-toolbar > button:active,
.input-wrapper.textarea-wrapper .editor-toolbar > button.visible,
.input-wrapper.textarea-wrapper .editor-toolbar > button.active {
  background-color: transparent;
  border: none;
  color: #1F2532 !important;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.active .fa-link,
.input-wrapper.textarea-wrapper .editor-toolbar > button.active .fa-link {
  color: rgba(31, 37, 50, 0.25) !important;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown {
  background: transparent;
  border-bottom: 1px solid rgba(31, 37, 50, 0.2);
  height: 34px;
  margin-right: auto;
  min-width: 190px;
  max-width: 320px;
  padding-right: 5px;
  position: relative;
  transition: 300ms border-color cubic-bezier(0.25, 0.1, 0.25, 1);
  width: auto;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown:after,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #1F2532;
  content: "";
  height: 0;
  margin-bottom: 5px;
  transform: rotate(180deg);
  transition: 300ms transform cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 0;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown:active, .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown:focus,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown:active,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown:focus {
  border-color: #4BD5B6;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown:active .easymde-dropdown-content, .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown:focus .easymde-dropdown-content,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown:active .easymde-dropdown-content,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown:focus .easymde-dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown:active:after, .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown:focus:after,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown:active:after,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown:focus:after {
  transform: rotate(0);
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content {
  background-color: #fff;
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.05);
  flex-direction: column;
  display: flex;
  top: 35px;
  left: 0;
  min-width: 100%;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translateY(-5px);
  transition: 300ms opacity cubic-bezier(0.25, 0.1, 0.25, 1), 300ms transform cubic-bezier(0.25, 0.1, 0.25, 1);
  width: auto;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button {
  border: 1px solid red;
  border: none;
  color: rgba(31, 37, 50, 0.3);
  height: auto;
  min-height: 30px;
  text-align: left;
  transition: 300ms color cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a:hover, .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a:focus, .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a:active, .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a.visible, .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a.active,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button:hover,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button:focus,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button:active,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button.visible,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button.active,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a:hover,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a:focus,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a:active,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a.visible,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a.active,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button:hover,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button:focus,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button:active,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button.visible,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button.active {
  background-color: transparent;
  border: none;
  color: #1F2532 !important;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a i,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button i,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a i,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button i {
  display: none;
}
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > a:after,
.input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown .easymde-dropdown-content > button:after,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > a:after,
.input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown .easymde-dropdown-content > button:after {
  content: attr(title);
  position: relative;
  white-space: nowrap;
}
.input-wrapper.textarea-wrapper .CodeMirror,
.input-wrapper.textarea-wrapper .CodeMirror-scroll {
  min-height: 124px !important;
}
.input-wrapper.textarea-wrapper .CodeMirror-code .cm-formatting {
  opacity: 0.2;
  user-select: none;
}
.input-wrapper.textarea-wrapper .CodeMirror-code span {
  font-weight: normal;
  word-break: break-word;
}
.input-wrapper.textarea-wrapper .CodeMirror-code .cm-link {
  color: #1F2532;
}
.input-wrapper.textarea-wrapper .input.has-content ~ .input--text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
  color: #BDBDBD;
  display: inline-block;
  font-weight: 400;
  height: auto;
  left: 16px;
  letter-spacing: 0.4px;
  padding-bottom: 5px;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateY(15px);
  transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.input-wrapper.textarea-wrapper .input[data-embed=true] ~ .editor-toolbar, .input-wrapper.textarea-wrapper .input[data-embed=true] ~ .editor-statusbar {
  display: none;
}
.input-wrapper.textarea-wrapper .input ~ .CodeMirror, .input-wrapper.textarea-wrapper .input ~ .editor-toolbar {
  transition: border-color 300ms ease-out;
}
.input-wrapper.textarea-wrapper .input ~ .editor-toolbar, .input-wrapper.textarea-wrapper .input ~ .editor-statusbar {
  width: 100%;
}
.input-wrapper.textarea-wrapper .input ~ .editor-statusbar .cursor {
  display: none;
}
.input-wrapper.textarea-wrapper .input:focus:not([readonly]), .input-wrapper.textarea-wrapper .input.is-focused:not([readonly]) {
  border-color: #4BD5B6;
  box-shadow: 0 1px 0 0 #4BD5B6;
}
.input-wrapper.textarea-wrapper .input:focus:not([readonly]) ~ .input--text, .input-wrapper.textarea-wrapper .input.is-focused:not([readonly]) ~ .input--text {
  color: #4BD5B6;
}
.input-wrapper.textarea-wrapper .input:focus:not([readonly]) ~ .CodeMirror, .input-wrapper.textarea-wrapper .input.is-focused:not([readonly]) ~ .CodeMirror {
  border-bottom: 1px solid #4BD5B6;
}
.input-wrapper.textarea-wrapper .form-msg {
  bottom: 0;
  top: auto;
  transform: translate(10px, -14px);
}

.form--main-page .input-wrapper.textarea-wrapper {
  max-width: 1170px;
}
.form--main-page .input-wrapper.textarea-wrapper[data-col="6"] {
  max-width: 585px;
}
.form--main-page .input-wrapper.textarea-wrapper[data-col="7"] {
  max-width: 682.5px;
}
.form--main-page .input-wrapper.textarea-wrapper[data-col="8"] {
  max-width: 780px;
}

.modal-dialog .form .input-wrapper.textarea-wrapper {
  max-width: 750px;
}
.modal-dialog .form .input-wrapper.textarea-wrapper[data-col="6"] {
  max-width: 375px;
}
.modal-dialog .form .input-wrapper.textarea-wrapper[data-col="7"] {
  max-width: 437.5px;
}
.modal-dialog .form .input-wrapper.textarea-wrapper[data-col="8"] {
  max-width: 500px;
}
.modal-dialog[data-size=s] .form .input-wrapper.textarea-wrapper {
  max-width: 360px;
}
.modal-dialog[data-size=s] .form .input-wrapper.textarea-wrapper[data-col="6"] {
  max-width: 180px;
}
.modal-dialog[data-size=s] .form .input-wrapper.textarea-wrapper[data-col="7"] {
  max-width: 210px;
}
.modal-dialog[data-size=s] .form .input-wrapper.textarea-wrapper[data-col="8"] {
  max-width: 240px;
}

div[data-col="3"] .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown,
div[data-col="3"] .input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown,
fieldset[data-col="3"] .input-wrapper.textarea-wrapper .editor-toolbar > a.easymde-dropdown,
fieldset[data-col="3"] .input-wrapper.textarea-wrapper .editor-toolbar > button.easymde-dropdown {
  min-width: 150px;
}

.item {
  outline: 0;
  width: 100%;
}
.item.draggable-mirror {
  opacity: 1;
  z-index: 50;
}
.item.draggable-mirror .card {
  box-shadow: 0 18px 32px 0 rgba(0, 0, 0, 0.08) !important;
}
.item.draggable-mirror .card .img-wrapper:after {
  opacity: 1 !important;
}
.item article {
  transition: all 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.item article .tags {
  display: none;
}
.item article a {
  width: 100%;
}
.item article a:hover {
  text-decoration: none;
}
.item article > a,
.item article > button {
  display: block;
  padding: 0;
  width: 100%;
}
.item article > a + .actions-wrapper,
.item article > button + .actions-wrapper {
  position: absolute;
  user-select: none;
}
.item article > a + .actions-wrapper a,
.item article > a + .actions-wrapper button,
.item article > button + .actions-wrapper a,
.item article > button + .actions-wrapper button {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.item article > a + .actions-wrapper:hover a,
.item article > a + .actions-wrapper:hover button,
.item article > button + .actions-wrapper:hover a,
.item article > button + .actions-wrapper:hover button {
  opacity: 1;
  pointer-events: auto;
}
.item article > a:hover + .actions-wrapper,
.item article > button:hover + .actions-wrapper {
  pointer-events: auto;
}
.item article > a:hover + .actions-wrapper a,
.item article > a:hover + .actions-wrapper button,
.item article > button:hover + .actions-wrapper a,
.item article > button:hover + .actions-wrapper button {
  opacity: 0.7;
  pointer-events: auto;
}
.item[data-type=row] {
  padding: 0 15px;
}
.item[data-type=row].row--sortable article > a {
  cursor: grab;
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="3"] {
    width: 25%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="4"] {
    width: 33.3333333333%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="5"] {
    width: 41.65%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="6"] {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="7"] {
    width: 58.32%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="8"] {
    width: 66.65%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="9"] {
    width: 75%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="10"] {
    width: 83.32%;
  }
}
@media (min-width: 48em) {
  .item[data-type=row][data-col="11"] {
    width: 91.74%;
  }
}
.item[data-type=row] article {
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  min-height: 52px;
  position: relative;
}
.item[data-type=row] article:hover {
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.05);
}
.item[data-type=row] article > a,
.item[data-type=row] article > button {
  align-items: center;
  background: transparent;
  display: flex;
  height: 52px;
}
.item[data-type=row] article .text-wrapper {
  width: 100%;
}
.item[data-type=row] article .title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
  color: #1F2532;
  display: flex;
  font-weight: 600;
  margin: 0;
  max-width: none;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 48em) {
  .item[data-type=row] article .title {
    padding-left: 23px;
  }
}
.item[data-type=row] article .title span {
  display: inline-block;
  font-weight: 300;
  margin: 0 5px;
}
.item[data-type=row] article .title span.extra-info {
  font-style: italic;
  margin-left: auto;
  max-width: 275px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item[data-type=row] article .title,
.item[data-type=row] article .review-wrapper {
  padding: 0 16px;
  user-select: none;
  width: calc(100% - 80px);
}
.item[data-type=row] article .review-wrapper {
  align-items: center;
  display: flex;
  overflow: hidden;
}
.item[data-type=row] article .review-wrapper .username,
.item[data-type=row] article .review-wrapper .title,
.item[data-type=row] article .review-wrapper .message {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
  font-weight: 400;
  margin-bottom: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}
.item[data-type=row] article .review-wrapper .message {
  padding-right: 15px;
  text-align: left;
  width: 100%;
}
.item[data-type=row] article .review-wrapper .title {
  min-width: 150px;
  max-width: 150px;
  width: 100%;
}
.item[data-type=row] article .review-wrapper .username {
  min-width: 180px;
  max-width: 180px;
  width: 100%;
}
.item[data-type=row] article .review-wrapper .username[data-verified=true]:after {
  border: 2px solid transparent;
  border-bottom-color: #1F2532;
  border-right-color: #1F2532;
  border-radius: 2px;
  content: "";
  height: 13px;
  opacity: 0.3;
  position: absolute;
  transform: rotateZ(37deg) skew(10deg, 10deg) translate(5px, 0);
  transform-origin: 100% 100%;
  width: 8px;
  z-index: 1;
}
.item[data-type=row] article .review-wrapper .list--rating {
  width: auto;
}
.item[data-type=row] article .review-wrapper .list--rating i {
  display: inline-block;
}
.item[data-type=row] article .review-wrapper .list--rating img {
  height: 17px;
  width: 100%;
}
.item[data-type=row] article .review-wrapper .list--rating {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  margin-bottom: 0;
}
.item[data-type=row] article .review-wrapper .list--rating li {
  opacity: 0.2;
  padding: 0 2px;
}
.item[data-type=row] article .review-wrapper .list--rating li.active {
  opacity: 1;
}
.item[data-type=row] article .actions-wrapper {
  display: flex;
  padding: 5px;
  right: 0;
}
.item[data-type=row] article .actions-wrapper a {
  color: rgba(31, 37, 50, 0.3);
  display: flex;
  padding: 5px 10px;
}
.item[data-type=row] article .actions-wrapper a img {
  opacity: 0.3;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.item[data-type=row] article .actions-wrapper a:hover {
  color: #1f2532;
  text-decoration: none;
}
.item[data-type=row] article .actions-wrapper a:hover img {
  opacity: 1;
}
.item[data-type=row] article[data-active=false] {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.03), 0 1px 6px 0 rgba(0, 0, 0, 0.03);
}
.item[data-type=row] article[data-active=false] .text-wrapper {
  opacity: 0.3;
}
.item[data-type=card] {
  margin: 0 5px 10px;
  max-width: calc(50% - 10px);
  width: 100%;
}
@media (min-width: 37.6875em) {
  .item[data-type=card] {
    margin: 0 15px 30px;
    max-width: calc(33.3333333333% - 30px);
  }
}
@media (min-width: 48em) {
  .item[data-type=card] {
    max-width: calc(25% - 30px);
  }
}
.item[data-type=card][data-status=to_delete] {
  opacity: 0.45;
  pointer-events: none !important;
  user-select: none;
}
.item[data-type=card][data-status=to_delete] a, .item[data-type=card][data-status=to_delete] button {
  pointer-events: none !important;
}
.item[data-type=card][data-status=to_delete] .text-wrapper {
  position: relative;
}
.item[data-type=card][data-status=to_delete] p.status {
  background-color: gray;
  color: white;
  font-weight: bold;
  left: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 100%;
}
.item[data-type=card] .card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
  color: #1F2532;
  display: inline-block;
  position: relative;
  transition: box-shadow 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}
.item[data-type=card] .card .tags {
  align-items: center;
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  position: absolute;
  flex-wrap: wrap;
  right: 8px;
  top: 8px;
  width: 95%;
}
.item[data-type=card] .card .tags li {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 2px 8px;
  color: black;
  background-color: white;
  border: 1px solid black;
  border-radius: 40px;
  font-size: 14px;
}
.item[data-type=card] .card .tags li[data-type=private-only] {
  background-color: #f9d21a;
}
.item[data-type=card] .card .icon--big {
  left: 50%;
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%);
  user-select: none;
}
.item[data-type=card] .card .img-wrapper {
  background: rgba(31, 37, 50, 0.7);
  position: relative;
}
.item[data-type=card] .card .img-wrapper:after {
  content: "";
  background: rgba(31, 37, 50, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}
.item[data-type=card] .card:hover {
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.05);
}
.item[data-type=card] .card:hover .img-wrapper:after {
  opacity: 1;
}
.item[data-type=card] .card:hover .actions-wrapper a {
  color: rgba(255, 255, 255, 0.7);
}
.item[data-type=card] .card:hover .actions-wrapper a img {
  opacity: 0.7;
}
.item[data-type=card] .card[data-active=false] .img-wrapper {
  opacity: 0.4;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.item[data-type=card] .card[data-active=false]:hover .img-wrapper {
  opacity: 1;
}
.item[data-type=card] .card[data-active=false] .text-wrapper {
  opacity: 0.6;
}
.item[data-type=card] .card > a,
.item[data-type=card] .card > button {
  border-radius: 15px;
  overflow: hidden;
  user-select: none;
}
.item[data-type=card] .card > a:hover, .item[data-type=card] .card > a:focus, .item[data-type=card] .card > a:active,
.item[data-type=card] .card > button:hover,
.item[data-type=card] .card > button:focus,
.item[data-type=card] .card > button:active {
  border-radius: 15px;
}
.item[data-type=card] .card > .img-wrapper {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  cursor: grab;
}
.item[data-type=card] .card.no-text > .img-wrapper {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.item[data-type=card] .card .img-wrapper {
  align-items: center;
  display: flex;
  height: 190px;
  overflow: hidden;
  text-align: center;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1), background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
}
.item[data-type=card] .card .img-wrapper img {
  height: 190px;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
  width: 100%;
}
.item[data-type=card] .card .img-wrapper img.svg {
  height: auto;
  object-fit: contain;
}
.item[data-type=card] .card .text-wrapper {
  padding: 25px 15px 20px;
}
.item[data-type=card] .card .text-wrapper .title,
.item[data-type=card] .card .text-wrapper .description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
  font-weight: 400;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item[data-type=card] .card .text-wrapper .title {
  color: #1F2532;
  margin-bottom: 5px;
  padding: 0;
}
.item[data-type=card] .card .text-wrapper .description {
  color: rgba(31, 37, 50, 0.5);
}
.item[data-type=card] .card .actions-wrapper {
  display: flex;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.item[data-type=card] .card .actions-wrapper li:first-child {
  order: 2;
}
.item[data-type=card] .card .actions-wrapper a {
  color: rgba(255, 255, 255, 0);
  display: inline-block;
  padding: 10px;
  transition: background-color 300ms ease-out, color 300ms ease-out;
}
.item[data-type=card] .card .actions-wrapper a img {
  transition: opacity 300ms ease-out;
  opacity: 0;
}
.item[data-type=card] .card .actions-wrapper a:hover {
  color: white;
}
.item[data-type=card] .card .actions-wrapper a:hover img {
  opacity: 1;
}
.item[data-type=card] .card .indicator {
  left: 15px;
  pointer-events: none;
  position: absolute;
  top: 15px;
  user-select: none;
}
.item[data-type=card] .card .indicator.indicator--highlighted {
  color: gold;
}
.item.draggable-source--is-dragging article {
  background-color: #1F2532;
  opacity: 0.05;
}
.item.item--content--created.draggable-source--is-dragging .content {
  background-color: #1F2532;
  opacity: 0.05;
}
.item.item--content--created .content {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  transition: all 300ms ease-out;
  user-select: none;
  width: 100%;
}
.item.item--content--created .content[data-content-type=three_columns] {
  flex-wrap: nowrap;
}
.item.item--content--created .content[data-content-type=three_columns] .content--download {
  padding-top: 54px;
}
.item.item--content--created .content[data-content-type=multi_columns] {
  flex-wrap: nowrap;
}
.item.item--content--created .content[data-content-type=multi_columns] .content--download {
  padding-top: 54px;
}
.item.item--content--created .content[data-content-type=multi_columns] .content--download .card {
  position: relative;
}
.item.item--content--created .content[data-content-type=multi_columns] .content--download .card .img-wrapper {
  height: 60px;
}
.item.item--content--created .content[data-content-type=multi_columns] .content--download .card .icon--big {
  height: 45px;
  padding-top: 8px;
  top: 0;
  transform: translateX(-50%);
}
.item.item--content--created .content[data-content-type=multi_columns] .content--download .card .icon--big img {
  height: 42px;
}
.item.item--content--created .content > .actions-wrapper {
  right: 20px !important;
  top: 5px !important;
}
.item.item--content--created .content:hover {
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.05);
}
.item.item--content--created .content .item {
  z-index: 5;
}
.item.item--content--created .content .item .card {
  height: 100%;
}
.item.item--content--created .content .edit-content {
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.item.item--content--created .content .content-preview {
  height: 100%;
  min-height: 190px;
  width: 100%;
}
.item.item--content--created .content .content-preview .item {
  user-select: none;
  pointer-events: none;
}
.item.item--content--created .content .content-preview .item .card {
  overflow: hidden;
}
.item.item--content--created .content .content-preview.content--empty {
  min-height: 0;
}
.item.item--content--created .content .content-preview.content--spacer {
  min-height: 50px;
  max-height: 50px;
}
.item.item--content--created .content .content-preview.content--button-download .button-download {
  align-items: center;
  background-color: #4E1114;
  border-radius: 25px;
  color: #ffffff;
  display: flex;
  font-family: inherit;
  height: 50px;
  justify-content: center;
  letter-spacing: 0;
  margin: 0 auto;
  padding: 17px 30px;
  position: relative;
  text-transform: initial;
  width: fit-content;
}
.item.item--content--created .content .content-preview.content--button .col {
  display: flex;
}
.item.item--content--created .content .content-preview.content--button .content-btn-title {
  align-items: center;
  background: #095BA1;
  border-radius: 25px;
  color: white;
  display: flex;
  justify-content: center;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 10px 20px;
  width: fit-content;
}
.item.item--content--created .content .content-preview.content--button .content-btn-href {
  align-items: center;
  display: flex;
  font-style: italic;
  justify-content: flex-start;
  margin-bottom: 10px;
  opacity: 0.4;
}
.item.item--content--created .content .content-preview .content-wrapper {
  padding: 54px 15px 15px;
  margin-bottom: 0;
}
@media (min-width: 37.6875em) {
  .item.item--content--created .content .content-preview[data-col="2"]:first-child, .item.item--content--created .content .content-preview[data-col="3"]:first-child, .item.item--content--created .content .content-preview[data-col="4"]:first-child, .item.item--content--created .content .content-preview[data-col="5"]:first-child, .item.item--content--created .content .content-preview[data-col="6"]:first-child, .item.item--content--created .content .content-preview[data-col="7"]:first-child, .item.item--content--created .content .content-preview[data-col="8"]:first-child, .item.item--content--created .content .content-preview[data-col="9"]:first-child, .item.item--content--created .content .content-preview[data-col="10"]:first-child {
    padding-left: 15px;
  }
  .item.item--content--created .content .content-preview[data-col="2"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="3"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="4"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="5"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="6"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="7"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="8"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="9"]:nth-last-child(3), .item.item--content--created .content .content-preview[data-col="10"]:nth-last-child(3) {
    padding-right: 15px;
  }
}
.item.item--content--created .content .content-preview[data-col="2"] .item, .item.item--content--created .content .content-preview[data-col="3"] .item, .item.item--content--created .content .content-preview[data-col="4"] .item, .item.item--content--created .content .content-preview[data-col="5"] .item, .item.item--content--created .content .content-preview[data-col="6"] .item, .item.item--content--created .content .content-preview[data-col="7"] .item, .item.item--content--created .content .content-preview[data-col="8"] .item, .item.item--content--created .content .content-preview[data-col="9"] .item, .item.item--content--created .content .content-preview[data-col="10"] .item {
  margin: 0 auto 10px;
}
@media (min-width: 37.6875em) {
  .item.item--content--created .content .content-preview[data-col="2"] .item, .item.item--content--created .content .content-preview[data-col="3"] .item, .item.item--content--created .content .content-preview[data-col="4"] .item, .item.item--content--created .content .content-preview[data-col="5"] .item, .item.item--content--created .content .content-preview[data-col="6"] .item, .item.item--content--created .content .content-preview[data-col="7"] .item, .item.item--content--created .content .content-preview[data-col="8"] .item, .item.item--content--created .content .content-preview[data-col="9"] .item, .item.item--content--created .content .content-preview[data-col="10"] .item {
    margin: 0 15px 30px;
  }
}
@media (min-width: 37.6875em) {
  .item.item--content--created .content .content-preview[data-col="2"] {
    max-width: 33.3333333333%;
  }
  .item.item--content--created .content .content-preview[data-col="3"] {
    max-width: 25%;
  }
  .item.item--content--created .content .content-preview[data-col="4"] {
    max-width: 33.3333333333%;
  }
  .item.item--content--created .content .content-preview[data-col="6"] {
    max-width: 50%;
  }
  .item.item--content--created .content .content-preview[data-col="8"] {
    max-width: 66.65%;
  }
}
@media (min-width: 62em) {
  .item.item--content--created .content .content-preview[data-col="2"] {
    max-width: 20%;
  }
}
.item.item--content--created .content .content-preview.content--button {
  min-height: 60px;
}
.item.item--content--created .content .content-preview.content--button .col {
  text-align: center;
}
.item.item--content--created .content .content-preview.content--button a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  background-color: #00a3da;
  color: #f9f6ef;
  display: inline-block;
  font-weight: 500;
  height: 60px;
  margin: 0 auto;
  padding: 20px 40px;
  pointer-events: none;
  text-align: center;
  user-select: none;
  width: auto;
}
.item.item--content--created .content .content-preview.content--text {
  text-align: left;
}
.item.item--content--created .content .content-preview.content--text h1, .item.item--content--created .content .content-preview.content--text h2, .item.item--content--created .content .content-preview.content--text h3, .item.item--content--created .content .content-preview.content--text h4, .item.item--content--created .content .content-preview.content--text h5, .item.item--content--created .content .content-preview.content--text h6, .item.item--content--created .content .content-preview.content--text p {
  font-weight: normal;
  margin-bottom: 10px;
  text-align: left;
  word-break: break-word;
}
.item.item--content--created .content .content-preview.content--text iframe {
  border-radius: 15px;
  height: 100%;
  min-height: 230px;
  width: 100%;
}
.item.item--content--created .content .content-preview.content--text a {
  color: #1F2532;
  text-decoration: underline;
}
.item.item--content--created .content .content-preview.content--text strong {
  font-family: inherit;
  font-weight: 900;
}
@media (min-width: 37.6875em) {
  .item.item--content--created .content .content-preview.content--text:first-child {
    padding-left: 15px;
  }
  .item.item--content--created .content .content-preview.content--text:nth-child(2) {
    padding-right: 15px;
  }
}
.item.item--content--created .content .content-preview.content--text.center {
  text-align: center;
}
.item.item--content--created .content .content-preview.content--text.center h1, .item.item--content--created .content .content-preview.content--text.center h2, .item.item--content--created .content .content-preview.content--text.center h3, .item.item--content--created .content .content-preview.content--text.center h4, .item.item--content--created .content .content-preview.content--text.center h5, .item.item--content--created .content .content-preview.content--text.center h6, .item.item--content--created .content .content-preview.content--text.center p {
  text-align: center;
}
.item.item--content--created .content .content-preview.content--text.right {
  text-align: right;
}
.item.item--content--created .content .content-preview.content--text.right h1, .item.item--content--created .content .content-preview.content--text.right h2, .item.item--content--created .content .content-preview.content--text.right h3, .item.item--content--created .content .content-preview.content--text.right h4, .item.item--content--created .content .content-preview.content--text.right h5, .item.item--content--created .content .content-preview.content--text.right h6, .item.item--content--created .content .content-preview.content--text.right p {
  text-align: right;
}
.item.item--content--created .content .content-preview.content--video .item {
  margin: 0;
  max-width: none;
  width: 100%;
}
.item.item--content--created .content .content-preview.content--video figure, .item.item--content--created .content .content-preview.content--image figure {
  height: 100%;
  margin: 0;
}
.item.item--content--created .content .content-preview.content--video figure img, .item.item--content--created .content .content-preview.content--image figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.item.item--content--created .content .content-preview.content--video video, .item.item--content--created .content .content-preview.content--image video {
  display: block;
  width: 100%;
}
.item.item--content--created .content .content-preview.content--image {
  padding-top: 54px;
}
.item.item--content--created .content .content-preview.content--image .content-wrapper {
  padding: 0;
}
.item.item--content--created .content .content-preview.content--image .item {
  max-width: none;
  width: calc(100% - 30px);
}
.item.item--content--created .content .content-preview.content--image .text-wrapper {
  word-break: break-word;
}
.item.item--content--created .content .content-preview.content--image .text-wrapper p {
  text-align: left;
}
.item.item--content--created .content .content-preview.content--slider .slider-wrapper {
  height: 250px;
}
.item.item--content--created .content .content-preview.content--slider ~ .actions-wrapper {
  z-index: 5;
}
.item.item--content--created .content .content-preview.content--gallery .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-bottom: 0;
  padding-top: 50px;
}
.item.item--content--created .content .content-preview.content--gallery .content-wrapper .item {
  height: 140px;
  width: calc(50% - 10px);
  margin-bottom: 30px;
}
.item.item--content--created .content .content-preview.content--gallery .content-wrapper .item figure {
  height: 100%;
}
.item.item--content--created .content .content-preview.content--gallery .content-wrapper .item figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 37.6875em) {
  .item.item--content--created .content .content-preview.content--gallery .content-wrapper .item {
    width: calc(50% - 30px);
  }
}
@media (min-width: 48em) {
  .item.item--content--created .content .content-preview.content--gallery .content-wrapper .item {
    width: calc(33.33332% - 30px);
  }
}
@media (min-width: 62em) {
  .item.item--content--created .content .content-preview.content--gallery .content-wrapper .item {
    width: calc(25% - 30px);
  }
}
.item.item--content--created .content .content-preview.content--gallery.single {
  max-height: none;
}
.item.item--content--created .content .content-preview.content--gallery.single .content-wrapper {
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.item.item--content--created .content .content-preview.content--gallery.single .item {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  z-index: 0;
}
.item.item--content--created .content .content-preview.content--embed img {
  object-fit: cover;
  width: 100%;
}
.item.item--content--created .content .content-preview.content--embed video {
  width: 100%;
}
.item.item--content--created .content .content-preview.content--embed iframe {
  height: 100%;
  min-height: 230px;
  width: 100%;
}
.item.item--content--created .content .content-preview.content--download li {
  min-width: -webkit-fill-available;
}
.item.item--content--created .content .content-preview.content--download .btn--download {
  margin: 0;
  margin-bottom: 10px;
}
.item.item--content--created .content .actions-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}
.item.item--content--created .content .actions-wrapper .list--actions {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: flex-start;
  margin-bottom: 0;
}
.item.item--content--created .content .actions-wrapper .list--actions li {
  display: inline-block;
}
.item.item--content--created .content .actions-wrapper .list--actions li a,
.item.item--content--created .content .actions-wrapper .list--actions li button {
  color: rgba(31, 37, 50, 0.6);
  display: inline-block;
  height: 50px;
  padding: 10px;
  transition: color 300ms cubic-bezier(0.25, 0.1, 0.25, 1), opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.item.item--content--created .content .actions-wrapper .list--actions li a img,
.item.item--content--created .content .actions-wrapper .list--actions li button img {
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 0.6;
}
.item.item--content--created .content .actions-wrapper .list--actions li a:hover,
.item.item--content--created .content .actions-wrapper .list--actions li button:hover {
  color: #1f2532;
}
.item.item--content--created .content .actions-wrapper .list--actions li a:hover img,
.item.item--content--created .content .actions-wrapper .list--actions li button:hover img {
  opacity: 1;
}
.item.item--content--created.draggable-mirror {
  z-index: 500;
}
.item.item--content--created.draggable-mirror .content {
  transform: scale(0.75);
}

html[data-device=mobile] .item article > a + .actions-wrapper a,
html[data-device=mobile] .item article > a + .actions-wrapper button,
html[data-device=mobile] .item article > button + .actions-wrapper a,
html[data-device=mobile] .item article > button + .actions-wrapper button, html[data-device=tablet] .item article > a + .actions-wrapper a,
html[data-device=tablet] .item article > a + .actions-wrapper button,
html[data-device=tablet] .item article > button + .actions-wrapper a,
html[data-device=tablet] .item article > button + .actions-wrapper button {
  opacity: 1;
  pointer-events: auto;
}
html[data-device=mobile] .item[data-type=card] .img-wrapper:after, html[data-device=tablet] .item[data-type=card] .img-wrapper:after {
  opacity: 1;
}
html[data-device=mobile] .item[data-type=card] .actions-wrapper a img,
html[data-device=mobile] .item[data-type=card] .actions-wrapper button img, html[data-device=tablet] .item[data-type=card] .actions-wrapper a img,
html[data-device=tablet] .item[data-type=card] .actions-wrapper button img {
  opacity: 1;
}
html[data-device=mobile] .item.item--content--created .img-wrapper:after, html[data-device=tablet] .item.item--content--created .img-wrapper:after {
  opacity: 0;
}
html[data-device=mobile][data-os=ios] .cmp-drag-and-drop .item[data-type=card].sortable .card > a, html[data-device=tablet][data-os=ios] .cmp-drag-and-drop .item[data-type=card].sortable .card > a {
  pointer-events: none;
}
html[data-device=mobile][data-os=ios] .cmp-drag-and-drop .item[data-type=card].sortable .card > a:after, html[data-device=tablet][data-os=ios] .cmp-drag-and-drop .item[data-type=card].sortable .card > a:after {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19px;
  line-height: 1.1875rem;
  align-items: center;
  border: 1px solid white;
  border-radius: 30px;
  color: white;
  content: "Edit";
  display: flex;
  font-weight: 500;
  height: 44px;
  justify-content: center;
  left: 50%;
  pointer-events: auto;
  position: absolute;
  top: 75px;
  transform: translateX(-50%);
  width: 114px;
}

.modals-wrapper {
  z-index: 7000;
}

.list--modals {
  bottom: 0;
  height: 100vh;
  left: 0;
  margin: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  user-select: none;
  width: 100%;
  z-index: 300;
}
.list--modals.packs {
  z-index: 301;
}

.modal {
  align-items: flex-start;
  background-color: rgba(31, 37, 50, 0.85);
  bottom: 0;
  display: flex;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 300ms ease-out;
  user-select: none;
  visibility: hidden;
  width: 100%;
  will-change: opacity;
  z-index: 6000;
}
.modal[data-modal=modal--pack] {
  z-index: 6001;
}
.modal .modal-dialog {
  margin: 0 auto;
  max-width: 603px;
  padding: 15px;
  position: relative;
  width: 100%;
}
@media (min-width: 48em) {
  .modal .modal-dialog {
    max-width: 850px;
  }
}
.modal .modal-dialog[data-size=s] {
  max-width: 460px;
}
@media (min-width: 48em) {
  .modal .modal-dialog[data-size=l] {
    max-width: 1440px;
  }
}
@media (min-width: 48em) {
  .modal .modal-dialog[data-size=xl] {
    max-width: 2080px;
  }
}
.modal .modal__content {
  background-color: #FFF;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  position: relative;
  width: 100%;
}
.modal .modal__content .modal__body {
  padding: 15px 5px 0;
}
@media (min-width: 37.6875em) {
  .modal .modal__content .modal__body {
    padding: 15px 35px 0;
  }
}
.modal .modal__content .title-wrapper {
  padding: 30px 15px;
  position: relative;
}
.modal .modal__content .title-wrapper .main-actions-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-right: 60px;
  pointer-events: none;
  transform: translate(0, 18px);
}
.modal .modal__content .title-wrapper .main-actions-wrapper ~ .title {
  padding-right: 95px;
}
.modal .modal__content .title-wrapper .title,
.modal .modal__content .title-wrapper .description {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #1F2532;
  text-align: left;
}
.modal .modal__content .title-wrapper .title {
  margin-bottom: 0;
  padding-right: 35px;
}
.modal .modal__content .title-wrapper .description {
  font-size: 14px;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 10px;
}
.modal .modal__content .title-wrapper .description a {
  color: #fff;
}
.modal .modal__content .title-wrapper .description a:hover {
  color: #1E3685;
}
.modal .modal__content .title-wrapper .close {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 13px;
  line-height: 0.8125rem;
  align-items: baseline;
  border-radius: 20px;
  color: #1F2532;
  cursor: pointer;
  display: flex;
  float: none;
  height: 40px;
  justify-content: center;
  padding: 7px;
  position: absolute;
  right: 15px;
  top: 22px;
  transition: opacity 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 40px;
  z-index: 2;
}
.modal .modal__content .title-wrapper .close:hover {
  opacity: 0.5;
}
.modal .form label,
.modal .form label .input,
.modal .form .input--radio,
.modal .form .input--radio .input,
.modal .form .input--checkbox-wrapper,
.modal .form .input--checkbox-wrapper .input,
.modal .form .input-wrapper,
.modal .form .input-wrapper .input {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
}
.modal .form .toggle[aria-expanded=true] input,
.modal .form .toggle[aria-expanded=true] textarea,
.modal .form .toggle[aria-expanded=true] select,
.modal .form fieldset[aria-expanded=true] input,
.modal .form fieldset[aria-expanded=true] textarea,
.modal .form fieldset[aria-expanded=true] select {
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 200ms ease-out;
  user-select: auto;
  visibility: visible;
}
.modal.is-active.fading-out {
  opacity: 0;
}
.modal.is-active .form label,
.modal.is-active .form label .input,
.modal.is-active .form .input--radio,
.modal.is-active .form .input--radio .input,
.modal.is-active .form .input--checkbox-wrapper,
.modal.is-active .form .input--checkbox-wrapper .input,
.modal.is-active .form .input-wrapper,
.modal.is-active .form .input-wrapper .input {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
  visibility: visible;
}
.modal.is-active .form label[readonly=readonly],
.modal.is-active .form label .input[readonly=readonly],
.modal.is-active .form .input--radio[readonly=readonly],
.modal.is-active .form .input--radio .input[readonly=readonly],
.modal.is-active .form .input--checkbox-wrapper[readonly=readonly],
.modal.is-active .form .input--checkbox-wrapper .input[readonly=readonly],
.modal.is-active .form .input-wrapper[readonly=readonly],
.modal.is-active .form .input-wrapper .input[readonly=readonly] {
  cursor: auto;
  pointer-events: none;
}
.modal.is-active .form label.password--text, .modal.is-active .form label.password,
.modal.is-active .form label .input.password--text,
.modal.is-active .form label .input.password,
.modal.is-active .form .input--radio.password--text,
.modal.is-active .form .input--radio.password,
.modal.is-active .form .input--radio .input.password--text,
.modal.is-active .form .input--radio .input.password,
.modal.is-active .form .input--checkbox-wrapper.password--text,
.modal.is-active .form .input--checkbox-wrapper.password,
.modal.is-active .form .input--checkbox-wrapper .input.password--text,
.modal.is-active .form .input--checkbox-wrapper .input.password,
.modal.is-active .form .input-wrapper.password--text,
.modal.is-active .form .input-wrapper.password,
.modal.is-active .form .input-wrapper .input.password--text,
.modal.is-active .form .input-wrapper .input.password {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
}
.modal.is-active .form label.password--text.visible, .modal.is-active .form label.password.visible,
.modal.is-active .form label .input.password--text.visible,
.modal.is-active .form label .input.password.visible,
.modal.is-active .form .input--radio.password--text.visible,
.modal.is-active .form .input--radio.password.visible,
.modal.is-active .form .input--radio .input.password--text.visible,
.modal.is-active .form .input--radio .input.password.visible,
.modal.is-active .form .input--checkbox-wrapper.password--text.visible,
.modal.is-active .form .input--checkbox-wrapper.password.visible,
.modal.is-active .form .input--checkbox-wrapper .input.password--text.visible,
.modal.is-active .form .input--checkbox-wrapper .input.password.visible,
.modal.is-active .form .input-wrapper.password--text.visible,
.modal.is-active .form .input-wrapper.password.visible,
.modal.is-active .form .input-wrapper .input.password--text.visible,
.modal.is-active .form .input-wrapper .input.password.visible {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
  visibility: visible;
}
.modal.is-active .form label.input-file-wrapper input.input,
.modal.is-active .form .input--radio.input-file-wrapper input.input,
.modal.is-active .form .input--checkbox-wrapper.input-file-wrapper input.input,
.modal.is-active .form .input-wrapper.input-file-wrapper input.input {
  opacity: 0;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
}
.modal.is-active .form .toggle[aria-expanded=false],
.modal.is-active .form fieldset[aria-expanded=false] {
  height: 0;
  margin-bottom: 0;
  opacity: 0;
  overflow: hidden;
  user-select: none;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}
.modal.is-active .form .toggle[aria-expanded=false] input,
.modal.is-active .form .toggle[aria-expanded=false] textarea,
.modal.is-active .form .toggle[aria-expanded=false] select,
.modal.is-active .form fieldset[aria-expanded=false] input,
.modal.is-active .form fieldset[aria-expanded=false] textarea,
.modal.is-active .form fieldset[aria-expanded=false] select {
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
.modal.is-active .form .toggle[aria-expanded=true],
.modal.is-active .form fieldset[aria-expanded=true] {
  opacity: 100;
  user-select: auto;
  pointer-events: auto;
  position: relative;
}
.modal.is-active.is-unfocused .close-modal-wrapper {
  opacity: 0;
}

nav {
  border: 0;
  height: 54px;
  min-height: 54px;
  width: 100%;
  z-index: 7000;
}
nav,
nav .list--project-links,
nav .list--actions {
  background-color: #1F2532;
}
nav .current-store {
  background: #5c4bd5;
  border-radius: 7px;
  align-items: center;
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 12px;
  height: auto;
  margin-right: 15px;
  padding: 4px 12px;
  position: absolute;
  right: 0;
  top: 54px;
}
nav .current-store tr td:first-child {
  text-align: right;
  padding-right: 6px;
}
nav .current-store tr td:last-child {
  font-weight: bold;
  margin-left: 3px;
  text-align: left;
}
nav .content-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 750px;
  position: relative;
  width: 100%;
  z-index: 7001;
}
@media (min-width: 62em) {
  nav .content-wrapper {
    max-width: 970px;
  }
}
@media (min-width: 75em) {
  nav .content-wrapper {
    max-width: 1170px;
  }
}
nav:before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: 200ms 120ms opacity cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100vw;
}
@media (min-width: 48em) {
  nav:before {
    content: none;
  }
}
nav .btn--more {
  background-color: transparent;
}
nav .btn--more i {
  margin-top: 2px;
}
nav .btn--more,
nav a {
  color: rgba(255, 255, 255, 0.3);
  height: 100%;
  padding: 10px 15px;
  transition: color 250ms ease-out;
  user-select: none;
}
nav .btn--more.active, nav .btn--more:active, nav .btn--more:focus, nav .btn--more:hover,
nav a.active,
nav a:active,
nav a:focus,
nav a:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
nav a {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 14px;
  line-height: 0.875rem;
  align-items: center;
  display: flex;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 48em) {
  nav a {
    justify-content: flex-start;
  }
}
nav li.active a {
  color: rgba(255, 255, 255, 0.7);
}
nav .list--project-links,
nav .list--actions {
  display: flex;
  height: 100%;
  margin-bottom: 0;
  z-index: 1;
}
nav .list--actions {
  width: 100%;
}
@media (min-width: 48em) {
  nav .list--actions {
    width: auto;
  }
}
nav .list--actions > li:last-child {
  margin-left: auto;
}
@media (min-width: 48em) {
  nav .list--actions > li:last-child {
    display: none;
  }
}
nav .list--project-links {
  box-shadow: inset 2px 3px 5px 0 rgba(0, 0, 0, 0.2);
  flex-direction: column;
  height: calc(100vh - 54px);
  left: 0;
  opacity: 0;
  padding-top: 27px;
  pointer-events: none;
  position: absolute;
  top: 54px;
  transform: translateX(-100vw);
  transition: 0s 200ms opacity cubic-bezier(0.25, 0.1, 0.25, 1), transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100vw;
}
@media (min-width: 48em) {
  nav .list--project-links {
    box-shadow: none;
    flex-direction: row;
    height: 100%;
    opacity: 1;
    padding-top: 0;
    pointer-events: auto;
    position: relative;
    top: auto;
    transform: translateX(0);
    width: auto;
  }
}
nav .list--project-links li {
  display: block;
  height: auto;
  width: 100%;
}
nav .list--project-links a {
  min-height: 50px;
}
@media (min-width: 48em) {
  nav .list--project-links a {
    min-height: unset;
  }
}
nav[data-collapsed=false]:before {
  opacity: 1;
  pointer-events: auto;
  transition: 200ms 0s opacity cubic-bezier(0.25, 0.1, 0.25, 1);
}
nav[data-collapsed=false] .list--project-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pagination-wrapper {
  display: block;
  padding: 30px 30px 50px;
  text-align: center;
}
.pagination-wrapper .pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: auto;
}
.pagination-wrapper .pagination a {
  padding: 15px;
}

body:after,
main:after {
  background-color: black;
  border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  height: 64px;
  left: 50%;
  margin: 1px;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 64px;
  z-index: 9998;
}

main:after {
  content: "";
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: 300ms opacity cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
  z-index: 9999;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes loader-dual-ring {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
body:before, body:after {
  content: "";
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: 300ms opacity cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
}
body:before {
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9997;
}
body[aria-disabled=true] {
  overflow: hidden !important;
  pointer-events: none;
}
body[aria-disabled=true] a,
body[aria-disabled=true] button,
body[aria-disabled=true] .modal,
body[aria-disabled=true] form {
  pointer-events: none;
}
body[aria-disabled=true]:before {
  opacity: 1;
  pointer-events: auto;
}
body[aria-disabled=true]:after {
  animation: sk-bounce 2000ms ease-in-out infinite;
  opacity: 0.4;
}
body[aria-disabled=true] main:after {
  animation: sk-bounce 2000ms ease-in-out infinite;
  animation-delay: -1000ms;
  opacity: 0.4;
}

.slider-wrapper {
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.slider-wrapper .slides-list {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: flex-start;
  margin-bottom: 0;
  position: relative;
  transition-property: transform;
  width: 100%;
  z-index: 1;
}
.slider-wrapper .slides-list .slide {
  display: inline-block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.slider-wrapper .slides-list .slide:last-child {
  padding-right: 200px;
}
@media (max-width: 37.6775em) {
  .slider-wrapper .slides-list .slide {
    z-index: 0;
  }
}
.slider-wrapper .slides-list .slide a {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 17px;
  line-height: 1.0625rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  font-weight: 400;
  height: 100%;
  letter-spacing: 0.74px;
  padding: 10px 15px;
  text-transform: uppercase;
  transition: color 250ms ease-out;
}
.slider-wrapper .slides-list .slide a.active, .slider-wrapper .slides-list .slide a:active, .slider-wrapper .slides-list .slide a:focus, .slider-wrapper .slides-list .slide a:hover {
  color: white;
  text-decoration: none;
}
.slider-wrapper .slides-list .slide.active a {
  color: white;
}
.slider-wrapper .slider__btn {
  cursor: pointer;
  height: 50px;
  opacity: 1;
  position: absolute;
  right: 0;
  text-align: right;
  top: -50px;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: auto;
  will-change: opacity;
  z-index: 10;
}
.slider-wrapper .slider__btn:hover {
  opacity: 0.65;
}
.slider-wrapper .slider__btn.slider__btn--prev {
  margin-right: 20px;
  transform: translateX(-20px);
}
.slider-wrapper .slider__btn.slider__btn--next {
  transform: translateX(20px);
}

.table.table--responsive {
  background-color: #fff;
  border-collapse: collapse;
  margin-bottom: 30px;
  width: 100%;
}
.table.table--responsive caption {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: rgba(31, 37, 50, 0.4);
  font-weight: 300;
  padding: 0 16px 30px;
  padding-left: 0;
}
.table.table--responsive caption,
.table.table--responsive caption h1, .table.table--responsive caption h2, .table.table--responsive caption h3, .table.table--responsive caption h4, .table.table--responsive caption h5, .table.table--responsive caption h6 {
  margin-bottom: 0;
  text-align: left;
}
.table.table--responsive th {
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
  background-color: rgba(143, 146, 153, 0.045);
  color: #1F2532;
  display: none;
  font-weight: 500;
  padding: 15px;
}
.table.table--responsive tr:hover td {
  background-color: rgba(143, 146, 153, 0.045) !important;
}
.table.table--responsive td {
  align-items: center;
  border-bottom: 1px solid rgba(31, 37, 50, 0.045);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 15px;
  transition: background-color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  vertical-align: middle;
}
.table.table--responsive td:hover {
  background-color: rgba(143, 146, 153, 0.045);
}
.table.table--responsive td[data-th="Tamaño del texto"] ~ td[data-th=Preview] {
  color: #5e19fe;
}
.table.table--responsive td:first-child {
  background-color: rgba(143, 146, 153, 0.045);
  border-bottom: 1px solid rgba(31, 37, 50, 0.9);
  padding: 30px 15px 5px;
}
.table.table--responsive td:before {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
  content: attr(data-th) ": ";
  display: inline-block;
  font-weight: 500;
}
.table.table--responsive th,
.table.table--responsive td {
  text-align: left;
}
.table.table--responsive th h1, .table.table--responsive th h2, .table.table--responsive th h3, .table.table--responsive th h4, .table.table--responsive th h5, .table.table--responsive th h6,
.table.table--responsive th ul, .table.table--responsive th ol, .table.table--responsive th dl,
.table.table--responsive td h1,
.table.table--responsive td h2,
.table.table--responsive td h3,
.table.table--responsive td h4,
.table.table--responsive td h5,
.table.table--responsive td h6,
.table.table--responsive td ul,
.table.table--responsive td ol,
.table.table--responsive td dl {
  margin-bottom: 0;
  text-align: left;
}
.table.table--responsive th h1, .table.table--responsive th h2, .table.table--responsive th h3, .table.table--responsive th h4, .table.table--responsive th h5, .table.table--responsive th h6,
.table.table--responsive th p, .table.table--responsive th a, .table.table--responsive th blockquote, .table.table--responsive th ul, .table.table--responsive th ol, .table.table--responsive th dl,
.table.table--responsive td h1,
.table.table--responsive td h2,
.table.table--responsive td h3,
.table.table--responsive td h4,
.table.table--responsive td h5,
.table.table--responsive td h6,
.table.table--responsive td p,
.table.table--responsive td a,
.table.table--responsive td blockquote,
.table.table--responsive td ul,
.table.table--responsive td ol,
.table.table--responsive td dl {
  display: inline-block;
}
.table.table--responsive th ul, .table.table--responsive th ol, .table.table--responsive th dl,
.table.table--responsive td ul,
.table.table--responsive td ol,
.table.table--responsive td dl {
  padding-left: 0;
}
.table.table--responsive th ul li, .table.table--responsive th ol li, .table.table--responsive th dl li,
.table.table--responsive td ul li,
.table.table--responsive td ol li,
.table.table--responsive td dl li {
  list-style-type: inherit;
}
.table.table--responsive tbody tr td:first-child {
  font-weight: 500;
}
.table.table--responsive tfoot td, .table.table--responsive tfoot td:first-child {
  background-color: rgba(143, 146, 153, 0.1);
  padding: 50px 15px 5px;
}
.table.table--responsive tfoot td:before {
  display: none;
}
.table.table--responsive tfoot td,
.table.table--responsive tfoot td p {
  text-align: left;
}
@media (min-width: 48em) {
  .table.table--responsive[data-direction=horizontal] td:first-child {
    background-color: transparent;
    border-bottom: 1px solid rgba(31, 37, 50, 0.045);
    padding: 5px 15px;
  }
}
@media (min-width: 48em) {
  .table.table--responsive[data-direction=horizontal] td:before {
    display: none;
  }
}
@media (min-width: 48em) {
  .table.table--responsive[data-direction=horizontal] th,
  .table.table--responsive[data-direction=horizontal] td {
    display: table-cell;
  }
}
.table.table--responsive .list--actions li {
  list-style-type: none;
}
.table.table--responsive .list--actions li a,
.table.table--responsive .list--actions li button {
  border-radius: 50%;
  padding: 15px;
}

.tooltip-trigger {
  color: #1F2532;
  padding: 1px 10px 2px;
  position: relative;
  user-select: none;
}
.tooltip-trigger i {
  opacity: 0.4;
  vertical-align: super;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tooltip-trigger:hover i {
  opacity: 1;
}

.tooltip {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 12px;
  line-height: 0.75rem;
  align-items: center;
  bottom: calc(100% + 20px);
  color: white;
  display: flex;
  justify-content: center;
  left: 50%;
  max-width: 300px;
  min-width: 100px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-align: left;
  transform: translateX(-50%);
  transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
  visibility: hidden;
  width: 500%;
  z-index: 25;
  will-change: opacity;
}
.tooltip.on-hover {
  transition: opacity 150ms cubic-bezier(0.25, 0.1, 0.25, 1) 300ms;
}
.tooltip.on-hover .tooltip__message {
  transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 300ms;
}
.tooltip .tooltip__message {
  background-color: #909399;
  box-shadow: 0 0 14px 14px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: inline-block;
  max-width: 300px;
  min-width: 40px;
  padding: 10px;
  text-align: left;
  transform: translateY(-12px);
  transition: transform 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: auto;
  will-change: transform;
}
.tooltip .tooltip__message:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #909399;
  bottom: -7px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}
.tooltip .tooltip__message p, .tooltip .tooltip__message ul {
  text-align: left;
}
.tooltip[aria-hidden=false] {
  opacity: 1;
}
.tooltip[aria-hidden=false] .tooltip__message {
  transform: translateY(0);
}
.tooltip[aria-hidden=false] i {
  opacity: 1;
}
.tooltip[data-hidden=false] {
  visibility: visible;
}

body {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow: auto !important;
  position: relative;
}
body.scroll-locked {
  height: 100vh;
  overflow: hidden !important;
}
body.draggable--is-dragging {
  cursor: pointer;
  cursor: grab;
}
body [data-affix=true] {
  will-change: position, top;
}

.icon {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 24px;
  line-height: 1.5rem;
}

main {
  align-content: flex-start;
  display: flex;
  flex-direction: row;
  flex-grow: 2;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
main .list--breadcrumbs a, main .list--breadcrumbs a:hover {
  color: #1F2532;
}

.section {
  position: relative;
  width: 100%;
}
@media (min-width: 48em) {
  .section[data-sibling=true] {
    display: flex;
    justify-content: flex-end;
    width: 50%;
  }
  .section[data-sibling=true] + .section[data-sibling=true][data-sibling=true] {
    justify-content: flex-start;
  }
  .section[data-sibling=true] .content-wrapper {
    margin: 0;
  }
}
@media (min-width: 48em) and (min-width: 62em) {
  .section[data-sibling=true] .content-wrapper {
    max-width: 485px;
  }
}
@media (min-width: 48em) and (min-width: 75em) {
  .section[data-sibling=true] .content-wrapper {
    max-width: 585px;
  }
}
.section .title {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: rgba(31, 37, 50, 0.4);
  font-weight: 300;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 1139px;
  padding: 0 16px;
  text-align: left;
  width: 100%;
}
@media (min-width: 75em) {
  .section .title {
    padding: 0;
  }
}
.section .title-wrapper,
.section .content-wrapper {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}
@media (min-width: 62em) {
  .section .title-wrapper,
  .section .content-wrapper {
    max-width: 970px;
  }
}
@media (min-width: 75em) {
  .section .title-wrapper,
  .section .content-wrapper {
    max-width: 1170px;
  }
}
.section .title-wrapper {
  position: relative;
}
.section .title-wrapper + hr {
  border-top: 1px solid rgba(31, 37, 50, 0.1);
  display: flex;
  padding: 0;
}
.section .title-wrapper .main-actions-wrapper {
  transform: translate(-16px, 35px);
  pointer-events: none;
  user-select: none;
  width: auto;
}
.section .title-wrapper .main-actions-wrapper > button,
.section .title-wrapper .main-actions-wrapper > .dropdown > button {
  pointer-events: auto;
}
.section .title-wrapper .main-actions-wrapper > a,
.section .title-wrapper .main-actions-wrapper > button,
.section .title-wrapper .main-actions-wrapper > .dropdown {
  margin-left: 10px;
}
.section .content-wrapper {
  padding: 30px 15px;
}
.section .content-wrapper .section--breadcrumbs .content-wrapper {
  padding-left: 0;
}
.section.full-width .content-wrapper {
  max-width: none;
}
.section.no-p .content-wrapper {
  padding: 0;
}

main > .section:first-child {
  padding-top: 25px;
}
main > .section:first-child.section--filters {
  padding-top: 50px;
}
main > .section:first-child .content-wrapper {
  padding-top: 0;
}
main > .section:last-child {
  margin-bottom: 50px;
}
main > .main-actions-wrapper {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 750px;
  pointer-events: none;
  position: relative;
  user-select: none;
  width: 100%;
  z-index: 20;
}
main > .main-actions-wrapper + .section {
  padding-top: 0;
}
main > .main-actions-wrapper + .section.section--breadcrumbs .content-wrapper {
  margin-top: -25px;
  padding-top: 0;
}
main > .main-actions-wrapper > button,
main > .main-actions-wrapper > .dropdown > button {
  pointer-events: auto;
}
main > .main-actions-wrapper > a,
main > .main-actions-wrapper > button,
main > .main-actions-wrapper > .dropdown {
  margin-left: 10px;
}
@media (min-width: 62em) {
  main > .main-actions-wrapper {
    max-width: 970px;
  }
}
@media (min-width: 75em) {
  main > .main-actions-wrapper {
    max-width: 1170px;
  }
}

.main-actions-wrapper {
  align-self: flex-start;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-16px, -25px);
  user-select: none;
  z-index: 10;
  width: 100%;
}
.main-actions-wrapper > a,
.main-actions-wrapper > button,
.main-actions-wrapper > .dropdown > button {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
  align-items: center;
  background-color: #4BD5B6;
  border-radius: 50%;
  box-shadow: 0 14px 24px 0 rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 0;
  pointer-events: auto;
  position: relative;
  transition: box-shadow 300ms cubic-bezier(0.25, 0.1, 0.25, 1), color 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 50px;
}
.main-actions-wrapper > a i:first-child,
.main-actions-wrapper > button i:first-child,
.main-actions-wrapper > .dropdown > button i:first-child {
  margin-right: 0;
}
.main-actions-wrapper > a:hover,
.main-actions-wrapper > button:hover,
.main-actions-wrapper > .dropdown > button:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
  color: white;
  text-decoration: none;
}
.main-actions-wrapper > a.disabled, .main-actions-wrapper > a:disabled,
.main-actions-wrapper > button.disabled,
.main-actions-wrapper > button:disabled,
.main-actions-wrapper > .dropdown > button.disabled,
.main-actions-wrapper > .dropdown > button:disabled {
  background-color: rgba(75, 213, 182, 0.3);
  pointer-events: none !important;
}
.main-actions-wrapper > a.disabled i, .main-actions-wrapper > a:disabled i,
.main-actions-wrapper > button.disabled i,
.main-actions-wrapper > button:disabled i,
.main-actions-wrapper > .dropdown > button.disabled i,
.main-actions-wrapper > .dropdown > button:disabled i {
  opacity: 0.3;
}

.title--csv-cols {
  padding: 25px 10px 0px 0;
  text-align: left;
}

.list--csv-cols strong {
  font-style: 12px;
}
.list--csv-cols th,
.list--csv-cols td {
  padding: 4px;
}
.list--csv-cols th:first-child,
.list--csv-cols td:first-child {
  padding-left: 0;
}
.list--csv-cols th, .list--csv-cols td {
  text-align: left;
}
.list--csv-cols tr td:first-child {
  opacity: 0.7;
}

.login [role=banner] {
  background-color: transparent;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 0 15px;
  padding-bottom: 0;
}
.login [role=banner] .logo {
  margin: 0 auto;
  max-height: 100px;
  max-width: 300px;
  text-align: center;
  width: 100%;
}
.login [role=banner] .title {
  color: white;
  display: block;
  font-weight: 300;
  margin-bottom: 0;
  padding: 15px;
  text-align: center;
}

[role=banner] {
  align-items: center;
  background-color: #1F2532;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  width: 100%;
}
[role=banner] .title {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 40px;
  line-height: 2.5rem;
  color: white;
  display: block;
  font-weight: 300;
  padding: 15px;
  padding-bottom: 35px;
  text-align: left;
}
[role=banner] .title,
[role=banner] .list--tab-links {
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
}
@media (min-width: 62em) {
  [role=banner] .title,
  [role=banner] .list--tab-links {
    max-width: 970px;
  }
}
@media (min-width: 75em) {
  [role=banner] .title,
  [role=banner] .list--tab-links {
    max-width: 1170px;
  }
}

[role=contentinfo] {
  background-color: #1F2532;
  padding: 20px 0;
  position: relative;
  width: 100%;
}
[role=contentinfo] .content-wrapper {
  display: flex;
  margin: 0 auto;
  max-width: 750px;
  padding: 0 15px;
  width: 100%;
}
@media (min-width: 62em) {
  [role=contentinfo] .content-wrapper {
    max-width: 970px;
  }
}
@media (min-width: 75em) {
  [role=contentinfo] .content-wrapper {
    max-width: 1170px;
  }
}
[role=contentinfo] .content-wrapper a {
  color: #172B6D;
}
[role=contentinfo] .copyright {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
  color: #fff;
  user-select: none;
}
[role=contentinfo] .copyright a {
  color: #fff;
  text-decoration: underline;
}
[role=contentinfo] .copyright a:hover {
  color: #fff;
  text-decoration: underline;
}
[role=contentinfo] .powered-by {
  margin: 0 auto;
  text-align: center;
  user-select: none;
  width: 168px;
}
[role=contentinfo] .powered-by .text {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}
[role=contentinfo] .powered-by .logo {
  opacity: 0.7;
  margin: 0 auto;
  max-width: 100px;
}
[role=contentinfo] .powered-by + a {
  font-size: 10px;
  font-size: 0.625rem;
  align-self: flex-end;
  display: none;
  position: absolute;
  right: 40px;
}
@media (min-width: 48em) {
  [role=contentinfo] .powered-by + a {
    display: inline;
  }
}

body.login {
  background-color: #1F2532;
  justify-content: center;
}
body.login main {
  flex-grow: initial;
  padding-bottom: 90px;
}
body.login .section.section--email-sent {
  margin: 0 auto !important;
  max-width: 330px;
  padding: 30px 15px;
  width: 100%;
}
body.login .section.section--email-sent .content-wrapper {
  padding: 0;
  text-align: center;
}
body.login .section.section--email-sent .content-wrapper > .icon {
  font-size: 80px;
  font-size: 5rem;
  line-height: 80px;
  line-height: 5rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20;
  user-select: none;
}
body.login .section.section--email-sent p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 20px;
  padding-left: 15px;
  text-align: center;
}
body.login .section.section--email-sent .actions-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 34px;
}
body.login .section.section--email-sent .actions-wrapper .btn {
  margin: 10px 0;
  min-width: 170px;
}
body.login .form {
  margin: 0 auto;
  max-width: 330px;
  padding: 30px 15px;
  width: 100%;
}
body.login .form legend {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left;
}
body.login .form .input-wrapper {
  margin-bottom: 70px;
}
body.login .form .btn {
  margin: 10px 0;
}
body.login .form [type=submit] {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
  display: inline-block;
  font-weight: 500;
  margin: 0;
  text-align: center;
  width: 100%;
}
body.login [role=contentinfo] {
  background-color: transparent;
  border-top: 0;
  bottom: 0;
  position: absolute;
}

.section.section--contents {
  align-items: stretch;
  display: flex;
  flex-grow: 2;
  flex-wrap: wrap;
}
.section.section--contents > .title-wrapper .title {
  margin-bottom: 10px;
}
.section.section--contents > .content-wrapper {
  align-items: stretch;
  border-top: 1px solid rgba(31, 37, 50, 0.1);
  display: flex;
  justify-content: flex-end;
  padding: 0;
}
.section.section--contents .message-wrapper {
  align-items: center;
  border: 1px solid rgba(31, 37, 50, 0.15);
  border-radius: 15px;
  color: rgba(50, 50, 50, 0.25);
  display: flex;
  height: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  user-select: none;
}
.section.section--contents .message-wrapper p {
  text-align: center;
}
.section.section--contents .message-wrapper[data-visible=true] {
  min-height: 124px;
  opacity: 1;
  padding: 15px;
}
.section.section--contents .message-wrapper i {
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 42px;
  line-height: 2.625rem;
  margin-right: 20px;
  opacity: 0.6;
}
.section.section--contents .list--available-contents {
  border-left: 0;
  border-top: 0;
  height: auto;
  margin-bottom: 0;
  outline: 0;
  padding: 50px 0 50px 10px;
  position: relative;
  text-align: left;
  width: 60px;
  user-select: none;
  z-index: 10;
}
.section.section--contents .list--available-contents[data-fixed=true] {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 10;
}
.section.section--contents .list--available-contents[data-fixed=true] + .list--contents {
  flex-grow: unset;
}
@media (min-width: 37.6875em) {
  .section.section--contents .list--available-contents {
    padding: 50px 20px;
  }
}
@media (min-width: 48em) {
  .section.section--contents .list--available-contents {
    width: 90px;
  }
}
@media (min-width: 62em) {
  .section.section--contents .list--available-contents {
    width: 210px;
  }
}
@media (min-width: 75em) {
  .section.section--contents .list--available-contents {
    width: 300px;
  }
}
.section.section--contents .list--available-contents .item {
  margin-bottom: 15px;
  max-width: 50px;
  min-width: 50px;
}
@media (min-width: 48em) {
  .section.section--contents .list--available-contents .item {
    max-width: 50px;
  }
}
@media (min-width: 62em) {
  .section.section--contents .list--available-contents .item {
    max-width: 170px;
  }
}
@media (min-width: 75em) {
  .section.section--contents .list--available-contents .item {
    max-width: 260px;
  }
}
.section.section--contents .list--available-contents .item.draggable--original {
  display: block !important;
}
.section.section--contents .list--available-contents .item.draggable-mirror {
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.05);
  z-index: 400;
}
.section.section--contents .list--available-contents .btn--create-content {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  align-items: center;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.05);
  color: rgba(31, 37, 50, 0.5);
  display: flex;
  font-weight: 500;
  justify-content: center;
  margin: 0 auto;
  padding: 12px;
  text-transform: none;
  transition: all 250ms cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}
@media (min-width: 62em) {
  .section.section--contents .list--available-contents .btn--create-content {
    padding: 12px 20px;
  }
}
@media (min-width: 75em) {
  .section.section--contents .list--available-contents .btn--create-content {
    height: 80px;
    padding: 25px;
  }
}
.section.section--contents .list--available-contents .btn--create-content i {
  opacity: 0.5;
  margin: 0;
  user-select: none;
}
.section.section--contents .list--available-contents .btn--create-content i img,
.section.section--contents .list--available-contents .btn--create-content i svg {
  pointer-events: none;
  user-select: none;
}
.section.section--contents .list--available-contents .btn--create-content .text {
  display: none;
  flex-grow: 2;
  padding-left: 10px;
}
@media (min-width: 62em) {
  .section.section--contents .list--available-contents .btn--create-content .text {
    display: inline-block;
    text-align: left;
  }
}
.section.section--contents .list--available-contents .btn--create-content:hover {
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.05);
}
.section.section--contents .list--available-contents.draggable-container--is-dragging + .list--contents .content {
  pointer-events: none;
}
.section.section--contents .list--contents {
  flex-grow: 2;
  margin-bottom: 0;
  outline: 0;
  padding: 50px 5%;
  width: calc(100% - 60px);
  user-select: none;
}
@media (min-width: 37.6875em) {
  .section.section--contents .list--contents {
    width: calc(100% - 90px);
  }
}
@media (min-width: 62em) {
  .section.section--contents .list--contents {
    padding: 50px 10%;
    width: calc(100% - 210px);
  }
}
@media (min-width: 75em) {
  .section.section--contents .list--contents {
    width: calc(100% - 300px);
  }
}
.section.section--contents .list--contents.draggable-container--is-dragging .content {
  pointer-events: none;
}
.section.section--contents .list--contents.draggable-container--over .message-wrapper {
  display: none;
}
.section.section--contents .list--contents > .item {
  margin-bottom: 10px;
}
.section.section--contents .list--contents > .item > .btn {
  width: 100%;
}
@keyframes fadeIn {
  from {
    max-height: 10px;
    min-height: 10px;
    overflow: hidden;
  }
  to {
    max-height: 124px;
    min-height: 124px;
    overflow: auto;
  }
}
.section.section--contents .list--contents > .item.draggable {
  animation-delay: 0;
  animation-duration: 190ms;
  animation-fill-mode: forwards;
  animation-name: fadeIn;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid rgba(31, 37, 50, 0.15);
  border-radius: 15px;
  display: list-item !important;
  min-height: 124px;
  overflow: hidden;
  position: relative;
  will-change: max-height;
}
.section.section--contents .list--contents > .item.draggable, .section.section--contents .list--contents > .item.draggable.draggable--original {
  display: list-item !important;
}
.section.section--contents .list--contents > .item.draggable .btn {
  opacity: 0;
}
.section.section--contents .list--contents > .item.draggable .btn:hover {
  box-shadow: none;
}
.section.section--contents .list--contents > .item.draggable .icon,
.section.section--contents .list--contents > .item.draggable .text {
  opacity: 0;
  user-select: none;
}
.section.section--contents .list--contents > .item.draggable:before, .section.section--contents .list--contents > .item.draggable:after {
  left: 50%;
  opacity: 0.25;
  position: absolute;
  top: 50%;
}
.section.section--contents .list--contents > .item.draggable:before {
  background-image: url(/assets/cms/i--addcontent.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  transform: translate(-50%, -20px);
  height: 24px;
  width: 24px;
  z-index: 2;
}
.section.section--contents .list--contents > .item.draggable:after {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 21px;
  line-height: 1.3125rem;
  color: #323232;
  content: "Añadir contenido";
  overflow: hidden;
  padding: 0 5px;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, 10px);
  width: 100%;
}

body.scroll-locked .list--contents .message-wrapper {
  min-height: none;
}

html[data-os=android][data-device=mobile] .section.section--contents .list--contents > .item.draggable:before {
  content: "+";
  color: #323232;
}

.section.section--filters {
  transform: translateY(-20px);
  z-index: 2;
}
.section.section--filters + .section--grid .content-wrapper {
  padding-top: 0;
}
.section.section--filters .content-wrapper .form {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
}
.section.section--filters .content-wrapper .form .input-wrapper {
  margin-top: 0;
  width: 100%;
}
@media (min-width: 48em) {
  .section.section--filters .content-wrapper .form .input-wrapper {
    width: 50%;
  }
}
@media (min-width: 62em) {
  .section.section--filters .content-wrapper .form .input-wrapper {
    width: 31.656%;
  }
}
.section.section--filters .content-wrapper .btn.btn--clear {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 15px;
  line-height: 0.9375rem;
  align-items: center;
  align-self: auto;
  background-color: #9A9A9A;
  border-radius: 20px;
  display: flex;
  font-weight: 400;
  height: 32px;
  justify-content: space-between;
  letter-spacing: 0.5px;
  padding: 5px 15px;
  transform: translate(16px, 0);
  transition: box-shadow 300ms ease-out;
}
@media (max-width: 61.99em) {
  .section.section--filters .content-wrapper .btn.btn--clear {
    margin-left: 0;
  }
}
.section.section--filters .content-wrapper .btn.btn--clear:hover {
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.1);
}
.section.section--filters .content-wrapper .btn.btn--clear,
.section.section--filters .content-wrapper .btn.btn--clear i {
  color: #fff;
}
.section.section--filters .content-wrapper .btn.btn--clear i {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 15px;
  line-height: 0.9375rem;
  padding-left: 5px;
}

.section.section--grid .list--breadcrumbs {
  margin: 0;
  padding-left: 0;
}
.section.section--grid .list--grid-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  outline: 0;
}
@media (min-width: 37.6875em) {
  .section.section--grid .list--grid-items {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.section.section--grid .list--grid-items:after {
  content: "";
  width: 100%;
}
@media (min-width: 37.6875em) {
  .section.section--grid .list--grid-items:after {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .section.section--grid .list--grid-items:after {
    width: 33.3333333333%;
  }
}
@media (min-width: 62em) {
  .section.section--grid .list--grid-items:after {
    width: 25%;
  }
}
.section.section--grid .list--grid-items dt {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.section.section--grid .list--grid-items dt h2 {
  white-space: nowrap;
  width: fit-content;
}
.section.section--grid .list--grid-items dt > div {
  align-items: center;
  display: flex;
  margin-bottom: 1em;
  padding: 0 15px;
  width: 100%;
}
.section.section--grid .list--grid-items dt > div button,
.section.section--grid .list--grid-items dt > div a {
  align-items: center;
  border-radius: 15px;
  border: 1px solid grey;
  display: flex;
  opacity: 0.4;
  height: 30px;
  margin: 0 5px;
  padding: 0 10px;
  transition: 300ms opacity linear;
}
.section.section--grid .list--grid-items dt > div button:first-child,
.section.section--grid .list--grid-items dt > div a:first-child {
  margin-left: 10px;
}
.section.section--grid .list--grid-items dt > div button:last-child,
.section.section--grid .list--grid-items dt > div a:last-child {
  margin-right: 0;
}
.section.section--grid .list--grid-items dt > div button[name=btn--restore-selected], .section.section--grid .list--grid-items dt > div button[name=btn--delete-selected],
.section.section--grid .list--grid-items dt > div a[name=btn--restore-selected],
.section.section--grid .list--grid-items dt > div a[name=btn--delete-selected] {
  background-color: transparent;
  color: inherit;
}
.section.section--grid .list--grid-items dt > div button[name=btn--restore-selected][disabled=disabled], .section.section--grid .list--grid-items dt > div button[name=btn--restore-selected][disabled=true], .section.section--grid .list--grid-items dt > div button[name=btn--restore-selected][disabled], .section.section--grid .list--grid-items dt > div button[name=btn--delete-selected][disabled=disabled], .section.section--grid .list--grid-items dt > div button[name=btn--delete-selected][disabled=true], .section.section--grid .list--grid-items dt > div button[name=btn--delete-selected][disabled],
.section.section--grid .list--grid-items dt > div a[name=btn--restore-selected][disabled=disabled],
.section.section--grid .list--grid-items dt > div a[name=btn--restore-selected][disabled=true],
.section.section--grid .list--grid-items dt > div a[name=btn--restore-selected][disabled],
.section.section--grid .list--grid-items dt > div a[name=btn--delete-selected][disabled=disabled],
.section.section--grid .list--grid-items dt > div a[name=btn--delete-selected][disabled=true],
.section.section--grid .list--grid-items dt > div a[name=btn--delete-selected][disabled] {
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
.section.section--grid .list--grid-items dt > div button[name=btn--delete-selected]:hover,
.section.section--grid .list--grid-items dt > div a[name=btn--delete-selected]:hover {
  background-color: #FE9813;
}
.section.section--grid .list--grid-items dt > div button:hover,
.section.section--grid .list--grid-items dt > div a:hover {
  opacity: 1;
}
.section.section--grid .list--grid-items dt > div button .icon,
.section.section--grid .list--grid-items dt > div a .icon {
  align-items: center;
  display: flex;
  margin-left: 10px;
}
.section.section--grid .list--grid-items dt > div button img,
.section.section--grid .list--grid-items dt > div a img {
  height: 17px;
}
.section.section--grid .list--grid-items dt .btn--select-all {
  margin-right: auto;
}
.section.section--grid .list--grid-items dt ~ .item {
  position: relative;
}
.section.section--grid .list--grid-items dt ~ .item article {
  border: 1px solid transparent;
}
.section.section--grid .list--grid-items .filter-checkbox {
  left: -12px;
  position: absolute;
  top: 18px;
  z-index: 5;
}
.section.section--grid .list--grid-items .filter-checkbox:checked + article {
  border: 1px solid blue;
}

body.draggable--is-dragging .section.section--grid .list--grid-items {
  pointer-events: none;
}
body.draggable--is-dragging .section.section--grid .list--grid-items.draggable-container--is-dragging {
  pointer-events: auto;
}

.section.section--main-actions .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0;
}
.section.section--main-actions .content-wrapper .list--breadcrumbs {
  padding-left: 0;
}
.section.section--main-actions .content-wrapper .btn {
  margin-top: 0;
}
@media (min-width: 48em) {
  .section.section--main-actions .content-wrapper {
    padding: 30px 15px 0;
  }
}

.section.section--main-page-form {
  margin-bottom: 30px;
}
.section.section--main-page-form .content-wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.section.section--main-page-form .form {
  border: 0;
  margin-bottom: 5px;
}
.section.section--main-page-form .form .toggle[aria-expanded=false],
.section.section--main-page-form .form fieldset[aria-expanded=false] {
  height: 0;
  margin-bottom: 0;
  opacity: 0;
  overflow: hidden;
  user-select: none;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}
.section.section--main-page-form .form .toggle[aria-expanded=false] input,
.section.section--main-page-form .form .toggle[aria-expanded=false] textarea,
.section.section--main-page-form .form .toggle[aria-expanded=false] select,
.section.section--main-page-form .form fieldset[aria-expanded=false] input,
.section.section--main-page-form .form fieldset[aria-expanded=false] textarea,
.section.section--main-page-form .form fieldset[aria-expanded=false] select {
  opacity: 0;
  user-select: none;
  pointer-events: none;
}
.section.section--main-page-form .form .toggle[aria-expanded=true],
.section.section--main-page-form .form fieldset[aria-expanded=true] {
  opacity: 100;
  user-select: auto;
  pointer-events: auto;
  position: relative;
}

.section.section--downloads > .content-wrapper.siblings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media (min-width: 48em) {
  .section.section--downloads > .content-wrapper.siblings .section:last-child {
    padding-left: 30px;
  }
}
.section.section--downloads > hr {
  padding-bottom: 30px;
  width: 100%;
}

.section.section--order-details .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 62em) {
  .section.section--order-details .table:nth-child(1), .section.section--order-details .table:nth-child(2) {
    width: 48%;
  }
}

.section.section--choose-your-store {
  margin-top: 40px;
  text-align: center;
}
.section.section--choose-your-store h2 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
  margin-bottom: 60px;
  color: white;
}
.section.section--choose-your-store dl {
  color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin: 0 auto;
  width: fit-content;
  padding: 0 16px;
}
@media (min-width: 75em) {
  .section.section--choose-your-store dl {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 75em) {
  .section.section--choose-your-store dl > div {
    margin-bottom: 20px;
    min-width: fit-content;
    padding: 20px 10px;
    width: 16%;
  }
  .section.section--choose-your-store dl > div:last-child {
    margin-right: auto;
  }
}
.section.section--choose-your-store dl dd {
  width: auto;
  margin-bottom: 20px;
}
.section.section--choose-your-store dl dd a {
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 50px;
  min-width: 200px;
  padding: 15px;
  transition: 300ms background-color cubic-bezier(0.25, 0.1, 0.25, 1), 300ms color cubic-bezier(0.25, 0.1, 0.25, 1);
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
}
@media (min-width: 48em) {
  .section.section--choose-your-store dl dd a {
    height: 72px;
  }
}
.section.section--choose-your-store dl dd a:hover {
  background-color: white;
  color: #1F2532;
  text-decoration: none;
}
.section.section--choose-your-store dl dd a span {
  vertical-align: sub;
}
.section.section--choose-your-store dl dd a span.subtitle {
  display: inline-block;
  font-size: 12px;
  justify-content: center;
  opacity: 0.6;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}

.section.section--uploads[data-sibling=true] {
  padding: 20px;
}
.section.section--uploads[data-sibling=true]:nth-child(2) ul {
  border: 1px solid #bdbdc1;
}
.section.section--uploads[data-sibling=true]:nth-child(2) ul li {
  font-size: 14px;
}
@media (min-width: 48em) {
  .section.section--uploads[data-sibling=true]:first-child {
    padding: 50px 5px 20px 0;
  }
  .section.section--uploads[data-sibling=true]:nth-child(2) {
    padding: 50px 0 20px 10px;
  }
  .section.section--uploads[data-sibling=true]:nth-child(2) > ul li:first-child {
    list-style-type: none;
  }
}
.section.section--uploads[data-sibling=true] ul {
  padding: 15px 25px;
}
.section.section--uploads[data-sibling=true] ul li {
  list-style-type: circle;
}
.section.section--uploads[data-sibling=true] ul ul {
  border: 0 !important;
  padding-left: 0;
  margin-left: 20px;
  margin-bottom: 20px;
}
.section.section--uploads[data-sibling=true] .content-wrapper {
  padding: 30px 5px !important;
}
.section.section--uploads[data-sibling=true] .content-wrapper a {
  text-decoration: underline;
}
.section.section--uploads .form--uploads fieldset {
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 48em) {
  .section.section--uploads .form--uploads fieldset {
    display: flex;
    justify-content: flex-start;
  }
}
@media (min-width: 48em) {
  .section.section--uploads .form--uploads .fieldset-content {
    align-items: center;
    flex-grow: 2;
    height: 80px;
  }
}
.section.section--uploads .form--uploads .actions-wrapper a.btn,
.section.section--uploads .form--uploads .actions-wrapper button.btn,
.section.section--uploads .form--uploads .form .actions-wrapper input.btn {
  min-width: 120px;
  height: 45px;
}

table, tbody, td, div, h3, p, a, span, img {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.page-break {
  display: block;
  clear: both;
  page-break-after: always;
}

table.pdf-table {
  padding: 20px 20px 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  width: 100%;
}

table.pdf-table td.quotes-pdf-cell {
  border-bottom: 1px solid #E5E5E5;
  display: inline-flex;
  height: 115px;
  width: 50%;
}

table.pdf-table td.quotes-pdf-cell td.inner-cell--img {
  background: #F7F7F7;
  height: 150px;
  overflow: hidden;
  text-align: center;
  width: 31%;
}

table.pdf-table td.quotes-pdf-cell td.inner-cell--img img {
  margin: 0 auto;
  max-height: 175px;
  object-fit: contain;
}

table.pdf-table td.quotes-pdf-cell td.inner-cell--text {
  width: 69%;
}

td.quotes-pdf-cell div {
  padding: 15px;
}

td.quotes-pdf-cell h3,
td.quotes-pdf-cell p {
  color: #000;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
}

td.quotes-pdf-cell p.mt {
  margin-top: 30px;
}

td.quotes-pdf-cell p span {
  color: #808080;
}

table.pdf-header {
  padding: 30px 20px 0;
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  vertical-align: center;
  width: 100%;
}

table.pdf-header td {
  vertical-align: center;
  width: 50%;
}

table.pdf-header td img {
  height: 19px;
  width: 115px;
}

table.pdf-header td h2 {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  width: 100%;
}

table.table--pdf-footer {
  padding: 6px 20px 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  vertical-align: center;
  width: 100%;
}

table.table--pdf-footer td.cell--text {
  width: 65%;
}

table.table--pdf-footer td.cell--text p {
  color: #000;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-right: 10px;
  width: 100%;
}

table.table--pdf-footer td.cell--link {
  width: 35%;
}

table.table--pdf-footer td.cell--link p {
  text-align: right;
}

table.table--pdf-footer td.cell--link a {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
}

table.table-pdf--qr {
  padding: 54px 20px 50px;
  padding-bottom: 50px;
  padding-top: 54px;
  padding-left: 20px;
  padding-right: 20px;
}

table.table-pdf--qr td.cell--text {
  border-top: 1px solid #808080;
  padding-top: 15px;
}

table.table-pdf--qr p {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

table.table-pdf--qr p a {
  color: #000;
  text-decoration-line: underline;
}

table.table-pdf--qr td.cell--qr {
  padding-top: 50px;
  width: 48%;
}

table.table-pdf-comercial {
  padding: 30px 20px 25px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  width: 100%;
}

table.table-pdf-comercial h3,
table.table-pdf-comercial p {
  color: #000;
  font-family: Inter;
  font-size: 9px;
  font-style: normal;
  line-height: 10px;
  letter-spacing: -0.16px;
}

table.table-pdf-comercial td {
  text-align: left;
  width: 50%;
}

table.table-pdf-comercial td.cell--logo img {
  width: 115px;
}

table.table-pdf-comercial .table-pdf--inner-comercial div.placeholder {
  background-color: #808080;
}

table.table-pdf-comercial .table-pdf--inner-comercial div.placeholder,
table.table-pdf-comercial .table-pdf--inner-comercial img {
  border-radius: 43px;
  background-color: red;
  height: 43px;
  overflow: hidden;
  width: 43px;
}

table.table-pdf-comercial .table-pdf--inner-comercial td.cell--comercial-img {
  width: 43px;
  height: 98px;
}

table.table-pdf--inner-comercial td.cell--info {
  padding-left: 10px;
}

table.table-pdf-comercial span {
  color: #808080;
}

table.table-pdf-comercial h3 {
  font-weight: 600;
  text-align: left;
}

table.table-pdf-comercial p {
  font-weight: 400;
}

table.table-pdf-updated-at {
  border-top: 1px solid #808080;
  padding: 25px 20px 30px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 25px;
  width: 100%;
}

table.table-pdf-updated-at td.cell--h1 {
  width: 65%;
}

table.table-pdf-updated-at td.cell--h1 {
  width: 65%;
}

table.table-pdf-updated-at td.cell--h1 h1 {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  width: 100%;
}

table-pdf-updated-at td.cell--updated-at {
  width: 35%;
}

table-pdf-updated-at td.cell--updated-at p {
  color: #000;
  font-family: Inter;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:after,
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:after {
  font-family: "Suisse Int'l", "Open Sans", sans-serif;
}
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(1):after,
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(1):after {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.375rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(1):after,
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(1):after {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(2):after,
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(2):after {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.375rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(2):after,
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(2):after {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(3):after,
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(3):after {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.375rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(3):after,
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(3):after {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(4):after,
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(4):after {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.375rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(4):after,
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(4):after {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(5):after,
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(5):after {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.375rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(5):after,
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(5):after {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(6):after,
.input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(6):after {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 22px;
  line-height: 1.375rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > a:nth-child(6):after,
  .input-wrapper.textarea-wrapper .editor-toolbar .easymde-dropdown-content > button:nth-child(6):after {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 22px;
    line-height: 1.375rem;
  }
}

.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code,
.item.item--content--created .content .content-preview.content--button,
.item.item--content--created .content .content-preview.content--image,
.item.item--content--created .content .content-preview.content--text {
  font-family: "Suisse Int'l", "Open Sans", sans-serif;
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-1, .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-2,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h1, .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h2,
.item.item--content--created .content .content-preview.content--button .cm-header-1,
.item.item--content--created .content .content-preview.content--button .cm-header-2,
.item.item--content--created .content .content-preview.content--button h1,
.item.item--content--created .content .content-preview.content--button h2,
.item.item--content--created .content .content-preview.content--image .cm-header-1,
.item.item--content--created .content .content-preview.content--image .cm-header-2,
.item.item--content--created .content .content-preview.content--image h1,
.item.item--content--created .content .content-preview.content--image h2,
.item.item--content--created .content .content-preview.content--text .cm-header-1,
.item.item--content--created .content .content-preview.content--text .cm-header-2,
.item.item--content--created .content .content-preview.content--text h1,
.item.item--content--created .content .content-preview.content--text h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 31px;
  line-height: 1.9375rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-1, .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-2,
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h1, .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h2,
  .item.item--content--created .content .content-preview.content--button .cm-header-1,
  .item.item--content--created .content .content-preview.content--button .cm-header-2,
  .item.item--content--created .content .content-preview.content--button h1,
  .item.item--content--created .content .content-preview.content--button h2,
  .item.item--content--created .content .content-preview.content--image .cm-header-1,
  .item.item--content--created .content .content-preview.content--image .cm-header-2,
  .item.item--content--created .content .content-preview.content--image h1,
  .item.item--content--created .content .content-preview.content--image h2,
  .item.item--content--created .content .content-preview.content--text .cm-header-1,
  .item.item--content--created .content .content-preview.content--text .cm-header-2,
  .item.item--content--created .content .content-preview.content--text h1,
  .item.item--content--created .content .content-preview.content--text h2 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 39px;
    line-height: 2.4375rem;
  }
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-strong,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code strong,
.item.item--content--created .content .content-preview.content--button .cm-strong,
.item.item--content--created .content .content-preview.content--button strong,
.item.item--content--created .content .content-preview.content--image .cm-strong,
.item.item--content--created .content .content-preview.content--image strong,
.item.item--content--created .content .content-preview.content--text .cm-strong,
.item.item--content--created .content .content-preview.content--text strong {
  font-family: inherit;
  font-weight: 900;
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-3,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h3,
.item.item--content--created .content .content-preview.content--button .cm-header-3,
.item.item--content--created .content .content-preview.content--button h3,
.item.item--content--created .content .content-preview.content--image .cm-header-3,
.item.item--content--created .content .content-preview.content--image h3,
.item.item--content--created .content .content-preview.content--text .cm-header-3,
.item.item--content--created .content .content-preview.content--text h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  line-height: 1.625rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-3,
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h3,
  .item.item--content--created .content .content-preview.content--button .cm-header-3,
  .item.item--content--created .content .content-preview.content--button h3,
  .item.item--content--created .content .content-preview.content--image .cm-header-3,
  .item.item--content--created .content .content-preview.content--image h3,
  .item.item--content--created .content .content-preview.content--text .cm-header-3,
  .item.item--content--created .content .content-preview.content--text h3 {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 33px;
    line-height: 2.0625rem;
  }
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-4,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h4,
.item.item--content--created .content .content-preview.content--button .cm-header-4,
.item.item--content--created .content .content-preview.content--button h4,
.item.item--content--created .content .content-preview.content--image .cm-header-4,
.item.item--content--created .content .content-preview.content--image h4,
.item.item--content--created .content .content-preview.content--text .cm-header-4,
.item.item--content--created .content .content-preview.content--text h4 {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 20px;
  line-height: 1.25rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-4,
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h4,
  .item.item--content--created .content .content-preview.content--button .cm-header-4,
  .item.item--content--created .content .content-preview.content--button h4,
  .item.item--content--created .content .content-preview.content--image .cm-header-4,
  .item.item--content--created .content .content-preview.content--image h4,
  .item.item--content--created .content .content-preview.content--text .cm-header-4,
  .item.item--content--created .content .content-preview.content--text h4 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
  }
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-5,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h5,
.item.item--content--created .content .content-preview.content--button .cm-header-5,
.item.item--content--created .content .content-preview.content--button h5,
.item.item--content--created .content .content-preview.content--image .cm-header-5,
.item.item--content--created .content .content-preview.content--image h5,
.item.item--content--created .content .content-preview.content--text .cm-header-5,
.item.item--content--created .content .content-preview.content--text h5 {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 20px;
  line-height: 1.25rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-5,
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h5,
  .item.item--content--created .content .content-preview.content--button .cm-header-5,
  .item.item--content--created .content .content-preview.content--button h5,
  .item.item--content--created .content .content-preview.content--image .cm-header-5,
  .item.item--content--created .content .content-preview.content--image h5,
  .item.item--content--created .content .content-preview.content--text .cm-header-5,
  .item.item--content--created .content .content-preview.content--text h5 {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-6,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h6,
.item.item--content--created .content .content-preview.content--button .cm-header-6,
.item.item--content--created .content .content-preview.content--button h6,
.item.item--content--created .content .content-preview.content--image .cm-header-6,
.item.item--content--created .content .content-preview.content--image h6,
.item.item--content--created .content .content-preview.content--text .cm-header-6,
.item.item--content--created .content .content-preview.content--text h6 {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-header-6,
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code h6,
  .item.item--content--created .content .content-preview.content--button .cm-header-6,
  .item.item--content--created .content .content-preview.content--button h6,
  .item.item--content--created .content .content-preview.content--image .cm-header-6,
  .item.item--content--created .content .content-preview.content--image h6,
  .item.item--content--created .content .content-preview.content--text .cm-header-6,
  .item.item--content--created .content .content-preview.content--text h6 {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 16px;
    line-height: 1rem;
  }
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code p,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code span,
.item.item--content--created .content .content-preview.content--button p,
.item.item--content--created .content .content-preview.content--button span,
.item.item--content--created .content .content-preview.content--image p,
.item.item--content--created .content .content-preview.content--image span,
.item.item--content--created .content .content-preview.content--text p,
.item.item--content--created .content .content-preview.content--text span {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
}
@media (min-width: 75em) {
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code p,
  .input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code span,
  .item.item--content--created .content .content-preview.content--button p,
  .item.item--content--created .content .content-preview.content--button span,
  .item.item--content--created .content .content-preview.content--image p,
  .item.item--content--created .content .content-preview.content--image span,
  .item.item--content--created .content .content-preview.content--text p,
  .item.item--content--created .content .content-preview.content--text span {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 27px;
    line-height: 1.6875rem;
  }
}
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code .cm-link,
.input-wrapper.textarea-wrapper textarea[data-markdown=true] ~ .CodeMirror .CodeMirror-code a,
.item.item--content--created .content .content-preview.content--button .cm-link,
.item.item--content--created .content .content-preview.content--button a,
.item.item--content--created .content .content-preview.content--image .cm-link,
.item.item--content--created .content .content-preview.content--image a,
.item.item--content--created .content .content-preview.content--text .cm-link,
.item.item--content--created .content .content-preview.content--text a {
  text-decoration: underline;
}

.list--contents .item.item--content--created .content-preview.content--text h1, .list--contents .item.item--content--created .content-preview.content--text h2, .list--contents .item.item--content--created .content-preview.content--text h3, .list--contents .item.item--content--created .content-preview.content--text h4, .list--contents .item.item--content--created .content-preview.content--text h5, .list--contents .item.item--content--created .content-preview.content--text h6, .list--contents .item.item--content--created .content-preview.content--text p, .list--contents .item.item--content--created .content-preview.content--text ul, .list--contents .item.item--content--created .content-preview.content--text ol, .list--contents .item.item--content--created .content-preview.content--text dl, .list--contents .item.item--content--created .content-preview.content--text p, .list--contents .item.item--content--created .content-preview.content--text q {
  margin-bottom: 30px;
}
.list--contents .item.item--content--created .content-preview.content--text h1:last-child, .list--contents .item.item--content--created .content-preview.content--text h2:last-child, .list--contents .item.item--content--created .content-preview.content--text h3:last-child, .list--contents .item.item--content--created .content-preview.content--text h4:last-child, .list--contents .item.item--content--created .content-preview.content--text h5:last-child, .list--contents .item.item--content--created .content-preview.content--text h6:last-child, .list--contents .item.item--content--created .content-preview.content--text p:last-child, .list--contents .item.item--content--created .content-preview.content--text ul:last-child, .list--contents .item.item--content--created .content-preview.content--text ol:last-child, .list--contents .item.item--content--created .content-preview.content--text dl:last-child, .list--contents .item.item--content--created .content-preview.content--text p:last-child, .list--contents .item.item--content--created .content-preview.content--text q:last-child {
  margin-bottom: 0;
}
.list--contents .item.item--content--created .content-preview.content--text h2 {
  font-size: 12px;
  line-height: normal;
}
.list--contents .item.item--content--created .content-preview.content--text h3 {
  font-size: 50px;
  line-height: normal;
}
.list--contents .item.item--content--created .content-preview.content--text h4 {
  font-size: 30;
  line-height: normal;
}
.list--contents .item.item--content--created .content-preview.content--text p, .list--contents .item.item--content--created .content-preview.content--text h5, .list--contents .item.item--content--created .content-preview.content--text h6 {
  font-size: 20;
  line-height: normal;
}

.form .cm-s-easymde .cm-header-1 {
  font-size: 70%;
  line-height: 70%;
}
.form .cm-s-easymde .cm-header-2 {
  font-size: 70%;
  line-height: 70%;
}
.form .cm-s-easymde .cm-header-3 {
  font-size: 175%;
  line-height: 175%;
}
.form .cm-s-easymde .cm-header-4 {
  font-size: 120%;
  line-height: 120%;
}
.form .cm-s-easymde .cm-header-5 {
  font-size: inherit;
  line-height: inherit;
}
.form .cm-s-easymde .cm-header-6 {
  font-size: inherit;
  line-height: inherit;
}

.editor-toolbar .heading.easymde-dropdown {
  pointer-events: none;
}
.editor-toolbar .heading.easymde-dropdown:after {
  display: none;
}

.section.section--doc {
  padding-right: 20px;
}
.section.section--doc legend {
  margin-top: 20px;
  margin-bottom: 5px;
}
.section.section--doc p {
  color: #4b4b4b;
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 16px;
  line-height: 1rem;
}
.section.section--doc ul {
  display: block;
  list-style-position: inside;
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
}
.section.section--doc ul li {
  color: #4b4b4b;
  list-style-type: inherit;
  margin-bottom: 10px;
}
.section.section--doc ul li span {
  font-weight: bold;
}

fieldset.fieldset--portella-grid {
  display: flex;
  flex-direction: column;
  grid-column: 1/span 6;
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid {
    grid-column: 1/span 12;
  }
}
fieldset.fieldset--portella-grid legend {
  width: 100%;
  grid-column: 1/span 6;
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid legend {
    grid-column: 1/span 12;
  }
}
fieldset.fieldset--portella-grid > div {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div {
    display: grid;
    grid-column-gap: 2.34375%;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column: 1/span 12;
    row-gap: 30px;
    width: 100%;
  }
}
@media (min-width: 1440px) {
  fieldset.fieldset--portella-grid > div {
    grid-column-gap: 2.0833333333%;
  }
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper {
  margin: 0;
  padding: 0;
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper {
  min-height: unset;
  min-width: unset;
  height: 100%;
  width: 100%;
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .input--text {
  display: none !important;
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .dropzone {
  height: 100%;
  margin: 0;
  min-height: unset;
  min-width: unset;
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .dropzone,
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .item,
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .preview {
  height: 100%;
  width: 100%;
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .dropzone img,
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .item img,
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .preview img {
  height: 100%;
  width: 100%;
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper .previews-wrapper .message--initial {
  font-size: 0.8rem;
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(2), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(3), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(4), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(5), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(6), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(7), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(8), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(9) {
  width: calc(50% - 1px);
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(10), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(11), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(12), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(15), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(16), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(17) {
  width: calc(33.3333333333% - 1.3333333333px);
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(1), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(2), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(3), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(8), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(9), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(13), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(14), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(15), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(16), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(17) {
  height: 51.2820512821vw;
}
@media (min-width: 603px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(1), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(2), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(3), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(8), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(9), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(13), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(14), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(15), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(16), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(17) {
    height: 26.0416666667vw;
  }
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(1), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(2), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(3), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(8), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(9), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(13), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(14), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(15), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(16), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(17) {
    grid-row: auto/span 2;
    height: 41.6666666667vw;
    width: 100%;
  }
}
@media (min-width: 1440px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(1), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(2), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(3), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(8), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(9), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(13), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(14), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(15), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(16), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(17) {
    height: 600px;
  }
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(4), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(5), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(6), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(7), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(10), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(11), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(12) {
  height: 38.4615384615vw;
}
@media (min-width: 603px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(4), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(5), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(6), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(7), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(10), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(11), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(12) {
    height: 19.53125vw;
  }
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(4), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(5), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(6), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(7), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(10), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(11), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(12) {
    grid-row: auto/span 1;
    height: 19.7916666667vw;
    width: 100%;
  }
}
@media (min-width: 1440px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(4), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(5), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(6), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(7), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(10), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(11), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(12) {
    height: 285px;
  }
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(1) {
  width: 100%;
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(1) {
    grid-column: 1/span 8;
  }
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(2), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(3), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(4), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(5), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(6), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(7), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(10), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(11), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(12), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(13), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(15), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(16), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(17) {
    grid-column: auto/span 4;
  }
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(8), fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(9) {
    grid-column: auto/span 6;
  }
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(13) {
  width: calc(33.3333333333% - 1px);
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(13) {
    width: 100%;
  }
}
fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(14) {
  width: calc(66.6666666667% - 1px);
}
@media (min-width: 768px) {
  fieldset.fieldset--portella-grid > div > .input-wrapper.input-file-wrapper:nth-of-type(14) {
    grid-column: auto/span 8;
    width: 100%;
  }
}

section.section--table table.table--responsive[data-direction=horizontal] thead th {
  background-color: rgba(31, 37, 50, 0.2);
  border-bottom: 2px solid rgb(31, 37, 50);
}

section.section--table table.table--responsive[data-direction=horizontal] tbody tr:nth-child(even) td {
  background-color: rgba(143, 146, 153, 0.045);
}

section.section--table table.table--responsive[data-direction=horizontal] tbody tr[data-row-state=error] td {
  background-color: rgba(254, 19, 91, 0.9);
}

section.section--table table.table--responsive[data-direction=horizontal] tbody tr[data-row-state=pending] td {
  background-color: rgba(254, 153, 22, 0.9);
}

table[data-direction=vertical][data-align=left] td {
  justify-content: flex-start;
  color: rgba(31, 37, 50, 0.6);
}

table[data-direction=vertical][data-align=left] td i.material-icons {
  opacity: 0.4;
}

table[data-direction=vertical][data-align=left] td:before {
  color: #1f2532;
  margin-right: 10px;
}

.section--table[data-extra-wide=true] .content-wrapper {
  max-width: 1410px;
  overflow-x: auto;
}

.section--table[data-extra-wide=true] table td {
  padding: 2px 7.5px;
}

.section--table[data-extra-wide=true] table tbody td {
  font-size: 0.87rem;
}

.section--table[data-extra-wide=true] table .btn {
  font-size: 0.85rem;
  height: 30px;
  margin: 2px 0;
  min-width: 85px;
  padding: 2px 10px;
  transition: 300ms all ease-out;
  opacity: 1;
}
.section--table[data-extra-wide=true] table .btn:hover {
  color: white;
}

/*# sourceMappingURL=cms_styles.css.map */
