/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.c-selector {
  display: flex;
  position: relative;
  border: solid 1px #e5e5df;
  height: 2.125rem;
  padding: 0 0.625rem;
  cursor: pointer;
  color: #555;
  z-index: 0; }
  .c-selector .value {
    position: absolute;
    top: calc(50% - 10px);
    bottom: 0;
    left: 0.625rem;
    right: 0.625rem;
    padding-right: 1.125rem;
    z-index: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-size: 0.8125rem; }
    .c-selector .value.clearable {
      padding-right: 1.75rem; }
  .c-selector.align-left {
    justify-content: flex-start; }
    .c-selector.align-left .value {
      padding-left: 1.125rem;
      padding-right: 0; }
  .c-selector input {
    z-index: 1;
    background-color: transparent;
    width: 100%;
    height: 100%;
    border: 0;
    color: #555;
    font-size: 0.8125rem; }
    .c-selector input:focus {
      outline: none; }
    .c-selector input::-moz-placeholder {
      color: rgba(85, 85, 85, 0.5); }
    .c-selector input:-ms-input-placeholder {
      color: rgba(85, 85, 85, 0.5); }
    .c-selector input::-ms-input-placeholder {
      color: rgba(85, 85, 85, 0.5); }
    .c-selector input::placeholder {
      color: rgba(85, 85, 85, 0.5); }
    .c-selector input:-moz-read-only {
      cursor: pointer; }
    .c-selector input:read-only {
      cursor: pointer; }
  .c-selector.clearable input {
    padding-right: 1.5625rem; }
  .c-selector .arrow-btn {
    z-index: 3;
    height: 100%;
    cursor: pointer;
    position: absolute;
    right: 0.5rem; }
    .c-selector .arrow-btn .arrow {
      max-width: 0.75rem;
      height: 100%;
      fill: #555; }
  .c-selector .toggle-btn {
    z-index: 3;
    height: 100%;
    cursor: pointer;
    position: absolute;
    right: 0.5rem; }
    .c-selector .toggle-btn .toggle {
      max-width: 0.75rem;
      height: 100%;
      fill: #555; }
  .c-selector .clear-btn {
    z-index: 3;
    cursor: pointer;
    position: absolute;
    right: 1.375rem;
    top: calc(50% - 8px); }
    .c-selector .clear-btn .clear-icon {
      max-width: 0.5rem;
      max-height: 0.5rem;
      margin-right: 0.3125rem;
      fill: #555; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.c-selector-item-wrapper {
  align-items: center;
  display: flex;
  flex: 0 1;
  height: 0;
  justify-content: space-between;
  margin-left: 100%;
  overflow: hidden;
  transition: none;
  width: 100%; }
  .c-selector-item-wrapper.base {
    margin-left: -100%;
    transition: margin-right 0.2s ease-in-out; }
  .c-selector-item-wrapper.show {
    flex: 1 1;
    height: auto;
    margin-left: 0;
    overflow: visible;
    overflow: initial;
    transition: margin-left 0.2s ease-in-out; }

.c-selector-item {
  width: 100%;
  padding: 0.5rem 1rem; }
  .c-selector-item .c-icon {
    margin: 0 0.3125rem 0 0; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.c-selector-menu {
  border: solid 1px #e5e5df;
  margin-top: -1px;
  z-index: 1;
  max-height: 25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  cursor: pointer;
  color: rgba(85, 85, 85, 0.5);
  font-size: 0.8125rem;
  position: absolute;
  top: 2.125rem;
  min-width: 100%;
  background-color: #fff;
  padding: 0.3125rem 0; }
  .c-selector-menu.selector-overflow-menu {
    right: 0; }
  .c-selector-menu .info-button {
    margin-right: 0.625rem;
    width: 1rem;
    max-width: 1rem;
    min-width: 1rem;
    height: 1rem;
    max-height: 1rem; }
  .c-selector-menu .group-icon {
    transform: rotate(-90deg);
    fill: #555;
    position: absolute;
    right: 0.625rem; }
    .c-selector-menu .group-icon.selected {
      transform: rotate(90deg);
      left: 0.625rem; }
  .c-selector-menu .group-parent .item {
    padding-right: 1.5625rem;
    z-index: 2; }
  .c-selector-menu .group-parent.selected .item {
    padding-right: 0.625rem;
    padding-left: 1.875rem; }
  .c-selector-menu .group-parent .group-icon {
    z-index: 1; }
  .c-selector-menu .highlight {
    color: #555; }
  .c-selector-menu .not-found {
    padding: 0.5rem 1rem; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.c-dropdown {
  color: #555;
  width: auto;
  text-align: left; }
  .c-dropdown .label {
    margin-bottom: 0.3125rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 400;
    font-size: 0.8125rem; }
    .c-dropdown .label .info-button {
      margin-left: 0.4375rem;
      height: 15px;
      width: 15px;
      min-width: 15px;
      border-radius: 50%; }
      .c-dropdown .label .info-button .info-icon {
        height: 8px;
        width: 7px; }
  .c-dropdown .container {
    position: relative; }
    .c-dropdown .container.-tooltip .menu-arrow {
      display: none; }
  .c-dropdown .menu-trigger {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10; }
  .c-dropdown .is-open .arrow {
    transform: rotate(180deg); }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-dark {
  color: #fff;
  font-weight: 300; }
  .theme-dropdown-dark .c-selector {
    border: 0;
    height: 3.75rem;
    padding: 0;
    color: #fff; }
    .theme-dropdown-dark .c-selector .value {
      font-size: 2.5rem;
      top: 0;
      left: 0;
      right: 0;
      padding-right: 1.5625rem; }
      .theme-dropdown-dark .c-selector .value.no-value {
        color: rgba(255, 255, 255, 0.5); }
    .theme-dropdown-dark .c-selector input {
      color: #fff;
      font-size: 2.5rem;
      font-weight: 300;
      padding-left: 1.125rem; }
      .theme-dropdown-dark .c-selector input::-moz-placeholder {
        color: rgba(255, 255, 255, 0.5); }
      .theme-dropdown-dark .c-selector input:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.5); }
      .theme-dropdown-dark .c-selector input::-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.5); }
      .theme-dropdown-dark .c-selector input::placeholder {
        color: rgba(255, 255, 255, 0.5); }
    .theme-dropdown-dark .c-selector.align-left .value,
    .theme-dropdown-dark .c-selector.align-left input {
      padding-left: 1.875rem; }
    .theme-dropdown-dark .c-selector .arrow-btn {
      left: 0;
      width: 0.75rem; }
      .theme-dropdown-dark .c-selector .arrow-btn .arrow {
        fill: #fff; }
    .theme-dropdown-dark .c-selector .clear-btn {
      right: 0; }
      .theme-dropdown-dark .c-selector .clear-btn .clear-icon {
        fill: #fff; }
  .theme-dropdown-dark .c-selector-menu {
    border: solid 1px #e5e5df;
    font-size: 1.125rem;
    font-weight: 400;
    top: 3.75rem;
    box-shadow: 1px 1px 5px 0 rgba(85, 85, 85, 0.25); }
    @media screen and (min-width: 48rem) {
      .theme-dropdown-dark .c-selector-menu {
        left: 1.875rem;
        width: calc(100% - 30px); } }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-light .c-selector .clear-btn {
  display: flex;
  justify-content: center;
  align-items: center; }

.theme-dropdown-light .c-selector .value {
  top: calc(50% - 0.5625rem);
  bottom: 0;
  left: 0.6875rem; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-button {
  text-align: center; }
  .theme-dropdown-button .container .c-selector {
    border-radius: 1.5625rem;
    border-color: #97be32;
    height: 1.75rem;
    padding: 0 0.625rem; }
    .theme-dropdown-button .container .c-selector .value {
      padding: 0;
      right: 1.625rem; }
  .theme-dropdown-button .container.is-open .menu-arrow {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0 9px;
    border-bottom: 7px solid #fff;
    border-left: 7px solid transparent;
    border-left-color: #fff;
    border-right: none;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    top: calc(1.75rem + 0.375rem);
    left: calc(50% - 14px);
    border-bottom-color: #fff;
    box-shadow: 1px -2px 3px 0 rgba(85, 85, 85, 0.1);
    z-index: 3; }
  .theme-dropdown-button .container .menu {
    top: calc(1.75rem + 0.75rem);
    border: 0;
    box-shadow: 1px 1px 10px 0 rgba(85, 85, 85, 0.25); }
  .theme-dropdown-button .arrow-btn .arrow {
    fill: #97be32; }
  .theme-dropdown-button .label {
    color: #999;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-button-small .container .c-selector {
  border-radius: 1.125rem;
  border-color: #e5e5df;
  height: 1.25rem;
  padding: 0 0.5rem 0 0.625rem; }
  .theme-dropdown-button-small .container .c-selector .value {
    top: calc(50% - 0.5625rem);
    right: 1.0625rem;
    padding: 0; }
  .theme-dropdown-button-small .container .c-selector input,
  .theme-dropdown-button-small .container .c-selector .value {
    color: #aaa;
    font-size: 0.75rem; }

.theme-dropdown-button-small .container.is-open .menu-arrow {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0 9px;
  border-bottom: 7px solid #fff;
  border-left: 7px solid transparent;
  border-left-color: #fff;
  border-right: none;
  transform-origin: 0 0;
  transform: rotate(-45deg);
  top: calc(1.25rem + 0.375rem);
  left: calc(50% - 14px);
  border-bottom-color: #fff;
  box-shadow: 1px -2px 3px 0 rgba(85, 85, 85, 0.1);
  z-index: 3; }

.theme-dropdown-button-small .c-selector-menu {
  top: calc(1.25rem + 0.375rem);
  border: 0;
  box-shadow: 1px 1px 10px 0 rgba(85, 85, 85, 0.25); }

.theme-dropdown-button-small .arrow-btn .arrow {
  fill: #aaa;
  width: 0.5rem; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-native .select-wrapper {
  border: 1px solid #97be32;
  border-radius: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-content: center;
  height: 1.875rem; }
  .theme-dropdown-native .select-wrapper select {
    border: 0;
    background-color: transparent;
    color: #555;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.75rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0 1.75rem 0 0.9375rem;
    z-index: 2;
    height: 100%;
    cursor: pointer;
    position: relative; }
    .theme-dropdown-native .select-wrapper select::-ms-expand {
      display: none; }
    .theme-dropdown-native .select-wrapper select:focus {
      outline: none; }
  .theme-dropdown-native .select-wrapper.multiple {
    height: 7.5rem; }
    .theme-dropdown-native .select-wrapper.multiple select {
      padding: 0; }
    .theme-dropdown-native .select-wrapper.multiple option {
      padding: 0.3125rem 0.625rem; }

.theme-dropdown-native .arrow-icon {
  position: absolute;
  right: 0.75rem;
  height: 100%;
  width: 10px;
  z-index: 1;
  fill: #97be32; }

.theme-dropdown-native.large .select-wrapper {
  height: 2.5rem; }
  .theme-dropdown-native.large .select-wrapper select {
    font-size: 1rem; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-native-button .select-wrapper {
  border: 1px solid #e5e5df;
  height: 1.25rem; }
  .theme-dropdown-native-button .select-wrapper select {
    padding: 0 1.125rem 0 0.5rem; }

.theme-dropdown-native-button .arrow-icon {
  fill: #555;
  right: 0.5rem;
  width: 8px; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-native-plain .select-wrapper {
  border: 0; }
  .theme-dropdown-native-plain .select-wrapper select {
    padding-left: 0;
    padding-right: 25px;
    font-size: 1rem;
    height: 1.5625rem;
    font-weight: 400; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-native-inline .select-wrapper {
  border: 0;
  border-radius: 0;
  width: auto; }
  .theme-dropdown-native-inline .select-wrapper select {
    font-size: 0.625rem;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0 8px 0 0;
    height: auto; }
  .theme-dropdown-native-inline .select-wrapper .arrow-icon {
    right: -0.25rem;
    width: 0.375rem; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-native-form .select-wrapper {
  border: 1px solid #e5e5df;
  border-radius: 4px;
  height: 2.5rem;
  width: 100%;
  max-width: 19.6875rem; }
  .theme-dropdown-native-form .select-wrapper select {
    padding: 0 1.125rem 0 0.5rem;
    color: #555;
    font-size: 0.8125rem; }

.theme-dropdown-native-form .arrow-icon {
  fill: #555;
  right: 0.5rem;
  width: 8px; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-dark-round .container .c-selector {
  background: #e5e5df;
  border: 1px solid #aaa;
  margin: auto;
  width: 3.125rem;
  height: 3.125rem; }
  .theme-dropdown-dark-round .container .c-selector .value {
    top: calc(3.125rem + 0.375rem);
    left: 0;
    height: 2.5rem;
    width: 100%;
    white-space: normal;
    white-space: initial;
    font-size: 0.6875rem;
    text-transform: uppercase; }
  .theme-dropdown-dark-round .container .c-selector .selector-btn .c-icon {
    width: 1.125rem;
    height: 1.125rem;
    margin-left: 0.375rem; }

.theme-dropdown-dark-round .container.is-open .menu-arrow,
.theme-dropdown-dark-round .container .c-selector-menu {
  top: 40px; }

.theme-dropdown-dark-round .container .arrow-btn {
  display: none; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-dark-squared .container {
  position: relative;
  width: 4.6875rem;
  height: 4.375rem; }
  .theme-dropdown-dark-squared .container .c-selector {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    border: 1px solid #e5e5df;
    border-radius: 0;
    padding: 0; }
    .theme-dropdown-dark-squared .container .c-selector .value {
      position: relative;
      top: auto;
      top: initial;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 0 4px;
      margin-bottom: 0.625rem;
      white-space: normal;
      white-space: initial;
      font-size: 0.6875rem;
      line-height: 0.75rem;
      max-height: 1.375rem; }
    .theme-dropdown-dark-squared .container .c-selector .selector-btn {
      width: 100%;
      height: 1.25rem;
      margin-top: 0.625rem; }
      .theme-dropdown-dark-squared .container .c-selector .selector-btn .c-icon {
        width: 100%;
        height: 100%;
        border-radius: 0; }
    .theme-dropdown-dark-squared .container .c-selector input {
      position: absolute;
      top: 0;
      left: 0; }
  .theme-dropdown-dark-squared .container .arrow-btn {
    display: none; }

/* FONTS */
/* stylelint-disable */
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
  100% {
    box-shadow: 0 0 0 35px rgba(0, 0, 0, 0); } }

/* SCREENS */
/* GRID SETTINGS */
/* COLORS */
/* FONT COLORS */
/* SHADOWS */
.theme-dropdown-no-border .container .c-selector {
  border: none; }